Fix a typo: end -> and.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
47a9f362
MB
12001-01-11 Miles Bader <miles@gnu.org>
2
3 * textmodes/ispell.el (ispell-adjusted-window-height): New function.
4 (ispell-overlay-window, ispell-help, ispell-show-choices)
5 (ispell-command-loop): Use it instead of `window-height'.
6
d196f58d
GM
72001-01-10 Gerd Moellmann <gerd@gnu.org>
8
cf523f0e
GM
9 * files.el (confirm-kill-emacs): New user-option.
10 (save-buffers-kill-emacs): Ask for final confirmation before
11 killing Emacs.
12
d196f58d
GM
13 * isearch.el (isearch-done): Set isearch-lazy-highlight-start
14 to nil.
15
7c6c3d8e
GM
162001-01-10 Dave Love <fx@gnu.org>
17
1f8be15d
DL
18 * progmodes/etags.el (tags-apropos-additional-actions): Fix :type.
19
20 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix doc,
21 :type.
22
23 * hi-lock.el (hi-lock-exclude-modes): Fix :type.
24
25 * calculator.el (calculator-number-digits): Fix :type.
26
0d5184de
DL
27 * vc-cvs.el (vc-cvs-header): Fix :type.
28 * vc-rcs.el (vc-rcs-header): Fix :type.
29 * vc-sccs.el (vc-sccs-header): Fix :type.
30
31 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
32
7c6c3d8e
GM
33 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
34
8c9f73a2
GM
35 * eshell/esh-util.el (eshell-ange-ls-uids): Fix :type.
36
457b792c
GM
372001-01-10 Gerd Moellmann <gerd@gnu.org>
38
39 * simple.el (set-variable): Force a thorough redisplay for the
40 case that the variable has an effect on the display, like
41 `tab-width' has.
42
d2622d08
AS
432001-01-10 Andre Spiegel <spiegel@gnu.org>
44
45 * vc.el: Add documentation for backend interface.
46
ae4b5f4f
KH
472001-01-10 Kenichi Handa <handa@etl.go.jp>
48
e0844717
KH
49 * font-lock.el (c-font-lock-extra-types): Add "Lisp_Object".
50
ae4b5f4f
KH
51 * international/mule-conf.el (latin-extra-code-table): Set to t
52 for \223 and \224.
53
3184082b
KH
542001-01-09 Kenichi Handa <handa@etl.go.jp>
55
56 * international/mule-cmds.el (locale-language-names): Map "es" to
57 "Spanish" and "nl" to "Dutch".
58
732b9cdd
GM
592001-01-09 Gerd Moellmann <gerd@gnu.org>
60
1dfca644
GM
61 * bindings.el (global-map): Bind <home> to beginning-of-line,
62 <end> to end-of-line, C-<home> to beginning-of-buffer, and
63 C-<end> to end-of-buffer.
64
732b9cdd
GM
65 * language/european.el: Add Dutch and Spanish language info
66 to be able to use the appropriate tutorials.
67
682001-01-09 Alex Schroeder <alex@gnu.org>
69
70 * ansi-color.el (ansi-color-process-output): Use markers instead
71 of positions for start and end of region.
72 (ansi-color-apply-on-region): Rewrote code to make it more robust.
73 Previously, occasional mistakes happend when fontifying many
74 chunks of output (eg. ls --color=yes /dev). This happened
75 whenever an overlay was created up to the end of the region, which
76 coincided with the process-mark. New text would then be added
77 within that overlay instead of after it.
78 (ansi-color-make-extent): Overlays are created with the property
79 `modification-hooks' set to '(ansi-color-freeze-overlay).
80 (ansi-color-freeze-overlay): New function. When inserting text at
81 the end of the overlay, the overlay will resize.
82
832000-01-09 Alex Schroeder <alex@gnu.org>
84
85 * ansi-color.el (ansi-color-process-output): Doc change.
86 (ansi-color-unfontify-region): Doc change. No longer installed
87 automatically in font-lock-unfontify-region-function.
88 (ansi-color-apply): Doc change.
89 (ansi-color-apply-on-region): Use extents or overlays instead of
90 text-properties.
91 (ansi-color-make-extent): New function.
92 (ansi-color-set-extent-face): New function.
93
942000-01-09 Alex Schroeder <alex@gnu.org>
95
96 * ansi-color.el (ansi-color-process): Removed, Emacs and XEmacs
97 both use ansi-color-process-output, now.
98 (ansi-color-process-output): Doesn't return string anymore. It is
99 installed in comint-output-filter-functions for both Emacs and
100 XEmacs, now.
101 (ansi-color-unfontify-region): Simplified code removing variables
102 pos and start-ansi.
103 (ansi-color-apply): Put text-property ansi-color before putting
104 text-property face because ansi-color-unfontify-region is called
105 immediately after the call to put-text-property.
106 (ansi-color-context-region): Doc change.
107 (ansi-color-filter-region): Simplified code.
108 (ansi-color-apply-on-region): Changed start to start-marker, using
109 a marker explicitly. Put text-property ansi-color before putting
110 text-property face because ansi-color-unfontify-region is called
111 immediately after the call to put-text-property.
112
1132000-01-09 Alex Schroeder <alex@gnu.org>
114
115 * ansi-color.el (ansi-color-faces-vector): Doc change.
116 (ansi-color-for-comint-mode): Changed :type property to choice.
117 (ansi-color-last-context): Removed.
118 (ansi-color-process-output): Don't use ansi-color-last-context, as
119 the main functions will store their context now.
120 (ansi-color-context): Doc change.
121 (ansi-color-filter-apply): Rewrote it based on ansi-color-apply.
122 Uses ansi-color-context such that repeated calls will strip
123 partial escape sequences, too.
124 (ansi-color-apply): Simplified code. Colorize end of string if
125 face is not null. Store context in new (FACE STRING) format, such
126 that repeated calls will strip partial escape sequences, too.
127 Append faces to face property using ansi-color-apply-sequence such
128 that cumulative mode actually works.
129 (ansi-color-context-region): New variable.
130 (ansi-color-filter-region): Rewrote it based on
131 ansi-color-apply-on-region. Uses ansi-color-context-region such
132 that repeated calls will strip partial escape sequences, too.
133 (ansi-color-apply-on-region): Simplified code. Colorize end of
134 region if face is not null. Store context in new (FACE POS)
135 format, such that repeated calls will strip partial escape
136 sequences, too. Append faces to face property using
137 ansi-color-apply-sequence such that cumulative mode actually
138 works.
139 (ansi-color-apply-sequence): New function.
140 (ansi-color-get-face): When the default face is added to the list
141 of faces, all previous settings are discarded and the list of
142 faces is set to '(default).
143
1442000-01-09 Alex Schroeder <alex@gnu.org>
145
146 * ansi-color.el (ansi-color-faces-vector): Use nil for the default
147 face, such that ansi-color-apply and ansi-color-apply-on-region
148 will do the right thing.
149 (ansi-color-apply): Do the right thing, ie. if ansi-color-get-face
150 returns nil, set the list of faces back to nil instead of
151 appending the result of ansi-color-get-face to the front of the
152 list.
153
1542000-01-09 Alex Schroeder <alex@gnu.org>
155
156 * ansi-color.el (ansi-color-for-comint-mode): Doc change.
157 (ansi-color-process): Doc change.
158 (ansi-color-last-context): New buffer-local variable.
159 (ansi-color-process-output): New function. It is automatically
160 added to comint-output-filter-functions if this is XEmacs.
161 (ansi-color-unfontify-region): New optional parameter for XEmacs
162 compatibility. Check wether font-lock-syntactic-keywords is
163 boundp before removing the syntax table text property, as XEmacs
164 doesn't have it.
165 (ansi-color-filter-region): Doc change.
166 (ansi-color-apply-on-region): Doc change.
167 (ansi-color-make-face): New function. Compatibility layer for
168 XEmacs. Return temporary faces instead of cons cells for XEmacs.
169 (ansi-color-make-color-map): Use ansi-color-make-face.
170 (ansi-color-get-face): Avoid face text property '(nil) as results
171 in an errow for XEmacs.
172
1732000-01-09 Alex Schroeder <alex@gnu.org>
174
175 * ansi-color.el (ansi-color-unfontify-region): New function. Uses
176 text-property ansi-color in order to preserve fontification by
177 ansi-color. When the package is loaded, a lambda expression is
178 put onto font-lock-mode-hook. This lambda expression will check
179 font-lock-unfontify-region-function and replace
180 font-lock-default-unfontify-region with
181 ansi-color-unfontify-region.
182 (ansi-color-apply): Add text-property ansi-color in addition to
183 text-property face.
184 (ansi-color-apply-on-region): Add text-property ansi-color in
185 addition to text-property face.
186 (save-buffer-state): Copy of the macro that is also used by
187 lazy-lock and font-lock.
188
189 (ansi-color-for-comint-mode): New option.
190 (ansi-color-for-comint-mode-on): Set ansi-color-for-comint-mode.
191 (ansi-color-for-comint-mode-off): Ditto.
192 (ansi-color-for-comint-mode-filter): Ditto.
193 (ansi-color-process): New function. Uses
194 ansi-color-for-comint-mode to decide what to do. This function is
195 added to comint-preoutput-filter-functions when the package is
196 loaded.
197
198 (ansi-color-for-shell-mode-set): Removed.
199 (ansi-color-for-shell-mode): Removed.
200
2012000-01-09 Alex Schroeder <alex@gnu.org>
202
203 * ansi-color.el (ansi-color-for-shell-mode-set): New function with
204 the lambda expression from the ansi-color-for-shell-mode :set
205 property. Additionally, modify shell-mode-hook to enable or
206 disable font-lock-mode for future shell buffers.
207 (ansi-color-for-shell-mode): The :set property calls
208 ansi-color-for-shell-mode-set instead of a lambda expression.
209
2102000-01-09 Alex Schroeder <alex@gnu.org>
211
212 * ansi-color.el (ansi-color-for-shell-mode): Doc change.
213 (ansi-color-context): New variable.
214 (ansi-color-apply): Save context between calls.
215
fb55ff10
EZ
2162001-01-09 Eli Zaretskii <eliz@is.elta.co.il>
217
29910493
EZ
218 * isearch.el (isearch, isearch-lazy-highlight-face): New
219 definitions for face colors and attributes.
220
fb55ff10
EZ
221 * wid-edit.el (widget-choose): Call display-popup-menus-p instead
222 of display-mouse-p.
223
134d6265
KH
2242001-01-09 Kenichi Handa <handa@etl.go.jp>
225
226 * international/mule.el (make-coding-system): If the coding system
227 accepts extra latin codes, register such codes as safe for the
228 coding system.
229
78b8eee8
RS
2302001-01-08 Richard M. Stallman <rms@caffeine.ai.mit.edu>
231
984c9f75
RS
232 * emacs-lisp/bytecomp.el (byte-compile-log-1): In non-batch case,
233 don't mention the file name or the date here, because they are
234 logged at the start of the file.
235
2362001-01-08 Richard M. Stallman <rms@gnu.org>
237
78b8eee8
RS
238 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
239 Change screen-width to frame-width.
240
1460e5d4
EZ
2412001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
242
243 * info.el (Info-search): Print the default as part of the prompt.
244
56f24bc1
AS
2452001-01-08 Andre Spiegel <spiegel@gnu.org>
246
247 * vc.el (vc-default-latest-on-branch-p): New function, replaces
248 constant implementations in backends.
249
250 * vc-cvs.el (vc-cvs-latest-on-branch-p): Removed.
251 (vc-cvs-checkout): Renamed arg WRITABLE to EDITABLE.
252
253 * vc-rcs.el (vc-rcs-checkout, vc-rcs-cancel-version): Renamed arg
254 WRITABLE to EDITABLE.
255
256 * vc-sccs.el (vc-sccs-latest-on-branch-p): Removed.
257 (vc-sccs-checkout, vc-sccs-cancel-version): Renamed arg WRITABLE
258 to EDITABLE.
259
b7812d30
EZ
2602001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
261
262 * emacs-lisp/copyright.el (copyright-current-year): Now a defvar.
263 (copyright, copyright-update): Compute the current year at run
264 time.
265
7e56ea04
GM
2662001-01-08 Gerd Moellmann <gerd@gnu.org>
267
268 * isearch.el (isearch-old-signal-hook): Removed.
269 (isearch-mode): Add isearch-done to kbd-macro-termination-hook
270 instead of setting signal-hook-function.
271 (isearch-done): Remove isearch-done from kbd-macro-termination-hook.
272
a758f97d
GM
2732001-01-08 Kevin Gallagher <kevingal@onramp.net>
274
275 * emulation/edt.el: Update to version 4.0. Provide support for
276 EDT scroll margins at top and bottom of the window. Provide an
277 emulation of the EDT SUBS command (bound to GOLD-Enter, by
278 default). Enhance edt-quit, bound to GOLD-q by default, to warn
279 user when file-related buffer modifications exist. Provide
280 support for running EDT Emulation in XEmacs. Provide customize
281 access to some user updatable variables. Add Commentary section
282 to file header. Fixed a few minor bugs and cleaned up some code.
283
284 * emulation/edt-mapper.el: Update to version 4.0. Provide support
285 for detecting a keypress that generates an ASCII key sequence.
286 (Previously, only a keypress that generates a vector was
287 recognized.) Embed Window Manager name into name of the generated
288 EDT Emulation initialization file since the initialization file is
289 Window Manager specific. Add Commentary section to file header.
290
30db89f9
EZ
2912001-01-07 Eli Zaretskii <eliz@is.elta.co.il>
292
4deb3ba9
EZ
293 * mail/sendmail.el (mail-mode): Doc fix.
294
30db89f9
EZ
295 * info.el (Info-goto-emacs-command-node): Doc fix.
296 (Info-goto-emacs-key-command-node): Doc fix.
297
c3f2772b
EZ
2982001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
299
8726e79b 300 * ediff-vers.el (noninteractive): Don't load generic-sc on MS-DOS
c3f2772b
EZ
301 systems without long file-name support.
302
0dac6924
AI
3032001-01-06 Andrew Innes <andrewi@gnu.org>
304
305 * makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.
306
4e6ef391
EZ
3072001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
308
380866a2
EZ
309 * isearch.el (isearch-lazy-highlight-remove-overlays): Doc fix.
310 (isearch-lazy-highlight-update): Doc fix.
311
148b5960
EZ
312 * ffap.el (ffap-bindings): Doc fix.
313
4e6ef391
EZ
314 * dired-x.el (dired-virtual-guess-dir): Doc fix.
315
4cb1bcc2
DL
3162001-01-05 Dave Love <fx@gnu.org>
317
318 * emacs-lisp/cl-seq.el (remove, remq): Remove.
319
3828218c
GM
3202001-01-05 Gerd Moellmann <gerd@gnu.org>
321
f1ade7d3
GM
322 * mouse-drag.el (mouse-drag-safe-scroll): Bind
323 scroll-preserve-screen-position to nil.
324
1f4139d5
GM
325 * isearch.el (isearch-old-signal-hook): New variable.
326 (isearch-mode): Set signal-hook-function to isearch-done.
327 (isearch-done): Restore old signal-hook-function.
328
3828218c
GM
329 * info.el (Info-fontify-node): Mark one more char as intangible.
330
3970013f
KH
3312000-01-05 Kenichi Handa <handa@etl.go.jp>
332
3828218c 333 * composite.el (compose-last-chars): New argument COMPONENTS. If
3970013f
KH
334 it is non-nil, compose preceding characters by compose-region with
335 COMPONENTS.
336
337 * international/quail.el (quail-input-string-to-events): New function.
338 (quail-input-method): Convert input string to events here.
339 (quail-start-translation): Return input string, not event list.
340 (quail-start-conversion): Likewise.
341
f3b05e99
GM
3422001-01-04 Gerd Moellmann <gerd@gnu.org>
343
2f5ded21
GM
344 * tooltip.el (tooltip-cancel-delayed-tip)
345 (tooltip-start-delayed-tip): Renamed from tooltip-disable-timeout
346 and tooltip-add-timeout.
347 (tooltip-show): Set border color from faces's foreground.
348 (tooltip-show-help-function): If called with the same help string
349 as last time, do nothing.
350 (tooltip-help-tips): Don't set tooltip-help-message to nil.
351
0f2ac578
GM
352 * startup.el (fancy-splash-screens): Don't bind show-help-function
353 to nil.
354
f3b05e99
GM
355 * tooltip.el (tooltip-frame-parameters): Remove colors.
356 (tooltip): New face
357 (tooltip-set-param): New function.
358 (tooltip-show): Set up color frame parameters from face `tooltip'.
359 Display the tooltip text in face `tooltip'.
360
8416e94a
DL
3612001-01-04 Dave Love <fx@gnu.org>
362
363 * whitespace.el (whitespace-global-mode): Fix typo.
364
365 * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete.
366
30db89f9
EZ
3672001-01-04 Eli Zaretskii <eliz@is.elta.co.il>
368
369 * help.el (help-for-help): Fix a typo in a doc string. From
370 kwzh@gnu.org (Karl Heuer).
371
b847eb8c
DL
3722001-01-03 Dave Love <fx@gnu.org>
373
374 * dired-x.el: Doc fixes. Maintainer change.
375 (dired-guess-shell-gnutar, dired-guess-shell-znew-switches): Fix
376 :type.
377 (dired-guess-shell-alist-default): Don't use xloadimage for PNG.
378 (dired-guess-shell-alist-user): Customize.
379 (dired-x-help-address): Set to bug-gnu-emacs.
380 (dired-x-maintainer, dired-x-file, dired-x-version): Deleted.
381 (dired-default-directory): Renamed from default-directory.
382
383 * hl-line.el (hl-line): Doc fix.
384
43c4b570
KF
3852001-01-03 Karl Fogel <kfogel@red-bean.com>
386
1bf6b1bf 387 * mail/mail-hist.el (mail-hist-text-too-long-p): Doc fix.
43c4b570 388
984c9f75 3892001-01-02 Richard M. Stallman <rms@gnu.org>
5297fb00
RS
390
391 * isearch.el (isearch-lazy-highlight-cleanup): Arg now says
392 to remove all the current alternative-match highlighting.
393 If nil, remove only what's outside the current window.
394 (isearch-lazy-highlight-remove-overlays): Take optional
395 region within which NOT to remove them.
396 (isearch-lazy-highlight-new-loop): Greatly simplified.
397 (isearch-lazy-highlight-update): Find all the other occurrences
398 visible in the window, in just one call.
399 (isearch-lazy-highlight-start): Now holds start of region to scan.
400 (isearch-lazy-highlight-end): Now holds end of region to scan.
401 (isearch-lazy-highlight-wrapped): Variable deleted.
402 (isearch-lazy-highlight-search): Function deleted.
403
13d6a61c
AI
4042000-01-02 Andrew Innes <andrewi@gnu.org>
405
406 * w32-fns.el (convert-standard-filename): Do length check on name
407 before aref.
408
064866e7
DL
4092001-01-02 Dave Love <fx@gnu.org>
410
b33e041b
DL
411 * progmodes/cperl-mode.el (cperl-invalid-face): Don't double-quote
412 value.
413 (cperl-init-faces): Allow cperl-invalid-face to be a normal face.
414
415 * ls-lisp.el (ls-lisp) <defgroup>: Add :version.
416
8166ffd5
DL
417 * net/browse-url.el (browse-url-filename-alist): Avoid backquote
418 read syntax.
419
064866e7
DL
420 * calendar/todo-mode.el (todo): Add :link, :version.
421 (todo-save-top-priorities): Remove autoload cookie.
422 (todo-add-category, todo-add-item-non-interactively)
423 (todo-insert-item, todo-mode, todo-cp, todo-show): Fix autoload
424 cookie.
425
6dde6abc
GM
4262001-01-02 Gerd Moellmann <gerd@gnu.org>
427
428 * comint.el (comint-input-history-ignore): New variable.
429 (comint-read-input-ring): Ignore entries matching
430 comint-input-history-ignore.
431
1a8a9daf
GM
4322001-01-02 Eric M. Ludlam <zappo@gnu.org>
433
434 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): New Variable.
435 (lm-copyright-mark): New function.
436 (lm-crack-copyright): New function.
437 (lm-verify): Check that the file has a copyright.
438 Check that the file is copyright Free Software Foundation.
439
9c92eb53
KH
4402000-12-30 Kenichi Handa <handa@etl.go.jp>
441
442 * international/mule-diag.el (print-fontset): Indent font name by
443 24 columns, not 25.
444
49172314
GM
4452000-12-29 Gerd Moellmann <gerd@gnu.org>
446
762a68ec
GM
447 * textmodes/flyspell.el (mail-mode-flyspell-verify): Spell-check
448 in Subject line.
449
49172314
GM
450 * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
451 Use mail-mode-hook instead of mail-setup-hook. Otherwise
452 continuing an interrupted message with C-u C-x m for instence,
453 winds up in Mail mode without abbrevs.
454
bd7a2e26
GM
4552000-12-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
456
457 * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
458 non-nil. Adding almost all customization variables on ps-setup. Doc
2f5ded21 459 fix.
bd7a2e26
GM
460 (ps-print-version): New version number (6.3.3).
461 (ps-end-with-control-d): Initialization fix.
462 (ps-lines-printed): New var.
463 (ps-skip-newline): New fun.
464 (ps-setup, ps-prologue-file, ps-begin-job, ps-begin-page)
465 (ps-next-line, ps-continue-line, ps-plot-region)
466 (ps-generate-postscript-with-faces, ps-end-job): Code fix.
467
2b3f28a4
KH
4682000-12-29 Kenichi Handa <handa@etl.go.jp>
469
470 * international/fontset.el (x-complement-fontset-spec): Resolve
471 ASCII font name so that the same family name is used for fonts
472 registered in x-font-name-charset-alist.
473 (create-fontset-from-fontset-spec): Adjusted for the above change.
474 The name of fontset alias should be a unresolved ASCII font name.
475
2ece9174
GM
4762000-12-28 Gerd Moellmann <gerd@gnu.org>
477
478 * simple.el (delete-key-deletes-forward-mode): Bind backspace
479 and delete in isearch-mode-map.
480
cbe3ad7a
RS
4812000-12-28 Richard M. Stallman <rms@gnu.org>
482
483 * dired-x.el (dired-guess-shell-alist-default):
484 Use xpdf instead of acroread.
485
a816f1c5
KH
4862000-12-28 Kenichi Handa <handa@etl.go.jp>
487
f086e73c
KH
488 * textmodes/artist.el (artist-butlast): Deleted.
489 (artist-ellipse-mirror-quadrant): Use butlast instead of
defac922 490 artist-butlast.
f086e73c 491
a816f1c5
KH
492 * subr.el (butlast, nbutlast): Moved from cl.el to here.
493
494 * emacs-lisp/cl.el (butlast, nbutlast): Moved to subr.el.
495
b202115b
EZ
4962000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
497
498 From Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>:
499
500 * ls-lisp.el: Better support for the Mac and MS-Windows.
501 (ls-lisp): New defgroup.
502 (ls-lisp-emulation, ls-lisp-ignore-case, ls-lisp-dirs-first)
503 (ls-lisp-verbosity, ls-lisp-use-insert-directory-program)
504 (ls-lisp-support-shell-wildcards): New defcustoms.
505 (ls-lisp-parse-symlink): New function.
506 (insert-directory): Code to convert switches to a list and set up
507 the wildcard argument copied from ls-lisp-insert-directory.
508 (ls-lisp-insert-directory): New argument TIME-INDEX. Add support
509 for -C and -R switches.
510 (ls-lisp-column-format): New function.
511 (ls-lisp-delete-matching, ls-lisp-handle-switches)
512 (ls-lisp-format-time): Add doc strings.
513 (ls-lisp-handle-switches): Handle -U, -S, -X, and -F switches.
514 Support ls-lisp-dirs-first.
515 (ls-lisp-classify, ls-lisp-extension): New functions.
516 (ls-lisp-format): Optionally support emulation of symlinks.
517 Support -i, -s, and -G switches.
518
6061fbf0
GM
5192000-12-27 Gerd Moellmann <gerd@gnu.org>
520
5e25feee
GM
521 * textmodes/texinfo.el (texinfo-mode): Set fill-column to 70.
522
6061fbf0
GM
523 * version.el (emacs-version): Print X scroll bar information.
524
525 * scroll-bar.el (toplevel): Check for x-toolkit-scroll-bars
526 instead of x-toolkit-scroll-bars-p.
527
528 * loadup.el (toplevel): Check for x-toolkit-scroll-bars instead
529 of x-toolkit-scroll-bars-p.
530
25050dab
EZ
5312000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
532
533 * ffap.el (ffap-bindings): Make interactive and add an autoload
534 cookie.
535 (ffap-bindings): Doc fix, to reflect the above change.
536
c1786874
KH
5372000-12-27 Kenichi Handa <handa@etl.go.jp>
538
539 * term.el (term-char-mode): Define all non-ascii self-inserting
540 characters to 'term-send-raw in term-raw-map.
541
7261ece3 5422000-12-25 Michael Kifer <kifer@cs.sunysb.edu>
6061fbf0
GM
543
544 * viper-init (viper-restore-cursor-type): Added condition-case
7261ece3
MK
545 guard.
546
6061fbf0 547 * ediff-init.el (ediff-quit-hook,ediff-suspend-hook): Changed
7261ece3 548 initialization; use add-hook.
6061fbf0 549 (ediff-file-remote-p): Use file-local-copy.
7261ece3 550
6061fbf0 551 * ediff-ptch.el (ediff-prompt-for-patch-buffer): Improved defaults.
7261ece3 552
6061fbf0
GM
553 * ediff.el (ediff-patch-buffer): Bug fix.
554 (ediff-revision): Allow selection of the file at the prompt.
7261ece3 555
83f40583
SM
5562000-12-23 Stefan Monnier <monnier@cs.yale.edu>
557
558 * subr.el (combine-run-hooks): Remove.
559
560 * emacs-lisp/edebug.el (define-minor-mode): Improve the spec
561 and remove the rogue second spec.
562
bdd6d4e8
GM
5632000-12-23 Gerd Moellmann <gerd@gnu.org>
564
565 * progmodes/compile.el (compilation-forget-errors): Fix indentation.
566
26736ce3
SM
5672000-12-22 Stefan Monnier <monnier@cs.yale.edu>
568
0e86b6b0
SM
569 * smerge-mode.el (smerge-basic-map): Use `=' rather than `d'.
570 Use minibuffer menu prompt for the `=' prefix.
571 (smerge-command-prefix): Change default to C-^.
6eabfb26 572 (smerge-mode): Don't assume font-lock doesn't move point.
0e86b6b0 573
26736ce3
SM
574 * skeleton.el (skeleton-internal-1): Make sure the first line of
575 the region is also re-indented.
d21584d6
SM
576 (skeleton-end-newline): New var.
577 (skeleton-end-hook): Use it.
26736ce3 578
95fa4fd7
MB
5792000-12-22 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
580
581 * comint.el (comint-password-prompt-regexp): Support CVS.
582
f060b834
GM
5832000-12-22 Gerd Moellmann <gerd@gnu.org>
584
856ff7a7
GM
585 * simple.el (delete-key-deletes-forward-mode): Simplify. Also
586 backspace key combinations, depending on
587 delete-key-deletes-forward.
588
589 * bindings.el ([C-backspace]): Bind C-backspace to kill-word.
590
f060b834
GM
591 * simple.el (delete-key-deletes-forward): Doc fix.
592
653558a1
GM
5932000-08-22 Emmanuel Briot <briot@gnat.com>
594
595 * xml.el (top level comment): Updated to reflect the fact that
26736ce3 596 white spaces are relevant in the XML file.
653558a1
GM
597 (xml-parse-file): Do not kill an existing Emacs buffer if the file
598 to parse was already edited. This allows for on-the-fly analysis
26736ce3 599 of XML files.
653558a1
GM
600 (xml-parse-tag): Check that the casing is the same in the start
601 tag and end tag, since XML is case-sensitive. Allows for spaces
602 in the end tag, after the name of the tag.
603 (xml-parse-attlist): Allow for the character '-' in the name of
604 attributes, as in the standard http-equiv attribute Do not save
26736ce3 605 the properties in the XML tree, since they are not relevant.
653558a1 606
3ad93d8d
SM
6072000-12-21 Stefan Monnier <monnier@cs.yale.edu>
608
609 * generic.el (generic-read-type): Undo last change, inline into
610 `generic-mode' and then remove.
611 (generic-mode): Inline generic-read-type.
612 (define-generic-mode): Push the symbol name rather than the symbol
613 onto generic-mode-list.
614
177f4e88
GM
6152000-12-21 Gerd Moellmann <gerd@gnu.org>
616
8e15274f
GM
617 * generic.el (generic-read-type): Build an alist for
618 completing-read as in 20.7.
619
620 * play/landmark.el (lm): Use interactive spec `P'.
621 (toplevel): Don't set debug-on-error.
622
177f4e88
GM
623 * server.el (server-switch-buffer): Choose a window on a visible
624 frame.
625
6ba384dc
GM
6262000-12-21 Dave Pearson <davep@davep.org>
627
628 * quickurl.el: Commentry change, I've moved my web site.
629
647a066c
GM
6302000-12-21 Vinicius Jose Latorre <vinicius@cpqd.com.br>
631
632 * ebnf2ps.el: Fix a problem with skip-chars-forward: it doesn't accept
633 ranges like \177-\237, but accepts the character sequence from \177 to
634 \237. Doc fix.
635 (ebnf-version): New version (3.4).
636 (ebnf-setup): Code fix.
637 (ebnf-range-regexp): New fun.
638 (ebnf-8-bit-chars): Const fix.
639
640 * ebnf-bnf.el: Fix the same problem as described on ebnf2ps.el log
641 entry. Doc fix.
642 (ebnf-bnf-lex): Code fix.
643 (ebnf-bnf-comment-chars): Const fix.
644
645 * ebnf-iso.el: Fix the same problem as described on ebnf2ps.el log
646 entry. Doc fix.
647 (ebnf-iso-comment-chars): Const fix.
648
649 * ebnf-otz.el: Doc fix.
650
651 * ebnf-yac.el: Fix the same problem as described on ebnf2ps.el log
652 entry. Doc fix.
653 (ebnf-yac-skip-code): Code fix.
654 (ebnf-yac-comment-chars): Const fix.
655
bc22fd18
EZ
6562000-12-21 Eli Zaretskii <eliz@is.elta.co.il>
657
658 * files.el (insert-directory-safely): New function.
834d23b2
EZ
659 (recover-file): Use it instead of insert-directory. From Markus
660 Rost <markus.rost@mathematik.uni-regensburg.de>
bc22fd18 661
587fc3f9
KH
6622000-12-21 Kenichi Handa <handa@etl.go.jp>
663
eeefcfde 664 * international/mule-cmds.el (select-safe-coding-system): Check
4d513a57 665 coding-category-list more rigidly. Improve help message.
eeefcfde 666
587fc3f9
KH
667 * dired.el (dired-move-to-filename-regexp): Fix previous change.
668
01860fb9
MB
6692000-12-21 Miles Bader <miles@gnu.org>
670
587fc3f9
KH
671 * mail/sendmail.el (mail-mode): Set `comment-start' to the yank
672 prefix.
01860fb9 673
3f9d67a6
KH
6742000-12-21 Kenichi Handa <handa@etl.go.jp>
675
9fd1c1f7
KH
676 * international/mule-diag.el (describe-char-after): Make *Help*
677 buffer inherit multibyteness of the current buffer.
678
3f9d67a6
KH
679 * international/mule.el (make-char): Docstring adjusted for the
680 change of make-char-internal.
681
c9669fac
SM
6822000-12-20 Stefan Monnier <monnier@cs.yale.edu>
683
684 * international/iso-cvt.el: Docstrings fix.
685
19594307
DL
6862000-12-20 Dave Love <fx@gnu.org>
687
688 * subr.el (eval-after-load): Doc fix.
689
b1a447b3
KH
6902000-12-20 Kenichi Handa <handa@etl.go.jp>
691
692 * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
693 for numbers.
694
09877d5d
MB
6952000-12-20 Miles Bader <miles@gnu.org>
696
697 * international/quail.el (quail-help): Resize the help window
698 again after it has all its contents. Remove unneeded progn.
699
71d4497a
GM
7002000-12-19 Gerd Moellmann <gerd@gnu.org>
701
702 * pcmpl-linux.el: Fix copy/paste error.
703
741e56a0
AI
7042000-12-19 Andrew Innes <andrewi@gnu.org>
705
706 * simple.el (delete-key-deletes-forward-mode): Fix typo in
707 docstring.
708
cc24d91c
CD
7092000-12-19 Carsten Dominik <dominik@strw.leidenuniv.nl>
710
ba4c05aa
CD
711 * progmodes/idlw-rinfo.el: Fixed copyright notice.
712
713 * progmodes/idlw-toolbar.el: Fixed copyright notice.
714
715 * progmodes/idlw-shell.el: Fixed copyright notice.
716
717 * progmodes/idlwave.el: Fixed copyright notice.
718
71d4497a 719 * textmodes/reftex-dcr.el (reftex-view-crossref): Added SPACE and
cc24d91c
CD
720 TAB as key separators.
721
524c8caf
GM
7222000-12-19 Alex Schroeder <alex@gnu.org>
723
724 * sql.el (sql-sybase-options): New option.
725 (sql-sybase): Use it. Add sql-database to the list of parameters
726 provided for login. The options -w 2048 -n are not used any more.
727 (sql-postgres-options): Changed default from "--pset" to "-P".
728 (sql-mysql-options): Doc change.
729 (sql-stop): Doc change.
730
b5fa513d
KH
7312000-12-19 Kenichi Handa <handa@etl.go.jp>
732
733 * international/quail.el (quail-input-method): Always hide
734 the guidance buffer on exiting.
735
91c9e6ce
GM
7362000-12-18 Gerd Moellmann <gerd@gnu.org>
737
c6da4eb4
GM
738 * tooltip.el (tooltip-mode): Signal an error if x-show-tip
739 isn't fboundp.
740
3d2a0e0b
GM
741 * server.el (server-buffer-done): Bury the buffer before
742 killing it.
743
91c9e6ce
GM
744 * faces.el (face-spec-set): Interpret a nil in specs for
745 foreground and background colors as `unspecified', for
746 compatibility with 20.x.
747
40fa0008
DL
7482000-12-18 Dave Love <fx@gnu.org>
749
22adbe54
DL
750 * simple.el (mail-user-agent): Doc fix.
751 (input-mode-8-bit): Removed.
752
753 * international/mule.el (set-keyboard-coding-system): Doc fix.
754 (keyboard-coding-system): New option.
755
40fa0008
DL
756 * mail/sendmail.el (send-mail-function): Customize.
757
6f4745e2
EZ
7582000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
759
760 * international/codepage.el (cp866-decode-table): New table.
761
82b90229
GM
7622000-12-18 Gerd Moellmann <gerd@gnu.org>
763
764 * version.el (emacs-version): Remove `%a' from the time format
765 because the weekday doesn't fit well into each locale.
766
5a047002
MB
7672000-12-18 Miles Bader <miles@gnu.org>
768
7f49aa07
MB
769 * image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
770
5a047002
MB
771 * textmodes/artist.el (artist-replace-chars, artist-replace-char):
772 Check that emacs-major-version is `=' to 20, not `>='.
773 (artist-replace-chars): Use `make-string' instead of a loop.
774
22ea2607
EZ
7752000-12-17 Stefan Monnier <monnier@cs.yale.edu>
776
777 * pcvs.el (cvs-diff-backup-extractor): Return full-path for file.
778 (cvs-execute-single-file): Don't change directory.
779 Patch from Per Cederqvist.
780
6c825f8e
EZ
7812000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
782
783 * textmodes/ispell.el (check-ispell-version): If
784 `ispell-program-name' is "aspell", pass it the -v switch instead
785 of -vv.
786
8ff06845
KH
7872000-12-16 Kenichi Handa <handa@etl.go.jp>
788
af4bb4c8
KH
789 * international/mule-diag.el (mule-diag): Insert information about
790 configure options, multibyte awareness, language env.
791
8ff06845
KH
792 * international/ja-dic-cnv.el (skkdic-get-candidate-list): Fix the
793 regexp to search for candidates.
794
b24e84ab
EZ
7952000-12-15 Eli Zaretskii <eliz@is.elta.co.il>
796
797 * info.el (Info-forward-node): If the node has an
798 Info-header-line, widen the buffer before searching for "next:"
799 and "up:" pointers, and set the search limit to stay in the
800 current node.
801
7981d89f
MB
8022000-12-16 Miles Bader <miles@gnu.org>
803
804 * simple.el (delete-trailing-whitespace): Remove extraneous let.
805
88ee7917
MB
8062000-12-15 Miles Bader <miles@gnu.org>
807
808 * comint.el (comint-send-string, comint-send-region): Also accept
809 a buffer, buffer-name, or nil for PROCESS, for compatibility with
810 process-send-string/region.
811
0c28d842
GM
8122000-12-15 Gerd Moellmann <gerd@gnu.org>
813
4ea7fdca
GM
814 * isearch.el (isearch-lazy-highlight-max): New user-option.
815 (isearch-lazy-highlight-update): Don't highlight more than
816 isearch-lazy-highlight-max matches.
817
0c28d842
GM
818 * mail/mh-utils.el (mh-find-path): Set read-mail-command.
819
984c9f75 8202000-12-15 Richard M. Stallman <rms@gnu.org>
3ffa545b 821
8062e53a
GM
822 * sort.el (sort-columns): Fix error message.
823
3ffa545b
GM
824 * dabbrev.el (dabbrev--last-case-pattern): Value is now
825 `upcase' or `downcase' or nil.
826 (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern.
827 Pass new record-case-pattern arg to dabbrev--substitute-expansion.
828 (dabbrev--substitute-expansion): New arg record-case-pattern.
829 If it is non-nil, set dabbrev--last-case-pattern.
830 If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION.
831
832 * dabbrev.el (dabbrev--find-expansion): Remove extra nreverse.
833
c2d7f289
MB
8342000-12-15 Miles Bader <miles@gnu.org>
835
b6348438
MB
836 * paths.el (Info-default-directory-list): Don't delete
837 configure-info-directory from the list of standard info
838 directories when appending it to the end -- their order is
839 important.
840
f9056dd9
MB
841 * faces.el (read-face-attribute): If there's no entry for the
842 user's input in VALID, just use it as-is (this will often result
843 in an error, but it may be OK for e.g. colors using hexadecimal
844 notation, and at least will yield a better error message).
845
c2d7f289
MB
846 * window.el (mode-line-window-height-fudge): Function removed.
847 (height-affecting-face-attributes, mode-line-window-height-fudge):
848 Variables removed.
849 * textmodes/ispell.el (ispell-overlay-window): Ensure that the new
850 window is really the right size. Use vertical-motion
851 rather than forward-line.
852 (ispell-help): Don't use ispell-mode-line-window-height-fudge.
853 (ispell-command-loop, ispell-show-choices): Use the variable
854 ispell-choices-win-default-height, rather than the function.
855 (ispell-choices-win-default-height): Function removed.
856 (ispell-mode-line-window-height-fudge): Function removed.
857
8f530b95
SM
8582000-12-14 Stefan Monnier <monnier@cs.yale.edu>
859
860 * add-log.el (add-change-log-entry): Only expand-file-name if non-nil.
861
6d435deb
EZ
8622000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
863
4dddb0b7
EZ
864 * paths.el (Info-default-directory-list): If
865 configure-info-directory is not one of the standard directories,
866 put it first in the list; otherwise put it last. Doc string
867 changed accordingly.
868
869 * info.el (Info-directory-list): Change doc string to reflect the
870 change in Info-default-directory-list.
871
6d435deb
EZ
872 * simple.el (delete-key-deletes-forward-mode): Treat ms-dos and
873 windows-nt as windowed environments, even under -nw.
874
875 * startup.el (command-line): Don't call x-backspace-delete-keys-p
876 if not fboundp. Switch delete-forward mode for the <delete> key
877 on all PC platforms, even under -nw.
878
879 * term/internal.el ([M-delete]): Remap to M-d.
880
9d7d9263
GM
8812000-12-14 Gerd Moellmann <gerd@gnu.org>
882
883 * emacs-lisp/lisp-mnt.el: Change maintainer to FSF.
884
7cf0153a
EZ
8852000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
886
887 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
888
5e5b3d41
GM
8892000-12-14 Gerd Moellmann <gerd@gnu.org>
890
5f368d29
GM
891 * startup.el (command-line): Call delete-key-deletes-forward-mode,
892 if appropriate.
893
894 * simple.el (delete-key-deletes-forward): New user-option.
895 (delete-key-deletes-forward-mode): New function.
896
9d7d9263 897 * bindings.el: Bind `delete' to backward-delete-char.
5f368d29 898
5e5b3d41
GM
899 * emacs-lisp/easymenu.el (easy-menu-current-active-maps): Test
900 if symbol is bound before getting its value.
901
902 * tooltip.el (tooltip-show): If an error is signaled in
903 x-show-tip, display that error, and display the help in the
904 echo area.
c2d7f289 905
191b83b6
KH
9062000-12-14 Kenichi Handa <handa@etl.go.jp>
907
908 * international/ja-dic-cnv.el (skkdic-set-okuri-nasi): Show
909 "... entries" messages for every 10000 entries, not 10.
910
6192b604
KF
9112000-12-13 Karl Fogel <kfogel@red-bean.com>
912
913 * bookmark.el: Provide a generic exit hook, as suggested by
914 Ovidiu Predescu <ovidiu@cup.hp.com>:
a924cf63
EZ
915 (bookmark-exit-hook): New var.
916 (bookmark-exit-hook-internal): New func, replaces
6192b604
KF
917 old raw lambda form in `kill-emacs-hook', and runs new
918 `bookmark-exit-hooks'. No longer tests for the bookmark feature,
919 as logically that feature must have been provided if this function
920 is running.
921 Removed ;;;###autoload before the `add-hook' call.
922
5edf6b55
SM
9232000-12-13 Stefan Monnier <monnier@cs.yale.edu>
924
925 * emacs-lisp/easymenu.el (easy-menu-define): Setup indentation.
926 (easy-menu-current-active-maps): New function.
927 (easy-menu-get-map): Use it.
928 Make a proper menu entry when creating a new keymap.
929
16b5e8e6
KH
9302000-12-13 Kenichi Handa <handa@etl.go.jp>
931
d49fc4eb
KH
932 * international/characters.el: Fix cases and syntaxes for
933 mule-unicode-0100-24ff.
934
3b53d876
KH
935 * dired.el (dired-move-to-filename-regexp): Fixed for the case
936 that a Japanese character is not appended after day and year.
937
16b5e8e6
KH
938 * info.el (Info-suffix-list): Change format for a command that
939 requires arguments.
940 (info-insert-file-contents): Adjusted for the above change.
941
1df1c518
AS
9422000-12-12 Andreas Schwab <schwab@suse.de>
943
944 * tar-mode.el (tar-extract): Base the name of the subfile buffer
945 on the name of the tar buffer. Verify that the existing buffer is
946 visiting the same subfile.
947
a7a07b98
DL
9482000-12-12 Dave Love <fx@gnu.org>
949
950 * subdirs.el: Add obsolete.
951
4fdbd809
GM
9522000-12-12 Gerd Moellmann <gerd@gnu.org>
953
bfdb75ee
GM
954 * mail/rmailsum.el (rmail-summary-expunge)
955 (rmail-summary-expunge-and-save): Use rmail-expunge-confirmed
956 instead of rmail-confirm-expunge.
957
4fdbd809
GM
958 * replace.el (perform-replace): Don't use an empty match adjacent
959 to a non-empty match when computing the next match before the
960 replacement is performed.
961
e9a59cad
GM
9622000-12-12 Milan Zamazal <pdm@freesoft.cz>
963
964 * progmodes/glasses.el: Use `define-minor-mode' for the minor mode
965 definition (patch by Stefan Monnier).
966 (glasses-mode): Use jit-lock instead of `after-change-functions'
967 (patch by Stefan Monnier).
968
c2def7a0
MB
9692000-12-12 Miles Bader <miles@gnu.org>
970
971 * info.el (Info-last-preorder): Don't barf on nodes without a prev.
972 (Info-scroll-down): Respect `Info-scroll-prefer-subnodes'.
973
591b63b4
AC
9742000-12-12 Andrew Choi <akochoi@i-cable.com>
975
976 * term/mac-win.el: Remove load for ls-lisp.
977
a924cf63 978 * loadup.el: Load ls-lisp for system-type `macos'.
591b63b4 979
5ff4ba3d
MB
9802000-12-12 Miles Bader <miles@gnu.org>
981
982 * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
983 Respect field end too.
984 (just-one-space): Respect fields as `delete-horizontal-space'.
985 (newline-and-indent, reindent-then-newline-and-indent): Use
986 `delete-horizontal-space'.
987
d0c679bc
SM
9882000-12-11 Stefan Monnier <monnier@cs.yale.edu>
989
adf9c994
SM
990 * newcomment.el (comment-indent-new-line): Use delete-horizontal-space
991 (so as to obey the field property in the minibuffer).
992
4b0cd42d
SM
993 * obsolete/c-mode.el: Moved from lisp/progmodes.
994 * obsolete/auto-show.el: Moved from lisp.
995 * obsolete/ooutline.el: Moved from lisp/textmodes.
d0c679bc 996
89f85863
CD
9972000-12-11 Carsten Dominik <dominik@strw.leidenuniv.nl>
998
999 * progmodes/idlwave.el: Updated to IDLWAVE version 4.7. Too many
1000 changes to list them here.
1001
1002 * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7. Too
1003 many changes to list them here.
1004
1005 * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.7. Too
1006 many changes to list them here.
1007
1008 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.7.
1009
3e0d35ce
GM
10102000-12-11 Gerd Moellmann <gerd@gnu.org>
1011
d990421f
GM
1012 * simple.el (kill-new): Don't try to setcar kill-ring if it is
1013 nil.
1014
fda514f7
GM
1015 * cus-edit.el (custom-save-variables, custom-save-faces):
1016 Comment fix.
1017
3e0d35ce
GM
1018 * hscroll.el: Moved to `obsolete' subdir.
1019
ff904dd6
MB
10202000-12-11 Miles Bader <miles@gnu.org>
1021
1022 * window.el (window-text-height): Function removed (now in C).
1023
fb97d87f
SM
10242000-12-10 Stefan Monnier <monnier@cs.yale.edu>
1025
1026 * log-edit.el (log-edit-parent-buffer): New var.
1027 (log-edit): Set it. Add BUFFER argument.
1028 (log-edit-done): Use char-before.
1029 Don't bother checking validity of vc-comment-ring.
1030 Only bury the buffer if log-edit popped it up.
1031
1032 * pcvs.el: Update references to CVS-Edit (now Log-Edit).
1033 (cvs-mode-diff-help): Remove.
1034 (cvs-mode-commit): Use the new `log-edit' BUFFER argument.
802cf66c 1035 (cvs-mode-marked): Set up the default for CMD manually.
fb97d87f
SM
1036
1037 * pcvs-defs.el (cvs-mode-diff-map): Use minibuffer menu prompt.
1038 Remove binding for ? now made unnecessary.
1039
7de77417
CD
10402000-12-10 Carsten Dominik <dominik@strw.leidenuniv.nl>
1041
1042 * textmodes/reftex.el (reftex-scanning-info-available-p): New
1043 function
1044 (reftex-TeX-master-file): Check for `tex-main-file' early enough.
1045
1046 * textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug
1047 when master file is not open.
1048
4efa209f
SM
10492000-12-09 Stefan Monnier <monnier@cs.yale.edu>
1050
1051 * progmodes/ada-stmt.el: Update `maintainer'.
1052
0a8052bd
GM
10532000-12-09 Stephen Gildea <gildea@alum.mit.edu>
1054
1055 * time-stamp.el (time-stamp-old-format-warn): Reorder custom
1056 choices to match documentation string.
1057
a12167c5
MB
10582000-12-09 Miles Bader <miles@gnu.org>
1059
2161605d
MB
1060 * minibuf-eldef.el: New file.
1061
a12167c5
MB
1062 * window.el (fit-window-to-buffer): Don't pass last argument to
1063 pos-visible-in-window-p, now that its meaning is inverted.
1064
9ea8de1b
EZ
10652000-12-08 Eli Zaretskii <eliz@is.elta.co.il>
1066
1067 * image.el (create-image): Doc fix; spotted by Per Cederqvist
1068 <ceder@lysator.liu.se>.
1069
5002ddbb
SM
10702000-12-08 Stefan Monnier <monnier@cs.yale.edu>
1071
b6114d80
SM
1072 * autoinsert.el (auto-insert-alist): Add missing final \n.
1073
ee8d23ee
SM
1074 * pcvs-defs.el (cvs-menu): Move. Make submenu for diff commands.
1075 (cvs-menu-map): Remove.
1076 * pcvs.el (cvs-menu): Use `cvs-menu' rather than `cvs-menu-map'.
1077 (cvs-mode-quit): Turn it back into a plain function.
1078
5002ddbb 1079 * textmodes/texnfo-upd.el (texinfo-chapter-level-regexp)
ee8d23ee 1080 (texinfo-filter): Remove (move to texinfo.el).
5002ddbb
SM
1081
1082 * textmodes/texinfo.el: Move the (require 'cl) to the front of the
1083 file where it's more visible.
1084 (texinfo-filter, texinfo-chapter-level-regexp): New variables
1085 moved from texnfo-upd.el (for AUCTeX's compatibility, originally).
1086 (texinfo-mode): Use texinfo-chapter-level-regexp for page-delimiter.
1087 (texinfo-inside-macro-p): Only catch `scan-error's.
1088 (texinfo-inside-env-p): Make better use of the match info.
1089 (texinfo-insert-quote): Collapse calls to `texinfo-inside-macro-p'.
1090 (texinfo-insert-@end): Slight re-organization.
1091 Also remove useless `looking-at' call.
1092
30cd075d
AI
10932000-12-08 Andrew Innes <andrewi@gnu.org>
1094
1095 * w32-fns.el: Add clipboard support from term/w32-win.el, so it is
1096 accessible in -nw mode.
1097
1098 * term/w32-win.el: Remove stuff about selection timeout, which is
1099 irrelevant on Windows. Move clipboard support to w32-fns.el, so
1100 it is accessible in -nw mode.
1101
01b91009
DL
11022000-12-08 Dave Love <fx@gnu.org>
1103
1104 * emacs-lisp/lisp-mode.el (lisp-mode): Set
1105 font-lock-keywords-case-fold-search.
1106
842b2a94
GM
11072000-12-08 Gerd Moellmann <gerd@gnu.org>
1108
1109 * textmodes/ispell.el (ispell): Doc fix.
1110
f9d5f611
KH
11112000-12-08 Kenichi Handa <handa@etl.go.jp>
1112
1113 * international/quail.el (quail-insert-decode-map): Check the
1114 frame width of a window displaying the current buffer, not that of
1115 the selected frame.
1116 (quail-help): Make sure that the help buffer has window before
1117 inserting text in it.
1118
e04d21aa
SS
11192000-12-07 Sam Steingold <sds@gnu.org>
1120
1121 * loadup.el: Load emacs-lisp/backquote instead of autoloading.
1122 Backquote is used in isearch.el, so autoloading saves nothing.
1123
fc3e23a4
EZ
11242000-12-07 Eli Zaretskii <eliz@is.elta.co.il>
1125
137cad7c
EZ
1126 * startup.el (normal-top-level-add-subdirs-to-load-path): Ignore
1127 the CVS and RCS subdirectories case-insensitively.
1128
fc3e23a4
EZ
1129 * dired.el (dired-insert-directory): If file-system-info is
1130 fboundp, call it instead of invoking dired-free-space-program.
1131
796ecd10
GM
11322000-12-07 Gerd Moellmann <gerd@gnu.org>
1133
0f5f7c3e
GM
1134 * server.el (server-visit-files): Push files on file-name-history.
1135
3764ba49
GM
1136 * progmodes/cc-langs.el: Update copyright.
1137
8e7931da
GM
1138 * progmodes/idlw-shell.el, progmodes/idlwave.el: Update copyright.
1139
ae0d7485 1140 * bindings.el (mode-line-mode-menu): Add glasses-mode.
e04d21aa 1141
796ecd10
GM
1142 * bindings.el (mode-line-mode-menu): Reverse the order
1143 of define-keys so that the menu appears in alphabetical order.
1144
ae0d7485
GM
11452000-12-07 Milan Zamazal <pdm@freesoft.cz>
1146
1147 * progmodes/glasses.el (glasses-mode): Update mode line at the end
1148 of the function.
1149
e2849090
DL
11502000-12-07 Dave Love <fx@gnu.org>
1151
1152 * jka-compr.el (jka-compr-compression-info-list): Fix :type.
1153
1154 * facemenu.el (facemenu-unlisted-faces): Fix value.
1155
5c7f629c
SM
11562000-12-07 Stefan Monnier <monnier@cs.yale.edu>
1157
1158 * font-lock.el (font-lock-default-fontify-region):
1159 Include the terminating \n (off-by-one error).
1160 (font-lock-set-defaults): Use dolist.
1161
1162 * derived.el (define-derived-mode): Don't use combine-run-hooks.
1163
73481ae3
KH
11642000-12-07 Kenichi Handa <handa@etl.go.jp>
1165
ffbaa122
KH
1166 * international/mule-cmds.el (describe-language-environment): Fix
1167 for the case that an input method title is not string but a list.
1168
73481ae3
KH
1169 * ps-bdf.el (bdf-read-font-info): Modify the kludgy code for fonts
1170 of wrong SIZE record.
1171
e2896b22
DL
11722000-12-06 Dave Love <fx@gnu.org>
1173
67292061
DL
1174 * newcomment.el (comment-region, comment-dwim): Doc fix.
1175
1176 * textmodes/texinfo.el: Require tex-mode when compiling.
1177 (texinfo-update-node): Doc fix.
1178 (texinfo-imenu-generic-expression): Add @anchor.
1179 (texinfo-font-lock-keywords): Add @uref.
1180 (texinfo-inside-macro-p): Don't use ignore-errors.
1181 (texinfo-insert-quote): Match more contexts.
1182
e76938e7
DL
1183 * international/mule.el (decode-char, encode-char): Doc fix.
1184 (auto-coding-alist): Customize.
1185
1186 * files.el (load-file): Fix change of 2000-03-12.
1187
e2896b22
DL
1188 * wid-edit.el (widget-text-keymap): Doc fix.
1189
6610f4b2
AI
11902000-12-06 Andrew Innes <andrewi@gnu.org>
1191
1192 * makefile.w32-in (lisp): Set to an absolute directory, namely
1193 $(CURDIR).
1194
9e3366e4
EZ
11952000-12-06 Eli Zaretskii <eliz@is.elta.co.il>
1196
1197 * emacs-lisp/autoload.el (update-file-autoloads): Use raw-text to
1198 read generated-autoload-file, and set buffer-file-coding-system to
1199 raw-text-unix after reading the file.
1200
1201 * international/mule-conf.el (file-coding-system-alist): Use
1202 raw-text for reading loaddefs.el and raw-text-unix for writing
1203 it.
1204
d94d636f
GM
12052000-12-06 Gerd Moellmann <gerd@gnu.org>
1206
384333ee
GM
1207 * replace.el (occur): Make line-number-width 1 smaller for the
1208 colon following the line number.
1209
347d0813
GM
1210 * startup.el (fancy-splash-text, command-line-1): Use
1211 `File' for the menu name instead of `Files'.
e04d21aa 1212
d4b72d58
GM
1213 * tmm.el: Update copyright.
1214
d94d636f
GM
1215 * cus-start.el: Add entry for even-window-heights.
1216
6e424019
MB
12172000-12-06 Miles Bader <miles@gnu.org>
1218
1219 * faces.el (frame-set-background-mode): Avoid stomping on
1220 locally modified faces.
1221
e6477b58
KH
12222000-12-06 Kenichi Handa <handa@etl.go.jp>
1223
1224 * international/fontset.el: Correct the font registries for
1225 japanese-jisx0213-1 and japanese-jisx0213-2.
1226
21999ab9
GM
12272000-12-05 Gerd Moellmann <gerd@gnu.org>
1228
57d6e381
GM
1229 * textmodes/reftex-toc.el (reftex-toc-menu): Fix typo.
1230
21999ab9
GM
1231 * iswitchb.el: Update customization commentary.
1232
7422819c
GM
12332000-12-05 Rob Riepel <riepel@Stanford.EDU>
1234
1235 * emulation/tpu-edt.el (tpu-help): Fixed previous screen logic.
1236 (tpu-search-highlight): Fixed comparison of overlay end positions.
1237 (tpu-trim-line-ends): Implemented trimming logic locally.
1238
1239 * emulation/tpu-extras.el (tpu-write-file-hook)
1240 (tpu-set-cursor-bound): Replaced picture-clean with
1241 tpu-trim-line-ends.
1242
73daff18
KH
12432000-12-05 Kenichi Handa <handa@etl.go.jp>
1244
1245 * language/chinese.el (chinese-iso-8bit): Change mime-charset name
1246 to cn-gb.
1247 (cn-gb, gb2312): New aliases for chinese-iso-8bit.
1248
6a4cd002
DL
12492000-12-04 Dave Love <fx@gnu.org>
1250
1251 * emacs-lisp/cl-indent.el: Remove erroneous spec for condition-case.
1252
6452929e
GM
12532000-12-04 Gerd Moellmann <gerd@gnu.org>
1254
e04d21aa 1255 * mail/rmailsum.el (rmail-summary-expunge)
6452929e
GM
1256 (rmail-summary-expunge-and-save): Ask for confirmation with
1257 rmail-expunge-confirmed.
1258
1259 * mail/rmail.el (rmail-expunge-confirmed): New function.
1260 (rmail-expunge): Use it.
1261
0c68ce6f
GM
1262 * progmodes/etags.el (tag-partial-file-name-match-p): New function.
1263 (etags-recognize-tags-table, find-tag-in-order): New
1264 functionality: interpret file names as tags.
e04d21aa 1265
7a53d8c8
EZ
12662000-12-04 Eli Zaretskii <eliz@is.elta.co.il>
1267
1268 * info.el (Info-scroll-prefer-subnodes): New defcustom.
1269 (Info-scroll-up): If Info-scroll-prefer-subnodes is nil, don't
1270 visit the first subnode until the bottom of the current node is
1271 visible.
1272
caa15ef7
GM
12732000-12-04 Gerd Moellmann <gerd@gnu.org>
1274
1275 * format.el (format-decode): Don't change buffer's undo list.
1276
e225faa7
KH
12772000-12-04 Kenichi Handa <handa@etl.go.jp>
1278
1279 * faces.el (face-font-registry-alternatives): Add entries for CJK
1280 fonts. Doc-string adjusted for the actual usage of this data.
1281
1282 * international/fontset.el: Change the font registries for CJK
1283 fonts in the default fontset. Don't append '*' to registries.
1284
8b262a65
SM
12852000-12-03 Stefan Monnier <monnier@cs.yale.edu>
1286
e04d21aa 1287 * emacs-lisp/easy-mmode.el (define-derived-mode)
8b262a65
SM
1288 (easy-mmode-derived-mode-p): Remove (moved to derived.el).
1289
1290 * derived.el (define-derived-mode): Revived, moved from easy-mmode.el.
1291 (derived-mode-p): New function.
1292 (derived-mode-make-docstring): Add `docstring' argument.
1293 Use it if available and complete it if necessary.
1294
33c4460b
AS
12952000-12-03 Andreas Schwab <schwab@suse.de>
1296
1297 * type-break.el (type-break): Don't make parent of itself.
1298
5c9b3fac
MB
12992000-12-03 Miles Bader <miles@gnu.org>
1300
1301 * simple.el (delete-trailing-whitespace): Don't delete newlines too.
1302
27ce741e
SM
13032000-12-02 Stefan Monnier <monnier@cs.yale.edu>
1304
07c16ec4
SM
1305 * textmodes/tex-mode.el (tex-start-shell): Obey shell-file-name.
1306 (tex-main-file, tex-file): Simplify.
1307 (tex-generate-zap-file-name): Use subst-char-in-string.
1308 (tex-strip-dots): Remove.
1309
c19cc275
SM
1310 * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
1311
27ce741e
SM
1312 * textmodes/ispell.el (check-ispell-version): Don't use match-beginning
1313 to check if the match succeeded.
1314
285991dc
GM
13152000-12-02 Gerd Moellmann <gerd@gnu.org>
1316
1317 * startup.el (use-fancy-splash-screens-p): New function.
1318 (command-line-1): Use it to determine whether or not to use
1319 a fancy splash screen.
1320
52dca1b2
AS
13212000-12-02 Andreas Schwab <schwab@suse.de>
1322
1323 * emacs-lisp/eldoc.el (eldoc): Don't make parent of itself.
1324
d3e7e7cf
EZ
13252000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
1326
2dce2360
EZ
1327 * international/mule.el (make-char): Fix last change.
1328
9768eaa7
EZ
1329 * textmode/texinfo.el (texinfo-open-quote, texinfo-close-quote):
1330 New defcustoms.
1331 (texinfo-insert-quote): Don't call tex-insert-quote, to avoid
1332 autoloading tex-mode; instead, do the same manually. Use
1333 texinfo-open-quote and texinfo-close-quote. Insert literal quote
1334 with numeric argument. Docstring fix.
1335 (toplevel): Require cl when compiling.
e04d21aa 1336
285991dc 1337 * international/mule.el (make-char): Doc fix.
d3e7e7cf 1338
0dd5e255
JR
13392000-12-02 Jason Rumney <jasonr@gnu.org>
1340
1341 * term/w32-win.el (x-select-enable-clipboard): Customize (as per
1342 the Emacs Lisp manual)
1343
fbb87147
EZ
13442000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
1345
5cbb3e93
EZ
1346 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
1347
fbb87147
EZ
1348 * term/pc-win.el (x-select-enable-clipboard): Customize (as per
1349 the Emacs Lisp manual).
1350
1636ca09
GM
13512000-12-02 Gerd Moellmann <gerd@gnu.org>
1352
1353 * simple.el (next-line-add-newlines): Change default to nil.
1354
68875f0e
EZ
13552000-12-01 Eli Zaretskii <eliz@is.elta.co.il>
1356
1357 * files.el (revert-buffer, recover-file): Bind
1358 coding-system-for-read to emacs-mule-unix, not to no-conversion.
1359
fd9ac94c
GM
13602000-12-01 Gerd Moellmann <gerd@gnu.org>
1361
1362 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
1363
45450dd5
MB
13642000-12-01 Miles Bader <miles@gnu.org>
1365
1366 * window.el (fit-window-to-buffer): Handle non-nil `truncate-lines'.
1367
09df8881
KH
13682000-12-01 Kenichi Handa <handa@etl.go.jp>
1369
1370 * international/mule-diag.el (describe-char-after): Fix typo.
1371 (describe-character-set, non-iso-charset-alist): Fix typo.
1372
dea0a87d
MB
13732000-12-01 Miles Bader <miles@gnu.org>
1374
b170205b
MB
1375 * image-file.el (image-file-name-regexp): Automatically add
1376 upper-case variants of each filename extension in
1377 `image-file-name-extensions', since they seem to be common.
1378
e04d21aa 1379 * simple.el (minibuffer-contents)
dea0a87d
MB
1380 (minibuffer-contents-no-properties, delete-minibuffer-contents):
1381 New functions.
1382 * filecache.el (file-cache-directory-name)
1383 (file-cache-minibuffer-complete): Ignore the minibuffer prompt.
1384
2b69bc11 13852000-12-01 Milan Zamazal <Milan.Zamazal@qbizm.com>
e04d21aa 1386
dea0a87d
MB
1387 * filecache.el (file-cache-minibuffer-complete): Don't try to
1388 delete the minibuffer prompt.
1389
a8a1b05d
DL
13902000-11-30 Dave Love <fx@gnu.org>
1391
1392 * cus-start.el: Fix read-buffer-function type.
1393
693c4692
GM
13942000-11-30 Gerd Moellmann <gerd@gnu.org>
1395
1396 * md5.el: Removed. There's a built-in function, now.
1397
2c0b1898
GM
13982000-11-30 Markus Rost <rost@math.ohio-state.edu>
1399
1400 * mail/rmail.el (rmail-set-message-counters): Don't use "D"
1401 as dummy 0-th char of rmail-deleted-vector.
1402
63dfcf4b
EZ
14032000-11-30 Eli Zaretskii <eliz@is.elta.co.il>
1404
1405 * ps-print.el (ps-end-job): Bind case-fold-search only after
1406 switching to ps-spool-buffer.
1407
14082000-11-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1409
1410 * ps-print.el: Line number font customization. PostScript: Lines and
1411 PageCount are initialized on each page. Doc Fix.
1412 (ps-print-version): New version number (6.3.2).
1413 (ps-lpr-switches, ps-font-info-database, ps-font-size)
1414 (ps-header-font-size, ps-header-title-font-size, ps-left-header)
1415 (ps-right-header): Customization fix.
1416 (ps-setup, ps-select-font, ps-begin-file, ps-header-sheet, ps-end-job):
1417 Fix code.
1418 (ps-end-with-control-d, ps-line-number-font, ps-line-number-font-size):
1419 New vars.
1420
df3aedcf
GM
14212000-11-30 Gerd Moellmann <gerd@gnu.org>
1422
edfb795e
GM
1423 * bs.el: Fix typos and spelling errors.
1424 (bs-appearance) <defgroup>: Renamed from bs-appearence.
1425 (bs-configuration): Doc fix.
e04d21aa 1426
df3aedcf
GM
1427 * bs.el: Undo mistaken change of 2000-11-28. Update copyright.
1428
8b8a7f01
GM
14292000-11-30 Rob Riepel <riepel@Stanford.EDU>
1430
1431 * emulation/tpu-edt.el (tpu-version): New version.
1432 (tpu-search-overlay, tpu-replace-overlay): New initial range.
1433 (tpu-original-mode-line): Variable deleted.
1434 (tpu-mark-flag): New initial value.
1435 (tpu-set-mode-line): Don't redefine mode-line-format. Add
1436 tpu-mark-flag to minor-mode-alist.
1437 (tpu-update-mode-line): New mark flag logic.
1438 (tpu-get): Use find-file-wildcards.
1439 (tpu-search-highlight): Move overlay less, reset overlay properly.
1440 (tpu-unselect): Deactivate mark.
1441 (tpu-lm-replace): Reset overlay properly.
1442 (tpu-forward-line): Use forward-visible-line.
1443 (tpu-edt-on): Set transient mark mode. ispell autoloads deleted.
1444
1445 * emulation/tpu-extras.el (tpu-forward-line): Use
1446 forward-visible-line.
e04d21aa 1447
c069a9d3
GM
14482000-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
1449
1450 * cus-edit.el (custom-face-value-create): Always emphasize tag.
1451
b02cd40b
GM
14522000-11-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
1453
1454 * calendar/diary-lib.el (diary-entry-time): Anchor pattern correctly
1455 and skip whitespace and newlines.
e04d21aa 1456
b7a90344
SM
14572000-11-30 Stefan Monnier <monnier@cs.yale.edu>
1458
1459 * emacs-lisp/cl.el (third...tenth): Really undo change of 2000-08-05.
1460
be6bbb55
GM
14612000-11-29 Gerd Moellmann <gerd@gnu.org>
1462
0383ed60
GM
1463 * help.el (describe-function-1): Regexp-quote function name
1464 when used as part of a regexp.
1465
c7957947
GM
1466 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Use
1467 face-attribute instead of face-foreground and face-background.
1468 (tool-bar-add-item): Likewise, and handle unspecified colors.
1469
1470 * enriched.el (enriched-face-ans): Use face-attribute instead
1471 of face-foreground and face-background.
1472
1473 * faces.el (face-foreground, face-background, face-stipple):
1474 Return nil if attribute is unspecified, for backward
1475 compatibility.
1476
7423978d
GM
1477 * files.el (auto-mode-alist): Add an entry for antlr-mode.
1478
ef128c78
GM
1479 * play/5x5.el: Remove version info.
1480
a81fc510
GM
1481 * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
1482
be6bbb55
GM
1483 * frame.el (blink-cursor-mode): Doc fix.
1484
f9396e03
GM
14852000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
1486
1487 * antlr-mode.el: New commands to run ANTLR from within Emacs and
1488 to create Makefile rules.
1489 (antlr-tool-command): New user option.
1490 (antlr-ask-about-save): New user option.
1491 (antlr-makefile-specification): New user option.
1492 (antlr-file-formats-alist): New variable.
1493 (antlr-special-file-formats): New variable.
1494 (antlr-unknown-file-formats): New user option.
1495 (antlr-help-unknown-file-text): New variable.
1496 (antlr-help-rules-intro): New variable.
1497 (antlr-mode-map): Add [C-c C-r] for `antlr-run-tool'.
1498 (antlr-mode-menu): Add entries.
1499 (antlr-file-dependencies): New function.
1500 (antlr-directory-dependencies): New function.
1501 (antlr-superclasses-glibs): New function.
1502 (antlr-run-tool): New command.
1503 (antlr-makefile-insert-variable): New function.
1504 (antlr-insert-makefile-rules): New function.
1505 (antlr-show-makefile-rules): New command.
1506
1507 * antlr-mode.el: More Emacs/XEmacs stuff.
1508 (antlr-no-action-keywords): New constant with value nil.
1509 (antlr-font-lock-keywords-alist): Use it. Old value would break
1510 syntax highlighting in Emacs-21.0.
1511 (antlr-default-directory): Emacs/XEmacs dependend function.
1512 (antlr-read-shell-command): Ditto.
1513 (antlr-with-displaying-help-buffer): Ditto.
1514
15152000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
1516
1517 * antlr-mode.el: imenu, parsing and highlighting changes.
1518 (antlr-imenu-create-index-function): Don't create extra submenus
1519 for definitions in different grammar classes. It is not necessary
1520 for the menu and would make command `imenu' awkward to use.
1521 (antlr-skip-file-prelude): With ANTLR-2.7+, you can specify named
1522 header actions and more than one.
1523 (antlr-font-lock-tokendef-face): Changed color.
1524 (antlr-font-lock-tokenref-face): Changed color.
1525 (antlr-font-lock-additional-keywords): Also highlight lowercase.
1526 (antlr-mode-syntax-table): New variable.
1527 (antlr-mode): Populate and use it instead `java-mode-syntax-table'.
1528 (antlr-with-syntax-table): Don't copy syntax table.
1529
15302000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
1531
1532 * antlr-mode.el: Minor changes: language setting.
1533 (antlr-language-alist): The value for file option "language" can
1534 be both an identifier and a string.
1535 Reported by Rajesh Radhakrishnan <radhakrs@email.uc.edu>.
1536 (antlr-language-limit-n-regexp): Change accordingly.
1537
15382000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
1539
1540 * antlr-mode.el: Minor changes: tabs, hiding.
1541 (antlr-tab-offset-alist): Set `indent-tabs-mode' to nil instead t.
1542 (antlr-action-visibility): Also allow value nil to also hide the
1543 braces. Renamed from `antlr-tiny-action-length'.
1544 Suggested by Jay@aol.com.
1545 (antlr-hide-actions): Change accordingly. Hide line if completely
1546 hidden action is on a line of its own.
e04d21aa 1547
6ad948eb
SM
15482000-11-29 Stefan Monnier <monnier@cs.yale.edu>
1549
1550 * subr.el (combine-run-hooks): Only run-hooks if there's a hook to run.
1551
1552 * sort.el (sort-columns): Don't concat strings with numbers.
1553
9c6a4107
DL
15542000-11-29 Dave Love <fx@gnu.org>
1555
1556 * cus-edit.el (face): Fix :format.
1557
1558 * mail/feedmail.el: Require smtpmail when compiling.
1559 (mail-do-fcc): Autoload.
1560 (feedmail) <defgroup>: Fix :link.
1561 (feedmail-nuke-body-in-fcc): Fix :type.
1562 (feedmail-send-it): Add autoload cookie.
1563
053b8d35
SM
15642000-11-29 Stefan Monnier <monnier@cs.yale.edu>
1565
1566 * newcomment.el (comment-indent): Save excursion around call to
1567 comment-indent-function.
1568
242c13e8
MB
15692000-11-29 Miles Bader <miles@gnu.org>
1570
1571 * subr.el (member-ignore-case): Return the tail of the list who's
1572 car matches, like `member', not the matching element itself.
1573
8f4b5f28
KH
15742000-11-29 Kenichi Handa <handa@etl.go.jp>
1575
1576 * xml.el (xml-parse-tag): Fix finding opening tag. A tag name
1577 should not contain `\n'.
1578
bebe4a2c
GM
15792000-11-28 Gerd Moellmann <gerd@gnu.org>
1580
fd9ac94c 1581 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
99879a40 1582
ba7e40eb
GM
1583 * hscroll.el: Add hints to `automatic-hscrolling' to doc strings.
1584
75ab0c79
GM
1585 * dired-aux.el (dired-do-create-files): Construct default file
1586 name for dired-mark-read-file-name so that when the user enters
1587 just RET, the target file will end up in the target directory.
1588
bebe4a2c
GM
1589 * abbrev.el (prepare-abbrev-list-buffer): Get the value of
1590 local-abbrev-table before changing buffers because it might
1591 have a buffer-local binding.
1592
fa6d1ca8
MB
15932000-11-28 Miles Bader <miles@gnu.org>
1594
1595 * simple.el (delete-horizontal-space): Handle fields more generally.
1596
8d2c2642
GM
15972000-11-28 Gerd Moellmann <gerd@gnu.org>
1598
1599 * simple.el (delete-horizontal-space): Handle minibuffer prompt.
1600
8b31236d
DL
16012000-11-28 Dave Love <fx@gnu.org>
1602
3cbd02d2
DL
1603 * progmodes/ps-mode.el (ps-mode): Set comment-start and
1604 comment-start-skip locally.
1605
8b31236d
DL
1606 * progmodes/fortran.el (fortran-mode): Don't set
1607 fortran-comment-line-start-skip. Set comment-start to
1608 fortran-comment-line-start.
1609 (fortran-fill-paragraph) <non-empty-comment>: Remove regexp group.
1610 (fortran-comment-line-start-skip): Simplify slightly.
1611
ae4bf56d
GM
16122000-11-28 Gerd Moellmann <gerd@gnu.org>
1613
17ef7534
GM
1614 * play/5x5.el: Remove RCS keyword.
1615
fd9ac94c 1616 * bs.el: Mistaken commit, undone 2000-11-30.
ae4bf56d 1617
665b27a6
GM
16182000-11-28 Milan Zamazal <pdm@freesoft.cz>
1619
1620 * textmodes/tildify.el (tildify-string-alist): Add
1621 `plain-tex-mode' here.
1622
fe3c2ae3
GM
16232000-11-28 Colin Walters <walters@cis.ohio-state.edu>
1624
1625 * chistory.el (Command-history-setup): Remove extraneous `keymap'
1626 reference.
1627
d970106b
MB
16282000-11-28 Miles Bader <miles@gnu.org>
1629
36b80a0d
MB
1630 * cus-face.el (custom-face-attributes): Add post-filter function
1631 for :box. Make pre-filter function for :box handle all cases.
1632
d970106b
MB
1633 * wid-edit.el (widget-choose): Make sure pop-up window is large
1634 enough to display all the choices, as there's no way to scroll it.
1635
5a2bae6c
KH
16362000-11-28 Kenichi Handa <handa@etl.go.jp>
1637
1638 * international/mule-conf.el: Make the coding system no-conversion
1639 safe for all characters.
1640
9e836e23
DL
16412000-11-27 Dave Love <fx@gnu.org>
1642
8b31236d
DL
1643 * net/ldap.el (ldap) <defgroup>: Add :version.
1644
9e836e23
DL
1645 * tooltip.el (tooltip-use-echo-area): Doc fix.
1646
1647 * cus-start.el <minibuffer-prompt-properties>: Add version.
1648 <read-buffer-function>: Add.
1649
1650 * apropos.el (apropos-print): Add help-echo to active text.
1651
1652 * term/x-win.el (x-select-enable-clipboard): Customize (per lispref).
1653
4a74d071
GM
16542000-11-27 Gerd Moellmann <gerd@gnu.org>
1655
1656 * mail/rmail.el (rmail-automatic-folder-directives): Add a custom
1657 type, group and version.
1658
76058c27
EZ
16592000-11-27 Eli Zaretskii <eliz@is.elta.co.il>
1660
4a74d071 1661 * select.el (x-get-selection): Docstring fix.
76058c27 1662
fd9ac94c 16632000-11-27 Dave Pearson <davep@hagbard.demon.co.uk>
26a8d08d 1664
fd9ac94c 1665 * play/5x5.el (5x5-play-solution): Bind hinhibit-quit to t.
26a8d08d 1666
49060c51
AI
16672000-11-27 Andrew Innes <andrewi@gnu.org>
1668
1669 * makefile.nt (.SUFFIXES): Add .SUFFIXES.
1670
1671 * makefile.w32-in (.SUFFIXES): Add .SUFFIXES.
1672
b2a8e429
MB
16732000-11-27 Miles Bader <miles@gnu.org>
1674
1675 * dired.el (dired-get-filename): Return filename verbatim if
1676 LOCALP is `verbatim'.
1677 * dired-aux.el (dired-add-entry): Call `dired-get-filename' with
1678 `verbatim' so that we don't inadvertently delete a non-existant
1679 directory name.
1680
5ac0366d
KH
16812000-11-27 Kenichi Handa <handa@etl.go.jp>
1682
1683 * international/characters.el: Specify cases and syntaxes for
1684 mule-unicode-0100-24ff.
1685
67f1cf4c
GM
16862000-11-27 Gerd Moellmann <gerd@gnu.org>
1687
1688 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle case
1689 that foreground and/or background colors of the face `tool-bar'
1690 are unspecified.
1691
46c56972
MB
16922000-11-27 Miles Bader <miles@gnu.org>
1693
e04d21aa 1694 * wid-edit.el (widget-field-buffer, widget-field-start)
ec725166
MB
1695 (widget-field-end): Handle widget field `pseudo-overlays'.
1696 (widget-field-value-delete): Delete WIDGET from `widget-field-new'
1697 if it's there instead of in `widget-field-list'.
1698
46c56972 1699 * help.el (help-manyarg-func-alist): Correct entry for `vconcat'.
a2e6f426
MB
1700 (help-make-xrefs): Delete extraneous newlines at the end of the
1701 docstring.
46c56972 1702
640a9cdd
JR
17032000-11-25 Jason Rumney <jasonr@gnu.org>
1704
1705 * startup.el (command-line): Call set-locale-environment after
1706 Window System init file is read, as it can result in a call to
1707 redraw-frame.
1708
0b3f96d4
EZ
17092000-11-25 Eli Zaretskii <eliz@is.elta.co.il>
1710
1711 * simple.el (shell-command): Mention the effect of the prefix
1712 argument in the doc string.
1713
8da6e2a1
MB
17142000-11-25 Miles Bader <miles@gnu.org>
1715
a658d039
MB
1716 * cus-face.el (custom-face-attributes): Add "None" choice to :stipple.
1717
8da6e2a1 1718 * wid-edit.el (widget-field-value-delete): Don't try to delete
a2e6f426 1719 overlay when it's the `pseudo-overlay' that exists at some points.
8da6e2a1 1720
d3416cca
JR
17212000-11-24 Jason Rumney <jasonr@gnu.org>
1722
1723 * international/mule-cmds.el (locale-language-names): Add "jp" as
1724 a non-standard alternative for Japanese.
1725
17e37f53
AS
17262000-11-24 Andre Spiegel <spiegel@gnu.org>
1727
1728 * vc-hooks.el: Require 'cl during compilation.
1729
9aa5f148
GM
17302000-11-24 Gerd Moellmann <gerd@gnu.org>
1731
ba193890
GM
1732 * faces.el (face-set-after-frame-default): Let face attributes
1733 specified for new frames override frame parameters.
1734
9aa5f148
GM
1735 * startup.el (command-line): Fix computation of the source file
1736 for user-init-file when user-init-file is a compiled file.
1737
51a1edab
MB
17382000-11-24 Miles Bader <miles@gnu.org>
1739
e04d21aa 1740 * cus-edit.el (custom-filter-face-spec, custom-pre-filter-face-spec)
51a1edab
MB
1741 (custom-post-filter-face-spec): New functions.
1742 (custom-face-set, custom-face-value-create): Filter the face spec
1743 before and after customization.
1744 (custom-face-set): If VALUE specifies a null face, pass a
1745 non-null-but-otherwise-ignored face-spec instead to `face-spec-set'.
1746 * cus-face.el (custom-face-attributes): Remove SET and GET
1747 functions. Add some IN-FILTER and OUT-FILTER functions in the few
1748 cases they're needed.
1749
1ed74431
MB
1750 * wid-edit.el (checkbox): Add a small `X' to the the :on-glyph, so
1751 that it's distinguishable from the :off-glyph on dark-background
1752 displays. Set its background color too.
1753
67ee1125
MB
1754 * cus-start.el (all): Restore entry for `mode-line-inverse-video',
1755 so that people can easily turn it off.
1756
7d027816 17572000-11-24 Michael Kifer <kifer@cs.sunysb.edu>
e04d21aa 1758
7d027816 1759 * ediff-diff.el: Moved variables around to have it compile under NT.
e04d21aa 1760
9aa5f148 1761 * ediff-help.el (ediff-use-long-help-message): Made it customizable.
e04d21aa 1762
9aa5f148 1763 * ediff-init.el (ediff-abbrev-jobname): Use capitalize.
e04d21aa 1764
9aa5f148 1765 * ediff-wind.el (ediff-skip-unsuitable-frames): Deleted the
7d027816 1766 redundant skip-small-frames test.
e04d21aa 1767
9aa5f148 1768 * viper-cmd.el (viper-change-state-to-vi): Disable overwrite mode.
7d027816 1769 (viper-downgrade-to-insert): protect against errors in hooks.
e04d21aa 1770
9aa5f148
GM
1771 * viper-init.el (viper-vi-state-hook,viper-insert-state-hook)
1772 (viper-replace-state-hook,viper-emacs-state-hook): Do cursor handling.
1773 (viper-restore-cursor-type,viper-set-insert-cursor-type): New
7d027816 1774 functions.
e04d21aa 1775
9aa5f148 1776 * viper-util.el (viper-memq-char): Bug fixes.
e04d21aa 1777
9aa5f148 1778 * viper.el (viper-mode): Fix cursor handling.
e04d21aa 1779
f07fa1b8
KH
17802000-11-24 Kenichi Handa <handa@etl.go.jp>
1781
1782 * international/mule-diag.el (list-iso-charset-chars): For
1783 two-byte charset, fix the `while' condition.
1784 (list-non-iso-charset-chars): Fix the `while' condition.
1785
ba8299ff
SM
17862000-11-23 Stefan Monnier <monnier@cs.yale.edu>
1787
79372165
SM
1788 * subr.el (add-hook, remove-hook): Don't call make-local-hook
1789 if the variable is make-variable-buffer-local.
1790
ba8299ff
SM
1791 * progmodes/ada-stmt.el (ada-template-map): Initialize
1792 and bind it to C-c t in ada-mode-map.
1793 (ada-stmt-mode-hook): New function extracted from old code.
1794 Only change the buffer-local side of skeleton-*.
1795 (ada-mode-hook): Use it.
1796
68a887fa
EZ
17972000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
1798
1799 * iswitchb.el (iswitchb-minibuf-depth): New variable.
1800 (iswitchb-read-buffer): Record in iswitchb-minibuf-depth the value
1801 we expect to be returned by minibuffer-depth once we prompt the
1802 user in the minibuffer.
1803 (iswitchb-entryfn-p): If minibuffer-depth returns the same value
1804 as recorded in iswitchb-minibuf-depth, return non-nil.
1805
3b345582
EZ
18062000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
1807
1808 * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
1809 (hscroll-window-maybe): Docstring fix.
1810
595dead2
DL
18112000-11-23 Dave Love <fx@gnu.org>
1812
1813 * rect.el (string-rectangle): Don't test delete-selection-mode.
1814
1e66b27a
GM
18152000-11-23 Gerd Moellmann <gerd@gnu.org>
1816
02790ce2
GM
1817 * avoid.el (mouse-avoidance-too-close-p): Return nil if mouse
1818 is in the tool bar.
1819
1e66b27a
GM
1820 * dired-aux.el (dired-add-entry): Don't call dired-get-filename
1821 with `no-dir'; we want the directory part to be able to remove
1822 it.
1823
a4caa65d
SM
18242000-11-22 Stefan Monnier <monnier@cs.yale.edu>
1825
1826 * textmodes/outline.el (outline-flag-region):
1827 Don't bind inhibit-read-only since we don't modify the buffer.
1828 (outline-isearch-open-invisible): Don't jump to overlay-start
1829 since we're trying to unhide text around point.
1830 (outline-discard-overlays): Use dolist.
1831
1832 * autoinsert.el (auto-insert-alist): Add `provide' to elisp skeleton.
1833
03e757c1
GM
18342000-11-22 Gerd Moellmann <gerd@gnu.org>
1835
e04d21aa 1836 * mail/rmail.el (rmail-confirm-expunge): Default to
03e757c1 1837 y-or-n-p.
e04d21aa 1838
1598a961
SM
18392000-11-22 Stefan Monnier <monnier@cs.yale.edu>
1840
1841 * textmodes/tex-mode.el (tex-font-lock-keywords-1):
1842 Fix ARG regexp to skip quoted braces.
1843 (tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
1844 Remove `bf' and `it' from `bold' and `italic' (they were wrong and
1845 are (correctly) handled separately).
1846 Remove `caption' and `footnote' from `citations': they contain text.
1847 Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
1848 (latex-skeleton-end-hook): New function.
1849 (latex-mode): Use it.
1850 (tex-start-tex-marker): Remove.
1851 (tex-send-tex-command): Don't set tex-start-tex-marker.
1852 (tex-error-parse-syntax-table): New var.
1853 (tex-compilation-parse-errors): Use it.
1854 Ignore tex-start-tex-marker. Don't bother with marker-position.
1855 (tex-validate-buffer): Don't bother with marker-position.
1856
1857 * textmodes/flyspell.el (flyspell-prog-text-faces): New var.
bd7e01a3 1858 (flyspell-generic-progmode-verify): Use it.
1598a961 1859
eaae8106
SS
18602000-11-22 Sam Steingold <sds@gnu.org>
1861
03e757c1
GM
1862 * simple.el (delete-trailing-whitespace): New interactive
1863 function.
e04d21aa 1864
eaae8106 1865 * progmodes/ada-mode.el (ada-mode): Use it instead of
bd7e01a3 1866 `ada-remove-trailing-spaces'.
eaae8106 1867 (ada-remove-trailing-spaces): Removed.
e04d21aa 1868
eaae8106 1869 * textmodes/two-column.el (2C-merge): Recommend it in the doc.
e04d21aa 1870
1598a961
SM
1871 * textmodes/picture.el (picture-clean): Removed.
1872 (picture-mode-exit): Call it instead of `picture-clean'.
eaae8106 1873
a41d49e9
GM
18742000-11-22 Gerd Moellmann <gerd@gnu.org>
1875
e053c60f
GM
1876 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
1877
a41d49e9
GM
1878 * hi-lock.el (hi-lock-refontify): Don't call non-existent
1879 jit-lock-fontify-buffer; it should anyway be unneccessary to
4c4a541d 1880 do anything special when jit-lock is active.
a41d49e9
GM
1881 (hi-yellow, hi-pink, hi-green, hi-blue): Fix defface specs.
1882
197615f3
DL
18832000-11-22 Dave Love <fx@gnu.org>
1884
ddbfaa9f
DL
1885 * calendar/todo-mode.el (todo-top-priorities): Use
1886 todo-tmp-buffer-name. From Milan Zamazal <Milan.Zamazal@qbizm.com>.
1887
ddc3c695
DL
1888 * language/chinese.el, language/cyrillic.el:
1889 * language/devanagari.el, language/ethiopic.el, language/greek.el:
1890 * language/hebrew.el, language/indian.el, language/japanese.el:
1891 * language/korean.el, language/lao.el, language/misc-lang.el:
1892 * language/thai.el, language/tibetan.el, language/vietnamese.el:
1893 Use provide.
1894
fb9fa98d
DL
1895 * cus-edit.el (custom-buffer-create-internal): Save some consing.
1896 (custom-variable-set): Improve validation error mesage.
1897
197615f3
DL
1898 * rect.el (string-rectangle): Revert last change.
1899 (string-rectangle-line): New arg DELETE.
1900 (string-rectangle): Check delete-selection-mode.
1901
1902 * emacs-lisp/edebug.el (edebug-version)
1903 (edebug-maintainer-address): Deleted.
1904 (edebug-submit-bug-report): Just alias to report-emacs-bug.
1905 (edebug-read-function): Account for other `'#' read forms.
1906 (edebug-mode-menus): Make some items toggles.
1907 (edebug-outside-unread-command-event, unread-command-event):
1908 Remove these to avoid warnings.
1909
f4117c4d
GM
19102000-11-22 David Ponce <david@dponce.com>
1911
1912 * recentf.el (recentf-menu-items-for-commands)
1913 (recentf-make-menu-items, recentf-make-menu-item)
4c4a541d 1914 (recentf-filter-changer): Added :help and :active menu-item properties.
eaae8106 1915
f4117c4d
GM
1916 (recentf-build-dir-rules, recentf-dump-variable)
1917 (recentf-edit-list, recentf-open-files-item)
1918 (recentf-open-files): Replaced unnecessary `mapcar' with new
1919 built-in `mapc'.
eaae8106 1920
f8e2f3f2
MB
19212000-11-23 Miles Bader <miles@gnu.org>
1922
1923 * faces.el (menu): Make inverse-video on ttys too.
1924
4c4a541d
SM
19252000-11-22 Stefan Monnier <monnier@cs.yale.edu>
1926
1927 * simple.el (comment-line-break-function): Use the new name
1928 indent-new-comment-line -> comment-indent-new-line.
1929 (clone-indirect-buffer): Don't ignore NORECORD.
1930 (next-completion): Properly handle the case where items are adjacent.
1931
1932 * mouse.el (popup-menu): Stupid typo.
1933
980d836e
GM
19342000-11-22 Gerd Moellmann <gerd@gnu.org>
1935
60e8e0a5
GM
1936 * emacs-lisp/authors.el: Remove autoload cookies, add author,
1937 maintainer, keywords tags.
1938
980d836e
GM
1939 * rect.el (replace-rectangle): Don't call string-rectangle-line
1940 with too many arguments.
1941
e08b2069
AS
19422000-11-22 Andre Spiegel <spiegel@gnu.org>
1943
60e8e0a5 1944 * ediff-util.el (ediff-file-checked-out-p)
eaae8106 1945 (ediff-file-checked-in-p): Call vc-state instead of
e08b2069
AS
1946 vc-locking-user, which no longer exists.
1947
1948 * emulation/viper-util.el (viper-file-checked-in-p): Same as above.
1949
c6779d8d
DL
19502000-11-22 Dave Love <fx@gnu.org>
1951
1952 * md5.el (md5): Provide.
1953 (md5): Fix error call.
1954
e672fdce
MB
19552000-11-22 Miles Bader <miles@gnu.org>
1956
eaae8106 1957 * textmodes/refill.el (refill-adjust-ignorable-overlay)
d9fdcdb5
MB
1958 (refill-fill-paragraph-at): Remove debugging code.
1959
80e24c04
MB
1960 * calendar/calendar.el (generate-calendar-window): When we don't
1961 call `fit-window-to-buffer', make sure the top line is fully visible.
1962
3a17d6cc
MB
1963 * image-file.el (insert-image-file): Don't make `read-only'
1964 property rear-nonsticky.
1965
ae1a21c6
MB
1966 * isearch.el (isearch-original-minibuffer-message-timeout): New var.
1967 (isearch-mode): Set `minibuffer-message-timeout' to nil, after
1968 stashing away its original value.
1969 (isearch-edit-string): Temporarily restore `minibuffer-message-timeout'
1970 in the recursive edit.
1971 Bind `isearch-original-minibuffer-message-timeout' to protect it.
1972 (isearch-done): Restore `minibuffer-message-timeout'.
1973
e672fdce
MB
1974 * cus-start.el: Remove entry for `mode-line-inverse-video'.
1975
3ea79df8
SM
19762000-11-21 Stefan Monnier <monnier@cs.yale.edu>
1977
1978 * progmodes/ada-mode.el (ada-mode): `set '' -> `setq'.
1979
1980 * find-lisp.el (find-lisp-find-files-internal):
1981 Use dolist, when and file-name-as-directory.
1982
980d836e 1983 * emacs-lisp/edebug.el (edebug-form-spec prop): Use dolist.
3ea79df8
SM
1984 (define-derived-mode, define-minor-mode): Add specs.
1985
1986 * window.el: General comment and spacing fixes.
1987 (save-selected-window): Use backquotes.
1988 (window-safely-shrinkable-p): New function.
1989 (shrink-window-if-larger-than-buffer): Use it.
1990
1991 * subr.el (make-local-hook): Docstring fix.
1992
1993 * shell.el (shell-mode): Use define-derived-mode.
1994
1995 * newcomment.el (comment-indent): Insert comment before calling
1996 comment-indent-function. Don't insert in column 0.
1997 (comment-dwim): Indent before inserting comment.
1998
1999 * isearch.el (isearch-mode-map): Fix docstring. Init in defvar.
2000 (minibuffer-local-isearch-map): Init in defvar. Use inheritance.
2001 (isearch-clean-overlays, isearch-range-invisible, isearch-unread):
2002 Use mapc rather than map.
2003
2004 * files.el (find-buffer-visiting): Compare all attributes before
2005 declaring two files identical (rather than just their inode-no).
2006 (auto-mode-alist): Use \' rather than $.
2007
2008 * which-func.el: Update maintainer line.
2009
2010 * pcvs.el (uniquify-buffer-file-name): Remove advice.
2011 * uniquify.el (uniquify-list-buffers-directory-modes): New var.
2012 (uniquify-buffer-file-name): Use it.
2013
8f62f2b8
MB
20142000-11-22 Miles Bader <miles@gnu.org>
2015
2016 * cus-start.el: Add entry for `minibuffer-prompt-properties'.
2017 * simple.el (minibuffer-avoid-prompt): New function.
2018
fb279a6d
GM
20192000-11-21 Gerd Moellmann <gerd@gnu.org>
2020
2021 * Makefile.in (.SUFFIXES): Add .SUFFIXES.
2022
867092e9
MB
20232000-11-21 Miles Bader <miles@gnu.org>
2024
ef860850
MB
2025 * emacs-lisp/advice.el (ad-special-forms): Correct the conditional
2026 inclusion of `track-mouse'.
2027
867092e9
MB
2028 * textmodes/refill.el (refill-ignorable-overlay): New variable.
2029 (refill-adjust-ignorable-overlay): New function.
2030 (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill
2031 only the paragraph's tail if possible.
2032 Update `refill-ignorable-overlay'.
2033 (refill-mode): Initialize/cleanup `refill-ignorable-overlay'.
2034
2035 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
2036 point inside the fill-prefix.
2037
2038 * textmodes/refill.el (refill-post-command-function): Don't reset
2039 refill-doit in the case where a self-insertion command doesn't
2040 case a refill. Use `refill-fill-paragraph-at', getting position
2041 from `refill-doit'.
2042 (refill-after-change-function): Set `refill-doit' to END.
2043 (refill-fill-paragraph-at): New function, mostly from old
2044 refill-fill-paragraph.
2045 (refill-fill-paragraph): Use `refill-fill-paragraph-at'.
2046 (refill-pre-command-function): New function.
2047 (refill-mode): Add it to `pre-command-hook'.
2048
ff9ab414
GM
20492000-11-20 Gerd Moellmann <gerd@gnu.org>
2050
29a01b72
GM
2051 * textmodes/artist.el (artist-mode): Fix autoload cookie.
2052
ff9ab414
GM
2053 * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
2054 javadoc tags.
eaae8106 2055
885b211b
AS
20562000-11-20 Andre Spiegel <spiegel@gnu.org>
2057
2058 * vc.el, vc-hooks.el: Undo prev change (moved functions back to
2059 vc.el).
2060
eaae8106 2061 * vc-rcs.el (vc-rcs-state): Before calling vc-workfile-unchanged-p,
885b211b 2062 require vc.
eaae8106
SS
2063
2064 * vc-cvs.el (vc-cvs-checkout): Fix bug that broke C-x v ~-style
885b211b 2065 checkouts.
eaae8106 2066
d1838556
DL
20672000-11-20 Dave Love <fx@gnu.org>
2068
2069 * Makefile.in (DONTCOMPILE): Omit bindings.el.
2070
2b69bc11 20712000-11-20 Eli Barzilay <eli@www.barzilay.org>
56c13ae6 2072
2b69bc11
GM
2073 * calculator.el (calculator-paste): Use `if' instead of `and'
2074 and `or'.
2075 (calculator-help): Don't use electric-describe-mode for XEmacs.
56c13ae6 2076
b95b34e5
GM
20772000-11-19 Gerd Moellmann <gerd@gnu.org>
2078
030de92f
GM
2079 * info.el (info-menu-5): Doc fix.
2080
b95b34e5
GM
2081 * textmodes/artist.el: New file.
2082
54970452
AS
20832000-11-19 Andre Spiegel <spiegel@gnu.org>
2084
eaae8106 2085 * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here,
54970452
AS
2086 and differentiate according to checkout model.
2087 (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
2088 since this function is only concerned with master state.
2089
eaae8106 2090 * vc-hooks.el (vc-workfile-unchanged-p,
54970452
AS
2091 vc-default-workfile-unchanged-p): Moved here from vc.el.
2092
eaae8106 2093 * vc.el (vc-workfile-unchanged-p,
54970452
AS
2094 vc-default-workfile-unchanged-p): See above.
2095
e5a9dabf
MB
20962000-11-19 Miles Bader <miles@gnu.org>
2097
2098 * image-file.el (insert-image-file): Make `intangible' and
2099 `read-only' properties rear-nonsticky too.
2100
24127af0
GM
21012000-11-18 Gerd Moellmann <gerd@gnu.org>
2102
d392e9c5 2103 * ps-print.el: Update copyright notice.
eaae8106 2104
d392e9c5
GM
2105 * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
2106 (tooltip-show): Use the offsets.
2107
24127af0 2108 * bindings.el (mode-line-modified): Fix a typo.
eaae8106 2109 (mode-line-toggle-modified, mode-line-widen)
24127af0
GM
2110 (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
2111
2b69bc11 21122000-11-17 Vinicius Jose Latorre <vinicius@cpqd.com.br>
08ea6f17 2113
2b69bc11
GM
2114 * ps-print.el (toplevel): Test for find-coding-system being
2115 fboundp before calling ps-x-find-coding-system.
08ea6f17 2116
66321b2f
SM
21172000-11-16 Stefan Monnier <monnier@cs.yale.edu>
2118
2119 * vc.el (vc-version-diff): Bind inhibit-read-only when inserting text.
2120 (vc-version-backup-file): Docstring fix.
2121
046110c6
GM
21222000-11-16 Gerd Moellmann <gerd@gnu.org>
2123
4104194e
GM
2124 * files.el (basic-save-buffer): Don't add a newline if
2125 find-file-literally is non-nil.
2126 (find-file-literally): Extend doc string.
2127
046110c6
GM
2128 * sort.el (sort-columns): If sort-fold-case it non-nil, invoke
2129 sort(1) with the `-f' argument.
2130
6505c16e
AS
21312000-11-16 Andre Spiegel <spiegel@gnu.org>
2132
fd063975
AS
2133 * vc.el: Updated backend documentation.
2134 (vc-default-check-headers): New function.
2135
3d02dd81 2136 * vc-{cvs,rcs,sccs}.el: Functions reordered.
eaae8106
SS
2137
2138 * vc.el (vc-revert-buffer): Ask for confirmation if file seems
8791d617 2139 up-to-date.
eaae8106 2140 (vc-do-command): In the asynchronous case, output messages only if
9dd94743 2141 the minibuffer is not active.
fd063975 2142
eaae8106 2143 * vc-cvs.el (vc-cvs-revert): Use `cvs unedit' only if
8791d617 2144 `vc-cvs-use-edit' is on.
eaae8106
SS
2145 (vc-cvs-checkout): When this is used for reverting the workfile,
2146 make a backup of the original contents and revert to that in case
8791d617 2147 of error.
eaae8106 2148 (vc-cvs-print-log, vc-cvs-diff): Use asynchronous mode only for
9dd94743 2149 remote repositories.
eaae8106 2150
6505c16e
AS
2151 * vc.el (vc-annotate): Changed handling of prefix arg; now asks
2152 for both version and ratio in the minibuffer.
fd063975 2153
eaae8106 2154 * vc-cvs.el (vc-cvs-annotate-command): New optional arg VERSION.
8791d617 2155 Use vc-do-command to perform the annotation, not call-process.
6505c16e 2156
a13f0660
KH
21572000-11-16 Kenichi Handa <handa@etl.go.jp>
2158
2159 * international/quail.el (quail-start-translation): Don't call
2160 `message' before reading key sequence.
2161
1389a414
MB
21622000-11-16 Miles Bader <miles@lsi.nec.co.jp>
2163
2164 * net/ange-ftp.el (ange-ftp-file-modtime): Don't use `caddr'.
2165
9256a532
KH
21662000-11-16 Kenichi Handa <handa@etl.go.jp>
2167
2168 * window.el (fit-window-to-buffer): Be sure to acquire at least
2169 one text line even if the buffer is empty.
2170
0e14fe9f
GM
21712000-11-16 Gerd Moellmann <gerd@gnu.org>
2172
eaae8106 2173 * net/ange-ftp.el (ange-ftp-file-writable-p)
0e14fe9f
GM
2174 (ange-ftp-file-readable-p, ange-ftp-file-executable-p): Bind
2175 ange-ftp-process-verbose to nil.
2176
da645c53
DL
21772000-11-15 Dave Love <fx@gnu.org>
2178
233d5cde
DL
2179 * wid-edit.el (widget-specify-field, widget-specify-button): If
2180 :help-echo is a function, set help-echo of overlay to
2181 widget-mouse-help.
2182 (widget-mouse-help): New function.
2183 (widget-echo-help): Rewritten for :help-echo functions only taking
2184 a widget arg.
2185
b12057b9
DL
2186 * net/eudc-bob.el (eudc-bob-can-display-inline-images): Use
2187 display-graphic-p.
2188 (eudc-bob-display-jpeg) <!eudc-xemacs-p>: Test create-image bound
2189 and that JPEG is available.
2190 (eudc-bob-toggle-inline-display): Avoid non-existent `imagep'.
2191
da645c53
DL
2192 * international/mule-cmds.el (locale-charset-language-names):
2193 Match @euro.
2194
6d133d1f
GM
21952000-11-15 Gerd Moellmann <gerd@gnu.org>
2196
2197 * faces.el (face-set-after-frame-default): If
0e14fe9f 2198 `inhibit-default-face-x-resources' is bound, don't intialize the
6d133d1f
GM
2199 default face from X resources.
2200
49ac2ac5
EZ
22012000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
2202
2203 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
2204 Don't set EMACSLOADPATH.
2205
4fb0a34c
EZ
22062000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
2207
2208 * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
2209 texinfo-insert-@url.
2210 (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
2211 (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
2212
bb304a7a
SM
22132000-11-14 Stefan Monnier <monnier@cs.yale.edu>
2214
82bc80bf
SM
2215 * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
2216 (checkdoc-minor-mode-map): New map, replaces checkdoc-minor-keymap.
2217 (checkdoc-minor-keymap): Backward compatibility.
2218 (checkdoc-minor-menu): Don't bother checking checkdoc-minor-keymap.
2219 (checkdoc-minor-mode) <defun>: Use easy-mmode-define-minor-mode.
2220 (checkdoc-this-string-valid-engine): Be a bit more strict
2221 to avoid matching substrings of `...' quoted vars/funs.
2222 (checkdoc-defun-info): Only look for `interactive' if alone.
2223 (debug-ignored-errors): Add "arg doesn't appear in docstring".
2224
e8c87124
SM
2225 * progmodes/compile.el (grep): `tag-default' can be nil.
2226
bb304a7a
SM
2227 * newcomment.el (comment-indent): Paren typo.
2228
8628686a
DL
22292000-11-14 Dave Love <fx@gnu.org>
2230
25c269ef
DL
2231 * calculator.el: New maintainer version.
2232
66321b2f 2233 * diff-mode.el (diff-imenu-generic-expression): Modify unidiff pattern.
25c269ef 2234
8628686a
DL
2235 * cmuscheme.el: Doc fixes.
2236 (cmuscheme) <defgroup>: Use `scheme' as parent.
2237 (cmuscheme-program-name): Remove. Change uses to
2238 scheme-program-name.
2239
2240 * xscheme.el (scheme-program-name): Don't define here.
2241
2242 * progmodes/scheme.el (scheme-program-name): New variable
2243 (originally in cmuscheme).
2244
88f0a1eb
MB
22452000-11-14 Miles Bader <miles@gnu.org>
2246
2247 * window.el (fit-window-to-buffer): Handle windows without mode-lines.
2248 Handle header-lines. Don't loop forever if we can't enlarge the
2249 window anymore. Simplify a bit.
2250
cd9a000c
KH
22512000-11-14 Kenichi Handa <handa@etl.go.jp>
2252
2253 * window.el (fit-window-to-buffer): Don't check
2254 window-text-height. Assure that the last line is fully visible.
2255
2256 * international/quail.el (quail-show-guidance-buf): Call
2257 fit-window-to-buffer to assure the enough height of the guidance
2258 buffer.
2259 (quail-update-guidance): Avoid making the guidance buffer shorter.
2260
d3fcda22
SM
22612000-11-14 Stefan Monnier <monnier@cs.yale.edu>
2262
bdbd9606
SM
2263 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Use `keep'
2264 rather than `prepend' and add an interesting comment.
2265 (tex-math-face, tex-font-lock-syntactic-face-function):
2266 New face and function to use it.
2267 (tex-define-common-keys, tex-mode-map): Use menu-item rather
2268 than `menu-enable' symbol property.
2269 (tex-mode-map): Bind {, (, [ and $ to skeleton-pair-insert-maybe.
2270 (tex-mode): Add some latex-mode commands for auto-selection.
2271 Use tex-font-lock-syntactic-face-function.
2272 (tex-insert-quote): Simplify.
2273 (tex-shell): New mode.
2274 (tex-start-shell): Use it.
2275 (tex-shell-proc, tex-shell-buf): New functions.
2276 (tex-send-command): Use it.
2277 (tex-main-file): Fix the meaning of the new arg REALFILE.
2278 (tex-send-tex-command): New function split from `tex-start-tex'.
2279 Set compilation-last-buffer and compilation-parsing-end.
2280
d3fcda22
SM
2281 * newcomment.el (comment-indent-default): Stick \s<\s< to the left
2282 when it follows non-comment text on the line.
2283
2284 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
2285 Set font-lock-defaults.
2286 (lisp-mode-shared-map): Init inside the defvar.
2287 (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
2288 Use define-derived-mode.
2289
bdab1d43
MB
22902000-11-14 Miles Bader <miles@lsi.nec.co.jp>
2291
2292 * faces.el (header-line): Use `:box nil' for color/gs displays too.
2293
936ae731
GM
22942000-11-14 Gerd Moellmann <gerd@gnu.org>
2295
2296 * emacs-lisp/byte-opt.el (byte-compile-unfold-lambda): Don't
2297 recursively optimize body because that can lead to infinite
2298 recursion; see comment there.
2299
1695ca2b
EZ
23002000-11-13 Eli Zaretskii <eliz@is.elta.co.il>
2301
2302 * faces.el (face-spec-set-match-display): Revert the change from
2303 2000-10-24. Add a FIXME for after v21.1.
2304
9d348294
MB
23052000-11-13 Miles Bader <miles@gnu.org>
2306
2307 * textmodes/fill.el (skip-line-prefix): New function.
2308 (fill-region-as-paragraph, fill-region): Return the fill-prefix.
2309 (fill-paragraph): Don't leave point inside the fill-prefix.
88f0a1eb
MB
2310 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
2311 point inside the fill-prefix.
9d348294 2312
b85fa13c
MB
23132000-11-13 Miles Bader <miles@lsi.nec.co.jp>
2314
2315 * calendar/calendar.el (generate-calendar-window): Use
2316 `fit-window-to-buffer'.
2317
a0b47716
SM
23182000-11-12 Stefan Monnier <monnier@cs.yale.edu>
2319
2320 * gud.el (gud-minor-mode): New var.
2321 (gud-symbol, gud-val): New functions.
2322 (gud-find-file): Copy gud-minor-mode to the new buffer.
2323 (gud-menu-map): Include entries for commands that are not always
2324 available, using :enable to (de)activate them.
2325 (gud-minor-mode-map): New map. Add it to minor-mode-map-alist.
2326 (gud-mode-map): New map.
eaae8106 2327 (gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
a0b47716
SM
2328 (gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
2329 Don't set up gud's menu (it's done by the minor-mode).
2330 (gud-minibuffer-local-map): New.
2331 Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
2332 (gud-query-cmdline): New function.
2333 (gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it. Set gud-minor-mode.
2334 (gud-mode): Use define-derived-mode.
2335 Don't set up gud's menu (it's done by the minor-mode).
2336 (gud-chop-words): Remove.
2337 (gud-common-init): Use split-string instead.
2338 (gud-new-keymap, gud-make-debug-menu): Eradicate.
2339
2340 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
2341 Add keyword arg :name.
2342
2343 * diff-mode.el (diff-mode-menu): Add entry for applying hunk.
2344 (diff-count-matches, diff-split-hunk): New functions.
2345 (diff-mode-map): Bind C-c C-s to diff-split-hunk.
2346
2347 * pcvs-info.el (cvs-fi-conflict-face): New var.
2348
2349 * progmodes/sh-script.el (sh-mode-syntax-table) <defvar>:
2350 Make it into a simple syntax-table, shared among all submodes.
2351 (sh-heredoc-face): Re-introduce.
2352 (sh-font-lock-syntactic-face-function): New function.
2353 (sh-mode): Use it. Also use define-derived-mode.
2354 Remove old bogus setting of indent-region-function.
2355 (sh-set-shell): Don't set the syntax-table any more.
2356 (sh-mode-syntax-table) <defun>: Remove.
2357
f5ed37df
MB
23582000-11-12 Miles Bader <miles@gnu.org>
2359
2360 * textmodes/flyspell.el (flyspell-mode-on): Only output welcome
2361 message if interactive.
2362
0b074c2f
DL
23632000-11-12 Dave Love <fx@gnu.org>
2364
2365 * mail/feedmail.el: Fix header,
2366 (feedmail) <defgroup>: Add :link.
2367
2368 * view.el: Use local-map property, not keymap on mode-line string.
2369
2370 * scroll-all.el (scroll-all-mode): Customize variable. Add
2371 autoload cookie to function.
2372
2373 * lazy-lock.el: Remove compatibility code.
2374
2375 * finder.el (finder-known-keywords): Add `files', remove `vms'.
2376 (finder-help-echo): New variable.
2377 (finder-mouse-face-on-line): Add help-echo stuff.
2378 (finder-list-keywords, finder-list-matches): Use mapc.
2379
2380 * faces.el (face-font-registry-alternatives): Add :version.
2381
2382 * progmodes/etags.el (visit-tags-table-buffer): Beware of `t' in
2383 tags-table-list.
2384
a0b47716 2385 * net/browse-url.el (browse-url-browser-function): Update :version.
0b074c2f 2386
a0b47716 2387 * mail/sendmail.el (mail-font-lock-keywords): Use [:alpha:], not a-z.
0b074c2f
DL
2388 (mail-mode): Use [:alnum:] in some regexps.
2389
6d502396
DL
23902000-11-10 Dave Love <fx@gnu.org>
2391
2392 * ediff.el (ediff-regions-internal, ediff-documentation):
2393 * ediff-vers.el (rcs-ediff-view-revision): Put temp buffer into
2394 fundamental mode.
2395
2396 * ediff-util.el (ediff-status-info, ediff-debug-info): Put temp
2397 buffer into fundamental mode.
2398 (ediff-set-difference): Use copy-sequence if available.
2399
2400 * ediff-ptch.el (ediff-dispatch-file-patching-job): Check
2401 ediff-patch-map non-nil.
2402 (ediff-fixup-patch-map, ediff-fixup-patch-map)
2403 (ediff-fixup-patch-map, ediff-patch-file-internal): Put temp
2404 buffer into fundamental mode.
2405
2406 * ediff-merg.el (state-or-merge): Defvar when compiling.
2407
a82fe213
JR
24082000-11-10 Jason Rumney <jasonr@gnu.org>
2409
2410 * w32-fns.el (w32-add-charset-info): New function.
2411 (w32-charset-info-alist): Use it.
2412
52d89894
GM
24132000-11-10 Gerd Moellmann <gerd@gnu.org>
2414
2415 * faces.el (face-font-registry-alternatives): New user-option.
2416
178932de
SM
24172000-11-10 Stefan Monnier <monnier@cs.yale.edu>
2418
d7fa3319
SM
2419 * textmodes/texinfo.el (texinfo-block-default): New var.
2420 (texinfo-insert-block): Use it. Insert a newline if needed.
2421
178932de
SM
2422 * textmodes/fill.el (fill-indent-according-to-mode): New var.
2423 (fill-region-as-paragraph): Use it.
2424
2425 * textmodes/tex-mode.el (standard-latex-block-names): Add "math".
2426 (latex-mode): Tweak tex-*-(head|trail)er regexps.
2427 Tweak paragraph regexps to allow a leading [ \t]*.
2428 (tex-latex-block): Insert a newline if necessary.
2429 (latex-insert-item): Only insert a newline if necessary.
2430 (tex-guess-main-file): New function.
2431 (tex-main-file): Use it. Add arg `realfile'. Trim `.tex'.
2432 Set tex-main-file if TeX-master is provided.
2433 (tex-latex-indent-syntax-table): Map ( and ) to punctuation.
2434
bd02b8e0
GM
24352000-11-10 Gerd Moellmann <gerd@gnu.org>
2436
2437 * startup.el (command-line): Set the default tooltip-mode
2438 to t for graphical displays which implement x-show-tip.
2439
2440 * tooltip.el (tooltip-mode): Add a comment about startup.el
2441 setting the default value of this user-option.
2442
b29b03eb
SM
24432000-11-09 Stefan Monnier <monnier@cs.yale.edu>
2444
2445 * font-lock.el (font-lock-*-face) <defvar>: Move.
2446 (font-lock-defaults-alist): Mark obsolete.
2447 (font-lock-mode, font-lock-mode-hook) <defvar>: Remove.
2448 (font-lock-mode): Use define-minor-mode.
2449 (font-lock-support-mode): Tweak type to default to jit-lock-mode.
2450 (font-lock-turn-off-thing-lock): Be more explicit.
2451 (font-lock-apply-syntactic-highlight): Use string-to-syntax after eval.
2452 (font-lock-syntactic-face-function): New var.
2453 (font-lock-fontify-syntactically-region): Use it.
2454 (font-lock-doc-face): New.
2455
2456 * pcvs.el (cvs-enabledp): Ignore errors.
2457 (cvs-commit-filelist): Never query.
2458 (cvs-mode-insert): Always add a terminating / in the initial prompt.
2459 (cvs-mode-diff-backup): Use cvs-partition rather than delete-if-not.
2460 (cvs-do-removal): Use cvs-partition rather than delete-if.
2461 Use cvs-insert-strings, cvs-pop-to-buffer-same-frame and
2462 cvs-bury-buffer.
2463
2464 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
2465 Allow `next' to jump to after the end of the last match.
2466
778fbc46
GM
24672000-11-09 Gerd Moellmann <gerd@gnu.org>
2468
730c746c
GM
2469 * simple.el (byte-compiling-files-p): New function.
2470
2471 * textmodes/ispell.el (toplevel): Use byte-compiling-files-p
2472 if it is there.
2473
2474 * emacs-lisp/bytecomp.el (byte-compile-current-file): Bind it to
2475 nil again.
2476
778fbc46
GM
2477 * textmodes/ispell.el (ispell-library-path): Don't call
2478 check-ispell-version when byte-compiling because that starts
2479 an ispell process, and ispell might not be installed.
2480 (toplevel): Don't set up a menu when byte-compiling.
2481
2482 * emacs-lisp/bytecomp.el (byte-compile-current-file): Don't bind
2483 it, so that a boundp test can be used to determine if we're
2484 currently byte-compiling.
2485
5912c5bb
DL
24862000-11-09 Dave Love <fx@gnu.org>
2487
2488 * pcvs.el (uniquify-buffer-file-name): Wrap advice in
2489 eval-after-load.
2490
7bb054a5
GM
24912000-11-09 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2492
2493 * ps-print.el: Patch for variable initialization when spooling. Doc
2494 fix.
2495 (ps-output-list): Fun eliminated.
2496 (ps-begin-file, ps-begin-job): Code fix.
2497
9db2706e
DL
24982000-11-08 Dave Love <fx@gnu.org>
2499
2500 * ediff-wind.el (ediff-control-frame-parameters): Zero
2501 tool-bar-lines.
2502
f7eb32aa
GM
25032000-11-08 Gerd Moellmann <gerd@gnu.org>
2504
2505 * simple.el (shell-command, display-message-or-buffer)
2506 (shell-command-on-region): Mention resize-mini-windows in the doc
2507 string.
2508 (display-message-or-buffer): Take the value of resize-mini-windows
2509 into account.
2510
7b01b08c
GM
25112000-11-07 Gerd Moellmann <gerd@gnu.org>
2512
acad3c0b
GM
2513 * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
2514
7b01b08c
GM
2515 * dired.el (dired-between-files): Add `^. find' as an alternative
2516 to the regular expression, for find-dired.
2517
6f602bd0
SM
25182000-11-06 Stefan Monnier <monnier@cs.yale.edu>
2519
2520 * textmodes/texnfo-upd.el: Require texinfo.
2521 (defmacro, defgroup): Remove.
2522 (texinfo-section-to-generic-alist): Remove.
2523 Use texinfo-section-list instead (i.e. level is changed string->int).
2524 (texinfo-filter): New function.
2525 (texinfo-chapter-level-regexp, texinfo-subsubsection-level-regexp)
2526 (texinfo-subsection-level-regexp, texinfo-section-level-regexp):
2527 Use it. And use regexp-opt.
2528 (texinfo-find-higher-level-node, texinfo-hierarchic-level)
2529 (texinfo-update-menu-region-beginning)
2530 (texinfo-update-menu-higher-regexps, texinfo-update-menu-lower-regexps)
2531 (texinfo-update-the-node, texinfo-sequentially-update-the-node)
2532 (texinfo-update-menu-same-level-regexps): Update.
eaae8106 2533 (texinfo-update-node, texinfo-every-node-update)
6f602bd0
SM
2534 (texinfo-sequential-node-update): Remove autoload cookie.
2535
2536 * textmodes/texinfo.el (texinfo-section-list): Change majorheading.
2537 (texinfo-font-lock-syntactic-keywords): Use syntax-strings.
2538 (texinfo-chapter-level-regexp): Remove.
2539 (texinfo-mode): Hard code texinfo-chapter-level-regexp.
2540
bb216218
DL
25412000-11-06 Dave Love <fx@gnu.org>
2542
6f602bd0 2543 * autoinsert.el (auto-insert-alist) <latex-mode>: Use \documentclass.
b04f7626 2544
6f602bd0
SM
2545 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
2546 Match defun*.
bb216218 2547
ff8dd5d5
KH
25482000-11-06 Kenichi Handa <handa@etl.go.jp>
2549
2550 * composite.el (composition-function-table): Variable declaration
2551 moved to src/composite.c.
2552 (compose-chars-after): New optional arg object.
2553
e9da51a1
GM
25542000-11-06 Gerd Moellmann <gerd@gnu.org>
2555
e0c12c68
GM
2556 * bindings.el (mode-line-toggle-read-only)
2557 (mode-line-toggle-modified, mode-line-widen)
2558 (mode-line-abbrev-mode, mode-line-auto-fill-mode): New functions.
2559 (make-mode-line-mouse2-map): Rewritten.
2560 (mode-line-modified, mode-line-format, minor-mode-alist): Use new
2561 functions so that C-h k can show something with a doc string.
eaae8106 2562
e9da51a1
GM
2563 * startup.el (fancy-splash-delay): Set to 10 seconds.
2564 (fancy-splash-max-time): New user-option.
2565 (fancy-splash-stop-time): New variable.
2566 (fancy-splash-screens): Set it. Catch `stop-splashing'.
2567 (fancy-splash-screens-1): Throw `stop-splashing' when current
2568 time is greater than fancy-splash-stop-time.
2569
611dbdf0
SM
25702000-11-06 Stefan Monnier <monnier@cs.yale.edu>
2571
4d2806e2
SM
2572 * vc-hooks.el (vc-insert-file): Don't assume byte==char.
2573
611dbdf0
SM
2574 * pcvs.el (cvs-mode-marked): New arg `noquery'.
2575 Prompt user for a file rather than raising an error.
2576 (cvs-enabledp): Fix call to cvs-mode-marked.
2577 (cvs-insert-file): New function (extracted from cvs-mode-insert).
2578 (cvs-mode-insert): Use it. Change the init prompt' value.
2579 (cvs-mode-tree): Use cvs-status-cvstrees instead of cvs-status-trees.
2580
2581 * emacs-lisp/ewoc.el (ewoc-goto-prev, ewoc-goto-next):
2582 Don't pass default arg to ewoc-locate.
2583 (ewoc-collect): Return result in the right order.
2584
2585 * log-edit.el (log-edit-show-files): Use cvs-insert-strings.
2586
2587 * cvs-status.el (cvs-tree-merge): Use cvs-butlast (avoid CL).
2588 (cvs-status-get-tags): Fix regexp.
2589 (cvs-status-trees, cvs-status-cvstrees):
2590 Combine after change hooks and don't sit-for.
4d2806e2
SM
2591 (cvs-tree-use-jisx0208): Rename from cvs-tree-dstr-2byte-ready.
2592 (cvs-tree-char-*): Rename from cvs-tree-dstr-char-*.
611dbdf0
SM
2593 Use make-char rather than hard-coded cryptic data.
2594 (cvs-status-cvstrees): Convert the buffer to multibyte if necessary.
2595
2596 * pcvs-defs.el (cvs-menu): Add entries for tree and insert.
2597
2598 * pcvs-util.el (cvs-butlast, cvs-nbutlast): New (copied from CL).
2599 (cvs-insert-strings): New function.
2600
937b2877
MB
26012000-11-06 Miles Bader <miles@lsi.nec.co.jp>
2602
2603 * mwheel.el (mouse-wheel-scroll-amount): Renamed from
2604 `mwheel-scroll-amount'.
2605 (mouse-wheel-follow-mouse): Renamed from `mwheel-follow-mouse'.
2606 (mouse-wheel-mode): Use (featurep 'xemacs) instead of
2607 string-matching against the version string.
2608
c6c97763
KH
26092000-11-06 Kenichi Handa <handa@etl.go.jp>
2610
6eaec747
KH
2611 * language/thai.el ("Thai"): Set a lisp form that produces
2612 composed string in `sample-text' language info.
2613
2614 * language/tibetan.el ("Tibetan"): Set a lisp form that produces
2615 composed string in `sample-text' language info.
2616
2617 * international/mule-cmds.el (describe-language-environment): Eval
2618 `sample-text' data and insert the result.
2619
c6c97763
KH
2620 * international/mule-conf.el (compound-text): Define this coding
2621 system here. Make x-ctext and ctext aliases of it.
2622
2623 * language/european.el (compound-text, ctext): Moved to
2624 international/mule-conf.el.
2625
d1145f85
AI
26262000-11-05 Andrew Innes <andrewi@gnu.org>
2627
2628 * w32-fns.el (w32-version): New function.
2629
178a6a45
SM
26302000-11-05 Stefan Monnier <monnier@cs.yale.edu>
2631
2632 * progmodes/awk-mode.el: Update copyright.
2633 (awk-mode-abbrev-table): Remove.
2634 (awk-font-lock-keywords): Use regexp-opt.
2635 (awk-mode): Use define-derived-mode.
2636
2637 * emacs-lisp/regexp-opt.el (regexp-opt-group): Sort the strings
2638 when extracting a suffix.
2639
1ba90166
AS
26402000-11-04 Andre Spiegel <spiegel@gnu.org>
2641
2642 * vc-hooks.el (vc-insert-file): Rewritten. Don't bother about
2643 auto-save-mode.
2644
546790cb
JR
26452000-11-04 Jason Rumney <jasonr@gnu.org>
2646
2647 * language/european.el (decode-mac-roman): Test against r1 not r0.
2648
d247e32d
SM
26492000-11-03 Stefan Monnier <monnier@cs.yale.edu>
2650
fbf44f44
SM
2651 * progmodes/icon.el (icon-mode-map): Don't rebind \t.
2652 (icon-mode): Define indent-line-function.
2653 (icon-comment-indent): Simplify.
2654 (icon-font-lock-keywords-2): Use the `words' arg to regexp-opt.
2655
2656 * emacs-lisp/find-func.el (find-function-do-it): Quote the hook.
2657
2658 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
2659 Bind change-log-default-mode to defeat the caching done on it.
2660 Don't bother saving excursion any more.
2661
2662 * menu-bar.el (minibuffer maps): Use dolist rather than mapcar.
2663
2664 * frame.el (after-setting-font-hook): Rename hooks -> hook.
2665 (set-frame-font): Use the new name (and the old for compatibility).
2666
eaae8106
SS
2667 * toolbar/tool-bar.el (tool-bar-mode):
2668 * time.el (display-time-mode):
2669 * recentf.el (recentf-mode):
2670 * paren.el (show-paren-mode):
2671 * mwheel.el (mouse-wheel-mode):
2672 * msb.el (msb-mode):
2673 * jka-compr.el (auto-compression-mode):
2674 * image-file.el (auto-image-file-mode):
2675 * hl-line.el (hl-line-mode):
2676 * delsel.el (delete-selection-mode):
2677 * autoinsert.el (auto-insert-mode):
fbf44f44
SM
2678 * complete.el (partial-completion-mode): Drop unneeded positional args.
2679
eaae8106 2680 * info.el (Info-mode):
79372165 2681 * comint.el (comint-mode): Don't bother with make-local-hook.
fbf44f44 2682
d247e32d
SM
2683 * log-edit.el (log-edit-menu): New menu.
2684
4921558e
MB
26852000-11-03 Miles Bader <miles@gnu.org>
2686
2687 * wid-edit.el (widget-end-of-line): Reinstate, with a new
2688 definition, so that trailing spaces are handled properly.
2689 (widget-field-keymap, widget-text-keymap): Likewise C-e binding.
2690
1fc02b3c
GM
26912000-11-03 Gerd Moellmann <gerd@gnu.org>
2692
2693 * startup.el (fancy-splash-text, fancy-splash-text): Use a single
2694 tab character.
2695 (fancy-splash-screens): Set tab-width to 20.
2696
51d001f7
DL
26972000-11-03 Dave Love <fx@gnu.org>
2698
2699 * comint.el (comint-completion-addsuffix): Fix custom type.
2700
ba22aeff
SM
27012000-11-02 Stefan Monnier <monnier@cs.yale.edu>
2702
2703 * font-lock.el (font-lock-buffers): Remove.
2704 (font-lock-global-modes): Define with easy-mmode-define-global-mode.
2705 (font-lock-change-major-mode): Remove.
2706 (turn-on-font-lock-if-enabled): Only apply to the current buffer.
2707 (font-lock-default-fontify-region): Extend the multiline
2708 fontification to whole lines.
2709 (font-lock-fontify-anchored-keywords)
2710 (font-lock-fontify-keywords-region): If matching just one
2711 line (with \n) only mark the \n as multiline.
2712
2713 * emacs-lisp/easy-mmode.el (define-minor-mode): Remove :toggle arg.
2714 Correctly handle the case where several :group args are supplied.
2715 Allow :extra-args.
2716 (easy-mmode-define-global-mode): Allow :extra-args.
2717 Correctly handle the case where several :group args are supplied.
2718
9c887ada
MB
27192000-11-02 Miles Bader <miles@gnu.org>
2720
eaae8106 2721 * calendar/calendar.el (diary-face, calendar-today-face)
9c887ada
MB
2722 (holiday-face): Remove dependency on `window-system'.
2723
7f25090d
KR
27242000-11-02 Ken Raeburn <raeburn@gnu.org>
2725
2726 * Makefile.in (emacs): Set EMACSLOADPATH always.
2727 (update-authors, .el.elc, compile-files): Don't do it explicitly
2728 here.
9b911107 2729 (compile-files): Bomb out if compilation of a file fails.
7f25090d 2730
7dd6009c
DL
27312000-11-02 Dave Love <fx@gnu.org>
2732
2733 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup.
2734
94821e4f
EZ
27352000-11-02 Eli Zaretskii <eliz@is.elta.co.il>
2736
2737 * mail/emacsbug.el (report-emacs-bug): Fix whitespace and
2738 punctuation in the warning inserted into the *mail* buffer.
2739
1ac3fc42
GM
27402000-11-02 Gerd Moellmann <gerd@gnu.org>
2741
57731876
GM
2742 * emacs-lisp/authors.el (authors-public-domain-files): New variable.
2743 (authors-public-domain-p): New function.
2744 (authors-print): Use it.
2745
975f82c9
GM
2746 * help.el (view-emacs-news): Use ONEWS.* instead of NEWS.* files.
2747
1ac3fc42
GM
2748 * mail/mh-e.el, mail/mh-comp.el: Change maintainer.
2749
4b3eb10f
GM
27502000-11-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2751
975f82c9 2752 * ps-print.el: Extension for even/odd printing. Doc fix.
4b3eb10f
GM
2753 (ps-print-version): New version number (6.3.1).
2754 (ps-even-or-odd-pages): Customization fix.
2755 (ps-print-page-p, ps-begin-file, ps-begin-job, ps-page-number)
2756 (ps-header-sheet, ps-header-page, ps-end-job): Code fix.
2757 (ps-page-count): Var replaced by `ps-page-column'.
2758 (ps-page-column, ps-page-sheet, ps-page-printed): New vars.
2759 (ps-print-sheet-p): New fun.
2760
7da794df
MB
27612000-11-02 Miles Bader <miles@lsi.nec.co.jp>
2762
2763 * tooltip.el (tooltip-gud-tips-setup): New function.
2764 (tooltip-gud-tips-p): Add :set to call tooltip-gud-tips-setup.
2765 (tooltip-mode): Call tooltip-gud-tips-setup.
2766 (tooltip-gud-tips): Use `gud-basic-call' instead of
2767 process-send-string, so the prompt gets frobbed appropriately.
2768 Handle nil return value from `tooltip-gud-print-command'.
2769
0e40b809
EL
27702000-11-01 Eric M. Ludlam <zappo@ultranet.com>
2771
2772 * comint.el (comint-add-to-input-history): New function.
2773 (comint-send-input): Use `comint-add-to-input-history'.
2774
50ada0db
MB
27752000-11-02 Miles Bader <miles@lsi.nec.co.jp>
2776
973a3104
MB
2777 * info.el (info-menu-header): New face.
2778 (Info-fontify-menu-headers): New function.
2779 (Info-fontify-node, Info-insert-dir): Call `Info-fontify-menu-headers'.
2780
50ada0db
MB
2781 * info.el (Info-insert-dir): Don't include blank lines at
2782 beginning of additional dir files (one is added automatically).
2783
bff53411
SM
27842000-11-01 Stefan Monnier <monnier@cs.yale.edu>
2785
2786 * emacs-lisp/easy-mmode.el (define-minor-mode):
2787 Revert the latest changes.
2788 Allow the three positional arguments to be skipped and replaced
2789 by keyword arguments.
2790 Add a :toggle argument to determine whether a nil arg means toggle
2791 or means turn-on. The default is unchanged.
2792 Add a call to force-mode-line-update.
2793
6b8a0b2d
DL
27942000-11-01 Dave Love <fx@gnu.org>
2795
2796 * emacs-lisp/elp.el (elp-restore-function): Remove autoload
2797 cookie.
2798
5bf99100
MB
27992000-11-01 Miles Bader <miles@lsi.nec.co.jp>
2800
2801 * calendar/calendar.el (diary-face, holiday-face): Add
2802 dark-background variants.
2803
a4032611
SS
28042000-10-31 Sam Steingold <sds@gnu.org>
2805
2806 * textmodes/tex-mode.el (tex-file): Use `default-directory' when
2807 `tex-main-file' does not have directory in it.
2808
c286608e
SM
28092000-10-31 Stefan Monnier <monnier@cs.yale.edu>
2810
2811 * cus-edit.el (custom-mode-map): Switch back to a sparse keymap.
2812
4836835a
TTN
28132000-10-31 Thien-Thi Nguyen <ttn@gnu.org>
2814
2815 * ediff-init.el (ediff-prepare-buffer-hook): Expand docstring, no
2816 functional change.
2817
26dcb81b
GM
28182000-10-31 Gerd Moellmann <gerd@gnu.org>
2819
2820 * files.el (find-file-noselect): When we expand a wildcard, return
2821 a list of buffers, as we should do according to the doc string.
2822
49fc4500
KR
28232000-10-31 Ken Raeburn <raeburn@gnu.org>
2824
2825 * loadup.el (top level): Adjust load path if program name is
2826 "../src/bootstrap-emacs", in case it's not dumped and thus the
2827 load path adjustment hasn't already been done.
2828
ea0c615d
GM
28292000-10-31 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2830
2831 * ps-print.el: Fix bug on selected pages for printing. Use
2832 `color-values' for Emacs 21. Ensure fontification when jit-lock
2833 is on. Try to avoid warning messages when compiling. Doc Fix.
2834 (ps-print-version): New version number (6.3).
2835 (ps-color-device): Use `color-values' to determine if device
2836 supports color.
2837 (ps-color-values): Try to use `x-color-values' when using XEmacs.
2838 (ps-print-page-p): Changed from defsubst to defun.
2839 (ps-page-number): Changed from defmacro to defun.
2840 (ps-header-sheet, ps-header-page): Fix bug on selected pages for
2841 printing.
c286608e 2842 (ps-print-ensure-fontified): Ensure fontification when jit-lock is on.
ea0c615d
GM
2843 (ps-end-file, ps-dummy-page): Funs eliminated.
2844 (ps-print-color-scale): Changed default value.
2845 (ps-page-n-up, ps-print-page-p): New internal vars.
2846 (ps-print-preprint, ps-output, ps-begin-file, ps-begin-page)
2847 (ps-plot-region, ps-generate, ps-end-job): Code fix.
2848
9e20722f
GM
2849 * delim-col.el: Little programming improvement.
2850 (delimit-columns-str): New macro.
2851 (delimit-columns-region, delimit-columns-rectangle): Code fix.
2852
d7a0fd00
KH
28532000-10-31 Kenichi Handa <handa@etl.go.jp>
2854
c286608e
SM
2855 * term/mac-win.el (decode-mac-roman, encode-mac-roman, mac-roman):
2856 Moved to european.el.
d7a0fd00
KH
2857 (ccl-encode-mac-roman-font, fontset-mac): Modified for
2858 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
c286608e
SM
2859 (mac-roman-kbd-insert, mac-roman-kbd-mode): These functions deleted.
2860 (mac-roman-kbd-mode, mac-roman-kbd-mode-map): These variables deleted.
d7a0fd00 2861
234be340
DL
28622000-10-30 Dave Love <fx@gnu.org>
2863
2864 * progmodes/cc-menus.el (imenu-generic-expression)
2865 (imenu-progress-message): Only defvar when compiling.
2866
4edc4a39
DL
2867 * emacs-lisp/elp.el (elp-unload-hook): New function.
2868
2869 * loadhist.el (unload-feature): Call elp-restore-function,
2870 checking for symbols; don't use elp-restore-all.
2871 (loadhist-hook-functions): Doc fix.
2872
70c825df
SM
28732000-10-30 Stefan Monnier <monnier@cs.yale.edu>
2874
2875 * log-edit.el (log-edit-confirm): Fix the default.
2876
1d3baf74
GM
28772000-10-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2878
2879 * delim-col.el: Little fix: replace delimit-columns-align-columns by
2880 delimit-columns-format.
2881 (delimit-columns-region, delimit-columns-rectangle): Code fix.
4836835a 2882
1ec321a7
MB
28832000-10-30 Miles Bader <miles@lsi.nec.co.jp>
2884
2885 * comint.el (comint-replace-by-expanded-history): Don't use
2886 comint-get-old-input (we're not looking at *old* input).
2887 (comint-get-old-input-default): If using fields, signal an error
2888 when the point is not in an input field.
2889
70737ea9
KH
28902000-10-30 Kenichi Handa <handa@etl.go.jp>
2891
2892 * international/mule-conf.el: New charsets mule-unicode-2500-33ff
2893 and mule-unicode-e000-ffff.
2894
fa0cb51d 2895 * international/mule.el (decode-char, encode-char): New functions.
70737ea9
KH
2896 (make-coding-system): Accept a symbol of translation table as a
2897 value of property `safe-chars'.
2898
2899 * international/mule-cmds.el (encode-coding-char): Check property
2900 safe-chars instead of safe-charsets.
2901
2902 * international/fontset.el (fontset-default): Modified for
2903 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
2904 (x-font-name-charset-alist): Likewise.
2905 (ccl-encode-unicode-font): New CCL program. Record it in
2906 font-ccl-encoder-alist to be used for fonts "ISO10646-1".
2907
70c825df
SM
2908 * language/european.el (mac-roman-decoder, mac-roman-encoder):
2909 New translation tables.
70737ea9
KH
2910 (decode-mac-roman, encode-mac-roman): Definition of these CCL
2911 programs are modified and moved from mac-win.el.
2912 (mac-roman): Definition of this coding system is modified and
2913 moved from mac-win.el.
4836835a 2914
fda2ce24 29152000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
4836835a 2916
1d3baf74 2917 * ediff-wind.el (ediff-setup-control-frame): Enclose
fda2ce24 2918 face-attribute in condition-case to avoid errors in older emacsen.
70737ea9 2919
dd4d3cb6
MB
29202000-10-29 Miles Bader <miles@gnu.org>
2921
2922 * custom.el (custom-add-to-group): Allow multiple entries for a
2923 given value OPTION, as long as their widget types are different.
2924 * cus-edit.el (custom-face-value-create): If face name doesn't end
2925 with "face", add such here (similar to custom group widgets).
2926
2927 * comint.el (comint-highlight-prompt): Add :type.
2928
dace60cf
JW
29292000-10-28 John Wiegley <johnw@gnu.org>
2930
2931 * textmodes/flyspell.el (flyspell-maybe-correct-transposition):
2932 Changed this function to operate on a temporary buffer instead of
2933 the main buffer. This not only keeps flyspell from marking a
2934 buffer as changed that wasn't, but it solves the jumpy cursor
2935 problem when attempts are made to edit incorrect words.
2936 (flyspell-maybe-correct-doubling): Same change as for
2937 `flyspell-maybe-correct-transposition'.
2938
2939 * calendar/timeclock.el (timeclock-log): Doc fix.
2940 (timeclock-last-event): Doc fix.
2941 (timeclock-log): Kill the timelog buffer after appending a new
2942 event.
2943 (timeclock-find-discrep): Use a temp buffer to read in the
2944 timelog, instead of visiting the file.
2945 (timeclock-log-data): A new function, along with a host of helper
2946 functions, for the purpose of making timelog data accessible to
2947 programmers.
2948
2949 * eshell/esh-mode.el (window-height test): Make certain that
2950 `eshell-stringify-t' is non-nil.
2951 (eshell-password-prompt-regexp): Changed to a much simpler
2952 password regexp.
2953 (eshell-send-input): If `eshell-invoke-directly' returns t,
2954 directly invoke the parsed command using `eval'. This improves
2955 turn-around time on simple commands by a factor of three or
2956 greater, such as cd, ls, pwd, etc. -- which get used very often.
2957 It also conserves thousands of cons cells per call (since
2958 `eshell-do-eval' consumes memory like a Cookie Monster set loose
2959 in the Pacific Cookie Company).
2960
2961 * eshell/esh-test.el (eshell-test): Whitespace fix.
2962
2963 * eshell/em-ls.el (eshell-ls-insert-directory): Make
2964 `eshell-ls-initial-args' nil when inserting directory contents.
2965
2966 * eshell/em-script.el (eshell-script-initialize): Add names to
2967 `eshell-complex-commands, since `source' and `.' are complex.
2968
0467b076
EZ
2969 * eshell/esh-cmd.el (eshell-rewrite-for-command)
2970 (eshell-rewrite-while-command): Use `eshell-protect' instead of
dace60cf
JW
2971 `eshell-copy-handles'.
2972 (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
2973 bodies.
2974 (eshell-separate-commands): Whitespace fix.
2975 (eshell-complex-commands): Added a new list of names, for
2976 determining whether a given command is as simple as it looks.
2977 (eshell-invoke-directly): New function. Returns t if a command
2978 should be invoked directly (using `eval'), rather than indirectly
2979 using `eshell-do-eval'.
2980 (eshell-do-eval): Whitespace fix.
2981
2982 * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
2983 which provides an emulation of the DOS shell behavior of assuming
2984 that cp/mv/ln should copy/move/link to the current directory.
2985 (eshell-remove-entries): Added a doc string.
2986 (eshell-shuffle-files): Removed the check for `target' being null.
2987 (eshell-mvcp-template, eshell-mvcpln-template): Renamed
2988 `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
2989 it to do a smarter check of whether a destination was provided.
2990 (eshell/mv, eshell/cp): Enable `:preserve-args'.
2991 (eshell/ln): Enable `:preserve-args', and use
2992 `eshell-mvcpln-template' to implement the body of the function.
0467b076
EZ
2993 (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep)
2994 (eshell/du, eshell/diff, eshell/locate): Stringify the argument
dace60cf
JW
2995 list after flattening it. This makes it possible to cat files
2996 with numerical names.
2997 (eshell-unix-initialize): Added several names to
2998 `eshell-complex-commands.
2999 (eshell-unix-command-complex-p): Return t if a given command name
3000 may result in external processes being invoked.
3001
3002 * eshell/em-glob.el (eshell-glob-show-progress): Make this
3003 variable nil by default, since it slows down glob processing by a
3004 factor of two or more, and increases memory consumption.
3005
3006 * eshell/em-smart.el: Added a note about how memory consumptive
3007 smart display mode can be (at least this is true in Emacs 21).
3008 (eshell-smart-initialize): Whitespace fix.
3009 (eshell-refresh-windows): Use `if' instead of `when'.
3010 (eshell-smart-scroll-window): Calling `save-current-buffer' was
3011 not necessary.
3012 (eshell-currently-handling-window): Added a missing global
3013 variable.
3014
3015 * eshell/em-ls.el (eshell-do-ls): Code simplification.
3016 (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
3017 Whitespace fix.
3018 (eshell-ls-exclude-hidden): Added this variable in addition to
3019 `eshell-ls-exclude-regexp'. This one prevents files beginning
3020 with . from even being read, which can improve memory consumption
3021 quite a bit.
3022 (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
3023 read file entries beginning with a dot. In home directories with
3024 lots of hidden files, fully two-thirds of the time spent in ls is
3025 used to read directory entries that are immediately thrown away.
3026 (eshell-ls-initial-args): Added back this configuration variable,
3027 for specifying default initial arguments to every call to ls.
3028 Much faster than using an alias to do the same thing.
3029 (eshell-do-ls): Use `eshell-ls-initial-args', if set.
3030 (eshell-ls-dir): Whitespace change.
3031
3032 * eshell/em-dirs.el (eshell/pwd): Small code simplification.
3033
3034 * eshell/esh-util.el: Don't require `ange-ftp' if it's not
3035 available.
3036 (eshell-stringify-t): Added a customization variable, to indicate
3037 whether `t' should be rendered as a string at all. If not, one
3038 can still determine if the result of an expression is true using
3039 "file-exists-p FILE && echo true".
3040 (eshell-stringify): If `eshell-stringify-t' is nil, don't
3041 stringify t!
3042
3043 * eshell/esh-module.el: Whitespace fix.
3044
3045 * eshell/em-alias.el (eshell-alias-initialize): Added
3046 `eshell-command-aliased-p' to `eshell-complex-commands'.
3047 (eshell-command-aliased-p): New function that returns t if a
3048 command name names an aliased.
3049
657f9cb8 30502000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
4836835a 3051
0467b076 3052 * viper-cmd.el (viper-preserve-cursor-color): New test that avoids
70c825df 3053 redrawing the screen when changing cursor color.
0467b076
EZ
3054 (viper-insert-state-pre-command-sentinel)
3055 (viper-replace-state-pre-command-sentinel)
70c825df
SM
3056 (viper-replace-state-post-command-sentinel):
3057 Use viper-preserve-cursor-color.
657f9cb8
MK
3058 Many functions changed to use viper= instead of = when comparing
3059 characters.
0467b076 3060 * viper-util.el (viper-memq-char,viper=): New functions for
657f9cb8 3061 working with characters.
0467b076 3062 (viper-change-cursor-color): Fixed buglet.
657f9cb8
MK
3063 Many functions changed to use viper= instead of = when comparing
3064 characters.
0467b076 3065 * viper.el (viper-insert-state-mode-list): Added eshell.
4836835a 3066
0467b076 3067 * ediff-init.el (ediff-before-setup-hook): New hook.
657f9cb8 3068 Several typos fixed in various docstrings.
0467b076
EZ
3069 * ediff-merg.el (ediff-show-clashes-only): Docstring typo fixed.
3070 * ediff-nult.el (ediff-before-session-group-setup-hooks): New
657f9cb8 3071 hook.
0467b076
EZ
3072 (ediff-show-meta-buffer): Run ediff-before-session-group-setup-hooks.
3073 * ediff-util.el (ediff-setup): Run ediff-before-setup-hook.
3074 (ediff-other-buffer): Use selected buffers if in Buffer-menu buffer.
3075 (ediff-get-selected-buffers): New function.
3076 * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal)
3077 (ediff-vc-merge-internal,ediff-rcs-merge-internal): Use
657f9cb8 3078 save-window-excursion.
0467b076 3079 * ediff-wind.el (ediff-skip-unsuitable-frames): More robust
657f9cb8 3080 termination check in while loop.
0467b076 3081 * ediff.el (ediff-get-default-file-name): Better defaults when in
657f9cb8 3082 dired buffer.
0467b076
EZ
3083 (ediff-files,ediff-merge-files,ediff-files3)
3084 (ediff-merge-files-with-ancestor): Use ediff-get-default-file-name.
4836835a 3085
4f490d99
DL
30862000-10-28 Dave Love <fx@gnu.org>
3087
3088 * info.el (Info-fontify-node): Add help-echo for menu items.
3089
45b84006
EZ
30902000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
3091
5ebc02b3
EZ
3092 * startup.el (normal-top-level): If the value of $TERM indicates
3093 we are running from xterm or one of its work-alikes, default to a
3094 light background mode.
3095
45b84006
EZ
3096 Support for -fg, -bg, and -rv command-line arguments for TTYs:
3097 * faces.el (tty-handle-reverse-video): New function.
3098 (tty-create-frame-with-faces): Call it.
3099
3100 * frame.el (frame-notice-user-settings): Don't apply
3101 default-frame-alist and initial-frame-alist to MS-DOS frames.
3102 Call tty-handle-reverse-video, frame-set-background-mode, and
3103 face-set-after-frame-default for non-MS-DOS frames.
3104
3105 * startup.el (tty-long-option-alist): New variable.
3106 (tty-handle-args): New function.
3107 (command-line): Call tty-handle-args.
3108
3109 * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
3110 startup.el now does that for all character-terminal frames.
3111
eab6e8b9
MB
31122000-10-28 Miles Bader <miles@gnu.org>
3113
3114 * emacs-lisp/easy-mmode.el (define-minor-mode): Generate
3115 `turn-on-MODE' and `turn-off-MODE' functions unless the mode is
3116 global. If :global is followed by a non-nil but non-t value,
3117 make the mode buffer-local, but also generate a `global-MODE'
3118 version using `easy-mmode-define-global-mode'. Add
3119 :conditional-turn-on keyword argument.
3120
51a29efc
DL
31212000-10-28 Dave Love <fx@gnu.org>
3122
3123 * international/latin1-disp.el (latin1-char-displayable-p): Don't
3124 use window-system.
3125
d71d7114
EZ
31262000-10-27 Eli Zaretskii <eliz@is.elta.co.il>
3127
3128 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
3129 Don't call find-buffer-file-type-coding-system. Instead, just
3130 set eol-type to -unix if inhibit-eol-conversion is in effect, or
3131 if the file is on an untranslated filesystem.
3132 (add-untranslated-filesystem): Use "D" instead of "f" inside
3133 interactive.
3134
1f9cab4b
DL
31352000-10-27 Dave Love <fx@gnu.org>
3136
70c825df 3137 * textmodes/refill.el (refill-late-fill-paragraph-function): New var.
1f9cab4b
DL
3138 (refill-mode): Use it.
3139
70c825df
SM
31402000-10-27 Stefan Monnier <monnier@cs.yale.edu>
3141
3142 * international/quail.el (quail-activate): Don't make-local-hook.
3143
7432cf10
AS
31442000-10-27 Andre Spiegel <spiegel@gnu.org>
3145
4836835a 3146 * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
7432cf10 3147 manual backups and file.~<rev>.~ for automatic ones.
08a1fcb7
AS
3148 (vc-make-version-backup): Don't do it on MS-DOS without long file
3149 names.
4836835a 3150
7432cf10
AS
3151 * vc.el (vc-version-other-window): If an automatic backup of the
3152 desired version exists, rename it instead of copying it.
3153
4836835a
TTN
3154 * vc-cvs.el (vc-cvs-checkin): Check both status and error message
3155 after command. If there's an unexpected error, signal it instead
7432cf10 3156 of being silent.
e1483c38 3157 (vc-cvs-merge-news): Be prepared for no news at all.
4836835a 3158
05ea7ef2
MB
31592000-10-27 Miles Bader <miles@lsi.nec.co.jp>
3160
fd1035aa
MB
3161 * shell.el (shell): Add BUFFER argument.
3162 * comint.el (make-comint-in-buffer): New function.
3163 (make-comint): Use it.
3164
05ea7ef2
MB
3165 * faces.el (face-spec-choose): Change syntax so that the list of
3166 attribute-value pairs is now the cdr of each clause, not the cadr.
3167 Detect old-style entries, and handle them. Use pop.
3168
835a55fe
SM
31692000-10-26 Stefan Monnier <monnier@cs.yale.edu>
3170
f5ab1cdd
SM
3171 * cus-edit.el (custom-mode-map): Use a sparse map.
3172 (custom-mode): Don't bother with make-local-hook.
3173
3174 * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
3175
835a55fe
SM
3176 * vc.el (vc-start-entry): Only erase the buffer if comment is set.
3177
c13b0ec8
GM
31782000-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3179
3180 * ps-print.el: Avoid compilation gripes.
3181 (ps-print-version): New version number (6.2.1).
4836835a 3182
e9f63196
DL
31832000-10-26 Dave Love <fx@gnu.org>
3184
0b95284b
DL
3185 * menu-bar.el: Modify some menu item help strings.
3186 (menu-bar-help-menu): Add link to MORE.STUFF.
3187
e9f63196
DL
3188 * cus-edit.el (custom-mode): Add `special' mode-class property.
3189
3190 * wid-browse.el (widget-browse-mode): Likewise.
3191
3192 * wid-edit.el (widget-specify-field): Revert to using local-map
3193 property, not keymap.
3194
e276a14a
MB
31952000-10-26 Miles Bader <miles@lsi.nec.co.jp>
3196
c1545d88
MB
3197 * wid-edit.el (widget-field-end): When checking for a `boundary'
3198 field, do so in the correct buffer.
3199
3c1b77ca
MB
3200 * simple.el (undo): Correctly distinguish between numeric and
3201 non-numeric prefix args in non-transient-mark-mode, as per the doc
3202 string. When in transient-mark-mode, treat all prefix-args as
3203 numeric.
3204
f5ab1cdd
SM
3205 * simple.el (previous-matching-history-element): Miscellaneous cleanup.
3206 Position point on match. Handle N == 0 correctly.
22626d9d
MB
3207
3208 * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
3209 (comint-mode-map): Reverse order of `comint-write-output' and
3210 `comint-append-output-to-file'.
3211 (comint-append-output-to-file): Reinstate this function, for the
3212 benefit of the menu.
3213
d97151cb
SM
32142000-10-25 Stefan Monnier <monnier@cs.yale.edu>
3215
3216 * vc.el (vc-version-other-window): Bind `file'.
3217
ea7d6f5b
GM
32182000-10-25 Gerd Moellmann <gerd@gnu.org>
3219
f5ab1cdd 3220 * Makefile.in (update-authors): New target for maintenance purposes.
ea7d6f5b
GM
3221
3222 * emacs-lisp/authors.el (batch-update-authors): New function.
3223 (authors-fixed-entries): New defconst.
3224 (authors-add-fixed-entries): New function.
3225 (authors): Call it.: Don't process lispref/.
3226
17c25cea
JR
32272000-10-25 Jason Rumney <jasonr@gnu.org>
3228
3229 * cus-edit.el (custom-button-face, custom-button-pressed-face):
3230 Merge x w32 and mac definitions.
3231
4ecda532
GM
32322000-10-25 Gerd Moellmann <gerd@gnu.org>
3233
3234 * menu-bar.el (menu-bar-options-menu): Add a help string for
3235 `uniquify'.
3236
b6735035
GM
32372000-10-25 Stephen Gildea <gildea@alum.mit.edu>
3238
f5ab1cdd
SM
3239 * time-stamp.el (time-stamp-string-preprocess):
3240 Fix a wrong type argument error.
b6735035 3241
f4cbc7a0
MB
32422000-10-25 Miles Bader <miles@gnu.org>
3243
3244 * recentf.el (recentf-mode): Variable removed.
3245 (recentf-mode): Use `define-minor-mode'.
3246
3247 * mwheel.el (mouse-wheel-mode): New global minor mode.
3248 (mwheel-install): Use `mouse-wheel-mode'.
3249
f4b020f6
DL
32502000-10-25 Dave Love <fx@gnu.org>
3251
f5ab1cdd
SM
3252 * progmodes/cperl-mode.el (cperl-mode):
3253 Set normal-auto-fill-function correctly.
072cb6f9 3254
f4b020f6
DL
3255 * wid-edit.el (widget-field-keymap, widget-text-keymap): Don't
3256 inherit from global-map and don't nullify menu-bar and tool-bar
0b95284b 3257 bindings.
f4b020f6 3258
ebe2a441
MB
32592000-10-25 Miles Bader <miles@lsi.nec.co.jp>
3260
ff4dcd4b
MB
3261 * wid-edit.el (widget-field-at): New function.
3262 (widget-at, widget-field-activate): Use it.
3263 (widget-tabable-at): Use `widget-at'.
3264 (widget-specify-field): If the terminating character of the widget
3265 field (which is read-only) is a newline, put it into a special
3266 `boundary' field so that C-n/C-p act more naturally.
3267 (widget-field-end): Also don't subtract one if a special
3268 `boundary' field has been added after the widget field.
3269
ebe2a441
MB
3270 * comint.el (comint-output-filter, comint-send-input): Don't
3271 bother adding stickiness fields to overlays to fool the field
3272 code, since it should notice the overlay insertion-types now.
ff4dcd4b 3273
ebe2a441
MB
3274 * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
3275 Replace with aliases of the normal emacs b-o-l/e-o-l functions.
3276 (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
3277
fe50b6ab
GM
32782000-10-24 Gerd Moellmann <gerd@gnu.org>
3279
53df4dda
GM
3280 * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
3281 (authors): Set file coding system to iso-2022-7bit. Add
3282 file-local variables to output buffer.
3283
4836835a 3284 * files.el (after-find-file): Don't print any warnings if
fe50b6ab
GM
3285 WARN is nil.
3286
53df4dda
GM
32872000-10-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3288
3289 * ps-print.el (ps-generate): Fix odd/even pages printing bug.
3290
3291 * delim-col.el: Now there is a column formatting mechanism.
3292 Modified to customization mechanisms convention. Doc fix.
3293 (columns): New group for delim-col.
3294 (delimit-columns-before, delimit-columns-after)
3295 (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
3296 (delimit-columns-end): New vars.
3297 (delimit-columns-customize, delimit-columns-format): New funs.
3298 (delimit-columns-region, delimit-columns-rectangle)
3299 (delimit-columns-rectangle-line): Modified to support column
3300 formatting.
4836835a 3301
a9839779
DL
33022000-10-24 Dave Love <fx@gnu.org>
3303
3304 * log-edit.el (log-edit): Add :version and a :group for vc.
3305
df0267b8
GM
33062000-10-24 Gerd Moellmann <gerd@gnu.org>
3307
9acc3873
GM
3308 * files.el (after-find-file): Don't print a message ``New file''
3309 if WARN is nil.
3310
63e1b552
GM
3311 * wid-edit.el (widget-field-keymap, widget-text-keymap): Define
3312 the tool-bar map as nil, as for the menu-bar. Otherwise, we'll
3313 get duplicate tool-bar entries because we'll see the global ones
3314 on more than one path through keymaps.
3315
1946f901
GM
3316 * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
3317
df0267b8
GM
3318 * progmodes/cmacexp.el: Change Francesco's email address.
3319
ae3b264b
KH
33202000-10-24 Kenichi Handa <handa@etl.go.jp>
3321
3322 * window.el (fit-window-to-buffer): Adjust point of the window
3323 buffer, not that of the current buffer.
3324
23afac01
EZ
33252000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
3326
3327 * progmodes/cmacexp.el: Update the euthor's email address.
3328
22d1a4ed
MB
33292000-10-24 Miles Bader <miles@lsi.nec.co.jp>
3330
3331 * faces.el (face-spec-set-match-display): Add `graphic' display
3332 type (the inverse of `tty'). Use `display-graphic-p' instead of
3333 the window-system variable.
3334
f408aa48
KH
33352000-10-24 Kenichi Handa <handa@etl.go.jp>
3336
3337 * international/isearch-x.el (isearch-with-input-method): Call
3338 input-method-function with the first event in
3339 unread-command-events.
3340
94fe8a31
MB
33412000-10-24 Miles Bader <miles@lsi.nec.co.jp>
3342
3343 * faces.el (face-default-spec, face-user-default-spec): Make
3344 defsubsts.
3345
8f47302e
AC
33462000-10-24 Andrew Choi <akochoi@i-cable.com>
3347
3348 * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
3349 New charsets.
3350
3351 * term/mac-win.el: Remove definitions of mac-roman-lower and
3352 mac-roman-upper, require dired, and define instead of set
3353 mac-ready-for-drag-n-drop to avoid compilation error.
3354
446c097e
AI
33552000-10-23 Andrew Innes <andrewi@gnu.org>
3356
3357 * files.el (make-backup-file-name-1) [windowsnt, ms-dos]: Remove
3358 superfluous calls to subst-char-in-string; instead apply
3359 expand-file-name after convert-standard-filename to ensure
3360 expected directory separators are used.
3361
379b70e7
EZ
33622000-10-23 Eli Zaretskii <eliz@is.elta.co.il>
3363
3364 * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
3365
85c766e9
DL
33662000-10-23 Dave Love <fx@gnu.org>
3367
b7e03a67
DL
3368 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
3369 (tool-bar-add-item): Set foreground and background for XBM icons.
3370
3371 * international/latin1-disp.el (latin1-char-displayable-p): New
3372 function (from Handa).
3373 (latin1-display-check-font): Use it.
3374
0dcf8835
DL
3375 * imenu.el (imenu--create-keymap-2): Build menu with menu-item
3376 using :key-sequence, making it much more usable. Use nconc, not
3377 append.
3378 (imenu--create-keymap-1): Avoid append.
3379
85c766e9 3380 * textmodes/refill.el: Remove bits redundant with define-minor-mode.
4836835a 3381
cb3069bb
MB
33822000-10-23 Miles Bader <miles@lsi.nec.co.jp>
3383
3384 [the following changes fix a bug where `define-minor-mode' didn't
3385 correctly generate :require clauses for defcustoms in compiled files]
3386 * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
3387 (byte-compile-log-file, byte-compile-log-1): Don't set
3388 `byte-compile-current-file' to nil. Instead set
3389 `byte-compile-last-logged-file' to it. Test whether
3390 byte-compile-current-file equals byte-compile-last-logged-file
3391 instead of whether its nil.
3b6542ba 3392 (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
cb3069bb 3393
6db6243b
SM
33942000-10-23 Stefan Monnier <monnier@cs.yale.edu>
3395
3396 * textmodes/refill.el: Fix var names in doc.
3397 (refill-mode): Don't bother with make-local-hook anymore.
3398
98490598
MB
33992000-10-23 Miles Bader <miles@lsi.nec.co.jp>
3400
e01cd227
MB
3401 * faces.el (face-user-default-spec, face-default-spec): New functions.
3402 (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
4836835a 3403 (frame-set-background-mode, face-set-after-frame-default):
e01cd227
MB
3404 Use `face-user-default-spec'. Simplify code slightly.
3405
4836835a 3406 * woman.el (woman-italic-face, woman-bold-face)
e01cd227
MB
3407 (woman-unknown-face): Add dark-background variants.
3408 (woman-default-faces): Renamed from `woman-colour-faces'.
3409 Set using the stored defaults, rather than using hard-wired colors.
3410 (woman-monochrome-faces): Renamed from `woman-black-faces'.
3411 Just make the foreground `unspecified' rather than "black".
3412 (woman-menu): Rename menu entries accordingly.
3413
98490598
MB
3414 * faces.el (header-line): Make more reasonable on mono/grayscale
3415 displays.
3416
1a578e9b
AC
34172000-10-23 Andrew Choi <akochoi@i-cable.com>
3418
3419 * cus-edit.el (custom-button-face): Use 3D look for mac.
3420 (custom-button-pressed-face): Likewise.
3421
3422 * faces.el (set-face-attributes-from-resources): Handle mac frames
3423 in the same way as x and w32 frames.
3424 (face-valid-attribute-values): Likewise.
3425 (read-face-attribute): Likewise.
3426 (defined-colors): Likewise.
3427 (color-defined-p): Likewise.
3428 (color-values): Likewise.
3429 (display-grayscale-p): Likewise.
3430 (face-set-after-frame-default): Likewise.
3431 (mode-line): Same default face as for x and w32.
3432 (tool-bar): Likewise.
3433
3434 * frame.el: Remove call to frame-notice-user-settings at end of
3435 the file.
3436
3437 * info.el (Info-fontify-node): make underlines invisible for mac
3438 as for x, pc, and w32 frame types.
3439
3440 * term/mac-win.el: New file.
3441
aaaf7be7
DL
34422000-10-22 Dave Love <fx@gnu.org>
3443
3444 * textmodes/refill.el: New file.
3445
5392d654
AS
34462000-10-22 Andre Spiegel <spiegel@gnu.org>
3447
4836835a 3448 * vc-hooks.el (vc-version-backup-file-name): New optional args
5392d654 3449 MANUAL and REGEXP.
4836835a 3450 (vc-delete-automatic-version-backups, vc-make-version-backup):
5392d654
AS
3451 New functions.
3452 (vc-before-save): Use the latter.
3453 (vc-default-make-version-backups-p): Added `-p' suffix to avoid
3454 confusion.
3455
4836835a 3456 * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
5392d654
AS
3457 expected by vc[-hooks].el.
3458
3459 * vc.el (vc-checkout): Added `-p' suffix in call to
3460 vc-make-version-backups-p; use vc-make-version-backup to actually
3461 make the backup.
3462 (vc-version-other-window, vc-version-backup-file): Handle both
3463 automatic and manual backups.
3464 (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
3465 of all of them.
3466
1e221c16
MB
34672000-10-22 Miles Bader <miles@gnu.org>
3468
7ff4fda5
MB
3469 * comint.el (comint-highlight-input, comint-highlight-prompt):
3470 Renamed, `-face' at end removed.
3471 (comint-send-input, comint-output-filter): Use renamed faces.
3472
3511cde8
MB
3473 * window.el (fit-window-to-buffer): Change defaulting of
3474 MAX-HEIGHT slightly.
3475
1e221c16
MB
3476 * faces.el (color-values, color-defined-p): Use `member', not
3477 `memq', because it works correctly for strings.
3478 (frame-set-background-mode): Actually, "unspecified-fg" and
3479 "unspecified-bg" *are* strings. Use `member', not `memq', and
3480 `equal', not `eq', when a string value is possible.
3481
b6ef4898
EZ
34822000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
3483
3484 * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
3485
34939e2c
SM
34862000-10-21 Stefan Monnier <monnier@cs.yale.edu>
3487
3488 * progmodes/sh-script.el (sh-mode-map): Remove bindings for
3489 sh-electric-rparen, sh-electric-less and sh-electric-hash.
3490 (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
3491 (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
3492 (sh-font-lock-syntactic-keywords): Use them.
3493 (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
3494 (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
3495 (sh-mode): Don't override font-lock-unfontify-region-function.
3496 Use a copy of sh-font-lock-syntactic-keywords.
3497 (sh-set-shell): Don't set sh-electric-rparen-needed-here.
3498 Don't call sh-scan-buffer since font-lock does it on the fly.
3499 (sh-get-indent-info): Use `face' rather than `syntax-table'
3500 text-property to detect here-documents.
3501 Replace sh-special-syntax with sh-st-punc.
3502 (sh-prev-line): Use `face' rather than `syntax-table'
3503 text-property to skip over here-documents.
3504 (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
3505 (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
3506 (sh-electric-less, sh-set-here-doc-region)
4836835a 3507 (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
34939e2c
SM
3508 (sh-scan-buffer, sh-rescan-buffer): Remove.
3509
f3d3c491
AI
35102000-10-21 Andrew Innes <andrewi@gnu.org>
3511
3512 * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
3513 remote (ange-ftp) file names.
3514
b86c791c
MB
35152000-10-21 Miles Bader <miles@gnu.org>
3516
d9c30bdf
MB
3517 * window.el (fit-window-to-buffer): New function.
3518 (shrink-window-if-larger-than-buffer): Use it.
1e221c16
MB
3519 (window-text-height): Don't expect minibuffers to have mode-lines.
3520
d9c30bdf 3521 * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
feb5013d
MB
3522 * international/quail.el (quail-update-guidance): Use
3523 `fit-window-to-buffer' instead of `set-window-text-height'.
d9c30bdf 3524
617fee5a
MB
3525 * international/quail.el (quail-show-guidance-buf): Make sure
3526 guidance window really has enough room.
3527 (quail-update-guidance): If quail-guidance-win is already shown,
3528 make sure its height is OK.
3529
b86c791c
MB
3530 * window.el (window-text-height, set-window-text-height):
3531 New functions.
3532 (shrink-window-if-larger-than-buffer): Use `window-text-height'
3533 instead of `window-height' & `mode-line-window-height-fudge'.
3534 (mode-line-window-height-fudge): Add FACE parameter.
3535 * help.el (resize-temp-buffer-window): Use `set-window-text-height'
3536 instead of `enlarge-window' & `mode-line-window-height-fudge'.
3537
e34850d1
MB
35382000-10-20 Miles Bader <miles@gnu.org>
3539
3540 * window.el (height-affecting-face-attributes): Use `defconst'.
3541
3542 * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
3543 New function, conditionally aliased to `mode-line-window-height-fudge'.
3544 (ispell-help): Use it.
3545 (ispell-choices-win-default-height): Don't include mode-line fudge.
3546 (ispell-choices-win-default-height): New function.
3547 (ispell-show-choices, ispell-command-loop): Use function
3548 `ispell-choices-win-default-height' instead of variable.
3549
a8b883c2
MB
35502000-10-20 Miles Bader <miles@lsi.nec.co.jp>
3551
8c6e4a58
MB
3552 * window.el (mode-line-window-height-fudge): New variable.
3553 (height-affecting-face-attributes): New variable.
3554 (mode-line-window-height-fudge): New function.
3555 (shrink-window-if-larger-than-buffer): Use it.
3556 * help.el (resize-temp-buffer-window): Likewise.
3557
a8b883c2
MB
3558 * info.el (Info-fontify-node): Add support for @subsubsection
3559 titles, which use `Info-title-4-face'.
3560 (Info-title-4-face): New face.
3561 (Info-title-3-face): Inherit from Info-title-4-face instead of
3562 variable-pitch.
3563
e64c3a75
JR
35642000-10-19 Jason Rumney <jasonr@gnu.org>
3565
3566 * dired.el (dired-insert-directory): Do not let errors signalled by
3567 attempt to run dired-free-space-program prevent dired from working.
3568
c70fe852
SM
35692000-10-19 Stefan Monnier <monnier@cs.yale.edu>
3570
3571 * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
3572
877cf6b4
GM
35732000-10-19 Gerd Moellmann <gerd@gnu.org>
3574
5de037e0
GM
3575 * dirtrack.el (dirtrack): Fix call to run-hooks.
3576
6deb9af9
GM
3577 * cmuscheme.el (cmuscheme-program-name): Renamed from
3578 scheme-program-name because xscheme.el contains a defcustom with
3579 the same name. As a consequence, customizing group `cmuscheme'
3580 loaded `xscheme' which redefined run-scheme.
3581 (run-scheme): Use cmuscheme-program-name.
3582
877cf6b4
GM
3583 * ps-print.el (ps-print-emacs-type): Move into the
3584 eval-and-compile.
3585
e597d8fb 3586 * play/doctor.el (doctor-death): Update the Samaritans'
c70fe852 3587 anonymous address, and add a website for Befrienders International.
4836835a 3588
3e9cb08f
GM
35892000-10-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3590
c70fe852
SM
3591 * ps-print.el: Even/odd pages fix. Fix little bug on XEmacs.
3592 Avoid compilation gripes. Doc fix.
3e9cb08f
GM
3593 (ps-print-version): New version number (6.2).
3594 (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
3595 (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
3596 (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
3597 (ps-x-extent-priority, ps-x-extent-start-position)
3598 (ps-x-face-font-instance, ps-x-find-coding-system)
3599 (ps-x-font-instance-properties, ps-x-make-color-instance)
3600 (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
3601 avoid compilation gripes without defining functions.
3602 (ps-e-find-composition): Alias for function find-composition, to have a
3603 suitable function depending on Emacs version.
3604 (ps-color-device, ps-color-values, ps-face-foreground-name)
3605 (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
3606 (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
3607 (ps-print-ensure-fontified): Function definitions surrounded by
3608 `eval-and-compile' to avoid compilation gripes.
3609 (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
3610 by symbol-value to avoid compilation gripes.
3611 (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
3612 (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
3613
d8abcd91
MB
36142000-10-19 Miles Bader <miles@lsi.nec.co.jp>
3615
13ab33c4
MB
3616 * startup.el (normal-top-level): Call `frame-set-background-mode'
3617 after `frame-notice-user-settings' because the latter doesn't call
3618 the former on a tty.
3619
d8abcd91
MB
3620 * faces.el (frame-set-background-mode): `unspecified' &c are
3621 symbols, not strings.
3622
e8bce0a9
EZ
36232000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
3624
c70fe852
SM
3625 * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
3626 why some "light*" colors are deliberately absent from the alist.
e8bce0a9 3627
c70fe852
SM
3628 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
3629 Change colors for tty's, as suggested by Miles Bader.
e8bce0a9 3630
773272d8
KH
36312000-10-19 Kenichi Handa <handa@etl.go.jp>
3632
c70fe852 3633 * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
773272d8
KH
3634 (ccl-encode-mule-unicode-0100-24ff): New CCL program. Register it
3635 for ISO10646-1 fonts.
3636 (x-font-name-charset-alist): Add an entry for "iso10646-1".
3637
772139c0
EZ
36382000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
3639
3640 * faces.el (frame-set-background-mode): If a tty frame defines a
3641 background color, use that to compute the background mode, instead
3642 of always defaulting to "dark".
3643
d134a19f
MB
36442000-10-19 Miles Bader <miles@lsi.nec.co.jp>
3645
8bb84cb2
MB
3646 * comint.el (comint-write-output): New function.
3647 (comint-mode-map): Add it to the menu.
e40a778f 3648 Bind `C-c C-s' to comint-write-output.
d134a19f 3649
dada41e1
GM
36502000-10-18 Gerd Moellmann <gerd@gnu.org>
3651
3652 * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
3653 Use fancy-splash-delay.
3654
9b5360aa
GM
36552000-10-18 Alex Schroeder <alex@gnu.org>
3656
3657 * progmodes/sql.el (sql-sybase-options): New option.
3658 (sql-sybase): Use it. Add sql-database to the list of parameters
3659 provided for login. The options -w 2048 -n are not used any more.
3660
9035a35a
GM
3661 * comint.el (comint-read-input-ring): Bugfix such that the first
3662 and the last entry of the input ring file are not lost.
3663
3556c6dd
GM
36642000-10-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3665
3666 * ps-print.el: Internal variable changes to defcustom,
3667 make-local-hook changes to defvar. Doc fix.
3668 (ps-print-version): New version number (6.1).
3669 (ps-setup, ps-do-despool): Code fix.
3670 (ps-printer-name): Customization fix.
3671 (ps-printer-name-option): Now is a defcustom instead of an
3672 internal variable.
3673 (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
3674 (ps-print-begin-column-hook): Now are defvar instead of
3675 make-local-hook.
4836835a 3676
4e217e50
MB
36772000-10-18 Miles Bader <miles@gnu.org>
3678
3679 * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
3680 (comint-kill-output): Changed into an alias for `comint-delete-output',
3681 and made obsolete.
3682 (comint-mode-map): Rename references to comint-kill-output.
3683
34460354
EZ
36842000-10-18 Eli Zaretskii <eliz@is.elta.co.il>
3685
3686 * diff-mode.el (diff-header-face, diff-file-header-face)
3687 (diff-changed-face): Add bold and italic attributes to tty faces.
3688 (diff-function-face): New face.
3689 (diff-font-lock-keywords): Use it.
3690
17ea3cdb
MB
36912000-10-18 Miles Bader <miles@lsi.nec.co.jp>
3692
3693 * comint.el (comint-output-filter): Fixup comint-last-input-end too.
3694 Remove commented-out call to force-mode-line-update.
3695 (comint-kill-output): Use `forward-line 0' instead of
3696 beginning-of-line to make sure we get past the prompt.
3697
9244f2c7
SM
36982000-10-17 Stefan Monnier <monnier@cs.yale.edu>
3699
3700 * diff-mode.el (diff-header-face, diff-file-header-face):
3701 Add specific setting for dark background.
3702 (diff-context-face): Renamed from diff-comment-face.
3703 Set explicitly rather than inheriting from font-lock-comment-face.
3704
1592c1ef
EZ
37052000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
3706
3707 * startup.el (command-line): Move the code which sets the default
3708 TTY colors to before before-init-hook.
3709
f86292a9
GM
37102000-10-17 Gerd Moellmann <gerd@gnu.org>
3711
3712 * jit-lock.el (jit-lock-stealth-time): Doc fix.
3713
f7f2e883
EZ
37142000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
3715
e854cc22
EZ
3716 * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
3717 extensions, for MS-DOS.
3718
f7f2e883
EZ
3719 * diff-mode.el (diff-header-face, diff-file-header-face)
3720 (diff-changed-face): Define tty-specific colors.
3721
c7b4f0f9
GM
37222000-10-17 Gerd Moellmann <gerd@gnu.org>
3723
3724 * startup.el (fancy-splash-text): Realign the text.
3725
12a72271
EZ
37262000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
3727
3728 * font-lock.el (font-lock-comment-face): Define a separate default
3729 for dark-background tty's.
3730
61dfccfd
MB
37312000-10-17 Miles Bader <miles@gnu.org>
3732
3733 * help.el (resize-temp-buffer-window): Add hack to avoid last line
3734 being obscured by whizzy mode-lines on graphics displays.
3735
333cd59e
EZ
37362000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
3737
3738 * info.el (Info-title-1-face, Info-title-2-face)
3739 (Info-title-3-face): Define colors for tty's.
dada41e1 3740 (info-header-node): Remove unneeded tty-specific definition.
333cd59e 3741
dbf1fcc1
EZ
37422000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
3743
3744 * term/pc-win.el (msdos-handle-reverse-video): Don't remove
3745 reverse from the frame parameters, and don't invert foreground and
3746 background colors.
3747
ac629823
MB
37482000-10-16 Miles Bader <miles@gnu.org>
3749
3750 * info.el (Info-set-mode-line): Use `%b' instead of hardwired
3751 string "*Info*". Call propertized-buffer-identification to spruce
3752 up the result.
3753
76eebffc
GM
37542000-10-16 Gerd Moellmann <gerd@gnu.org>
3755
3a6b59d9
GM
3756 * help.el: Provide `help' for the sake of define-minor-mode
3757 which generates defcustoms with requires.
3758
6569c3d3
GM
3759 * jit-lock.el (jit-lock-after-change): If we're in text that
3760 matches a multi-line font-lock pattern, make sure the whole text
3761 will be redisplayed.
3762
c2e0a611
GM
3763 * emacs-lisp/authors.el (authors-add): Don't add an entry if
3764 author's name is unknown.
3765
76eebffc
GM
3766 * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
3767 * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
3768 * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
3769 * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
3770 * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
3771 * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
3772 * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
3773 * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
3774 * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
3775 Add author information.
3776
cf1e7b12
MB
37772000-10-16 Miles Bader <miles@lsi.nec.co.jp>
3778
3779 * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
3780 * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
3781 full-color version (using the Gimp) to eliminate dithering artifacts.
3782
5586f3eb
SM
37832000-10-15 Stefan Monnier <monnier@cs.yale.edu>
3784
3785 * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
3786
3787 * simple.el (syntax-flag-table, string-to-syntax): Remove.
3788
ad64a888
DL
37892000-10-15 Dave Love <fx@gnu.org>
3790
3791 * progmodes/sh-script.el: Require skeleton and comint when
3792 compiling.
3793
3794 * pcomplete.el (pcomplete) <defgroup>: Add :version.
3795
3796 * whitespace.el: Doc fixes.
3797 (top-level): Don't add hooks here.
3798 (whitespace-running-emacs): Deleted.
3799 (timer): Don't require.
3800 (whitespace): Add back :version conditional on xemacs test.
3801 (whitespace-spacetab-regexp, whitespace-indent-regexp)
3802 (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
3803 (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
3804 (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
3805 Avoid specific xemacs test.
3806 (whitespace-global-mode): New option.
3807 (whitespace-global-mode): New command.
3808 (whitespace-unload-hook): New function.
3809
3810 * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
4836835a 3811 (Info-fontify-node, Info-goto-node, Info-mode-menu)
ad64a888
DL
3812 (Info-fontify-node): `Goto' goes to `Go to'.
3813 (Info-fontify-node): Add help-echo to xref links.
3814
1ef49fc6
EZ
38152000-10-15 Eli Zaretskii <eliz@is.elta.co.il>
3816
3817 * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
3818
8b7707e1
SM
38192000-10-15 Stefan Monnier <monnier@cs.yale.edu>
3820
b3b7f42f
SM
3821 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
3822 Use plist-get and allow :inherit.
3823
3824 * emacs-lisp/cl-macs.el (cl-do-arglist):
3825 Use plist-get and plist-member instead of memq.
3826
3c7fafc7
SM
3827 * emacs-lisp/ewoc.el (ewoc-location): New function.
3828 (ewoc-enter-after, ewoc-enter-before): Document return value.
3829 * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
3830 Don't need make-local-hook any more.
3831 (cvs-addto-collection): Return the new tin.
3832 (cvs-mode-insert): Jump to the new line.
3833
8b7707e1
SM
3834 * jit-lock.el (jit-lock-fontify-buffer): Remove.
3835
3836 * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
3837
3838 * font-lock.el (font-lock-syntactically-fontified): New var.
3839 (font-lock-fontify-syntactic-keywords-region): Use it.
3840 (font-lock-mode): Fix docstring. Don't need make-local-hook anymore.
3841
3842 * diff-mode.el (diff-find-file-name): Fix regexp.
3843
3844 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
3845 (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
3846
3847 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
3848 (sh-mode-syntax-table): Add punctuation syntax for < and >.
3849 (sh-mode): Don't make all vars local here.
3850 (sh-kw): Reformat.
3851 (sh-set-shell): Use dolist. Don't set indent-region-function.
3852 (sh-mode-syntax-table): Use pop.
3853 (sh-remember-variable): Use push.
3854 (sh-help-string-for-variable): Use memq.
3855 (sh-safe-backward-sexp): Remove.
3856 (sh-safe-forward-sexp): Add ARG.
3857 (sh-get-indent-info, sh-prev-stmt): Use it.
3858 (sh-prev-line): Simplify by using forward-comment.
3859 (sh-this-is-a-continuation): Simplify.
3860 (sh-learn-buffer-indent): Use dolist.
3861 (sh-do-nothing): Remove.
3862 (sh-set-char-syntax, sh-set-here-doc-region):
3863 Use inhibit-modification-hooks.
3864 (sh-name-style): Use mapcar and push.
3865 (sh-load-style): Use dolist.
3866 (sh-save-styles-to-buffer): Use with-current-buffer and pp.
3867 (sh-case, sh-while-getopts): Use propertize directly rather
3868 than sh-electric-rparen.
3869
38702000-10-14 Stefan Monnier <monnier@cs.yale.edu>
3871
3872 * textmodes/tex-mode.el: Require CL when compiling.
3873 (tex-mode-syntax-table): Init immediately.
3874 (tex-mode-map): Bind M-RET to latex-insert-item.
3875 (latex-mode): Set indent-line-function to latex-indent.
3876 (tex-common-initialization): Don't setup the syntax-table any more.
3877 (latex-insert-item): New skeleton.
3878 (tex-next-unmatched-end): Fix copy/paste braino.
4836835a 3879 (latex-syntax-after, latex-skip-close-parens, latex-down-list)
8b7707e1 3880 (latex-indent, latex-find-indent): New functions.
4836835a 3881 (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
8b7707e1
SM
3882 (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
3883 (tex-compilation-parse-errors): Use with-syntax-table.
3884
86b7fcbb
MB
38852000-10-15 Miles Bader <miles@gnu.org>
3886
3887 * font-lock.el (font-lock-comment-face): Change dark-background,
3888 color, non-tty, default to `chocolate1'.
3889
57a24508
JW
38902000-10-13 John Wiegley <johnw@gnu.org>
3891
3892 * eshell/esh-util.el (require): Added a missing `require' form,
3893 needed when compiling (for an ange-ftp macro definition).
3894
40ad3db4
DL
38952000-10-13 Dave Love <fx@gnu.org>
3896
3897 * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
3898
db460189
GM
38992000-10-13 Gerd Moellmann <gerd@gnu.org>
3900
b41c9501
GM
3901 * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc
3902 fix.
3903
4836835a 3904 * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
db460189
GM
3905 transparent -colors 8).
3906
3b5e21df
GM
39072000-10-13 Stephen Gildea <gildea@alum.mit.edu>
3908
3909 * time-stamp.el (time-stamp): Fixed bug in new multi-line code
3910 that breaks with old list format timestamps.
3911 (time-stamp-warn-inactive, time-stamp-old-format-warn)
3912 (time-stamp-count, time-stamp-conversion-warn): Improved doc
3913 strings.
3914
16908a3f
JW
39152000-10-13 John Wiegley <johnw@gnu.org>
3916
d7103dda
JW
3917 * align.el, pcomplete.el, calendar/timeclock.el,
3918 eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
3919
dace60cf 3920 * calendar/timeclock.el (timeclock-find-discrep): A fix to some
16908a3f
JW
3921 faulty math, where holiday hours were being computing as seconds.
3922
b6b70cda
JW
39232000-10-13 John Wiegley <johnw@gnu.org>
3924
3925 * desktop.el (desktop-buffer-modes-to-save): Added a global for
3926 specifying what "other" kinds of buffers should be saved. This
3927 used to be hard-coded.
3928 (desktop-buffer-misc-functions): A global for specifying how
3929 auxiliary data should be determined for special buffer types.
3930 (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
3931 instead of hard-coding the special buffer types.
3932 (desktop-save): Run `desktop-buffer-misc-functions' to gather
3933 auxiliary data, instead of hard-coding for Info buffers and dired.
3934 (desktop-buffer-info-misc-data): Aux function for determining Info
3935 buffer auxiliary info.
3936 (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
3937 (desktop-buffer-info): Changed this function to use the info
3938 gathered above.
3939 (desktop-create-buffer): Be a little more careful about what
3940 `minor-mode' means before calling it. This is important for some
3941 buffer types.
3942
8c6b1d83
JW
39432000-10-13 John Wiegley <johnw@gnu.org>
3944
3945 * eshell/esh-util.el: Added a global form which declares an
3946 autoload for `parse-time-string', if that function is not already
3947 defined, and if parse-time.el is available on the user's system.
3948
3949 * eshell/em-ls.el (eshell-ls-applicable): Extended this function
3950 to be aware of ange-ftp user info.
3951 (eshell-do-ls): Bind `ange-cache'. Also, use
3952 `eshell-file-attributes'.
3953 (eshell-ls-annotate): Use `eshell-file-attributes'.
3954 (eshell-ls-file): Made the user-id printing code a bit smarter.
3955
3956 * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
3957 allow identification of alias user ids in remote directories.
3958 It's manual, but there's no other way to know when the current
3959 user on the local machine, is also the owning user on the remote
3960 machine.
3961 (fboundp): Bind `ange-cache'.
3962 (eshell-directory-files-and-attributes): Re-organized the logic a
3963 bit to use `eshell-file-attributes' instead of `file-attributes'.
3964 The former is more sensitive to directories that are read via FTP,
3965 and knows how to use ange-ftp to determine full attribute
3966 information, instead of just the name and last modtime.
3967 (eshell-current-ange-uids): Return the current user id when in a
3968 remote directory.
3969 (eshell-parse-ange-ls): Parse a full directory listing that has
3970 been returned by ange-ftp.
3971 (eshell-file-attributes): This beefed up version of
3972 `file-attributes' is only special if the user is currently in a
3973 remote directory, in which case it does a lot of work to find out
3974 what the real attributes of a file are, as they appear on the
3975 remote machine. This makes usage of remote directories (i.e.,
3976 ange-ftp pathnames) much more useful. You can now use Eshell as a
3977 full-fledged FTP client, with much more manipulation ability than
3978 most other clients.
3979
3980 * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
3981 variable, which means that Eshell's du should always be preferred
3982 in remote directories.
3983 (eshell-shuffle-files): Use `eshell-file-attributes', rather than
3984 just `file-attributes'.
3985 (eshell-mvcp-template): Bind `ange-cache', to improve performance
3986 when reading remote directories. This is an Eshell-specific
3987 variable (not part of ange-ftp).
3988 (eshell/ln): Bind `ange-cache'.
3989 (eshell/du): Added some extra logic for determining when to use
3990 Eshell's du (which is slow), and when to use the external version
3991 (which may or may not exist).
3992
3993 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof): Call
3994 `eshell-interactive-process', rather than using
3995 `get-buffer-process', since backgrounded processes don't count in
3996 the context of this function's logic.
3997
3998 * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
3999 `forward-char', so that null strings are parsed correctly.
4000
87730e84 40012000-09-13 John Wiegley <johnw@gnu.org>
8c6b1d83
JW
4002
4003 * eshell/em-pred.el (eshell-pred-file-type,
4004 eshell-pred-file-links, eshell-pred-file-size): Use
4005 `eshell-file-attributes'. This is more correct over ange-ftp.
4006
4007 * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
4008 that remote file globbing is more efficient.
4009
4010 * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
4011 gathering the files and attributes within a directory.
4012
4013 * eshell/em-unix.el (eshell/cat): If any of the files passed on
4014 the command line is a special file (not a regular file, directory
4015 or symlink), always attempt to call the external version of cat.
4016
87730e84 40172000-09-13 John Wiegley <johnw@gnu.org>
8c6b1d83
JW
4018
4019 * eshell/esh-mode.el (eshell-find-tag): Corrections to the
4020 Eshell-friendly version of find-tag.
4021
1c7e37a9
MB
40222000-10-13 Miles Bader <miles@lsi.nec.co.jp>
4023
4836835a 4024 * image-file.el (image-file-name-extensions)
1c7e37a9
MB
4025 (image-file-name-regexps): Add autoload cookies.
4026
11a7f341
KH
40272000-10-13 Kenichi Handa <handa@etl.go.jp>
4028
4029 * international/mule-cmds.el (select-safe-coding-system): If FROM
4030 is string, show it in *Warning* buffer.
4031
8ddddcb0
EZ
40322000-10-13 Eli Zaretskii <eliz@is.elta.co.il>
4033
4034 * startup.el (normal-top-level): Use display-popup-menus-p instead
4035 of window-system.
4036 (command-line): Use display-graphic-p instead of window-system.
4037 (command-line-1): Use display-popup-menus-p and display-mouse-p
4038 instead of window-system.
4039
72200f89
SS
40402000-10-12 Sam Steingold <sds@gnu.org>
4041
4042 * tooltip.el (tooltip-use-echo-area): New user variable.
4043 (tooltip-show): Use it to choose between `x-show-tip' and `message'.
4044
8661c643
DL
40452000-10-12 Dave Love <fx@gnu.org>
4046
d0b40dc1
DL
4047 * recentf.el: Maintainer's checkdoc fixes.
4048
a622451f
DL
4049 * startup.el (normal-top-level-add-subdirs-to-load-path): Use
4050 character class, not ASCII when matching file names.
4051 (fancy-splash-head): Add trailing slash to URL.
4052 (command-line): Don't require XPM support for toolbar.
4053
8661c643
DL
4054 * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
4055 (cperl-invalid-face): Revert last change.
4056 (cperl-init-faces): Quote cperl-invalid-face.
4057
ef2ed8ab
KH
40582000-10-12 Kenichi Handa <handa@etl.go.jp>
4059
4060 * startup.el (fancy-splash-text): Remove superfluous quote.
4061
b0da379e
GM
40622000-10-12 Gerd Moellmann <gerd@gnu.org>
4063
dbeb499b
GM
4064 * startup.el (fancy-splash-screens): Don't add a pre-command hook.
4065 (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
4066 (command-line-1): Don't use fancy-splash-pending-command.
4067 (fancy-splash-screens-1): Goto point-min after inserting text.
4068
d861718a
GM
4069 * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
4070
b0da379e
GM
4071 * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
4072 instead of shared-lisp-mode-map.
4073
4fb2ad98
MB
40742000-10-12 Miles Bader <miles@lsi.nec.co.jp>
4075
1cb4393e
MB
4076 * faces.el (header-line): Change tty-variant to use underlining.
4077
4fb2ad98
MB
4078 * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
4079 (isearch-highlight): Restore lazy-isearch face properties at old
4080 position, and suppress them at new position.
4081 (isearch-dehighlight): Restore lazy-isearch face properties.
4082 (isearch-lazy-highlight-update): Add lazy-isearch overlays even
4083 over the real isearch overlay, but in that case, don't give it a
4084 face property. Use `push'.
4085
eb991b25
KH
40862000-10-12 Kenichi Handa <handa@etl.go.jp>
4087
4088 * man.el (Man-getpage-in-background): Fix previous change.
4089 Decode the process output only when we are in multibyte mode.
4090
a818c1c0
DL
40912000-10-11 Dave Love <fx@gnu.org>
4092
c990f53a
DL
4093 * info.el (Info-mode-menu): Fix some help.
4094 (info-tool-bar-map): Add entry for Info-last.
4095
a818c1c0
DL
4096 * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
4097 * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
4098 * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
4099 * toolbar/cut.xpm, toolbar/mail_compose.xpm:
4100 * toolbar/search-replace.xpm, toolbar/exit.xpm:
4101 * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
4102 * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
4103 * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
4104 * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
4105 * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
4106 Reduce colour requirements to 25 overall. (Probably wants
4107 revisiting from the originals to reduce further.)
4108
c1b096cb
EZ
41092000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
4110
4111 * hexl.el (hexlify-buffer): Bind coding-system-for-write to
4112 buffer-file-coding-system, instead of raw-text.
4113 (dehexlify-buffer): Bind coding-system-for-read to
4114 buffer-file-coding-system, instead of raw-text.
4115
5c8b7eaf
SS
41162000-10-11 Sam Steingold <sds@gnu.org>
4117
4118 * progmodes/cperl-mode.el (cperl-invalid-face): double-quote
4119 `underline' - fixes the bug introduced on 2000-09-21.
4120
2cfbdb7a
DL
41212000-10-11 Dave Love <fx@gnu.org>
4122
4123 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode): Avoid
4124 compiler warnings.
4125 (scheme-mode): Doc fix.
4126 (scheme-font-lock-keywords-1): Match `define-syntax'.
4127
41282000-10-11 Miles Bader <miles@lsi.nec.co.jp>
4b33f290
MB
4129
4130 * faces.el (frame-set-background-mode): Pay attention to saved
f161d539
MB
4131 face specs as well as default ones. Only do anything if the
4132 bg-mode or display-type has actually changed. Use `dolist'.
0c846ea2 4133 (region): Make dark-background `region' face less in-your-face.
4b33f290 4134
690ec649
SS
41352000-10-10 Sam Steingold <sds@gnu.org>
4136
4137 * chistory.el, ielm.el, ledit.el:
4138 * progmodes/inf-lisp.el, progmodes/scheme.el:
4139 Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
4140
3b95d6bb
SM
41412000-10-10 Stefan Monnier <monnier@cs.yale.edu>
4142
4143 * textmodes/texinfo.el: Update copyright and fix typo.
4144
4145 * desktop.el (desktop-modes-not-to-save): New var.
4146 (desktop-save-buffer-p): Use it.
4147 Also, obey desktop-buffers-not-to-save even for non-file buffers.
4148 (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
4149
d646c828
DL
41502000-10-10 Dave Love <fx@gnu.org>
4151
4152 * toolbar/tool-bar.el (tool-bar-add-item)
4153 (tool-bar-add-item-from-menu): Don't favour XPM icons on mono
4154 display.
4155
d646c828
DL
4156 * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
4157 * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
4158 * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
4159 * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
4160 * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
4161 * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
4162 * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
4163 * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
4164 * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
4165 * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
4166 the .xpms; probably need retouching.
4167
862a7e28
MB
41682000-10-10 Miles Bader <miles@lsi.nec.co.jp>
4169
4170 * subr.el (add-to-list): Add optional argument APPEND.
4171 * battery.el (display-battery): Use `add-to-list'.
4172
46e33aee
TTN
41732000-10-09 Thien-Thi Nguyen <ttn@gnu.org>
4174
930baf47
TTN
4175 * play/zone.el (zone-timer, zone-wc-tbl): Rework
4176 these vars as symbol properties.
2cfbdb7a
DL
4177 (zone, zone-when-idle, zone-leave-me-alone)
4178 (zone-pgm-whack-chars): Use new symbol properties.
930baf47 4179
5a430f9c
TTN
4180 * battery.el (display-battery): Doc spelling fix.
4181
46e33aee
TTN
4182 * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
4183 property.
4184
adf7d3a8
DL
41852000-10-09 Dave Love <fx@gnu.org>
4186
4187 * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
4188 has been initialized before calling tool-bar-setup.
c2156508 4189 (tool-bar-add-item-from-menu): Add autoload cookie.
adf7d3a8 4190
06a8c9f8
EZ
41912000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
4192
e4ca8f8c
EZ
4193 * menu-bar.el (send-mail-item-name): New function.
4194 (menu-bar-tools-menu) <compose-mail>: Use it to display the value
4195 of mail-user-agent in the menu. Don't display the "Send Mail"
4196 item if mail-user-agent is nil or its value is ignore.
4197 (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
4198 if read-mail-command is nil or its value is ignore.
4199
06a8c9f8
EZ
4200 * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
4201
7dbc9c8a
MB
42022000-10-09 Miles Bader <miles@gnu.org>
4203
29e0814b
MB
4204 * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
4205 Correct image size.
4206 * toolbar/left_arrow.xpm: Correct image size.
4207
7dbc9c8a
MB
4208 * jka-compr.el: Don't call `jka-compr-install' when loading (it
4209 will be done by the definition of `auto-compression-mode' if
4210 necessary. Move code to uninstall existing file-name handler
4211 before definition of `auto-compression-mode'.
4212
4213 * image-file.el (auto-image-file-mode): Move to the end of the
4214 file, because `define-minor-mode' actually calls the mode-function
4215 if the associated variable is non-nil, which requires that all
4216 needed functions be already defined.
4217
65b61266
MB
4218 * mouse.el (popup-menu): Balance parens.
4219
d6b8c85b
SM
42202000-10-08 Stefan Monnier <monnier@cs.yale.edu>
4221
4222 * mouse.el (popup-menu): Move the command call outside the loop
4223 so that popup-menu returns whatever the command returns.
4224
4225 * progmodes/etags.el: Docstring fixes. Maintainer line updated.
4226 (initialize-new-tags-table): Use run-hook-with-args-until-success.
4227 (find-tag): Use pop-to-buffer if switch-to-buffer failed.
4228 (tags-table-format-functions): Renamed from tags-table-format-hooks.
4229
4230 * vc.el (vc-version-diff): diff-switches can be a list.
4231 Use relative filenames for prettier output.
4232
46e33aee 4233 * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
d6b8c85b
SM
4234 (vc-post-command-functions): Remove old-VC compatibility code.
4235
4236 * newcomment.el (comment-indent-default): Autoload.
4237
4238 * font-lock.el (font-lock-defaults): Make buffer-local.
4239 (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
4240 (font-lock-choose-keywords):
4241 Ignore LEVEL unless KEYWORDS is a list of syms.
4242 (c-keywords, c++-keywords, objc-keywords, java-keywords):
4243 Don't wrap regexp-opt things in \(...\) unnecessarily.
4244
4245 * jit-lock.el: Don't require font-lock any more.
4246 (jit-lock-functions): Make buffer-local.
4247 (jit-lock-saved-fontify-buffer-function): Remove.
4248 (jit-lock-mode): Remove autoload cookie.
4249 Remove font-lock specific code.
4250 (jit-lock-unregister): Don't bother handling complex hooks any more.
4251 (jit-lock-refontify): New function.
4252 (jit-lock-fontify-buffer): Use it.
4253 (jit-lock-function-1): Replaced by jit-lock-fontify-now.
4254 (jit-lock-fontify-now): Renamed from jit-lock-function-1.
4255 Add optional args START and END.
4256 Never call font-lock-fontify-region directly.
4257 (jit-lock-function, jit-lock-stealth-fontify): Use it.
4258
4259 * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
4260
a30ed6ac
DL
42612000-10-08 Dave Love <fx@gnu.org>
4262
4e7c7ca9
DL
4263 * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
4264
4265 * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
4266
4267 * play/studly.el (studlify-region, studlify-word): Add autoload
4268 cookie.
4269
4270 * play/morse.el (morse-region, unmorse-region): Add autoload
4271 cookie.
4272
4273 * play/spook.el (spook-phrases-file): Use expand-file-name, not
4274 concat.
4275
4276 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
4277 insist on symbols starting with word syntax.
4278 (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
4279 (eval-defun-1): Doc fix.
4280 (indent-sexp): Use nconc to build up indent-stack.
4281
4282 * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
4283 Gnus with little use.
4284 (mail-setup-hook): Add mail-abbrevs-setup to options.
4285
968f7c4a
DL
4286 * recentf.el: Doc fixes.
4287
4288 * vcursor.el (vcursor-cs-binding): Remove compatibility code.
4289 Clean up remainder.
4290
4291 * timezone.el (timezone-parse-date): Doc fix. Fix regexps for (5)
4292 without timezone and (8) with timezone to enforce some whitespace.
4293 Simplify code somewhat.
4294
4295 * options.el (list-options): Doc that you should use customize.
4296
4297 * iswitchb.el (iswitchb-mode): Add :require.
4298
a30ed6ac
DL
4299 * info.el (Info-goto-node, Info-menu): Doc fix.
4300 (Info-mode-menu): Bind beginning-of-buffer, Info-edit
4301 (info-tool-bar-map): New variable.
4302 (Info-mode): Use it.
4303 (Info-edit-map): Define all in defvar.
4304 (speedbar-attached-frame): Avoid compiler warning.
4305
4306 * toolbar/tool-bar.el (tool-bar-map): Define it empty.
4307 (global-map): Bind [tool-bar] to a filtered map.
4308 (tool-bar-add-item): Remove MAP arg. Allow PBM icons.
4309 (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
4310 Allow PBM icons.
4311 (tool-bar-setup): Adjust calls of tool-bar-add-item.
4312
4313 * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
4314 * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
4315 * toolbar/right_arrow.xpm: New files. Renamed from tigert's
4316 icons, except up_arrow, which is left-arrow rotated.
4317
4318 * imenu.el (imenu-add-to-menubar): Fix last change.
4319
4e953aff
PB
43202000-10-08 Peter Breton <pbreton@ne.mediaone.net>
4321
4322 * generic-x.el (rul-generic-mode): Remove eval-when-compile
4323 statements. Suggested by Stefan Monnier <monnier@cs.yale.edu>.
4324
739e92a7
EZ
43252000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
4326
d20faceb
EZ
4327 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
4328 typos in doc strings.
4329
a640322e
EZ
4330 * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
4331 the doc strings how to customize Font Lock faces.
4332
739e92a7
EZ
4333 * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
4334 computing growth when dragging the header line.
4335
8be7408c
EZ
43362000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
4337
4338 * simple.el (kill-line): Doc fix.
4339
6fee86a3
MB
43402000-10-08 Miles Bader <miles@gnu.org>
4341
445a653e
MB
4342 * faces.el (secondary-selection): Make foreground visible on tty.
4343
6fee86a3
MB
4344 * jka-compr.el (auto-compression-mode): Move to the end of the
4345 file, because `define-minor-mode' actually calls the mode-function
4346 if the associated variable is non-nil, which requires that all
4347 needed functions be already defined.
4348 (with-auto-compression-mode): Add autoload cookie.
4349
a115794c
EZ
43502000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
4351
4352 * files.el (find-backup-file-name) [ms-dos]: If support for long
4353 file names is not available, behave as if version-control were set
4354 to never.
4355
b12e6de3
DL
43562000-10-07 Dave Love <fx@gnu.org>
4357
4358 * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
4359 (browse-url-gnome-moz): New function.
4360 (browse-url-browser-function): Use it.
4361 Suggested by Colin Walters <walters@cis.ohio-state.edu>.
4362
20b1d079
SM
43632000-10-07 Stefan Monnier <monnier@cs.yale.edu>
4364
4365 * indent.el (tab-always-indent): New var.
4366 (indent-for-tab-command): Use it.
39250ec3 4367
9ee45b2c 4368 * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
a115794c 4369 raise an error. This way it can still default to a sane value.
9ee45b2c 4370
8c6b1d83
JW
43712000-10-06 Stefan Monnier <monnier@cs.yale.edu>
4372
39250ec3
SM
4373 * startup.el (fancy-splash-screens): Use local rather than global map.
4374 Don't use `update-menu-bindings' any more.
4375 Get rid of assumptions about keymap representation.
4376
a23ccdf2
DL
43772000-10-06 Dave Love <fx@gnu.org>
4378
814299a7 4379 * textmodes/fill.el (sentence-end-double-space)
742c1822
DL
4380 (sentence-end-without-period): Doc fix.
4381 (adaptive-fill-regexp): Purecopy.
4382 (unjustify-current-line): Use line-end-position.
4383 (fill-individual-paragraphs-prefix): Use line-beginning-position.
4384
4385 * net/eudc-vars.el (eudc): Add :version, :link.
4386
39250ec3 4387 * international/mule-conf.el (file-coding-system-alist): Use \', not $.
742c1822
DL
4388
4389 * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
4390 Fix for define-minor-mode.
4391 (function-at-point): Alias to function-called-at-point.
4392
4393 * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
4394
4395 * simple.el (backward-word): Doc fix.
4396
a23ccdf2
DL
4397 * image-file.el (image-file-name-regexp): image-file-regexps ->
4398 image-file-name-regexps.
742c1822 4399 (image-file-name-extensions): Add pbm.
a23ccdf2 4400
39250ec3
SM
44012000-10-06 Stefan Monnier <monnier@cs.yale.edu>
4402
4403 * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
4404 and add filename to the names so that diff-mode can jump to source.
4405
4406 * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
814299a7 4407 (tex-font-lock-keywords, tex-font-lock-keywords-2)
39250ec3
SM
4408 (tex-font-lock-keywords-1): Remove.
4409 (font-lock-turn-on-thing-lock): Use jit-lock-register.
4410 (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
9ee45b2c
SM
4411 (font-lock-default-fontify-region):
4412 Expand beg..end correctly when just following a multiline region.
39250ec3
SM
4413 (font-lock-fontify-anchored-keywords):
4414 Include the anchor text as part of the multiline.
4415
8d5dfacd
GM
44162000-10-06 Gerd Moellmann <gerd@gnu.org>
4417
4418 * loadup.el (toplevel): Load `loaddefs' before `help' because the
4419 latter needs the autoloaded define-minor-mode macro during the
4420 bootstrap.
4421
4422 * startup.el (command-line): For now, activate tool-bar-mode only
4423 if XPM images are supported.
4424
4425 * mouse.el (mouse-drag-header-line): Don't allow resizing a
4426 window by dragging a header-line at the top of the frame; that's
4c19fbce 4427 confusing because the header-line doesn't move.
8d5dfacd
GM
4428 (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
4429 of treating the event as a list. Some cleanup.
4430
f69aad2b 44312000-10-06 Miles Bader <miles@gnu.org>
8fb051f9 4432
f69aad2b
MB
4433 * simple.el (display-message-or-buffer): New function.
4434 (shell-command-on-region): Use `display-message-or-buffer'.
06933804 4435
09cb7646
MB
4436 * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
4437 docstring parts.
4438
814299a7 4439 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
8fb051f9
MB
4440 (smbclient-prompt-regexp): Add usage note to doc string.
4441 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
4442 (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
4443 Use add-hook for adding the comint filter function, and only do so
4444 if it's not already in the global hook list.
4445 (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
4446 to `make-local-variable'.
4447 (nslookup-font-lock-keywords): Remove prompt entry.
4448 (nslookup): Don't set the process-filter.
4449 (finger): Exit the loop correctly when the regexps list runs out.
4450 (ftp, smbclient, smbclient-list-shares):
4451 Set the real major mode immediately, not after execing.
4452 Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
4453
4454 * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
4455
4c19fbce
SM
44562000-10-05 Stefan Monnier <monnier@cs.yale.edu>
4457
4458 * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
4459
4460 * which-func.el (which-func-format): Remove spurious space.
4461 (which-func-mode): Don't make it permanent-local.
4462 (which-func-ff-hook): Allow which-func-maxout to be nil.
4463 (which-func-update): Simplify a bit. Only run if which-func-mode is t.
4464 (which-func-mode): Simplify.
4465 Use post-command-idle-hook rather than post-command-hook.
4466 Go through all buffers and update their state.
4467 (which-function): Also try add-log-current-defun-function.
4468
4469 * vc.el (with-vc-properties): Use conses rather than length-2 lists.
4470 (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
4471 Update call to with-vc-properties accordingly.
4472 (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
4473 (vc-revert-buffer): More careful about window selection and deletion.
4474 (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
4475
4476 * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
4477 (cvs-retrieve-revision): Reuse a pre-existing buffer.
4478 (cvs-dired-action): Change the default to quickdir.
4479
4480 * newcomment.el (comment-indent): Delegate to indent-according-to-mode
4481 if comment-indent-function returns nil.
4482 (comment-indent-default): New function.
4483 (comment-indent-function): Use it and document the new semantics.
4484
4485 * image-file.el: Docstring fixes.
4486
4487 * help.el (help-xref-on-pp): Use match-string.
4488 (describe-variable): New arg BUFFER.
4489 Store the current buffer in the help-xref-stack.
4490 (temp-buffer-resize-mode): Use define-minor-mode.
4491
4492 * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
4493 consistently with its docstring.
4494 Set jit-lock-first-unfontify-pos in an idempotent way.
4495 (jit-lock-register): Autoload and add arg CONTEXTUAL.
4496
542c6552
GM
44972000-10-05 Alex Schroeder <alex@gnu.org>
4498
4499 * sql.el (sql-mysql-options): New variable.
4500 (sql-mysql): Use it.
4501
a3489ece
MB
45022000-10-05 Miles Bader <miles@lsi.nec.co.jp>
4503
77f6105c
MB
4504 * image.el (image): New group.
4505
814299a7 4506 * smerge-mode.el (smerge-mine-face, smerge-other-face)
a3489ece
MB
4507 (smerge-base-face, smerge-markers-face): Add dark-background variants.
4508
3478046b
PB
45092000-10-04 Peter Breton <pbreton@ne.mediaone.net>
4510
4511 * net/net-utils.el (nslookup-font-lock-keywords)
814299a7 4512 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
3478046b
PB
4513 Ignore the value of wqindow-system; always define keywords
4514
22aca186
KH
45152000-10-05 Kenichi Handa <handa@etl.go.jp>
4516
4517 * startup.el (fancy-splash-screens): Remove the code for
4518 debugging; `(trace-to-stderr "EXITTT\n")'.
4519
55d5d717
MB
45202000-10-05 Miles Bader <miles@gnu.org>
4521
4522 * diff-mode.el (diff-goto-source): Update call to
4523 `diff-hunk-status-msg' to reflect new REV variable.
4524
41fa7178
SM
45252000-10-04 Stefan Monnier <monnier@cs.yale.edu>
4526
4527 * progmodes/icon.el (icon-mode):
4528 Don't gratuitously override the default for comment-column.
4529
4530 * vc-hooks.el (vc-mode-line): Fix interactive spec.
4531
4532 * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
4533 (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
4534 (jit-lock-functions): New var.
4535 (jit-lock-function-1): Use it if non-nil.
4536 Don't switch the syntax-table. Don't set parse-sexp-lookup-properties.
4537 Set the `fontified' property before doing the fontification to avoid
4538 repeatedly going through the same error.
4539 Don't turn errors into messages.
4540 (jit-lock-register, jit-lock-unregister): New functions.
4541
4542 * dired.el (dired-mark-pop-up): Turn comment into docstring.
4543 Use with-current-buffer.
4544
4545 * dired-aux.el (dired-do-create-files, dired-kill-tree):
4546 Turn comment into docstring.
4547
4548 * apropos.el (apropos-mode): Use define-derived-mode.
4549
3dc78168
GM
45502000-10-04 Gerd Moellmann <gerd@gnu.org>
4551
4552 * startup.el (fancy-splash-pending-command): New variable.
4553 (fancy-splash-pre-command): New function.
4554 (fancy-splash-screens): Rewritten.
4555 (command-line-1): If fancy-splash-pending-command is set, call it
4556 interactively.
4557
dae9dc56
DL
45582000-10-04 Dave Love <fx@gnu.org>
4559
4560 * toolbar/tool-bar.el (tool-bar-setup): New function.
4561 (tool-bar-mode): Use it.
4562
4563 * subr.el (substitute-key-definition): Doc fix.
4564 (play-sound-file): New command.
4565
3388f0a5
AS
45662000-10-04 Andre Spiegel <spiegel@gnu.org>
4567
814299a7 4568 * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
3388f0a5
AS
4569 vc-version-backup-file-name): New functions.
4570
4571 * files.el (basic-save-buffer): Call vc-before-save before saving.
814299a7
MB
4572
4573 * vc-cvs.el (vc-cvs-make-version-backups): Return t if
3388f0a5
AS
4574 vc-cvs-stay-local-p.
4575
4576 * vc.el (vc-revert-buffer): Handle empty diff properly.
4577 (vc-version-backup-file): New function.
4578 (vc-checkout): Create a version backup if necessary.
4579 (vc-checkin): If a version backup file exists, delete it.
4580 (vc-version-diff): Diff locally using version backups, if available.
4581 (vc-revert-file): If there's a version backup, revert locally.
4582 (vc-transfer-file): Use version backup for base version, if
4583 available. If not, ask for confirmation whether to get it from the
4584 server. Update mode line before check-in.
4585
ebd4825d
DL
45862000-10-04 Dave Love <fx@gnu.org>
4587
4588 * toolbar/tool-bar.el (tool-bar-setup): New function.
4589 (tool-bar-mode): Use it.
4590
1b24f4b7
PB
45912000-10-04 Peter Breton <pbreton@ne.mediaone.net>
4592
3dc78168 4593 * net/net-utils.el (nslookup-font-lock-keywords)
814299a7 4594 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
8b7187d8
PB
4595 Only set if window-system is non-nil
4596 (net-utils-run-program): Returns buffer.
4597 (network-connection-reconnect): Added this function.
4598
814299a7
MB
4599 * generic.el:
4600 Incorporates extensive cleanup and docfixes by
9a7f629d
PB
4601 Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
4602 Uses cl compile-time macros.
3dc78168
GM
4603 (generic-mode-name, generic-comment-list)
4604 (generic-keywords-list, generic-font-lock-expressions)
4605 (generic-mode-function-list, generic-mode-syntax-table):
9a7f629d
PB
4606 Removed variables.
4607 (generic-mode-alist): Renamed to generic-mode-list.
4608 (generic-find-file-regexp): Default changed to "^#".
4609 (generic-read-type): Uses completing read on generic-mode-list.
4610 (generic-mode-sanity-check): removed this function.
4611 (generic-add-to-auto-mode): Removed this function
3dc78168 4612 (generic-mode-internal): Bind mode-specific definitions
9a7f629d
PB
4613 into function instead of putting them in alist.
4614 (generic-mode-set-comments): Reworked extensively.
4615 (generic-mode-find-file-hook): Simplified regexp searching
814299a7 4616 (generic-make-keywords-list): Omit extra pair of parens
9a7f629d 4617
814299a7 4618 * find-lisp.el (find-lisp-find-files-internal):
1b24f4b7
PB
4619 Make sure directory name ends with "/".
4620
814299a7 4621 * generic-x.el (apache-conf-generic-mode):
1b24f4b7
PB
4622 Regexp now allows leading whitespace.
4623 (rc-generic-mode): Added eval-when-compile
4624 around generic-make-keywords-list.
4625 Deleted duplicate regexp
4626 (rul-generic-mode): Added eval-when-compile
4627 around generic-make-keywords-list.
4628 (etc-fstab-generic-mode): New generic mode.
4629 (rul-generic-mode): Removed one eval-when-compile
814299a7 4630 which caused a max-specpdl-size exceeded error.
1b24f4b7 4631
a7bf5cf3
MB
46322000-10-04 Miles Bader <miles@gnu.org>
4633
4634 * simple.el (minibuffer-temporary-goal-position): New variable.
4635 (next-history-element): Try to keep the position of point in the
4636 input string constant.
4637
4638 * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
4639 (dired-do-create-files): If there's only one file, pass it in as
4640 the DEFAULT arg to dired-mark-read-file-name.
4641
ce1087a9
SM
46422000-10-03 Stefan Monnier <monnier@cs.yale.edu>
4643
4644 * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
4645 (diff-goto-source): Be smarter when choosing REVERSE or not.
4646
4647 * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
4648 (texinfo-mode-menu): Add an explicit shortcut for update all.
4649
0e41e1d6
AS
46502000-10-03 Andre Spiegel <spiegel@gnu.org>
4651
814299a7 4652 * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
858f7cb4
AS
4653 factorize backend-specific code cleanly (this was essentially
4654 conceived by Stefan Monnier).
4655 (vc-unregister): Function removed.
814299a7 4656 (vc-revert-file): New function.
858f7cb4
AS
4657 (vc-revert-buffer): Delegate some of the work to it.
4658
0e41e1d6
AS
4659 * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
4660 default branch unconditionally.
4661 (vc-rcs-set-default-branch): New function.
4662 (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
4663 (vc-rcs-checkin): If an appropriate default branch has been set,
4664 force creation of that branch.
858f7cb4
AS
4665 (vc-rcs-receive-file): Rewritten to contain only backend-specific
4666 code (as suggested by Stefan Monnier).
0e41e1d6 4667
01c86c56
GM
46682000-10-02 Gerd Moellmann <gerd@gnu.org>
4669
45c477b4
GM
4670 * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
4671 highlighting overlay with a different face over the overlay
4672 isearch uses to highlight the current match because that can lead
4673 to bad face combinations.
4674
01c86c56
GM
4675 * loadup.el (toplevel): Load faces before isearch.
4676
4677 * isearch.el (isearch-faces): New custom group.
4678 (isearch): New defface; was already tested for in the code.
4679 (isearch-lazy-highlight-face): Changed to defface from defcustom.
4680 (isearch-highlight): Always use face `isearch'.
4681
944425c0
DL
46822000-10-02 Dave Love <fx@gnu.org>
4683
4684 * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
4685 unused vars. Treat byte-constant2 like byte-constant. Fix bogus
4686 comparison of opcode with operand.
4687
2a099bcc
MB
46882000-10-03 Miles Bader <miles@gnu.org>
4689
4690 * play/yow.el (yow): Don't display multi-line quotations in a *Help*
4691 buffer, since the echo area will now grow to accommodate them.
4692
4300ecb8
AS
46932000-10-02 Andre Spiegel <spiegel@gnu.org>
4694
4695 * vc-hooks.el (vc-registered): If FILE used to be registered under
4696 a certain backend, try that one first.
4697
814299a7 4698 * vc.el (vc-responsible-backend): Undo the previous change in the
4300ecb8
AS
4699 argument list. Handle multiple backends correctly.
4700 (vc-find-new-backend): Function removed.
4701 (vc-register): Use vc-responsible-backend, as before.
4702 (vc-next-action-on-file): Do use vc-registered, not vc-backend.
4703
64e6cc18
GM
47042000-10-02 Gerd Moellmann <gerd@gnu.org>
4705
4706 * startup.el (fancy-splash-head): Change message below the
4707 logo.
4708
00df919e
MB
47092000-10-02 Miles Bader <miles@lsi.nec.co.jp>
4710
4711 * diff-mode.el (diff-goto-source): Emit a status message.
4712 (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
4eaa6852 4713 (diff-test-hunk): Fix doc string.
00df919e
MB
4714 (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
4715 (diff-advance-after-apply-hunk): New variable.
4eaa6852 4716 (diff-apply-hunk): Don't return a value.
00df919e 4717
ceec5a0c
SM
47182000-10-01 Stefan Monnier <monnier@cs.yale.edu>
4719
4720 * vc.el (vc-editable-p): Minor optimization.
4721 (edit-vc-file, vc-next-action-on-file): Don't use find-file.
4722 (vc-find-new-backend): New function split from vc-responsible-backend.
4723 (vc-register): Use it.
4724 (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
4725 (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
4726 (vc-default-unregister, vc-revert-buffer): Docstring fix.
4727 (vc-clear-headers): Don't use find-file.
4728 (vc-revert-buffer): Use `and' again (must have been a braino).
4729 (vc-switch-backend): Only prompt if requested.
4730 Short circuit if nothing is to be done.
4731 Don't use vc-resynch-buffer which could lose unsaved editing.
4732 (vc-default-receive-file): Update call to vc-unregister.
4733 (with-vc-file, vc-next-action-on-file):
4734 Use vc-backend rather than vc-registered.
4735 (vc-next-action-on-file): Use intern-soft.
4736 Deal with read-only *vc-diff* buffer.
4737 (vc-transfer-file): Docstring fix.
4738
4739 * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
4740 (vc-rcs-receive-file): Avoid with-vc-properties.
4741 Update call to vc-unregister.
4742 Use constant `RCS' rather than (dynamically bound) var `backend'.
4743
4ad5da8f
AS
47442000-10-01 Andre Spiegel <spiegel@gnu.org>
4745
814299a7 4746 * vc.el (vc-next-action-on-file): Update mode line only if file
4ad5da8f
AS
4747 is visited.
4748 (vc-start-entry): New argument initial-contents. Don't visit the file
4749 if it isn't already visited. Brought documentation up-to-date.
814299a7
MB
4750 (vc-next-action, vc-register): Updated calls to vc-start-entry.
4751 (vc-checkin): New optional arg initial-contents, which is passed to
4ad5da8f
AS
4752 vc-start-entry.
4753 (vc-finish-logentry): Make sure to bury log buffer only if there
4754 really is one. Call `vc-resynch-buffer' on log-file, not
4755 buffer-file-name.
4756 (vc-default-comment-history, vc-default-wash-log): New functions.
4757 (vc-index-of): Removed.
4758 (vc-transfer-file): Make do without the above.
4759 (vc-default-receive-file): Call comment-history unconditionally. Pass
4760 the resulting string to vc-checkin, instead of inserting it into the
4761 comment ring.
4762
4763 * vc-rcs.el (vc-rcs-receive-file): Call comment-history
4764 unconditionally. Use the comments as initial contents of the log
814299a7 4765 entry buffer. Document the trick to force branch creation with no
4ad5da8f
AS
4766 changes.
4767
aa0c3dca
MB
47682000-10-01 Miles Bader <miles@gnu.org>
4769
4770 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
4771 `recenter' with an arg to prevent redrawing the display.
4772
d5f5a2c5
SM
47732000-09-30 Stefan Monnier <monnier@cs.yale.edu>
4774
4775 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
4776
4777 * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
4778
814299a7 4779 * progmodes/c-mode.el (c-mode):
d5f5a2c5
SM
4780 Don't gratuitously override the default for comment-column.
4781
4782 * textmodes/tex-mode.el (latex-metasection-list): New var.
4783 (latex-imenu-create-index): Use it.
4784 Move the regexp construction outside loops (and use push).
814299a7 4785 (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
d5f5a2c5
SM
4786 (tex-font-lock-keywords): Moved from font-lock.el.
4787 (tex-comment-indent): Remove.
4788 (tex-common-initialization): Don't set comment-indent-function.
4789 (latex-block-default): New var.
4790 (tex-latex-block): Use it to provide a default choice.
4791 Add any unknown choice to latex-block-names.
4792 Insert [...] after {...}.
4793 (tex-last-unended-begin): Simplify regexp.
4794 (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
4795 (latex-forward-sexp-1, latex-forward-sexp): New functions.
4796 (latex-mode): Set forward-sexp-function.
4797
4798 * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
4799 Add regexp for @ignore ... @end ignore.
4800 (texinfo-heading-face): New face.
4801 (texinfo-font-lock-keywords): Use it.
4802 (texinfo-mode-menu): New menu.
4803 (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
4804 New functions.
4805 (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
814299a7 4806 (texinfo-section-types-regexp, texinfo-section-level-regexp)
d5f5a2c5
SM
4807 (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
4808 Remove declaration.
4809 (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
4810
4811 * delsel.el (delete-selection-mode): Use define-minor-mode.
4812
4813 * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
4814
48152000-09-29 Stefan Monnier <monnier@cs.yale.edu>
4816
4817 * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
4818
8a5506f2
GM
48192000-09-30 Gerd Moellmann <gerd@gnu.org>
4820
068127d6
GM
4821 * replace.el (keep-lines-read-args): New function.
4822 (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
4823 read arguments interactively. Add parameters RSTART and REND.
4824 Operate on the active region in Transient Mark mode.
4825
d777bb8f
GM
4826 * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
4827
8a5506f2
GM
4828 * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
4829 (authors-obsolete-files-regexps): New variable.
4830 (authors-add): Don't record changes in obsolete files.
4831
3fa87bfc
SM
48322000-09-29 Stefan Monnier <monnier@cs.yale.edu>
4833
4834 * autoinsert.el (auto-insert-mode): Use define-minor-mode.
4835
4836 * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
4837 (comment-indent): Make sure there's a space between code and comment.
4838 Shift comments left to avoid going past fill-column.
4839
f02149ce
GM
48402000-09-29 Gerd Moellmann <gerd@gnu.org>
4841
4842 * startup.el (startup-echo-area-message): New function.
4843 (display-startup-echo-area-message): Use it.
4844 (fancy-splash-screens): Rewritten to use keymaps and a timer.
4845 (fancy-splash-default-action): New function.
4846 (fancy-splash-screens-1): New function.
4847 (fancy-splash-head): Put a help-echo and a keymap under the image.
4848
a3ef6569
SM
48492000-09-29 Stefan Monnier <monnier@cs.yale.edu>
4850
4851 * diff-mode.el (diff-add-log-file-name): Remove.
4852 (diff-mode): Use add-log-buffer-file-name-function.
4853
4854 * add-log.el (find-change-log): New arg BUFFER-FILE.
4855 (add-log-file-name): Obey add-log-file-name-function.
4856 (add-log-buffer-file-name-function): New var.
4857 (add-change-log-entry): Use it.
4858
75e5b373
MB
48592000-09-29 Miles Bader <miles@gnu.org>
4860
4861 * image-file.el (image-file-name-extensions): New variable.
4862 (image-file-name-regexps): Renamed from `image-file-regexps'.
4863 New default value is nil. Call `auto-image-file-mode'.
4864 (image-file-name-regexp): New function.
4865 (auto-image-file-mode): New minor mode.
4866 (insert-image-file): Don't make conditional on the image-file
4867 handler being enabled.
4868 (image-file-handler): Make the call here conditional instead.
4869 (set-image-file-handler-enabled, enable-image-file-handler)
4870 (disable-image-file-handler): Functions removed.
4871
4872 * emacs-lisp/authors.el (authors-print): Rephrase many-files
4873 string.
4874
de6e1f7c
GM
48752000-09-29 Gerd Moellmann <gerd@gnu.org>
4876
4877 * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
4878 it's a function from CL.
4879 (latex-imenu-create-index): Replace eval-when-compile with progn
4880 because latex-section-alist is not bound while compiling.
4881
d8c201f5
SM
48822000-09-28 Stefan Monnier <monnier@cs.yale.edu>
4883
4884 * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
4885 (outline-mode): Use define-derived-mode.
4886
814299a7 4887 * progmodes/perl-mode.el (perl-mode):
d8c201f5
SM
4888 * progmodes/awk-mode.el (awk-mode):
4889 * progmodes/asm-mode.el (asm-mode):
4890 Don't gratuitously override the default for comment-column.
4891
4892 * emacs-lisp/lisp.el (lisp-complete-symbol):
4893 Distinguish the let-binding case from the funcall case.
4894 (forward-sexp-function): New variable.
4895 (forward-sexp): Use it.
4896
4897 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
4898 (easy-mmode-defmap): Remove the now useless autoload.
4899
4900 * time.el (display-time-mode): Use define-minor-mode.
4901
4902 * subr.el (add-minor-mode): Don't eval NAME.
4903 Don't depend on the presence of TOGGLE-FUN for any special behavior.
4904 Use if rather than cond.
4905
4906 * simple.el (read-expression-map): Define more properly.
4907 (comment-indent-hook): Remove.
4908 (string-to-syntax): Bug fix.
4909
4910 * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
4911 (cvs-ediff-diff): Fix typo.
4912 (cvs-revert-if-needed): Don't bother preserving read-only.
4913
4914 * paren.el (show-paren-mode): Use define-minor-mode.
4915
4916 * jka-compr.el (auto-compression-mode): Use define-minor-mode.
4917 (toggle-auto-compression): Remove.
4918 (jka-compr-build-file-regexp): Remove useless grouping.
4919
4920 * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
4921 Avoid user-reserved bindings.
4922 (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
4923 (diff-header-face): Revert to grey85.
4924
4925 * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
4926
4927 * complete.el (partial-completion-mode) <defcustom>: Remove.
4928 (partial-completion-mode): Use define-minor-mode.
4929 (PC-do-completion): Understand `completion-auto-help = delay'
4930 to mean to popup the completion buffer only the second time.
814299a7 4931 (PC-include-file-all-completions, PC-include-file-all-completions)
d8c201f5
SM
4932 (PC-include-file-all-completions): Don't quote lambda.
4933
4934 * comint.el (comint-mode-hook): Docstring fix.
4935 (comint-mode): Use define-derived-mode.
4936 (comint-mode-map): Remove obsolete comment.
4937 (make-comint): Minor stylistic change.
4938 (comint-insert-clicked-input): Be more careful to find the overlay.
4939 Use this-command-keys rather than hardcoding mouse-2.
4940
4941 * font-lock.el: Replace confusing (,@ with ,
4942 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
4943 Don't use regexp-opt-depth. Spice up the regexp for args.
4944 Don't distinguish between cmds that can take an opt arg or not.
4945 Use `append' and `prepend' rather than `keep'.
4946
4947 * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
4948 (latex-outline-regexp): New var.
4949 (latex-outline-level): New fun.
4950 (latex-section-alist): New var.
4951 (latex-imenu-create-index): Use it. Use `push' as well.
4952 (tex-shell-map): Initialize it properly.
4953 (tex-mode): Minor stylistic change.
4954 (plain-tex-mode): Use define-derived-mode.
4955 (latex-mode): Use define-derived-mode.
4956 Construct the paragraph regexps in a more readable way.
4957 Set the buffer-local outline-{level,regexp} vars.
4958 (slitex-mode): Derive from latex-mode.
4959 (tex-common-initialization): Don't kill-all-vars anymore.
4960 Add setting for comment-add and font-lock-defaults.
4961 (tex-start-shell): Use with-current-buffer and don't re-init keymap.
4962 (tex-main-file): New fun. Obey TeX-master as well and remove `.tex'.
4963 (tex-start-tex): New arg DIR (and send a chdir command for it).
4964 Also display the shell buffer and save it in tex-last-buffer-texed.
4965 (tex-region): Use expand-file-name rather than concat.
4966 Remove code made useless by changes in tex-start-tex.
4967 (tex-file): Use tex-main-file and adapt to new tex-start-tex.
4968
4969 * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
4970
ff398532
DL
49712000-09-28 Dave Love <fx@gnu.org>
4972
4973 * eshell/eshell.el (eshell) <defgroup>: Add :version.
4974
f9415d5b
GM
49752000-09-28 Gerd Moellmann <gerd@gnu.org>
4976
4977 * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
4978 `append'.
4979
fa003899
SM
49802000-09-28 Stefan Monnier <monnier@cs.yale.edu>
4981
4982 * info.el (Info-extract-pointer): Undo last change.
4983 Instead, fix the position of the `bound' arg to re-search-backward.
4984
49852000-09-27 Stefan Monnier <monnier@cs.yale.edu>
4986
4987 * info.el (Info-extract-pointer):
4988 Widen more carefully, to avoid finding pointers in other nodes.
4989 (Info-index): Use push.
4990
f9415d5b 49912000-09-27 Gerd Moellmann <gerd@gnu.org>
6f22f1ad
GM
4992
4993 * frame.el (set-frame-font): Remove call to obsolete function
4994 frame-update-faces.
4995 (set-foreground-color, set-background-color): Likewise for
4996 frame-update-face-colors.
4997
5538b8ba
MB
49982000-09-27 Miles Bader <miles@gnu.org>
4999
5000 * image-file.el: New file.
5001
60536eea
GM
50022000-09-27 Gerd Moellmann <gerd@gnu.org>
5003
5b551d58
GM
5004 * frame.el (frame-notice-user-settings): Don't call
5005 frame-update-faces, which is a no-op now.
814299a7 5006
60536eea
GM
5007 * ediff-wind.el (ediff-control-frame-parameters): Add zero
5008 tool-bar-lines.
5009
36f1966f
DL
50102000-09-27 Dave Love <fx@gnu.org>
5011
5012 * mouse.el: Fix last change.
5013
c5785b73
MB
50142000-09-27 Miles Bader <miles@lsi.nec.co.jp>
5015
5016 * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
5017
672172d9
KH
50182000-09-22 Kenichi Handa <handa@etl.go.jp>
5019
5020 * international/quail.el (quail-help): The output message is
5021 improved.
5022
4653b4ea
DL
50232000-09-26 Dave Love <fx@gnu.org>
5024
5025 * mouse.el (popup-menu): If POSITION is nil, set it using
5026 mouse-position.
5027
63900fcf
SS
50282000-09-25 Sam Steingold <sds@gnu.org>
5029
5030 * net/browse-url.el (browse-url-file-url): Check for null maps.
5031
cd3b81be
GM
50322000-09-26 Gerd Moellmann <gerd@gnu.org>
5033
876512ab 5034 * frame.el (frame-notice-user-settings): Don't add a
fa003899 5035 tool-bar-lines frame parameter to default-frame-alist in batch mode.
814299a7 5036
fa003899
SM
5037 * frame.el (frame-notice-user-settings):
5038 Make tool-bar-mode and default-frame-alist consistent.
77072ab1 5039
cd3b81be
GM
5040 * toolbar/tool-bar.el (tool-bar-help): New function.
5041
d8b4516f
GM
50422000-09-25 Gerd Moellmann <gerd@gnu.org>
5043
6567e9b5
GM
5044 * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
5045 current-load-list in top-level forms. Else this leaks a cons cell
5046 every time a defun is called.
63900fcf 5047
d8b4516f 5048 * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
63900fcf 5049
a461758e
DL
50502000-09-25 Dave Love <fx@gnu.org>
5051
7df6adc3
DL
5052 * startup.el (fancy-splash-head): Check XPM is available.
5053
a461758e
DL
5054 * autoinsert.el (auto-insert): Doc fix.
5055 (auto-insert-alist): Following GNU notices, don't say `copyright
5056 _by_'. Use line-beginning-position.
5057 (auto-insert): Check buffer-file-name is non-nil before use.
5058
b11af2dd
GM
50592000-09-25 Gerd Moellmann <gerd@gnu.org>
5060
5061 * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
5062 starting with `@def' or `@multitable', in addition to ones
5063 specified by the user in auto-fill-inhibit-regexp.
5064
5f9f981b
GM
50652000-09-25 Markus Rost <rost@math.ohio-state.edu>
5066
5067 * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
5068 rmail-dont-reply-to-names matches the empty string.
63900fcf 5069
8ff16b4e
GM
50702000-09-25 Gerd Moellmann <gerd@gnu.org>
5071
63900fcf 5072 * startup.el (command-line-1, fancy-splash-text): Change the
8ff16b4e
GM
5073 text to sound more friendly.
5074
9b4a7800
TTN
50752000-09-23 Thien-Thi Nguyen <ttn@gnu.org>
5076
5077 * progmodes/hideshow.el: Update author email address.
5078 Generally, sync w/ maintainer version 5.22.
9b4a7800
TTN
5079 (hs-hide-all-non-comment-function): New var.
5080 (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
5081 (hs-hide-all): Use `hs-hide-all-non-comment-function'.
5082 (hs-show-region): Delete this command.
5083 (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
5084
4c7c1f3f
DL
50852000-09-22 Dave Love <fx@gnu.org>
5086
5087 * hl-line.el (hl-line-overlay): Don't make it buffer-local.
5088 (hl-line-highlight): Specify buffer when moving overlay.
5089
5090 * progmodes/fortran.el (fortran-mode): Locally set
5091 normal-auto-fill-function.
5092 (fortran-auto-fill-mode): Just alias to auto-fill-mode.
5093 (fortran-mode-map): Adjust auto-fill menu entry.
5094
13f93dee
GM
50952000-09-22 Gerd Moellmann <gerd@gnu.org>
5096
36eb0a91
GM
5097 * vc-rcs.el (toplevel): Require `vc' when compiling.
5098
fa003899 5099 * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
13f93dee 5100
36a03bf9
AS
51012000-09-22 Andre Spiegel <spiegel@gnu.org>
5102
9b4a7800 5103 * vc.el (vc-switch-backend): Signal an error if the file is not
36a03bf9
AS
5104 registered under the new backend.
5105
9b4a7800 5106 * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
36a03bf9
AS
5107 without explicit revision number.
5108
6e4e8a3b
SM
51092000-09-21 Stefan Monnier <monnier@cs.yale.edu>
5110
5111 * diff-mode.el (diff-file-header-face): Reset to its previous value.
5112 (diff-hunk-text): Correctly use offsets rather than buffer-positions.
5113 (diff-xor): New function.
5114 (diff-find-source-location): Use it. Fix a stupid name clash.
5115 (diff-hunk-status-msg): New function.
5116 (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
5117 (diff-test-hunk): Use diff-find-source-location.
5118 (diff-goto-source): Favor the `reverse'.
5119 (diff-hunk-text): Properly handle one-sided context diffs.
5120 (diff-apply-hunk): When done, advance to the next hunk.
5121
1b24b888
GM
51222000-09-21 Gerd Moellmann <gerd@gnu.org>
5123
623a0aae
GM
5124 * startup.el (command-line): If frame was created with a non-zero
5125 tool-bar-lines parameter, switch tool-bar-mode on.
9b4a7800 5126
1b24b888
GM
5127 * add-log.el (change-log-date-face, change-log-name-face)
5128 (change-log-email-face, change-log-file-face)
5129 (change-log-list-face, change-log-conditionals-face)
fa003899
SM
5130 (change-log-function-face, change-log-acknowledgement-face):
5131 New faces, inheriting from font-lock faces.
1b24b888 5132 (change-log-font-lock-keywords): Use them.
9b4a7800 5133
93b3a1c8
DL
51342000-09-21 Dave Love <fx@gnu.org>
5135
80585273
DL
5136 * progmodes/cperl-mode.el (top-level): Clean up
5137 `eval-when-compile's and assorted defvars.
5138 (cperl-invalid-face): Don't double-quote value. Change custom
5139 type.
5140 (cperl-mode): Set normal-auto-fill-function and don't zap
5141 auto-fill-function.
5142 (cperl-imenu--function-name-regexp-perl): Renamed from
5143 imenu-example--function-name-regexp-perl.
5144 (cperl-imenu--create-perl-index): Renamed from
5145 imenu-example--create-perl-index.
5146 (cperl-xsub-scan): Don't require cl.
5147
93b3a1c8
DL
5148 * msb.el (msb-mode-map): Use substitute-key-definition.
5149 (msb-mode): Use msb-mode-map.
5150
43ccb598
AS
51512000-09-21 Andre Spiegel <spiegel@gnu.org>
5152
5153 * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
5154 New functions.
fa003899 5155 (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
43ccb598
AS
5156 (vc-switch-backend): New function.
5157 (vc-prefix-map): Bind `vc-switch-backend' to `b'.
5158 (vc-register): Fix prompt.
5159 (vc-unregister, vc-default-unregister): New functions.
5160 (vc-version-diff): Handle empty buffer in sentinel.
5161
5162 * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
5163 (vc-rcs-state-heuristic): Use it to guess the state of files with
5164 non-strict locking.
5165 (vc-rcs-find-most-recent-rev): Handle the case when a branch has
5166 been set with -b, but not created yet.
5167 (vc-rcs-fetch-master-state): With non-strict locking, compare file
5168 contents in order to find the state.
5169 (vc-rcs-checkin): Allow creation of branches with no changes.
fa003899
SM
5170 (vc-rcs-unregister, vc-rcs-receive-file)
5171 (vc-rcs-set-non-strict-locking): New functions.
43ccb598 5172
9b4a7800 5173 * vc-hooks.el (vc-name): Force correct computation of the value
43ccb598 5174 in case it is missing.
9b4a7800 5175
95fadcca
GM
51762000-09-21 Gerd Moellmann <gerd@gnu.org>
5177
5178 * startup.el (fancy-splash-tail): Use a different foreground
5179 color on a dark frame background.
5180
470f23e1
MB
51812000-09-21 Miles Bader <miles@lsi.nec.co.jp>
5182
5183 * info.el: Use the correct capitalization when making Info-mode
5184 and Info-edit-mode `special' modes.
5185
281096ed
SM
51862000-09-20 Stefan Monnier <monnier@cs.yale.edu>
5187
5188 * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
5189 (diff-mode): Add support for add-log.el.
5190 (diff-hunk-text): Use char offsets rather than line offsets.
5191 (diff-find-source-location): Replace LINE with line-offset (nil
5192 if not found) and always set POS to a meaningful position.
5193 Adapt to the new char-offsets.
5194 (diff-apply-hunk): Drop support for the unused `select' POPUP.
5195 Adapt to the new diff-find-source-location.
5196 (diff-goto-source): Adapt to the new diff-find-source-location.
5197
5198 * add-log.el (add-log-file-name): New function (split out of
5199 add-change-log-entry).
5200 (add-change-log-entry): Use it.
5201 Call add-log-file-name-function with the changelog file name if
5202 the current buffer is not associated with any file.
5203 Avoid find-file if the selected window is dedicated.
5204
5205 * diff-mode.el (diff-find-source-location):
5206 Move code from diff-apply-hunk. Return buffer rather than file.
5207 (diff-apply-hunk): Use the new result from diff-find-source-location.
5208 (diff-goto-source): Use the new diff-find-source-location.
5209
c29d77c4
DL
52102000-09-20 Dave Love <fx@gnu.org>
5211
5212 * iswitchb.el: Some doc fixes.
5213 (iswitchb-mode-map): Define completely initially. Inherit
5214 minibuffer-local-map.
5215 (iswitchb-completion-help) <!iswitchb-xemacs>: Use
5216 fundamental-mode.
5217 (iswitchb-global-map): New variable.
5218 (iswitchb-summaries-to-end): Amalgamate regexps.
5219 (iswitchb-mode): New.
5220 (iswitchb-mode-hook): New variable.
5221 (iswitchb) <defgroup>: Add URL link. Use group `completion', not
5222 `extensions'.
5223
49939379
GM
52242000-09-20 Gerd Moellmann <gerd@gnu.org>
5225
d05c87ac
GM
5226 * ehelp.el (electric-help): New defgroup.
5227 (electric-help-shrink-window): New user-option.
5228 (with-electric-help): Use it.
5229
1ec082d4
GM
5230 * window.el (shrink-window-if-larger-than-buffer): If face
5231 `mode-line' has a :box, and we're on a graphical frame, add 1
5232 to the needed window height.
5233
f46c275e
GM
5234 * frame.el (frame-notice-user-settings): Add a last parameter nil
5235 to a call to `append', because the last list passed to `append' is
5236 not copied, and so subsequent calls to assq-delete-all will modify
5237 default-frame-alist.
5238
b7e11c5b
GM
5239 * startup.el (fancy-splash-image): Change :type.
5240 (fancy-splash-head): Use an XBM image if appropriate.
5241 (command-line-1): Show splash screens in more cases.
5242
26ff68aa
GM
5243 * startup.el (fancy-splash-text): Don't quote faces.
5244
8320414c
GM
5245 * dired.el (dired-font-lock-keywords): Undo last change.
5246 (dired-readin): Bind indent-tabs-mode to nil.
5247
49939379
GM
5248 * startup.el (fancy-splash-head): If frame's background mode
5249 is `dark', change the black background of the image to gray.
5250 (fancy-splash-screens): Display startup echo area message.
5251 (display-startup-echo-area-message): New function.
5252
c3b27206
MB
52532000-09-20 Miles Bader <miles@lsi.nec.co.jp>
5254
55a3d2a1
MB
5255 * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
5256
5257 * info.el (info-header-node): Tweak for color ttys.
5258
37a99821
MB
5259 * faces.el (face-valid-attribute-values): Make sure directories we
5260 search for stipples both exist and are readable before trying to
5261 search them.
5262
0415d0d0
MB
5263 * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
5264 in the dry-run case.
5265
523b128c
MB
5266 * jka-compr.el (with-auto-compression-mode): New macro.
5267
c3b27206
MB
5268 * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
5269 (custom-group-tag-face, custom-variable-tag-face): Use relative
5270 :height and inherit from `variable-pitch' face instead of
5271 hardwiring :family.
5272 * hi-lock.el (hi-black-hb): Likewise.
5273
ddba99ad
MB
5274 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
5275 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
5276 toolbar-add-item, if image doesn't have a mask add a `:mask
5277 heuristic'.
5278
7e99fbde
SM
52792000-09-19 Stefan Monnier <monnier@cs.yale.edu>
5280
5281 * diff-mode.el: Docstring fixes.
5282 (diff-header-face, diff-comment-face): New faces.
5283 (diff-font-lock-keywords): Highlight a bit differently.
5284 (diff-find-source-location): Don't return SPAN any more.
5285 (diff-hunk-text): Don't bother erasing the temp buffer.
5286 (diff-find-text): Drop argument LINE.
5287 (diff-apply-hunk): Update calls to diff-find-text.
5288 (diff-goto-source): Use pop-to-buffer again and don't raise an error.
5289
5290 * calendar/calendar.el: Docstring fixes.
5291 (calendar-make-alist): Don't quote lambda.
5292 (calendar-star-date): Use make-local-variable.
5293
fb275c02
DL
52942000-09-19 Dave Love <fx@gnu.org>
5295
7e99fbde
SM
5296 * toolbar/tool-bar.el: Renamed from toolbar.el.
5297 Change `toolbar' to `tool-bar' generally in symbols.
5298 Make some items invisible in `special' major modes.
5299 (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
5300 Add arg PROPS.
532cb34d 5301
7e99fbde
SM
5302 * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
5303 Add :version here.
fb275c02
DL
5304 (fancy-splash-delay, fancy-splash-image): Remove :version here.
5305
8f4ca9a5
GM
53062000-09-19 Gerd Moellmann <gerd@gnu.org>
5307
8b7707e1 5308 * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
da1608d9 5309
8b7707e1 5310 * files.el (find-file-suppress-same-file-warnings): New user-option.
8fb3df59
GM
5311 (find-file-noselect): Use it.
5312
8b7707e1 5313 * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
a01bb1db
GM
5314 (fancy-splash-screen): Defgroup.
5315
8f4ca9a5
GM
5316 * add-log.el (change-log-font-lock-keywords): Match names
5317 more exactly for the case that font-lock-constant-face is
5318 underlined.
5319
ba9eeda1 53202000-09-19 Richard M. Stallman <rms@gnu.org>
9b4a7800 5321
8b7707e1 5322 * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
ba9eeda1 5323
289eaef9
AS
53242000-09-19 Andre Spiegel <spiegel@gnu.org>
5325
5326 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
5327
ce9ded5d
GM
53282000-09-19 Gerd Moellmann <gerd@gnu.org>
5329
c113de23
GM
5330 * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
5331 * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
5332 * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
5333 * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
5334 * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
5335 * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
5336 * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
5337 * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
5338 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
5339 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
5340 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
8f4ca9a5 5341 * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
c113de23 5342
ce9ded5d
GM
5343 * startup.el (fancy-splash-text): New variable.
5344 (fancy-splash-delay, fancy-splash-image): New user-options.
5345 (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
5346 (fancy-splash-screens): New functions.
5347 (command-line-1): If display has a `display' frame parameter, has
5348 colors, and we have XPM support, show more fancy splash screens.
9b4a7800 5349
b9b1c3a9
DL
53502000-09-19 Dave Love <fx@gnu.org>
5351
5352 * map-ynp.el (map-y-or-n-p): Check use-dialog-box. Don't lose
5353 with null `help'. Use modern backquote syntax.
5354
1af25534
GM
53552000-09-19 Gerd Moellmann <gerd@gnu.org>
5356
afd3c8cd
GM
5357 * font-lock.el (font-lock-mode): Change message telling the user
5358 that ``the buffer is too big''.
5359
1af25534
GM
5360 * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
5361 for instance for the case that tab-width is 2.
5362
05b1f851
GM
53632000-09-18 Gerd Moellmann <gerd@gnu.org>
5364
5365 * toolbar/toolbar.el (toolbar-like-menu-item): Like in
5366 toolbar-add-item, if image doesn't have a mask add a `:mask
5367 heuristic'.
5368
8ec8f673
MB
53692000-09-18 Miles Bader <miles@lsi.nec.co.jp>
5370
2b612b1f
MB
5371 * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
5372 and return a cons if it's non-nil.
5373 (diff-apply-hunk): Try to jump to the line in the source text
5374 corresponding to the position of point in the in the hunk.
5375
9b4a7800 5376 * info.el (Info-title-3-face, Info-title-2-face)
8ec8f673
MB
5377 (Info-title-1-face): Use face inheritance and relative sizes
5378 instead of hard-wiring things.
5379
5380 * faces.el (secondary-selection): Make dark-background variant sane.
5381
5eedab4d
AI
53822000-09-16 Andrew Innes <andrewi@gnu.org>
5383
5eedab4d
AI
5384 * makefile.w32-in (compile-files-CMD): No need to make .elc files
5385 read-only, since they aren't under VC now.
5386
6a142f26
DL
53872000-09-17 Dave Love <fx@gnu.org>
5388
e07436e1
DL
5389 * tmm.el: Replace mapcar with mapc in several places.
5390
5391 * loadhist.el (unload-feature): Maybe call elp-restore-list and
5392 ad-unadvise.
5393
7d354dd5
DL
5394 * international/latin1-disp.el: New file.
5395
6a142f26
DL
5396 * calendar/cal-move.el (scroll-calendar-left)
5397 (scroll-calendar-right): Make arg optional (for active mode line).
5398
5399 * calendar/calendar.el (calendar-mode-line-format): Make fields
5400 mouse-sensitive.
5401 (calendar-read-date, calendar-read-date, calendar-window-list):
5402 Unquote lambda.
5403 (calendar-month-name): Use aref, not sref.
5404
5405 * view.el (minor-mode-alist): Propertize the string.
5406
5407 * international/characters.el (standard-case-table): Add entries
5408 for Greek.
5409
50ac70af
MB
54102000-09-18 Miles Bader <miles@gnu.org>
5411
53c9ab4f
MB
5412 * info.el (info-node, info-xref): Add dark-background variants.
5413
a114b1ca
MB
5414 * faces.el (header-line): Change defaults to be less confusing
5415 when mixed with mode-lines.
5416
50ac70af
MB
5417 * info.el (Info-fontify-node): Make a few cleanups.
5418 Add extra `help-echo' and `local-map' props to node xrefs.
5419 Use header-specific faces for node-names & xrefs.
5420 (Info-use-header-line): New variable.
53c9ab4f 5421 (info-header-xref, info-header-node): New faces.
50ac70af
MB
5422 (Info-setup-header-line): New function.
5423 (Info-select-node): Call Info-setup-header-line when enabled.
5424 (Info-extract-pointer): Work even if the header line is hidden.
5425 (Info-header-line): New variable.
5426
729927ff
SM
54272000-09-16 Stefan Monnier <monnier@cs.yale.edu>
5428
5429 * vms-patch.el (print-region-function): Don't quote lambda.
5430
5431 * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
5432
5433 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
5434 (lm-get-header-re): Allow spaces between the header and the colon.
5435 (lm-header): Allow $ in non-RCS headers.
5436 (lm-header-multiline): Put the strings back into order.
5437 Stop at an empty line. Don't require two space chars if the
5438 line is clearly not another header line.
5439
5440 * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
5441 (popup-menu-popup): Remove.
5442
7a98d821
GM
54432000-09-15 Gerd Moellmann <gerd@gnu.org>
5444
7f8f1edc
GM
5445 * toolbar/toolbar.el (toolbar-add-item): Use the same image
5446 specification if or if not tool-bar item contains an `:enabled'
5447 property.
5448
7a98d821
GM
5449 * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
5450 current buffer has no file name.
5451
a7bc704b
DL
54522000-09-15 Dave Love <fx@gnu.org>
5453
5454 * strokes.el: Sync with maintainer's current version with changes
5455 for Emacs, but avoid runtime cl and levents.
5456 (toplevel): Change autoloads and compilation requires.
5457 (strokes-version, strokes-bug-address, strokes-lift): Values
5458 changed.
5459 (strokes-xpm-header, strokes-insinuated): New variable.
5460 (strokes): Add :link.
5461 (strokes-mode): Customized.
5462 (strokes-while-inhibiting-garbage-collector): New macro.
5463 (strokes-remassoc): Avoid remove-if.
5464 (strokes-fix-button2-command): Don't use ad-do-it.
5465 (strokes-insinuate): New function.
5466 (strokes-button-press-event-p, strokes-button-release-event-p):
5467 New functions, used instead of non-`strokes-' versions..
5468 (strokes-mouse-event-p): Rewritten.
5469 (strokes-event-closest-point): Avoid event-point.
5470 (strokes-get-grid-position): Avoid cdadr, caadr
5471 (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
5472 functions.
5473 (strokes-help): Use with-output-to-temp-buffer.
5474 (strokes-window-configuration-changed-p): New function.
5475 (strokes-update-window-configuration): Use buffer-live-p,
5476 strokes-window-configuration-changed-p.
5477 (strokes-mode): Use strokes-insinuate. Alter mouse bindings.
5478 (strokes-char-face): New face.
5479 (strokes-char-table, strokes-base64-chars): New variable.
5480 (strokes-xpm-for-stroke, strokes-list-strokes)
5481 (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
5482 (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
5483 (strokes-xpm-to-compressed-string, strokes-decode-buffer)
5484 (strokes-encode-buffer, strokes-xpm-for-compressed-string)
5485 (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
5486 functions.
5487
47e351a3
GM
54882000-09-15 Gerd Moellmann <gerd@gnu.org>
5489
ebb8f116
GM
5490 * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
5491
47e351a3
GM
5492 * image.el (create-image): Doc fix.
5493
5494 * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
5495 instead of `:heuristic-mask t'.
5496
fe83b953
AI
54972000-09-14 Andrew Innes <andrewi@gnu.org>
5498
5499 * makefile.w32-in: Revert to Unix line endings.
5500
52481729
AI
55012000-09-14 Andrew Innes <andrewi@gnu.org>
5502
3021e816
AI
5503 * makefile.w32-in: Add bootstrap support. Also copy lisp source
5504 when installing.
5505
52481729
AI
5506 * makefile.nt (DONTCOMPILE): Fix typo.
5507
5508 * shell.el (shell-write-history-on-exit): New function.
5509 (shell-dumb-shell-regexp): New custom variable.
5510 (shell-mode): Make shell-write-history-on-exit the process
5511 sentinel if shell name matches shell-dumb-shell-regexp.
5512
5513 * w32-fns.el: Comment out before-init-hook function which resets
5514 source-directory based; this breaks bootstrap.
5515
f8034e41
DL
55162000-09-14 Dave Love <fx@gnu.org>
5517
5518 * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
5519 toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
5520 toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
5521 toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
5522 toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
5523 toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
5524 toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm: New.
5525 From Tuomas Kuosmanen <tigert@gimp.org>. (Gnome icons fetched
5526 from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
5527
5528 * toolbar/toolbar.el: New.
5529
5530 * subdirs.el: Add toolbar.
5531
b9ce5694
GM
55322000-09-14 Gerd Moellmann <gerd@gnu.org>
5533
5534 * indent.el (indent-for-tab-command): Doc fix.
5535
986b7dee
GM
55362000-09-14 Alex Schroeder <alex@gnu.org>
5537
5538 * ansi-color.el (ansi-colors): Doc change.
5539 (ansi-color-get-face): Simplified regexp.
5540 (ansi-color-faces-vector): Added more faces, doc change.
5541 (ansi-color-names-vector): Doc change.
5542 (ansi-color-regexp): Simplified regexp.
5543 (ansi-color-parameter-regexp): New regexp.
5544 (ansi-color-filter-apply): Doc change.
5545 (ansi-color-filter-region): Doc change.
5546 (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
5547 deal with zero length parameters.
5548 (ansi-color-apply-on-region): Doc change.
5549 (ansi-color-map): Doc change.
5550 (ansi-color-map-update): Removed debugging message.
5551 (ansi-color-get-face-1): Added condition-case to trap
5552 args-out-of-range errors.
5553 (ansi-color-get-face): Doc change.
5554 (ansi-color-make-face): Removed.
5555 (ansi-color-for-shell-mode): New option.
9b4a7800 5556
076ff911
KH
55572000-09-13 Kenichi Handa <handa@etl.go.jp>
5558
5559 * international/quail.el (quail-start-translation): Translate KEY
5560 if necessary even if it doesn't have any mapping in the current
5561 input method.
5562 (quail-start-conversion): Likewise.
5563 (quail-help): The output message is improved.
5564
bdf08678
MB
55652000-09-13 Miles Bader <miles@gnu.org>
5566
5567 * comint.el (comint-output-filter): Revert to using
5568 `insert-before-markers'. Add bletcherous hack to undo damage
5569 caused by `insert-before-markers'. Put `front-sticky' property on
5570 overlays created here so that the field code understands how the
5571 overlay works. Use a let when making comint-last-prompt-overlay,
5572 so that the code is easier to read.
5573
ffb8db8d
DL
55742000-09-13 Dave Love <fx@gnu.org>
5575
5576 * wid-edit.el (widget-default-format-handler): DTRT when
5577 doc-property is a function.
5578
5dd05f61
GM
55792000-09-12 Francesco Potorti` <pot@gnu.org>
5580
5581 * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
5582 filed name if it's not there.
5583
35177617
DL
55842000-09-12 Dave Love <fx@gnu.org>
5585
9023837e
DL
5586 * simple.el (read-mail-command): Doc fix.
5587 (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
5588
35177617
DL
5589 * vc.el (vc-dired-listing-switches): Fix :version.
5590
5591 * vc-hooks.el: Doc fixes.
5592
5593 * subr.el (add-minor-mode): Use toggle-fun arg.
5594
5595 * speedbar.el: Add :version to several defcustoms.
5596
5597 * imenu.el (imenu--truncate-items, imenu--cleanup)
5598 (imenu--generic-function): Avoid mapcar.
5599 (imenu--replace-spaces): Function removed.
5600 (imenu--completion-buffer): Use subst-char-in-string.
5601 (imenu-add-to-menubar): Use keymap inheritance.
5602
1afaae94
MB
56032000-09-12 Miles Bader <miles@gnu.org>
5604
5605 * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
5606 (diff-mode-map): Bind `diff-test-hunk'.
5607 (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
5608
56092000-09-11 Gerd Moellmann <gerd@gnu.org>
71246c2c
GM
5610
5611 * bytecomp.el (byte-compile-defvar): Undo last change
5612 because it breaks '(make-variable-buffer-local (defvar ...)'
5613 which is used at least in dired.
5614
63c36c3c
KH
56152000-09-12 Kenichi Handa <handa@etl.go.jp>
5616
5617 * international/quail.el (quail-define-package): Docstring
5618 modified.
5619
1ad24be1
KH
56202000-09-12 Kenichi Handa <handa@etl.go.jp>
5621
362a8065
KH
5622 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
5623 extra docstrings for "chinese-ccdospy", "chinese-ecdict",
5624 "chinese-etzy", "chinese-sw", and "chinese-ziranma". Modify the
5625 docstring of "chinese-py".
5626
1ad24be1
KH
5627 * international/quail.el (quail-translation-docstring): New
5628 variable.
5629 (quail-show-keyboard-layout): Docstring modified.
5630 (quail-select-current): Likewise.
5631 (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
5632 infinite recursive call.
5633 (quail-help): Check quail-translation-docstring. Format of the
5634 output changed.
5635 (quail-help-insert-keymap-description): Adjusted for the above
5636 change.
5637
cc0f95a4
GM
56382000-09-11 Gerd Moellmann <gerd@gnu.org>
5639
5640 * bytecomp.el (byte-compile-defvar): Only cons onto
5641 current-load-list in top-level forms. Else this leaks a cons cell
5642 every time a defun is called.
5643
7530b6da
MB
56442000-09-11 Miles Bader <miles@lsi.nec.co.jp>
5645
5646 * diff-mode.el (diff-apply-hunk): Function basically rewritten.
5647 Now understands non-unified diffs. Some functionality moved into
5648 `diff-hunk-text' and `diff-find-text'. Add OTHER-FILE, DRY-RUN,
5649 POPUP, and NOERROR arguments. If DRY-RUN is true, don't actually
5650 modify anything. Only reposition point in the patched file if the
5651 patch succeeds. Only pop up another window if POPUP is true.
5652 Emit a message describing what happened if successful, and at what
5653 line-offset. Automatically detect reversed hunks and do something
5654 appropriate.
5655 (diff-hunk-text, diff-find-text): New functions.
5656 (diff-filter-lines): Function removed.
5657 (diff-test-hunk): New function.
5658 (diff-goto-source): Rewritten in terms of diff-apply-hunk.
5659
6b124390
DL
56602000-09-10 Dave Love <fx@gnu.org>
5661
5662 * textmodes/tildify.el: Minor doc/commentary fixes.
5663 (tildify) <defgroup>: Add :version.
5664
5665 * faces.el (face-x-resources): Make custom type more specific.
5666 (frame-background-mode): Use mapc.
5667 (region) <defcustom>: Add :version.
5668
7f8b6551
SM
56692000-09-08 Stefan Monnier <monnier@cs.yale.edu>
5670
9b4a7800
TTN
5671 * vc-sccs.el (vc-sccs-register):
5672 * vc-rcs.el (vc-rcs-register):
7f8b6551
SM
5673 * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
5674 * vc.el (vc-register): Clear file's properties.
5675
c454aac1
GM
56762000-09-08 Gerd Moellmann <gerd@gnu.org>
5677
5678 * faces.el (face-spec-set): Only face-spec-reset-face when
5679 ATTRS is non-nil.
5680
bb934822
EZ
56812000-09-08 Eli Zaretskii <eliz@is.elta.co.il>
5682
5683 * help.el (help-insert-xref-button): Fix a typo in doc string.
5684
03419440
EZ
56852000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
5686
7f8b6551
SM
5687 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
5688 Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
43b11fee
EZ
5689 methods.
5690
03419440
EZ
5691 * menu-bar.el (read-mail-item-name): New function.
5692 (menu-bar-tools-menu): Use it to compute and display the package
5693 used to read email.
5694 (menu-bar-tools-menu): Fix typo in GUD's help string.
5695
dbcee71a
DL
56962000-09-07 Dave Love <fx@gnu.org>
5697
19e713d8
DL
5698 * diff-mode.el (diff-mouse-goto-source): New function.
5699
a7cafade 5700 * vc-sccs.el: Doc fixes.
7f8b6551 5701 (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
a7cafade
DL
5702
5703 * vc-rcs.el: Doc fixes.
7f8b6551
SM
5704 (vc-rcs-register-switches, vc-rcs-checkin-switches)
5705 (vc-rcs-checkout-switches, vc-rcs-header)
a7cafade
DL
5706 (vc-rcs-master-templates): Add or change :version.
5707
7f8b6551 5708 * vc-cvs.el: Doc fixes.
a7cafade
DL
5709 (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
5710 (vc-cvs-stay-local): Add :version.
5711
dbcee71a
DL
5712 * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
5713
ed254191
KH
57142000-09-07 Kenichi Handa <handa@etl.go.jp>
5715
5716 * international/quail.el (quail-help): Fix previous change.
5717
ab0ee409
GM
57182000-09-07 Gerd Moellmann <gerd@gnu.org>
5719
f46f845b 5720 * faces.el (color-values): Doc fix.
9b4a7800 5721
ab0ee409
GM
5722 * faces.el (frame-set-background-mode): Use frame-parameter
5723 instead of frame-parameters.
5724
5725 * frame.el (filtered-frame-list): Reduce consing.
9b4a7800 5726 (frames-on-display-list): Call frame-parameter instead of
ab0ee409 5727 frame-parameters.
9b4a7800 5728
f7246ac7
KH
57292000-09-07 Kenichi Handa <handa@etl.go.jp>
5730
5731 * language/devan-util.el (devanagari-to-indian-region): In the
5732 loop, change the following char, not preceding char.
5733
96889af2
GM
57342000-09-07 Gerd Moellmann <gerd@gnu.org>
5735
1091dd67
GM
5736 * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
5737 instead of frame-parameters.
5738
9b4a7800 5739 * faces.el (set-face-attribute): Simplify by calling
0da3ecef
GM
5740 internal-set-lisp-face-attribute with FRAME being 0.
5741
5742 * vc.el: Remove `Id' version control keyword.
96889af2 5743
0fddd0dc
KH
57442000-09-07 Kenichi Handa <handa@etl.go.jp>
5745
5746 * help.el (help-make-xrefs): Adjusted for the change of
5747 help-xref-mule-regexp.
5748 (help-insert-xref-button): New function.
5749
5750 * international/mule-cmds.el (help-xref-mule-regexp-template):
5751 Include the pattern for character set.
5752 (leim): New group.
5753
5754 * international/quail.el: Don't require face.
5755 (quail): New group.
7f8b6551 5756 (quail-other-command): Dummy command to make quail-help work better.
0fddd0dc
KH
5757 (quail-keyboard-layout-alist): Add Keyboard type "jp106".
5758 (quail-keyboard-layout-substitution): New variable.
5759 (quail-update-keyboard-layout): New function.
5760 (quail-keyboard-layout-type): New customizable variable.
5761 (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
5762 (quail-keyboard-translate): Pay attention to
5763 quail-keyboard-layout-substitution.
5764 (quail-insert-kbd-layout): New function.
5765 (quail-show-keyboard-layout): New function.
5766 (quail-get-translation): If the definition is a vector of length
7f8b6551 5767 1, and the element is a string of length 1, return the character
0fddd0dc
KH
5768 in that string.
5769 (quail-update-current-translations): Fix the case of
5770 relative-index out of range.
5771 (quail-build-decode-map, quail-insert-decode-map): New Functions.
5772 (quail-help): Show keyboard layout by quail-insert-kbd-layout.
7f8b6551 5773 Show key sequences for all available characters.
0fddd0dc
KH
5774 (quail-help-insert-keymap-description): Don't show such verbose
5775 key bindings as quail-self-insert-command.
5776
5777 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
5778 Format changed, and each element now have extra documentations.
5779 (tit-process-header): Delete invalid characters from TIT-PROMPT.
5780 Adjusted for the change of quail-cxterm-package-ext-info.
5781
8ddceaf1
GM
57822000-09-06 Gerd Moellmann <gerd@gnu.org>
5783
5784 * vc-hooks.el (toplevel): Don't require `vc' during compilation;
5785 requiring it leads to a recursive loading of vc.el and vc-hooks.el
5786 during bootstrap.
5787
099bd78a
SM
57882000-09-05 Stefan Monnier <monnier@cs.yale.edu>
5789
5790 * vc.el: (toplevel): Don't require `dired' at run-time.
5791 (vc-dired-resynch-file): Remove autoload cookie.
5792
57932000-09-05 Andre Spiegel <spiegel@gnu.org>
5794
5795 * vc.el: Made several backend functions optional.
5796 (vc-default-responsible-p): New function.
5797 (vc-merge): Use RET for first version to trigger merge-news, not
5798 prefix arg.
5799 (vc-annotate): Handle backends that do not support annotation.
5800 (vc-default-merge-news): Removed. The existence of a merge-news
5801 implementation is now checked on caller sites.
5802
9b4a7800 5803 * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
099bd78a
SM
5804 case.
5805
9b4a7800 5806 * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
099bd78a
SM
5807 special case that has been removed from the default in vc-hooks.el.
5808
58092000-09-05 Stefan Monnier <monnier@cs.yale.edu>
5810
5811 * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
5812
58132000-09-05 Andre Spiegel <spiegel@gnu.org>
5814
5815 * vc-hooks.el: Require vc during compilation.
5816 (vc-file-setprop): Use `vc-touched-properties' if bound by the new
5817 macro `with-vc-properties' in vc.el.
5818 (vc-file-getprop): Doc fix.
5819 (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
9b4a7800 5820
099bd78a
SM
5821 * vc.el: Require dired-aux during compilation.
5822 (vc-name-assoc-file): Moved to vc-sccs.el.
5823 (with-vc-properties): New macro.
9b4a7800 5824 (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
099bd78a
SM
5825 vc-finish-steal): Use it.
5826 (vc-cancel-version): Moved RCS-specific code to vc-rcs.el. The call
5827 to the backend-specific function is now supposed to do the checkout,
5828 too.
5829 (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
5830
9b4a7800 5831 * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
099bd78a
SM
5832 set file properties; that gets done in the generic code now.
5833
5834 * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
5835 Changed parameter list, added code from vc.el that does the
5836 checkout, possibly with a double-take.
5837
5838 * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
5839 (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
5840 the above under the new name.
5841 (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'. Changed
5842 parameter list, added checkout command.
5843 (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
5844 properties; that gets done in the generic code now.
5845
58462000-09-05 Stefan Monnier <monnier@cs.yale.edu>
5847
5848 * vc.el: Docstring fixes (courtesy of checkdoc).
5849
58502000-09-05 Stefan Monnier <monnier@cs.yale.edu>
5851
5852 * vc.el (vc-checkout-writable-buffer-hook)
5853 (vc-checkout-writable-buffer): Remove.
5854 (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
5855 (vc-log-mode): Make it into a clean derived major mode.
5856 (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
5857 vc-log-mode if log-edit is not available.
5858 (vc-dired-mode-map): Don't set-keymap-parent yet.
5859 (vc-dired-mode): Do set-keymap-parent here.
5860 (vc-dired-buffers-for-dir): Nop if dired is not loaded.
5861
08ba3862
GM
58622000-09-05 Gerd Moellmann <gerd@gnu.org>
5863
5864 * faces.el (set-face-attribute, face-spec-reset-face)
5865 (face-spec-set): Avoid consing by removing calls to `apply'.
5866
5867 * frame.el (frame-parameter): Move to C code.
5868
3b4429b4
DL
58692000-09-05 Dave Love <fx@gnu.org>
5870
5871 * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
5872 insert-before-markers-and-inherit. Now checked systematically!
5873
877055f6
GM
58742000-09-05 Alex Schroeder <alex@gnu.org>
5875
5876 * sql.el (sql-postgres): Use sql-postgres-options.
5877 (sql-postgres-options): New variable.
5878
58792000-09-05 Alex Schroeder <alex@gnu.org>
5880
5881 * sql.el (sql-mode-menu): Work around missing variable mark-active
5882 in XEmacs.
5883 (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
5884 (sql-interactive-mode): Added call to easy-menu-add for XEmacs
5885 compatibility.
5886
7a004b71
GM
58872000-09-04 Gerd Moellmann <gerd@gnu.org>
5888
54baed30 5889 * vc.el (vc-dired-resynch-file): Add autoload cookie.
9b4a7800 5890
7a004b71
GM
5891 * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
5892
5893 * Makefile.in (DONTCOMPILE): Fix typo in file name.
5894
58952000-09-04 Andre Spiegel <spiegel@gnu.org>
5896
5897 * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
5898 don't support anything else under SCCS yet.
5899
5900 * vc-hooks.el: Minor doc fixes.
5901
59022000-09-04 Andre Spiegel <spiegel@gnu.org>
5903
5904 * vc.el (vc-next-action-on-file): Do not visit the file if it's
5905 not necessary. If verbose in state `needs-patch', do the same as
5906 under `up-to-date'. When NOT verbose and `needs-patch', check out
5907 latest version instead of `merge-news'.
5908 (vc-next-action-dired): Don't mess with default-directory here; it
5909 breaks other parts of dired. It is the job of the
099bd78a 5910 backend-specific functions to adjust it temporarily if they need it.
7a004b71
GM
5911 (vc-next-action): Remove a special CVS case.
5912 (vc-clear-headers): New optional arg FILE.
5913 (vc-checkin, vc-checkout): Set properties vc-state and
5914 vc-checkout-time properly.
099bd78a 5915 (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
7a004b71
GM
5916 (vc-print-log): Use new backend function `show-log-entry'.
5917 (vc-cancel-version): Do the checks in a different order. Added a
5918 FIXME concerning RCS-only code.
5919
5920 * vc-rcs.el (vc-rcs-show-log-entry): New function.
5921 (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
5922
5923 * vc-cvs.el (vc-cvs-show-log-entry): New function.
5924
9b4a7800 5925 * vc-hooks.el (vc-default-mode-line-string): Show state
7a004b71
GM
5926 `needs-patch' as a `-' too.
5927
59282000-09-04 Andre Spiegel <spiegel@gnu.org>
5929
5930 * vc.el (vc-responsible-backend): New optional arg REGISTER.
5931 (vc-default-could-register): New function.
5932 (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
5933 (vc-resynch-buffer): Call vc-dired-resynch-file.
5934 (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
5935 vc-resynch-buffer instead of vc-resynch-window.
5936 (vc-next-action-dired): Don't redisplay here, that gets done as a
5937 result of the individual file operations.
5938 (vc-retrieve-snapshot): Corrected prompt order.
5939
5940 * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
9b4a7800 5941
7a004b71
GM
5942 * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
5943 as well.
5944 (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p. Handle
5945 hostname regexps. Updated all callers.
5946 (vc-cvs-responsible-p): Handle directories as well.
5947 (vc-cvs-could-register): New function.
5948 (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
5949 properties up-to-date.
9b4a7800 5950
7a004b71
GM
5951 * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
5952 user whether to create one.
5953
59542000-09-04 Andre Spiegel <spiegel@gnu.org>
5955
5956 * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
5957 check out a non-existing file.
5958
5959 * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
5960 workfile does not exist.
5961
5962 * vc.el (vc-version-diff): Use `require' to check for existence of
5963 diff-mode.
5964
59652000-09-04 Andre Spiegel <spiegel@gnu.org>
5966
5967 * vc-cvs.el (vc-cvs-registered): Use new function
5968 vc-cvs-parse-entry to do the actual work.
5969
59702000-09-04 Andre Spiegel <spiegel@gnu.org>
5971
5972 * vc-hooks.el (vc-find-backend-function): If function doesn't
5973 exist, return nil instead of error.
5974 (vc-call-backend): Doc fix.
5975
5976 * vc.el (vc-do-command): Doc fix.
5977 (vc-finish-logentry): When checking in from vc-dired, choose the
5978 right backend for logentry check.
5979 (vc-dired-mode-map): Inherit from dired-mode-map.
5980 (vc-dired-mode): Local value of dired-move-to-filename-regexp
5981 simplified.
5982 (vc-dired-state-info): Removed, updated caller.
5983 (vc-default-dired-state-info): Use parentheses instead of hyphens.
5984 (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
5985 (vc-dired-listing-switches): New variable.
5986 (vc-directory): Use it, instead of dired-listing-switches.
5987
5988 * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
5989 (vc-cvs-dir-state): New function.
7f8b6551 5990 (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
7a004b71
GM
5991 (vc-cvs-parse-entry): New function, also to be used in
5992 vc-cvs-registered.
9b4a7800 5993
7a004b71
GM
59942000-09-04 Stefan Monnier <monnier@cs.yale.edu>
5995
5996 * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
5997 *or* single-window-frames.
5998
59992000-09-04 Andre Spiegel <spiegel@gnu.org>
6000
6001 * vc.el (vc-update-changelog): Split into generic part and default
6002 implementation. Doc string adapted.
6003 (vc-default-update-changelog): New function. Call the `rcs2log'
6004 script in exec-directory, to fix a long-standing nuisance.
6005
6006 * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
6007 simply signals an error.
9b4a7800 6008
7a004b71
GM
60092000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6010
6011 * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
6012 control-flow more clear and to avoid running `cvs' twice.
6013
6014 * vc.el (vc-next-action-on-file): Doc fix.
6015 (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
6016 (vc-print-log): Eval `file' before constructing the continuation.
6017
60182000-09-04 Andre Spiegel <spiegel@gnu.org>
6019
6020 * vc.el (vc-next-action-on-file): Corrected several messages.
6021 (vc-merge): Add prefix arg `merge-news'; handle it.
6022
6023 * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
6024 is not reached. It is.
6025 (vc-cvs-merge): Set state to 'edited after merge.
6026 (vc-cvs-merge-news): Set workfile version to nil if not known.
6027 (vc-cvs-latest-on-branch-p): Recommented. Candidate for removal.
6028
6029 * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
6030 via stdout. (Merge from main line.)
9b4a7800 6031
7a004b71
GM
60322000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6033
6034 * vc.el (vc-finish-logentry): Thinko in the "same comment"
6035 detection.
6036
60372000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6038
6039 * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
6040 against kill-all-local-variables.
6041 (vc-log-edit): Don't save vc-parent-buffer any more.
6042 (vc-last-comment-match): Initialize to an empty string.
6043 (vc-post-command-functions): New hook.
6044 (vc-do-command): Run it.
6045 (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
6046 (vc-finish-logentry): Only add the comment to the ring if it's
6047 different from the last comment entered.
6048 (vc-new-comment-index): New function.
6049 (vc-previous-comment): Use it. Make the minibuffer message
6050 slightly less terse.
6051 (vc-comment-search-reverse): Make it work forward as well. Don't
6052 set vc-comment-ring-index if no match is found. Use
6053 vc-new-comment-index.
6054 (vc-comment-search-forward): Use vc-comment-search-reverse.
6055 (vc-dired-mode-map): Don't inherit from dired-mode-map since
6056 define-derived-mode will do it for us. Bind `v' to a keymap that
6057 inherits from vc-prefix-map so that we can bind `vt' without
6058 binding C-x v t.
6059 (vc-retrieve-snapshot): Parenthesis typo.
6060
6061 * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
6062 to 1. Make sure to switch to *vc* before looking for an error
6063 message. Use vc-parse-buffer.
6064
60652000-09-04 Andre Spiegel <spiegel@gnu.org>
6066
6067 * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
6068 and NAME.
6069 (vc-retrieve-snapshot): Split into two parts.
6070 (vc-default-retrieve-snapshot): New function.
6071
6072 * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
6073 (vc-cvs-retrieve-snapshot): New function (untested).
6074 (vc-cvs-stay-local): Default to t.
6075 (vc-cvs-remote-p): New function and property.
6076 (vc-cvs-state): Stay local only if the above is t.
6077 (vc-handle-cvs): Removed.
6078 (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
6079 done via vc-handled-backends now.
6080 (vc-cvs-header): Escape Id.
6081
60822000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6083
6084 * vc.el (vc-do-command): Remove unused commands.
6085 (vc-version-diff): Make sure default-directory ends with a slash.
6086 Move the window commands into a vc-exec-after.
6087 (vc-print-log): Move more of the code into the `vc-exec-after'.
6088
60892000-09-04 Andre Spiegel <spiegel@gnu.org>
6090
6091 * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
6092 (vc-print-log): Search current revision from beginning of buffer.
6093 (vc-revert-buffer): Clear echo area after the diff is finished.
6094 (vc-prefix-map): Removed definition of "t" for terse display in vc
6095 dired.
6096 (vc-dired-mode-map): Inherit from dired-mode-map. Added
6097 definition of "vt" for terse display.
6098 (vc-dired-mode): Fix dired-move-to-filename-regexp.
6099
61002000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6101
6102 * vc.el (vc-exec-after): Avoid caddr.
6103
61042000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6105
6106 * vc.el (vc-exec-after): New function.
6107 (vc-do-command): Use it to add a termination message for async
6108 procs.
6109 (vc-checkout): Try to handle a missing-backend situation.
6110 (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
6111 of a directory with a backend using async diffs.
6112 (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
6113 present.
6114
6115 * vc-sccs.el (vc-sccs-state-heuristic): Use
6116 file-ownership-preserved-p.
6117
6118 * vc-rcs.el (vc-rcs-state-heuristic): Use
6119 file-ownership-preserved-p.
6120 (vc-rcs-checkout): Remove the error-handling for missing-rcs.
6121
61222000-09-04 Andre Spiegel <spiegel@gnu.org>
6123
6124 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
6125 vc-do-command.
6126
6127 * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
6128 when there are no changes.
6129
61302000-09-04 Andre Spiegel <spiegel@gnu.org>
6131
6132 * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
6133
6134 * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
6135
61362000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6137
6138 * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
6139
6140 * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
6141 the `fset' outside of the defvar so that it works even if
6142 vc-prefix-map was already defined.
6143 (vc-setup-buffer): New function, split out of vc-do-command.
6144 (vc-do-command): Allow BUFFER to be t to mean `just use the
6145 current buffer without any fuss'.
6146 (vc-version-diff): Change the `diff' backend operation to just put
6147 the diff in the current buffer without erasing it. Always use
6148 *vc-diff* even for directory-diffs. Use vc-setup-buffer. Protect
6149 shrink-window-if-larger-than-buffer.
6150 (vc-print-log): Change the `print-log' backend operation to just
6151 put the log in the current buffer without erasing it. Protect
6152 shrink-window-if-larger-than-buffer.
6153 (vc-update-change-log): Fix setd typo.
6154
6155 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
6156 (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
6157
6158 * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
6159 (vc-rcs-diff): Insert in the current buffer and remove unused arg
6160 CMP.
6161
6162 * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
6163 with-temp-file. Use the new BUFFER=t argument to vc-do-command.
6164 (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
6165
61662000-09-04 Andre Spiegel <spiegel@gnu.org>
6167
6168 * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
6169 not possible, use vc-BACKEND-workfile-unchanged-p.
6170 (vc-default-workfile-unchanged-p): New function. Delegates to a
6171 full vc-BACKEND-diff.
6172
6173 * vc-hooks.el (vc-simple-command): Removed.
6174
6175 * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
6176 instead of vc-simple-command.
6177 (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
6178 avoid doing a diff when opening a file.
6179 (vc-rcs-state): Added check for unlocked-changes.
6180 (vc-rcs-header): Escape Id.
6181 (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
6182 (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
6183 version.
6184
6185 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
6186 (vc-sccs-diff): Remove optional arg CMP.
6187 (vc-sccs-state): Call vc-workfile-unchanged-p, not the
6188 SCCS-specific function.
6189
6190 * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
6191 vc-simple-command.
6192
61932000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6194
6195 * vc.el (vc-editable-p): Renamed from vc-writable-p.
6196 (with-vc-file, vc-merge): Use vc-editable-p.
6197 (vc-do-command): Remove unused var vc-file and fix the
6198 doubly-defined `status' var. Add a user message when starting an
6199 async command.
6200 (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
6201 (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
6202 Use with-current-buffer.
6203 (vc-buffer-sync): Use unless.
6204 (vc-next-action-on-file): If the file is 'edited by read-only,
6205 make it read-write instead of trying to commit.
6206 (vc-version-diff, vc-update-change-log): Use `setq
6207 default-directory' rather than `cd'.
6208 (vc-log-edit): Don't forget to set default-directory in the
6209 buffer.
6210
6211 * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
6212 (vc-sccs-state-heuristic): Use file-writable-p instead of
6213 comparing userids.
6214 (vc-sccs-checkout): Use `unless'.
6215
6216 * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
6217 of comparing userids.
6218 (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
6219 Simplify the logic by eliminating unreachable code.
6220 (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
6221 just do a recursive call if we need to retry.
6222 (vc-rcs-checkout): Handle the case where rcs is missing by making
6223 the buffer read-write if requested and re-signalling the error.
6224
6225 * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
6226
62272000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6228
6229 * vc-hooks.el (vc-handled-backends): Docstring change.
6230 (vc-ignore-vc-files): Mark obsolete.
6231 (vc-registered): Check vc-ignore-vc-files.
6232 (vc-find-file-hook, vc-file-not-found-hook): Don't check
6233 vc-ignore-vc-files.
6234
6235 * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
6236
62372000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6238
6239 * vc.el (vc-checkout): Don't do anything special for ange-ftp
6240 files since ange-ftp already has vc-registered return nil.
6241
6242 * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
6243 (vc-sccs-workfile-version): Use with-temp-buffer and new
6244 vc-parse-buffer and don't bother setting the property.
6245 (vc-sccs-add-triple): Use with-current-buffer and
6246 find-file-noselect.
6247 (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
6248
6249 * vc-rcs.el (vc-rcs-find-most-recent-rev): New function. The code
6250 derives from the old vc-parse-buffer but uses the revision number
6251 rather than the date (much easier to compare robustly).
6252 (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the
6253 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the
6254 locking-user more directly. Check strict locking and set
6255 checkout-model appropriately.
6256 (vc-rcs-parse-locks): Remove.
6257 (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
6258 new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
6259 (vc-rcs-system-release): Use with-current-buffer and
6260 vc-parse-buffer.
6261 (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
6262
6263 * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
6264 (vc-simple-command): Docstring fix.
6265 (vc-registered): Align the way the file-handler is called with the
6266 way the function itself works.
6267 (vc-file-owner): Remove.
6268
6269 * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer. Reorder
6270 extraction of fields and call to file-attributes because of a
6271 temporary bug in rcp.el.
6272 (vc-cvs-fetch-status): Use with-current-buffer.
6273
62742000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6275
6276 * vc.el (vc-do-command): Use file-relative-name.
6277 (vc-responsible-backend): Use vc-backend if possible.
6278 (vc-create-snapshot): Improve the `interactive' spec. Add support
6279 for branches and dispatch to backend-specific `create-snapshot'.
6280 (vc-default-create-snapshot): New function, containing the bulk of
6281 the old vc-create-snapshot.
6282 (vc-retrieve-snapshot): Improve the interactive spec.
6283
6284 * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
6285 (vc-backend-hook-functions): Remove.
6286 (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
6287 (vc-backend): Reintroduce the test for `file = nil' now that I
6288 know why it was there (and added a comment to better remember).
6289
6290 * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
6291 code from vc-sccs-hooks.el.
6292 (vc-sccs-release, vc-sccs-system-release): Remove. Don't require
6293 'vc anymore.
6294 (vc-sccs-responsible-p): Use expand-file-name instead of concat
6295 and file-directory-p instead of file-exists-p.
6296 (vc-sccs-check-headers): Simplify the regexp.
6297
6298 * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
6299 from vc-rcs-hooks.el. Don't require 'vc anymore.
6300 (vc-rcs-responsible-p): Use expand-file-name instead of concat and
6301 file-directory-p instead of file-exists-p.
6302
6303 * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
6304 from vc-cvs-hooks.el.
6305 (proto vc-cvs-registered): Require 'vc-cvs instead of
6306 'vc-cvs-hooks. Don't require 'vc anymore.
6307 (vc-cvs-responsible-p): Use expand-file-name instead of concat and
6308 file-directory-p instead of file-exists-p.
6309 (vc-cvs-create-snapshot): New function, replacing
6310 vc-cvs-assign-name.
6311 (vc-cvs-assign-name): Remove.
6312
63132000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6314
6315 * vc-cvs.el (vc-cvs-header): New var.
6316
6317 * vc-rcs.el (vc-rcs-exists): Remove.
6318 (vc-rcs-header): New var.
6319
6320 * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
6321 `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
6322 (vc-sccs-header): New var.
6323
6324 * vc.el (vc-do-command): Get rid of the `last' argument.
6325 (vc-header-alist): Remove, replaced by vc-X-header.
6326 (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
6327 (vc-dired-hook): Use expand-file-name instead of concat.
6328 (vc-directory): Use file-name-as-directory.
6329 (vc-snapshot-precondition, vc-create-snapshot)
6330 (vc-retrieve-snapshot): Allow the command to operate on any
6331 directory.
6332
6333 * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
6334 just removing the 'WORKFILE argument or by removing the 'MASTER
6335 argument and replacing `file' with (vc-name file).
6336
63372000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6338
6339 * vc.el: Update Copyright and add a crude list of backend funs.
6340 (vc-writable-p): New function.
6341 (with-vc-file): Use vc-writable-p.
7f8b6551 6342 (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
7a004b71
GM
6343 (vc-register): Avoid vc-name.
6344 (vc-locking-user): Remove.
6345 (vc-steal-lock): Make the `owner' arg non-optional.
6346 (vc-merge): Use vc-writable-p instead of vc-locking-user and
6347 vc-checkout-model.
6348 (vc-default-dired-state-info): Use vc-state instead of
6349 vc-locking-user and return special strings for special states.
6350 (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
6351 and get rid of one of the special CVS cases.
6352 (vc-cancel-version): prettify error message with \\[...].
6353 (vc-rename-master): New function.
6354 (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
6355 use vc-rename-master) instead of vc-BACKEND-record-rename. Make
6356 the CVS special case generic.
6357 (vc-default-record-rename): Remove.
6358 (vc-file-tree-walk-internal): Only call FUNC for files that are
6359 under control of some VC backend and replace `concat' with
6360 expand-file-name.
6361 (vc-file-tree-walk): Update docstring.
6362 (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
6363 (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
6364
6365 * vc-sccs.el (vc-sccs-rename-file): Renamed from
6366 vc-sccs-record-rename. Use `find-file-noselect' rather than
6367 `find-file' and call `vc-rename-master' to do the actual move.
6368 (vc-sccs-diff): Remove unused `backend' variable.
6369
6370 * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
6371 to delay loading of vc-sccs until it is really used.
6372 (vc-sccs-master-templates): Preload.
6373 (vc-sccs-state): Update call to vc-sccs-parse-locks.
6374 (vc-sccs-project-dir): Remove (merged into
6375 vc-sccs-search-project-dir).
6376 (vc-sccs-search-project-dir): Rewrite using file name handling ops
6377 rather than `concat', make sure it is preloaded and don't bother
6378 to check that the file actually exists.
6379 (vc-sccs-parse-locks): Remove unused `file' argument, remove
6380 `locks' argument (use buffer's content instead) and eliminate n^2
6381 behavior.
6382
6383 * vc-rcs.el: Update Copyright.
6384 (vc-rcs-rename-file): New function.
6385 (vc-rcs-diff): Remove unused `backend' variable.
6386
6387 * vc-hooks.el: Update Copyright.
6388 (vc-backend): Don't accept a nil argument any more.
6389 (vc-up-to-date-p): Turn into a defsubst.
6390 (vc-possible-master): New function.
6391 (vc-check-master-templates): Use `vc-possible-master' and allow
6392 funs in vc-X-master-templates to return a non-existent file.
6393
6394 * vc-cvs.el: Update Copyright.
6395 (vc-cvs-diff): Remove unused `backend' variable.
7f8b6551 6396 (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
7a004b71
GM
6397
6398 * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
6399
64002000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6401
6402 * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
6403 since it can be called from vc-rcs.el.
6404 (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
6405
64062000-09-04 Andre Spiegel <spiegel@gnu.org>
6407
6408 * vc.el (vc-version-diff): Expand file name read from the
6409 minibuffer. Handle the case when a previous version number can't
6410 be guessed. Give suitable messages when there were no differences
6411 found.
6412 (vc-clear-headers): Call backend-specific implementation, if one
6413 exists.
6414 (vc-cancel-version): Made error checks generic. When done, clear
6415 headers generically, too.
6416
6417 * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
6418 from vc-clear-headers in vc.el.
6419
6420 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
6421 correctly.
6422 (vc-rcs-latest-on-branch-p): Made second argument VERSION
6423 optional. Handle the case when it's not there.
6424
64252000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6426
6427 * vc.el (vc-locking-user): Moved from vc-hooks.el.
6428
64292000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6430
6431 * vc-hooks.el (vc-loadup): Remove.
6432 (vc-find-backend-function): Use `require'. Also, handle the case
6433 where vc-BACKEND-hooks.el doesn't exist.
6434 (vc-call-backend): Cleanup.
6435
64362000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6437
6438 * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
6439 vc-rcs-grab-templates)
6440 (vc-rcs-registered): Remove. The default function works as well.
6441 * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
6442 vc-sccs-grab-templates)
6443 (vc-sccs-registered): Remove. The default function works as well.
6444
6445 * vc.el (vc-version-diff): Left out a vc- in call to
6446 vc-call-backend.
6447 (vc-default-dired-state-info, vc-default-record-rename)
6448 (vc-default-merge-news): Update for the new backend argument.
6449
6450 * vc-hooks.el (vc-find-backend-function): Return a cons cell if
6451 using the default function.
6452 (vc-call-backend): If calling the default function, pass it the
6453 backend as first argument. Update the docstring accordingly.
6454 (vc-default-state-heuristic, vc-default-mode-line-string): Update
6455 for the new backend argument.
6456 (vc-make-backend-sym): Renamed from vc-make-backend-function.
6457 (vc-find-backend-function): Use the new name.
6458 (vc-default-registered): New function.
6459
64602000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6461
6462 * vc.el (vc-merge): Use vc-find-backend-function.
6463
6464 * vc-hooks.el (vc-backend-functions): Remove.
6465 (vc-loadup): Don't setup 'vc-functions.
6466 (vc-find-backend-function): New function.
6467 (vc-call-backend): Use above fun and populate 'vc-functions
6468 lazily.
6469 (vc-backend-defines): Remove.
6470
64712000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6472
6473 * vc.el (vc-register): Put a FIXME note for a newly found bug.
6474 Call vc-call-backend without the leading vc-.
6475 (vc-responsible-backend, vc-finish-logentry, vc-annotate)
6476 (vc-check-headers): Call vc-call-backend without the leading vc-.
7f8b6551 6477 (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
7a004b71
GM
6478 (vc-annotate-display): Replace confusing use of `cond' with `or'.
6479 Call vc-call-backend without the leading vc-.
6480
6481 * vc-cvs.el (tail): Provide vc-cvs.
6482 * vc-sccs.el (tail): Provide vc-sccs.
6483 * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
6484
6485 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
6486 (vc-make-backend-function, vc-call): Pass names without leading
7f8b6551 6487 `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
7a004b71
GM
6488 (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
6489 (vc-call-backend): Always try to load vc-X-hooks.
6490 (vc-registered): Remove vc- in call to vc-call-backend.
6491
64922000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6493
6494 * vc.el (vc-process-filter): New function.
6495 (vc-do-command): Setup `vc-process-filter' for the async process.
6496 (vc-maybe-resolve-conflicts): New function to reduce
6497 code-duplication. Additionally, it puts the buffer in
6498 `smerge-mode' if applicable.
6499 (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
6500 calling `merge-news'.
7f8b6551 6501 (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
7a004b71
GM
6502 (vc-log-edit): New function. Replacement for `vc-log-mode' by
6503 interfacing to log-edit.el.
6504 (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
6505 log-edit is available.
6506 (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
6507
65082000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6509
6510 * vc.el (vc-register): Remove `vc-buffer-backend' setup.
6511 (vc-log-mode-map): New name for vc-log-entry-mode and merge the
6512 defvar and the initialization.
6513 (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
6514
6515 * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
6516 (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
6517
7f8b6551 6518 * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
7a004b71
GM
6519
65202000-09-04 Andre Spiegel <spiegel@gnu.org>
6521
6522 * vc.el (vc-file-clear-masterprops): Removed.
6523 (vc-checkin, vc-revert-buffer): Removed calls to the above.
6524 (vc-version-diff): Use buffer-size without argument.
6525 (vc-register): Heed vc-initial-comment.
6526
6527 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
6528 default branch.
6529
6530 * vc-rcs.el (vc-rcs-register): Parse command output to find master
6531 file name and workfile version.
6532 (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
6533
6534 * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
6535 vc-file-clear-masterprops.
6536
6537 * vc-sccs.el (vc-sccs-checkout): Removed call to
6538 vc-file-clear-masterprops. If writable, set vc-state to 'edited
6539 rather than user login name.
6540
6541
65422000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6543
6544 * vc.el (vc-workfile-unchanged-p): Remove unused argument
6545 `want-differences-if-changed' and simplify.
6546 (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
6547 (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
6548 output (which is invalid for async vc-diff) to decide whether to
6549 do the revert silently or not.
6550
65512000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6552
6553 * vc-hooks.el (vc-loadup): Load files quietly.
6554 (vc-call-backend): Oops, brain fart.
6555
65562000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6557
6558 * vc-cvs.el (vc-cvs-state): Typo.
7f8b6551 6559 (vc-cvs-merge-news): Return the status code rather than the error msg.
7a004b71
GM
6560
65612000-09-04 Andre Spiegel <spiegel@gnu.org>
6562
6563 * vc.el (with-vc-file, vc-next-action, vc-version-diff)
6564 (vc-dired-mark-locked): Replaced usage of vc-locking-user with
6565 vc-state or vc-up-to-date-p.
6566 (vc-merge): Use vc-backend-defines to check whether merging is
6567 possible. Set state to 'edited after successful merge.
6568
6569 * vc-hooks.el (vc-locking-user): If locked by the calling user,
6570 return that name. Redocumented.
6571
65722000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6573
6574 * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
6575 new `vc-state' semantics.
6576 (vc-finish-steal): Set 'vc-state to 'edited rather than setting
6577 'vc-locking-user to the current user.
6578 (vc-merge): Inline vc-backend-merge. Comment out code that I
6579 don't understand and hence can't adapt to the new `vc-state' and
6580 `vc-locking-user' semantics.
6581 (vc-backend-merge): Remove.
6582
6583 * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
6584 rather than 'vc-locking-user.
6585
6586 * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
6587
6588 * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
6589 (vc-state): Don't use 'reserved any more. Just use the same
6590 convention as the one used for vc-<backend>-state where the
6591 locking user (as a string) is returned.
6592 (vc-locking-user): Update, based on the above convention. The
6593 'vc-locking-user property has disappeared.
7f8b6551 6594 (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
7a004b71
GM
6595
6596 * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
6597 with a heuristic one.
6598 (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
6599 (vc-cvs-checkin): Do a trivial parse to set the state in case of
6600 error. That allows us to get to 'needs-merge even in the
6601 stay-local case. There's still no way to detect 'needs-patch in
6602 such a setup (or to force an update for that matter).
6603 (vc-cvs-logentry-check): Remove, the default works as well.
6604
66052000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6606
7f8b6551 6607 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
7a004b71
GM
6608
6609 * vc.el (vc-do-command): kill-all-local-variables, to reset any
6610 major-mode in which the buffer might have been put earlier. Use
6611 `remove' and `when'. Allow `okstatus' to be `async' and use
6612 `start-process' in this case.
6613 (vc-version-diff): Handle the case where the diff looks empty
6614 because of the use of an async process.
6615
66162000-09-04 Andre Spiegel <spiegel@gnu.org>
6617
6618 * vc.el (vc-next-action-on-file): Removed optional parameter
6619 `simple'. Recompute state unconditionally.
6620 (vc-default-toggle-read-only): Removed.
6621
6622 * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
6623 (vc-toggle-read-only): Undid prev change.
6624
6625 * vc-cvs.el (vc-cvs-stay-local): Renamed from
6626 vc-cvs-simple-toggle. Redocumented.
6627 (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
6628 (vc-cvs-toggle-read-only): Removed.
6629
66302000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6631
7f8b6551 6632 * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
7a004b71
GM
6633 (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
6634 (vc-release-greater-or-equal-p): Move to vc-rcs.el.
6635 (vc-file-clear-masterprops): Braindead "fix". It was a nop and
6636 still is. So maybe it should be removed.
6637 (vc-head-version, vc-find-binary): Remove.
6638 (vc-recompute-state): Move from vc-hooks.el.
6639 (vc-next-action-on-file): Add a `simple' argument to allow
6640 avoiding the `recompute' step (use for vc-cvs-simple-toggle).
7f8b6551
SM
6641 (vc-default-toggle-read-only, vc-default-record-rename): New funs.
6642 (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
7a004b71
GM
6643 (vc-dired-mode-map): Properly defvar it.
6644 (vc-print-log): Call log-view-mode if available.
6645 (small-temporary-file-directory): defvar instead of use boundp.
6646 (vc-merge-news): Moved to vc-cvs.el.
6647 (vc-default-merge-news): New function.
6648
6649 * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
6650 (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
6651 (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
6652 unknown `vc-latest-version' function. It should probably refer to
6653 vc-workfile-version or somesuch, but it's very unclear to me and I
6654 don't have SCCS to test things.
6655
6656 * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
6657 (vc-sccs-state-heuristic): Fix typo.
6658 (vc-sccs-workfile-unchanged-p): Add missing argument.
6659
6660 * vc-rcs.el: Require vc and vc-rcs-hooks.
6661 (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
6662 (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
6663 (vc-release-greater-or-equal-p): Move from vc.
6664 (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
6665 vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
6666 (vc-rcs-checkout): Add a missing `new-version' argument in the
7f8b6551 6667 call to vc-rcs-latest-on-branch-p. Hopefully that was the right one.
7a004b71
GM
6668
6669 * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
6670 (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
6671 (vc-rcs-latest-on-branch-p): Use the `version' argument rather
6672 than the apparently unbound `workfile-version'.
6673
6674 * vc-hooks.el (vc-master-templates): Def the obsolete var.
6675 (vc-file-prop-obarray): Use `make-vector'.
6676 (vc-backend-functions): Add new hookable functions
6677 vc-toggle-read-only, vc-record-rename and vc-merge-news.
6678 (vc-loadup): If neither backend nor default functions exist, use
6679 the backend function rather than nil.
6680 (vc-call-backend): If the function if not bound yet, try to load
6681 the non-hook file to see if it provides it.
6682 (vc-call): New macro plus use it wherever possible.
6683 (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
6684 nor `vc-find-binary' since it's only called from
7f8b6551 6685 vc-mistrust-permission which is only used once the backend is known.
7a004b71
GM
6686 (vc-checkout-model): Fix parenthesis.
6687 (vc-recompute-state, vc-prefix-map): Move to vc.el.
6688
7f8b6551 6689 * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
7a004b71
GM
6690 (vc-cvs-release, vc-cvs-system-release): Remove.
6691 (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
6692 (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
6693 status symbols.
6694 (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
6695 (vc-cvs-toggle-read-only): First cut at a function to allow a
6696 cvs-status-free vc-toggle-read-only.
6697 (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
6698 (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
6699 vc-cvs-status. Also set vc-state rather than vc-locking-user.
6700 (vc-cvs-checkout): Modify access rights directly if the user
6701 requested not to use `cvs edit'. And refresh the mode line.
6702
6703 * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
6704 (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
6705
67062000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6707
6708 * vc-cvs.el (vc-cvs-checkout): Docstring fix. Added a `(if
6709 workfile' that got lost when the code was extracted from vc.el.
6710 And merged the tail with the rest of the code (not possible in the
6711 old vc.el where the tail was shared among all backends). And
6712 explicitly set the state to 'edited if `writable' is set.
6713
6714 * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
6715 (vc-cvs-state): Be careful to return the value from
6716 vc-cvs-parse-state.
6717 (vc-cvs-parse-status): Use expand-file-name. Don't set 'vc-state
6718 property but return it instead. Also be careful to handle a nil
6719 or "" `rev' when workfile is non-nil (it was handled properly when
6720 workfile was nil).
6721
6722 * vc.el: Removed those pesky unnecessary `(function' quotes.
6723 (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
6724 directly in the defvar.
6725 (vc-do-command): Bind inhibit-read-only so as to properly handle
6726 the case where the destination buffer has been made read-only.
6727 (vc-diff): Delegate to vc-version-diff in all cases.
7f8b6551 6728 (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
7a004b71
GM
6729 (vc-annotate-mode-variables): Removed (code moved partly to
6730 defvars and partly to vc-annotate-add-menu).
6731 (vc-annotate-mode): Turned into a derived-mode.
6732 (vc-annotate-add-menu): Moved in code in
6733 vc-annotate-mode-variables.
6734 (vc-update-change-log): Use make-temp-file if available.
6735
67362000-09-04 Martin Lorentzson <martinl@delysid.gnu.org>
6737
6738 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
6739 `vc-checkout-model' updated to `vc-cvs-update-model'.
6740
67412000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6742
6743 * vc.el (vc-next-action-on-file): Added handling of state
6744 `unlocked-changes'.
6745 (vc-checkout-carefully): Is now practically obsolete, unless the
6746 above is too slow to be enabled unconditionally.
6747 (vc-update-change-log): Fixed typo.
6748
6749 * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
6750
7f8b6551
SM
6751 * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
6752 Now handles state `unlocked-changes'.
6753 (vc-sccs-workfile-unchanged-p): New function, to support the above.
7a004b71
GM
6754
6755 * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
6756
6757 * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
6758 (vc-rcs-fetch-master-state): Bug fixes. Recognize state
6759 `unlocked-changes'.
6760 (vc-rcs-workfile-unchanged-p): Renamed from
6761 `vc-rcs-workfile-unchanged'. This is not a real backend-specific
6762 function yet, but supposed to become one soon.
6763
6764 * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
6765 `vc-steal-lock'.
6766 (vc-call-backend): Changed error message.
6767 (vc-state): Added description of state `unlocked-changes'.
6768
67692000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6770
6771 * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
6772 always return t in CVS-controlled directories.
6773
6774 * vc.el (vc-responsible-backend): New function.
6775 (vc-register): Largely rewritten.
6776 (vc-admin): Removed (implementation moved into vc-register).
6777 (vc-checkin): Redocumented.
6778 (vc-finish-logentry): If no backend defined yet (because we are in
6779 the process of registering), use the responsible backend.
6780
6781 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
6782 Updated function lists.
6783 (vc-call-backend): Fixed typo.
6784
7f8b6551
SM
6785 * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
6786 New functions.
6787 (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
6788 Removed query option. Redocumented.
7a004b71
GM
6789
67902000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6791
6792 * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
6793
6794 * vc.el: Updated callers of `vc-checkout-required' to use
6795 `vc-checkout-model'.
6796
67972000-09-04 Martin Lorentzson <martinl@gnu.org>
6798
6799 * vc-rcs.el (vc-rcs-backend-release-p): function added. other
6800 stuff updated to reference this function instead of the old
6801 `vc-backend-release-p'.
6802
68032000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6804
6805 * vc-sccs-hooks.el (vc-uses-locking): Renamed to
6806 vc-checkout-model. Return appropriate values. Updated callers.
6807
68082000-09-04 Martin Lorentzson <martinl@gnu.org>
6809
7f8b6551 6810 * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
7a004b71
GM
6811 (vc-backend-revert): Function moved into `vc-revert';
6812 `vc-next-action' must be updated to accomodate this change.
6813 (vc-backend-steal): Function moved into `vc-finish-steal'.
6814 (vc-backend-logentry-check): Function moved into
6815 `vc-finish-logentry'.
6816 (vc-backend-printlog): Function moved into `vc-print-log'.
6817 (vc-backend-uncheck): Function moved into `vc-cancel-version'.
6818 (vc-backend-assign-name): Function moved into
6819 `vc-create-snapshot'.
6820
68212000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6822
6823 * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
7f8b6551
SM
6824 Rename to vc-checkout-model. Return appropriate values.
6825 Update callers.
7a004b71 6826
7f8b6551 6827 * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
7a004b71 6828 to vc-checkout-model.
7f8b6551
SM
6829 (vc-checkout-required): Rename to vc-checkout-model.
6830 Re-implement and re-comment.
7a004b71
GM
6831 (vc-after-save): Use vc-checkout-model.
6832
68332000-09-04 Martin Lorentzson <martinl@gnu.org>
6834
7f8b6551
SM
6835 * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
6836 Update to use the vc-BACKEND-diff functions instead.
6837 `vc-diff' is now working.
7a004b71 6838
7f8b6551 6839 * vc-rcs.el (vc-rcs-logentry-check): New function.
7a004b71 6840
7f8b6551 6841 * vc-cvs.el (vc-cvs-logentry-check): New function.
7a004b71
GM
6842
6843 * vc-sccs.el (vc-sccs-diff): Function changed name from
6844 `vc-backend-diff'. This makes `vc-diff' work.
6845
7f8b6551 6846 * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
7a004b71 6847 of functions possibly implemented in a vc-BACKEND library.
7f8b6551 6848 (vc-checkout-required): Fix bug that caused an error to be
7a004b71
GM
6849 signaled during `vc-after-save'.
6850
7f8b6551
SM
6851 * vc.el: Fix typo.
6852 This checkin is made with our new VC code base for the very first time.
6853 A simple `(vc-checkin (buffer-file-name))' was used to perform it.
7a004b71
GM
6854
6855 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
6856 `vc-checkout-required' updated to `vc-cvs-uses-locking'.
6857
6858 * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
6859 updated to `vc-uses-locking'.
7f8b6551 6860 (vc-checkout-required): Call to backend function.
7a004b71
GM
6861 `vc-checkout-required' updated to `vc-uses-locking' instead.
6862
6863 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
6864 `vc-checkout-required' updated to `vc-rcs-uses-locking'.
6865
7f8b6551 6866 * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
7a004b71 6867 to match the split into various backends.
7f8b6551 6868 (vc-backend-checkin): Remove. Merge with `vc-checkin'.
7a004b71
GM
6869 (vc-retrieve-snapshot): Bug fix.
6870
68712000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6872
6873 * vc-sccs.el (vc-sccs-release): Doc fix.
6874
68752000-09-04 Martin Lorentzson <martinl@gnu.org>
6876
6877 * vc.el (vc-next-action-on-file): Bug found and fixed.
6878 (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
6879 (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
6880
6881 * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
6882 (vc-rcs-checkout): Name space cleaned up. No more revision number
6883 crunching function names that are not prefixed with vc-rcs.
6884 (vc-rcs-checkout-model): Function added. References to
6885 `vc-checkout-model' replaced.
6886
68872000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6888
6889 * vc.el (vc-next-action-on-file): Rewritten for the new state model.
6890 (vc-backend-merge-news): Renamed to `vc-merge-news'. (Specific parts
6891 still need to be split, and implemented for RCS).
6892
68932000-09-04 Martin Lorentzson <martinl@gnu.org>
6894
6895 * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
6896
6897 * vc-sccs.el (vc-sccs-admin): Added the query-only option as
6898 required by the vc.el file.
6899
6900 * vc-rcs.el (vc-rcs-admin): Added the query-only option as
6901 required by the vc.el file.
6902 (vc-rcs-exists): Function added.
6903
6904 * vc-cvs.el (vc-cvs-admin): Added the query-only option as
6905 required by the vc.el file.
6906
6907 * vc.el (vc-admin): Updated to handle selection of appropriate
6908 backend. Current implementation is crufty and need re-thinking.
6909
6910 * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
6911
69122000-09-04 Martin Lorentzson <martinl@gnu.org>
6913
6914 * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
6915 beginning of annotate buffers correctly.
6916
6917 * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
6918 (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
6919 functionality updated quite a lot to support multiple backends.
6920 Variables `vc-annotate-mode', `vc-annotate-buffers',
6921 `vc-annotate-backend' added.
6922
6923 * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
6924 `vc-annotate-difference' added to supported backend functions.
6925
69262000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6927
6928 * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
6929 Use with-temp-file instead of /bin/sh. Merged from mainline
6930
69312000-09-04 Martin Lorentzson <martinl@gnu.org>
6932
6933 * vc-sccs-hooks.el (vc-sccs-registered): Updated.
6934
6935 * vc-rcs-hooks.el (vc-rcs-registered): Updated.
6936
6937 * vc-cvs-hooks.el (vc-cvs-registered): Updated.
6938
69392000-09-04 Martin Lorentzson <martinl@gnu.org>
6940
6941 * vc-hooks.el: vc-state-heuristic added to
6942 vc-backend-hook-functions.
6943
6944 * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
6945
6946 * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
6947
7f8b6551
SM
6948 * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
6949 `vc-uses-locking' to `vc-checkout-required'. Rename the `locked'
7a004b71
GM
6950 state to `reserved'.
6951
6952 * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
6953 `vc-checkout-required'. Rename the `locked' state to `reserved'.
6954
69552000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6956
7f8b6551 6957 * vc-rcs-hooks.el: Implement new state model. Hardly anything
7a004b71
GM
6958 untouched.
6959
7f8b6551 6960 * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
7a004b71 6961
7f8b6551 6962 * vc.el (vc-update-change-log): Use small-temporary-file-directory,
7a004b71
GM
6963 if defined. (Merged from main line, slightly adapted.)
6964
6965 * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
6966 millenium problem (merged from mainline).
6967
69682000-09-04 Martin Lorentzson <martinl@gnu.org>
6969
6970 * vc-cvs.el: Split the annotate feature into a BACKEND-specific
6971 part and moved the non-BACKEND stuff to vc.el.
6972
6973 * vc.el: Split the annotate feature into a BACKEND specific part
6974 and moved it from the vc-cvs.el file to this one.
6975
69762000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6977
7f8b6551
SM
6978 * vc-hooks.el: Implement new state model.
6979 (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
6980 (vc-locking-user): Simplify. Now only needed if the file is
7a004b71 6981 locked by somebody else.
7f8b6551 6982 (vc-lock-from-permissions): Remove. Functionality is in
7a004b71
GM
6983 vc-sccs-hooks.el and vc-rcs-hooks.el now.
6984 (vc-mode-line-string): New name for former vc-status. Adapted.
7f8b6551 6985 (vc-mode-line): Adapt to use the above. Remove optional parameter.
7a004b71 6986
7f8b6551
SM
6987 * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
6988 Various simplifications and adaptations all over the place.
7a004b71 6989
7f8b6551
SM
6990 * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
6991 Simplify and adapt the rest.
7a004b71 6992
7f8b6551 6993 * vc.el (vc-resynch-window): Add TODO comment: check for
7a004b71 6994 interaction with view mode according to recent RCS change.
7f8b6551 6995 (vc-backend-merge-news): Merge "CMUP" patch from mainline.
7a004b71
GM
6996
69972000-09-04 Martin Lorentzson <martinl@gnu.org>
6998
7f8b6551 6999 * vc.el: Convert the remaining function comments to docstrings.
7a004b71
GM
7000
70012000-09-04 Martin Lorentzson <martinl@gnu.org>
7002
7003 * vc.el (vc-backend-release, vc-release-greater-or-equal)
7004 (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
7005 (vc-minor-part, vc-previous-version): Functions that operate and
7006 compare revision numbers got proper documentation. Comments added
7007 about their possible removal.
7008
70092000-09-04 Martin Lorentzson <martinl@gnu.org>
7010
7011 * vc.el (vc-latest-on-branch-p): Function removed and replaced in
7012 the vc-backend.el files.
7013
7014 * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
7015
7016 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
7017 (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
7018 (vc-rcs-previous-version): Functions added.
7019
7020 * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
7021
7022 * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
7023
70242000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7025
7026 * vc-hooks.el (vc-master-templates): Is really obsolete.
7f8b6551 7027 Comment out the definition for now. What is the right procedure
7a004b71
GM
7028 to get rid of it?
7029 (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
7030 rewritten.
7f8b6551 7031 (vc-default-registered): Remove.
7a004b71
GM
7032 (vc-check-master-templates): New function; does mostly what the
7033 above did before.
7034 (vc-locking-user): Don't rely on the backend to set the property.
7035
7036 * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
7f8b6551 7037 Rewrite documentation.
7a004b71
GM
7038 (vc-rcs-templates-grabbed): New variable.
7039 (vc-rcs-grab-templates): New function.
7f8b6551 7040 (vc-rcs-registered): Rewrite to use above mechanism.
7a004b71
GM
7041
7042 * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
7f8b6551 7043 Rewrite documentation.
7a004b71
GM
7044 (vc-sccs-templates-grabbed): New variable.
7045 (vc-sccs-grab-templates): New function.
7f8b6551
SM
7046 (vc-sccs-registered): Rewrite to use above mechanism.
7047 (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
7048 Don't throw the result, simply return it.
7a004b71 7049
7f8b6551
SM
7050 * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
7051 (vc-cvs-find-master): Remove. Code is now in vc-cvs-registered.
7052 (vc-cvs-registered): Does the check itself now. Simplify.
7a004b71 7053
7f8b6551 7054 * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
7a004b71
GM
7055 from main line.
7056
70572000-09-04 Martin Lorentzson <martinl@gnu.org>
7058
7f8b6551 7059 * vc-cvs.el (vc-cvs-diff): New function.
7a004b71 7060
7f8b6551 7061 * vc-sccs.el (vc-sccs-diff): New function.
7a004b71 7062
7f8b6551
SM
7063 * vc-rcs.el (vc-rcs-diff): New function.
7064 (vc-rcs-checkout): Bug (typo) found and fixed.
7065 (vc-rcs-register-switches): New variable.
7a004b71
GM
7066
7067 * vc.el (vc-backend-diff): Function removed and placed in the
7068 backend files.
7069
70702000-09-04 Martin Lorentzson <martinl@gnu.org>
7071
7072 * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
7073
7074 * vc.el (vc-backend-checkout): Function removed and replaced in
7075 the vc-backend.el files.
7076
7077 * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
7078
7079 * vc.el (vc-backend-admin): Removed and replaced in the
7080 vc-backend.el files.
7081
7082 * vc.el (Martin): Removed all the annotate functionality since it
7083 is CVS backend specific.
7084
70852000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7086
7087 * spec.txt: Added specification of vc-state.
7088
7089 * vc-sccs-hooks.el (vc-sccs-master-properties):
7f8b6551 7090 Remove handling of vc-latest-version and
7a004b71
GM
7091 vc-your-latest-version. What used to be vc-latest-version, is now
7092 returned as vc-workfile-version.
7f8b6551 7093 (vc-sccs-workfile-version): Adapt.
7a004b71
GM
7094
70952000-09-04 Dave Love <fx@gnu.org>
7096
7097 * vc.el: [Merged from mainline.]
7098 (vc-dired-mode): Make the dired-move-to-filename-regexp
7099 regexp match the date, to avoid treating date as file size.
7100 Add YYYY S option to WESTERN/
7101
71022000-09-04 Dave Love <fx@gnu.org>
7103
7104 * vc.el: Require `compile' when compiling.
7105 (vc-logentry-check-hook): New option.
7106 (vc-steal-lock): Use compose-mail.
7107 (vc-dired-mode-map): Defvar when compiling.
7108 (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
7109 vc-sccs.el and renamed. Callers changed.
7110 (vc-backend-checkout, vc-backend-logentry-check)
7111 (vc-backend-merge-news): Doc fix.
7112 (vc-default-logentry-check): New function.
7113 (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
7114 (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
7115 (vc-backend-merge): Doc fix. Use backend functions.
7116 (vc-check-headers): Use backend functions.
7117
7118 * vc-cvs.el: Require vc when compiling.
7119 (vc-cvs-register-switches): Doc fix.
7120 (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
7121 (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
7122 (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
7123 New functions (code from vc.el).
7124 (vc-annotate-display-default): Fix interactive spec.
7125 (vc-annotate-time-span): Doc fix.
7126
7127 * vc-rcs.el: Require vc when compiling.
7128 (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
7129 (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
7130 (vc-rcs-checkin): New functions (code from vc.el).
7131 (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
7132 Doc fix.
7133 (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release).
7134
7135 * vc-sccs.el: Require vc when compiling.
7136 (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
7137 (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
7138 (vc-sccs-revert)
7139 (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
7140 from vc.el).
7141 (vc-sccs-add-triple, vc-sccs-record-rename)
7142 (vc-sccs-lookup-triple): Moved from vc.el and renamed.
7143 (vc-sccs-admin): Doc fix.
7144
71452000-09-04 Martin Lorentzson <martinl@gnu.org>
7146
7147 * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
7148 (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
7149 (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
7150 from vc.el.
7151
7152 * vc-sccs.el (vc-admin-sccs): Added from vc.el
7153
7154 * vc-cvs.el: Moved the annotate functionality from vc.el.
7155 (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
7156
71572000-09-04 Dave Love <fx@gnu.org>
7158
7159 * vc.el (vc-backend-release): Call vc-system-release.
7160
7161 * vc-sccs.el (vc-sccs-system-release):
7162 Renamed from vc-sccs-backend-release.
7163
7164 * vc-rcs.el (vc-rcs-system-release):
7165 Renamed from vc-rcs-backend-release.
7166
7167 * vc-cvs.el (vc-cvs-system-release):
7168 Renamed from vc-cvs-backend-release.
7169
71702000-09-04 Dave Love <fx@gnu.org>
7171
7172 * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
7173 backend files.
7174 (vc-backend-release): Dispatch to backend functions.
7175 (vc-backend-release-p): Don't mention CVS, RCS. [The SCCS case
7176 probably needs attention.]
7177
7178 * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
7179 (vc-sccs-backend-release): New function.
7180
7181 * vc-cvs.el (vc-cvs-release): Moved from vc.el.
7182 (vc-cvs-backend-release): New function.
7183
7184 * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
7185 Doc fix.
7186 (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
7187 (vc-default-dired-state-info): New function.
7188 (vc-dired-state-info): Dispatch to backends.
7189 (vc-dired-hook): Doc fix. Simplify, pending removal of CVS specifics.
7190
7191 * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
7192 from vc.el and renamed.
7193
71942000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7195
7196 * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
7197 (vc-version-other-window, vc-backend-assign-name): Removed
7198 references to vc-latest-version; sometimes changed into
7199 vc-workfile-version.
7200
7201 * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
7202 vc-rcs-master-workfile-version.
7203 (vc-rcs-workfile-version): Use the above. Don't call
7204 vc-latest-version (that was unreachable code, anyway).
7205 (vc-rcs-fetch-master-properties): Doc fix.
7206
7207 * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
7208 (vc-backend-hook-functions): Removed them from this list, too.
7209 (vc-fetch-properties): Removed.
7210 (vc-workfile-version): Doc fix.
7211
7212 * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
7213 (vc-rcs-workfile-version, vc-rcs-locking-user)
7214 (vc-rcs-uses-locking): Use it.
7215
7216 * vc-hooks.el (vc-consult-rcs-headers):
7217 Moved into vc-rcs-hooks.el, under the name
7218 vc-rcs-consult-headers.
7219
7220 * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
7221 headers.
7222 (vc-cvs-find-master): Use this name only; correct different
7223 versions of the name.
7224
7225 * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
7226 New functions.
7227 (vc-sccs-locking-user): Use the latter.
7228
7229 * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
7230 New functions.
7231
7232 * vc-hooks.el (vc-master-locks, vc-master-locking-user):
7233 Moved into both
7234 vc-rcs-hooks.el and vc-sccs-hooks.el. These properties and access
7235 functions are implementation details of those two backends.
7236
72372000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7238
7239 * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
7240 (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
7241
7242 * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
7243 (vc-sccs-parse-locks): SCCS-specific code moved here from
7244 vc-hooks.
7245
7246 * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
7247 code moved here from vc-hooks.
7248
7249 * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
7250 into back-end specific parts and removed. Callers not updated
7251 yet; because I guess these callers will disappear into back-end
7252 specific files anyway.
7253
72542000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7255
7256 * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
7257 (vc-backend-checkout): Changed calls to `vc-checkout-model' to
7258 `vc-uses-locking'.
7259
7260 * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
7261 Store yes/no in the property, and return t/nil. Updated all
7262 callers.
7263
7264 * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
7265 vc-sccs-uses-locking. Don't set property.
7266 (vc-sccs-locking-user): Don't set property.
7267
7268 * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
7269 vc-cvs-uses-locking. Don't set property here; leave that to
7270 vc-hooks.
7271 (vc-cvs-locking-user): Reflect above change. Streamlined.
7272
7273 * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
7274 vc-rcs-uses-locking.
7275 (vc-rcs-locking-user): Reflect above change.
7276
72772000-09-04 Dave Love <fx@gnu.org>
7278
7279 * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
7280
7281 * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
7282
7283 * vc-hooks.el (vc-checkout-model): Punt to backends.
7284
7285 * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
7286
7287 * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
7288
7289 * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
7290 New functions.
7291
7292 * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
7293 New functions.
7294
7295 * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
7296 (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
7297
7298 * vc-hooks.el (vc-default-locking-user): New function.
7299 (vc-locking-user, vc-workfile-version): Punt to backends.
7300
73012000-09-04 Dave Love <fx@gnu.org>
7302
7303 * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
7304 (vc-master-workfile-version): Moved from vc-hooks.
7305
7306 * vc-rcs-hooks.el: Fix duplicate code in last change.
7307
7308 * vc-rcs-hooks.el: Require vc-hooks when compiling.
7309 (vc-rcs-master-templates): Improve :type.
7310 (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
7311 vc-master-workfile-version): Moved from vc-hooks.
7312
7313 * vc-sccs-hooks.el: Require vc-hooks when compiling.
7314 (vc-sccs-master-templates): Improve :type.
7315 (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
7316
7317 * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
7318
7319 * vc-cvs-hooks.el: Require vc-hooks when compiling.
7320 (vc-cvs-master-templates): Improve :type. Use
7321 vc-cvs-find-cvs-master.
7322 (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
7323 from vc-hooks.
7324 (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
7325
7326 * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
7327 Moved to vc-cvs-hooks.
7328
7329 * vc-hooks.el: Add doc strings in various places. Simplify the
7330 minor mode setup.
7331 (vc-handled-backends): New user variable.
7332 (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
7333 simplification.
7334
73352000-09-04 Dave Love <fx@gnu.org>
7336
7337 * vc.el: Some doc fixes for autoloaded and interactive functions.
7338 Fix compilation warnings from ediff stuff.
7339 (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
7340
7341 * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
7342
7343 * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
7344
7345 * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
7346
73472000-09-04 Dave Love <fx@gnu.org>
7348
7349 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
7350 New variable.
7351 (vc-make-backend-function, vc-loadup, vc-call-backend)
7352 (vc-backend-defines): New functions.
7353
7354 * vc-hooks.el: Various doc fixes.
7355 (vc-default-back-end, vc-follow-symlinks): Custom fix.
7356 (vc-match-substring): Function removed. Callers changed to use
7357 match-string.
7358 (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
7359 Simplify.
7360
73612000-09-04 Dave Love <fx@gnu.org>
7362
7363 * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
7364 type.
7365 (vc-sccs-project-dir, vc-search-sccs-project-dir)
7366 (vc-sccs-registered): Doc fix.
7367
7368 * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
7369 (vc-cvs-registered): Doc fix.
7370
7371 * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
7372 (vc-rcs-registered): Doc fix.
7373
73742000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7375
7376 * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
7377
7378 * vc-hooks.el: vc-registered has been renamed
7379 vc-default-registered. Some functions have been moved to the
7380 backend specific files. they all support the
7381 vc-BACKEND-registered functions.
7382
73832000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7384
7385 * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
7386
7387 * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
7388
a033ea13
DL
73892000-09-04 Dave Love <fx@gnu.org>
7390
179fc9ef
DL
7391 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
7392 menu-bar-update-hook.
7393
7394 * help.el (help-manyarg-func-alist): Add
7395 find-operation-coding-system.
7396
a033ea13
DL
7397 * wid-edit.el (widget-sexp-validate): Fix garbled code.
7398
7399 * custom.el (custom-set-variables): Print message about errors in
7400 setting.
7401
f8803e97
AI
74022000-09-03 Andrew Innes <andrewi@gnu.org>
7403
7404 * makefile.w32-in: Change to DOS line endings.
7405
59836110
EZ
74062000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
7407
7408 * mouse.el (mouse-popup-menubar): Supply the prompt string for
7409 minor-mode keymaps, if they don't have one.
7410
5514ba5c
EZ
74112000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
7412
7413 * eshell/esh-module.el (eval-when-compile): Don't lose if
7414 esh-module.el's file name is truncated to DOS 8+3 limits.
7415
79cf8e80
JW
74162000-09-01 John Wiegley <johnw@gnu.org>
7417
7418 * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
7419 predicate, which caused entries in the completion list to be
7420 doubled.
7421
74222000-08-30 John Wiegley <johnw@gnu.org>
7423
7424 * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
7425 sending to subprocesses. Also, hook pre-command-hook if
7426 `eshell-send-direct-to-subprocesses' is non-nil.
7427 (eshell-send-direct-to-subprocesses): New config variable. If t,
7428 subprocess input is send immediately.
7429 (eshell-toggle-direct-send): New function.
7430 (eshell-self-insert-command): New function.
7431 (eshell-intercept-commands): New function.
7432 (eshell-send-input): If direct subprocess sending is enabled,
7433 don't echo any input to the Eshell buffer. Let the subprocess
7434 handle that. This requires "stty echo" in bash, for example.
7435
74362000-08-28 John Wiegley <johnw@gnu.org>
7437
7438 * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
7439 completion function for Eshell's implementation of `unset'.
7440
778911b9
EZ
74412000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
7442
7443 * info.el (Info-directory-list): Doc fix.
7444
05d07b49
PB
74452000-08-31 Peter Breton <pbreton@ne.mediaone.net>
7446
9b4a7800 7447 * filecache.el (file-cache-add-directory-using-find): Don't quote
05d07b49
PB
7448 wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
7449
9941d4c7
KH
74502000-08-31 Kenichi Handa <handa@etl.go.jp>
7451
7452 * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
7453 coding systems.
7454
af9ba8ad
AI
74552000-08-30 Andrew Innes <andrewi@gnu.org>
7456
7457 * timer.el (run-with-idle-timer): Undo last change, so that timer
7458 is not activated immediately if Emacs is already idle. Some
7459 existing code relies on this behaviour.
7460
caccd8f2
MB
74612000-08-30 Miles Bader <miles@gnu.org>
7462
7463 * frame.el (set-frame-font): Do completion of font-name for
7464 interactive use.
7465
b64c0a1c
KH
74662000-08-30 Kenichi Handa <handa@etl.go.jp>
7467
7468 * international/quail.el (quail-start-translation): Bind locally
7469 last-command-event, last-command, and this-command.
7470 (quail-start-conversion): Likewise.
75cf0095 7471 (quail-self-insert-command): Fix docstring.
b64c0a1c 7472
fd5f61d3
GM
74732000-08-29 Gerd Moellmann <gerd@gnu.org>
7474
7475 * progmodes/executable.el
7476 (executable-make-buffer-file-executable-if-script-p): Check that
7477 buffer contains at least 2 characters.
7478
5b671d04
EZ
74792000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
7480
7481 * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
7482
485d9513
DL
74832000-08-29 Dave Love <fx@gnu.org>
7484
a39fb83d
DL
7485 * diff-mode.el (diff-mode) <defgroup>: Add :version.
7486 (diff-mode-shared-map): Bind mouse-2.
7487 (diff-imenu-generic-expression): New variable.
7488 (diff-mode): Use it.
7489
485d9513
DL
7490 * mouse.el (mouse-major-mode-menu): Use local-key-binding.
7491 (mouse-popup-menubar): Add minor mode menus.
7492 (popup-menu): Check for lookup-key returning number.
7493
ba3478d9
MB
74942000-08-29 Miles Bader <miles@gnu.org>
7495
7496 * comint.el (comint-send-input): Create overlays using the proper
7497 front/read-advance arguments.
9b4a7800 7498
c3d6d211
GM
74992000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7500
7501 * ps-print.el: Even/odd pages printing. Doc fix.
7502 (ps-print-version): New version number (6.0).
7503 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
7504 (ps-background, ps-begin-file, ps-begin-job): Code fix.
7505 (ps-print-duplex-feature): Variable eliminated.
7506 (ps-even-or-odd-pages): New variable.
7507
ba087cd7 7508 * progmodes/ebnf2ps.el: Doc fix.
87d0f685
GM
7509 (ebnf-version): New version (3.3).
7510 (ebnf-user-arrow): Change variable customization to sexp.
7511 (ebnf-user-arrow): Function eliminated.
7512 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
9b4a7800 7513
d313265f
KH
75142000-08-29 Kenichi Handa <handa@etl.go.jp>
7515
cba62b78 7516 * help.el (help-xref-mule-regexp): New variable.
d313265f
KH
7517 (help-make-xrefs): Handle help-xref-mule-regexp.
7518
7519 * international/mule-cmds.el (help-xref-mule-regexp-template): New
7520 variable.
7521 (describe-input-method): Temporarily activate the specfied input
7522 method to display the information.
7523 (describe-language-environment): Hyperlinks to mule related items.
7524
7525 * international/mule-diag.el (charset-multibyte-form-string): New
7526 function.
7527 (list-character-sets-1): Use charset-multibyte-form-string.
7528 (describe-character-set): New function.
7529 (describe-coding-system): Hyperlinks to safe character sets.
7530
7531 * international/quail.el (quail-help): New arg PACKAGE.
7532 Hyperlinks to mule related items.
7533 (quail-help-insert-keymap-description): Use
7534 substitute-command-keys instead of describe-bindings.
7535 (quail-translation-help): Hyperlinks to mule related items.
7536
b4bd214e
JW
75372000-08-28 John Wiegley <johnw@gnu.org>
7538
ca7aae91
JW
7539 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
7540 have a defsubst call itself. Made `eshell-flatten-list' back into
7541 a function again.
7542
b4bd214e
JW
7543 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
7544 catch, in case re-centering point at bottom messes up the display.
7545 This happens frequently in Emacs 21, due I believe to variable
7546 line heights.
7547
7548 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
7549 to call `find-tag-interactive'.
7550
7551 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
7552 the list of remember directories.
7553
d44e146b
JW
75542000-08-28 John Wiegley <johnw@gnu.org>
7555
7556 * align.el: Test align-region-separate to see if it's a symbol.
7557
546c0888 75582000-08-28 John Wiegley <johnw@gnu.org>
d44e146b
JW
7559
7560 * eshell/esh-util.el (eshell-flatten-list): Made this function
7561 into a defsubst form. It gets used very frequently, although
7562 calls don't occur all that often.
7563
7564 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
7565 examining it.
7566
7567 * eshell/esh-cmd.el (eshell-rewrite-while-command):
7568 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
7569 `eshell-protect'.
7570 (eshell-copy-handles): Created a new macro for duplicating the
7571 current set of open handles. This is needed by the looping
7572 functions.
7573 (eshell-do-eval): Fixed while and if, so that the eshell-test-body
7574 is not incorrectly stomped on.
7575
7576 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
7577 declaration for pcomplete-use-paring.
7578 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
7579 value of eshell-cmpl-use-paring.
7580 * pcomplete.el (pcomplete-use-paring): New config variable, to
7581 indicate whether paring should be used.
7582 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
7583 completion alternatives that have already been used.
7584
7585 * eshell/esh-mode.el (eshell-repeat-argument): Added function,
7586 bound to C-c C-y, which will repeat the previous N arguments
7587 (based on prefix argument).
7588 (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
7589
7590 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
7591 if there is no *Help* buffer. This is for XEmacs, which renames
7592 its help buffers uniquely. TODO: Find out what the current buffer
7593 name to delete is.
7594
7595 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
7596 first entry that correlates to a passwd/group number. Later
7597 entries (used for group/user name aliasing to multiple IDs) are
7598 ignored.
7599
9b4a7800
TTN
7600 * eshell/em-xtra.el (eshell/expr):
7601 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
7602 (eshell-grep, eshell/diff, eshell/locate):
d44e146b
JW
7603 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
7604 argument list, before passing it to the system command.
7605
7606 * eshell/esh-mode.el (eshell-find-tag): Added a special version of
7607 `find-tag' for use at final position in Eshell buffers (which
7608 otherwise triggers an error on Emacs 21).
7609 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
7610 buffer, if it is currently bound to `find-tag'.
7611
7612 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
7613 in the list of matched Makefile names.
7614 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
7615 directory, prefer its contents to Makefile.
7616
7617 * eshell/em-dirs.el (eshell/cd): cd commands that look up
7618 directory parts (like "cd old new", or "cd =regexp"), are now case
7619 sensitive on non-Windows/DOS platforms.
7620
7621 * eshell/esh-mode.el (eshell-parse-command-input): When a user
7622 types RET after an open delimiter (like "), display a message
7623 indicating that Eshell is waiting for the closing delimiter.
7624
7625 * eshell/esh-var.el (eshell/unset): Added a command for unsetting
7626 environment variables.
7627
7628 * eshell/em-unix.el (eshell/diff): Added logic to fail more
7629 gracefully if the user enters incorrect arguments.
7630
7631 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
7632 Eshell buffers.
7633
9b4a7800
TTN
7634 * eshell/esh-var.el (eshell-interpolate-variable):
7635 * eshell/esh-mode.el (eshell-move-argument):
d44e146b
JW
7636 * eshell/em-unix.el (eshell-du-sum-directory):
7637 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
7638 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
7639 (not (= ...)).
7640
7641 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
7642 to ensure the `preserve' flag gets propagated when doing recursive
7643 directory copies.
7644
546c0888 76452000-08-28 Stefan Monnier <monnier@cs.yale.edu>
d44e146b
JW
7646
7647 * eshell/em-hist.el (eshell-put-history, eshell-get-history):
7648 Don't convert \n into \0177 in memory.
7649 (eshell-read-history, eshell-write-history): Convert \n to \0177,
7650 and back again, when reading and writing.
9b4a7800 7651
546c0888 76522000-08-28 Eli Zaretskii <eliz@is.elta.co.il>
d44e146b
JW
7653
7654 * eshell/esh-util.el (eshell-processp): Added to relieve constant
7655 testing of `fboundp' on `processp'.
7656
7657 * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
7658 (eshell/jobs): Don't call process-list if it is not bound.
7659 (eshell-gather-process-output): Support systems where async
7660 subprocesses aren't supported.
7661 (eshell-scratch-buffer, eshell-last-sync-output-start): New
7662 variables.
7663
7664 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
7665 eshell-do-eval returns t.
7666 (eshell-do-pipelines-synchronously): New defmacro.
7667 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
7668 when async subprocesses aren't supported.
7669 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer
7670 if async subprocesses aren't supported.
7671 (eshell-resume-command): Don't assume STATUS is a string.
7672
7673 * eshell/em-unix.el (eshell/rm): Use eshell-processp.
7674
7675 * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
7676 (eshell-close-target, eshell-get-target): Use eshell-processp.
7677 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
7678 fix.
7679 (eshell-get-target, eshell-create-handles): Doc fix.
7680
546c0888 76812000-08-28 Miles Bader <miles@lsi.nec.co.jp>
d44e146b 7682
546c0888 7683 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
d44e146b
JW
7684 criterion to include commands that output something, as long as it
7685 leaves both the command and the end-of-buffer visible when the
7686 command has exited.
7687 (eshell-review-quick-commands): Adjust the help doc string
7688 accordingly.
7689
2a371c3b
PB
76902000-08-28 Peter Breton <pbreton@ne.mediaone.net>
7691
8348e1f9 7692 * locate.el (locate): Cleaned up locate command's interactive prompting
1ec321a7 7693 Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
8348e1f9 7694
9b4a7800 7695 * filecache.el (file-cache-case-fold-search): New variable
2a371c3b
PB
7696 (file-cache-assoc-function): New variable
7697 (file-cache-minibuffer-complete): Use file-cache-assoc-function.
7698 Use file-cache-case-fold-search variable
7699 (file-cache-add-file): Use file-cache-assoc-function
7700 (file-cache-delete-file): likewise
7701 (file-cache-directory-name): likewise
7702 (file-cache-debug-read-from-minibuffer): likewise
7703
95931eb1
GM
77042000-08-28 Gerd Moellmann <gerd@gnu.org>
7705
7706 * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
7707 (abbrev-table-name): New function.
7708 (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
7709 If non-nil list local abbrev, only.
7710
bb17930d
GM
77112000-08-28 Stanislav Shalunov <shalunov@internet2.edu>
7712
546c0888
EZ
7713 * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
7714 from Gnus support code, and use special article copy buffer
bb17930d
GM
7715 `(gnus-original-article-buffer)' instead. This allows to get rid
7716 of article-hide-headers usage (which breaks in the latest Gnus
7717 version). Thanks to Detlev Zundel.
7718
41a68aef
KH
77192000-08-28 Kenichi Handa <handa@etl.go.jp>
7720
7721 * international/quail.el (quail-use-package): Hide "... loaded"
7722 message.
7723 (quail-start-translation, quail-start-conversion): Likewise.
7724
7725 * international/kkc.el (kkc-region): Hide "... loaded" message.
7726
28bb2cef
DL
77272000-08-27 Dave Love <fx@gnu.org>
7728
7729 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
7730
11a1118d
MB
77312000-08-27 Miles Bader <miles@gnu.org>
7732
7733 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
7734
0f85d477
KH
77352000-08-27 Kenichi Handa <handa@etl.go.jp>
7736
7737 * international/ja-dic-cnv.el (skkdic-convert): Insert (require
7738 'ja-dic-cnv), not (require 'skkdic-cnv).
7739
2d73e8d3
MB
77402000-08-26 Miles Bader <miles@gnu.org>
7741
a0e5a5a4
MB
7742 * faces.el (face-x-resources): Add entry for :inherit.
7743 * cus-face.el (custom-face-attributes): Add support for :inherit
7744 attribute. Add support for relative face heights.
7745 (custom-face-attributes-get): Treat `nil' as being a default value
7746 for :inherit (as well as `unspecified').
7747
19feb949
MB
7748 * faces.el (set-face-attribute): Update doc string.
7749 (face-attribute-name-alist): Add :inherit.
7750 (face-valid-attribute-values): Handle :inherit.
7751 (face-read-string): Rephrase prompt to be less confusing.
7752 Assume that DEFAULT is a string, since we must return a string.
7753 (face-read-integer): Use `format' to turn DEFAULT into an
7754 acceptable default for face-read-string. Match NEW-VALUE against
7755 the string "unspecified", not the symbol `unspecified', since
7756 that's what face-read-string returns.
7757 (read-face-attribute): Lookup a name for old-value in valid, and
7758 use it as a default if we find one. Treat all values from
7759 face-read-string as strings. If the default is used, don't do any
7760 more processing on the value, just use the old value directly.
7761 (read-face-and-attribute, modify-face): Tweak prompt.
7762 (read-face-name): Don't assume prompt ends with a space.
7763
2d73e8d3
MB
7764 * faces.el (describe-face): Add support for :inherit attribute.
7765
a1a2e38f
KH
77662000-08-25 Kenichi Handa <handa@etl.go.jp>
7767
e84fa7c5
KH
7768 * terminal.el (terminal-emulator): Fix args to `concat'. Now
7769 concat doesn't accept interger.
7770
a1a2e38f
KH
7771 * international/kkc.el: Remove SKK from Keywords. Require
7772 ja-dic-utl instead of skkdic-utl.
7773
7774 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
7775 Provide ja-dic-cnv instead of skkdic-cnv.
7776 (ja-dic-filename): Renamed from skkdic-filename. Referers changed
7777 (iso-2022-7bit-short): Add safe-charsets property.
7778 (skkdic-convert-postfix): Search Japanese chou-on character in
7779 addition to Hiragana character.
7780 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
7781 (skkdic-convert): Change file names from skkdic.el to ja-dic.el
7782 (batch-skkdic-convert): Likewise.
7783
7784 * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
7785 Provide ja-dic-utl instead of skkdic-utl.
7786 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
7787
f6499c03
DL
77882000-08-24 Dave Love <fx@gnu.org>
7789
1c2c3f16
DL
7790 * disp-table.el (standard-display-default): Make the test of `l'
7791 useful.
7792
f6499c03
DL
7793 * language/european.el ("Latin-8", "Latin-9"): Add input methods,
7794 mod sample text.
7795
7796 * international/iso-ascii.el: Make pilcrow convenient string
7797 consistent with section.
7798 (iso-ascii-display): Set up multibyte characters as well as
7799 unibyte.
7800
c543db81
KH
78012000-08-24 Kenichi Handa <handa@etl.go.jp>
7802
7803 * international/mule-cmds.el (reset-language-environment): Set
7804 default-process-coding-system to '(undecided . iso-latin-1), which
7805 makes process I/O almost consistent with file I/O. Call this
7806 function when mule-cmds.el[c] is loaded.
7807
746d9caf
AI
78082000-08-22 Andrew Innes <andrewi@gnu.org>
7809
7810 * makefile.w32-in: New file.
7811
5484005d
MB
78122000-08-22 Miles Bader <miles@lsi.nec.co.jp>
7813
7814 * comint.el (comint-output-filter): Compare end of
7815 comint-last-output-overlay with the start of the newly inserted
7816 text, not the end, when deciding whether to extend it.
9b4a7800 7817 Set saved-point's insertion type to advance after insertion.
5484005d
MB
7818
7819 * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
7820 since this is now done independently of font-lock mode.
7821
7a912f63
GM
78222000-08-21 Gerd Moellmann <gerd@gnu.org>
7823
7824 * server.el (server-kill-new-buffers): New user option.
7825 (server-existing-buffer): New buffer-local variable.
7826 (server-visit-files): When using an existing buffer, set
7827 server-existing-buffer to t.
7828 (server-buffer-done): If server-kill-new-buffers is t, kill the
7829 buffer, unless it was already present before visiting it with
7830 Emacs server.
9b4a7800 7831
240301df
EZ
78322000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
7833
7834 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
7835 even if the display doesn't support colors: some displays will
7836 support bold/underline faces.
7837
cbcef616
GM
78382000-08-21 Gerd Moellmann <gerd@gnu.org>
7839
6917e6bb
GM
7840 * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
7841
cbcef616
GM
7842 * startup.el (command-line): If user's init file had an error,
7843 add explanatory text to *Messages*.
7844
6922b018
KH
78452000-08-21 Kenichi Handa <handa@etl.go.jp>
7846
7847 * man.el (Man-getpage-in-background): Decode the process output by
7848 the system locale coding system.
7849
e50c4203
DL
78502000-08-20 Dave Love <fx@gnu.org>
7851
96ab6351
DL
7852 * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
7853 Don't test x-popup-menu.
7854 (function) <complete-function>: Complete only fbound symbols.
7855 <validate, value>: New.
7856 (variable) <complete-function>: Complete only bound symbols.
7857 (coding-system): Add :base-only, :complete-function, :validate,
7858 :value, :prompt-match.
7859 (widget-coding-system-prompt-value): Use read-coding-system and
7860 act on :base-only.
7861 (editable-field): Add :help-echo.
7862 (widget-push-button-gui, widget-push-button-cache)
7863 (widget-gui-action, widget-editable-list-gui): COmment out, along
7864 with uses.
7865 (widget-at): Make arg optional.
7866 (widget-echo-help): Adjust for current help-echo calling sequence.
7867 (widget-specify-field, widget-specify-button)
7868 (widget-specify-insert, widget-get-sibling, widget-image-find)
7869 (widget-convert, widget-insert, widget-leave-text)
7870 (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
7871 (widget-setup, widget-field-find, widget-before-change)
7872 (widget-after-change, widget-default-complete)
7873 (widget-default-create, widget-default-delete)
7874 (widget-push-button-value-create, editable-field)
7875 (widget-field-prompt-value, widget-field-validate)
7876 (widget-choice-value-create, widget-choice-action)
7877 (widget-choice-validate, widget-checklist-add-item)
7878 (widget-radio-add-item, widget-radio-chosen)
7879 (widget-radio-value-inline, widget-editable-list-value-create)
7880 (widget-editable-list-entry-create)
7881 (widget-documentation-link-add)
7882 (widget-documentation-string-value-create)
7883 (widget-regexp-validate, widget-file-complete)
7884 (widget-sexp-validate, widget-plist-convert-widget)
7885 (widget-plist-convert-widget, widget-alist-convert-widget)
7886 (widget-alist-convert-widget, widget-color-complete): Simplify,
7887 particularly to avoid bindings which aren't optimized out.
7888
e50c4203
DL
7889 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
7890 Doc fix.
7891 (down-list, backward-up-list, up-list, kill-sexp)
7892 (backward-kill-sexp, mark-sexp): Make arg optional.
7893 (lisp-complete-symbol): Add optional arg PREDICATE.
7894
7895 * cus-start.el: Add display-buffer-reuse-frames,
7896 file-coding-system-alist.
7897
511bd4eb
GM
78982000-08-20 Gerd Moellmann <gerd@gnu.org>
7899
7900 * startup.el (command-line): Clear realized faces after
7901 modifying TTY color mappings.
7902
a9de7d29
MB
79032000-08-20 Miles Bader <miles@gnu.org>
7904
7905 * faces.el (face-attr-match-p): Don't return true if ATTRS are
7906 merely a subset of FACE's attributes.
7907
8a8023d9
MB
79082000-08-19 Miles Bader <miles@gnu.org>
7909
7910 * comint.el (comint-output-filter): Save the point with a marker,
7911 not just a buffer position.
7912
7913 * international/mule.el (set-buffer-process-coding-system): Make
7914 interactive prompt less confusing.
7915
1433385f
GM
79162000-08-19 Gerd Moellmann <gerd@gnu.org>
7917
7918 * hilit-chg.el: General cleanup of doc strings, comments and
7919 code formatting.
7920
136b4eda
MB
79212000-08-19 Miles Bader <miles@gnu.org>
7922
7923 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
7924 Compiler macro removed; beginning-of-line is no longer always
7925 equivalent to forward-line, in the presence of fields.
7926
7927 * comint.el (comint-output-filter): Remove ad-hoc saving of
7928 restriction, and just use save-restriction, now that it works
7929 correctly. Don't adjust comint-last-input-start to account for
7930 our insertion; it shouldn't have moved because we don't use
7931 insert-before-markers anymore. Comment out call to
7932 `force-mode-line-update'; why is it here?
7933
7934 * gud.el (gud-basic-call): Temporarily widen gud comint buffer
7935 while checking for prompt to delete. Use `forward-line 0'
7936 instead of beginning-of-line.
7937 (gud-filter): Temporarily widen gud comint buffer while
7938 examining output.
7939
cdd0f857
SM
79402000-08-18 Stefan Monnier <monnier@cs.yale.edu>
7941
ebf96bfa
SM
7942 * progmodes/sh-script.el: Big bag of typos.
7943
cdd0f857
SM
7944 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
7945 check since ispell-process is not bound when ispell is not yet loaded.
7946
9bb7a286
DL
79472000-08-18 Dave Love <fx@gnu.org>
7948
7949 * image.el (find-image): Copy `spec' before using plist-put.
7950
74ec6045
GM
79512000-08-18 Gerd Moellmann <gerd@gnu.org>
7952
7953 * textmodes/ispell.el (ispell-dictionary-alist-6): Add
7954 `portugues'.
7955
7956 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
7957 backward-kill-sexp, analogous to kill-sexp.
7958
7959 * progmodes/icon.el (icon-indent-line)
7960 (icon-is-continuation-line): Handle comments specially.
7961
79622000-08-17 Ken Stevens <k.stevens@ieee.org>
7963
7964 * ispell.el: Set to standard author/maintainer/keyword fields.
7965 Fine tuning to menu map appearance and operation, and added help.
7966 Remove `start' and `end' error messages when compiling.
7967 (ispell-choices-win-default-height): Fixed comment string.
7968 (ispell-dictionary-alist-1): Fixed regexp in castellano and
7969 castellano8 dictionaries.
7970 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
7971 (ispell-dictionary-alist-4): Fixed regexp in francais-tex
7972 dictionary, added italiano dictionary.
7973 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
7974 word character
7975 (ispell-tex-skip-alists): Added psfig support.
7976 (ispell-skip-html): Renamed from ispell-skip-sgml.
7977 (ispell-begin-skip-region-regexp, ispell-skip-region)
7978 (ispell-minor-check): Improved html skipping support to skip across
7979 code, and recognize `&' commands without propper `;' syntax;
7980 (ispell-process-line): Fix alignment error when manually
7981 correcting spelling.
7982 (ispell): Fix comment string.
7983 (ispell-add-per-file-word-list): Always put word list on new line.
7984
3787e12e
GM
79852000-08-17 Gerd Moellmann <gerd@gnu.org>
7986
a7b28523
GM
7987 * format.el (format-encode-run-method): Fix error message to say
7988 `encode' instead of `decode'. Use save-window-excursion around
7989 shell-command-on-region as in format-decode-run-method because
7990 shell-command-on-region can display a buffer with error output.
7991 (format-decode): Don't record undo information for the decoding.
7992 (format-annotate-function): Add parameter FORMAT-COUNT. Make
7993 that number part of the temporary buffer name so that more than
7994 one decoding using a temporary buffer can happen safely.
7995
7996 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
7997 of `A-z' in the regexp.
7998
7999 * hilit-chg.el: Fix typos in commentary.
8000
3787e12e
GM
8001 * help.el (view-emacs-news): Rewritten for new naming scheme
8002 for old NEWS files.
8003
8004 * startup.el (command-line): Pop to *Messages* in case an error
8005 is signaled while loading user-init-file.
8006
d2473540
AS
80072000-08-17 Andreas Schwab <schwab@suse.de>
8008
8009 * files.el (insert-directory): Don't lose original file name,
8010 undoing an undocumented change.
8011
c0bbaf57
GM
80122000-08-17 Alex Schroeder <alex@gnu.org>
8013
8014 * sql.el (sql-magic-go): Use comint-bol.
8015 (sql-copy-column): Use comint-line-beginning-position.
8016 (comint-line-beginning-position): Define a replacement for
8017 comint-line-beginning-position if it is not fboundp.
8018
80192000-08-17 Alex Schroeder <alex@gnu.org>
8020
8021 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
8022 it didn't have any effect anyway.
8023
80242000-08-17 Alex Schroeder <alex@gnu.org>
8025
8026 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
8027 --pset and pager=off instead of sending \\o|cat at the beginning
8028 of the session.
8029
9d245da5
MB
80302000-08-17 Miles Bader <miles@gnu.org>
8031
8032 * progmodes/octave-inf.el: Add compatibility definition of
8033 comint-line-beginning-position.
8034
abfdbd2e
KH
80352000-08-17 Kenichi Handa <handa@etl.go.jp>
8036
8037 * startup.el (normal-top-level): Look in each dir in load-path for
8038 a leim-list.el file too. This assures of loading leim-list.el
8039 that is created at Emacs installation time even if a user have his
8040 own leim-list.el.
8041
a0b8c939
MB
80422000-08-17 Miles Bader <miles@gnu.org>
8043
8044 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
8045 foreground color to black if the background is dark.
8046
7382bcae
SM
80472000-08-16 Stefan Monnier <monnier@cs.yale.edu>
8048
8049 * loadhist.el (unload-feature): Typo.
8050
9b4a7800 8051 * finder.el (finder-compile-keywords):
7382bcae
SM
8052 * cus-dep.el (custom-make-dependencies): Add local-variable settings
8053 to the generated file.
8054
8055 * mail/mh-e.el (mh-make-local-vars):
8056 Replace make-variable-buffer-local with make-local-variable.
8057
cdd0f857 8058 * play/landmark.el:
7382bcae 8059 * options.el (Edit-options-{set,toggle,t,nil}):
9b4a7800
TTN
8060 * mail/mailabbrev.el (mail-abbrevs-mode):
8061 * textmodes/tex-mode.el (tex-expand-files):
7382bcae
SM
8062 * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
8063
8064 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
8065
8066 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
8067 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
8068 Allow going past the last element.
9b4a7800 8069 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
7382bcae
SM
8070 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
8071 (cvs-mouse-toggle-mark): Don't move point.
8072 (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
8073
8074 * progmodes/compile.el (grep): Provide a default set of files.
8075 (next-error): Docstring fix.
8076 (compilation-find-file): Avoid find-file (fails in a dedicated window).
8077
8078 * emacs-lisp/easy-mmode.el (define-minor-mode):
8079 Use `symbol-value' to keep the byte-compiler quiet.
8080
8081 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
8082 (diff-find-source-location): New fun, extracted from diff-goto-source.
8083 (diff-goto-source): Use it.
8084 (diff-next-complex-hunk, diff-filter-lines): New function.
8085 (diff-apply-hunk): New command.
8086
8087 * smerge-mode.el (smerge-mode-menu): Doc fix.
8088
8089 * msb.el (msb-mode): Define it in terms of define-minor-mode.
8090
4f00b8c1
DL
80912000-08-16 Dave Love <fx@gnu.org>
8092
2b5198bb
DL
8093 * windmove.el (windmove) <defgroup>: Add :version.
8094
8095 * net/goto-addr.el: Don't require browse-url. Require thingatpt.
8096 (goto-address-fontify-p, goto-address-highlight-p)
8097 (goto-address-url-face, goto-address-url-mouse-face)
8098 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
8099 (goto-address-url-regexp): Use thing-at-point-url-regexp.
8100 (goto-address-fontify, goto-address-at-mouse): Simplify,
8101 (goto-address-at-point): browse-url-url-at-point,
8102 goto-address-find-address-at-point can return nil.
8103 (goto-address-find-address-at-point): Return nil on failure.
8104
8105 * align.el (align) <defgroup>: Add :version.
8106
8107 * calculator.el (calculator): Add :version.
8108 (calculator): Use two lines for calculator window if `modeline'
8109 face is boxed.
8110
4f00b8c1
DL
8111 * play/5x5.el: Doc fixes.
8112 (5x5) <defgroup>: Add :version.
8113
8114 * play/fortune.el (fortune) <defgroup>: Add :version.
8115 (fortune-append): Fix error message.
8116 (fortune-from-region): Doc fix.
8117
8118 * play/pong.el (pong): Doc fix.
8119
8120 * play/morse.el: Keywords, commentary, autoloads.
8121
69db7ee7
EZ
81222000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
8123
8124 * desktop.el (desktop-save): Don't look at symbol-value of a
8125 member of minor-mode-alist, unless it is boundp.
8126
10e1dad9
SS
81272000-08-16 Sam Steingold <sds@gnu.org>
8128
a0b8c939 8129 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
10e1dad9
SS
8130 `while'; use `with-current-buffer' instead of `save-excursion'.
8131 Removed unnecessary kludges now that "*Buffer List*" is excluded.
8132
9d7bcb2e
KH
81332000-08-16 Kenichi Handa <handa@etl.go.jp>
8134
8135 * international/ccl.el (declare-ccl-program): Docstring modified.
8136 (ccl-execute-with-args): Likewise.
8137
04231ab8
MB
81382000-08-16 Miles Bader <miles@gnu.org>
8139
9d245da5 8140 * progmodes/sql.el: Add compatibility definition of
04231ab8
MB
8141 comint-line-beginning-position.
8142
f68446ef
GM
81432000-08-15 Gerd Moellmann <gerd@gnu.org>
8144
dc28878c
GM
8145 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
8146 'buffer-menu' property.
8147 (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
8148 fails.
8149 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
8150 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
8151 wasn't killed.
10e1dad9 8152
58ed0d3b
GM
8153 * buff-menu.el (list-buffers-noselect): Don't display the
8154 *Buffer List* buffer.
8155
32dc52f7
GM
8156 * font-lock.el: Require jit-lock to prevent a very late
8157 `Loading jit-lock' message.
8158
f68446ef 8159 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
10e1dad9 8160 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
f68446ef
GM
8161 mail address.
8162
90ac90a2
MB
81632000-08-15 Miles Bader <miles@gnu.org>
8164
8165 * textmodes/ispell.el (ispell-graphic-p): New constant.
8166 (ispell-choices-win-default-height, ispell-help): Use
8167 `ispell-graphic-p' instead of `xemacsp'.
8168
b0a0e263
DL
81692000-08-15 Dave Love <fx@gnu.org>
8170
c1e757e3
DL
8171 * simple.el: Autoload widget-convert when compiling.
8172 (mail-user-agent): Doc fix.
8173
8174 * help.el (function-called-at-point, variable-at-point): Use
8175 with-syntax-table.
8176 (help-manyarg-func-alist): Add insert-and-inherit.
8177
8178 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
8179
8180 * delsel.el (delsel-unload-hook): New function.
8181
8182 * find-file.el: Doc fixes. Move provide to end.
8183 (ff) <defgroup>: Add :link.
8184 (ff-goto-click): Deleted.
8185 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
8186 Use mouse-set-point.
8187
8188 * textmodes/tildify.el: Doc fixes.
8189 (tildify) <defgroup>: Add:version.
8190
8191 * progmodes/glasses.el (glasses) <defgroup>: Add :version.
8192 (glasses-custom-set): Use set-default, not set.
8193 (minor-mode-alist): Propertize the lighter.
8194 (glasses-mode): Provide optional arg.
8195
5f847612
DL
8196 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
8197 (global-cwarn-mode): Don't make it a user option. Unquote lambda.
8198 (cwarn-font-lock-feature-keywords-alist): Don't make it a user
8199 option. Provide :type.
8200 (cwarn-configuration): Provide :type.
8201 (cwarn-mode): Doc fix.
8202
8203 * add-log.el (change-log-merge): Doc fix.
8204 (change-log-redate): New command.
8205
b0a0e263
DL
8206 * net/browse-url.el (browse-url-filename-alist): Add a clause for
8207 Doze and Dog.
8208 (browse-url): Use dolist, not mapcar.
8209 (browse-url-at-point): Check for null url.
8210 (browse-url-event-buffer, browse-url-event-point): Functions
8211 deleted.
8212 (browse-url-at-mouse, browse-url-netscape): Simplify.
8213
8214 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
8215 modes.
8216 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
8217 Fix previous change to mapcan.
8218 (msb--init-file-alist, msb--add-separators)
8219 (msb--make-keymap-menu): Simplify.
8220 (msb--choose-file-menu): Use copy-sequence.
8221 (msb-mode-map): Add title to keymap.
8222 (msb-unload-hook): New function.
8223
8224 * bs.el: Fix indentation.
8225 (bs) <defgroup>: Add :links.
2b5198bb
DL
8226 (bs-show): Doc fix.
8227 (bs-apply-sort-faces): Don't use window-system.
8228 (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
b0a0e263 8229
70f1b78e
EZ
82302000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
8231
8232 * calendar/timeclock.el (timeclock-file): Run .timelog through
8233 convert-standard-filename.
8234
956777b3
GM
82352000-08-14 Gerd Moellmann <gerd@gnu.org>
8236
3215096c
GM
8237 * emacs-lisp/authors.el: New file.
8238
956777b3
GM
8239 * paren.el (show-paren-priority): New user option.
8240 (show-paren-function): Set overlay priorities to
8241 show-paren-priority.
10e1dad9 8242
0cde1424
MB
82432000-08-14 Miles Bader <miles@gnu.org>
8244
8245 * comint.el (comint-bol): Use `forward-line 0' instead of calling
8246 beginning-of-line with inhibit-field-text-motion bound.
8247
90cbf47e
GM
82482000-08-14 Gerd Moellmann <gerd@gnu.org>
8249
8250 * calendar/timeclock.el: New file.
8251
82522000-08-14 David Ponce <david@dponce.com>
8253
8254 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
8255 `widget-button-click'. so that one can use left mouse button to
8256 click on dialog buttons.
8257
82582000-08-14 Emmanuel Briot <briot@gnat.com>
8259
8260 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
814299a7 8261 identifiers, since XML is case sensitive
10e1dad9 8262
79e8dca7 82632000-08-12 Miles Bader <miles@gnu.org>
10e1dad9 8264
660394d1
MB
8265 * comint.el (comint-output-filter): Don't bother frobbing
8266 window-start, it doesn't seem to be necessary.
79e8dca7
MB
8267
8268 * comint.el (comint-send-string, comint-send-region): Make into
8269 real functions. Snapshot the prompt before sending.
8270
218c2cc7
EZ
82712000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
8272
8273 * info.el (Info-find-emacs-command-nodes): Rewrite to use
8274 technique similar to Info-index, instead of relying on specific
8275 names of relevant Index nodes.
8276 (Info-goto-emacs-command-node): Bind Info-history to nil when
8277 going to the first node found by Info-find-emacs-command-nodes.
8278
51e066d2 82792000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
968280cc
EZ
8280
8281 * menu-bar.el (menu-bar-help-menu): Add a :help string.
8282
867102f2
MB
82832000-08-10 Miles Bader <miles@gnu.org>
8284
8285 * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
8286
af718538
EZ
82872000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
8288
8289 * info.el (Info-file-list-for-emacs): More elements for the
8290 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
8291 and woman manuals.
8292
c51bacd6
MB
82932000-08-10 Miles Bader <miles@lsi.nec.co.jp>
8294
8295 * comint.el (comint-send-input): Make the newline boundary overlay
8296 rear-nonsticky. Use `insert' instead of `insert-before-markers'.
8297 (comint-output-filter): Use `insert' instead of
8298 `insert-before-markers'. Extend comint-last-output-overlay when
8299 necessary since we can't rely on insert-before-markers to do it.
8300 * gud.el (gud-filter): Use `with-current-buffer' instead of
8301 save-excursion when inserting the output, so that point gets
8302 updated correctly; the old method relied on a rather dodgy
8303 side-effect of comint-output-filter to avoid the effect of
8304 save-excursion.
8305
98532b12
EZ
83062000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
8307
8308 * files.el (recover-file): Call insert-directory instead of
8309 invoking `ls' directly.
8310
3db4b719
MB
83112000-08-10 Miles Bader <miles@gnu.org>
8312
8313 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
8314 (comint-last-prompt-overlay): New variables.
8315 (comint-output-filter): Implement prompt highlighting.
8316 (comint-snapshot-last-prompt): New function.
8317 (comint-send-input): Snapshot the last prompt.
8318 Use comint-highlight-input-face.
8319 (comint-highlight-input-face): Renamed from `comint-highlight-face'.
8320 Use defface instead of defcustom.
8321 (send-invisible, comint-send-eof): Snapshot the last prompt.
8322 (comint-delchar-or-maybe-eof): Use comint-send-eof.
8323 (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
8324
96190aa1
SM
83252000-08-09 Stefan Monnier <monnier@cs.yale.edu>
8326
5cda4b07
SM
8327 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
8328 (regexp-opt-group): Use a list of chars for `letters'.
8329 (regexp-opt-charset): `chars' is now a list of chars.
8330 Use a char-table rather than a vector so it works for multibyte chars.
8331
96190aa1
SM
8332 * pcvs.el (cvs-menu): Don't move point. Use popup-menu.
8333 Set cvs-minor-current-files to the selected fileinfo.
8334 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
8335 (cvs-mode-insert): Manually macroexpand `ignore-errors'.
8336
7d093d56
EZ
83372000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
8338
8339 * files.el (insert-directory): Don't call access-file on
8340 directories on DOS and Windows.
8341
b24c5811
KH
83422000-08-09 Kenichi Handa <handa@etl.go.jp>
8343
8344 * international/ccl.el (ccl-embed-data): Make ccl-program-vector
8345 longer if necessary.
8346 (ccl-embed-code): Call ccl-embed-data to store CODE in
8347 ccl-program-vector.
8348
0a6fd67e
MB
83492000-08-09 Miles Bader <miles@gnu.org>
8350
8351 * comint.el (comint-output-filter): Properly handle the case where
8352 the text surrounded by comint-last-output-overlay was deleted.
8353
9f6d1a6c
GM
83542000-08-08 Gerd Moellmann <gerd@gnu.org>
8355
25ad1371
GM
8356 * info.el (Info-insert-dir): Use Info-additional-directory-list if
8357 non-nil.
8358 (Info-file-list-for-emacs): Remove "info" from the list because
8359 that leads to trying to use the documentation from file `info'
8360 in various situations where it isn't appropriate, for instance
8361 C-h C-k C-h i.
8362
8363 * ffap.el (ffap-read-file-or-url-internal): Handle case that
8364 DIR and/or STRING are nil.
8365
8366 * progmodes/compile.el (compilation-setup): Make variable
8367 compilation-error-screen-columns buffer-local, as some comment
8368 in the code suggests it should be.
8369
8370 * files.el (auto-mode-interpreter-regexp): New variable.
8371 (set-auto-mode): Use it.
8372
8373 * indent.el (indent-for-tab-command): Doc fix.
8374
8375 * mouse-sel.el (mouse-sel-mode): Doc fix.
8376
9f6d1a6c
GM
8377 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
8378 labels.
8379
8380 * help.el (print-help-return-message): When
8381 display-buffer-reuse-frames is set, let the help window been quit,
8382 instead of deleting it, which might delete a reused frame.
8383
3d819a75
EZ
83842000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
8385
8386 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
8387 rename a directory to a name that differs only by its letter case.
8388
c5a52529
KH
83892000-08-08 Kenichi Handa <handa@etl.go.jp>
8390
8391 * international/quail.el (quail-define-rules): Handle Quail decode
8392 map correctly. Add code for supporting annotations.
8393 (quail-install-decode-map): New function.
8394 (quail-defrule-internal): New optional arguments decode-map and
8395 props.
8396 (quail-advice): New function.
8397
5e9e032a
SS
83982000-08-07 Sam Steingold <sds@gnu.org>
8399
8400 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
8401 `defconst', `define-condition', `with-slots'.
8402 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
8403
46645f4b
MB
84042000-08-03 Miles Bader <miles@gnu.org>
8405
8406 * comint.el (comint-use-prompt-regexp-instead-of-fields):
8407 New variable.
8408 (comint-prompt-regexp, comint-get-old-input): Document dependence on
8409 comint-use-prompt-regexp-instead-of-fields.
8410 (comint-send-input): Add `input' field property to stuff we send to
8411 the process, if comint-use-prompt-regexp-instead-of-fields is nil.
8412 (comint-output-filter): Add `output' field property to process
8413 output, if comint-use-prompt-regexp-instead-of-fields is nil.
8414 (comint-replace-by-expanded-history)
8415 (comint-get-old-input-default, comint-show-output)
8416 (comint-backward-matching-input, comint-forward-matching-input)
8417 (comint-next-prompt, comint-previous-prompt): Use field
8418 properties if comint-use-prompt-regexp-instead-of-fields is nil.
8419 (comint-line-beginning-position): New function.
8420 (comint-bol): Use comint-line-beginning-position. Make ARG optional.
8421 (comint-replace-by-expanded-history-before-point): Use
8422 comint-line-beginning-position and line-end-position.
8423 (comint-last-output-overlay): New variable.
8424 (comint-mode): Make `comint-last-output-overlay' buffer-local.
8425
8426 * shell.el (shell-prompt-pattern): Doc change.
8427 (shell-backward-command): Use line-beginning-position.
8428
8429 * gud.el (gud-gdb-complete-command): Use
8430 comint-line-beginning-position.
8431
8432 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
8433 comint-bol doesn't actually go to the beginning of the line.
8434
8435 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
8436 if comint-use-prompt-regexp-instead-of-fields is non-nil.
8437 (try-expand-line-all-buffers): Likewise.
8438
8439 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
8440 explicitly matching comint-prompt-regexp.
8441 (sql-copy-column): Use comint-line-beginning-position instead of
8442 explicitly matching comint-prompt-regexp.
8443
8444 * progmodes/octave-inf.el (inferior-octave-complete): Use
8445 comint-line-beginning-position.
8446
8447 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
8448
8449 * progmodes/idlw-shell.el (idlwave-shell-send-command): When
8450 looking for a prompt, use `forward-line 0' instead of
8451 `beginning-of-line', to avoid getting caught by an input field.
8452
ff3d9573
GM
84532000-08-07 Gerd Moellmann <gerd@gnu.org>
8454
8455 * files.el (shell-quote-wildcard-pattern): Make sure to return
8456 PATTERN, in the Unix case.
8457
e0d8827b
EZ
84582000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
8459
8460 * play/zone.el (zone): Discard any pending input before running
8461 the randomly-chosen pgm.
8462
24d55b8f
KH
84632000-08-07 Kenichi Handa <handa@etl.go.jp>
8464
8465 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
8466 checking the existence of any multibyte characters.
8467
3d05e1ee
GM
84682000-08-06 Gerd Moellmann <gerd@gnu.org>
8469
6c4a4368
GM
8470 * help.el (describe-mode): Test minor-mode symbol for being
8471 bound before testing its value for being nil.
8472
3d05e1ee
GM
8473 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
8474 `first', `second', and `third'.
8475
8476 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
8477 (second): Make it an alias for `cadr'.
8478
6968a481
EZ
84792000-08-06 Eli Zaretskii <eliz@is.elta.co.il>
8480
8481 * bs.el (bs-apply-sort-faces): Don't use window-system, since all
8482 types of display support faces now.
8483
e49aa397
GM
84842000-08-05 Gerd Moellmann <gerd@gnu.org>
8485
8486 * pcvs.el (require): Require `cl' during compilation, only.
8487
8488 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
8489 (toplevel): Remove `remq' and `remove' from autoloads.
8490 (cl-fake-autoloads): New variable. If set, arrange for an error
8491 when CL functions etc. are autoloaded.
8492
588aca27
EZ
84932000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
8494
2e78d4ab
EZ
8495 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
8496
85628348
EZ
8497 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
8498 popped up, but the user clicks outside the menu, return an empty
8499 regexp (that causes unhighlight-regexp to have no effect).
8500
74f0e552
EZ
8501 * menu-bar.el (menu-bar-games-menu): Add Zone.
8502
588aca27
EZ
8503 * hi-lock.el (toplevel): Require font-lock.
8504
f4988be7
GM
85052000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8506
ba087cd7 8507 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
f4988be7
GM
8508 (ebnf-8-bit-chars): New var for bug fix.
8509 (ebnf-string): Bug fix.
8510
027b73ac
SS
85112000-08-03 Sam Steingold <sds@gnu.org>
8512
8513 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
8514 instead of `buffer-string'.
8515 (require 'cl): Always, not just when compiling.
8516 `ignore-errors' in `interactive', `list*', `defun*' &c make this
8517 necessary.
8518
2f1fa038
EZ
85192000-08-03 Eli Zaretskii <eliz@is.elta.co.il>
8520
8521 * international/mule-cmds.el (select-safe-coding-system): Make
8522 the message text about selecting a safe coding system more clear.
8523
ead53494
GM
85242000-08-02 Gerd Moellmann <gerd@gnu.org>
8525
abb2db1c
GM
8526 * hi-lock.el: New file.
8527
8528 * play/zone.el: New file.
8529
ead53494
GM
8530 * replace.el (occur): Set tab-width in the *Occur* buffer to the
8531 value of tab-width in the original buffer. Choose a line number
8532 format that's a multiple of the original buffer's tab width, so
8533 that lines appear right.
8534
8535 * textmodes/ispell.el (ispell): New function, replacing an alias.
8536 Spell-check active region if in transient-mark-mode and mark
8537 is active; otherwise spell-check buffer.
8538
85392000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8540
8541 * ps-mule.el: Fix a customization problem on
8542 ps-mule-font-info-database-default.
8543
f4a2b0a4
EZ
85442000-08-02 Eli Zaretskii <eliz@is.elta.co.il>
8545
8546 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
8547 display-mouse-p instead of window-system.
8548 (ebrowse-member-mode-map): Ditto.
8549
b685181e
GM
85502000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8551
ba087cd7
EZ
8552 * progmodes/ebnf2ps.el: Update ps-print functions call.
8553 Indentation fix. Doc fix.
b685181e
GM
8554 (ebnf-version): New version number (3.2).
8555 (ebnf-format-color, ebnf-begin-job): Code fix.
027b73ac 8556
3b5fab87
EZ
85572000-08-01 Eli Zaretskii <eliz@is.elta.co.il>
8558
032ebb29
EZ
8559 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
8560 font lock support on window-system.
8561 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
8562
3b5fab87
EZ
8563 * textmodes/ispell.el (ispell-highlight-spelling-error): Use
8564 display-color-p, if fboundp, instead of window-system.
8565
7e2605e7
EZ
85662000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
8567
8568 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
8569 instead of window-system.
8570
8571 * wid-edit.el (widget-choose): Use display-mouse-p instead of
8572 window-system.
8573 (widget-choice-mouse-down-action): Use display-popup-menus-p
8574 instead of window-system.
8575
8576 * strokes.el (strokes-file): Run the file name through
8577 convert-standard-filename.
8578 (strokes-mode): Call display-mouse-p instead of looking at
8579 window-system. Change the error message accordingly.
8580
8581 * progmodes/cpp.el (toplevel): Support faces on tty's.
8582
8583 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
8584 (lm-plot-square, lm-init-display): Don't use window-system.
8585
8586 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
8587 (gomoku-plot-square, gomoku-init-display): Don't use window-system.
8588
8589 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
8590 instead of looking at window-system.
8591
26119624
GM
85922000-07-30 Gerd Moellmann <gerd@gnu.org>
8593
8594 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
8595 of testing if iswitchb-prepost-hooks is bound, because the
8596 latter will always be true when invoking a recursive minibuffer
8597 from an active Iswitchb buffer.
8598
c90596f3
EZ
85992000-07-30 Eli Zaretskii <eliz@is.elta.co.il>
8600
8601 * files.el (shell-quote-wildcard-pattern): New function.
8602 (insert-directory): Call it. Only prepend "\" to command on Unix
8603 and GNU/Linux systems.
8604
18925e78
GM
86052000-07-30 Gerd Moellmann <gerd@gnu.org>
8606
8607 * eshell/esh-groups.el: Change custom :link file names
8608 from `eshell.info' to `eshell'.
8609
86102000-07-30 Francis Wright <fjw@maths.qmw.ac.uk>
8611
8612 * dired.el (dired-build-subdir-alist): Expand subdirectory names
8613 correctly in recursive ange-ftp listings.
8614
86152000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8616
8617 * ps-print.el: Fix bug 1: if ps-font-size-internal,
8618 ps-header-font-size-internal and
8619 ps-header-title-font-size-internal variables are not set,
8620 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if
8621 face text property is (foreground-color . COLOR) or
8622 `(background-color . COLOR)', ps-print crashes. Doc fix.
8623 (ps-print-version): New version number (5.2.4).
8624 (ps-plot-region): Code fix.
8625 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
8626 (ps-face-attribute-list, ps-face-attributes, ps-face-background):
8627 Bug fix 2.
8628
86292000-07-30 Milan Zamazal <pdm@freesoft.cz>
8630
8631 * glasses.el (glasses-make-readable): Fix uncapitalization of
8632 identifiers like `myXMLDocument'.
8633
aeb4c63e
KF
86342000-07-28 Karl Fogel <kfogel@red-bean.com>
8635
18925e78
GM
8636 * mail/mail-hist.el (mail-hist-previous-input)
8637 (mail-hist-next-input): Do the obvious code factorization.
8638 (mail-hist-retrieve-and-insert): New func, contains common
aeb4c63e
KF
8639 code of above two.
8640 If inserting a message body, leave point at top.
8641
9d453139
SS
86422000-07-28 Sam Steingold <sds@gnu.org>
8643
8644 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
18925e78
GM
8645 Use `<=', not `<' to compare times!
8646 (ange-ftp-ls): Remove.
9d453139 8647
b548072f
GM
86482000-07-27 Gerd Moellmann <gerd@gnu.org>
8649
27848c01
GM
8650 * play/cookie1.el: Add explanation of how to make cookie.el
8651 compatible with strfile(1) to comment.
8652
8653 * subr.el (remove, remq): New functions.
8654
3ab82477
GM
8655 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
8656 escape `*' in regexps.
8657 (midnight-find): Reverse order of arguments in the funcall of
8658 TEST.
8659
8660 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
8661 and `.class'.
8662
b548072f
GM
8663 * play/meese.el: Add Commentary section.
8664
27848c01
GM
86652000-07-27 Alex Schroeder <alex@gnu.org>
8666
8667 * sql.el (sql-ms): Added autoload cookie.
8668 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
8669 (sql-oracle): Ditto.
8670 (sql-help): Doc change.
8671
8672 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
8673 types and exceptions.
8674
86752000-07-27 Alex Schroeder <alex@gnu.org>
8676
8677 * sql.el (sql-placeholder-history): New variable.
8678 (sql-query-placeholders-and-send): New function that will query
8679 the user and replace placeholders with user input.
8680 (sql-oracle): If running on NT, set comint-input-sender to
8681 sql-query-placeholders-and-send.
8682
8683 (sql-stop): If in the SQLi buffer, insert stop notification, else
8684 present it as a message.
8685
86862000-07-27 Alex Schroeder <alex@gnu.org>
8687
8688 * sql.el (sql-input-ring-separator): Doc change.
8689 (sql-input-ring-file-name): Doc change.
8690 (sql-interactive-mode): Use `sql-input-ring-separator' and
8691 `sql-input-ring-file-name' to set the comint-mode equivalents
8692 without making them local variables.
8693 (sql-stop): Don't bind `sql-input-ring-separator' and
8694 `sql-input-ring-file-name' dynamically to their comint-mode
8695 equivalents.
8696
91ae8751
KH
86972000-07-27 Kenichi Handa <handa@etl.go.jp>
8698
8699 * international/mule.el (register-char-codings): New function.
8700 (make-coding-system): Handle `safe-chars' specification in the arg
8701 PROPERTY.
8702
8703 * international/mule-cmds.el
8704 (find-coding-systems-region-subset-p): This function deleted.
8705 (sort-coding-systems-predicate): New variable.
8706 (sort-coding-systems): New function.
8707 (find-coding-systems-region): Use
8708 find-coding-systems-region-internal.
8709 (find-coding-systems-string): Use find-coding-systems-region.
8710 (find-coding-systems-for-charsets): Check
8711 char-coding-system-table.
8712 (select-safe-coding-system-accept-default-p): New variable.
8713 (select-safe-coding-system): Mostly rewritten. New argument
8714 ACCEPT-DEFAULT-P.
8715 (select-message-coding-system): Call select-safe-coding-system
8716 with ACCEPT-DEFAULT-P arg.
8717 (reset-language-environment): Reset default-sendmail-coding-system
8718 to the default value iso-latin-1.
8719 (set-language-environment): Don't set the obsolete variable
8720 charset-origin-alist.
8721
8722 * international/codepage.el (cp-coding-system-for-codepage-1):
8723 Give `safe-chars' property to make-coding-system.
8724
8725 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
8726 calling select-message-coding-system twice.
8727
8728 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
8729 instead of `safe-charsets'.
8730 (cyrillic-alternativnyj): Likewise.
8731 (ccl-encode-alternativnyj): Don't check the charset
8732 cyrillic-iso8859-5.
8733
90cf4474
KH
87342000-07-27 Kenichi Handa <handa@etl.go.jp>
8735
8736 * composite.el (compose-chars-after): Preserve match data.
8737
a1f84f6d
SS
87382000-07-26 Sam Steingold <sds@gnu.org>
8739
8740 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
8741 (ange-ftp-real-file-newer-than-file-p): New function.
8742 (ange-ftp-verify-visited-file-modtime): Use `float-time'.
8743 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
8744
8745 * tooltip.el (tooltip-float-time): Removed (use `float-time').
8746 * midnight.el (midnight-float-time): Ditto.
8747
e092928e
AS
87482000-07-26 Andreas Schwab <schwab@suse.de>
8749
8750 * files.el (normal-backup-enable-predicate): Correct
8751 interpretation of the return value of compare-strings.
8752
7465ebef
GM
87532000-07-26 Gerd Moellmann <gerd@gnu.org>
8754
3353ef5a
GM
8755 * isearch.el (isearch-resume): New function.
8756 (isearch-done): Add something to command-history to resume
8757 the search.
8758 (isearch-yank-line, isearch-yank-word): Use
8759 buffer-substring-no-properties instead of buffer-substring.
8760
7465ebef
GM
8761 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
8762 of flyspell-mouse-map.
8763
8764 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
8765 duplicate definition.
8766 (makefile-mode): Remove duplicate setting of local-abbrev-table.
8767
8768 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
8769 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
8770
5044b74a
SS
87712000-07-25 Sam Steingold <sds@gnu.org>
8772
25759a92
SS
8773 * net/ange-ftp.el: Get modtime over the net.
8774 (ange-ftp-file-modtime): New function.
a95cb10a
GM
8775 (ange-ftp-write-region, ange-ftp-insert-file-contents)
8776 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
25759a92
SS
8777 Use it.
8778 (ange-ftp-dot-to-slash): New function.
8779 (ange-ftp-fix-name-for-vms): Use it.
8780
5044b74a
SS
8781 * midnight.el (midnight-buffer-display-time): Use
8782 `with-current-buffer'.
8783
5dcfb3f4
GM
87842000-07-25 Gerd Moellmann <gerd@gnu.org>
8785
8786 * find-dired.el: Update copyright notice.
8787 (find-dired): Offer to kill a running `find'.
8788
8789 * enriched.el (enriched-face-ans): For a `foreground-color'
8790 property, return '(("x-color" COLOR))' so that COLOR will be
8791 output as a parameter of the x-color annotation. Likewise for the
8792 `background-color' property. In the case of normal face
8793 properties, don't return annotations for unspecified foreground
8794 and background face attributes.
8795
8c662166
KH
87962000-07-25 Kenichi Handa <handa@etl.go.jp>
8797
8798 * language/japan-util.el (japanese-katakana-region): Fix handling
8799 HANKAKU argument.
8800
c28da489
MB
88012000-07-25 Miles Bader <miles@gnu.org>
8802
8803 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
8804 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to
8805 constrain-to-field.
8806
ad349719
AI
88072000-07-24 Andrew Innes <andrewi@gnu.org>
8808
8809 * timer.el (timer-activate-when-idle): Add optional parameter
8810 DONT-WAIT. Update docstring.
8811 (run-with-idle-timer): Specify extra parameter to
8812 timer-activate-when-idle, so that timer will be activated
8813 immediately if Emacs is already idle.
8814
8815 * w32-fns.el (w32-using-nt): Fix docstring.
8816
c95162f5
DL
88172000-07-24 Dave Love <fx@gnu.org>
8818
8819 * mouse.el (popup-menu): Set last-command-event.
8820 (mouse-major-mode-menu-prefix): Declare.
8821
e3c31fd5
GM
88222000-07-24 Gerd Moellmann <gerd@gnu.org>
8823
8824 * textmodes/flyspell.el: Update to author's version 1.5d.
8825
8826 * progmodes/hideshow.el: Update copyright notice.
8827
8828 * vcursor.el: Set maintainer to FSF, since author cannot
8829 be reached.
8830
7636d2a3
EZ
88312000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
8832
fbe0a958
EZ
8833 * info.el (Info-goto-emacs-key-command-node): Leave a space after
8834 the prompt.
8835
7636d2a3
EZ
8836 * mouse.el (popup-menu): Run the keymap through indirect-function,
8837 in case it was defined with define-prefix-key. If the menu is a
8838 list of keymaps, look up the binding of user's choice in each one
8839 of the keymaps.
8840 (mouse-popup-menubar): If the global and local menu-bar keymaps
8841 don't have a prompt string, create one and insert it into the
8842 keymap. Don't barf if current-local-map returns nil.
8843
e024b101
GM
88442000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
8845
8846 * dired.el (dired-sort-R-check): Added to allow recursive listing
8847 to be undone.
8848 (dired-sort-other): Use it.
8849
7972fcfc
GM
88502000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8851
e024b101 8852 * Release of cc-mode 5.27
7972fcfc
GM
8853
88542000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8855
8856 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
8857 c-beginning-of-statement-1 that caused a bad case of recursion
8858 which could consume a lot of CPU in large classes in languages
8859 that have in-expression classes (i.e. Java and Pike).
8860
8861 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
8862 statements before top level constructs (i.e. case 6 is moved
8863 before case 5 and is now case 4) to catch in-expression
8864 classes in top level expressions correctly.
8865
88662000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8867
8868 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
8869 objc-method-intro. Case 4 removed and case 5I added.
8870
8871 * cc-langs.el (c-append-paragraph-start): New variable used by
8872 c-common-init to get paragraph-start correct.
8873 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
8874 initialize paragraph-start to make it correct both with and
8875 without the javadoc special case.
8876
8877 * cc-mode.el (java-mode): Use c-append-paragraph-start to
8878 initialize paragraph-start for javadoc markup.
8879
8880 * cc-vars.el (c-style-variables-are-local-p): Incompatible
8881 change by defaulting this to t. It's motivated by the
8882 confusing behavior that otherwise arise from the style system
8883 when editing both java and non-java files at the same time
8884 (see the comments about style setting in c-common-init).
8885
88862000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8887
8888 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
8889 similar to the one in c-fill-paragraph to check the fill
8890 prefix from the adaptive fill function for sanity.
8891
88922000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8893
8894 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
8895 defun block.
8896
88972000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8898
5044b74a 8899 * cc-mode.texi Documented the change of cpp-macro.
7972fcfc
GM
8900
89012000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8902
8903 * cc-align.el (c-lineup-multi-inher): Handle lines with
8904 leading comma nicely. Extended to handle member initializers
8905 too.
8906
e024b101 8907 * cc-engine.el: (c-beginning-of-inheritance-list,
7972fcfc
GM
8908 c-guess-basic-syntax): Fixed recognition of inheritance lists
8909 when the lines begins with a comma.
8910
5044b74a 8911 * cc-mode.texi: Updated doc for c-lineup-multi-inher.
7972fcfc
GM
8912
8913 * cc-vars.el (c-offsets-alist): Changed default for
8914 member-init-cont to c-lineup-multi-inher since it now handles
8915 member initializers and indents better for leading commas.
8916
89172000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8918
8919 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
8920 handling that caused class open lines to be recognized as
8921 statement-conts in some cases.
8922
8923 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
8924 guessed by the adaptive fill function unless point is on the
8925 first line of a block comment.
8926
8927 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
8928 when the buffer ends with a macro continuation char.
8929
8930 * cc-engine.el (c-guess-basic-syntax): Added support for
8931 function definitions as statements in Pike. The first
8932 statement in a lambda block is now labeled defun-block-intro
8933 instead of statement-block-intro.
8934
8935 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
8936 so that the class surrounding point is selected, not the one
8937 innermost in the state.
8938
8939 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
8940 recognition of switch labels having hanging multiline
8941 statements.
8942
8943 * cc-engine.el (c-beginning-of-member-init-list): Broke out
8944 some code in c-guess-basic-syntax to a separate function.
8945 * cc-engine.el (c-just-after-func-arglist-p): Fixed
8946 recognition of member inits with multiple line arglists.
8947 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
8948 member-init-cont when the commas are in funny places.
8949
89502000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8951
8952 * cc-defs.el (c-auto-newline): Removed this macro since it's
8953 not used anymore.
8954
8955 * cc-engine.el (c-looking-at-bos): New helper function.
8956 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
8957 inexpr and toplevel classes apart in Pike.
8958
8959 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
8960 of case 9A.
8961
8962 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
8963 constant, since "class" can introduce an in-expression class
8964 in Pike nowadays.
8965
89662000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8967
8968 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
8969 indentation on cpp-macro lines.
8970
8971 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
8972 a syntax modifier like comment-intro, to make it possible to
8973 get syntactic indentation for preprocessor directives. It's
8974 incompatible wrt to lineup functions on cpp-macro, but it has
8975 no observable effect in the 99.9% common case where cpp-macro
8976 is set to -1000.
8977
89782000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8979
8980 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
8981 member-init-cont when the preceding arglist is several lines.
8982
89832000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8984
8985 * cc-styles.el (c-style-alist): The basic offset for the BSD
8986 style corrected to 8.
8987
89882000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8989
8990 * cc-styles.el (c-style-alist): Adjusted the indentation of
8991 brace list openers in the gnu style.
8992
89932000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8994
8995 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
8996
8997 * cc-cmds.el (c-electric-brace, c-electric-slash,
8998 c-electric-star, c-electric-semi&comma, c-electric-colon,
8999 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
9000 when c-syntactic-indentation is nil.
9001
9002 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
9003 we were left at comments preceding the first statement when
9004 reaching the beginning of the buffer.
9005
9006 * cc-vars.el (c-syntactic-indentation): New variable to turn
9007 off all syntactic indentation.
9008
90092000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
9010
9011 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
9012 between the text and the block comment ender when it hangs,
9013 depending on how many there are before the fill.
9014
90152000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
9016
9017 * cc-engine.el (c-beginning-of-closest-statement): New helper
9018 function to go back to the closest preceding statement start,
9019 which could be inside a conditional statement.
9020 * cc-engine.el (c-guess-basic-syntax): Use
9021 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
9022
9023 * cc-engine.el (c-guess-basic-syntax): Better handling of
9024 arglist-intro, arglist-cont-nonempty and arglist-close when
9025 the arglist is nested inside parens. Cases 7A, 7C and 7F
9026 changed.
9027
9028 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
9029 up-to-date with javadoc 1.2.
9030
90312000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
9032
9033 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
9034 multiline Pike type decls.
9035
90362000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
9037
9038 * cc-cmds.el (c-indent-new-comment-line): Always break
9039 multiline comments in multiline mode, regardless of
9040 comment-multi-line.
9041
90422000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
9043
9044 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
9045 fully::qualified::names in C++ member init lists. Preamble in
9046 case 5D changed.
9047
90482000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
9049
9050 * cc-langs.el (c-common-init): Handling of obsolete variables
9051 moved to c-initialize-cc-mode. More compatible style override
9052 when using global style variables.
9053 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
9054 variables moved here.
9055
e024b101 9056 * cc-mode.texi: Documented the special behavior of
7972fcfc
GM
9057 c-special-indent-hook as a style variable. Don't talk about
9058 doing (c-make-styles-buffer-local t) in a mode hook, since
9059 that's already too late to work right.
5044b74a 9060
7972fcfc
GM
9061 * cc-styles.el (c-make-styles-buffer-local): Flag style
9062 variable localness in c-style-variables-are-local-p to make
9063 the compatibility measure in c-common-init work well.
9064
9065 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
9066 longer contain set-from-style.
9067 * cc-styles.el (c-initialize-builtin-style): Don't check for
9068 set-from-style on c-special-indent-hook.
9069 * cc-styles.el (c-copy-tree): Obsolete. The standard function
9070 copy-alist is sufficient now.
9071
9072 * cc-styles.el (c-set-style, c-set-style-1,
9073 c-get-style-variables): Fixes to variable initialization so
9074 that duplicate entries in styles have the same effect
9075 regardless of DONT-OVERRIDE.
9076
9077 * cc-styles.el (c-set-style-2): Fixed bug where the
9078 initialization of inheriting styles failed when the
9079 dont-override flag is set.
9080
9081 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
9082 on this.
9083
90842000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
9085
9086 * cc-defs.el (c-forward-comment): Removed the workaround
9087 introduced in 5.38 since it had worse side-effects. If a line
9088 contains the string "//\"", it regarded the // as a comment
9089 start since the \ temporarily doesn't have escape syntax.
9090
90912000-07-17 Emmanuel Briot <briot@act-europe.fr>
9092
9093 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
9094 ada-xref.el before ada-prj.el, so that the Project menu is created
9095 when ada-prj tries to add to it.
9096 (ada-activate-keys-for-case): Suppress the characters that are not
9097 part of the Ada syntax. Better compatibility with else-mode
9098 (ada-adjust-case-interactive): When auto-casing is not active,
9099 correctly insert newlines (used to insert only ^M). Prevent the
9100 syntax table from being changed in case of an error
814299a7 9101 (or '_' becomes part of a word and some commands are confused).
7972fcfc
GM
9102 Do nothing if ada-auto-case is nil.
9103 (ada-after-keyword-p): Ignore keywords that are also attributes
9104 (ada-batch-reformat): Update usage comment
9105 (ada-call-from-contextual-menu): New function
9106 (ada-case-read-exceptions): Reinitialize the casing exception list
9107 first to nil first, so that the casing exception file can be
9108 shared.
9109 (ada-check-defun-name): Handles "configure" keyword for gnatdist
9110 files.
9111 (ada-compile-goto-error): Fix regexp used to detect a file:line
9112 anywhere in the error message
9113 (ada-contextual-menu-last-point): New variable
9114 (ada-create-keymap): If the variable delete-key-deletes-forward is
9115 t on XEmacs, it means that DEL should delete one character
9116 forward.
9117 (ada-create-menu): Use :included instead of :visible for XEmacs.
9118 New submenu "Options".
9119 (ada-end-stmt-re): Correctly indent "select ... then abort"
9120 statements.
9121 (ada-fill-comment-paragraph): Correctly delete all leading '--'
9122 even if they don't match ada-fill-comment-prefix Fix handling of
9123 paragraphs on the first or last line of a file.
9124 (ada-format-paramlist): Fix handling of default parameter values.
9125 (ada-get-body-name): New function.
9126 (ada-get-current-indent): Optimized by searchling directly for an
9127 existing generic part or a statement outside of it. Handle
9128 ada-indent-align-comments when indenting comments Replaced some
9129 regexps by testing directly the next character. This results in a
9130 huge speedup on some files. New indentation scheme for renames
9131 statements. Stop looking for the 'while' or 'for' associated with
9132 a 'loop' at the first semicolon encountered. A "return" can also
9133 match an anonymous access subprogram declaration.
9134 (ada-get-indent-noindent): Ignore strings and comments when
9135 looking for the keywords "record" and "private".
9136 (ada-goto-matching-decl-start): When matching "if", make sure we
9137 are not in fact seeing "end if". Ignore "when" statements except
9138 when initial keyword was "begin". Fix handling of nested
9139 procedures. Add a recursive call to this function to skip over
9140 other 'end' statmts. Fix indentation for "when .. => begin"
9141 (ada-in-open-paren-p): Fix indentation for complex boolean
9142 expressions, where 'and then', 'or else' and parenthesis
9143 statements are mixed up.
9144 (ada-in-paramlist-p): Skip comments while searching for the
9145 beginning Fix handling of operator declarations.
9146 (ada-indent-align-comments): New variable
9147 (ada-indent-current): Change the syntax table only in the
9148 protected section, so that we are sure it is restored correctly.
9149 (ada-indent-on-previous-lines): Use ada-use-indent and
9150 ada-with-indent Correctly indent "select ... then"
9151 (ada-indent-region): Slight speedup.
9152 (ada-indent-renames): New variable.
9153 (ada-last-which-function-subprog, ada-last-which-function-line):
9154 New variables
9155 (ada-looking-at-semi-private): Correctly indent the 'private'
9156 keyword when it is the first word in a package declaration.
9157 (ada-loose-case-word): Stop searching if at the end of the buffer.
9158 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
9159 even if point is not initially at the end of the word.
9160 (ada-matching-decl-start-re): Add "when".
9161 (ada-mode): Add support for abbrev-mode, outline-mode and
9162 which-func-mode Override the old find-file.el entry in
9163 ff-special-constructs since it is using the obsolete
9164 ada-spec-suffix variable
9165 (ada-no-auto-case): New function
9166 (ada-scan-paramlist): When parsing the argument type, accept
9167 spaces (as in "X 'Class", generated by Rational Rose).
9168 (ada-other-file-name): No longer loads the other file.
9169 (ada-popup-menu): Save and restore the current buffer and cursor
9170 position before and after displaying the menu.
9171 (ada-search-ignore-complex-boolean): New function.
9172 (ada-uncomment-region): Emacs21 already knows how to delete
9173 comments not starting in the first column.
9174 (ada-use-indent): New variable
9175 (ada-which-function): New function.
9176 (ada-with-indent): New variable
9177 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
9178 can be batch-compiled from the command line.
9179
9180 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
9181 Add to the menu when the file is loaded, not in ada-mode-hook.
9182 Add -toolbar to the default ddd command Switches moved from
9183 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
9184 ada-prj-default-comp-opt
9185 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
9186 Reference Manual to the menu
9187 (ada-check-current): rewritten as a call to ada-compile-current
9188 (ada-compile): Removed.
9189 (ada-compile-application, ada-compile-current, ada-check-current):
9190 Set the compilation-search-path so that compile.el automatically
9191 finds the sources in src_dir. Automatic scrollong of the
9192 compilation buffer. C-uC-cC-c asks for confirmation before
9193 compiling
9194 (ada-compile-current): New parameter, prj-field
9195 (ada-complete-identifier): Load the .ali file before doing
9196 processing
9197 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
9198 conform to gnatmake's behavior.
9199 (ada-find-file-in-dir): New function
9200 (ada-find-references): Set the environment variables for gnatfind
9201 (ada-find-src-file-in-dir): New function.
9202 (ada-first-non-nil): Removed
9203 (ada-gdb-application): Add support for jdb, the java debugger.
9204 (ada-get-ada-file-name): Load the original-file first if not done
9205 yet.
9206 (ada-get-all-references): Handles the new ali syntax (parent types
9207 are found between <>).
9208 (ada-initialize-runtime-library): New function
9209 (ada-mode-hook): Always load a project file when a file is opened,
9210 so that the casing exceptions are correctly read.
9211 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
9212 (ada-parse-prj-file): Use find-file-noselect instead of find-file
9213 to open the project file, since the latter does not work with
9214 speedbar Get default values before loading the prj file, or the
9215 default executable file name is wrong. Use the absolute value of
9216 src_dir to initialize ada-search-directories and
9217 compilation-search-path,... Add the standard runtime library to
9218 the search path for find-file.
9219 (ada-prj-default-debugger): Was missing an opening '{'
9220 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
9221 variables.
9222 (ada-prj-default-gnatmake-opt): New variable
9223 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
9224 buffers, the project file is the default one Save the windows
9225 configuration before displaying the menu.
9226 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
9227 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
9228 ...) regexp-quote identifiers names to support operators +,
9229 -,... in regexps.
9230 (ada-remote): New function.
9231 (ada-run-application): Erase the output buffer before starting the
9232 run Support remote execution of the application. Use
9233 call-process, or the arguments are incorrectly parsed
9234 (ada-set-default-project-file): Reread the content of the active
9235 project file, not the one from the current buffer When a project
9236 file is set as the default project, all directories are
9237 automatically associated with it.
9238 (ada-set-environment): New function
9239 (ada-treat-cmd-string): New special variable ${current}
9240 (ada-treat-cmd-string): Revised. The substitution is now done for
9241 any ${...} substring
9242 (ada-xref-current): If no body was found, compiles the spec
9243 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
9244 compiler to get rid of command line length limitations.
9245 (ada-xref-get-project-field): New function
9246 (ada-xref-project-files): New variable
9247 (ada-xref-runtime-library-specs-path)
9248 (ada-xref-runtime-library-ali-path): New variables
9249 (ada-xref-set-default-prj-values): Default run command now does a
9250 cd to the build directory. New field: main_unit Provide a default
9251 file name even if the current buffer has no prj file.
9252
9253 * ada-prj.el:
9254 Rewritten to show a tabbed-dialog.
9255 (ada-prj-add-ada-menu): Remove the map and name parameters.
9256 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
9257 New function
9258 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
9259 (ada-prj-load-from-file): New function
9260 (ada-prj-save): Always save fields that depend on the current buffer
9261 (ada-prj-show-value): New function
5044b74a 9262
7972fcfc
GM
9263 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
9264 Ada mode. This will allow us to display the Ada menu in any buffer
9265 we want (for project items).
9266 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
9267 number of spaces in the header.
5044b74a 9268
8730a8da
DL
92692000-07-24 Dave Love <fx@gnu.org>
9270
9271 * ediff-init.el (ediff-region-help-echo): Bind face-help.
9272
db3ca487
NF
92732000-07-23 Noah Friedman <friedman@splode.com>
9274
ad953485
NF
9275 * type-break.el (type-break): perform autosave.
9276 Suggested by Stephen Gildea <gildea@intouchsys.com>.
9277 (type-break-do-query): Cancel query schedule while performing
9278 actual query, to avoid possibility of a second query being made
9279 while first one is already in progress.
9280 (type-break-time-stamp-format): New variable.
9281 (type-break-time-stamp): New function.
9282 (type-break-time-warning): Use it.
9283 (type-break-keystroke-warning): Use it.
9284 (type-break-noninteractive-query): Use it.
9285
03a9c6d0
NF
9286 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
9287 cookie.
9288 Use add-minor-mode to set minor-mode-alist, if available.
9289 (eldoc-echo-area-use-multiline-p): New user option.
9290 (eldoc-echo-area-multiline-supported-p): New variable.
9291 (eldoc-docstring-format-sym-doc): Use them.
9292 (eldoc-mode): If not using idle timers, append to local post and
9293 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
9294 (eldoc-display-message-no-interference-p): Don't interfere with
9295 edebug.
9296 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
9297 (eldoc-function-arglist): New function.
9298 (eldoc-function-argstring): Use it.
9299
db3ca487
NF
9300 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
9301 auto save directory exists before calling directory-files.
9302
f7ad1899
DL
93032000-07-23 Dave Love <fx@gnu.org>
9304
9305 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
9306 ^o, ^u.
9307
43e764c9
DL
93082000-07-21 Dave Love <fx@gnu.org>
9309
475de6f4
DL
9310 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
9311 now passed to the function. It now works properly.
9312
43e764c9
DL
9313 * smerge-mode.el (smerge-mode-menu): Fill it out.
9314
e8bea4c0
GM
93152000-07-20 Gerd Moellmann <gerd@gnu.org>
9316
9317 * info-look.el (info-lookup): If *info* is shown in another frame
9318 on the same display, select that frame, instead of switching to
9319 the Info buffer in another window of the selected frame.
9320
9321 * simple.el (universal-argument-map): Bind numeric keypad keys
9322 kp-0 to kp-9 and kp-subtract.
9323 (digit-argument): Handle these keys.
9324
bc75b4fd
DL
93252000-07-20 Dave Love <fx@gnu.org>
9326
9327 * net/goto-addr.el (goto-address-fontify): Don't bother with
9328 buffer-modified and read-only stuff -- irrelevant with overlays.
9329 Put an extra property on the overlays and use it to clean up in
9330 case goto-address is re-run.
9331
8b7bc628
RS
93322000-07-19 Richard M. Stallman <rms@gnu.org>
9333
18e21ce8
RS
9334 * timer.el (run-with-idle-timer): Doc fix.
9335
db3ca487 9336 * mail/mail-utils.el (mail-strip-quoted-names):
8b7bc628
RS
9337 Handle case where <...> appears inside "...".
9338 Use replace-match to edit the string more simply.
9339 (rmail-dont-reply-to): Cope with an unmatched ".
9340
50575ec2
DL
93412000-07-19 Dave Love <fx@gnu.org>
9342
9343 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
9344 implementation.
9345
9346 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
9347 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
9348 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
9349
4279296d
GM
93502000-07-19 Gerd Moellmann <gerd@gnu.org>
9351
47db06aa
GM
9352 * textmodes/refer.el: Correct maintainer's email address.
9353
9354 * progmodes/hideif.el: Correct author's email address.
9355 Fix typo in comment.
9356
9357 * xml.el: New file.
9358
4279296d
GM
9359 * mail/mailheader.el: Correct author's mail address.
9360
9361 * gnus/parse-time.el: Correct author's mail address.
9362
47db06aa 93632000-07-19 Colin Walters <walters@cis.ohio-state.edu>
db3ca487
NF
9364
9365 * comint.el (comint-highlight-input, comint-highlight-face):
47db06aa
GM
9366 New user options.
9367 (comint-input-ring-file-name): Change custom type.
9368 (comint-mode-map): Bind mouse-2.
9369 (comint-insert-clicked-input): New function.
9370 (comint-send-input): Handle input highlighting.
9371
21ad0f7b
SM
93722000-07-18 Stefan Monnier <monnier@cs.yale.edu>
9373
9374 * mouse.el (popup-menu): New function.
9375 (mouse-major-mode-menu): Use it.
9376
3b33a005
DL
93772000-07-18 Dave Love <fx@gnu.org>
9378
9379 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
9380 improvements.
9381
dc1cac59
GM
93822000-07-18 Gerd Moellmann <gerd@gnu.org>
9383
21ad0f7b 9384 * faces.el (face-font-selection-order)
dc1cac59 9385 (face-font-family-alternatives): Add custom type.
db3ca487 9386
f8276b77
DL
93872000-07-18 Dave Love <fx@gnu.org>
9388
9389 * cus-edit.el (custom-variable-reset-saved)
9390 (custom-variable-reset-standard): Remove unused bindings.
9391
9392 * rect.el (open-rectangle-line): Remove unused let.
9393
9394 * hl-line.el (hl-line-highlight): Check hl-line-mode.
9395
3d6cd763
GM
93962000-07-18 Gerd Moellmann <gerd@gnu.org>
9397
9398 * cdl.el: Fix `Maintainer' keyword.
9399
9400 * play/pong.el: Add author's email address.
9401
34342a07
SS
94022000-07-17 Sam Steingold <sds@gnu.org>
9403
9404 * files.el (insert-directory): Call `split-string' instead of
9405 re-implementing it.
9406
088831a6
GM
94072000-07-18 Gerd Moellmann <gerd@gnu.org>
9408
9409 * mail/vms-pmail.el: Change maintainer to FSF.
9410
9411 * net/goto-addr.el: Change maintainer to FSF.
9412
088831a6 9413 * info.el (Info-title-face-alist): Removed.
db3ca487 9414
c152047f
GM
94152000-07-18 David Ponce <david@dponce.com>
9416
9417 * recentf.el (recentf-open-files): New command that works like
9418 `recentf-open-more-files', but shows the whole list of files (not just
9419 those omitted from the menu). Useful if you don't use a menu-bar!
9420 (recentf-open-more-files) Modified to use `recentf-open-files'.
9421
9422 (recentf-open-files, recentf-open-more-files)
9423 (recentf-edit-list): Dialogs use `recentf-dialog-mode'
e04d21aa 9424
c152047f
GM
9425 (recentf-dialog-mode): New mode for dialogs. You can now just type
9426 "q" to cancel the dialogs.
9427
94282000-07-18 David Ponce <david@dponce.com>
9429
9430 * recentf.el: This is a major update of recentf.el. It adds new
9431 features to better organize the recentf menu and "More..." buffer.
9432
9433 Using new provided menu filtering functions you can now organize the
9434 recent files list:
9435
9436 - by major modes
9437 - by directories
9438 - by user defined rules
9439
9440 Finally, with the new `recentf-filter-changer' customizable filter you
9441 can define a ring of filters and dynamically (via the menu) cycle on
9442 each menu organization in the ring (a la msb).
9443
68be2869
EZ
94442000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
9445
9446 * eshell/eshell.el (eshell): Replace links to eshell.info with
9447 links to eshell, to avoid problems on systems where the manual is
9448 installed as `eshell'.
9449 * eshell/esh-cmd.el (eshell-cmd): Ditto.
9450 * eshell/em-smart.el (eshell-smart): Ditto.
9451 * eshell/em-banner.el (eshell-banner): Ditto.
21ad0f7b 9452 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
68be2869
EZ
9453
9454 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
9455 same-file check in the MS-DOS version (it does support inodes).
9456
9457 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
9458
21ad0f7b
SM
9459 * eshell/eshell.el (eshell-directory-name):
9460 Run default directory name through convert-standard-filename.
68be2869 9461
269b4dcb
KH
94622000-07-18 Kenichi Handa <handa@etl.go.jp>
9463
21ad0f7b
SM
9464 * international/mule-cmds.el (select-safe-coding-system):
9465 Fix typo in the comment.
240a16cf 9466
21ad0f7b
SM
9467 * language/european.el (compound-text):
9468 Force katakana-jisx0201 to be designated to G1.
aa96c820 9469
21ad0f7b
SM
9470 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
9471 Don't translate some national variant characters of latin-jisx0201.
aa96c820 9472 (x-ctext): Force katakana-jisx0201 to be designated to G1.
a99c9d06 9473
269b4dcb
KH
9474 * international/kkc.el (kkc-after-update-conversion-functions):
9475 New variable.
9476 (kkc-update-conversion): Run functions in it at the tail.
9477
68be2869 94782000-07-16 John Wiegley <johnw@gnu.org>
6feeb380 9479
21ad0f7b
SM
9480 * lisp/align.el (align-newline-and-indent):
9481 Adding new function. for auto-aligning blocks of code on RET.
6feeb380
JW
9482 (align-region): Fixed badly formatted minibuffer message.
9483
7a3fd467
KH
94842000-07-17 Kenichi Handa <handa@etl.go.jp>
9485
21ad0f7b 9486 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
7a3fd467
KH
9487 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
9488 the conversion list at first if appropriate.
9489 (kkc-next): Don't update kkc-next-count here.
9490 (kkc-prev): Don't update kkc-prev-count here.
9491 (kkc-show-conversion-list-update): Fix setting up of conversion
9492 list message.
9493
a45423d8
SM
94942000-07-16 Stefan Monnier <monnier@cs.yale.edu>
9495
088831a6 9496 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
a45423d8 9497
91a38db1
DL
94982000-07-16 Dave Love <fx@gnu.org>
9499
9500 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
9501 function to be more specific.
9502
9503 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
9504 non-string help-echo.
9505 (widget-types-convert-widget): Defsubst it.
9506 (widget-echo-help): Try to cope with a help-echo function of two
9507 possible sorts.
9508
3fddcdc3
JR
95092000-07-15 Jason Rumney <jasonr@gnu.org>
9510
9511 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
9512 Declare as obsolete.
9513
9514 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
9515
bd23a692
GM
95162000-07-14 Gerd Moellmann <gerd@gnu.org>
9517
9518 * hilit-chg.el: Fix typo.
9519
d4af987a
DL
95202000-07-14 Dave Love <fx@gnu.org>
9521
9522 * info.el (Info-mode-menu): Fix use of :help, :enable.
9523
3a4f3f86
SM
95242000-07-14 Stefan Monnier <monnier@cs.yale.edu>
9525
9526 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
9527
cf6936a4
DL
95282000-07-13 Dave Love <fx@gnu.org>
9529
4d6d04b5
DL
9530 * emacs-lisp/easymenu.el: Doc fixes.
9531 (easy-menu-remove): Defalias to ignore.
9532
cf6936a4
DL
9533 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
9534 Call throw correctly.
9535
56437999
GM
95362000-07-13 Gerd Moellmann <gerd@gnu.org>
9537
9538 * faces.el (frame-background-mode): Doc fix.
9539
9540 * simple.el (eval-expression-print-length): Change custom type to
9541 allow entering nil as value.
9542
d04a3972
DL
95432000-07-13 Dave Love <fx@gnu.org>
9544
3a4f3f86
SM
9545 * progmodes/fortran.el (fortran-imenu-generic-expression):
9546 Change definition layout.
a8189dfe
DL
9547 (fortran-mode-menu): Reinstate customize entries.
9548
d04a3972
DL
9549 * cus-edit.el (custom-group-menu-create, customize-menu-create):
9550 Use :filter, per old XEmacs code.
9551
4bf4fb05
GM
95522000-07-12 Gerd Moellmann <gerd@gnu.org>
9553
9554 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
9555 event when deciding what to send to the terminal.
9556
37328bcd
DL
95572000-07-12 Dave Love <fx@gnu.org>
9558
9559 * cus-start.el: Add optional version as 4th element of specs and
9560 use it for several things new in v21. Remove load-path. Fix type
9561 of line-number-display-limit.
9562
89492072
DL
95632000-07-11 Dave Love <fx@gnu.org>
9564
3a4f3f86
SM
9565 * progmodes/fortran.el: Don't require easymenu.
9566 Use repeat counts in various regexps.
315aa1de
DL
9567 (fortran-mode-syntax-table): Defvar directly.
9568 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
3a4f3f86
SM
9569 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
9570 Use defvar, not defconst.
9571 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
315aa1de
DL
9572 (fortran-mode): Set fortran-comment-line-start-skip,
9573 fortran-comment-line-start-skip, dabbrev-case-fold-search.
9574 (fortran-comment-indent): Use defsubst.
3a4f3f86
SM
9575 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
9576 Use fortran-comment-indent, not fortran-comment-indent-function.
315aa1de
DL
9577 (fortran-comment-region, fortran-electric-line-number): Simplify.
9578 (fortran-auto-fill): New function.
9579 (fortran-do-auto-fill): Deleted.
3a4f3f86
SM
9580 (fortran-find-comment-start-skip):
9581 Check for non-null comment-start-skip.
9582 (fortran-auto-fill-mode, fortran-fill-statement):
9583 Use fortran-auto-fill.
315aa1de 9584 (fortran-fill): Use fortran-auto-fill. Check for null
3a4f3f86 9585 comment-start-skip. Simplify final clause and use end-of-line finally.
315aa1de 9586
89492072
DL
9587 * widget.el (widget-plist-member): New alias.
9588
d55ead18
EZ
95892000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
9590
9591 * eshell/esh-module.el (toplevel): Reference
9592 byte-compile-current-file only if it is bound.
9593
e82a2a05
GM
95942000-07-10 Gerd Moellmann <gerd@gnu.org>
9595
9596 * dired.el: Don't require `dired-aux'.
9597
1fc7fb2b
MB
95982000-07-10 Miles Bader <miles@lsi.nec.co.jp>
9599
9600 * dired-aux.el (dired-show-file-type): New function.
9601 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
9602 (dired-show-file-type): Add autoload.
9603
ab49ce15
KH
96042000-07-10 Kenichi Handa <handa@etl.go.jp>
9605
9606 * international/mule-diag.el (describe-font): Adjusted for the
3a4f3f86 9607 change of fontset-info.
ab49ce15
KH
9608 (print-fontset): Likewise.
9609
f45aab65
SM
96102000-07-09 Stefan Monnier <monnier@cs.yale.edu>
9611
9612 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
9613
2f72fd2f
GM
96142000-07-07 Gerd Moellmann <gerd@gnu.org>
9615
e82a2a05 9616 * bindings.el: Bind `[delete]' to delete-char.
965522f5 9617
2f72fd2f
GM
9618 * dired.el (dired-find-alternate-file): New function.
9619 (dired-mode-map): Bind `a' to dired-find-alternate-file.
9620 (toplevel): Require dired-aux when compiling.
9621 (dired-buffers): Move defvar within file to avoid compiler warning.
9622
9623 * info.el (Info-last-search): Variable removed.
9624 (Info-search-history): New variable.
9625 (Info-search): New Info-search-history.
9626
9627 * battery.el, info-look.el: Change author's mail address.
9628
965522f5 96292000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
34342a07 9630
965522f5
GM
9631 * mail/rmail.el (rmail-clear-headers): Don't throw an error
9632 if rmail-ignored-headers is nil.
9633 (rmail-retry-failure): Bind rmail-ignored-headers and
9634 rmail-displayed-headers to nil.
9635
dd8888a1
GM
96362000-07-06 Gerd Moellmann <gerd@gnu.org>
9637
e5c81191
GM
9638 * lpr.el (lpr-page-header-switches): Add `-h' switch.
9639 (print-region-1): Don't hard code `-h' here.
9640
dd8888a1
GM
9641 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
9642
e5c81191
GM
96432000-07-01 Francesco Potorti` <pot@gnu.org>
9644
9645 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
9646 exim can use "your message" instead of "the message".
34342a07 9647
f45aab65
SM
96482000-07-06 Stefan Monnier <monnier@cs.yale.edu>
9649
9650 * facemenu.el: Docstrings fixes.
9651 (facemenu-get-face): Don't use internal-find-face.
9652 (facemenu-iterate): Rename arg to match the docstring.
9653
9654 * newcomment.el (uncomment-region): Be more careful when skipping
9655 backwards over `=' not to bump into BOBP.
9656
d396e521 96572000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
34342a07 9658
dd8888a1
GM
9659 * ediff-diff.el (ediff-wordify): Use syntax table.
9660 * ediff-init.el (ediff-has-face-support-p): Use
d396e521 9661 ediff-color-display-p.
dd8888a1 9662 (ediff-color-display-p): Use display-color-p, changed to defun
d396e521
MK
9663 from defsubst.
9664 Got rid of special cases for NeXT and OS/2.
dd8888a1 9665 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
d396e521 9666 face.
34342a07 9667
5e2dfaa4
SM
96682000-07-05 Stefan Monnier <monnier@cs.yale.edu>
9669
9670 * emacs-lisp/lucid.el: Require CL.
9671 (copy-tree, remprop): Remove, it's provided by CL.
9672 (map-keymap): Define in terms of cl-map-keymap.
9673 (extent-property, set-extent-end-glyph): New functions.
9674
9675 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
9676
d5c5cddd
GM
96772000-07-05 Gerd Moellmann <gerd@gnu.org>
9678
485266d0
GM
9679 * Makefile.in (DONTCOMPILE): Add comment that the name may
9680 not be changed without changing the make-dist script.
9681
5e2dfaa4 9682 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
d5c5cddd 9683 (cl-mapc): Use mapc instead of cl-old-mapc.
34342a07 9684
e2c46326
AI
96852000-07-05 Andrew Innes <andrewi@gnu.org>
9686
9687 * makefile.nt: Add support for `bootstrap' and related targets.
9688
a027a91b
SM
96892000-07-05 Stefan Monnier <monnier@cs.yale.edu>
9690
9691 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
9692 (easy-menu-do-define): Use `menu-item' format.
9693 Handle case where easy-menu-create-menu returns a symbol.
9694 Manually call the potential top-level filter in the function binding.
9695 (easy-menu-filter-return): New arg NAME.
9696 Convert to a keymap if MENU is an XEmacs menu.
9697 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
9698 (easy-menu-converted-items-table, easy-menu-convert-item):
9699 New var and fun to memoize easy-menu-convert-item-1.
9700 (easy-menu-do-add-item): Use it.
9701 (easy-menu-create-menu): Use easy-menu-convert-item.
9702 Wrap easy-menu-filter-return around any :filter specification.
9703 Don't convert the menu if a filter was specified.
9704 Tell easy-menu-make-symbol not to check for MENU being an expression.
9705 (easy-menu-make-symbol): New arg NOEXP.
9706
5e03eb84
GM
97072000-07-05 Gerd Moellmann <gerd@gnu.org>
9708
9709 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
9710 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
9711 (eval-defun): If called with prefix arg, instrument code for
9712 Edebug.
9713
9714 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
9715 similar to that of eval-defun.
9716
fca68a95
DL
97172000-07-04 Dave Love <fx@gnu.org>
9718
7ccbba4c
DL
9719 * hl-line.el (hl-line-overlay): Make it permanent-local.
9720
fca68a95
DL
9721 * calendar/todo-mode.el: Replaced with a working version, based on
9722 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
9723
97242000-07-03 Miles Bader <miles@lsi.nec.co.jp>
78e7e8a0
MB
9725
9726 * paths.el (prune-directory-list): New function.
9727 (Info-default-directory-list): Rewritten to more methodically
9728 enumerate a big list of possible info directories (based on the
9729 list used by the standalone info reader).
fca68a95 9730
78e7e8a0 9731 * info.el (info-initialize): Use prune-directory-list to remove
3a4f3f86 9732 non-existent directories from Info-directory-list.
78e7e8a0 9733
78e7e8a0
MB
9734 * paths.el (Info-default-directory-list): Try a list of possible
9735 info-directories instead of a single one. Add the possible
9736 info directory "/usr/share/info".
9737
9738 * woman.el (woman-man.conf-path): Explicitly include the debian
9739 man-db config file "/etc/manpath.config".
9740 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
9741 are present in `manpath.config'.
9742 (woman-manpath): Include "/usr/share/man".
9743
67c9a1d2
GM
97442000-07-03 Gerd Moellmann <gerd@gnu.org>
9745
6753393b
GM
9746 * frame.el (blink-cursor-mode): Don't hide cursor initially.
9747
9748 * startup.el (command-line): Initialize blink-cursor based
9749 on window-system.
9750
e4f98ad3
GM
9751 * frame.el (blink-cursor): Default to nil if not running under
9752 a window-system.
9753
2f516940
GM
9754 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
9755 (face-x-resources): Remove duplicate entry for :font.
9756
67c9a1d2
GM
9757 * textmodes/refer.el (refer-find-entry-internal): Use some-window
9758 instead of cycling through windows with next-window.
9759
9760 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
9761 of cycling through windows with next-window.
9762
9763 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
9764 of cycling through windows with next-window.
9765
9766 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
9767 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
9768 instead of cycling through windows with next-window.
9769
9770 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
9771 instead of cycling through windows with next-window.
9772
9773 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
9774 of cycling through windows with next-window.
9775
9776 * terminal.el (te-process-output): Use walk-windows instead of
9777 cycling through windows with next-window.
9778
9779 * server.el (server-switch-buffer): Use some-window instead of
9780 cycling through windows with next-window.
9781
9782 * window.el (some-window): New function.
9783 (walk-windows): Remove reference to walk-windows-start.
831a6cb0 9784
3a4f3f86 9785 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
831a6cb0 9786
8b7bc628 97872000-07-03 Richard Stallman <rms@gnu.org>
67c9a1d2
GM
9788
9789 * window.el (walk-windows): Guarantee termination by keeping a list
9790 of all the windows already handled.
9791
d0d57043
EZ
97922000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
9793
9794 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
9795 window-system.
9796
9797 * man.el (Man-notify-when-ready): Don't use window-system. If
9798 Man-notify-method is newframe, and the display is not
9799 multi-frame, select the frame created for the man page.
9800 (Man-init-defvars): Doc fix.
9801
d5483ab1
GM
98022000-06-28 Gerd Moellmann <gerd@gnu.org>
9803
af5c25e1
GM
9804 * faces.el (region): Change background color for light background.
9805
9806 * ediff-wind.el (ediff-setup-control-frame): Remove :box
9807 attribute from mode-line face of Ediff control frame.
9808
d5483ab1
GM
9809 * replace.el (query-replace-map): Bind `e' like `E'.
9810
9d47450f
EZ
98112000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
9812
3a4f3f86
SM
9813 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
9814 Change name to "Select All".
496b7491 9815
9d47450f
EZ
9816 * dos-fns.el (convert-standard-filename): Fix last change.
9817
0b431deb
GM
98182000-06-27 Gerd Moellmann <gerd@gnu.org>
9819
4fa9f636
GM
9820 * help.el (describe-variable): Don't insert a second `'s' in front
9821 of the string `value is shown below'. Since the syntax-table is
9822 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
9823 an existing `'s', so that this won't be deleted.
9824
0b431deb
GM
9825 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
9826 * pcmpl-unix.el: New files.
9827
32cad0aa
SM
98282000-06-26 Stefan Monnier <monnier@cs.yale.edu>
9829
9830 * wid-edit.el (widget-member): Use the new plist-member.
9831
2c69ced2
GM
98322000-06-26 Gerd Moellmann <gerd@gnu.org>
9833
44c0f771
GM
9834 * replace.el (perform-replace): Undo change of 2000-04-04.
9835 Instead, move backward 1 character at the end of the loop when
9836 necessary.
34342a07 9837
1d36487c
GM
9838 * faces.el (fringe): Change face for different backgrounds.
9839
9840 * eshell/esh-module.el (toplevel): Load defgroup's differently;
9841 patch from John.
9842
2c69ced2
GM
9843 * eshell/*.el: Change spelling of the Free Software Foundation.
9844
9845 * eshell/esh-toggle.el: Removed.
9846
9847 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
9848
9849 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
9850 interactively.
9851
98522000-06-26 Alex Schroeder <alex@gnu.org>
9853
9854 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
9855 `define-key'; instead of checking `(emacs-version)' check for
9856 `set-keymap-parent' and `set-keymap-name' directly. Add entries
9857 for `;' and `o' which might be electric.
9858
9859 (sql-electric-stuff): New user option.
9860 (sql-magic-go): New function which uses `sql-electric-stuff'.
9861 (sql-magic-semicolon): New function which uses
9862 `sql-electric-stuff'.
9863
9864 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
9865 is not fboundp.
9866
9867 (sql-oracle-options): New variable.
9868 (sql-oracle): Use it.
9869
9870 (sql-imenu-generic-expression): Doc change.
9871 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
9872 is used.
9873
9874 (sql-informix): Added command line parameter "-" to force
9875 sql-informix-program to use stdout.
9876
db1306d8
EZ
98772000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
9878
3a4f3f86 9879 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
db1306d8
EZ
9880 (cp864-decode-table): Doc fix.
9881 (cp720-decode-table): New variable, supports the Arabic OEM
9882 codepage used by Windows.
9883 (cp737-decode-table): New, Greek OEM codepage used by Windows.
9884
c69e5fcd
DL
98852000-06-23 Dave Love <fx@gnu.org>
9886
9887 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
9888 (font-lock-fontify-anchored-keywords): Use
9889 line-beginning-position.
9890 (global-font-lock-mode): Use mapc.
9891
30ad8f23
SM
98922000-06-23 Stefan Monnier <monnier@cs.yale.edu>
9893
9894 * eshell/esh-module.el: Require CL when compiling.
9895
26b4dc84
GM
98962000-06-23 Gerd Moellmann <gerd@gnu.org>
9897
78c56e70
GM
9898 * comint.el (comint-substitute-in-file-name): Call replace-match
9899 with second and third arg t.
9900
34342a07 9901 * cus-edit.el (custom-button-face, custom-button-pressed-face):
f6478c66
GM
9902 Specify foreground color.
9903
9904 * faces.el (tool-bar, mode-line, header-line): Specify foreground
9905 color.
9906
affbf647
GM
9907 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
9908
9909 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
9910 cddr instead of cdddr.
9911
25fffb31
GM
9912 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
9913 instead of copy-list.
9914
9915 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
9916 of copy-list.
9917
26b4dc84
GM
9918 * subdirs.el: Add eshell subdirectory.
9919
9920 * eshell: New subdirectory containing the Eshell package.
9921
9922 * pcomplete.el: New file.
9923
78c56e70
GM
99242000-06-23 Paul Eggert <eggert@twinsun.com>
9925
ea055732
GM
9926 * mail/mailpost.el (post-mail-send-it): Make sure file has
9927 proper permissions from birth.
9928
9929 * files.el (basic-save-buffer-2): When temporarily setting
9930 file modes, set them to current modes plus 0200, not to 0777.
9931
78c56e70
GM
9932 * emerge.el (emerge-make-temp-file): Make sure file has proper
9933 permissions from birth.
9934
a3a7ff33
EZ
99352000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
9936
9937 * files.el (make-backup-file-name-1): On DOS/Windows, run the
9938 backup file name through convert-standard-filename.
9939
9940 * dos-fns.el (convert-standard-filename): Convert leading
9941 directories as well. When long file names are supported, convert
9942 characters that are invalid in Windows file names.
9943
1fd9b7fe
GM
99442000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9945
9946 * ps-print.el: Fix bug: if ^L is the very first buffer character,
9947 ps-print crashes. New feature: page selection for printing. Create
9948 raw-text-unix coding system for XEmacs. Doc fix.
9949 (ps-print-version): New version number (5.2.3).
9950 (ps-plot-region): Bug fix.
9951 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
9952 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
9953 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
9954 funs.
9955 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
9956 (ps-last-page): New vars.
9957
16ed8416
GM
99582000-06-21 Gerd Moellmann <gerd@gnu.org>
9959
9960 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
9961 empty option string.
9962
4fbee715
EZ
99632000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
9964
9965 * man.el (man): Doc fix.
9966
eaecfc94
KH
99672000-06-21 Kenichi Handa <handa@etl.go.jp>
9968
9969 * international/mule-cmds.el (set-language-info-alist): Docstring
9970 fixed.
9971
4a27bdfb
GM
99722000-06-20 Gerd Moellmann <gerd@gnu.org>
9973
9974 * version.el (emacs-version): Use ISO date format.
9975
9976 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
9977 instead of `M-backspace'.
9978
9979 * simple.el (turn-off-auto-fill): New function.
9980
8972fe79
SM
99812000-06-20 Stefan Monnier <monnier@cs.yale.edu>
9982
9983 * jit-lock.el (with-buffer-prepared-for-jit-lock):
9984 Renamed from with-buffer-prepared-for-font-lock and use
9985 inhibit-modification-hooks rather than setting *-change-functions.
9986 Update all functions to use the new name.
9987 (jit-lock-first-unfontify-pos): New semantics (and doc).
9988 (jit-lock-mode): Make non-interactive.
9989 Don't automatically turn on font-lock.
9990 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
9991 Always use jit-lock-after-change.
9992 Remove and restore font-lock-after-change-function.
9993 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
9994 (jit-lock-after-unfontify-buffer): Remove.
9995 (jit-lock-stealth-fontify):
9996 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
9997 (jit-lock-after-change): Set the `fontified' text-prop to nil.
9998
5d80cc9c
SS
99992000-06-20 Sam Steingold <sds@gnu.org>
10000
10001 * emacs-lisp/cl-indent.el (toplevel): Indent
10002 `print-unreadable-object' properly. Untabify.
10003
f54e4d13
CD
100042000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
10005
10006 * textmodes/reftex.el (reftex-find-citation-regexp-format):
10007 Support for bibentry.
10008 (reftex-compile-variables): Fixed problem with end of section-re.
10009
10010 * texmodes/reftex-dcr.el (reftex-view-crossref,
8972fe79
SM
10011 reftex-view-crossref-from-bibtex):
10012 Deal with changed `reftex-find-citation-regexp-format'.
f54e4d13
CD
10013 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
10014 Replaced `remprop' with `put'.
8972fe79
SM
10015 (reftex-view-crossref, reftex-view-crossref-when-idle):
10016 Support for bibentry.
f54e4d13 10017
8972fe79
SM
10018 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
10019 New entry for bibentry package.
f54e4d13 10020
8972fe79
SM
10021 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
10022 Regexp also matches "\nobibliography".
f54e4d13 10023
8972fe79
SM
10024 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
10025 Call `reftex-ensure-write-access' before doing anything.
f54e4d13
CD
10026 (reftex-ensure-write-access): New function.
10027
f54e4d13
CD
100282000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
10029
10030 * progmodes/idlwave.el: File re-installed (update to version 4.2)
10031
10032 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
10033
10034 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
10035
10036 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
10037
10038
560c43f4
DL
100392000-06-20 Dave Love <fx@gnu.org>
10040
10041 * faces.el (frame-background-mode): Use set-default, not set, in
10042 setter.
10043 (frame-update-faces, frame-update-face-colors): Define with
10044 defalias.
10045
10046 * enriched.el (enriched-decode-foreground)
10047 (enriched-decode-background): Don't use internal-find-face.
10048
10049 * apropos.el: Doc fixes.
10050
10051 * cus-edit.el (customize-changed-options): Check arg.
10052 (customize-version-lessp): Don't require decimal point.
10053
10054 * custom.el (defcustom, defgroup): Doc fix.
10055
10056 * newcomment.el (comment) <defgroup>: Add :version.
10057 (comment-multi-line): Doc fix.
10058
10059 * emulation/mlsupport.el (define-hooked-local-abbrev,
10060 define-hooked-global-abbrev): Fix, using define-abbrev.
10061
cdf0357b
GM
100622000-06-19 Gerd Moellmann <gerd@gnu.org>
10063
10064 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
10065 the whole buffer.
10066
10013d74
DL
100672000-06-19 Dave Love <fx@gnu.org>
10068
10069 * menu-bar.el (menu-bar-options-save): New function.
10070 (menu-bar-options-menu): Use it.
10071 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
10072 Simplify.
10073
6922f208
AS
100742000-06-19 Andreas Schwab <schwab@suse.de>
10075
10076 * progmodes/etags.el (tags-query-replace): Put new parameters
10077 START and END at the end, for backward compatibility.
10078
10d7bf84
KH
100792000-06-19 Kenichi Handa <handa@etl.go.jp>
10080
10081 * international/codepage.el:
10082 (cp-coding-system-for-codepage-1): Delete special codes for
10083 generating xxx-dos coding system because now a CCL based coding
10084 system can handle EOL conversion by default.
10085
10086 * international/mule.el (make-coding-system): Generate subsidiary
10087 coding systems for EOL handling variants even for a CCL based
10088 coding system.
10089
8f3c9a3d
KH
100902000-06-19 Kenichi Handa <handa@etl.go.jp>
10091
10092 * international/isearch-x.el (isearch-minibuffer-input-method)
10093 (isearch-minibuffer-input-method-function): These variables
10094 deleted.
10095 (isearch-with-input-method): Don't use the above variables.
10096 (isearch-process-search-multibyte-characters): Likewise. Call
10097 read-string with the arg INHERIT-INPUT-METHOD t.
10098
c2acf685
SM
100992000-06-17 Stefan Monnier <monnier@cs.yale.edu>
10100
13f0d185
SM
10101 * font-lock.el (font-lock-after-fontify-buffer)
10102 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
10103
10104 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
10105 Use consistent make-local-variable style for font-lock-fontified.
10106 (jit-lock-fontify-buffer):
10107 Don't bother checking for font-lock-mode and jit-lock-mode.
10108
c2acf685
SM
10109 * time.el: Remove trailing ^M that prevent CVS-merging.
10110
a9021acd
GM
101112000-06-16 Gerd Moellmann <gerd@gnu.org>
10112
10113 * Makefile.in (distclean): New target.
5d80cc9c 10114
0df68e9f
SM
101152000-06-16 Stefan Monnier <monnier@cs.yale.edu>
10116
10117 * Makefile.in (srcdir): Define for update-subdirs.
10118
6344985d
GM
101192000-06-16 Gerd Moellmann <gerd@gnu.org>
10120
10121 * find-lisp.el: New file.
10122
63239267
AI
101232000-06-16 Andrew Innes <andrewi@gnu.org>
10124
10125 * time.el (display-time-mail-function): New variable, to allow
10126 external packages to indicate when new mail is available.
10127 (display-time-update): Use it.
10128
1699f991
KH
101292000-06-16 Kenichi Handa <handa@etl.go.jp>
10130
a3b37893
KH
10131 * international/mule.el (mule-version): Change version name to
10132 SAKAKI. AOI has already been used by Meadow.
10133
1699f991
KH
10134 * international/quail.el (quail-show-guidance-buf): To find the
10135 bottom window (but minibuffer), pay attention to the height of
10136 minibuffer.
10137
228b083e
EZ
101382000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
10139
7d5c8691
EZ
10140 * arc-mode.el (archive-mode-map): Use the new menu-item format for
10141 menu-bar menus. Add help strings. Don't remove the Edit menu
10142 from the menu bar, as the menu bar has enough space now.
10143
261f3289
EZ
10144 * Makefile.in (SHELL): Make sure /bin/sh is used.
10145
228b083e
EZ
10146 * woman.el (woman-man-buffer): Fix bold and underlined CJK
10147 characters, which use series of two ^H characters instead of one.
10148
e27e8d71
GM
101492000-06-15 Gerd Moellmann <gerd@gnu.org>
10150
5d80cc9c 10151 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
451ec4e3 10152 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
5d80cc9c 10153 functions.
451ec4e3
GM
10154 (Info-find-node-2): Try a case-sensitive search first, then
10155 do a case-insensitive search.
10156
10157 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
10158 tutorials.
10159
b675095c
GM
10160 * complete.el (PC-env-vars-alist): New variable.
10161 (PC-complete-as-file-name): New function.
10162 (partial-completion-mode): Initialize PC-env-vars-alist from
10163 process-environment.
10164 (PC-do-completion): Handle completion of env vars.
10165
10166 * info.el (Info-set-mode-line): Show file name in mode line,
10167 use `*Info*' instead of `Info:'.
10168
e27e8d71
GM
10169 * startup.el (command-line-1): Change copyright messages to year
10170 2000.
10171
28223a7e
DL
101722000-06-15 Dave Love <fx@gnu.org>
10173
10174 * net/goto-addr.el (goto-address-fontify): Use keymap property,
10175 not local-map.
10176
32684631
KH
101772000-06-15 Kenichi Handa <handa@etl.go.jp>
10178
10179 * international/mule.el (set-buffer-file-coding-system): Almost
10180 rewritten to handle `undecided' as no-op.
10181
9f817ea4
GM
101822000-06-14 Gerd Moellmann <gerd@gnu.org>
10183
e27e8d71 10184 * Makefile.in: New file.
dce6b995
GM
10185
10186 * Makefile: Removed.
10187
9f817ea4
GM
10188 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
10189 (goto-address-highlight-keymap): Bind C-c RET.
10190
2de33f94
KH
101912000-06-14 Kenichi Handa <handa@etl.go.jp>
10192
bbf1e8a5
KH
10193 * mail/sendmail.el (sendmail-send-it): The temporary buffer
10194 inherits buffer-file-coding-system of the current buffer.
725a6897 10195
02891cc3
KH
10196 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
10197 0. Give correct argument to set-auto-coding-function.
10198 (tar-expunge): For goto-char, use (point-min), not 0.
10199 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
10200 (tar-subfile-save-buffer): Likewize.
10201
2de33f94
KH
10202 * international/mule.el
10203 (after-insert-file-set-buffer-file-coding-system): Call
10204 set-buffer-file-coding-system with the arg FORCE t.
10205
1681ead6
GM
102062000-06-13 Gerd Moellmann <gerd@gnu.org>
10207
10208 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
10209 nil. Contemporary sendmails issue an X-Authentication-Warning if
b675095c 10210 the sender is set with `-f'.
1681ead6 10211
fdf4b680
DL
102122000-06-13 Dave Love <fx@gnu.org>
10213
9c50afce
DL
10214 * help.el (describe-function-1): Kluge around cases of functions
10215 fset to subrs whose doc doesn't match their symbol-name.
10216
0ad550ba 10217 * image.el (insert-image): Default STRING to a space.
f290ca08 10218
fdf4b680 10219 * info.el Doc fixes.
5d80cc9c 10220 (Info-build-node-completions): Match Ref tags.
fdf4b680 10221
9b6610db
EZ
102222000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
10223
a704139d
EZ
10224 * frame.el (display-multi-frame-p, display-multi-font-p): New
10225 defaliases for display-graphic-p.
10226
9b6610db
EZ
10227 * hl-line.el: Fixed a typo in commentary.
10228
7a5ea398
KH
102292000-06-13 Kenichi Handa <handa@etl.go.jp>
10230
10231 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
10232 fixed.
10233
0dc91c57
DL
102342000-06-12 Dave Love <fx@gnu.org>
10235
10236 * image.el (insert-image): Save a little consing.
10237
0bd5914b
KH
102382000-06-12 Kenichi Handa <handa@etl.go.jp>
10239
10240 * language/tibet-util.el: Convert all tibetan-1-column characters
10241 to the corresponding tibetan characters.
10242 (tibetan-add-components): Delete code for the special treatment of
10243 'a chung.
10244
10245 * language/tibetan.el (tibetan-composable-pattern): Fix previous
10246 change.
10247 (tibetan-vowel-transcription-alist): More rules added.
10248 (tibetan-composite-vowel-alist): New variable.
10249 (tibetan-precomposition-rule-alist): More rules added.
10250
6dc7d3d5
SM
102512000-06-12 Stefan Monnier <monnier@cs.yale.edu>
10252
9c04c393
SM
10253 * startup.el (command-line): Only call menu-bar-mode if interactive.
10254
10255 * thingatpt.el (toplevel symbol-properties):
10256 * textmodes/makeinfo.el (makeinfo-compile):
10257 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
5d80cc9c 10258 * progmodes/hideif.el (hif-compress-define-list)
9c04c393 10259 (hide-ifdef-use-define-alist):
5d80cc9c 10260 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
9c04c393
SM
10261 (ange-ftp-vms-add-file-entry):
10262 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
10263 * man.el (Man-build-man-command):
10264 * mail/rnewspost.el (news-reply-header-hook):
10265 * info.el (Info-insert-dir):
10266 * emulation/mlconvert.el (backward-word, forward-word, setq):
10267 * emacs-lisp/gulp.el (gulp-send-requests):
5d80cc9c
SS
10268 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
10269 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
9c04c393
SM
10270 (byte-optimize-apply, end of file):
10271 * emacs-lisp/advice.el (ad-advice-class-completion-table)
10272 (ad-make-freeze-definition):
10273 * startup.el (command-line, command-line-1): Don't quote lambdas.
10274
6dc7d3d5
SM
10275 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
10276 (cvs-cleanup-removed): New function.
10277 (cvs-cleanup-functions): New var.
10278 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
10279 some flexibility in specifying additional entries to auto-cleanup.
10280 (cvs-quickdir): New function.
10281 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
10282 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
10283 (cvs-mode-find-file): Check that we are on a filename or dirname
10284 when invoked through a mouse-click.
10285 (cvs-full-path): Remove.
10286 (cvs-dired-action): Re-introduced.
10287 (cvs-dired-noselect): Use it.
10288 (vc-post-command-functions): use this new hook if available.
10289
10290 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
10291 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
10292 (cvs-filename-map, cvs-dirname-map): Remove.
10293 (cvs-default-action): Remove.
10294 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
10295 if the arg is really a keymap.
10296 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
10297 Don't hardcode the mapping from state (aka type) to face, but check
10298 the var cvs-fi-<type>-face instead.
10299 (cvs-fileinfo-from-entries): New function.
10300
10301 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
10302 Docstring fix.
10303 (cvs-find-file-and-jump): Change default to be safer.
10304 (cvs-mode-diff-map): Define it as a function as well.
10305 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
10306 Bind mouse-2 in this global map rather than with text-properties.
10307
10308 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
10309 file to resolve the ambiguity between C(conflict) and C(need-merge).
10310
5050a2ef
KH
103112000-06-12 Kenichi Handa <handa@etl.go.jp>
10312
10313 * international/mule.el (set-buffer-file-coding-system): If
10314 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
10315 unconditionally.
10316
35a7ac84
DL
103172000-06-12 Dave Love <fx@gnu.org>
10318
10319 * wid-edit.el (widget-specify-button): Really suppress the face if
10320 required.
10321
db8eeecd
GM
103222000-06-11 Gerd Moellmann <gerd@gnu.org>
10323
10324 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
10325
70223ca4
SM
103262000-06-11 Stefan Monnier <monnier@cs.yale.edu>
10327
10328 * imenu.el (imenu-generic-expression): Docstring fix.
10329
10330 * composite.el (composition-function-table): Move the `put'
10331 below the autoload cookie so we can load the file before loaddefs.
10332
10333 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
10334
10335 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
10336 Handle easy-mmode-define-global-mode.
10337 For complex macros like define-minor-mode that can generate
10338 several autoload entries, try to autoload entries in the
10339 macroexpanded code.
10340
10341 * emacs-lisp/easy-mmode.el (define-minor-mode):
10342 If KEYMAP is a symbol, just use it.
10343 Use byte-compile-current-file and load-file-name to infer the
10344 proper :require to pass to defcustom.
10345 Wrap the hook var into `progn' so as not to autoload it.
10346 Add a :autoload-end cookie.
10347 Be more careful about the evaluation of KEYMAP.
10348 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
10349 (define-derived-mode): Move define-abbrev-table outside of defvar.
10350
103512000-06-10 Stefan Monnier <monnier@cs.yale.edu>
10352
10353 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
10354 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
10355 (backup-compiled-files): Ignore errors during `tar'.
10356 (bootstrap): Make autoloads before elc files.
10357
9c53b34e
KH
103582000-06-10 Kenichi Handa <handa@etl.go.jp>
10359
10360 * international/mule.el (set-buffer-file-coding-system): If one of
5d80cc9c 10361 undecided-XXX is specified, change only EOL conversion.
9c53b34e
KH
10362
10363 * international/mule-conf.el (unix): New alias for the coding
10364 system undecided-unix.
10365
22ddd299
DL
103662000-06-09 Dave Love <fx@gnu.org>
10367
5ee42746
DL
10368 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
10369
70223ca4 10370 * progmodes/executable.el: Byte compile dynamic.
22ddd299
DL
10371 (executable-insert): Change custom type.
10372 (executable-find): Add autoload cookie.
cc7e1d18
DL
10373 (executable-make-buffer-file-executable-if-script-p): New
10374 function. After Noah Friedman.
22ddd299
DL
10375
10376 * files.el (after-save-hook): Customize, with
cc7e1d18 10377 executable-make-buffer-file-executable-if-script-p as an option.
22ddd299 10378
41ea3794
KH
103792000-06-09 Kenichi Handa <handa@etl.go.jp>
10380
f89437e3
KH
10381 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
10382 "tib24p-mule.bdf" for Tibetan.
10383
7a4ee259
KH
10384 * composite.el (decompose-composite-char): Declare it as obsolete.
10385
ff6a65c2
KH
10386 * man.el (Man-fontify-manpage): Pay attention to underline and
10387 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
41ea3794 10388
f83fe4b4
GM
103892000-06-08 Gerd Moellmann <gerd@gnu.org>
10390
10391 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
10392 Set maintainer to FSF since author isn't reachable.
10393
e56d7900
DL
103942000-06-08 Dave Love <fx@gnu.org>
10395
10396 * international/mule-cmds.el (select-safe-coding-system): If
10397 DEFAULT-CODING-SYSTEM is not specified, also check the most
10398 preferred coding-system if buffer-file-coding-system is
10399 `undecided'. From Handa.
10400
d3981b49
KH
104012000-06-08 Kenichi Handa <handa@etl.go.jp>
10402
10403 * international/mule.el
10404 (after-insert-file-set-buffer-file-coding-system): If the buffer
10405 size is greater than INSERTED, judget that we are not visiting.
10406
bff71087
RV
104072000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
10408
10409 * whitespace.el (defgroup whitespace): Comment out `:version'.
10410 XEmacs 20.4 has problems defining the group with this present.
10411 We'll have this commented out till get resolve the problem.
10412
fd9ac94c 104132000-06-07 John Wiegley <johnw@gnu.org>
e04d21aa 10414
fd9ac94c
GM
10415 * align.el (align-dq-string-modes, align-sq-string-modes)
10416 (align-open-comment-modes): Add pyhton-mode.
10417 (align-rules-list): Use get-text-property instead of
10418 text-properties-at.
10419 (align-rules-list): Add python-assignment.
10420 (align-rules-list): Change perl-comma-delimiter to
10421 basic-comma-delimiter. Use if for Perl modes and python-mode.
10422 (align-rules-list): Add python-chain-logic and
10423 basic-line-continuation.
45f485a6
GM
10424
104252000-06-07 Jari Aalto <jari.aalto@poboxes.com>
10426
10427 * apropos.el (apropos-mode-hook): New user variable.
10428 (apropos-mode): Run apropos-mode-hook.
bff71087 10429
45f485a6
GM
104302000-06-07 David Ponce <david@dponce.com>
10431
10432 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
10433 commands. Require `wid-edit' at run-time.
10434
104352000-06-07 David Ponce <david@dponce.com>
10436
10437 * recentf.el: Added some "Commentary".
10438 (recentf-open-more-files, recentf-edit-list): Minor changes to
10439 move the point at the top of the file list. This behaviour is
10440 consistent with the menu one when the list contains a lot of
10441 files.
10442 (recentf-cleanup): Now displays the number of items removed from
10443 the list.
10444 (recentf-relative-filter) New menu filter to show filenames
10445 relative to `default-directory'.
bff71087 10446
45f485a6
GM
104472000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10448
10449 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
10450 with/without giving an error if PostScript printer doesn't have this
10451 kind of page size. Zebra Stripe continues or restarts on next page.
10452 Manual/automatic paper feeding. Switch or not the header.
10453 (ps-print-version): New version number (5.2.2).
10454 (ps-windows-system): Include emx as a Windows system.
10455 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
10456 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
10457 (ps-background-text): Code fix.
10458 (ps-error-handler-message, ps-user-defined-prologue)
10459 (ps-print-prologue-header, ps-printer-name)
10460 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
10461 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
10462 (ps-use-face-background): Customization fix.
10463 (ps-n-up-database): Data fix.
10464 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
10465 (ps-switch-header): New vars.
10466 (ps-xemacs-color-name, ps-face-foreground-name)
10467 (ps-face-background-name, ps-boolean-constant): New funs.
10468
c14dcd22
DL
104692000-06-07 Dave Love <fx@gnu.org>
10470
10471 * allout.el: New version from Manheimer.
10472
e4044bb0
KH
104732000-06-07 Kenichi Handa <handa@etl.go.jp>
10474
10475 * textmodes/fill.el (fill-find-break-point): Check the validity of
10476 charset.
10477
59cfe8b9
KF
104782000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10479
10480 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
10481 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
10482 Call display-color-p and display-mouse-p instead of looking at
10483 window-system.
10484
bb2337f5
DL
104852000-06-06 Dave Love <fx@gnu.org>
10486
10487 * image.el (find-image): Doc fix. Return nil if image not found.
10488 (put-image, insert-image): Make STRING arg optional.
10489
8e624fa2
KH
104902000-06-06 Kenichi Handa <handa@etl.go.jp>
10491
10492 * language/vietnamese.el: Remove eval-when-compile.
10493 (viet-viscii-nonascii-translation-table): Define it as a
10494 translation table made from viet-viscii-decode-table.
10495 (viet-viscii-encode-table): Define it as a translation table made
10496 from the reverse map of above.
10497 (viet-vscii-nonascii-translation-table): Define it as a
10498 translation table made from viet-vscii-decode-table.
10499 (viet-vscii-encode-table): Define it as a translation table made
10500 from the reverse map of above.
10501 (ccl-decode-viscii): Use translate-character.
10502 (ccl-encode-viscii, ccl-encode-viscii-font)
10503 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
10504 Likewize.
bff71087 10505
8e624fa2
KH
10506 * language/cyrillic.el: Remove eval-when-compile.
10507 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
10508 translation table made from cyrillic-koi8-r-decode-table.
10509 (cyrillic-koi8-r-encode-table): Define it as a translation table
10510 made from the reverse map of above.
10511 (ccl-decode-koi8): Use translate-character.
10512 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
10513 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
10514 a translation table made from cyrillic-alternativnyj-decode-table.
10515 (cyrillic-alternativnyj-encode-table): Define it as a translation
10516 table made from the reverse map of above.
10517 (ccl-decode-alternativnyj): Use translate-character.
10518 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
10519 Likewize
10520
10521 * international/mule-diag.el (non-iso-charset-alist): Specify
10522 translation table symbol instead of translation table itself.
10523 (list-block-of-chars): CHARSET may be a translation table symbol.
10524
10525 * international/mule.el (make-coding-system): If CODING-SYSTEM
10526 already exists, override it.
10527
10528 * international/fontset.el: Use family `proportional' for Tibetan
10529 fonts.
10530
10531 * international/ccl.el (ccl-compile-translate-character): Don't
10532 check if Rrr has property translation-table.
10533 (ccl-compile-map-multiple): Modified to avoid compiler warning.
10534
1969fae2
GM
105352000-06-05 Gerd Moellmann <gerd@gnu.org>
10536
10537 * info.el: Bind case-fold-search to t when searching in case
10538 a user sets it to nil in a hook.
10539
d5b037c5
SM
105402000-06-05 Stefan Monnier <monnier@cs.yale.edu>
10541
d3d02e65
SM
10542 * autoarg.el (autoarg-mode, autoarg-kp-mode):
10543 * hl-line.el (hl-line-mode): Use the new :global key argument.
10544
10545 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
10546 (tar-clip-time-string): Prepend a space.
10547 (tar-grind-file-mode): Construct a string rather than modifying one.
10548 (tar-header-block-summarize): Fix docstring.
10549 Use `format' rather than an error-prone set of copy-loops.
10550
10551 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
10552 (diff-goto-source, diff-unified->context, diff-context->unified)
10553 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
10554 understand the format output by the `-p' argument to diff.
10555
bff71087 10556 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
d3d02e65
SM
10557 (sh-re-done): Use defconst.
10558 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
10559 (sh-help-string-for-variable, sh-guess-basic-offset):
10560 Don't quote lambdas.
10561 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
10562 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
10563
f7c4478f
SM
10564 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
10565 (mh-letter-mode): Derive from text-mode.
10566 This implicitly means that it now calls kill-all-local-variables.
10567 Also remove the Emacs-18 compatibility code.
10568
a8add29d
SM
10569 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
10570 Make use of symbol-property doc-string-elt.
10571 Use memq rather than a sequence of eq.
10572 (doc-string-elt): Fix the wrong or missing previously unused values.
10573 (autoload-print-form): New function extracted from
10574 generate-file-autoloads to allow recursion when handling progn
10575 so that defvar's and defun's docstrings are properly printed.
10576 (generate-file-autoloads): Use it.
10577
d5b037c5
SM
10578 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
10579 Use find-file-hooks in the minor-mode function.
10580 Be careful not to loop indefinitely in the post-command-hook function.
10581
560ef11a 105822000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
bff71087 10583
1969fae2 10584 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
560ef11a 10585 tty's.
1969fae2 10586 * ediff-diff.el (ediff-exec-process): Use --binary for fine
d5b037c5 10587 differences whenever appropriate.
1969fae2
GM
10588 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
10589 * viper.el (find-file, find-file-other-window): Get viper to do
bff71087
RV
10590 wildcards.
10591
b5bbbb76
SM
105922000-06-04 Stefan Monnier <monnier@cs.yale.edu>
10593
d5b037c5
SM
10594 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
10595 (jit-lock-fontify-buffer): New function for JIT refontification.
10596 (jit-lock-mode): Fix docstring.
10597 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
10598 Remove jit-lock-after-change from the _local_ hook.
10599 (jit-lock-function-1): Fix docstring.
10600
10601 * info.el (Info-on-current-buffer): Initialize info.
10602
10603 * newcomment.el (comment-indent): Ignore comment-indent-hook.
10604
10605 * progmodes/tcl.el (tcl-indent-for-comment):
10606 Ignore comment-indent-hook.
10607
10608 * emacs-lisp/easy-mmode.el: Require CL during compilation.
10609 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
b5bbbb76
SM
10610 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
10611 and improve to use the lighter to guess the capitalization.
10612 (define-minor-mode): Inline code from easy-mmode-define-toggle.
10613 Add keyword arguments to specify global-ness or the custom group.
10614 Add local-map and help-echo properties to the lighter.
10615 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
d5b037c5 10616 (easy-mmode-define-global-mode): New macro.
b5bbbb76 10617
bfa6c260
DL
106182000-06-02 Dave Love <fx@gnu.org>
10619
10620 * wid-edit.el: byte-compile-dynamic since we typically don't use
10621 all the widgets. Don't require cl or widget. Remove
10622 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
10623 (widget-read-event): Removed. Callers changed to use read-event.
10624 (widget-button-release-event-p): Renamed from
10625 button-release-event-p.
10626 (widget-field-add-space, widget-field-use-before-change):
10627 Uncustomize.
10628 (widget-specify-field): Use keymap property, not local-map.
10629 (widget-specify-button): Obey :suppress-face.
10630 (widget-specify-insert): Use modern backquote syntax.
10631 (widget-image-directory): Renamed from widget-glyph-directory.
10632 (widget-image-enable): Renamed from widget-glyph-enable.
10633 (widget-image-find): Replaces widget-glyph-find.
10634 (widget-button-pressed-face): Move defvar.
10635 (widget-image-insert): Replaces widget-glyph-insert.
10636 (widget-convert): Use keywordp.
10637 (widget-leave-text, widget-children-value-delete): Use mapc.
10638 (widget-keymap): Remove XEmacs stuff.
b5bbbb76 10639 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
bfa6c260
DL
10640 (widget-button-click): Don't set point at the click, but re-centre
10641 if we scroll out of window. Rewritten for images v. glyphs &c.
10642 (widget-tabable-at): Use POS arg, not point.
10643 (widget-beginning-of-line, widget-end-of-line)
10644 (widget-item-value-create, widget-sublist, widget-princ-to-string)
10645 (widget-sexp-prompt-value, widget-echo-help): Simplify.
10646 (widget-default-create): Use widget-image-insert; some rewriting.
10647 (widget-visibility-value-create)
10648 (widget-push-button-value-create, widget-toggle-value-create): Use
10649 widget-image-insert.
10650 (checkbox): Create on and off images dynamically.
10651 (documentation-link): Change :help-echo.
10652 (widget-documentation-link-echo-help): Remove.
10653
3837de12
SM
106542000-06-02 Stefan Monnier <monnier@cs.yale.edu>
10655
10656 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
10657
10658 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
10659 (easy-mmode-define-toggle, define-minor-mode): Use it.
10660 (easy-mmode-define-keymap): Docstring fix.
10661 (define-derived-mode): Default PARENT to fundamental-mode.
10662 Add the derived-mode-parent symbol-property.
10663 (easy-mmode-derived-mode-p): New function.
10664
90aa4ea8
DL
106652000-06-02 Dave Love <fx@gnu.org>
10666
37193ee6
DL
10667 * files.el (convert-standard-filename): Doc fix.
10668 (normal-backup-enable-predicate): New function.
10669 (backup-enable-predicate): Use it to replace the lambda form.
10670
10671 * calendar/todo-mode.el: [This needs more work on the outline
10672 stuff.] Doc fixes.
10673 (todo) <defgroup>: Add :version.
10674 (todo-add-category): Don't use pushnew.
10675 (todo-cmd-raise): Fix typo.
10676 (todo-top-priorities): Change temp buffer name.
10677 (todo-category-alist): Avoid redundant lambda.
3837de12
SM
10678 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
10679 Use outline-next-heading.
37193ee6 10680
90aa4ea8
DL
10681 * autoarg.el: Rewritten to use define-minor-mode.
10682 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
10683 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
10684
2e54623a
KH
106852000-06-02 Kenichi Handa <handa@etl.go.jp>
10686
10687 * isearch.el (isearch-other-meta-char): Fix previous change.
10688
c5def0db
SM
106892000-06-01 Stefan Monnier <monnier@cs.yale.edu>
10690
3837de12
SM
10691 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
10692 (log-edit-done): Only add the comment to the ring if it's different
10693 from the last comment entered.
10694
c5def0db
SM
10695 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
10696
2330c9d4
DL
106972000-06-01 Dave Love <fx@gnu.org>
10698
10699 * hl-line.el: Rewritten using define-minor-mode.
10700
10701 * help.el (describe-function-1): Distinguish special form from
10702 builtin function. Sanity-check presence of arglist for builtins.
10703
6e5dfc31
KH
107042000-06-01 Kenichi Handa <handa@etl.go.jp>
10705
4dc1225b
KH
10706 * international/characters.el: Fix syntax/category setting of
10707 Tibetan characters.
10708
10709 * language/tibet-util.el (tibetan-add-components): Fixes for new
10710 encoding of Tibetan characters.
10711 (tibetan-decompose-precomposition-alist): New variable.
10712 (tibetan-decompose-region): Convert precomposed characters to
10713 non-precomposed characters.
10714 (tibetan-decompose-string): Likewise.
10715 (tibetan-composition-function): Fix args to
10716 thibetan-compose-string.
10717
10718 * language/tibetan.el (tibetan-composable-pattern): More
10719 characters included.
10720 (tibetan-consonant-transcription-alist): Rule for "R" added.
10721 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
10722 "+R" added.
10723 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
10724
eadef5e6
KH
10725 * language/lao-util.el (lao-composition-function): Fix args to
10726 compose-string.
10727
10728 * language/thai-util.el (thai-composition-function): Fix args to
10729 compose-string.
10730
6e5dfc31 10731 * isearch.el (isearch-update): Set disable-point-adjustment to t
6389e4ab
KH
10732 to prevent the point moving to the end of a composition when a
10733 part of a composition is searched.
6e5dfc31
KH
10734 (isearch-other-meta-char): If the key invoking this command can be
10735 mapped by function-key-map to a printing char, call
10736 isearch-process-search-char directly.
10737
2598a293
SM
107382000-06-01 Stefan Monnier <monnier@cs.yale.edu>
10739
10740 * emacs-lisp/bytecomp.el:
10741 * frame.el:
10742 * international/mule-cmds.el:
10743 * international/mule-util.el:
10744 * international/mule.el:
10745 * mouse.el:
10746 * subr.el:
10747 * faces.el: Update calls to make-obsolete with a WHEN argument.
10748
10749 * byte-run.el (make-obsolete, make-obsolete-variable):
10750 Add an optional WHEN argument and change the format of the
bff71087 10751 symbol-property information.
2598a293
SM
10752 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
10753 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
10754 new obsolete-symbol-property format and print WHEN if it is provided.
10755
28d8dff1
DL
107562000-05-31 Dave Love <fx@gnu.org>
10757
10758 * loadhist.el (loadhist-hook-functions): Remove
10759 before-change-function, after-change-function.
10760 (unload-feature): Deal with symbols which are both bound and
10761 fbound.
10762
10763 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
10764 before-change-function, after-change-function.
10765
10766 * simple.el (newline): Don't bind before-change-function,
10767 after-change-function.
10768
7f565d87
RV
107692000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
10770
10771 * whitespace.el (whitespace-rescan-timer-time): Update interval
10772 set to 600 seconds (10 minutes) instead of 60 seconds since
10773 a large number of whitespace buffers causes emacs to `freeze'
10774 for a considerable amount of time.
10775
bff71087 10776 * whitespace.el: Updated email address
7f565d87 10777
a8d693d8
DL
107782000-05-31 Dave Love <fx@gnu.org>
10779
10780 * add-log.el (change-log-font-lock-keywords) <function>: Add
10781 pattern for function of change.
10782 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
10783 acknowledgements patterns.
10784
a50192e7
KH
107852000-05-31 Kenichi Handa <handa@etl.go.jp>
10786
10787 * isearch.el (isearch-printing-char): If keyboard coding system is
10788 being used, call isearch-process-search-multibyte-characters.
10789
10790 * international/isearch-x.el: Mostly rewritten.
10791
10792 * international/quail.el (quail-start-conversion): Don't include
10793 unhandled events in the returned events, but set them in
10794 unread-command-events. Exit if all inputs are deleted.
10795
7e492772
JR
107962000-05-30 Jason Rumney <jasonr@gnu.org>
10797
10798 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
10799
10800 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
10801 Reenable code to create initial fontsets.
10802 Use set-fontset-font in place of put-charset-property.
10803
10fc3187
GM
108042000-05-30 Gerd Moellmann <gerd@gnu.org>
10805
79148ea7
GM
10806 * progmodes/perl-mode.el (perl-indent-line): When looking for a
10807 label, ensure that the first colon isn't followed by another.
10808
10809 * paths.el (Info-default-directory-list): Doc fix.
10810
086d5b87
GM
10811 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
10812 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
10813 send a query containing USER only, not USER@HOST.
10814
10fc3187
GM
10815 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
10816 and rmail-msgend to compute the restriction at the end, instead of
10817 computing it.
10818
49e70dec
GM
108192000-05-29 Gerd Moellmann <gerd@gnu.org>
10820
66254a13
GM
10821 * dabbrev.el (dabbrev-expand): Don't display messages in the
10822 echo area if the minibuffer window is active.
10823
49e70dec
GM
10824 * jit-lock.el (jit-lock-mode): Add after change function to
10825 local hook.
10826
108272000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
10828
10829 * antlr-mode.el: New commands: hide/unhide actions,
10830 upcase/downcase literals.
10831 (antlr-tiny-action-length): New user option.
10832 (antlr-hide-actions): New command. Suggested by
10833 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
7f565d87 10834 (antlr-mode-map): New binding [C-c C-v].
49e70dec
GM
10835 (antlr-mode-menu): New entries.
10836 (antlr-downcase-literals): New command.
10837 (antlr-upcase-literals): Ditto.
10838
10839 * antlr-mode.el: Minor changes: indendation, mode-name.
10840 (antlr-indent-line): Indent cpp directive at column 0.
10841 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
10842
10843 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
10844 (antlr-font-lock-additional-keywords): Workaround for intentional
10845 bug in XEmacs version of font-lock.
10846 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
10847 be used by a smarter version of `buffers-menu-grouping-function'.
10848
108492000-05-29 Gerd Moellmann <gerd@gnu.org>
10850
10851 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
10852 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
10853
49f93684
KH
108542000-05-29 Kenichi Handa <handa@etl.go.jp>
10855
10856 * international/encoded-kb.el
10857 (encoded-kbd-iso2022-designation-map): Pay attention to that
10858 charset-iso-final-char return -1 for eight-bit-control and
10859 eight-bit-graphic.
10860
5b1ae051
EZ
108612000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
10862
10863 * speedbar.el (speedbar-use-images, speedbar-update-flag)
10864 (speedbar-easymenu-definition-base): Use display-graphic-p where
10865 available, instead of window-system.
10866
a205e32a
EZ
108672000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
10868
10869 * international/codepage.el (cp-coding-system-for-codepage-1): Add
10870 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
10871 coding systems.
10872
dd854dc2
DL
108732000-05-26 Dave Love <fx@gnu.org>
10874
c88a85d5
DL
10875 * disp-table.el (standard-display-underline): Don't use
10876 internal-find-face.
10877
dd854dc2
DL
10878 * mail/reporter.el: Maintainer change. Doc fixes.
10879 (reporter-version): Deleted.
10880
10881 * emacs-lisp/elp.el: Maintainer change.
10882 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
10883
dc29aa6c
SM
108842000-05-26 Stefan Monnier <monnier@cs.yale.edu>
10885
10886 * add-log.el (add-change-log-entry): Merge the current entry with the
10887 previous one if the previous one is empty.
10888
ed62683d
DL
108892000-05-26 Dave Love <fx@gnu.org>
10890
4370a375
DL
10891 * loadhist.el (unload-feature): Fix interactive spec [from
10892 lijnzaad@ebi.ac.uk].
10893
ed62683d
DL
10894 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
10895 subr-arity to check primitives.
10896 (byte-compile-flush-pending, byte-compile-file-form-progn)
10897 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
10898 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
10899 mapcar.
10900
ba9f8f95
KH
109012000-05-26 Kenichi Handa <handa@etl.go.jp>
10902
0f3e0672
KH
10903 * international/fontset.el: Set family names of non-latin charsets
10904 in default fontset to "*".
10905
cebefb44
KH
10906 * international/mule-diag.el (print-fontset): Combine family part
10907 and registry part of the fontname by "-*-" instead of "-".
10908
ba9f8f95
KH
10909 * international/mule-cmds.el (encode-coding-char): Make strings
10910 multibyte before calling encode-coding-string.
10911
931d0724
SM
109122000-05-25 Stefan Monnier <monnier@cs.yale.edu>
10913
10914 * derived.el: Fix keywords.
8ccce2b0 10915 (define-derived-mode): Only define if needed.
931d0724
SM
10916
10917 * simple.el (fill-comment, comment-column, comment-start)
10918 (comment-start-skip, comment-end, comment-indent-function)
10919 (block-comment-start, block-comment-end, indent-for-comment)
10920 (set-comment-column, kill-comment, comment-padding, comment-region)
10921 (comment-multi-line, indent-new-comment-line): Remove.
10922
10923 * bindings.el (esc-map): Change ; to comment-dwim and use the new
10924 function names for comment operations.
10925
10926 * newcomment.el: Add abundant autoload cookies.
10927 (comment-style): Don't depend on runtime data at compile-time.
10928 (comment-indent-hook): Remove.
10929 (comment-indent): Check if comment-indent-hook is bound.
10930 (comment-region): Docstring fix.
10931
6fc596cf
DL
109322000-05-25 Dave Love <fx@gnu.org>
10933
10934 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
10935 byte-code-function-p.
10936
10937 * mail/rmailsum.el: Add provide.
10938
10939 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
10940
10941 * smerge-mode.el (smerge-diff-switches): Don't use list* in
10942 defcustom.
10943
7997f1ca 109442000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
7f565d87 10945
7997f1ca
MK
10946 * ediff-diff.el (ediff-exec-process): delete --binary option from
10947 non-buffer ediff jobs.
7f565d87 10948
e7a903e8
EZ
109492000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10950
10951 * hilit-chg.el (highlight-changes-mode): Ask about color or
10952 grayscale support, not about window-system.
10953
10954 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
10955 window-system.
10956 (ffap-highlight): Always default to t.
10957
10958 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
10959 display-popup-menus-p instead of looking at window-system.
10960
10961 * disp-table.el (standard-display-g1, standard-display-graphic):
10962 Only refuse to use string glyphs on X and MS-Windows.
10963
10964 * avoid.el: Remove window-system from commentary, suggest to use
10965 display-*-p instead.
10966
10967 * apropos.el (apropos-print): Use display-mouse-p instead of
10968 window-system.
10969
14028d57
EZ
109702000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10971
10972 * international/codepage.el (cp-decoding-vector-for-codepage):
10973 Fill up unsupported characters with their own codes. From Kenichi
10974 Handa.
10975
1a4f9cc1
EZ
109762000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10977
10978 * international/mule-diag.el (describe-char-after): Use
10979 display-graphic-p instead of window-system, so that this function
10980 works on MS-DOS.
10981
89f6ca4e
EZ
109822000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10983
10984 * international/codepage.el (cp-make-coding-systems-for-codepage):
10985 Remove the eight-bit-graphic and eight-bit-control charsets from
10986 the list of charsets which we convert into `?'.
10987
eacfd7fe
KH
109882000-05-25 Kenichi Handa <handa@etl.go.jp>
10989
10990 * international/mule-conf.el: Specify CHARSET-ID explicitely for
10991 private charsets.
10992 (mule-unicode-0100-24ff, japanese-jisx0213-1,
10993 japanese-jisx0213-2): New charsets.
10994
10995 * international/fontset.el: Setup default fontset for new charsets.
10996
deadf7e3
DL
109972000-05-24 Dave Love <fx@gnu.org>
10998
10999 * info.el (Info-find-node-2): Restructure [following "Vadim
11000 S. Solomin" <sovs@uic.nnov.ru>].
11001
11002 * icomplete.el: Fix header for Finder.
11003
110042000-05-24 Eric M. Ludlam <zappo@ultranet.com>
11005
11006 * rmailout.el (rmail-output-to-rmail-file): Added optional param
11007 STAY.
11008
11009 * rmail.el (rmail-automatic-folder-directives): New user variable.
11010 (rmail-show-message): Add call to `rmail-auto-file' during
11011 display.
11012 (rmail-auto-file): New function.
11013
6de3983f 110142000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
7f565d87 11015
fc6a6a4e 11016 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
6de3983f 11017 account.
fc6a6a4e
GM
11018 (ediff-test-utility,ediff-diff-mandatory-option)
11019 (ediff-reset-diff-options): Utilities for proper initialization of
6de3983f 11020 ediff-diff-options and ediff-diff3-options on Windows.
7f565d87 11021
fc6a6a4e 11022 * ediff-init.el (ediff-merge-filename-prefix): New customizable
6de3983f 11023 variable.
7f565d87 11024
fc6a6a4e 11025 * ediff-mult.el (ediff-filegroup-action): Use
6de3983f
MK
11026 ediff-merge-filename-prefix.
11027
fc290d1d
MK
110282000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
11029
fc6a6a4e 11030 * viper-ex.el (ex-write): Set selective display to nil.
7f565d87 11031
273182b8
EZ
110322000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
11033
11034 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
11035 aliases for hebrew-iso-8bit.
11036
f471ea57
EZ
110372000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
11038
11039 * woman.el: New version from Francis J. Wright
11040 <F.J.Wright@Maths.QMW.ac.uk>.
11041 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
11042 names in environment variables regardless of the path separator.
11043 (woman-topic-all-completions-1): Don't call file-name-directory-p
11044 on all files, since woman-file-regexp already filters out any
11045 directories.
11046
01162f24
KH
110472000-05-24 Kenichi Handa <handa@etl.go.jp>
11048
48e3df76
KH
11049 * international/quail.el (quail-start-translation): Don't change
11050 modified-p of the current buffer.
11051 (quail-start-conversion): Likewise.
11052
11053 * international/kkc.el (kkc-region): Don't change modified-p of
11054 the current buffer.
11055
747d90ea
KH
11056 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
11057 conform to RFC1468.
11058 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
01162f24 11059
17a223ff
EL
110602000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
11061
11062 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
11063 (speedbar-insert-button): Invisible text property fix.
11064 (speedbar-directory-plus): Renamed from speedbar-directory-+
11065 (speedbar-directory-minus): Renamed from speedbar-directory--
11066 (speedbar-page-plus): Renamed from speedbar-file-+
11067 (speedbar-page-minus): Renamed from speedbar-file--
11068 (speedbar-page): Renamed from speedbar-file-
11069 (speedbar-tag): Renamed from speedbar-tag-
11070 (speedbar-tag-plus): Renamed from speedbar-tag-+
11071 (speedbar-tag-minus): Renamed from speedbar-tag--
11072 (speedbar-expand-image-button-alist): Use above renames.
11073
11074 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
11075 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
11076 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
11077 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
11078 * sb-pg.xpm: Renamed from sb-file.xpm
11079 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
11080 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
7f565d87 11081
e6b6fc18
KH
110822000-05-24 Kenichi Handa <handa@etl.go.jp>
11083
11084 * international/quail.el (quail-show-guidance-buf): Set
11085 current-input-method of the guidance buffer to the name of the
11086 curren input method.
11087
a1a336eb
SM
110882000-05-23 Stefan Monnier <monnier@cs.yale.edu>
11089
11090 * progmodes/compile.el (compile-internal): Style typo.
11091
11092 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
11093 quote vars and functions in the docstring.
11094
11095 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
11096
11097 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
11098 Don't quote lambdas.
11099
11100 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
11101
9695b783
GM
111022000-05-23 Gerd Moellmann <gerd@gnu.org>
11103
716e3b88
GM
11104 * startup.el (command-line): Determine source file of compiled
11105 user init file differently. Warn if compiled user init file
11106 is older than its source file.
11107
9695b783 11108 * ffap.el (ffap-url-regexp): Add `https'.
7f565d87 11109
41ac433f
EZ
111102000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
11111
11112 * files.el (make-backup-file-name-1): Replace slashes with `!'
11113 rather than `|' (which is not allowed on Windows). Replace the
11114 drive letters with a string "drive_X".
11115
46600ab1
GM
111162000-05-23 Gerd Moellmann <gerd@gnu.org>
11117
11118 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
11119
11120 * files.el (interpreter-mode-alist): Add `bash2'.
11121
79a64d87
DL
111222000-05-22 Dave Love <fx@gnu.org>
11123
11124 * loadhist.el (feature-symbols, file-provides, file-requires): Use
11125 mapc.
11126 (feature-file): Avoid calling symbol-name. Doc fix.
11127 (file-set-intersect, file-dependents): Use dolist, not mapcar.
11128 (loadhist-hook-functions): Add mouse-position-function.
11129 (unload-feature): Change uses of mapcar.
11130
11131 * files.el (parse-colon-path): Doc fix.
11132 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
11133 (set-auto-mode): Use mapc.
11134
11135 * complete.el (PC-look-for-include-file): Use :alnum: character
11136 class.
11137 (partial-completion-mode): Add autoload cookie.
11138
0e8c11d8
SS
111392000-05-22 Sam Steingold <sds@gnu.org>
11140
ce75fd23 11141 * info.el (Info-fontify-node): Fixed the call to
0e8c11d8
SS
11142 `add-text-properties' (bug introduced on 2000-05-18).
11143
d8d0fa6c
DL
111442000-05-22 Dave Love <fx@gnu.org>
11145
11146 * bindings.el: Remove debug-ignored-errors set in other files.
11147
11148 * progmodes/etags.el: Add to debug-ignored-errors.
11149 (visit-tags-table-buffer): Clear out buffers holding old tables
11150 when making a new list.
11151 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
11152 mapc.
11153
11154 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
11155 quote keywords.
11156 (cmpl-string-case-type): Use character classes.
11157
0e8c11d8
SS
11158 * comint.el:
11159 * textmodes/ispell.el:
11160 * imenu.el:
d8d0fa6c
DL
11161 * mail/mh-e.el:
11162 * progmodes/compile.el: Add to debug-ignored-errors.
11163
11164 * dabbrev.el: Add to debug-ignored-errors.
11165 (dabbrev-completion): Use mapc.
11166
1edbbf8a
EZ
111672000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
11168
11169 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
11170 (woman-mapcan, woman-parse-man.conf)
11171 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
11172 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
11173 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
11174 path syntax better.
11175 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
11176 (woman-manpath): Call woman-parse-man.conf.
11177 (woman-emulation): New defcustom, defaults to nroff.
11178 (woman-font-support): New defconst.
11179 (woman-use-symbol-font): New defcustom.
11180 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
11181 "Emulation".
11182 Many functions: Doc fix.
11183
5bd2148c
KH
111842000-05-22 Kenichi Handa <handa@etl.go.jp>
11185
11186 * international/quail.el (quail-simple-translation-keymap): Map
11187 128..255 to quail-self-insert-command.
11188 (quail-keyboard-layout-alist): Add definition for "pc102-de".
11189
4125ec7e
SM
111902000-05-22 Stefan Monnier <monnier@cs.yale.edu>
11191
a1a336eb
SM
11192 * help.el (help-manyarg-func-alist): Typo.
11193
40aeecad
SM
11194 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
11195 intervals which makes it heaps simpler.
11196
4125ec7e
SM
11197 * newcomment.el (comment-region-internal): Go back to BEG after quoting
11198 the nested comment markers.
e4da9c1c
SM
11199
11200 * subr.el (remove-hook): Don't turn the hook's value into a list.
11201
cb7216a7
DL
112022000-05-21 Dave Love <fx@gnu.org>
11203
ac266581
DL
11204 * edmacro.el (edmacro-parse-keys): Return vector if any elements
11205 are invalid characters.
11206
cb7216a7
DL
11207 * international/mule-util.el (detect-coding-with-priority): Use
11208 mapc. Remove redundant lambda.
11209
11210 * international/mule-diag.el (list-non-iso-charset-chars)
11211 (describe-fontset): Remove redundant lambda.
11212
11213 * emulation/crisp.el (brief-mode): New alias.
11214
11215 * emacs-lisp/ring.el (ring-elements): New function.
11216
11217 * emacs-lisp/easymenu.el (easy-menu-create-menu)
11218 (easy-menu-do-add-item): Use keywordp.
11219
11220 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
11221
11222 * replace.el: Doc and error message fixes.
11223 (replace-highlight): Use facep, not internal-find-face.
11224
9b0d1d6e
SM
112252000-05-20 Stefan Monnier <monnier@cs.yale.edu>
11226
b2d2cf58
SM
11227 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
11228
ffe7dc64
SM
11229 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
11230 (log-edit-insert-changelog): Drop `:' as well.
11231
11232 * log-view.el: Fix file description.
11233 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
11234 available.
11235 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
11236 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
11237
c8c21615
SM
11238 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
11239 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
11240 Print a status message if the toggle is called interactively.
11241 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
11242 for global minor modes and use `defcustom' for them.
11243 Use add-minor-mode.
11244 (easy-mmode-define-derived-mode): Remove.
11245 (define-derived-mode): Fancier default docstring.
11246 (easy-mmode-define-navigation): Signal an error rather than (ding).
11247
9b0d1d6e
SM
11248 * newcomment.el (comment-styles): New `box-multi'.
11249 (comment-normalize-vars): Better default for comment-continue to
11250 avoid whitespace-only continuations.
11251 (comment-search-forward): Always move even in the no-syntax case.
11252 (comment-padright): Only obey N if it's only obeyed for padleft.
11253 (comment-make-extra-lines): Better handling of empty continuations.
11254 Use `=' for the filler if comment-start has only one character.
11255 (uncomment-region): Try handling the special `=' filler.
11256 (comment-region): Allow LINES even if MULTI is nil.
11257 (comment-box): Choose box style based on comment-style.
11258
f5ee6d0f
KH
112592000-05-20 Kenichi Handa <handa@etl.go.jp>
11260
9b0d1d6e 11261 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
f5ee6d0f
KH
11262 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
11263
c9671f81
KH
112642000-05-20 Kenichi HANDA <handa@etl.go.jp>
11265
11266 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
11267 and insert, not subst-char-in-region.
11268
11269 * international/mule-diag.el (list-character-sets-1): Handle
11270 charsets eight-bit-control and eight-bit-graphic.
11271 (list-iso-charset-chars): Likewise.
11272 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
11273 charactes as is. Use indent-to to align characters.
11274
11275 * international/mule-cmds.el (find-multibyte-characters): Never
11276 exclude charsets eight-bit-control and eight-bit-graphic.
11277
1426aa5c
SM
112782000-05-19 Stefan Monnier <monnier@cs.yale.edu>
11279
11280 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
11281 Don't quote lambdas.
11282
11283 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
11284
2b63d473
GM
112852000-05-19 Gerd Moellmann <gerd@gnu.org>
11286
11287 * gud.el (gud-jdb-directories): Doc fix.
11288
f1355756
SM
112892000-05-19 Stefan Monnier <monnier@cs.yale.edu>
11290
11291 * newcomment.el: New file.
11292
5f64c9e0
GM
112932000-05-19 Gerd Moellmann <gerd@gnu.org>
11294
2b63d473 11295 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
5f64c9e0 11296
db7314bd
AS
112972000-05-18 Andreas Schwab <schwab@suse.de>
11298
11299 * dired.el (dired-between-files): Also skip lines beginning with
11300 `used'.
11301
25bb0401
GM
113022000-05-18 Gerd Moellmann <gerd@gnu.org>
11303
11304 * msb.el (msb-menu-cond): Add choice `user'.
11305
a199a865 113062000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
0e8c11d8 11307
a199a865
GM
11308 * ps-print.el: Compatibility, customization and doc fix.
11309 (ps-printer-name-option): Replace defconst by defvar.
11310 (ps-postscript-code-directory): XEmacs compatibility.
11311 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
11312 fix.
11313 (ps-user-defined-prologue, ps-print-prologue-header)
11314 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
11315 compatibility and code fix.
11316 (ps-print-background-image, ps-print-background-text):
11317 Customization fix.
11318 (ps-line-number-start, ps-n-up-on): New vars.
11319
25bb0401
GM
113202000-05-18 Espen Skoglund <esk@ira.uka.de>
11321
11322 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
11323 the indent-comment function to just return the appropriate indent.
11324
68e6c83a
EL
113252000-05-18 Eric M. Ludlam <zappo@ultranet.com>
11326
11327 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
11328 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
11329 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
11330
dae6cb9f
DL
113312000-05-18 Dave Love <fx@gnu.org>
11332
11333 * info.el (Info-fontify-node): Add intangible property as well as
11334 invisible.
11335
11336 * calendar/appt.el (appt-make-list): Match all lines of entry.
11337 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
11338
813086ea
KH
113392000-05-18 Kenichi Handa <handa@etl.go.jp>
11340
11341 * international/mule-diag.el (describe-char-after): Call
11342 internal-char-font, not char-font. If internal-char-font returns
11343 nil, display "-- none --".
11344
24978190
EZ
113452000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
11346
11347 * image.el (image-type-available-p): Don't reference image-types
11348 if it isn't bound.
11349
2fca2d5d
SM
113502000-05-17 Stefan Monnier <monnier@cs.yale.edu>
11351
11352 * autoarg.el (autoarg-mode): Typo in the :set argument.
11353
cfc75d05
EZ
113542000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
11355
11356 * startup.el (command-line-1): Don't signal an error if the
11357 directory for auto-save-list files does not yet exist.
11358
c4e30387
KH
113592000-05-17 Kenichi Handa <handa@etl.go.jp>
11360
11361 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
11362
dd6b8ea7
SM
113632000-05-16 Stefan Monnier <monnier@cs.yale.edu>
11364
11365 * subr.el (remove-hook): `setq' hook-value, not `set'.
11366
399c88ad
SS
113672000-05-16 Sam Steingold <sds@gnu.org>
11368
a199a865 11369 * info.el (debug-ignored-errors): More errors to ignore.
399c88ad 11370
01651f07
DL
113712000-05-16 Dave Love <fx@gnu.org>
11372
11373 * cus-edit.el: Don't require cl or easymenu.
11374 (custom-variable-prompt): Test standard-value property, not
11375 user-variable-p.
11376
2248c40d
SS
113772000-05-16 Sam Steingold <sds@gnu.org>
11378
11379 * subr.el (add-hook): `setq' hook-value, not `set'.
11380
b15f3b77
GM
113812000-05-16 Gerd Moellmann <gerd@gnu.org>
11382
11383 * startup.el (command-line-1): Mention the FAQ in the startup
11384 message.
11385
11386 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
11387
11388 * progmodes/compile.el (compilation-parse-errors): Collect
11389 `nomessage' regexps last.
11390
11391 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
11392
11393 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
11394 to the function name.
11395
f9bbcfac
EL
113962000-05-15 Dave Love <fx@gnu.org>
11397
11398 * speedbar.el (speedbar-recenter): Typo.
11399 (speedbar-expand-line): Make arg optional.
11400 (speedbar-mode): Avoid a compiler warning.
11401
119b42eb
GM
114022000-05-15 Gerd Moellmann <gerd@gnu.org>
11403
11404 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
11405 user-specified option string is empty.
11406
11407 * mouse.el (mouse-yank-at-click): Doc fix.
11408
f685bea9
EZ
114092000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
11410
11411 * term/internal.el (IT-character-translations): More updates of
11412 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
11413 documents.
11414
a1b8d58b
GM
114152000-05-15 Gerd Moellmann <gerd@gnu.org>
11416
11417 * env.el (getenv): New function, interactively callable.
11418 (setenv, getenv): Remove autoload cookies.
11419
11420 * loadup.el: Load `env'.
11421
11422 * progmodes/f90.el: Change author's mail address.
11423
c9bba7ed
DL
114242000-05-14 Dave Love <fx@gnu.org>
11425
e5c83697
DL
11426 * mail/rmail.el (rmail-show-message-hook): Customize and offer
11427 goto-addr as an option.
11428
11429 * help.el (help-xref-stack): Doc fix.
11430 (help-xref-following): New variable.
11431 (help-make-xrefs): Use it.
11432 (help-xref-go-back): Use position information from stack element.
11433 (help-follow): Make position in stack element a pair. Use
11434 help-xref-following.
399c88ad 11435
e5c83697
DL
11436 * autoarg.el: New file.
11437
11438 * faces.el: Declare more functions obsolete.
11439
c9bba7ed
DL
11440 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
11441 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
11442 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
11443 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
11444 Remove all the setup-...-environment functions.
11445
b6389bfb
EL
114462000-05-13 Eric M. Ludlam <zappo@ultranet.com>
11447
a1b8d58b
GM
11448 * speedbar.el: Updated the commentary section. xemacs20p now uses
11449 >= when detecting. Require `defimage' safely.
b6389bfb
EL
11450 (speedbar-easymenu-definition-base): Add toggle for images.
11451 (speedbar-easymenu-definition-special): Add flush cache & expand.
11452 (speedbar-visiting-tag-hook): Set new defaults. Added options.
11453 (speedbar-reconfigure-keymaps-hook): New variable.
11454 (speedbar-frame-parameters): Updated documentation.
11455 (speedbar-use-imenu-flag): Updated custom tag
11456 (speedbar-dynamic-tags-function-list): New variable.
11457 (speedbar-tag-hierarchy-method): Updated doc & custom.
a1b8d58b
GM
11458 (speedbar-indentation-width, speedbar-indentation-width) New
11459 variables.
11460 (speedbar-hide-button-brackets-flag): Customizable.
b6389bfb
EL
11461 (speedbar-vc-indicator): Doc update.
11462 (speedbar-ignored-path-expressions): Updated default value.
11463 (speedbar-supported-extension-expressions): Updated default value.
11464 (speedbar-syntax-table): Remove {} paren status.
a1b8d58b
GM
11465 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
11466 as "+". Added overlay aliases.
11467 (speedbar-mode): Use `speedbar-mode-line-update' instead of
11468 `force-mode-line-update'.
11469 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
11470 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
11471 `mouse-set-point'
b6389bfb 11472 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
a1b8d58b
GM
11473 (speedbar-item-info-tag-helper): Revamped to handle a wider range
11474 of arbitrary text, and new helper functions.
11475 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
11476 filename finder.
b6389bfb
EL
11477 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
11478 (speedbar-directory-buttons): Update path search/expansion.
11479 (speedbar-make-tag-line): Pay attention to
a1b8d58b
GM
11480 `speedbar-indentation-width'. Use more care w/ invisible
11481 properties.
b6389bfb
EL
11482 (speedbar-change-expand-button-char): Call
11483 `speedbar-insert-image-button-maybe'.
11484 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
a1b8d58b
GM
11485 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
11486 (speedbar-trim-words-tag-hierarchy)
11487 (speedbar-simple-group-tag-hierarchy): New functions
b6389bfb 11488 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
a1b8d58b
GM
11489 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
11490 functions.
b6389bfb
EL
11491 (speedbar-mouse-set-point): New function
11492 (speedbar-power-click): Updated documentation.
a1b8d58b
GM
11493 (speedbar-line-token, speedbar-goto-this-file): Handle more types
11494 of tag prefix text.
11495 (speedbar-expand-line, speedbar-contract-line): Make more robust
11496 to strange text.
11497 (speedbar-expand-line): Takes universal argument to flush the
11498 cache.
b6389bfb
EL
11499 (speedbar-flush-expand-line): New function.
11500 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
11501 Use new generator insertion method.
11502 (speedbar-fetch-dynamic-tags): New function.
11503 (speedbar-fetch-dynamic-imenu): Removed code now handled in
11504 `speedbar-fetch-dynamic-imenu'.
11505 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
11506 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
11507 "Revert Buffer" menu items.
11508 (speedbar-buffer-buttons-engine): Be smarter when creating a
11509 filename tag (for expansion purposes.).
a1b8d58b
GM
11510 (speedbar-highlight-one-tag-line,
11511 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
11512 (speedbar-recenter): New functions.
b6389bfb 11513 (defimage-speedbar): Image loading abstraction.
a1b8d58b
GM
11514 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
11515 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
11516 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
11517 (speedbar-tag-type, speedbar-tag-mail): New images.
b6389bfb
EL
11518 (speedbar-expand-image-button-alist): New variable.
11519 (speedbar-insert-image-button-maybe): Insert an image over some
11520 buttons.
11521
43fe9244
KH
115222000-05-13 Kenichi Handa <handa@etl.go.jp>
11523
11524 * international/mule-cmds.el (encode-coding-char): An ASCII
11525 character is always encodable.
11526
11527 * international/mule-conf.el: Add more information in descriptions
11528 of character sets.
11529
813086ea 11530 * international/mule-diag.el (describe-char-after): New function.
43fe9244
KH
11531 (describe-font-internal): Adjusted for the change of font-info.
11532 (describe-font): Likewise.
11533 (print-fontset): Rewritten for the new fontset implementation.
11534 (describe-fontset): Include fontset alias names in completion.
11535 (list-fontsets): Adjusted for the change of print-fontset.
11536
11537 * simple.el (what-cursor-position): If DETAIL is non-nil, call
11538 describe-char-after instead of displaying the detail in the echo
11539 area.
813086ea
KH
11540 (syntax-code-table): Format changed.
11541 (string-to-syntax): Adjusted for the above change.
0e8c11d8 11542
e8564f57
SM
115432000-05-12 Stefan Monnier <monnier@cs.yale.edu>
11544
11545 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
11546
9278c60d
DL
115472000-05-12 Dave Love <fx@gnu.org>
11548
11549 * calendar/todo-mode.el: Remove some compatibility stuff and CL
11550 dependence. Use line-{beginning,end}-position, not
11551 point-at{b,e}ol. Some doc fixes.
11552 (todo-position): New function. Fix callers of position to use it.
11553 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
11554
be0505fe
GM
115552000-05-12 Gerd Moellmann <gerd@gnu.org>
11556
11557 * time.el (display-time-mail-icon): Use `:ascent center'.
11558
a8a3541c
GM
11559 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
11560 handling FTP security extensions.
399c88ad 11561
44d5f148
DL
115622000-05-11 Dave Love <fx@gnu.org>
11563
33d0c179 11564 * calendar/todo-mode.el: New file.
44d5f148 11565
da4496b6
GM
115662000-05-11 Gerd Moellmann <gerd@gnu.org>
11567
cdc4401d
GM
11568 * comint.el (comint-read-input-ring): Move reference to
11569 comint-input-ring-size outside of the save-excursion. It was
11570 causing the default value to be the only one ever seen.
399c88ad 11571
0279f991
GM
11572 * font-lock.el: Update copyright. Remove Simon Marshall's email
11573 address on request from him.
11574
da4496b6
GM
11575 * subr.el (substitute-key-definition): Add comment describing
11576 the meaning of PREFIX.
11577
ac5cb26d
SM
115782000-05-10 Stefan Monnier <monnier@cs.yale.edu>
11579
11580 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
11581
11582 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
11583 (add-minor-mode): Don't make the variable buffer-local and add a
11584 reference to define-minor-mode in the docstring.
11585
11586 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
11587 HEADER/FOOTER and fix bug with trailing empty directory.
11588 (cvs-append-to-ignore): Use vc-editable-p if available.
11589 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
11590 (vc-do-command): Tweak advice to handle the new VC.
11591
11592 * log-view.el (log-view-goto-rev): New function for the new VC.
11593 (log-view-minor-wrap): Use mark-active.
11594
11595 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
11596 (log-edit-changelog-full-paragraphs): New var.
11597 (log-edit-insert-changelog): Remove a lonely leading `* file'.
11598 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
11599 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
11600 (log-edit-changelog-ours-p, log-edit-changelog-entries)
11601 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
11602 Replace the `cvs' prefix with `log-edit'.
11603
11604 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
11605
11606 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
11607 (diff-font-lock-defaults): Explicitly turn off multiline.
11608 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
11609 (diff-ediff-patch): Fix call to ediff-patch-file.
11610 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
11611 Handle comments.
11612
11613 * frame.el (automatic-hscrolling): Typo.
11614
11615 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
11616
21c34da3
DL
116172000-05-09 Sam Steingold <sds@goems.com>
11618
11619 * apropos.el (apropos-print): use `describe-face' instead of
11620 `customize-face-other-window'.
11621
950cf06f
DL
116222000-05-09 Dave Love <fx@gnu.org>
11623
11624 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
11625
11626 * help.el (describe-variable): Have customize button pop the
11627 help-xref stack when invoked.
11628 (help-xref-symbol-regexp): Add `face'.
11629 (help-make-xrefs): Check for quoted face names and adapt regexp
11630 submatch numbers to cope.
11631 (help-xref-interned): Maybe insert face doc too. Separate
11632 sections with a line of hyphens.
11633
0623e40f 11634 * faces.el: Some doc fixes. Declare some functions obsolete.
950cf06f
DL
11635 (describe-face): Add customize button. Return the help
11636 text. Fix prompt.
11637
82e2ca9d
EZ
116382000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
11639
11640 * term/internal.el (IT-character-translations): Fix last change.
11641
10c00b5c
EZ
116422000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
11643
11644 * woman.el: New file
11645 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
11646
9deed82f
EZ
116472000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
11648
001ad319
EZ
11649 * term/internal.el (IT-character-translations): Update ASCII
11650 simulations for greek-iso8859-7, add latin-iso8859-14 and
11651 latin-iso8859-15.
11652
9deed82f
EZ
11653 * international/mule-cmds.el (set-language-info-alist): Call
11654 define-prefix-command with 3 arguments, to make the map suitable
11655 for a menu.
11656
4f37b78a
DL
116572000-05-07 Dave Love <fx@gnu.org>
11658
1ec321a7 11659 * time.el: Small doc fixes from Pavel Jan\e,Am\e(Bk ml.
4f37b78a 11660
64a4c526
DL
116612000-05-05 Dave Love <fx@gnu.org>
11662
11663 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
11664 list in doc string. Don't quote keyword symbols.
11665 * emacs-lisp/cl.el: Likewise
11666 * emacs-lisp/cl-seq.el: Likewise
11667
056565f7
GM
116682000-05-05 Gerd Moellmann <gerd@gnu.org>
11669
11670 * abbrev.el (abbrev-mode): Make ARG optional.
11671
4656b314
GM
116722000-05-04 Gerd Moellmann <gerd@gnu.org>
11673
ec82fb2f
GM
11674 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
11675
11676 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
11677
4656b314
GM
11678 * subr.el (substitute-key-definition): Clarify documentation.
11679
116802000-05-04 Milan Zamazal <pdm@freesoft.cz>
11681
11682 * glasses.el (glasses-convert-to-unreadable): Use
11683 `glasses-separator' instead of the hard-wired "_".
11684 (glasses-mode): Call `glasses-make-unreadable' only in a single
11685 place.
11686
7b081c78
EZ
116872000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
11688
11689 * term/internal.el (cjk-codepages-alist): Add associations for
11690 Chinese and Korean codepages. Remove FIXME comment.
11691
baa5536e
DL
116922000-05-03 Dave Love <fx@gnu.org>
11693
11694 * time.el (display-time-mail-face, display-time-use-mail-icon):
11695 New option.
11696 (display-time-mail-icon): New variable.
11697 (display-time-string-forms): Use the above. Fix the local-map.
11698
cbf18892
GM
116992000-05-03 Gerd Moellmann <gerd@gnu.org>
11700
4ff40dd0
GM
11701 * replace.el (query-replace-map): Add binding for `E'.
11702 (query-replace-help): Extend help text.
11703 (perform-replace): Allow editing the replacement string.
11704
11705 * make-mode.el (makefile-mode-abbrev-table): New variable.
11706 (makefile-mode): Set local abbrev table to
11707 makefile-mode-abbrev-table.
11708 (makefile-font-lock-keywords): Fontify includes and conditionals.
399c88ad 11709
cbf18892
GM
11710 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
11711 set TOGGLE's value.
11712
4ff40dd0
GM
11713 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
11714 mail-interactive-insert-alias.
11715 (mail-abbrev-complete-alias): New command.
11716 (mail-mode-map): Bind it to `M-TAB'.
399c88ad 11717
ffec4d9f
KH
117182000-05-03 Kenichi Handa <handa@etl.go.jp>
11719
11720 * language/lao-util.el (lao-compose-region): New function.
11721
1b0672c3
GM
117222000-05-02 Gerd Moellmann <gerd@gnu.org>
11723
576da55d
GM
11724 * files.el (recover-session): Make directories as necessary
11725 if they don't exist yet.
11726
399c88ad
SS
11727 * calendar/cal-french.el
11728 (french-calendar-multibyte-special-days-array)
1b0672c3
GM
11729 (french-calendar-special-days-array): Change French text.
11730 (calendar-french-date-string): Change output.
11731 (calendar-goto-french-date): Likewise.
11732
117332000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
11734
11735 * wid-edit.el (widget-default-active): Obey `:always-active'.
11736 (widget-documentation-string-value-create): Set `:always-active'.
11737
4b33deaa
EZ
117382000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
11739
11740 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
11741 default prefix to `~/_emacs.d/auto-save.list/_s'.
11742 (normal-top-level): Create the directory for auto-save files, if
11743 it doesn't already exist (in the ms-dos case only).
11744
5c922ea7
EZ
117452000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
11746
11747 * international/mule-cmds.el (set-language-environment): Don't
11748 concat an integer (dos-codepage), use format instead.
11749
820ad5e7
DL
117502000-05-02 Dave Love <fx@gnu.org>
11751
11752 * help.el (help-xref-on-pp): Check for constant symbols.
11753
57cb56f5
GM
117542000-04-29 Gerd Moellmann <gerd@gnu.org>
11755
11756 * startup.el (normal-top-level): Put a condition-case around
11757 the code loading subdirs.el.
11758
117592000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
399c88ad 11760
57cb56f5
GM
11761 * ps-print.el: Upside-down and face background color printing,
11762 line number step, doc fix.
11763 (ps-print-version): New version number (5.2).
11764 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
11765 (ps-face-attribute-list, ps-plot-with-face): Code fix.
11766 (ps-spool-config): Var fix.
11767 (ps-printer-name-option): Const fix.
11768 (ps-print-upside-down, ps-use-face-background)
11769 (ps-line-number-step): New vars.
11770 (ps-window-system, ps-lp-system): New consts.
11771 (ps-face-background): New fun.
11772
084cec2f
GM
117732000-04-28 Richard Stallman <rms@gnu.org>
11774
11775 * files.el (make-auto-save-file-name):
11776 Apply auto-save-file-name-transforms to visited file name
11777 before generating auto save file name.
11778 (auto-save-file-name-transforms): New variable.
11779
399c88ad 11780 * files.el (backup-enable-predicate):
084cec2f
GM
11781 Correctly test for a file under a temporary directory.
11782
c94f4677
GM
117832000-04-28 Gerd Moellmann <gerd@gnu.org>
11784
11785 * subr.el (add-minor-mode): Rewritten.
11786
7b211df5
KH
117872000-04-28 Kenichi Handa <handa@etl.go.jp>
11788
11789 * mail/sendmail.el (sendmail-send-it): Set
11790 buffer-file-coding-system to the selected coding system for MIME
11791 header.
11792
c76e04a8 117932000-04-27 Gerd Moellmann <gerd@gnu.org>
e3e36d74 11794
c76e04a8
GM
11795 * dired.el (dired-move-to-filename-regexp): Allow format where
11796 YYYY is followed by two spaces.
e3e36d74 11797
c76e04a8
GM
11798 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
11799 in the second character class of the regexp.
11800
11801 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
11802 mh-etc, too.
353964e3 11803
c76e04a8
GM
11804 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
11805 nil.
399c88ad 11806
353964e3
GM
11807 * subr.el (add-minor-mode): Use `set' instead of `setq'.
11808
11809 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
11810 argument.
11811
c76e04a8 118122000-04-27 Sen Nagata <sen@eccosys.com>
399c88ad 11813
c76e04a8
GM
11814 * emacs-lisp/crm.el (crm-completion-table): New variable.
11815 (crm-collection-fn, crm-test-completion)
11816 (completing-read-multiple): Use it.
11817
118182000-04-27 Dave Love <fx@gnu.org>
11819
11820 * help.el (locate-library): Use mapc.
11821 (help-manyarg-func-alist): Add call-process-region.
11822
7464346d
GM
118232000-04-26 Gerd Moellmann <gerd@gnu.org>
11824
b35bd33d
GM
11825 * subr.el (add-minor-mode): Make argument MAP optional.
11826
7464346d
GM
11827 * desktop.el (desktop-save): Save list of minor modes.
11828 (desktop-create-buffer): Restore minor modes.
11829 (desktop-minor-mode-table): New user-option.
11830
11831 * subr.el (add-minor-mode): New function.
11832
11833 * image.el (find-image): New function.
11834 (defimage): Rewritten to find image at load time.
11835
11836 * startup.el (normal-top-level-add-to-load-path): Handle
11837 case that the default directory is not in load-path.
11838
11839 * help.el: Old patch from Stefan Monnier.
11840 (help-xref-on-pp): New function.
11841 (describe-variable): Use it to display xrefs in a symbol's value.
11842
23c0fb21
SM
118432000-04-26 Stefan Monnier <monnier@cs.yale.edu>
11844
11845 * cus-edit.el (custom-face): Fix parenthesis.
11846
fad95037
KH
118472000-04-26 Kenichi Handa <handa@etl.go.jp>
11848
f03392a1
KH
11849 * mail/rmail.el (rmail-expunge): When there are no deleted
11850 messages, do nothing.
fad95037 11851
0d7c5bb9
DL
118522000-04-26 Dave Love <fx@gnu.org>
11853
11854 * international/mule-cmds.el (locale-translation-file-name):
11855 Defvar to nil.
11856 (set-locale-environment): Set it here (at runtime).
11857
612839b6
GM
118582000-04-25 Gerd Moellmann <gerd@gnu.org>
11859
11860 * replace.el (perform-replace): Add parameters START and END. Use
11861 them instead of the check for a region in Transient Mark mode.
11862 (query-replace-read-args): Return two more list elements for the
11863 start and end of the region in Transient Mark mode.
11864 (query-replace, query-replace-regexp, query-replace-regexp-eval)
11865 (map-query-replace-regexp, replace-string, replace-regexp): Add
11866 optional last arguments START and END and pass them to
11867 perform-replace.
11868
11869 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
11870 form with additional arguments for perform-replace.
11871
11872 * progmodes/etags.el (tags-query-replace): Add parameters START
11873 and END. Construct a form with additional arguments for
11874 perform-replace.
11875
11876 * simple.el (shell-command): Set default directory for "*Shell
11877 Command Output" buffer.
11878
11879 * language/european.el (iso-latin-4): Fix typo.
11880
11881 * emacs-lisp/crm.el: New file.
11882
2917cc05
DL
118832000-04-24 Dave Love <fx@gnu.org>
11884
11885 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
11886 (Custom-reset-saved, Custom-reset-standard)
11887 (custom-group-value-create, custom-group-set, custom-group-save)
11888 (custom-group-reset-current, custom-group-reset-saved)
11889 (custom-group-reset-standard): Use mapc.
11890 (custom-buffer-create-internal): Disable undo when creating items.
11891 Use mapc.
11892 (custom-face): Avoid redundant lambda.
11893
abfcc168
GM
118942000-04-24 Gerd Moellmann <gerd@gnu.org>
11895
11896 * startup.el (auto-save-list-file-prefix): Set default to
11897 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
11898
fa78f71b
SS
118992000-04-24 Sam Steingold <sds@gnu.org>
11900
11901 * time-stamp.el (time-stamp-string-preprocess): Always convert
11902 `field-result' to a string.
11903
cc181e95
GM
119042000-04-24 Gerd Moellmann <gerd@gnu.org>
11905
11906 * frame.el (scrolling): New group.
11907 (automatic-hscrolling): New user-option.
11908
11909 * startup.el (command-line-x-option-alist): Add `-lsp' and
11910 `--line-spacing'.
11911
6142fdcb
DL
119122000-04-19 Dave Love <fx@gnu.org>
11913
11914 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
11915 (cl-mapc): Rename from mapc. Fix the funcall.
11916
5e3dac3f
GM
119172000-04-19 Gerd Moellmann <gerd@gnu.org>
11918
1c459486
GM
11919 * simple.el (clone-indirect-buffer-other-window): New command.
11920 (clone-indirect-buffer): Add optional arg NORECROD.
11921 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
11922
271b4185
GM
11923 * help.el (resize-temp-buffer-window): Use count-screen-lines.
11924
11925 * window.el (count-screen-lines): New function.
11926 (shrink-window-if-larger-than-buffer): Use count-screen-lines
11927 instead of window-buffer-height.
11928
11929 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
11930 non-existing variable comint-input-sentinel.
11931 (inferior-lisp-args-to-list): Removed.
11932 (inferior-lisp): Use split-string instead of
11933 inferior-lisp-args-to-list.
11934
11935 * hexl.el (hexl-insert-hex-string): New command.
11936
5e3dac3f
GM
11937 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
11938 instead of concat.
11939
f6d3257b
GM
119402000-04-18 Gerd Moellmann <gerd@gnu.org>
11941
11942 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
11943 at the start of an existing but empty folder.
11944
119452000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11946
11947 * ps-mule.el: Customization fix, doc fix.
11948 (ps-multibyte-buffer): Customization fix.
11949
8b7bc628 119502000-04-17 Richard M. Stallman <rms@gnu.org>
e61482c0
RS
11951
11952 * subr.el (read-passwd): Use read-char-exclusive.
11953
0daee095
GM
119542000-04-17 Gerd Moellmann <gerd@gnu.org>
11955
11956 * textmodes/texinfo.el (texinfo-insert-@email)
11957 (texinfo-insert-@emph, texinfo-insert-@quotation)
11958 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
11959 (texinfo-mode-map): Add key bindings for them.
11960
11961 * files.el (basic-save-buffer-2): Use a template with `$'
11962 instead of `#' for VMS.
11963
11964 * simple.el (clone-indirect-buffer): New function.
11965
e10f64e7
GM
119662000-04-16 Stephen Eglen <stephen@gnu.org>
11967
11968 * iswitchb.el (iswitchb-case): New function. If the user input
11969 contains any upper-case characters, the search is made
11970 case-sensitive.
11971
e3721db1
SM
119722000-04-17 Stefan Monnier <monnier@cs.yale.edu>
11973
e10f64e7
GM
11974 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
11975 comment-end.
e3721db1
SM
11976 (texinfo-font-lock-syntactic-keywords): New var.
11977 (texinfo-font-lock-keywords): Remove comment regexp.
11978 (texinfo-insert-block): New function.
11979 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
e10f64e7
GM
11980 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
11981 and font-lock-defaults. Use regexp-opt for outline-regexp.
e3721db1 11982 (texinfo-environments): New var.
e10f64e7
GM
11983 (texinfo-environment-regexp): Use regexp-opt and
11984 texinfo-environments.
e3721db1 11985
e10f64e7
GM
11986 * textmodes/ispell.el (ispell-menu-map-needed): Check that
11987 ispell-process is bound since this might be eval'd before ispell
11988 is loaded.
11989 (ispell-message): Use a tiny bit less magic and a bit more hard
11990 data to figure out what kind of sc-cite-regexp to use.
e3721db1
SM
11991
11992 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
11993
11994 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
11995 (insert-cyclic-diary-entry): Unquote the lambda.
11996
11997 * gud.el (gud-jdb-build-source-files-list): Fix typo.
11998
11999 * files.el (backup-enable-predicate): Unquote the lambda.
12000
12001 * cus-edit.el (custom-face, face): Unquote the lambda.
12002
712dc9e0
GM
120032000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12004
12005 * ps-print.el: Check for line-beginning-position definition.
fa78f71b 12006
712dc9e0
GM
12007 * ps-print.el: Fix counting lines in a region.
12008 (ps-print-version): New version number (5.1.5).
12009 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
12010 (ps-printing-region): Fun code fix.
12011
ffc50f2a
GM
120122000-04-15 Gerd Moellmann <gerd@gnu.org>
12013
12014 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
12015 to file-directory-p.
12016
a2522dca
GM
120172000-04-14 Gerd Moellmann <gerd@gnu.org>
12018
12019 * gud.el (gud-jdb-build-source-files-list): Check that directory
12020 exists before calling directory-files.
12021
6e883610
DL
120222000-04-13 Dave Love <fx@gnu.org>
12023
12024 * emacs-lisp/trace.el: Change maintainer. Use new backquote
12025 syntax.
12026
12027 * emacs-lisp/cl-specs.el: Remove when, unless.
12028
12029 * emacs-lisp/cl-extra.el: Don't quote keywords.
12030 (cl-old-mapc): New variable.
12031 (mapc): Use it.
12032 (cl-map-intervals): Use with-current-buffer. Don't check for
12033 next-property-change.
12034 (cl-map-overlays): Use with-current-buffer.
12035 (cl-expt): Remove.
12036 (copy-tree, remprop): Define unconditionally.
12037
12038 * emacs-lisp/cl-compat.el (keywordp): Remove.
12039
12040 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
12041 to use keywordp.
12042 (edebug-spec): Enable keywordp.
12043
12044 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
12045 string-lessp.
12046
12047 * cus-start.el: Use keywordp.
12048
198e3c7a
GM
120492000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12050
12051 * diary-lib.el (include-other-diary-files): Fix the fix of
12052 2000-02-18 by doing a save-excursion.
12053
120542000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12055
12056 * ps-print.el: Customization fix, doc fix.
12057 (ps-print-version): New version number (5.1.4).
12058 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
12059 (ps-print-preprint): Adjust code.
12060 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
12061 (ps-print-prologue-header, ps-print-control-characters)
12062 (ps-spool-config): Customization fix.
fa78f71b 12063
8eba343c
EZ
120642000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
12065
12066 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
12067 converted to the new menu-item format, names silightly changed,
12068 help strings added.
12069
12070 Support for spelling without async subprocesses:
12071
12072 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
12073 (ispell-session-buffer): New variables.
12074 (ispell-start-process, ispell-process-status,
12075 ispell-accept-output, ispell-send-string): New functions, for
12076 Ispell invocation when async subprocesses aren't supported.
12077 (ispell-word, ispell-pdict-save, ispell-command-loop,
12078 ispell-process-line, ispell-buffer-local-parsing): Replace calls
12079 to process-send-string with calls to ispell-send-string, and
12080 accept-process-output with ispell-accept-output.
12081 (ispell-init-process): Call ispell-process-status instead of
12082 process-status with.
12083 (ispell-init-process): Call ispell-start-process. Call
12084 ispell-accept-output and ispell-send-string. Don't call
12085 process-kill-without-query and kill-process if they are unbound.
12086 (ispell-async-processp): New function.
12087
3d30065d
DL
120882000-04-12 Dave Love <fx@gnu.org>
12089
12090 * info.el: Add debug-ignored-errors.
12091 (Info-mode-menu): Add some items.
12092 (Info-directory): Add autoload cookie.
12093
12094 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
12095 Modify `truncate-lines'. Make `describe-language-environment'
12096 always visible and add help. Modify `describe-key' help. Invoke
12097 Info-directory from `info'. New entry `emacs-manual'.
12098
1a1b1895
GM
120992000-04-10 Gerd Moellmann <gerd@gnu.org>
12100
8b2affc5
GM
12101 * progmodes/ebrowse.el (ebrowse-tree-mode): Use
12102 propertized-buffer-identification.
12103 (ebrowse-update-member-buffer-mode-line): Likewise.
12104 (ebrowse--mode-strings): Removed.
12105 (ebrowse--mode-line-props): Removed.
12106
1a1b1895
GM
12107 * files.el (auto-mode-alist): Add `EBROWSE'.
12108
12109 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
12110 space before testing for end of buffer.
12111 (ebrowse-load): Removed.
12112 (ebrowse-revert-tree-buffer-from-file): Rewritten.
12113 (ebrowse-create-tree-buffer): Rewritten.
12114 (ebrowse-tree-mode): Read tree from buffer.
12115
12116 * progmodes/ebrowse-ffh.el: Removed.
12117
223f3c91
KH
121182000-04-10 Kenichi Handa <handa@etl.go.jp>
12119
12120 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
12121
25fbf2c4
GM
121222000-04-10 Gerd Moellmann <gerd@gnu.org>
12123
12124 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
12125 at the wrong place.
12126
92c13173
DL
121272000-04-09 Dave Love <fx@gnu.org>
12128
12129 * files.el (backup-enable-predicate): Use
12130 temporary-file-directory, small-temporary-file-directory.
12131 (make-backup-file-name-function, backup-directory-alist): New
12132 variables.
12133 (make-backup-file-name-1): New function.
12134 (make-backup-file-name): Use it.
12135 (find-backup-file-name): Likewise. Use format for clarity, not
12136 concat.
12137 (file-newest-backup): Use make-backup-file-name.
12138
be0dbdab
GM
121392000-04-09 Gerd Moellmann <gerd@gnu.org>
12140
c45be9ac 12141 * progmodes/ebrowse-ffh.el: New file.
fa78f71b 12142
c45be9ac
GM
12143 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn): Moved
12144 to ebrowse-ffh.el.
12145 (ebrowse-load): Add autoload.
12146
12147 * finder.el (finder-commentary): Add autoload cookie.
12148
be0dbdab
GM
12149 * mail/rfc2368.el: Correct author's email address.
12150
12151 * progmodes/ebrowse.el: New file.
12152
12153 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
12154 item help string.
12155 (easy-menu-do-add-item): Ditto.
12156 (easy-menu-define): Extend doc string.
12157
12158 * jit-lock.el (with-buffer-unmodified): Use
12159 restore-buffer-modified-p.
12160 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
12161 (jit-lock-function, jit-lock-stealth-fontify): Don't use
12162 with-buffer-unmodified.
12163
3f923efe
DL
121642000-04-08 Dave Love <fx@gnu.org>
12165
12166 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
12167 unless, when.
12168
d35bee0e
MK
121692000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
12170
12171 * viper-util.el (viper-put-on-search-overlay): New subroutine.
12172 (viper-flash-search-pattern): No operation when using Emacs
fa78f71b 12173 doesn't support face.
d35bee0e 12174 Use `viper-put-on-search-overlay'.
fa78f71b 12175
c407c570
GM
121762000-04-04 Gerd Moellmann <gerd@gnu.org>
12177
12178 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
12179 like C-r.
12180
12181 * progmodes/make-mode.el: Some doc fixes.
12182 (makefile-mode-abbrev-table): New variable.
12183 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
12184 (makefile-font-lock-keywords): Fontify includes and conditionals.
12185 (toplevel): Require `dabbrev' and `add-log' when compiling.
12186
12187 * replace.el (perform-replace): Don't move forward one char
12188 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
12189 to do that because it leaves point 1 position after the last
12190 replacement, after everything has been replaced.
12191
12192 * jit-lock.el (with-buffer-unmodified): New macro.
12193 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
12194 modified state.
12195 (jit-lock-function-1): Extracted from jit-lock-function; not
12196 preserving buffer's modified state.
12197 (jit-lock-function, jit-lock-stealth-fontify): Call
12198 jit-lock-function-1.
12199
12200 * mail/rfc2368.el: Remove supernumerary copyright line.
12201
685e5ed2
GM
122022000-04-04 Milan Zamazal <pdm@freesoft.cz>
12203
12204 * glasses.el: Provide facilities for inserting space before left
12205 parentheses and uncapitalization of identifiers.
12206 (glasses-mode): Try to remove old overlays in all cases.
12207
0166aed1
GM
122082000-04-03 Gerd Moellmann <gerd@gnu.org>
12209
62f20204
GM
12210 * progmodes/compile.el (compile-internal): Display the compilation
12211 buffer in a different frame, if it's already displayed there.
12212
6460c400
GM
12213 * mail/rfc2368.el: New file.
12214
c0510d27
GM
12215 * simple.el (sendmail-user-agent-compose): Recognize a `body'
12216 header and insert its value as mail body.
12217
12218 * subr.el (member-ignore-case): New function.
12219
12220 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
12221 (dabbrev--find-expansion): Ignore buffers matching a regexp
12222 from dabbrev-ignored-regexps.
12223
0166aed1
GM
12224 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
12225 to extensions handled by gzip.
12226
c0510d27
GM
122272000-04-03 Richard M. Stallman <rms@gnu.org>
12228
12229 * files.el (insert-directory): List the total free space
12230 along with the used space.
fa78f71b 12231
c0510d27
GM
12232 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
12233 line is followed by one that matches CITATION-REGEXP, end the
12234 paragraph.
12235
122362000-04-03 Markus Rost <rost@delysid.gnu.org>
12237
12238 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
12239 (rmail-make-basic-summary-line): Use that option.
fa78f71b 12240
14c04384
KH
122412000-04-03 Kenichi Handa <handa@etl.go.jp>
12242
12243 * international/mule-cmds.el (encoded-string-description):
12244 Rewritten. Try pretty description for ISO 2022 escape sequences
3a100fd6
KH
12245 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
12246 for hexadecimal format.
14c04384 12247
ccf5869a
DL
122482000-04-01 Dave Love <fx@gnu.org>
12249
12250 * cpp.el: Change customization group to `c' from `C'.
12251
12252 * vcursor.el (vcursor-move): Use display-color-p.
12253
12254 * international/mule-util.el: Provide mule-utils.
12255 (string-to-sequence): Simplify and speed up.
12256
12257 * international/mule.el (make-coding-system): Purecopy doc-string.
12258
12259 * international/mule-cmds.el: Various menu changes.
12260 (describe-specified-language-support): Handle `Default'.
12261 (set-language-info): Purecopy `info'.
12262
610d841e
GM
122632000-03-31 Andrew Innes <andrewi@gnu.org>
12264
12265 * vc.el (vc-backend-diff): Return the correct status if we had to
12266 retry the rcsdiff command without the --brief option.
fa78f71b 12267
7f9de034
DL
122682000-03-31 Dave Love <fx@gnu.org>
12269
2de47765
DL
12270 * help.el (help-manyarg-func-alist): Correct several omissions.
12271
72838819
DL
12272 * add-log.el: Don't require cl, fortran.
12273 (add-log-current-defun-function): Doc fix.
12274 (change-log-version-number-regexp-list): Remove SCCS part. Doc
12275 fix.
12276 (change-log-version-rcs): Function deleted.
12277 (change-log-version-number-search): Doc fix. Use
12278 vc-workfile-version. Avoid CL dolist.
12279 (add-change-log-entry): Just call add-log-current-defun to get
12280 defun. Simplify somewhat.
12281 (change-log-get-method-definition-1): Likewise.
12282 (add-log-current-defun): Return nil if calling
12283 add-log-current-defun-function does so. Move Fortran stuff to
12284 fortran.el. Return string without properties.
12285
7f9de034
DL
12286 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
12287 and :alpha: char classes.
12288
12289 * mail/supercite.el: Defvar curline when compiling.
12290 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
12291 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
12292 rather than a-zA-Z0-9 to allow non-ASCII characters.
12293
aa110c0c
GM
122942000-03-31 Gerd Moellmann <gerd@gnu.org>
12295
12296 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
12297
12298 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
12299 Re-enable new code.
12300
12301 * lpr.el (print-region-1): Use -d to specify printer name for
12302 systems `usg-unix-v*, `dgux', `hpux', `irix'.
12303
123042000-03-31 Dave Love <fx@gnu.org>
fa78f71b 12305
aa110c0c
GM
12306 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Look
12307 for function definition in symbol's function value slot first
12308 instead of first consulting byte-compile-function-environment.
fa78f71b 12309
6733d074
KH
123102000-03-31 Kenichi Handa <handa@etl.go.jp>
12311
12312 * language/european.el ("Polish"): New language environment.
12313 (setup-polish-environment): New function.
12314
63fcfa04
GM
123152000-03-30 Gerd Moellmann <gerd@gnu.org>
12316
12317 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
12318 Disable new code.
12319
12320 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
12321 trying to `load' the symbol of an autoload instead of the file
12322 recorded in the autoload. Fix error messages.
12323
7438c86b
GM
123242000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12325
12326 * ps-print.el: PostScript programming fix for ghostview, doc fix.
12327 (ps-print-version): New version number (5.1.3).
12328 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
12329 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
12330 (ps-generate-postscript-with-faces): Code fix.
12331 (ps-color-values): XEmacs compatibility.
12332 (ps-print-background-image, ps-print-background-text, ps-printer-name)
12333 (ps-default-fg, ps-default-bg): Adjust customization.
12334 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
12335 (ps-color-scale): Renaming old ps-color-value fun.
12336 (ps-print-headers): Replace ps-print-header group to avoid conflict
12337 with ps-print-header variable.
12338 (ps-print-miscellany): New group.
12339 (ps-format-color, ps-rgb-color): New funs.
12340 (ps-default-foreground): New var.
12341 (ps-printer-name-option): New const.
fa78f71b 12342
326855a0
PB
123432000-03-30 Peter Breton <pbreton@ne.mediaone.net>
12344
1f56ba73
PB
12345 * net/net-utils.el:
12346 (network-connection-host, network-connection-service): New variables
12347 (network-connection-mode): New mode, derived from comint-mode
12348 (network-connection-mode-setup): New function, saves host and
fa78f71b 12349 service information in local variables.
1f56ba73 12350
326855a0
PB
12351 * lisp/locate.el:
12352 (locate-word-at-point): Added this function
12353 (locate): Default to using locate-word-at-point as input
12354 Run dired-mode-hook
12355
141384bd
DL
123562000-03-29 Dave Love <fx@gnu.org>
12357
12358 * calendar/appt.el: Doc fixes.
12359 (appt-check): Convert min-to-app to a string before passing to
12360 appt-disp-window-function or concat.
12361 (appt-delete-window): Remove test for frame-root-window.
12362 (appt-select-lowest-window, appt-convert-time): Simplify.
12363
12364 * emacs-lisp/bytecomp.el: Doc fixes.
12365 (byte-compile-file-form-autoload): Update
12366 byte-compile-function-environment.
12367
c5aa0fc2
AS
123682000-03-29 Andreas Schwab <schwab@suse.de>
12369
12370 * emacs-lisp/autoload.el: Also print defsubst doc string
12371 specially.
12372
12373 * dired.el (dired-insert-directory): If dired-free-space-program
12374 failed just delete its output.
12375
f1d6fe69
DL
123762000-03-29 Dave Love <fx@gnu.org>
12377
12378 * international/iso-cvt.el: Move provide to end. Doc fixes.
12379 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
12380 (iso-iso2sgml, iso-sgml2iso): New functions.
12381 (iso-cvt-define-menu): Fix some entries and use backquote for
12382 clarity.
12383
12384 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
12385
b61f1215
GM
123862000-03-28 Gerd Moellmann <gerd@gnu.org>
12387
12388 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
12389 ISO-DATE. If non-nil, return date in ISO 8601 format.
12390
ea4b0ca3
SM
123912000-03-26 Stefan Monnier <monnier@cs.yale.edu>
12392
3831af62
SM
12393 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
12394 if it ever becomes used.
12395 (log-edit-mode-hook): Default to vc-log-mode-hook.
12396 (log-edit-mode): Fix the docstring.
12397
ea4b0ca3
SM
12398 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
12399 the code.
12400
08f8b1cc
DL
124012000-03-26 Dave Love <fx@gnu.org>
12402
082527fe
DL
12403 * net/browse-url.el (browse-url): Re-fix case of
12404 browse-url-browser-function being an alist.
12405 (browse-url): Add :link to defgroup.
12406
08f8b1cc
DL
12407 * files.el: Doc fixes.
12408 (file-truename): Include `[' in wildcard characters.
12409 (automount-dir-prefix): Customize.
12410 (find-file-wildcards): Add :version.
12411 (find-file-noselect): Simplify a mapcar call.
12412
12413 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
12414 compatible with inf-lisp version.
12415 (eval-defun-1): Fix custom-declare-variable case.
12416
ea4b0ca3
SM
124172000-03-25 Stefan Monnier <monnier@cs.yale.edu>
12418
12419 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
12420
9a0dd3dc
GM
124212000-03-24 Gerd Moellmann <gerd@gnu.org>
12422
b68c375f
GM
12423 * Makefile (COMPILE_FIRST): New macro.
12424 (compile-files): Compile files from COMPILE_FIRST first.
12425
12426 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new
12427 code.
12428
9a0dd3dc
GM
12429 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
12430 matching open parenthesis in column 0 to defun-prompt-regexp
12431 only if open-paren-in-column-0-is-defun-start is set.
12432
12433 * sun-curs.el: Require CL at compile-time only.
12434
12435 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
12436 instead of copy-list which is a function from CL.
12437 (msb--choose-menu, msb--mode-menu-cond)
12438 (msb--create-buffer-menu-2): Use dolist instead of mapc.
12439 (msb--init-file-alist): Use mapcar instead of mapcan.
12440 (msb--aggregate-alist): Use mapcar instead of mapcan. Fix
12441 `(' in column 0 in doc string.
12442 (msb--add-separators): Use mapcar instead of mapcan.
12443
12444 * cus-dep.el: Require CL at compile-time only.
12445
c7dcadb5
SM
124462000-03-24 Stefan Monnier <monnier@cs.yale.edu>
12447
12448 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
12449 (byte-compile-warnings): New warning `noruntime'.
12450 (byte-compile-constants, byte-compile-variables): Fix docstring.
12451 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
12452 execute `eval-whenc-compile's body.
12453 (byte-compile-unresolved-functions): Fix docstring.
12454 (byte-compile-eval): New function.
12455 (byte-compile-callargs-warn): Check if the function will be available
12456 at runtime (via property `byte-compile-noruntime').
12457 (byte-compile-print-syms): New function.
12458 (byte-compile-warn-about-unresolved-functions): Also warn about
12459 `noruntime' functions (and use `byte-compile-print-syms').
12460 (byte-compile-file): Capitalize the message.
12461
3b55acc9
GM
124622000-03-24 Gerd Moellmann <gerd@gnu.org>
12463
12464 * mail/rmail.el (rmail-confirm-expunge): New user-option.
12465 (rmail-expunge): Ask for confirmation depending on the setting
12466 of rmail-confirm-expunge.
12467
124682000-03-23 Gerd Moellmann <gerd@gnu.org>
12469
12470 * Makefile (bootstrap-clean): If $(emacs) exists, build
12471 loaddefs.el first. A loaddefs.el that's not up-to-date might
12472 cause a bootstrap failure because things don't autoload as
12473 expected.
12474
02c76af4
DL
124752000-03-23 Dave Love <fx@gnu.org>
12476
12477 * net/browse-url.el: Restore previous use of
12478 browse-url-maybe-new-window.
12479
1a3199d9
GM
124802000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12481
12482 * ps-print.el: Skip banner page fix.
12483 (ps-print-version): New version number (5.1.2).
12484 (ps-begin-file, ps-end-file, ps-generate): Code fix.
fa78f71b 12485
1a3199d9
GM
124862000-03-23 Dave Pearson <davep@davep.org>
12487
12488 * net/quickurl.el Changed the type of parameter passed to the
12489 function defined by `quickurl-format-function'. Before only the
12490 text of the URL was passed. Now the whole URL structure is passed
12491 and the function is responsible for extracting the parts it
12492 requires. Changed the default of `quickurl-format-function'
12493 accordingly.
12494 (quickurl-insert): Changed the `funcall' of
12495 `quickurl-format-function' to match the above change.
12496 (quickurl-list-insert): Changed the `url' case so that it makes
12497 use of `quickurl-format-function', previous to this the format was
12498 hard wired.
fa78f71b 12499
72db3ab5
GM
125002000-03-22 Gerd Moellmann <gerd@gnu.org>
12501
12502 * startup.el: Change some spellings for the X Window System.
12503
68049bfa
SM
125042000-03-22 Stefan Monnier <monnier@cs.yale.edu>
12505
12506 * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean
12507 up the code and the regexp and make sure the cursor is temporarily
12508 moved to the suspicious line while querying the user.
12509
ff4df011
JR
125102000-03-22 Jason Rumney <jasonr@gnu.org>
12511
12512 * w32-fns.el (w32-charset-info-alist): Initialize.
12513
ee1c5b21
GM
125142000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12515
12516 * ps-print.el: N-up last page fix.
12517 (ps-print-version): New version number (5.1.1).
12518 (ps-end-file, ps-end-job, ps-generate): Code fix.
fa78f71b 12519
d2cbfba0
SM
125202000-03-21 Stefan Monnier <monnier@cs.yale.edu>
12521
bfb857d8
SM
12522 * files.el (find-file-run-dired): Update docstring.
12523 (find-directory-functions): New hook.
12524 (find-file-noselect): Run find-directory-functions rather than
12525 calling dired directly.
12526
12527 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
12528
cb3430a1
SM
12529 * pcvs.el: Add a minimal leading commentary.
12530 (cvs-make-cvs-buffer): Change the header part by removing the startup
12531 message and adding a `Module' entry. Also replace the FOOTER and
12532 HEADER special fileinfos with the new support in ewoc for updating
12533 its own footer and header.
12534 (cvs-update-header): Update to use the header/footer of the ewoc.
12535 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
12536 (cvs-is-within-p): New function.
12537 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
12538 to only examine some subset of the buffers.
12539
12540 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
12541 `format' instead of our own ad-hoc functions.
12542 Remove HEADER and FOOTER cases, now handled in the EWOC.
12543 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
12544
12545 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
12546 output to avoid scaring the user.
12547 (cvs-parse-table): Catch message for non-up-to-date commits.
12548
12549 * pcvs-defs.el (cvs-startup-message): Remove.
12550 (cvs-global-menu): New autoloaded menu.
12551
12552 * pcvs-util.el (cvs-string-fill): Remove.
12553
12554 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
12555 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
12556 PP part of it and also make it work for footers and headers.
12557 (ewoc-create): Drop POS and BUFFER arguments.
12558 Use the DLL's dummy node to store the end-of-footer position.
12559 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
12560 (ewoc-refresh): Remove unused `header' variable.
12561 (ewoc-(get|set)-hf): New functions.
12562
d2cbfba0
SM
12563 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
12564 log-view-*-(message|file) and use easy-mmode-define-navigation.
12565 (log-view-message-re): Match SCCS format as well.
12566 And match the revision line rather than the dashed separator line.
12567 (log-view-mode): Use the new define-derived-mode.
12568 (log-view-current-tag): Fill in with an actual implementation.
12569
12570 * cvs-status.el (cvs-status-(prev|next)): Rename from
12571 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
12572 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
12573 to let the output "breathe" a little more (more readable).
12574 (cvs-status-mode): Use the new define-derived-mode.
12575
12576 * smerge-mode.el (smerge-auto-leave): New function and variable.
12577 (smerge-basic-map): Rename from smerge-basic-keymap.
12578 Change the bindings for smerge-diff-*.
12579 (smerge-*-map): Use easy-mmode-defmap.
12580 (smerge-(next|prev)): Use easy-mmode-define-navigation.
12581 (smerge-keep-*): Use smerge-auto-leave.
12582
51663132
JR
125832000-03-21 Jason Rumney <jasonr@gnu.org>
12584
12585 * cus-edit.el (custom-button-face): Use 3D look for w32.
12586 (custom-button-pressed-face): Likewise.
12587
3f6e4b8b
GM
125882000-03-21 Gerd Moellmann <gerd@gnu.org>
12589
12590 * progmodes/etags.el (tags-case-fold-search): New user-option.
12591 (tags-loop-eval): New function. Bind case-fold-search around eval
12592 depending on the value of tags-case-fold-search.
12593 (tags-loop-continue): Use tags-loop-eval.
12594 (find-tag-in-order): Bind case-fold-search depending on the value
12595 of tags-case-fold-search.
12596
c7ea3acc
SM
125972000-03-21 Stefan Monnier <monnier@cs.yale.edu>
12598
0ae39f53
SM
12599 * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'.
12600 (diff-end-of-hunk): Return the end position for use in
12601 `easy-mmode-define-navigation'.
12602 (diff-recenter): Remove.
12603 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
12604 of `easy-mmode-define-navigation'.
12605 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
12606 previous renaming) and fix to use new names.
12607 (diff-merge-strings): Use \n as separator: simpler, faster.
12608 (diff-mode): Use `define-derived-mode'.
12609
c7ea3acc
SM
12610 * derived.el (define-derived-mode): Don't autoload anymore.
12611 Prefer the macro-only version provided by easy-mmode.el.
12612
12613 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
12614 `easy-mmode-define-derived-mode'.
12615 Use `combine-run-hooks'.
12616 (easy-mmode-define-navigation): New macro.
12617
12618 * subr.el (combine-run-hooks): New function.
12619
6c4bfdc0
KH
126202000-03-21 Kenichi HANDA <handa@etl.go.jp>
12621
12622 * term/x-win.el: Fontsets related initialization is simplified.
12623
12624 * international/mule-diag.el (describe-font): Don't refer to
12625 global-fontset-alist, instead call font-list.
12626 (describe-fontset, list-fontsets, mule-diag): Likewise.
12627 (print-fontset): Adjusted for the change of fontset
12628 implementation.
12629
12630 * international/fontset.el (x-charset-registries): Variable
12631 removed, instead the corresponding data is stored in the default
12632 fontset.
12633 (register-alternate-fontnames): Function removed.
12634 (resolved-ascii-font): Variable removed.
12635 (x-compose-font-name): Ignore the second argument REDOCE.
12636 (x-complement-fontset-spec): Complement only an ASCII font and
12637 element for those charsets than can use that ASCII font.
12638 (generate-fontset-menu): Don't refer to global-fontset-alist,
12639 instead call fontset-list.
12640 (uninstantiated-fontset-alist): Variable removed.
12641 (x-style-funcs-alist): Likewise.
12642 (fontset-default-styles): Likewise.
12643 (x-modify-font-name): Function removed.
12644 (create-fontset-from-fontset-spec): Ignore the argument
12645 STYLE-VARIANT.
12646 (create-fontset-from-ascii-font): Docsting adjusted for the above
12647 change.
12648 (instantiate-fontset, resolve-fontset-name): Functions removed.
12649 (fontset-list): Now implemented by C code.
fa78f71b 12650
6c4bfdc0
KH
12651 * faces.el (read-face-font): Fix TABLE arg to completing-read.
12652 (describe-face): Include `font' attribute in the description.
12653
9111d4b5
KH
126542000-03-21 Kenichi Handa <handa@etl.go.jp>
12655
12656 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
12657
b33dd3b0
GM
126582000-03-20 Gerd Moellmann <gerd@gnu.org>
12659
a25bbe00
GM
12660 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
12661 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
12662 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
fa78f71b 12663
b33dd3b0
GM
12664 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
12665 about behavior of set-buffer-modified-p wrt redisplay.
12666
8b7bc628 126672000-03-19 Richard M. Stallman <rms@gnu.org>
e53ae11c
RS
12668
12669 * view.el (view-mode-disable): Kill local binding of view-read-only.
12670
d7b511c4
GM
126712000-03-18 Gerd Moellmann <gerd@gnu.org>
12672
12673 * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
12674 is a string, convert it to a syntax cell using string-to-syntax.
12675
12676 * simple.el (syntax-code-table, syntax-flag-table): New variables.
12677 (string-to-syntax): New function.
12678
12679 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
12680 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
b33dd3b0 12681 try to use passive ftp mode.
d7b511c4 12682
998ecc60
GM
126832000-03-17 Gerd Moellmann <gerd@gnu.org>
12684
b33dd3b0 12685 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
998ecc60
GM
12686
12687 * simple.el (append-to-buffer): Update point of windows after
12688 insertion.
12689
12690 * abbrev.el (inverse-add-abbrev): Identify word by first moving
12691 forward then moving backward. Reindent.
12692
12693 * frame.el (other-frame): Call x-focus-frame only if
12694 focus-follows-mouse is off.
12695
235d6821
DL
126962000-03-17 Dave Love <fx@gnu.org>
12697
12698 * pcvs-util.el (cvs-strings->string): Rename
12699 replace-regexps-in-string.
12700
a29a2cd1
SM
127012000-03-17 Stefan Monnier <monnier@cs.yale.edu>
12702
af595444
SM
12703 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
12704 regexp for labels cannot span several lines.
12705
12706 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
998ecc60 12707 `(setq :<key> ':<key>)' to the macro expansion.
a29a2cd1 12708
a9be2843
DL
127092000-03-16 Dave Love <fx@gnu.org>
12710
12711 * progmodes/f90.el (f90): Put custom group under `languages', not
12712 `fortran'.
12713 (f90-mode-hook): Customize.
12714 (f90-mode): Set add-log-current-defun-function.
12715 (f90-current-defun): New function.
12716
d0ab3e9d
GM
127172000-03-16 Gerd Moellmann <gerd@gnu.org>
12718
16b20ed9
GM
12719 * cus-edit.el (custom-variable-tag-face): Handle case that
12720 default face's height is not a number.
12721 (custom-face-tag-face, custom-group-tag-face-1)
12722 (custom-group-tag-face): Ditto.
12723 (custom-group-tag-face-1): Add :group.
fa78f71b 12724
d0ab3e9d
GM
12725 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
12726
ae8ab422
GM
127272000-03-15 Gerd Moellmann <gerd@gnu.org>
12728
12729 * pcvs-defs.el (toplevel): Remove autoload cookie for form
12730 requiring easymenu.
12731
81c7ca69
GM
127322000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12733
12734 * ps-print.el: PostScript user-defined prologue, PostScript error
12735 handler, doc fix.
12736 (ps-print-version): New version number (5.1).
12737 (ps-user-defined-prologue, ps-error-handler-message)
12738 (ps-print-prologue-0, ps-error-handler-alist): New vars.
12739 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
12740 (ps-insert-string): New function.
fa78f71b 12741
dcf1003d
KH
127422000-03-15 Kenichi Handa <handa@etl.go.jp>
12743
12744 * international/ccl.el (ccl-compile-expression): Don't generate
12745 invalid self-assignment code.
12746
73825616
DL
127472000-03-14 Dave Love <fx@gnu.org>
12748
12749 * subr.el (replace-regexp-in-string): Renamed from
12750 replace-regexps-in-string. Doc fix.
12751
031020ac
DL
127522000-03-12 Dave Love <fx@gnu.org>
12753
12754 * cus-edit.el: Doc fixes.
12755 (customize-set-variable, customize-save-variable): Rename args for
12756 doc.
12757 (custom-variable-tag-face, custom-face-tag-face)
12758 (custom-group-tag-face-1, custom-group-tag-face): Modify from
12759 style which user identify as hyperlink.
12760 (hook): Don't add undefined functions to the hook.
12761 (debug-ignored-errors): Transfer message from bindings.el.
12762
9b2f3c38
GM
127632000-03-12 Gerd Moellmann <gerd@gnu.org>
12764
12765 * recentf.el (recentf-keep-non-readable-files-p): Remove
12766 double/nested definition.
12767
0d6e23cf
DL
127682000-03-12 Dave Love <fx@gnu.org>
12769
12770 * facemenu.el (facemenu-get-face): Use display-color-p.
12771 * enriched.el (enriched-decode-foreground): Likewise.
12772 (enriched-decode-background): Likewise.
12773 * isearch.el (isearch-highlight): Likewise.
12774 * info-look.el (info-lookup): Likewise.
12775 * simple.el (completion-setup-function): Likewise.
12776
12777 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
12778 :options.
12779
12780 * bindings.el (mode-line-format): Fix line-number and
12781 column-number items. Add help-echo for the background.
12782 (mode-line-mule-info): Modify help-echo.
12783
1598a961 12784 * avoid.el (mouse-avoidance-mode): Add autoload cookie to defcustom.
0d6e23cf
DL
12785
12786 * files.el (load-file): Allow completion to .elc.
12787
12788 * man.el: Doc fixes.
12789 (Man-init-defvars): Use display-color-p to set fontification.
12790
12791 * play/hanoi.el (hanoi-internal): Don't use oddp.
12792
e1cff360
GM
127932000-03-12 Gerd Moellmann <gerd@gnu.org>
12794
12795 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
12796
12797 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
12798
5e5dff44
GM
127992000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
12800
12801 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
12802 Fix comment.
12803
5b467bf4
SM
128042000-03-10 Stefan Monnier <monnier@cs.yale.edu>
12805
83fef604
SM
12806 * font-lock.el (font-lock-keywords): Fix the doc now that
12807 regexp-opt-depth is unnecessary.
12808 (save-buffer-state): Set an edebug spec.
12809 (font-lock-fontify-anchored-keywords): Properly handle the case when
12810 the matcher goes past the limit.
12811
5b467bf4
SM
12812 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
12813 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
12814
83fef604
SM
12815 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
12816 dll.el and cookie.el (from Elib) with heavy renaming and other
12817 massaging.
5b467bf4
SM
12818
12819 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
12820 Autoload the functions used.
12821 (easy-mmode-define-syntax): Fix CL typo.
12822 (easy-mmode-define-derived-mode): Improve the docstring generation.
12823
d407456c
GM
128242000-03-10 Gerd Moellmann <gerd@gnu.org>
12825
12826 * textmodes/texinfo.el (texinfo-version): Variable and function
12827 removed.
12828
5a7a545c
SM
128292000-03-09 Stefan Monnier <monnier@cs.yale.edu>
12830
0d6e23cf
DL
12831 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
12832 allow more flexibility.
12833 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New
12834 fns.
12835 (easy-mmode-defmap, easy-mmode-defsyntax)
12836 (easy-mmode-define-derived-mode): New macros.
5a7a545c 12837
d407456c 128382000-03-09 Didier Verna <didier@xemacs.org>
445b0666
DL
12839
12840 * rect.el (replace-rectangle): New function.
12841
128422000-03-09 Dave Love <fx@gnu.org>
12843
12844 * progmodes/fortran.el (fortran-comment-line-start): Define as
12845 "C".
12846 (fortran-comment-line-start-skip): Don't match cpp stuff.
12847 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
12848 (fortran-mode-map): Remove over-eager custom-menu-create for now.
12849 (fortran-mode): Don't set fortran-comment-line-start-skip,
12850 fortran-comment-line-start here. Set comment-start,
12851 add-log-current-defun.
12852 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
12853 (fortran-current-defun): New function.
12854
80460654
GM
128552000-03-09 Gerd Moellmann <gerd@gnu.org>
12856
d1221ea9
GM
12857 * emacs-lisp/re-builder.el: New file.
12858
1853aa6b
GM
12859 * mouse.el (mouse-drag-region): Don't run up-event handler
12860 if hscroll has changed.
12861
80460654
GM
12862 * octave-mod.el (octave-font-lock-keywords): To font-lock the
12863 builtin operators, use `font-lock-builtin-face' for Emacs and
12864 `font-lock-preprocessor-face' otherwise.
fa78f71b
SS
12865
12866 * font-lock.el (lisp-font-lock-keywords-1): Highlight
80460654
GM
12867 `(defun (setf foo)' differently.
12868
c0056275
SM
128692000-03-08 Stefan Monnier <monnier@cs.yale.edu>
12870
12871 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
80460654
GM
12872 (regexp-opt): Update comment and adapt the code the new meaning of
12873 the `paren' argument of regex-opt-group for shy-groups.
12874 (regexp-opt-depth): Handle shy groups as well as backslashed
12875 backslashes.
c0056275
SM
12876 (regexp-opt-group): Turn the leading comment into a docstring.
12877 Allow `paren' to be a string (the string to use to open a group).
80460654
GM
12878 Remove open-presuf and close-presuf. Instead of checking for `all
12879 one-char' and then later on check for `several one-char', handle
12880 both cases close together. Also apply a more generic algorithm
12881 for suffixes (the mirror image of the algorithm used for
12882 prefixes). Use shy-groups. Use nreverse rather than reverse.
c0056275
SM
12883 (regexp-opt-try-suffix): Removed.
12884
12885 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
80460654
GM
12886 from comint-mode-map, so we can just inherit from it. Also, move
12887 the initialization into the `defvar' since there's no docstring
12888 anyway and it's fairly short.
12889 (inferior-scheme-mode): Define it as derived-mode: the code is
12890 shorter and this way we inherit from comint-mode-map rather than
12891 copying it.
c0056275 12892
80460654
GM
12893 * subr.el (replace-regexps-in-string): Properly handle the case
12894 where we match an empty string.
c0056275 12895
80460654
GM
12896 * comint.el (comint-exec-1): Add the current-dir to the exec-path
12897 when the command has a directory component (such as "./testml").
c0056275
SM
12898 Also fix a typo in the comment.
12899
5e91ff9e
GM
129002000-03-08 Gerd Moellmann <gerd@gnu.org>
12901
feab4fba
GM
12902 * Makefile (compile-files): Compile files one by one because
12903 that's the only way to ensure a clean compilation environment for
12904 each individual file.
12905
5e91ff9e
GM
12906 * frame.el (other-frame): Call x-focus-frame.
12907
76162e12
DL
129082000-03-07 Dave Love <fx@gnu.org>
12909
f64ce788
DL
12910 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
12911 :require to defcustom.
12912
76162e12
DL
12913 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
12914 lists.
12915
12916 * files.el (auto-mode-alist): Add configure.in.
12917
12918 * progmodes/autoconf.el: New file.
12919
f7daf1e1
GM
129202000-03-07 Gerd Moellmann <gerd@gnu.org>
12921
12922 * mail/mh-e.el: Change maintainer to `none'.
12923
12924 * recentf.el (recentf-keep-non-readable-files-p): Quote args
12925 to remove-hook and add-hook.
12926
129272000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
12928
12929 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
12930 it as the default.
12931 (mail-send): Test mail-send-nonascii also for the new `mime' value.
12932 (sendmail-send-it): Conditionally add MIME headers specifying the
12933 used character set.
fa78f71b 12934
63f6b2c4
DL
129352000-03-07 Dave Love <fx@gnu.org>
12936
12937 * winner.el: Fix keywords, autoload cookies. Split
12938 eval-when-compile form to avoid compilation failure.
12939
8330e2f9
KH
129402000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
12941
12942 * international/mule.el: Modify comment about coding system
12943 property `coding-category'.
12944 (make-coding-system): New argument EOL-TYPE. Pay attention to
12945 coding-category property of PROPERTIES.
12946
12947 * international/mule-conf.el (coding-category-utf-8,
12948 coding-category-utf-16-be, coding-category-utf-16-le): New coding
12949 categories. Include them in the argument for set-coding-priority.
12950
12951 * international/mule-cmds.el (reset-language-environment): Include
12952 coding-category-utf-8, coding-category-utf-16-be, and
12953 coding-category-utf-16-le in the argument for set-coding-priority.
12954 (reset-language-environment): Initialize coding-category-utf-8,
12955 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
12956
18bb0684
GM
129572000-03-06 Karl Fogel <kfogel@red-bean.com>
12958
12959 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
12960 code abstracted out of `bookmark-jump-noselect'. Now tries info
12961 extensions as well as compression extensions.
12962 (bookmark-jump-noselect): Use above new func.
fa78f71b 12963
71a6ba55
GM
129642000-03-03 Gerd Moellmann <gerd@gnu.org>
12965
12966 * strokes.el: Change maintainer's mail address.
12967
0d56cdff
KH
129682000-03-03 Kenichi Handa <handa@etl.go.jp>
12969
12970 * international/mule-diag.el (list-character-sets): Make help-echo
12971 string by substitute-command-keys.
12972 (list-character-sets): Likewise.
12973 (sort-listed-character-sets): Call help-setup-xref.
12974
900fa1f1
GM
129752000-03-02 Gerd Moellmann <gerd@gnu.org>
12976
12977 * time.el (display-time-mail-file): Add `none' to the list of
12978 choices.
12979
54d04320
DL
129802000-03-01 Dave Love <fx@gnu.org>
12981
43f3fa09
DL
12982 * help.el (help-xref-go-back): Don't try to set position.
12983
54d04320
DL
12984 * international/mule-diag.el (list-character-sets): Call
12985 help-setup-xref. Add help-echo to xrefs.
12986 (list-character-sets-1): Add help-echo to xrefs.
12987
d054101f
GM
129882000-03-02 Gerd Moellmann <gerd@gnu.org>
12989
12990 * frame.el (blink-cursor-mode): Switch cursor on when turning
12991 the mode off.
12992
12993 * add-log.el (add-log-current-defun): Add support for
12994 Autoconf mode.
12995
12996 * mail/rmail.el (rmail-quit-hook): New variable.
12997
d77dae5c
DL
129982000-03-01 Dave Love <fx@gnu.org>
12999
e5f597f0
DL
13000 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
13001
d77dae5c
DL
13002 * help.el (help-xref-button): Add help-echo arg.
13003 (describe-function-1, describe-variable, help-make-xrefs): Use it.
13004
13005 * faces.el (list-faces-display): Supply help-echo with
13006 help-make-xrefs.
13007
13008 * facemenu.el (list-text-properties-at): Set help-xref-stack to
13009 nil.
13010
72d19d75
GM
130112000-03-01 Gerd Moellmann <gerd@gnu.org>
13012
2df636f4
GM
13013 * image.el (defimage): Look for image files in load-path.
13014
fa78f71b 13015 * frame.el (busy-cursor-delay-seconds): Change type to
72d19d75
GM
13016 `number'.
13017
2df636f4
GM
130182000-03-01 David Ponce <david.ponce@wanadoo.fr>
13019
13020 * recentf.el (recentf): Added version tag to the defgroup of
13021 recentf.
13022
130232000-03-01 David Ponce <david.ponce@wanadoo.fr>
13024
13025 * recentf.el (recentf-cleanup): Changed to remove excluded file
13026 too.
13027 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
13028 action to select/unselect a file.
13029 (recentf-edit-list): Code cleanup and improvement.
13030 (recentf-open-more-files-action): `recentf-open-more-files' button
13031 widget action to open a file.
13032 (recentf-open-more-files): No more use standard completion but
13033 widgets.
13034 (recentf-more-collection): Deleted.
13035 (recentf-more-history): Deleted.
13036 (recentf-setup-more-completion): Deleted.
13037
130382000-03-01 David Ponce <david.ponce@wanadoo.fr>
13039
13040 * recentf.el (recentf-mode): No more needs that Emacs is running
13041 under a window-system.
13042
130431999-03-01 David Ponce <david.ponce@wanadoo.fr>
13044
13045 * recentf.el (recentf-edit-list): New command to edit the recent
13046 list which allow the user to remove files.
13047 (recentf-edit-selected-items): New global variable, used by
13048 `recentf-edit-list' to hold the list of files to be removed from
13049 the recent list.
13050 (recentf-make-menu-items): Updated to display a "Edit list..."
13051 menu item. Minor code cleanup.
13052
130531999-03-01 David Ponce <david.ponce@wanadoo.fr>
13054
13055 * recentf.el (recentf-open-more-files): New command to open files
13056 that are not displayed in the menu.
13057 (recentf-more-collection): New global variable holding the set of
13058 permissible completions used by `recentf-open-more-files'.
13059 (recentf-more-history): New global variable holding the history list
13060 used by `recentf-open-more-files' completion.
13061 (recentf-setup-more-completion): New function to setup completion for
13062 `recentf-open-more-files'.
13063 (recentf-make-menu-items): Updated to display a "More..." menu item.
13064
130651999-03-01 David Ponce <david.ponce@wanadoo.fr>
13066
13067 * recentf.el (recentf-menu-action): Doc fixed.
13068
130691999-03-01 David Ponce <david.ponce@wanadoo.fr>
13070
13071 * recentf.el (recentf-menu-filter): Doc updated.
13072 (recentf-update-menu-hook): Allow menu filters to force menu update.
13073 (recentf-make-menu-items): New menu filter handling.
13074 (recentf-make-menu-item): New helper function.
13075 (recentf-menu-elements): New menu handling function.
13076 (recentf-sort-ascending): Updated to new menu filter handling.
13077 (recentf-sort-descending): Updated to new menu filter handling.
13078 (recentf-sort-basenames-ascending): New menu filter function.
13079 (recentf-sort-basenames-descending): New menu filter function.
13080 (recentf-show-basenames): New menu filter function.
13081 (recentf-show-basenames-ascending): New menu filter function.
13082 (recentf-show-basenames-descending): New menu filter function.
13083
72d19d75
GM
130842000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13085
13086 * diary-lib.el (list-diary-entries): Don't try to go forward at
13087 the end of the buffer.
13088
1ac1c836
KH
130892000-02-29 Kenichi Handa <handa@etl.go.jp>
13090
13091 * international/mule-diag.el (list-character-sets): Completely
13092 rewritten.
13093 (sort-listed-character-sets): New function.
13094 (list-character-sets-1): Completely rewritten.
13095 (list-character-sets-2): New function.
13096 (non-iso-charset-alist): New variable.
13097 (decode-codepage-char): New function.
13098 (charset-history): New variable.
13099 (read-charset) (list-block-of-chars)
13100 (list-iso-charset-chars)
13101 (list-non-iso-charset-chars)
13102 (list-charset-chars): New functions.
13103 (mule-diag): Call list-character-sets-2, not
13104 list-character-sets-2.
13105 (dump-charsets): Likewise.
13106
ed4d0512
GM
131072000-02-29 Gerd Moellmann <gerd@gnu.org>
13108
72d19d75
GM
13109 * dired-x.el (dired-filename-at-point): Add `@' to valid
13110 file name characters.
13111 (dired-filename-at-point): Handle ange-ftp file names.
13112
ed4d0512
GM
13113 * frame.el (frame-notice-user-settings): Use assq-delete-all
13114 instead of assoc-delete-all.
13115 (frame-notice-user-settings): Ditto.
13116
13117 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
13118 Don't copy alist.
13119
32038c7a
GM
131202000-02-28 Eli Barzilay <eli@cs.cornell.edu>
13121
13122 * calculator.el (calculator-use-menu): New option.
13123 (calculator-initial-bindings): Changed some bindings to work as
13124 macros.
13125 (calculator-forced-input): Removed.
13126 (calculator-restart-other-mode): New variable.
13127 (calculator-mode-map): Set up menu.
fa78f71b 13128
32038c7a
GM
131292000-02-28 Jari Aalto <jari.aalto@poboxes.com>
13130
13131 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
13132 tags.
fa78f71b 13133
55d7ff38 131342000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
fa78f71b 13135
55d7ff38
MK
13136 * viper-cmd.el (viper-envelop-ESC-key): added the option to
13137 translate all ESC key sequences.
13138 (viper-goto-mark-subr): restore markers for files for which
13139 they were saved.
13140 * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
13141 * viper-util.el (viper-set-replace-overlay-glyphs,
13142 viper-set-replace-overlay): always check if the replacement
13143 overlay is live.
13144 * viper.el (viper-vi-state-mode-list): added major modes.
13145 * ediff-wind.el: minor comment changes.
13146 * ediff.el: copyright notice date fix.
fa78f71b 13147
387023ee
JR
131482000-02-27 Jason Rumney <jasonr@gnu.org>
13149
13150 * faces.el (face-font-family-alternatives): Add arial to helv.
13151 (mode-line, header-line, tool-bar): Same default as x for w32.
13152 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
13153 face-font-family-alternatives from working.
13154 * term/w32-win.el (mouse-set-font): Do not build fontset from
13155 chosen font.
13156
f43d79c1
GM
131572000-02-25 Sam Steingold <sds@goems.com>
13158
5d80cc9c 13159 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
f43d79c1 13160 properly.
fa78f71b 13161
8b7bc628 131622000-02-25 Richard M. Stallman <rms@gnu.org>
f43d79c1
GM
13163
13164 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
13165
4eb8436f
GM
131662000-02-25 Gerd Moellmann <gerd@gnu.org>
13167
13168 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
13169 writable.
13170
449c3c52 13171 * frame.el (busy-cursor-delay-seconds): New option.
f5b58615 13172
42088c12
GM
131732000-02-24 Gerd Moellmann <gerd@gnu.org>
13174
13175 * frame.el (show-cursor-in-non-selected-windows): New option.
13176
c60ea02e
GM
131772000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13178
13179 * diary-lib.el (include-other-diary-files): Undo the selective
13180 display in any included file and don't kill it.
13181
d066de8e
EZ
131822000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
13183
13184 * dired.el (dired-mode-map): Don't remove "Edit" from the menu
13185 bar. Menu items converted to (menu-item format, help strings
13186 added.
13187 [downcase, upcase]: Don't enable on MS-DOS.
13188 [symlink, symlinks]: Don't show if make-symbolic-link is not
13189 bound.
13190 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
13191
b6906b38
DL
131922000-02-23 Dave Love <fx@gnu.org>
13193
275cf1b2
DL
13194 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
13195 (backward-kill-word): Revert addition of * to interactive spec --
13196 it's a feature.
13197
13198 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
13199 (backward-kill-sentence, kill-sentence): Likewise.
13200
99d48056
DL
13201 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
13202 scratch buffer name.
13203 (gud-format-command): Use int-to-string in ?l case. Simplify
13204 slightly.
13205
13206 * term/w32-win.el (internal-face-interactive): Update prompt for
13207 new read-face-name.
13208
13209 * mail/footnote.el (footnote): Add :version to defgroup.
13210 (footnote-section-tag-regexp): Customize.
13211 (footnote-start-tag, footnote-end-tag): New option.
13212 (footnote-latin-regexp): New variable.
13213 (Footnote-latin): New function.
13214 (footnote-style-alist): Add element for latin style.
13215 (footnote-style): Moved.
13216 (Footnote-goto-footnote): Use eq to test arg.
13217
13218 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
13219
b6906b38
DL
13220 * emacs-lisp/byte-opt.el: Change old backquote syntax.
13221 (byte-compile-trueconstp): Include keywords.
13222 (byte-optimize-quote, byte-optimize-lapcode): Use
13223 byte-compile-const-symbol-p.
13224 (byte-optimize-char-before): New optimization.
13225
13226 * emacs-lisp/bytecomp.el: Change old backquote syntax.
13227 (byte-compile-const-symbol-p): New function.
13228 (byte-compile-constp, byte-compile-out-toplevel)
13229 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
13230 Use it.
13231
13232 * subr.el (define-key-after): Default AFTER to t. Doc fix.
13233
214f877f
KH
132342000-02-23 Kenichi Handa <handa@etl.go.jp>
13235
c709bcf1
KH
13236 * international/encoded-kb.el: Be sure to update minor-mode-alist
13237 and minor-mode-map-alist.
13238 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
13239 codes SS2 and SS3 correctly.
13240 (encoded-kbd-self-insert-ccl): New function.
13241 (encoded-kbd-setup-keymap): New function.
13242 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
13243 by calling encoded-kbd-setup-keymap.
13244
214f877f
KH
13245 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
13246 characters.
13247 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
13248 locally.
13249
b021ef18
DL
132502000-02-22 Dave Love <fx@gnu.org>
13251
13252 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
13253 (lisp-mode-map, lisp-interaction-mode-map): Define all inside
13254 defvar.
13255 (lisp-mode-syntax-table): Set up for #|...|# comments.
13256 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
13257 classes. Match `defface'.
13258 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
13259 (eval-defun-1): Fix for defcustom.
13260 (lisp-indent-region): Doc fix.
13261
13262 * subr.el (when, unless, split-string): Doc fix.
13263 (read-passwd): Move call of clear-this-command-keys to the right
13264 place.
13265 (replace-regexps-in-string): New function.
13266
14cc00ad
GM
132672000-02-22 Gerd Moellmann <gerd@gnu.org>
13268
13269 * help.el (describe-variable): Set syntax table to
13270 emacs-lisp-mode-syntax-table when moving forward over the
13271 symbol's name.
13272
47da5efa
DL
132732000-02-22 Dave Love <fx@gnu.org>
13274
13275 * xt-mouse.el: Doc fixes.
13276 (xterm-mouse-position-function): New function, replacing advice of
13277 mouse-position.
13278 (xterm-mouse-mode): Use it. Don't turn on under a window system.
13279
13280 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
13281
f0a6c717
GM
132822000-02-21 Gerd Moellmann <gerd@gnu.org>
13283
13284 * format.el (format-annotate-single-property-change): Handle
13285 properties.with dotted-list values.
13286 (format-proper-list-p): New function.
13287
13288 * enriched.el (enriched-face-ans): Handle '(foreground-color
13289 . COLOR) and (background-color . COLOR).
13290
2be80b63
DL
132912000-02-20 Dave Love <fx@gnu.org>
13292
13293 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
13294 and assignments to it.
13295 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
13296 current local map.
13297 (make-flyspell-overlay): Use it.
13298 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
13299
13300 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
13301 (lm-get-header-re): Defun, not defsubst.
13302 (lm-get-package-name): Defun, not defsubst. Simplify.
13303 (lm-version): Doc fix. Simplify.
13304 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
13305 (lm-crack-address, lm-last-modified-date, lm-commentary)
13306 (lm-verify, lm-synopsis): Simplify.
13307 (lm-report-bug): Require emacsbug. Use compose-mail.
13308
329eed9f
GM
133092000-02-20 Gerd Moellmann <gerd@gnu.org>
13310
13311 * dired.el (dired-mode): Call propertized-buffer-identification
13312 to set mode-line-buffer-identification to something having
13313 the right text properties.
13314
13315 * bindings.el (propertized-buffer-identification): New function.
13316
be5bb146
DL
133172000-02-20 Dave Love <fx@gnu.org>
13318
13319 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
13320 check for t-mouse too.
13321
13322 * cus-start.el: Make echo-keystrokes `number'.
13323
1d4311c3
EZ
133242000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
13325
13326 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
13327 Don't call ring-empty-p unless tags-location-ring is bound.
13328 From Noah Friedman <friedman@splode.com>.
13329
a23c5037
TTN
133302000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
13331
13332 * progmodes/hideshow.el (hs-flag-region): No longer use
13333 `intangible' overlay property.
13334
13335 (hs-toggle-hiding): New command.
13336 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
13337
13338 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
13339 Fix omission bug: Run `hs-minor-mode-hook' for both activation
13340 and deactivation.
13341
b6a22bf8
GM
133422000-02-18 Gerd Moellmann <gerd@gnu.org>
13343
13344 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
13345
d621caf7
GM
133462000-02-17 Gerd Moellmann <gerd@gnu.org>
13347
3c0ed7ce
GM
13348 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
13349
d621caf7
GM
13350 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
13351 of `*' to handle `(* ... *)' comments.
13352
538d88fb
EZ
133532000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
13354
53c80cf6 13355 * faces.el (list-faces-display): Use display-mouse-p instead of
f24fef2f 13356 window-system.
53c80cf6 13357
538d88fb
EZ
13358 * menu-bar.el (global-map): Menu-bar items converted to the new
13359 format (menu-item..., rearranged for better CUA compliance, and
13360 their names changed for better clarity. Help strings added.
13361
13362 * international/mule-cmds.el (mule-menu-keymap)
13363 (describe-language-environment-map, set-coding-system-map)
13364 (setup-language-environment-map): Convert to new (menu-item...
13365 form, add help strings. Change names of menu items for better
13366 clarity. "Mule" menu-bar item removed (it's now in the "Options"
13367 submenu).
13368
8389e1e2 133692000-02-17 Gerd Moellmann <gerd@gnu.org>
84fe35f0 13370
a23c5037 13371 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
8389e1e2 13372 within the code.
a23c5037 13373
8389e1e2 133742000-02-16 Dave Love <fx@gnu.org>
a23c5037 13375
84fe35f0
DL
13376 * faces.el: Don't require custom. Add more specific :groups to
13377 various deffaces.
13378 (set-face-attribute): Purecopy args.
13379 (read-face-name): Default to name at point and use it in prompt.
13380 Remove colon from arg in all callers.
13381 (list-faces-display): Hyperlink to face descriptions and customize
13382 buffers.
13383
b2aeee30
DL
133842000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
13385
13386 * wid-edit.el (widget-match-inline): An atom never matches a
13387 list.
13388
99e95407
GM
133892000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13390
82d2c7c5
DL
13391 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
13392 at ':' characters by call to split-string.
99e95407
GM
13393
133942000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13395
82d2c7c5 13396 * textmodes/bibtex.el: Added RCS version identification.
99e95407
GM
13397
133982000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13399
82d2c7c5
DL
13400 * textmodes/bibtex.el: Some temporary comments removed.
13401 (bibtex-field-name, bibtex-entry-type): Made the relationship
13402 explicit.
13403 (bibtex-field-const): Allow capital letters.
13404 (bibtex-start-of-string): Deleted because unused.
13405
13406 * textmodes/bibtex.el: Unified some nomenclature. We no longer
13407 use the term 'reference' to describe a bibtex entry as a whole.
13408 Further, reference keys are no longer called 'labels'.
13409 (bibtex-keys): Renamed to bibtex-reference-keys.
13410 (bibtex-reformat-previous-labels): Renamed to
13411 bibtex-reformat-previous-reference-keys.
13412 (bibtex-reference-type): Renamed to bibtex-entry-type.
13413 (bibtex-reference-head): Renamed to bibtex-entry-head.
13414 (bibtex-reference-maybe-empty-head): Renamed to
13415 bibtex-entry-maybe-empty-head.
13416 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
13417 (bibtex-search-reference): Renamed to bibtex-search-entry.
13418 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
13419 bibtex-enclosing-entry-maybe-empty-head.
13420 (bibtex-entry-field-alist, bibtex-entry-head,
13421 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
13422 bibtex-map-entries, bibtex-search-entry,
13423 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
13424 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
13425 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
13426 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
13427 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
13428 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
13429 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
99e95407
GM
13430
134312000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13432
82d2c7c5
DL
13433 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
13434 comment.
13435 (bibtex-format-field-delimiters): New function, functionality
13436 extracted from bibtex-format-entry.
13437 (bibtex-autokey-get-yearfield-digits): New function, functionality
13438 extracted from bibtex-autokey-get-yearfield.
13439
13440 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
13441 entries in order to avoid stack overflow in the regexp matcher if
13442 field contents become large.
13443 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
13444 bibtex-field-string-part-not-braced,
13445 bibtex-field-string-part-no-inner-braces,
13446 bibtex-field-string-part-1-inner-brace,
13447 bibtex-field-string-part-2-inner-braces,
13448 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
13449 bibtex-field-string-quoted, bibtex-field-string,
13450 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
13451 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
13452 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
13453 as parsing is now performed by the following functions.
13454 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
13455 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
13456 bibtex-parse-field-string, bibtex-search-forward-field-string,
13457 bibtex-parse-association, bibtex-field-name-for-parsing,
13458 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
13459 bibtex-search-forward-field, bibtex-search-backward-field,
13460 bibtex-start-of-field, bibtex-end-of-field,
13461 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
13462 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
13463 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
13464 bibtex-parse-string, bibtex-search-forward-string,
13465 bibtex-search-backward-string, bibtex-start-of-string,
13466 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
13467 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
13468 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
13469 entries. Instead of reporting the results of the parsing by
13470 match-beginning or match-end, these functions return data structures
13471 that hold the corresponding positions.
13472 (bibtex-enclosing-field): Changed to also report field boundaries by
13473 return values rather than by match-beginning or match-end. The
13474 following functions have been adapted to use the new parsing
13475 functions.
13476 (bibtex-skip-to-valid-entry, bibtex-search-reference,
13477 bibtex-enclosing-field, bibtex-format-entry,
13478 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
13479 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
13480 bibtex-print-help-message, bibtex-end-of-entry,
13481 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
13482 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
13483 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
13484 method for parsing.
13485 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
13486 bibtex-map-entries, bibtex-flash-head,
13487 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
13488 bibtex-autokey-change, bibtex-autokey-get-namefield,
13489 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
13490 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
13491 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
13492 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
13493 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
13494 order to make the new binding of case-fold-search immediately
13495 visible.
99e95407
GM
13496
134972000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13498
82d2c7c5
DL
13499 * textmodes/bibtex.el: Copyright notice is up to date.
13500 Added constant 'bibtex-maintainer-salutation.
99e95407 13501
82d2c7c5
DL
13502 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
13503 than make-temp-name, use match-string-no-properties and eliminate
13504 a quadratic behavior when building bibtex-strings.
99e95407 13505
82d2c7c5
DL
13506 * bibtex.el (bibtex-reference-key): Accept string entries whose
13507 reference key contains upper case letters.
99e95407
GM
13508
135092000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13510
82d2c7c5
DL
13511 * bibtex.el (bibtex-reference-head): Allow entries to start with
13512 a new line.
99e95407
GM
13513
135142000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13515
82d2c7c5
DL
13516 * bibtex.el: Hiding of entry bodies is not longer provided by
13517 bibtex.el directly. Instead the hideshow package can be used.
13518 Added a special bibtex entry to hs-special-modes-alist.
13519 (bibtex-hs-forward-sexp): Added for hideshow.el.
8389e1e2
GM
13520
135212000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13522
f24fef2f
SM
13523 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
13524 at ':' characters by call to split-string.
8389e1e2
GM
13525
135262000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13527
f24fef2f 13528 * textmodes/bibtex.el: Added RCS version identification.
8389e1e2
GM
13529
135302000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13531
f24fef2f
SM
13532 * textmodes/bibtex.el: Some temporary comments removed.
13533 (bibtex-field-name, bibtex-entry-type): Made the relationship
13534 explicit.
13535 (bibtex-field-const): Allow capital letters.
13536 (bibtex-start-of-string): Deleted because unused.
fa78f71b 13537
f24fef2f
SM
13538 * textmodes/bibtex.el: Unified some nomenclature. We no longer
13539 use the term 'reference' to describe a bibtex entry as a whole.
13540 Further, reference keys are no longer called 'labels'.
13541 (bibtex-keys): Renamed to bibtex-reference-keys.
13542 (bibtex-reformat-previous-labels): Renamed to
13543 bibtex-reformat-previous-reference-keys.
13544 (bibtex-reference-type): Renamed to bibtex-entry-type.
13545 (bibtex-reference-head): Renamed to bibtex-entry-head.
13546 (bibtex-reference-maybe-empty-head): Renamed to
13547 bibtex-entry-maybe-empty-head.
13548 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
13549 (bibtex-search-reference): Renamed to bibtex-search-entry.
13550 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
13551 bibtex-enclosing-entry-maybe-empty-head.
13552 (bibtex-entry-field-alist, bibtex-entry-head,
13553 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
13554 bibtex-map-entries, bibtex-search-entry,
13555 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
13556 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
13557 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
13558 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
13559 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
13560 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
13561 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
8389e1e2
GM
13562
135632000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13564
f24fef2f
SM
13565 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
13566 comment.
13567 (bibtex-format-field-delimiters): New function, functionality
13568 extracted from bibtex-format-entry.
13569 (bibtex-autokey-get-yearfield-digits): New function, functionality
13570 extracted from bibtex-autokey-get-yearfield.
fa78f71b 13571
f24fef2f
SM
13572 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
13573 entries in order to avoid stack overflow in the regexp matcher if
13574 field contents become large.
13575 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
13576 bibtex-field-string-part-not-braced,
13577 bibtex-field-string-part-no-inner-braces,
13578 bibtex-field-string-part-1-inner-brace,
13579 bibtex-field-string-part-2-inner-braces,
13580 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
13581 bibtex-field-string-quoted, bibtex-field-string,
13582 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
13583 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
13584 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
13585 as parsing is now performed by the following functions.
13586 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
13587 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
13588 bibtex-parse-field-string, bibtex-search-forward-field-string,
13589 bibtex-parse-association, bibtex-field-name-for-parsing,
13590 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
13591 bibtex-search-forward-field, bibtex-search-backward-field,
13592 bibtex-start-of-field, bibtex-end-of-field,
13593 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
13594 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
13595 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
13596 bibtex-parse-string, bibtex-search-forward-string,
13597 bibtex-search-backward-string, bibtex-start-of-string,
13598 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
13599 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
13600 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
13601 entries. Instead of reporting the results of the parsing by
13602 match-beginning or match-end, these functions return data structures
13603 that hold the corresponding positions.
13604 (bibtex-enclosing-field): Changed to also report field boundaries by
13605 return values rather than by match-beginning or match-end. The
13606 following functions have been adapted to use the new parsing
13607 functions.
13608 (bibtex-skip-to-valid-entry, bibtex-search-reference,
13609 bibtex-enclosing-field, bibtex-format-entry,
13610 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
13611 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
13612 bibtex-print-help-message, bibtex-end-of-entry,
13613 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
13614 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
13615 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
13616 method for parsing.
13617 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
13618 bibtex-map-entries, bibtex-flash-head,
13619 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
13620 bibtex-autokey-change, bibtex-autokey-get-namefield,
13621 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
13622 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
13623 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
13624 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
13625 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
13626 order to make the new binding of case-fold-search immediately
13627 visible.
8389e1e2
GM
13628
136292000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13630
f24fef2f
SM
13631 * textmodes/bibtex.el: Copyright notice is up to date.
13632 Added constant 'bibtex-maintainer-salutation.
fa78f71b 13633
f24fef2f
SM
13634 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
13635 than make-temp-name, use match-string-no-properties and eliminate
13636 a quadratic behavior when building bibtex-strings.
fa78f71b 13637
f24fef2f
SM
13638 * bibtex.el (bibtex-reference-key): Accept string entries whose
13639 reference key contains upper case letters.
8389e1e2
GM
13640
136412000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13642
f24fef2f
SM
13643 * bibtex.el (bibtex-reference-head): Allow entries to start with
13644 a new line.
8389e1e2
GM
13645
136462000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13647
f24fef2f
SM
13648 * bibtex.el: Hiding of entry bodies is not longer provided by
13649 bibtex.el directly. Instead the hideshow package can be used.
13650 Added a special bibtex entry to hs-special-modes-alist.
13651 (bibtex-hs-forward-sexp): Added for hideshow.el.
99e95407
GM
13652
136532000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13654
82d2c7c5 13655 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
99e95407
GM
13656 proceedings entry type (for cross referencing). Thanks to Wagner
13657 Toledo Correa for the suggestion.
13658
82d2c7c5 13659 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
99e95407 13660
eae61d8f
KH
136612000-02-14 Kenichi Handa <handa@etl.go.jp>
13662
13663 * international/characters.el: Setup case table for Vietnamese.
13664
fb07a302
GM
136652000-02-12 Gerd Moellmann <gerd@gnu.org>
13666
13667 * uniquify.el (toplevel): Require CL at compile time.
13668 (uniquify-push): Removed.
13669
13670 * shadowfile.el (shadow-when): Removed.
13671
13672 * tempo.el (tempo-dolist, tempo-mapc): Removed.
13673 (tempo-process-and-insert-string): Use dolist instead of
13674 tempo-dolist.
13675
13676 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
13677 regexp for paragraph-start.
13678
13679 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
13680 commas as well.
13681
a0eddf92
DL
136822000-02-10 Dave Love <fx@gnu.org>
13683
13684 * wid-edit.el: (widgets) [defgroup]: Remove url link.
13685 (widget-color-choice-list, widget-color-history, widget-mouse-help):
13686 Deleted.
13687 (widget-specify-field, widget-specify-button): Don't use
13688 widget-mouse-help as help-echo property.
13689 (default): Use #'ignore for :validate and :mouse-down-action.
13690 (checkbox): Add help-echo.
13691 (widget-sexp-validate): Rewritten to clarify error messages.
13692 (character): Use char-valid-p in :match function.
13693 (widget-color-complete): Use facemenu-color-alist.
13694 (widget-color-action): Use facemenu-read-color.
13695
13696 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
13697 set up `caar' &c that we now have.
13698
82d2c7c5
DL
136992000-02-09 Ray Blaak <blaak@gnu.org>
13700
13701 * delphi.el: Make resourcestring a declaration region, like const
13702 and var.
13703
6cbc1482
DL
137042000-02-09 Dave Love <fx@gnu.org>
13705
13706 * bindings.el (mode-line-input-method-map): New variable.
13707 (mode-line-mule-info): Use it; fix last change.
13708 (mode-line-mode-menu): Move definition.
13709 (mode-line-mouse-sensitive-p): Deleted.
13710 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
13711 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
13712 level.
13713
13714 * startup.el (command-line-1): Don't call
13715 make-mode-line-mouse-sensitive.
13716
f7136ee8
GM
137172000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
13718
13719 * mail/rmail.el (rmail-retry-failure): Use
13720 rmail-beginning-of-message before rmail-toggle-header, because the
13721 former toggles headers.
13722
6e1d0d15
SM
137232000-02-06 Stefan Monnier <monnier@cs.yale.edu>
13724
fef8c55b
SM
13725 * diff-mode.el (diff-kill-junk): New interactive function.
13726 (diff-reverse-direction): Use delete-and-extract-region.
13727 (diff-post-command-hook): Restrict the area so that the hook also works
13728 outside of any diff hunk. This is necessary for the minor-mode.
13729 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
13730 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
13731
6e1d0d15
SM
13732 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
13733 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
13734 so that it can be used more easily in <foo>-mode-hook. Also make sure
13735 to avoid duplicate entries.
13736 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
13737 (font-lock-remove-keywords): Just as was done for `add', allow it to
13738 work even if font-lock-mode is nil. Also make sure we don't modify
13739 any pre-existing list by forcing a copy-sequence. Finally rename
13740 `major-mode' to `mode'.
13741 (font-lock-fontify-syntactic-anchored-keywords)
13742 (font-lock-fontify-anchored-keywords)
13743 (font-lock-fontify-keywords-region): Use line-end-position.
13744 Don't make `font-lock-multiline' local (it's now done in
13745 font-lock-set-defaults).
13746 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
13747 move the `font-lock-fontified' creation to inside the `unless'.
13748
a75dfea0
AI
137492000-02-06 Andrew Innes <andrewi@gnu.org>
13750
13751 * term/w32-win.el (x-handle-args): Comment out call to message,
13752 which occurs before window system is initialized.
13753
13754 * makefile.nt: Add support for recompiling lisp code.
13755
b85e9462
DL
137562000-02-04 Dave Love <fx@gnu.org>
13757
9ff33afb
DL
13758 * bindings.el (mode-line-mule-info): Fix/extend last change.
13759
b85e9462
DL
13760 * completion.el: Replace completion-dolist with dolist.
13761
13762 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
13763 dotimes.
13764
44dff075
CD
137652000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
13766
13767 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
13768 environment names before they go into the section regexp.
13769
13770 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
13771 char class in regexp.
13772
13773 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
13774 `case-fold-search' to nil.
13775
13776 * progmodes/idlwave.el (idlwave-template): Respect
13777 `idlwave-abbrev-change-case'.
13778 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
13779 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
13780 idlwave-while): respect `idlwave-reserved-word-upcase'.
13781 (idlwave-rw-case): New function.
13782 (idlwave-statement-match): Fixed problem with assignment regexp.
13783 (idlwave-font-lock-keywords): Improved regexp for keyword
13784 parameters.
a23c5037 13785 (idlwave-surround): New argument LENGTH to support padding of
44dff075
CD
13786 operators longer than 1 char.
13787
13788 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
13789 idlwave-shell-expression-overlay. Implemented printing of
13790 expressions on higher levels of the calling stack.
13791 (idlwave-shell-display-level-in-calling-stack): Restore stack
13792 level.
13793 (idlwave-retrieve-expression-from-level): New function.
13794 (idlwave-shell-last-calling-stack): Variable removed.
13795 (idlwave-shell-reset): Argument action reversed (`visible' to
13796 `hidden'). Also remove stop-line overlay.
13797 (idlwave-shell-calling-stack-routine): New variable.
13798 (idlwave-shell-parse-stack-and-display): Messages now display
13799 negative level numbers.
13800 (idlwave-shell-mode): Set `modeline-format'.
13801 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
13802 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
13803 21.
13804 (idlwave-shell-print-expression-function): New option.
a23c5037 13805
44dff075
CD
13806 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
13807 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
13808 `tool-bar' instead of `toolbar'.
13809
f26c34fd
DL
138102000-02-02 Dave Love <fx@gnu.org>
13811
13812 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
13813 emacs-lisp-mode-hook. Don't check for defalias being defined.
13814
13815 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
13816 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
13817 the new builtins directly.
13818
13819 * whitespace.el (whitespace): Add :version to defgroup.
13820
13821 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
13822 Doc fix.
13823
13824 * thingatpt.el (sexp-at-point, symbol-at-point)
13825 (number-at-point, list-at-point): Add autoload cookie.
13826
13827 * recentf.el (recentf): Add :version to defgroup.
13828
13829 * quickurl.el (quickurl): Add :version to defgroup.
13830
13831 * elide-head.el (elide-head): Use point-marker more.
13832
13833 * bs.el (bs): Add :version to defgroup.
13834
13835 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
13836
13837 * progmodes/delphi.el (delphi): Add :version to defgroup.
13838
d240a249
GM
138392000-02-02 Gerd Moellmann <gerd@gnu.org>
13840
13841 * ange-ftp.el (ange-ftp-write-region): Handle case that
13842 succeeding process operation sets a different coding system.
13843
13844 * calculator.el: New file.
13845
d5179a01
EZ
138462000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
13847
13848 * frame.el (frames-on-display-list, framep-on-display): New
13849 functions.
13850 (display-mouse-p, display-popup-menus-p, display-graphic-p)
13851 (display-selections-p, display-screens, display-pixel-width)
13852 (display-pixel-height, display-mm-width, display-mm-height)
13853 (display-backing-store, display-save-under, display-planes)
13854 (display-color-cells, display-visual-class): New functions.
13855
13856 * term/tty-colors.el (tty-color-gray-shades): New function.
13857
13858 * faces.el (display-color-p): Use framep-on-display.
13859 (display-grayscale-p): New function.
13860
968e00f0
DL
138612000-01-31 Dave Love <fx@gnu.org>
13862
13863 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
13864 (create-fontset-from-x-resource): Don't concat integers.
13865
2cb750ba
GM
138662000-01-31 Inge Frick <inge@nada.kth.se>
13867
13868 * view.el: Some changes in documentation. Removed some trailing
13869 whitespace. Changed some parameter names to agree with
13870 documentation.
13871 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
13872 window is not deleted. Modifies change 1998-04-26.
a23c5037 13873
74e9213b
GM
138742000-01-31 Gerd Moellmann <gerd@gnu.org>
13875
47569935
GM
13876 * windmove.el: New file.
13877
74e9213b
GM
13878 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
13879 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
2cb750ba 13880 progmodes/ebnf-yac.el: Update copyright and license info.
a23c5037 13881
74e9213b
GM
13882 * jit-lock.el (jit-lock-function): Widen before calculating end
13883 position.
13884 (jit-lock-stealth-chunk-start): Rewritten.
13885
13886 * info.el (Info-title-face-alist): Removed.
13887 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
13888 faces.
13889 (Info-fontify-node): Use these faces.
13890
994c5afe
GM
138912000-01-30 Gerd Moellmann <gerd@gnu.org>
13892
13893 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
13894 (cl-macro-list1): Recognize `&allow-other-keys' instead of
13895 `&allow-other-keywords'.
13896
13897 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
13898 the list of directories scanned heuristically.
13899
13900 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
13901 exist.
13902
f00276e3
JR
139032000-01-30 Jason Rumney <jasonr@gnu.org>
13904
13905 * w32-fns.el: Define w32-tty-standard-colors.
13906
13907 * startup.el (command-line): Use w32-tty-standard-colors when in
13908 w32 console mode.
13909
cc4dfff0
DL
139102000-01-30 Dave Love <fx@gnu.org>
13911
e645e77b
DL
13912 * jka-compr.el (jka-compr-load): Fix up load-history.
13913
cc4dfff0
DL
13914 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
13915
13916 * emacs-lisp/cl-macs.el: Revert previous change.
13917
16215eb0
DL
139182000-01-29 Dave Love <fx@gnu.org>
13919
13920 * facemenu.el: Purecopy various strings.
13921
13922 * timezone.el (timezone-fix-time): Window against 69 for two-digit
13923 years. Deal with three-digit years.
13924
13925 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
13926 defconst, purecopy.
13927 (help-back-label): Purecopy it.
13928
bbd9b566
GM
139292000-01-18 Gerd Moellmann <gerd@gnu.org>
13930
13931 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
13932 variable. If non-nil, order the buffer list according to the
13933 currently selected frame.
13934 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
13935 non-nil, pass the selected frame to function buffer-list.
a23c5037 13936
887448e1
GM
139372000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13938
13939 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
13940
7df85084
DL
139412000-01-28 Dave Love <fx@gnu.org>
13942
142e109c
DL
13943 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
13944
7df85084
DL
13945 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
13946 Don't use lisp-indent-hook property.
13947 (cl-abs): Remove.
13948
13949 * subr.el: Move out indent and edebug specs for when and unless.
13950
13951 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
13952 when, unless.
13953
13954 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
13955 unless, when.
13956
3b43c01c
GM
139572000-01-28 Gerd Moellmann <gerd@gnu.org>
13958
d060bc9f
GM
13959 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
13960 `collecting' as synonym for `collect'.
13961
13962 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
13963 for the case it contains spaces.
13964
13965 * simple.el (what-cursor-position): Change formatting of
13966 messages.
13967
b02786f9
GM
13968 * frame.el (delete-other-frames): New function.
13969 (toplevel): Bind it to C-x 5 1.
13970
efd68b8a
GM
13971 * sort.el (sort-numeric-base): New option.
13972 (sort-numeric-fields): If number starts with `0' or `0[xX[',
13973 interpret it as octal or hexadecimal. Use sort-numeric-base
13974 as default base.
13975
3b43c01c
GM
13976 * progmodes/glasses.el: New file.
13977
984ae001
GM
139782000-01-27 Gerd Moellmann <gerd@gnu.org>
13979
a0b796e3
GM
13980 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
13981 userids differently.
13982
984ae001
GM
13983 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
13984 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
13985 progmodes/ebnf-yac.el: New files.
13986
6c67ddee
DL
139872000-01-26 Dave Love <fx@gnu.org>
13988
13989 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
13990 on a function with an empty body. [From Eric Ludlam.]
13991
4e6473c8
GM
139922000-01-25 Andre Spiegel <spiegel@gnu.org>
13993
13994 * vc.el (vc-version-diff): Make sure file name is expanded.
13995
e12489f9
GM
139962000-01-25 Gerd Moellmann <gerd@gnu.org>
13997
13998 * scroll-bar.el (scroll-bar-timer): Variable removed.
13999 (scroll-bar-toolkit-scroll): Don't use a timer.
14000
8dbe2b07
KH
140012000-01-25 Kenichi Handa <handa@etl.go.jp>
14002
14003 * language/thai-util.el (thai-composition-function): Delete
14004 superfluous `a'.
14005
26ef1c87
DL
140062000-01-24 Dave Love <fx@gnu.org>
14007
14008 * fortran.el (fortran-mode): Use beginning-of-defun-function,
14009 end-of-defun-function.
14010
14011 * font-lock.el (turn-on-font-lock): Don't depend on window-system
14012 &c.
14013
7ed4e9a7
JR
140142000-01-22 Jason Rumney <jasonr@gnu.org>
14015
14016 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
14017 conflicts with new face support.
14018
8b7bc628 140192000-01-22 Richard M. Stallman <rms@gnu.org>
d2ce3151
RS
14020
14021 * replace.el (query-replace): Rename last arg to DELIMITED.
14022 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
14023 (query-replace-regexp): Likewise.
14024
8b7bc628 140252000-01-20 Richard M. Stallman <rms@gnu.org>
2d5e9b54 14026
02b14400
RS
14027 * subr.el (with-syntax-table): Use make-symbol, not gensym.
14028
5bb6f079
RS
14029 * emacs-lisp/lisp.el (beginning-of-defun-function):
14030 Variable renamed from beginning-of-defun.
14031 Do not call make-variable-buffer-local.
14032 (beginning-of-defun-raw): Use new variable name; doc fix.
14033 (beginning-of-defun): Doc fix.
14034 (end-of-defun-function): Variable renamed from end-of-defun.
14035 Do not call make-variable-buffer-local.
14036 (end-of-defun): Use new variable name; doc fix.
14037
02b14400
RS
14038 * subr.el (dolist, dotimes): Copied from cl-macs.el
14039 and made to work.
2d5e9b54 14040
a23c5037 14041 * mail/undigest.el (rmail-digest-end-regexps):
2d5e9b54
RS
14042 Variable replaces rmail-digest-end-regexp.
14043 Allows multiple regexps for detecting the end line.
14044 (undigestify-rmail-message): Corresponding changes.
14045
60af03f1
DL
140462000-01-19 Dave Love <fx@gnu.org>
14047
fe5d99e1
DL
14048 * files.el (user-init-file): Don't declare here -- is primitive.
14049
60af03f1
DL
14050 * startup.el (command-line): Check for compiled user-init-file and
14051 set to uncompiled version if necessary.
14052
72dbbc7d
GM
140532000-01-18 Gerd Moellmann <gerd@gnu.org>
14054
6a1950ec
GM
14055 * mail/undigest.el (rmail-digest-end-regexp): New user option.
14056 (undigestify-rmail-message): Use it.
14057
72dbbc7d
GM
14058 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
14059
fbe91bbd
GM
140602000-01-17 Gerd Moellmann <gerd@gnu.org>
14061
14062 * tmm.el (tmm-goto-completions): Adapt to prompt being part
14063 of mini-buffer.
14064
33a6685b
GM
140652000-01-14 Gerd Moellmann <gerd@gnu.org>
14066
b3303df7
GM
14067 * emacs-lisp/copyright.el (copyright-update): Removed the
14068 requirement for a trailing space from `copyright-regexp', to
14069 support copyrights with owner specified on a separate line..
a23c5037 14070
3c4c8064
GM
14071 * align.el: New file.
14072
33a6685b
GM
14073 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
14074
14075 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
14076
044a4975
DL
140772000-01-13 Dave Love <fx@gnu.org>
14078
14079 * ph.el: Removed. (Obsoleted by EUDC.)
14080
0a352cd7
GM
140812000-01-13 Gerd Moellmann <gerd@gnu.org>
14082
14083 * net/eudc.el (toplevel): Remove autoloaded code installing
14084 menu with easymenu, because that causes build problems.
14085
14086 * frame.el (frame-notice-user-settings): New variable.
14087 (frame-notice-user-settings): Don't modify frame parameters
14088 if called a second time.
14089
8b7bc628 140902000-01-13 Richard M. Stallman <rms@gnu.org>
0a352cd7
GM
14091
14092 * frame.el (frame-notice-user-settings):
14093 Notice default-frame-parameters even for non-window frames.
14094
feb450e0
GM
140952000-01-13 Gerd Moellmann <gerd@gnu.org>
14096
14097 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
14098 for Emacs.
14099 (eudc-bob-can-display-inline-images): Extend for Emacs.
14100 (eudc-bob-toggle-inline-display): Ditto.
14101 (eudc-bob-display-jpeg): Ditto.
14102
99c6d63b
GM
141032000-01-12 Gerd Moellmann <gerd@gnu.org>
14104
7970b229
GM
14105 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
14106 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
14107 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
a23c5037 14108
e4936aa9
GM
14109 * add-log.el (add-change-log-entry): Fix error trying an `(insert
14110 nil)'.
14111
14112 * subdirs.el: Add `net' directory.
14113
133c9e59
GM
14114 * net: New directory.
14115
99c6d63b
GM
14116 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
14117 eval-last-sexp. Don't bind debug-on-error here.
14118 (eval-last-sexp): New function. Bind debug-on-error if
14119 eval-expression-debug-on-error is non-nil.
14120 (eval-defun-2, eval-defun): Likewise.
14121
14122 * simple.el (eval-expression): Don't bind debug-on-error if
14123 eval-expression-debug-on-error is nil. Detect changed
14124 debug-on-error, and propagate new value to global binding, if
14125 eval-expression-debug-on-error is non-nil,
14126 (eval-expression-debug-on-error): Change doc string.
a23c5037 14127
8b7bc628 141282000-01-11 Richard M. Stallman <rms@gnu.org>
83c8f461
RS
14129
14130 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
14131
14132 * emacs-lisp/lisp-mode.el (with-syntax-table):
14133 Set up lisp-indent-function property.
14134
14135 * subr.el (with-syntax-table): Moved from simple.el.
14136
14137 * simple.el (with-syntax-table): Moved to subr.el.
14138
7e3c74fa
GM
141392000-01-11 Gerd Moellmann <gerd@gnu.org>
14140
1fab1775
GM
14141 * tmm.el (tmm-shortcut): Delete region after prompt instead
14142 of erasing buffer.
14143
7e3c74fa 14144 * textmodes/fill.el (fill-common-string-prefix): New function.
133c9e59
GM
14145 (fill-context-prefix): Use the longest common prefix of first
14146 and second line fill prefix, if there is one.
7e3c74fa 14147
8b7bc628 141482000-01-11 Richard M. Stallman <rms@gnu.org>
782bd3ec
RS
14149
14150 * array.el (array-mode): Don't use make-variable-buffer-local.
14151 Use make-local-variable for `truncate-lines'.
14152
aa705642 141532000-01-11 Jari Aalto <jari.aalto@poboxes.com>
57df2446 14154
aa705642
GM
14155 * add-log.el (add-log-current-defun): Handle user-defined
14156 add-log-current-function returning nil,
a23c5037 14157
57df2446 14158 * add-log.el (add-change-log-entry): Insert version number
aa705642 14159 if having found a current function
c1356086
GM
14160
14161 * add-log.el (add-log-current-defun): Call
14162 `add-log-current-defun-function'. Try matches at level 0 and
14163 level 1. Strip whitespace from defun found.
a23c5037 14164
1d8c59e9
RS
141652000-01-10 John Wiegley <johnw@gnu.org>
14166
14167 * allout.el (isearch-done/outline-provisions): Added `edit'
14168 argument to correspond with the current definition of
14169 `isearch-done'.
14170
8cf87e9b
DL
141712000-01-10 Dave Love <fx@gnu.org>
14172
14173 * elide-head.el (elide-head): Use point-marker, not point.
14174
9050446c
GM
141752000-01-10 Gerd Moellmann <gerd@gnu.org>
14176
8321b22a
GM
14177 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
14178 before and after the year 2000.
a23c5037 14179
9050446c
GM
14180 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
14181 Add ispell- prefix.
14182
141832000-01-10 Ken Stevens <k.stevens@ieee.org>
14184
14185 * ispell.el: Only define dictionaries in menus when they exist.
14186 (version18p): New variable.
14187 (version20p): New variable.
14188 (xemacsp): New variable.
14189 (ispell-choices-win-default-height): Fix for XEmacs visibility.
14190 (ispell-dictionary-alist1): Added Brasileiro dictionary.
14191 (ispell-dictionary-alist6): Russian command lines no longer accept
f24fef2f 14192 run-together words.
9050446c
GM
14193 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
14194 (ispell-dictionary-alist): Add koi8-r to customize definition.
14195 (check-ispell-version): Added documentation string. Returns
f24fef2f 14196 library path when called non-interactively.
9050446c
GM
14197 (ispell-menu-map-needed): Uses new variables.
14198 (ispell-library-path): New variable.
14199 (ispell-decode-string): XEmacs fix for bogus variable bindings.
14200 (ispell-word): Improved documentation string. Test for valid
14201 character mappings. Correctly check typed in word changes that can
14202 result in single words split into multiple words. Returns
14203 replacement word.
14204 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
14205 replace in recursive query replace mode. Help message for
14206 recursive edit mode.
14207 (ispell-show-choices): Protect against bad framepop bindings.
14208 (ispell-help): Fix to work with XEmacs.
14209 (ispell-highlight-spelling-error): Use new variables.
14210 (ispell-overlay-window): Fix to work with XEmacs.
14211 (ispell-parse-output): Passed and returns location information
14212 tracking spelling corrections. Doesn't recheck same word on
14213 current line.
14214 (ispell-init-process): Protect against bogus XEmacs variable binding.
14215 Fix call to single argument in sleep-for. Use new variables.
14216 (ispell-region): Passed and returns location information tracking
14217 spelling corrections. Doesn't check same word on current line.
14218 Improved documentation string. Doesn't resend a line already
14219 checked to the ispell process - fixes bug in LaTeX parsing.
14220 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
14221 (ispell-skip-region): No longer skips <TT> in SGML.
14222 (ispell-process-line): Tracks location information with spelling
14223 corrections. Added documentation string. Accounts for words
14224 already accepted on this line. Don't allow query-replace on line
14225 starting with math characters. Doesn't resend a line already sent
14226 to ispell process. Fixes alignment error bug.
a23c5037 14227
8b7bc628 142282000-01-10 Richard M. Stallman <rms@gnu.org>
6d0c28f4 14229
a23c5037 14230 * dired-x.el (dired-guess-shell-alist-default):
8f3efb4e
RS
14231 Suggest xloadimage, which is free, not xv, which isn't.
14232
a23c5037 14233 * ange-ftp.el (ange-ftp-file-name-nondirectory):
6d0c28f4
RS
14234 Don't ever include the host name or user name in the value.
14235
9ed79f5d
GM
142362000-01-09 Gerd Moellmann <gerd@gnu.org>
14237
14238 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
14239 of a real newline.
14240
b950abb1
GM
142412000-01-09 Stephen Eglen <stephen@gnu.org>
14242
a23c5037 14243 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
b950abb1
GM
14244 for .png files.
14245
3c708e98
GM
142462000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
14247
14248 * cus-edit.el (custom-hook-convert-widget): Fix comment.
14249
bf61662d
GM
142502000-01-09 Gerd Moellmann <gerd@gnu.org>
14251
f1d851ae
GM
14252 * progmodes/cperl-mode.el: Replace ^F with ^L.
14253
bf61662d 14254 * sendmail.el (toplevel): Provide `sendmail' when compiling
a23c5037 14255 before `require'ing rmail and mailalias to prevent infinite
bf61662d
GM
14256 recursion.
14257
c65d14ee
DL
142582000-01-08 Dave Love <fx@gnu.org>
14259
8cf87e9b
DL
14260 * emacs-lisp/backquote.el: Remove inappropriate customization
14261 (allowing custom.el to use backquote).
c65d14ee 14262
83de2ebc
DL
142632000-01-07 Dave Love <fx@gnu.org>
14264
14265 * add-log.el (add-log-debugging): Deleted.
14266 (add-change-log-entry): Treat a backup FILE-NAME as its parent
14267 file. Remove debugging code.
14268 (change-log-get-method-definition, change-log-name): Add doc.
14269 (change-log-sortable-date-at): New function.
14270 (change-log-merge): New command.
14271
14272 * time.el (display-time-string-forms): Make the Mail string active.
14273 (display-time-update): Provide help-echo for load average.
14274
14275 * bindings.el (make-mode-line-mouse2-map): New function.
14276 (mode-line-modified): Use it and simplify.
14277 (mode-line-mule-info): Provide help-echo info.
14278 (minor-mode-alist): Activate the strings.
14279 (make-mode-line-mouse-sensitive): Simplify for
14280 mode-line-buffer-identification.
14281
c1475eae
GM
142822000-01-07 Gerd Moellmann <gerd@gnu.org>
14283
14284 * play/pong.el: New file.
14285
83de2ebc
DL
142862000-01-06 Dave Love <fx@gnu.org>
14287
14288 * array.el: Assorted cleanups for compiler warnings, doc strings,
14289 `array-' prefix for symbols.
14290
142912000-01-05 Dave Love <fx@gnu.org>
14292
14293 * textmodes/outline.el (outline-mode-menu-bar-map): Add
14294 outline-headers-as-kill.
14295 (outline-mode): Define imenu-generic-expression.
14296 (outline-headers-as-kill): New command.
14297
14298 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
14299 from paragraph-start.
14300 (paragraph-indent-minor-mode): New command.
14301
14302 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
14303 M-C-e, M-C-h, C-j, C-xnd, TAB.
14304 (fortran-mode): Set beginning-of-defun, end-of-defun.
14305 (fortran-column-ruler): Simplify.
14306 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
14307 (fortran-with-subprogram-narrowing): Likewise.
14308 (fortran-indent-subprogram): Call mark-defun.
14309 (fortran-check-for-matching-do): Change narrowing.
14310
14311 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
14312 (cl-lucid-hash-tag): Delete.
14313 (cl-hash-table-p): Correct test for native table.
14314 (cl-hash-table-count): Use hash-table-count.
14315
14316 * browse-url.el (browse-url): Fix case of
14317 browse-url-browser-function being an alist.
14318
676ac023
CD
143192000-01-05 Carsten Dominik <cd@gnu.org>
14320
c1475eae
GM
14321 * textmodes/reftex-vars.el (reftex-parse-file-extension)
14322 (reftex-index-phrase-file-extension): New options.
676ac023
CD
14323
14324 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
c1475eae 14325 Use new option `reftex-index-phrase-file-extension'.
676ac023
CD
14326
14327 * textmodes/reftex.el (reftex-access-parse-file): Use new option
c1475eae 14328 `reftex-parse-file-extension'.
eb483e17 14329
88807984
DL
143302000-01-05 Dave Love <fx@gnu.org>
14331
83de2ebc 14332 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
88807984
DL
14333 (beginning-of-defun-raw): Use it.
14334 (end-of-defun): New variable.
14335 (end-of-defun): Use it.
14336 (check-parens): New command.
14337
1362aeb4
TTN
143382000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
14339
c1475eae
GM
14340 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
14341 (hs-show-block): Don't use `mapcar' when not accumulating.
1362aeb4 14342
7ddafb95
TTN
14343 Fix buglet in local variables initialization.
14344
7334aa99
AS
143452000-01-05 Andreas Schwab <schwab@suse.de>
14346
14347 * hscroll.el (hscroll): Doc fix.
14348
b12e24cd
CD
143492000-01-05 Carsten Dominik <cd@gnu.org>
14350
14351 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
14352 idlw-toolbar.
14353
14354 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
14355 file idlw-rinfo.el.
1362aeb4
TTN
14356 (idlwave-customize): load must read file idlw-shell.el.
14357 (idlwave-create-customize-menu): load must read file idlw-shell.el.
b12e24cd 14358
d6226972
CD
143592000-01-05 Carsten Dominik <dominik@astro.uva.nl>
14360
14361 * progmodes/idlw-shell.el: Also provide idlwave-shell
14362 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
14363 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
14364
14365 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
14366 both reftex-dcr and reftex-vcr.
1362aeb4 14367
d6226972
CD
14368 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
14369
6ddb893f 143702000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
894ee0a2
KH
14371
14372 * ps-print.el: PostScript code now is in separate files, doc fix.
14373 (ps-print-version): New version number (5.0.3).
14374 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
14375 local.
14376 (ps-spool-config): Initialization fix.
c1475eae
GM
14377 (ps-print-prologue-1, ps-print-prologue-2)
14378 (ps-print-duplex-feature): PostScript code moved to separated file.
894ee0a2
KH
14379 (ps-background-image): Little code reformating.
14380 (ps-begin-file, ps-begin-job): Fix code.
88807984 14381 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
894ee0a2
KH
14382 (ps-prologue-file): New fun.
14383
ae833aae
KH
143842000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14385
c1475eae 14386 * ps-vars.el: Eliminated.
ae833aae
KH
14387
14388 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
14389 `;;;###autoload'.
14390
14391 * ps-print.el: ps-vars eliminated, doc fix.
14392 (ps-print-version): New version number (5.0.2).
14393 (ps-spool-config): Initialization fix.
14394 (ps-print-customize): New fun.
14395
560a7bd2
GM
143962000-01-04 Gerd Moellmann <gerd@gnu.org>
14397
14398 * autorevert.el (auto-revert-mode): Return value of
14399 auto-revert-mode.
14400
f45dd0f4
DL
144012000-01-04 Dave Love <fx@gnu.org>
14402
fae2ac05
DL
14403 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
14404 menu items.
f45dd0f4 14405
61255981
DL
144062000-01-03 Dave Love <fx@gnu.org>
14407
88807984 14408 * elide-head.el (elide-head) [defgroup]: Add :version.
c282ca4d 14409
83de2ebc 14410 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
61255981
DL
14411 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
14412 `cl-hash-table-p', not `hash-table-p'.
14413 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
14414
c182a70f
EZ
144152000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14416
14417 * faces.el (face-read-integer, read-face-attribute)
14418 (color-defined-p, color-values): unspecified-{f,b}g are now
14419 strings.
14420
047f434a
GM
144212000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
14422
14423 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
14424 at comment end, and re-insert them after filling.
14425
bab531e2
EZ
144262000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14427
14428 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
f7002084
EZ
14429 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
14430 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
bab531e2 14431
d684c676
EZ
144322000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14433
14434 * term/x-win.el (xw-defined-colors): Call color-supported-p,
14435 the new name of face-color-supported-p.
14436
14437 * term/w32-win.el (xw-defined-colors): Likewise.
14438
0aad4805
EZ
144392000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14440
14441 * simple.el (completion-setup-function): Count completion-size
14442 from minibuffer-prompt-end, not from point-min.
14443
5fe1d139
EZ
144442000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
14445
14446 * faces.el (read-face-attribute, defined-colors, color-defined-p):
14447 Pass the frame to tty-color-* functions.
14448 (display-color-p, frame-set-background-mode): Pass the frame to
14449 tty-display-color-p.
14450
14451 * term/tty-colors.el (tty-defined-color-alist): Renamed from
14452 tty-color-alist.
14453 (tty-color-alist, tty-modify-color-alist): New functions.
14454 (tty-color-define, tty-color-clear, tty-color-approximate)
14455 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
14456 an optional parameter FRAME.
14457
162dec01
GM
144582000-01-01 Gerd Moellmann <gerd@gnu.org>
14459
27189709
GM
14460 * image.el (create-image, defimage): Don't assume image data is a
14461 string.
14462
162dec01
GM
14463 * image.el (defimage): Handle specifications containing :data
14464 instead of :file.
14465 (image-type-from-data): New function.
14466 (image-type-from-file-header): Use it.
14467 (create-image): Add parameter DATA-P.
1362aeb4 14468
bea56df7 14469See ChangeLog.8 for earlier changes.
25a6fab1
KH
14470
14471;; Local Variables:
e64c3a75 14472;; coding: iso-2022-7bit
25a6fab1 14473;; End: