(ansi-colors) <defgroup>: Fix :version.
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
7c6c3d8e
GM
12001-01-10 Dave Love <fx@gnu.org>
2
3 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
4
457b792c
GM
52001-01-10 Gerd Moellmann <gerd@gnu.org>
6
7 * simple.el (set-variable): Force a thorough redisplay for the
8 case that the variable has an effect on the display, like
9 `tab-width' has.
10
d2622d08
AS
112001-01-10 Andre Spiegel <spiegel@gnu.org>
12
13 * vc.el: Add documentation for backend interface.
14
ae4b5f4f
KH
152001-01-10 Kenichi Handa <handa@etl.go.jp>
16
e0844717
KH
17 * font-lock.el (c-font-lock-extra-types): Add "Lisp_Object".
18
ae4b5f4f
KH
19 * international/mule-conf.el (latin-extra-code-table): Set to t
20 for \223 and \224.
21
3184082b
KH
222001-01-09 Kenichi Handa <handa@etl.go.jp>
23
24 * international/mule-cmds.el (locale-language-names): Map "es" to
25 "Spanish" and "nl" to "Dutch".
26
732b9cdd
GM
272001-01-09 Gerd Moellmann <gerd@gnu.org>
28
1dfca644
GM
29 * bindings.el (global-map): Bind <home> to beginning-of-line,
30 <end> to end-of-line, C-<home> to beginning-of-buffer, and
31 C-<end> to end-of-buffer.
32
732b9cdd
GM
33 * language/european.el: Add Dutch and Spanish language info
34 to be able to use the appropriate tutorials.
35
362001-01-09 Alex Schroeder <alex@gnu.org>
37
38 * ansi-color.el (ansi-color-process-output): Use markers instead
39 of positions for start and end of region.
40 (ansi-color-apply-on-region): Rewrote code to make it more robust.
41 Previously, occasional mistakes happend when fontifying many
42 chunks of output (eg. ls --color=yes /dev). This happened
43 whenever an overlay was created up to the end of the region, which
44 coincided with the process-mark. New text would then be added
45 within that overlay instead of after it.
46 (ansi-color-make-extent): Overlays are created with the property
47 `modification-hooks' set to '(ansi-color-freeze-overlay).
48 (ansi-color-freeze-overlay): New function. When inserting text at
49 the end of the overlay, the overlay will resize.
50
512000-01-09 Alex Schroeder <alex@gnu.org>
52
53 * ansi-color.el (ansi-color-process-output): Doc change.
54 (ansi-color-unfontify-region): Doc change. No longer installed
55 automatically in font-lock-unfontify-region-function.
56 (ansi-color-apply): Doc change.
57 (ansi-color-apply-on-region): Use extents or overlays instead of
58 text-properties.
59 (ansi-color-make-extent): New function.
60 (ansi-color-set-extent-face): New function.
61
622000-01-09 Alex Schroeder <alex@gnu.org>
63
64 * ansi-color.el (ansi-color-process): Removed, Emacs and XEmacs
65 both use ansi-color-process-output, now.
66 (ansi-color-process-output): Doesn't return string anymore. It is
67 installed in comint-output-filter-functions for both Emacs and
68 XEmacs, now.
69 (ansi-color-unfontify-region): Simplified code removing variables
70 pos and start-ansi.
71 (ansi-color-apply): Put text-property ansi-color before putting
72 text-property face because ansi-color-unfontify-region is called
73 immediately after the call to put-text-property.
74 (ansi-color-context-region): Doc change.
75 (ansi-color-filter-region): Simplified code.
76 (ansi-color-apply-on-region): Changed start to start-marker, using
77 a marker explicitly. Put text-property ansi-color before putting
78 text-property face because ansi-color-unfontify-region is called
79 immediately after the call to put-text-property.
80
812000-01-09 Alex Schroeder <alex@gnu.org>
82
83 * ansi-color.el (ansi-color-faces-vector): Doc change.
84 (ansi-color-for-comint-mode): Changed :type property to choice.
85 (ansi-color-last-context): Removed.
86 (ansi-color-process-output): Don't use ansi-color-last-context, as
87 the main functions will store their context now.
88 (ansi-color-context): Doc change.
89 (ansi-color-filter-apply): Rewrote it based on ansi-color-apply.
90 Uses ansi-color-context such that repeated calls will strip
91 partial escape sequences, too.
92 (ansi-color-apply): Simplified code. Colorize end of string if
93 face is not null. Store context in new (FACE STRING) format, such
94 that repeated calls will strip partial escape sequences, too.
95 Append faces to face property using ansi-color-apply-sequence such
96 that cumulative mode actually works.
97 (ansi-color-context-region): New variable.
98 (ansi-color-filter-region): Rewrote it based on
99 ansi-color-apply-on-region. Uses ansi-color-context-region such
100 that repeated calls will strip partial escape sequences, too.
101 (ansi-color-apply-on-region): Simplified code. Colorize end of
102 region if face is not null. Store context in new (FACE POS)
103 format, such that repeated calls will strip partial escape
104 sequences, too. Append faces to face property using
105 ansi-color-apply-sequence such that cumulative mode actually
106 works.
107 (ansi-color-apply-sequence): New function.
108 (ansi-color-get-face): When the default face is added to the list
109 of faces, all previous settings are discarded and the list of
110 faces is set to '(default).
111
1122000-01-09 Alex Schroeder <alex@gnu.org>
113
114 * ansi-color.el (ansi-color-faces-vector): Use nil for the default
115 face, such that ansi-color-apply and ansi-color-apply-on-region
116 will do the right thing.
117 (ansi-color-apply): Do the right thing, ie. if ansi-color-get-face
118 returns nil, set the list of faces back to nil instead of
119 appending the result of ansi-color-get-face to the front of the
120 list.
121
1222000-01-09 Alex Schroeder <alex@gnu.org>
123
124 * ansi-color.el (ansi-color-for-comint-mode): Doc change.
125 (ansi-color-process): Doc change.
126 (ansi-color-last-context): New buffer-local variable.
127 (ansi-color-process-output): New function. It is automatically
128 added to comint-output-filter-functions if this is XEmacs.
129 (ansi-color-unfontify-region): New optional parameter for XEmacs
130 compatibility. Check wether font-lock-syntactic-keywords is
131 boundp before removing the syntax table text property, as XEmacs
132 doesn't have it.
133 (ansi-color-filter-region): Doc change.
134 (ansi-color-apply-on-region): Doc change.
135 (ansi-color-make-face): New function. Compatibility layer for
136 XEmacs. Return temporary faces instead of cons cells for XEmacs.
137 (ansi-color-make-color-map): Use ansi-color-make-face.
138 (ansi-color-get-face): Avoid face text property '(nil) as results
139 in an errow for XEmacs.
140
1412000-01-09 Alex Schroeder <alex@gnu.org>
142
143 * ansi-color.el (ansi-color-unfontify-region): New function. Uses
144 text-property ansi-color in order to preserve fontification by
145 ansi-color. When the package is loaded, a lambda expression is
146 put onto font-lock-mode-hook. This lambda expression will check
147 font-lock-unfontify-region-function and replace
148 font-lock-default-unfontify-region with
149 ansi-color-unfontify-region.
150 (ansi-color-apply): Add text-property ansi-color in addition to
151 text-property face.
152 (ansi-color-apply-on-region): Add text-property ansi-color in
153 addition to text-property face.
154 (save-buffer-state): Copy of the macro that is also used by
155 lazy-lock and font-lock.
156
157 (ansi-color-for-comint-mode): New option.
158 (ansi-color-for-comint-mode-on): Set ansi-color-for-comint-mode.
159 (ansi-color-for-comint-mode-off): Ditto.
160 (ansi-color-for-comint-mode-filter): Ditto.
161 (ansi-color-process): New function. Uses
162 ansi-color-for-comint-mode to decide what to do. This function is
163 added to comint-preoutput-filter-functions when the package is
164 loaded.
165
166 (ansi-color-for-shell-mode-set): Removed.
167 (ansi-color-for-shell-mode): Removed.
168
1692000-01-09 Alex Schroeder <alex@gnu.org>
170
171 * ansi-color.el (ansi-color-for-shell-mode-set): New function with
172 the lambda expression from the ansi-color-for-shell-mode :set
173 property. Additionally, modify shell-mode-hook to enable or
174 disable font-lock-mode for future shell buffers.
175 (ansi-color-for-shell-mode): The :set property calls
176 ansi-color-for-shell-mode-set instead of a lambda expression.
177
1782000-01-09 Alex Schroeder <alex@gnu.org>
179
180 * ansi-color.el (ansi-color-for-shell-mode): Doc change.
181 (ansi-color-context): New variable.
182 (ansi-color-apply): Save context between calls.
183
fb55ff10
EZ
1842001-01-09 Eli Zaretskii <eliz@is.elta.co.il>
185
29910493
EZ
186 * isearch.el (isearch, isearch-lazy-highlight-face): New
187 definitions for face colors and attributes.
188
fb55ff10
EZ
189 * wid-edit.el (widget-choose): Call display-popup-menus-p instead
190 of display-mouse-p.
191
134d6265
KH
1922001-01-09 Kenichi Handa <handa@etl.go.jp>
193
194 * international/mule.el (make-coding-system): If the coding system
195 accepts extra latin codes, register such codes as safe for the
196 coding system.
197
78b8eee8
RS
1982001-01-08 Richard M. Stallman <rms@caffeine.ai.mit.edu>
199
984c9f75
RS
200 * emacs-lisp/bytecomp.el (byte-compile-log-1): In non-batch case,
201 don't mention the file name or the date here, because they are
202 logged at the start of the file.
203
2042001-01-08 Richard M. Stallman <rms@gnu.org>
205
78b8eee8
RS
206 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
207 Change screen-width to frame-width.
208
1460e5d4
EZ
2092001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
210
211 * info.el (Info-search): Print the default as part of the prompt.
212
56f24bc1
AS
2132001-01-08 Andre Spiegel <spiegel@gnu.org>
214
215 * vc.el (vc-default-latest-on-branch-p): New function, replaces
216 constant implementations in backends.
217
218 * vc-cvs.el (vc-cvs-latest-on-branch-p): Removed.
219 (vc-cvs-checkout): Renamed arg WRITABLE to EDITABLE.
220
221 * vc-rcs.el (vc-rcs-checkout, vc-rcs-cancel-version): Renamed arg
222 WRITABLE to EDITABLE.
223
224 * vc-sccs.el (vc-sccs-latest-on-branch-p): Removed.
225 (vc-sccs-checkout, vc-sccs-cancel-version): Renamed arg WRITABLE
226 to EDITABLE.
227
b7812d30
EZ
2282001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
229
230 * emacs-lisp/copyright.el (copyright-current-year): Now a defvar.
231 (copyright, copyright-update): Compute the current year at run
232 time.
233
7e56ea04
GM
2342001-01-08 Gerd Moellmann <gerd@gnu.org>
235
236 * isearch.el (isearch-old-signal-hook): Removed.
237 (isearch-mode): Add isearch-done to kbd-macro-termination-hook
238 instead of setting signal-hook-function.
239 (isearch-done): Remove isearch-done from kbd-macro-termination-hook.
240
a758f97d
GM
2412001-01-08 Kevin Gallagher <kevingal@onramp.net>
242
243 * emulation/edt.el: Update to version 4.0. Provide support for
244 EDT scroll margins at top and bottom of the window. Provide an
245 emulation of the EDT SUBS command (bound to GOLD-Enter, by
246 default). Enhance edt-quit, bound to GOLD-q by default, to warn
247 user when file-related buffer modifications exist. Provide
248 support for running EDT Emulation in XEmacs. Provide customize
249 access to some user updatable variables. Add Commentary section
250 to file header. Fixed a few minor bugs and cleaned up some code.
251
252 * emulation/edt-mapper.el: Update to version 4.0. Provide support
253 for detecting a keypress that generates an ASCII key sequence.
254 (Previously, only a keypress that generates a vector was
255 recognized.) Embed Window Manager name into name of the generated
256 EDT Emulation initialization file since the initialization file is
257 Window Manager specific. Add Commentary section to file header.
258
30db89f9
EZ
2592001-01-07 Eli Zaretskii <eliz@is.elta.co.il>
260
4deb3ba9
EZ
261 * mail/sendmail.el (mail-mode): Doc fix.
262
30db89f9
EZ
263 * info.el (Info-goto-emacs-command-node): Doc fix.
264 (Info-goto-emacs-key-command-node): Doc fix.
265
c3f2772b
EZ
2662001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
267
8726e79b 268 * ediff-vers.el (noninteractive): Don't load generic-sc on MS-DOS
c3f2772b
EZ
269 systems without long file-name support.
270
0dac6924
AI
2712001-01-06 Andrew Innes <andrewi@gnu.org>
272
273 * makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.
274
4e6ef391
EZ
2752001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
276
380866a2
EZ
277 * isearch.el (isearch-lazy-highlight-remove-overlays): Doc fix.
278 (isearch-lazy-highlight-update): Doc fix.
279
148b5960
EZ
280 * ffap.el (ffap-bindings): Doc fix.
281
4e6ef391
EZ
282 * dired-x.el (dired-virtual-guess-dir): Doc fix.
283
4cb1bcc2
DL
2842001-01-05 Dave Love <fx@gnu.org>
285
286 * emacs-lisp/cl-seq.el (remove, remq): Remove.
287
3828218c
GM
2882001-01-05 Gerd Moellmann <gerd@gnu.org>
289
f1ade7d3
GM
290 * mouse-drag.el (mouse-drag-safe-scroll): Bind
291 scroll-preserve-screen-position to nil.
292
1f4139d5
GM
293 * isearch.el (isearch-old-signal-hook): New variable.
294 (isearch-mode): Set signal-hook-function to isearch-done.
295 (isearch-done): Restore old signal-hook-function.
296
3828218c
GM
297 * info.el (Info-fontify-node): Mark one more char as intangible.
298
3970013f
KH
2992000-01-05 Kenichi Handa <handa@etl.go.jp>
300
3828218c 301 * composite.el (compose-last-chars): New argument COMPONENTS. If
3970013f
KH
302 it is non-nil, compose preceding characters by compose-region with
303 COMPONENTS.
304
305 * international/quail.el (quail-input-string-to-events): New function.
306 (quail-input-method): Convert input string to events here.
307 (quail-start-translation): Return input string, not event list.
308 (quail-start-conversion): Likewise.
309
f3b05e99
GM
3102001-01-04 Gerd Moellmann <gerd@gnu.org>
311
2f5ded21
GM
312 * tooltip.el (tooltip-cancel-delayed-tip)
313 (tooltip-start-delayed-tip): Renamed from tooltip-disable-timeout
314 and tooltip-add-timeout.
315 (tooltip-show): Set border color from faces's foreground.
316 (tooltip-show-help-function): If called with the same help string
317 as last time, do nothing.
318 (tooltip-help-tips): Don't set tooltip-help-message to nil.
319
0f2ac578
GM
320 * startup.el (fancy-splash-screens): Don't bind show-help-function
321 to nil.
322
f3b05e99
GM
323 * tooltip.el (tooltip-frame-parameters): Remove colors.
324 (tooltip): New face
325 (tooltip-set-param): New function.
326 (tooltip-show): Set up color frame parameters from face `tooltip'.
327 Display the tooltip text in face `tooltip'.
328
8416e94a
DL
3292001-01-04 Dave Love <fx@gnu.org>
330
331 * whitespace.el (whitespace-global-mode): Fix typo.
332
333 * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete.
334
30db89f9
EZ
3352001-01-04 Eli Zaretskii <eliz@is.elta.co.il>
336
337 * help.el (help-for-help): Fix a typo in a doc string. From
338 kwzh@gnu.org (Karl Heuer).
339
b847eb8c
DL
3402001-01-03 Dave Love <fx@gnu.org>
341
342 * dired-x.el: Doc fixes. Maintainer change.
343 (dired-guess-shell-gnutar, dired-guess-shell-znew-switches): Fix
344 :type.
345 (dired-guess-shell-alist-default): Don't use xloadimage for PNG.
346 (dired-guess-shell-alist-user): Customize.
347 (dired-x-help-address): Set to bug-gnu-emacs.
348 (dired-x-maintainer, dired-x-file, dired-x-version): Deleted.
349 (dired-default-directory): Renamed from default-directory.
350
351 * hl-line.el (hl-line): Doc fix.
352
43c4b570
KF
3532001-01-03 Karl Fogel <kfogel@red-bean.com>
354
1bf6b1bf 355 * mail/mail-hist.el (mail-hist-text-too-long-p): Doc fix.
43c4b570 356
984c9f75 3572001-01-02 Richard M. Stallman <rms@gnu.org>
5297fb00
RS
358
359 * isearch.el (isearch-lazy-highlight-cleanup): Arg now says
360 to remove all the current alternative-match highlighting.
361 If nil, remove only what's outside the current window.
362 (isearch-lazy-highlight-remove-overlays): Take optional
363 region within which NOT to remove them.
364 (isearch-lazy-highlight-new-loop): Greatly simplified.
365 (isearch-lazy-highlight-update): Find all the other occurrences
366 visible in the window, in just one call.
367 (isearch-lazy-highlight-start): Now holds start of region to scan.
368 (isearch-lazy-highlight-end): Now holds end of region to scan.
369 (isearch-lazy-highlight-wrapped): Variable deleted.
370 (isearch-lazy-highlight-search): Function deleted.
371
13d6a61c
AI
3722000-01-02 Andrew Innes <andrewi@gnu.org>
373
374 * w32-fns.el (convert-standard-filename): Do length check on name
375 before aref.
376
064866e7
DL
3772001-01-02 Dave Love <fx@gnu.org>
378
b33e041b
DL
379 * progmodes/cperl-mode.el (cperl-invalid-face): Don't double-quote
380 value.
381 (cperl-init-faces): Allow cperl-invalid-face to be a normal face.
382
383 * ls-lisp.el (ls-lisp) <defgroup>: Add :version.
384
8166ffd5
DL
385 * net/browse-url.el (browse-url-filename-alist): Avoid backquote
386 read syntax.
387
064866e7
DL
388 * calendar/todo-mode.el (todo): Add :link, :version.
389 (todo-save-top-priorities): Remove autoload cookie.
390 (todo-add-category, todo-add-item-non-interactively)
391 (todo-insert-item, todo-mode, todo-cp, todo-show): Fix autoload
392 cookie.
393
6dde6abc
GM
3942001-01-02 Gerd Moellmann <gerd@gnu.org>
395
396 * comint.el (comint-input-history-ignore): New variable.
397 (comint-read-input-ring): Ignore entries matching
398 comint-input-history-ignore.
399
1a8a9daf
GM
4002001-01-02 Eric M. Ludlam <zappo@gnu.org>
401
402 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): New Variable.
403 (lm-copyright-mark): New function.
404 (lm-crack-copyright): New function.
405 (lm-verify): Check that the file has a copyright.
406 Check that the file is copyright Free Software Foundation.
407
9c92eb53
KH
4082000-12-30 Kenichi Handa <handa@etl.go.jp>
409
410 * international/mule-diag.el (print-fontset): Indent font name by
411 24 columns, not 25.
412
49172314
GM
4132000-12-29 Gerd Moellmann <gerd@gnu.org>
414
762a68ec
GM
415 * textmodes/flyspell.el (mail-mode-flyspell-verify): Spell-check
416 in Subject line.
417
49172314
GM
418 * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
419 Use mail-mode-hook instead of mail-setup-hook. Otherwise
420 continuing an interrupted message with C-u C-x m for instence,
421 winds up in Mail mode without abbrevs.
422
bd7a2e26
GM
4232000-12-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
424
425 * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
426 non-nil. Adding almost all customization variables on ps-setup. Doc
2f5ded21 427 fix.
bd7a2e26
GM
428 (ps-print-version): New version number (6.3.3).
429 (ps-end-with-control-d): Initialization fix.
430 (ps-lines-printed): New var.
431 (ps-skip-newline): New fun.
432 (ps-setup, ps-prologue-file, ps-begin-job, ps-begin-page)
433 (ps-next-line, ps-continue-line, ps-plot-region)
434 (ps-generate-postscript-with-faces, ps-end-job): Code fix.
435
2b3f28a4
KH
4362000-12-29 Kenichi Handa <handa@etl.go.jp>
437
438 * international/fontset.el (x-complement-fontset-spec): Resolve
439 ASCII font name so that the same family name is used for fonts
440 registered in x-font-name-charset-alist.
441 (create-fontset-from-fontset-spec): Adjusted for the above change.
442 The name of fontset alias should be a unresolved ASCII font name.
443
2ece9174
GM
4442000-12-28 Gerd Moellmann <gerd@gnu.org>
445
446 * simple.el (delete-key-deletes-forward-mode): Bind backspace
447 and delete in isearch-mode-map.
448
cbe3ad7a
RS
4492000-12-28 Richard M. Stallman <rms@gnu.org>
450
451 * dired-x.el (dired-guess-shell-alist-default):
452 Use xpdf instead of acroread.
453
a816f1c5
KH
4542000-12-28 Kenichi Handa <handa@etl.go.jp>
455
f086e73c
KH
456 * textmodes/artist.el (artist-butlast): Deleted.
457 (artist-ellipse-mirror-quadrant): Use butlast instead of
defac922 458 artist-butlast.
f086e73c 459
a816f1c5
KH
460 * subr.el (butlast, nbutlast): Moved from cl.el to here.
461
462 * emacs-lisp/cl.el (butlast, nbutlast): Moved to subr.el.
463
b202115b
EZ
4642000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
465
466 From Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>:
467
468 * ls-lisp.el: Better support for the Mac and MS-Windows.
469 (ls-lisp): New defgroup.
470 (ls-lisp-emulation, ls-lisp-ignore-case, ls-lisp-dirs-first)
471 (ls-lisp-verbosity, ls-lisp-use-insert-directory-program)
472 (ls-lisp-support-shell-wildcards): New defcustoms.
473 (ls-lisp-parse-symlink): New function.
474 (insert-directory): Code to convert switches to a list and set up
475 the wildcard argument copied from ls-lisp-insert-directory.
476 (ls-lisp-insert-directory): New argument TIME-INDEX. Add support
477 for -C and -R switches.
478 (ls-lisp-column-format): New function.
479 (ls-lisp-delete-matching, ls-lisp-handle-switches)
480 (ls-lisp-format-time): Add doc strings.
481 (ls-lisp-handle-switches): Handle -U, -S, -X, and -F switches.
482 Support ls-lisp-dirs-first.
483 (ls-lisp-classify, ls-lisp-extension): New functions.
484 (ls-lisp-format): Optionally support emulation of symlinks.
485 Support -i, -s, and -G switches.
486
6061fbf0
GM
4872000-12-27 Gerd Moellmann <gerd@gnu.org>
488
5e25feee
GM
489 * textmodes/texinfo.el (texinfo-mode): Set fill-column to 70.
490
6061fbf0
GM
491 * version.el (emacs-version): Print X scroll bar information.
492
493 * scroll-bar.el (toplevel): Check for x-toolkit-scroll-bars
494 instead of x-toolkit-scroll-bars-p.
495
496 * loadup.el (toplevel): Check for x-toolkit-scroll-bars instead
497 of x-toolkit-scroll-bars-p.
498
25050dab
EZ
4992000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
500
501 * ffap.el (ffap-bindings): Make interactive and add an autoload
502 cookie.
503 (ffap-bindings): Doc fix, to reflect the above change.
504
c1786874
KH
5052000-12-27 Kenichi Handa <handa@etl.go.jp>
506
507 * term.el (term-char-mode): Define all non-ascii self-inserting
508 characters to 'term-send-raw in term-raw-map.
509
7261ece3 5102000-12-25 Michael Kifer <kifer@cs.sunysb.edu>
6061fbf0
GM
511
512 * viper-init (viper-restore-cursor-type): Added condition-case
7261ece3
MK
513 guard.
514
6061fbf0 515 * ediff-init.el (ediff-quit-hook,ediff-suspend-hook): Changed
7261ece3 516 initialization; use add-hook.
6061fbf0 517 (ediff-file-remote-p): Use file-local-copy.
7261ece3 518
6061fbf0 519 * ediff-ptch.el (ediff-prompt-for-patch-buffer): Improved defaults.
7261ece3 520
6061fbf0
GM
521 * ediff.el (ediff-patch-buffer): Bug fix.
522 (ediff-revision): Allow selection of the file at the prompt.
7261ece3 523
83f40583
SM
5242000-12-23 Stefan Monnier <monnier@cs.yale.edu>
525
526 * subr.el (combine-run-hooks): Remove.
527
528 * emacs-lisp/edebug.el (define-minor-mode): Improve the spec
529 and remove the rogue second spec.
530
bdd6d4e8
GM
5312000-12-23 Gerd Moellmann <gerd@gnu.org>
532
533 * progmodes/compile.el (compilation-forget-errors): Fix indentation.
534
26736ce3
SM
5352000-12-22 Stefan Monnier <monnier@cs.yale.edu>
536
0e86b6b0
SM
537 * smerge-mode.el (smerge-basic-map): Use `=' rather than `d'.
538 Use minibuffer menu prompt for the `=' prefix.
539 (smerge-command-prefix): Change default to C-^.
6eabfb26 540 (smerge-mode): Don't assume font-lock doesn't move point.
0e86b6b0 541
26736ce3
SM
542 * skeleton.el (skeleton-internal-1): Make sure the first line of
543 the region is also re-indented.
d21584d6
SM
544 (skeleton-end-newline): New var.
545 (skeleton-end-hook): Use it.
26736ce3 546
95fa4fd7
MB
5472000-12-22 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
548
549 * comint.el (comint-password-prompt-regexp): Support CVS.
550
f060b834
GM
5512000-12-22 Gerd Moellmann <gerd@gnu.org>
552
856ff7a7
GM
553 * simple.el (delete-key-deletes-forward-mode): Simplify. Also
554 backspace key combinations, depending on
555 delete-key-deletes-forward.
556
557 * bindings.el ([C-backspace]): Bind C-backspace to kill-word.
558
f060b834
GM
559 * simple.el (delete-key-deletes-forward): Doc fix.
560
653558a1
GM
5612000-08-22 Emmanuel Briot <briot@gnat.com>
562
563 * xml.el (top level comment): Updated to reflect the fact that
26736ce3 564 white spaces are relevant in the XML file.
653558a1
GM
565 (xml-parse-file): Do not kill an existing Emacs buffer if the file
566 to parse was already edited. This allows for on-the-fly analysis
26736ce3 567 of XML files.
653558a1
GM
568 (xml-parse-tag): Check that the casing is the same in the start
569 tag and end tag, since XML is case-sensitive. Allows for spaces
570 in the end tag, after the name of the tag.
571 (xml-parse-attlist): Allow for the character '-' in the name of
572 attributes, as in the standard http-equiv attribute Do not save
26736ce3 573 the properties in the XML tree, since they are not relevant.
653558a1 574
3ad93d8d
SM
5752000-12-21 Stefan Monnier <monnier@cs.yale.edu>
576
577 * generic.el (generic-read-type): Undo last change, inline into
578 `generic-mode' and then remove.
579 (generic-mode): Inline generic-read-type.
580 (define-generic-mode): Push the symbol name rather than the symbol
581 onto generic-mode-list.
582
177f4e88
GM
5832000-12-21 Gerd Moellmann <gerd@gnu.org>
584
8e15274f
GM
585 * generic.el (generic-read-type): Build an alist for
586 completing-read as in 20.7.
587
588 * play/landmark.el (lm): Use interactive spec `P'.
589 (toplevel): Don't set debug-on-error.
590
177f4e88
GM
591 * server.el (server-switch-buffer): Choose a window on a visible
592 frame.
593
6ba384dc
GM
5942000-12-21 Dave Pearson <davep@davep.org>
595
596 * quickurl.el: Commentry change, I've moved my web site.
597
647a066c
GM
5982000-12-21 Vinicius Jose Latorre <vinicius@cpqd.com.br>
599
600 * ebnf2ps.el: Fix a problem with skip-chars-forward: it doesn't accept
601 ranges like \177-\237, but accepts the character sequence from \177 to
602 \237. Doc fix.
603 (ebnf-version): New version (3.4).
604 (ebnf-setup): Code fix.
605 (ebnf-range-regexp): New fun.
606 (ebnf-8-bit-chars): Const fix.
607
608 * ebnf-bnf.el: Fix the same problem as described on ebnf2ps.el log
609 entry. Doc fix.
610 (ebnf-bnf-lex): Code fix.
611 (ebnf-bnf-comment-chars): Const fix.
612
613 * ebnf-iso.el: Fix the same problem as described on ebnf2ps.el log
614 entry. Doc fix.
615 (ebnf-iso-comment-chars): Const fix.
616
617 * ebnf-otz.el: Doc fix.
618
619 * ebnf-yac.el: Fix the same problem as described on ebnf2ps.el log
620 entry. Doc fix.
621 (ebnf-yac-skip-code): Code fix.
622 (ebnf-yac-comment-chars): Const fix.
623
bc22fd18
EZ
6242000-12-21 Eli Zaretskii <eliz@is.elta.co.il>
625
626 * files.el (insert-directory-safely): New function.
834d23b2
EZ
627 (recover-file): Use it instead of insert-directory. From Markus
628 Rost <markus.rost@mathematik.uni-regensburg.de>
bc22fd18 629
587fc3f9
KH
6302000-12-21 Kenichi Handa <handa@etl.go.jp>
631
eeefcfde 632 * international/mule-cmds.el (select-safe-coding-system): Check
4d513a57 633 coding-category-list more rigidly. Improve help message.
eeefcfde 634
587fc3f9
KH
635 * dired.el (dired-move-to-filename-regexp): Fix previous change.
636
01860fb9
MB
6372000-12-21 Miles Bader <miles@gnu.org>
638
587fc3f9
KH
639 * mail/sendmail.el (mail-mode): Set `comment-start' to the yank
640 prefix.
01860fb9 641
3f9d67a6
KH
6422000-12-21 Kenichi Handa <handa@etl.go.jp>
643
9fd1c1f7
KH
644 * international/mule-diag.el (describe-char-after): Make *Help*
645 buffer inherit multibyteness of the current buffer.
646
3f9d67a6
KH
647 * international/mule.el (make-char): Docstring adjusted for the
648 change of make-char-internal.
649
c9669fac
SM
6502000-12-20 Stefan Monnier <monnier@cs.yale.edu>
651
652 * international/iso-cvt.el: Docstrings fix.
653
19594307
DL
6542000-12-20 Dave Love <fx@gnu.org>
655
656 * subr.el (eval-after-load): Doc fix.
657
b1a447b3
KH
6582000-12-20 Kenichi Handa <handa@etl.go.jp>
659
660 * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
661 for numbers.
662
09877d5d
MB
6632000-12-20 Miles Bader <miles@gnu.org>
664
665 * international/quail.el (quail-help): Resize the help window
666 again after it has all its contents. Remove unneeded progn.
667
71d4497a
GM
6682000-12-19 Gerd Moellmann <gerd@gnu.org>
669
670 * pcmpl-linux.el: Fix copy/paste error.
671
741e56a0
AI
6722000-12-19 Andrew Innes <andrewi@gnu.org>
673
674 * simple.el (delete-key-deletes-forward-mode): Fix typo in
675 docstring.
676
cc24d91c
CD
6772000-12-19 Carsten Dominik <dominik@strw.leidenuniv.nl>
678
ba4c05aa
CD
679 * progmodes/idlw-rinfo.el: Fixed copyright notice.
680
681 * progmodes/idlw-toolbar.el: Fixed copyright notice.
682
683 * progmodes/idlw-shell.el: Fixed copyright notice.
684
685 * progmodes/idlwave.el: Fixed copyright notice.
686
71d4497a 687 * textmodes/reftex-dcr.el (reftex-view-crossref): Added SPACE and
cc24d91c
CD
688 TAB as key separators.
689
524c8caf
GM
6902000-12-19 Alex Schroeder <alex@gnu.org>
691
692 * sql.el (sql-sybase-options): New option.
693 (sql-sybase): Use it. Add sql-database to the list of parameters
694 provided for login. The options -w 2048 -n are not used any more.
695 (sql-postgres-options): Changed default from "--pset" to "-P".
696 (sql-mysql-options): Doc change.
697 (sql-stop): Doc change.
698
b5fa513d
KH
6992000-12-19 Kenichi Handa <handa@etl.go.jp>
700
701 * international/quail.el (quail-input-method): Always hide
702 the guidance buffer on exiting.
703
91c9e6ce
GM
7042000-12-18 Gerd Moellmann <gerd@gnu.org>
705
c6da4eb4
GM
706 * tooltip.el (tooltip-mode): Signal an error if x-show-tip
707 isn't fboundp.
708
3d2a0e0b
GM
709 * server.el (server-buffer-done): Bury the buffer before
710 killing it.
711
91c9e6ce
GM
712 * faces.el (face-spec-set): Interpret a nil in specs for
713 foreground and background colors as `unspecified', for
714 compatibility with 20.x.
715
40fa0008
DL
7162000-12-18 Dave Love <fx@gnu.org>
717
22adbe54
DL
718 * simple.el (mail-user-agent): Doc fix.
719 (input-mode-8-bit): Removed.
720
721 * international/mule.el (set-keyboard-coding-system): Doc fix.
722 (keyboard-coding-system): New option.
723
40fa0008
DL
724 * mail/sendmail.el (send-mail-function): Customize.
725
6f4745e2
EZ
7262000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
727
728 * international/codepage.el (cp866-decode-table): New table.
729
82b90229
GM
7302000-12-18 Gerd Moellmann <gerd@gnu.org>
731
732 * version.el (emacs-version): Remove `%a' from the time format
733 because the weekday doesn't fit well into each locale.
734
5a047002
MB
7352000-12-18 Miles Bader <miles@gnu.org>
736
7f49aa07
MB
737 * image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
738
5a047002
MB
739 * textmodes/artist.el (artist-replace-chars, artist-replace-char):
740 Check that emacs-major-version is `=' to 20, not `>='.
741 (artist-replace-chars): Use `make-string' instead of a loop.
742
22ea2607
EZ
7432000-12-17 Stefan Monnier <monnier@cs.yale.edu>
744
745 * pcvs.el (cvs-diff-backup-extractor): Return full-path for file.
746 (cvs-execute-single-file): Don't change directory.
747 Patch from Per Cederqvist.
748
6c825f8e
EZ
7492000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
750
751 * textmodes/ispell.el (check-ispell-version): If
752 `ispell-program-name' is "aspell", pass it the -v switch instead
753 of -vv.
754
8ff06845
KH
7552000-12-16 Kenichi Handa <handa@etl.go.jp>
756
af4bb4c8
KH
757 * international/mule-diag.el (mule-diag): Insert information about
758 configure options, multibyte awareness, language env.
759
8ff06845
KH
760 * international/ja-dic-cnv.el (skkdic-get-candidate-list): Fix the
761 regexp to search for candidates.
762
b24e84ab
EZ
7632000-12-15 Eli Zaretskii <eliz@is.elta.co.il>
764
765 * info.el (Info-forward-node): If the node has an
766 Info-header-line, widen the buffer before searching for "next:"
767 and "up:" pointers, and set the search limit to stay in the
768 current node.
769
7981d89f
MB
7702000-12-16 Miles Bader <miles@gnu.org>
771
772 * simple.el (delete-trailing-whitespace): Remove extraneous let.
773
88ee7917
MB
7742000-12-15 Miles Bader <miles@gnu.org>
775
776 * comint.el (comint-send-string, comint-send-region): Also accept
777 a buffer, buffer-name, or nil for PROCESS, for compatibility with
778 process-send-string/region.
779
0c28d842
GM
7802000-12-15 Gerd Moellmann <gerd@gnu.org>
781
4ea7fdca
GM
782 * isearch.el (isearch-lazy-highlight-max): New user-option.
783 (isearch-lazy-highlight-update): Don't highlight more than
784 isearch-lazy-highlight-max matches.
785
0c28d842
GM
786 * mail/mh-utils.el (mh-find-path): Set read-mail-command.
787
984c9f75 7882000-12-15 Richard M. Stallman <rms@gnu.org>
3ffa545b 789
8062e53a
GM
790 * sort.el (sort-columns): Fix error message.
791
3ffa545b
GM
792 * dabbrev.el (dabbrev--last-case-pattern): Value is now
793 `upcase' or `downcase' or nil.
794 (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern.
795 Pass new record-case-pattern arg to dabbrev--substitute-expansion.
796 (dabbrev--substitute-expansion): New arg record-case-pattern.
797 If it is non-nil, set dabbrev--last-case-pattern.
798 If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION.
799
800 * dabbrev.el (dabbrev--find-expansion): Remove extra nreverse.
801
c2d7f289
MB
8022000-12-15 Miles Bader <miles@gnu.org>
803
b6348438
MB
804 * paths.el (Info-default-directory-list): Don't delete
805 configure-info-directory from the list of standard info
806 directories when appending it to the end -- their order is
807 important.
808
f9056dd9
MB
809 * faces.el (read-face-attribute): If there's no entry for the
810 user's input in VALID, just use it as-is (this will often result
811 in an error, but it may be OK for e.g. colors using hexadecimal
812 notation, and at least will yield a better error message).
813
c2d7f289
MB
814 * window.el (mode-line-window-height-fudge): Function removed.
815 (height-affecting-face-attributes, mode-line-window-height-fudge):
816 Variables removed.
817 * textmodes/ispell.el (ispell-overlay-window): Ensure that the new
818 window is really the right size. Use vertical-motion
819 rather than forward-line.
820 (ispell-help): Don't use ispell-mode-line-window-height-fudge.
821 (ispell-command-loop, ispell-show-choices): Use the variable
822 ispell-choices-win-default-height, rather than the function.
823 (ispell-choices-win-default-height): Function removed.
824 (ispell-mode-line-window-height-fudge): Function removed.
825
8f530b95
SM
8262000-12-14 Stefan Monnier <monnier@cs.yale.edu>
827
828 * add-log.el (add-change-log-entry): Only expand-file-name if non-nil.
829
6d435deb
EZ
8302000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
831
4dddb0b7
EZ
832 * paths.el (Info-default-directory-list): If
833 configure-info-directory is not one of the standard directories,
834 put it first in the list; otherwise put it last. Doc string
835 changed accordingly.
836
837 * info.el (Info-directory-list): Change doc string to reflect the
838 change in Info-default-directory-list.
839
6d435deb
EZ
840 * simple.el (delete-key-deletes-forward-mode): Treat ms-dos and
841 windows-nt as windowed environments, even under -nw.
842
843 * startup.el (command-line): Don't call x-backspace-delete-keys-p
844 if not fboundp. Switch delete-forward mode for the <delete> key
845 on all PC platforms, even under -nw.
846
847 * term/internal.el ([M-delete]): Remap to M-d.
848
9d7d9263
GM
8492000-12-14 Gerd Moellmann <gerd@gnu.org>
850
851 * emacs-lisp/lisp-mnt.el: Change maintainer to FSF.
852
7cf0153a
EZ
8532000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
854
855 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
856
5e5b3d41
GM
8572000-12-14 Gerd Moellmann <gerd@gnu.org>
858
5f368d29
GM
859 * startup.el (command-line): Call delete-key-deletes-forward-mode,
860 if appropriate.
861
862 * simple.el (delete-key-deletes-forward): New user-option.
863 (delete-key-deletes-forward-mode): New function.
864
9d7d9263 865 * bindings.el: Bind `delete' to backward-delete-char.
5f368d29 866
5e5b3d41
GM
867 * emacs-lisp/easymenu.el (easy-menu-current-active-maps): Test
868 if symbol is bound before getting its value.
869
870 * tooltip.el (tooltip-show): If an error is signaled in
871 x-show-tip, display that error, and display the help in the
872 echo area.
c2d7f289 873
191b83b6
KH
8742000-12-14 Kenichi Handa <handa@etl.go.jp>
875
876 * international/ja-dic-cnv.el (skkdic-set-okuri-nasi): Show
877 "... entries" messages for every 10000 entries, not 10.
878
6192b604
KF
8792000-12-13 Karl Fogel <kfogel@red-bean.com>
880
881 * bookmark.el: Provide a generic exit hook, as suggested by
882 Ovidiu Predescu <ovidiu@cup.hp.com>:
a924cf63
EZ
883 (bookmark-exit-hook): New var.
884 (bookmark-exit-hook-internal): New func, replaces
6192b604
KF
885 old raw lambda form in `kill-emacs-hook', and runs new
886 `bookmark-exit-hooks'. No longer tests for the bookmark feature,
887 as logically that feature must have been provided if this function
888 is running.
889 Removed ;;;###autoload before the `add-hook' call.
890
5edf6b55
SM
8912000-12-13 Stefan Monnier <monnier@cs.yale.edu>
892
893 * emacs-lisp/easymenu.el (easy-menu-define): Setup indentation.
894 (easy-menu-current-active-maps): New function.
895 (easy-menu-get-map): Use it.
896 Make a proper menu entry when creating a new keymap.
897
16b5e8e6
KH
8982000-12-13 Kenichi Handa <handa@etl.go.jp>
899
d49fc4eb
KH
900 * international/characters.el: Fix cases and syntaxes for
901 mule-unicode-0100-24ff.
902
3b53d876
KH
903 * dired.el (dired-move-to-filename-regexp): Fixed for the case
904 that a Japanese character is not appended after day and year.
905
16b5e8e6
KH
906 * info.el (Info-suffix-list): Change format for a command that
907 requires arguments.
908 (info-insert-file-contents): Adjusted for the above change.
909
1df1c518
AS
9102000-12-12 Andreas Schwab <schwab@suse.de>
911
912 * tar-mode.el (tar-extract): Base the name of the subfile buffer
913 on the name of the tar buffer. Verify that the existing buffer is
914 visiting the same subfile.
915
a7a07b98
DL
9162000-12-12 Dave Love <fx@gnu.org>
917
918 * subdirs.el: Add obsolete.
919
4fdbd809
GM
9202000-12-12 Gerd Moellmann <gerd@gnu.org>
921
bfdb75ee
GM
922 * mail/rmailsum.el (rmail-summary-expunge)
923 (rmail-summary-expunge-and-save): Use rmail-expunge-confirmed
924 instead of rmail-confirm-expunge.
925
4fdbd809
GM
926 * replace.el (perform-replace): Don't use an empty match adjacent
927 to a non-empty match when computing the next match before the
928 replacement is performed.
929
e9a59cad
GM
9302000-12-12 Milan Zamazal <pdm@freesoft.cz>
931
932 * progmodes/glasses.el: Use `define-minor-mode' for the minor mode
933 definition (patch by Stefan Monnier).
934 (glasses-mode): Use jit-lock instead of `after-change-functions'
935 (patch by Stefan Monnier).
936
c2def7a0
MB
9372000-12-12 Miles Bader <miles@gnu.org>
938
939 * info.el (Info-last-preorder): Don't barf on nodes without a prev.
940 (Info-scroll-down): Respect `Info-scroll-prefer-subnodes'.
941
591b63b4
AC
9422000-12-12 Andrew Choi <akochoi@i-cable.com>
943
944 * term/mac-win.el: Remove load for ls-lisp.
945
a924cf63 946 * loadup.el: Load ls-lisp for system-type `macos'.
591b63b4 947
5ff4ba3d
MB
9482000-12-12 Miles Bader <miles@gnu.org>
949
950 * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
951 Respect field end too.
952 (just-one-space): Respect fields as `delete-horizontal-space'.
953 (newline-and-indent, reindent-then-newline-and-indent): Use
954 `delete-horizontal-space'.
955
d0c679bc
SM
9562000-12-11 Stefan Monnier <monnier@cs.yale.edu>
957
adf9c994
SM
958 * newcomment.el (comment-indent-new-line): Use delete-horizontal-space
959 (so as to obey the field property in the minibuffer).
960
4b0cd42d
SM
961 * obsolete/c-mode.el: Moved from lisp/progmodes.
962 * obsolete/auto-show.el: Moved from lisp.
963 * obsolete/ooutline.el: Moved from lisp/textmodes.
d0c679bc 964
89f85863
CD
9652000-12-11 Carsten Dominik <dominik@strw.leidenuniv.nl>
966
967 * progmodes/idlwave.el: Updated to IDLWAVE version 4.7. Too many
968 changes to list them here.
969
970 * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7. Too
971 many changes to list them here.
972
973 * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.7. Too
974 many changes to list them here.
975
976 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.7.
977
3e0d35ce
GM
9782000-12-11 Gerd Moellmann <gerd@gnu.org>
979
d990421f
GM
980 * simple.el (kill-new): Don't try to setcar kill-ring if it is
981 nil.
982
fda514f7
GM
983 * cus-edit.el (custom-save-variables, custom-save-faces):
984 Comment fix.
985
3e0d35ce
GM
986 * hscroll.el: Moved to `obsolete' subdir.
987
ff904dd6
MB
9882000-12-11 Miles Bader <miles@gnu.org>
989
990 * window.el (window-text-height): Function removed (now in C).
991
fb97d87f
SM
9922000-12-10 Stefan Monnier <monnier@cs.yale.edu>
993
994 * log-edit.el (log-edit-parent-buffer): New var.
995 (log-edit): Set it. Add BUFFER argument.
996 (log-edit-done): Use char-before.
997 Don't bother checking validity of vc-comment-ring.
998 Only bury the buffer if log-edit popped it up.
999
1000 * pcvs.el: Update references to CVS-Edit (now Log-Edit).
1001 (cvs-mode-diff-help): Remove.
1002 (cvs-mode-commit): Use the new `log-edit' BUFFER argument.
802cf66c 1003 (cvs-mode-marked): Set up the default for CMD manually.
fb97d87f
SM
1004
1005 * pcvs-defs.el (cvs-mode-diff-map): Use minibuffer menu prompt.
1006 Remove binding for ? now made unnecessary.
1007
7de77417
CD
10082000-12-10 Carsten Dominik <dominik@strw.leidenuniv.nl>
1009
1010 * textmodes/reftex.el (reftex-scanning-info-available-p): New
1011 function
1012 (reftex-TeX-master-file): Check for `tex-main-file' early enough.
1013
1014 * textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug
1015 when master file is not open.
1016
4efa209f
SM
10172000-12-09 Stefan Monnier <monnier@cs.yale.edu>
1018
1019 * progmodes/ada-stmt.el: Update `maintainer'.
1020
0a8052bd
GM
10212000-12-09 Stephen Gildea <gildea@alum.mit.edu>
1022
1023 * time-stamp.el (time-stamp-old-format-warn): Reorder custom
1024 choices to match documentation string.
1025
a12167c5
MB
10262000-12-09 Miles Bader <miles@gnu.org>
1027
2161605d
MB
1028 * minibuf-eldef.el: New file.
1029
a12167c5
MB
1030 * window.el (fit-window-to-buffer): Don't pass last argument to
1031 pos-visible-in-window-p, now that its meaning is inverted.
1032
9ea8de1b
EZ
10332000-12-08 Eli Zaretskii <eliz@is.elta.co.il>
1034
1035 * image.el (create-image): Doc fix; spotted by Per Cederqvist
1036 <ceder@lysator.liu.se>.
1037
5002ddbb
SM
10382000-12-08 Stefan Monnier <monnier@cs.yale.edu>
1039
b6114d80
SM
1040 * autoinsert.el (auto-insert-alist): Add missing final \n.
1041
ee8d23ee
SM
1042 * pcvs-defs.el (cvs-menu): Move. Make submenu for diff commands.
1043 (cvs-menu-map): Remove.
1044 * pcvs.el (cvs-menu): Use `cvs-menu' rather than `cvs-menu-map'.
1045 (cvs-mode-quit): Turn it back into a plain function.
1046
5002ddbb 1047 * textmodes/texnfo-upd.el (texinfo-chapter-level-regexp)
ee8d23ee 1048 (texinfo-filter): Remove (move to texinfo.el).
5002ddbb
SM
1049
1050 * textmodes/texinfo.el: Move the (require 'cl) to the front of the
1051 file where it's more visible.
1052 (texinfo-filter, texinfo-chapter-level-regexp): New variables
1053 moved from texnfo-upd.el (for AUCTeX's compatibility, originally).
1054 (texinfo-mode): Use texinfo-chapter-level-regexp for page-delimiter.
1055 (texinfo-inside-macro-p): Only catch `scan-error's.
1056 (texinfo-inside-env-p): Make better use of the match info.
1057 (texinfo-insert-quote): Collapse calls to `texinfo-inside-macro-p'.
1058 (texinfo-insert-@end): Slight re-organization.
1059 Also remove useless `looking-at' call.
1060
30cd075d
AI
10612000-12-08 Andrew Innes <andrewi@gnu.org>
1062
1063 * w32-fns.el: Add clipboard support from term/w32-win.el, so it is
1064 accessible in -nw mode.
1065
1066 * term/w32-win.el: Remove stuff about selection timeout, which is
1067 irrelevant on Windows. Move clipboard support to w32-fns.el, so
1068 it is accessible in -nw mode.
1069
01b91009
DL
10702000-12-08 Dave Love <fx@gnu.org>
1071
1072 * emacs-lisp/lisp-mode.el (lisp-mode): Set
1073 font-lock-keywords-case-fold-search.
1074
842b2a94
GM
10752000-12-08 Gerd Moellmann <gerd@gnu.org>
1076
1077 * textmodes/ispell.el (ispell): Doc fix.
1078
f9d5f611
KH
10792000-12-08 Kenichi Handa <handa@etl.go.jp>
1080
1081 * international/quail.el (quail-insert-decode-map): Check the
1082 frame width of a window displaying the current buffer, not that of
1083 the selected frame.
1084 (quail-help): Make sure that the help buffer has window before
1085 inserting text in it.
1086
e04d21aa
SS
10872000-12-07 Sam Steingold <sds@gnu.org>
1088
1089 * loadup.el: Load emacs-lisp/backquote instead of autoloading.
1090 Backquote is used in isearch.el, so autoloading saves nothing.
1091
fc3e23a4
EZ
10922000-12-07 Eli Zaretskii <eliz@is.elta.co.il>
1093
137cad7c
EZ
1094 * startup.el (normal-top-level-add-subdirs-to-load-path): Ignore
1095 the CVS and RCS subdirectories case-insensitively.
1096
fc3e23a4
EZ
1097 * dired.el (dired-insert-directory): If file-system-info is
1098 fboundp, call it instead of invoking dired-free-space-program.
1099
796ecd10
GM
11002000-12-07 Gerd Moellmann <gerd@gnu.org>
1101
0f5f7c3e
GM
1102 * server.el (server-visit-files): Push files on file-name-history.
1103
3764ba49
GM
1104 * progmodes/cc-langs.el: Update copyright.
1105
8e7931da
GM
1106 * progmodes/idlw-shell.el, progmodes/idlwave.el: Update copyright.
1107
ae0d7485 1108 * bindings.el (mode-line-mode-menu): Add glasses-mode.
e04d21aa 1109
796ecd10
GM
1110 * bindings.el (mode-line-mode-menu): Reverse the order
1111 of define-keys so that the menu appears in alphabetical order.
1112
ae0d7485
GM
11132000-12-07 Milan Zamazal <pdm@freesoft.cz>
1114
1115 * progmodes/glasses.el (glasses-mode): Update mode line at the end
1116 of the function.
1117
e2849090
DL
11182000-12-07 Dave Love <fx@gnu.org>
1119
1120 * jka-compr.el (jka-compr-compression-info-list): Fix :type.
1121
1122 * facemenu.el (facemenu-unlisted-faces): Fix value.
1123
5c7f629c
SM
11242000-12-07 Stefan Monnier <monnier@cs.yale.edu>
1125
1126 * font-lock.el (font-lock-default-fontify-region):
1127 Include the terminating \n (off-by-one error).
1128 (font-lock-set-defaults): Use dolist.
1129
1130 * derived.el (define-derived-mode): Don't use combine-run-hooks.
1131
73481ae3
KH
11322000-12-07 Kenichi Handa <handa@etl.go.jp>
1133
ffbaa122
KH
1134 * international/mule-cmds.el (describe-language-environment): Fix
1135 for the case that an input method title is not string but a list.
1136
73481ae3
KH
1137 * ps-bdf.el (bdf-read-font-info): Modify the kludgy code for fonts
1138 of wrong SIZE record.
1139
e2896b22
DL
11402000-12-06 Dave Love <fx@gnu.org>
1141
67292061
DL
1142 * newcomment.el (comment-region, comment-dwim): Doc fix.
1143
1144 * textmodes/texinfo.el: Require tex-mode when compiling.
1145 (texinfo-update-node): Doc fix.
1146 (texinfo-imenu-generic-expression): Add @anchor.
1147 (texinfo-font-lock-keywords): Add @uref.
1148 (texinfo-inside-macro-p): Don't use ignore-errors.
1149 (texinfo-insert-quote): Match more contexts.
1150
e76938e7
DL
1151 * international/mule.el (decode-char, encode-char): Doc fix.
1152 (auto-coding-alist): Customize.
1153
1154 * files.el (load-file): Fix change of 2000-03-12.
1155
e2896b22
DL
1156 * wid-edit.el (widget-text-keymap): Doc fix.
1157
6610f4b2
AI
11582000-12-06 Andrew Innes <andrewi@gnu.org>
1159
1160 * makefile.w32-in (lisp): Set to an absolute directory, namely
1161 $(CURDIR).
1162
9e3366e4
EZ
11632000-12-06 Eli Zaretskii <eliz@is.elta.co.il>
1164
1165 * emacs-lisp/autoload.el (update-file-autoloads): Use raw-text to
1166 read generated-autoload-file, and set buffer-file-coding-system to
1167 raw-text-unix after reading the file.
1168
1169 * international/mule-conf.el (file-coding-system-alist): Use
1170 raw-text for reading loaddefs.el and raw-text-unix for writing
1171 it.
1172
d94d636f
GM
11732000-12-06 Gerd Moellmann <gerd@gnu.org>
1174
384333ee
GM
1175 * replace.el (occur): Make line-number-width 1 smaller for the
1176 colon following the line number.
1177
347d0813
GM
1178 * startup.el (fancy-splash-text, command-line-1): Use
1179 `File' for the menu name instead of `Files'.
e04d21aa 1180
d4b72d58
GM
1181 * tmm.el: Update copyright.
1182
d94d636f
GM
1183 * cus-start.el: Add entry for even-window-heights.
1184
6e424019
MB
11852000-12-06 Miles Bader <miles@gnu.org>
1186
1187 * faces.el (frame-set-background-mode): Avoid stomping on
1188 locally modified faces.
1189
e6477b58
KH
11902000-12-06 Kenichi Handa <handa@etl.go.jp>
1191
1192 * international/fontset.el: Correct the font registries for
1193 japanese-jisx0213-1 and japanese-jisx0213-2.
1194
21999ab9
GM
11952000-12-05 Gerd Moellmann <gerd@gnu.org>
1196
57d6e381
GM
1197 * textmodes/reftex-toc.el (reftex-toc-menu): Fix typo.
1198
21999ab9
GM
1199 * iswitchb.el: Update customization commentary.
1200
7422819c
GM
12012000-12-05 Rob Riepel <riepel@Stanford.EDU>
1202
1203 * emulation/tpu-edt.el (tpu-help): Fixed previous screen logic.
1204 (tpu-search-highlight): Fixed comparison of overlay end positions.
1205 (tpu-trim-line-ends): Implemented trimming logic locally.
1206
1207 * emulation/tpu-extras.el (tpu-write-file-hook)
1208 (tpu-set-cursor-bound): Replaced picture-clean with
1209 tpu-trim-line-ends.
1210
73daff18
KH
12112000-12-05 Kenichi Handa <handa@etl.go.jp>
1212
1213 * language/chinese.el (chinese-iso-8bit): Change mime-charset name
1214 to cn-gb.
1215 (cn-gb, gb2312): New aliases for chinese-iso-8bit.
1216
6a4cd002
DL
12172000-12-04 Dave Love <fx@gnu.org>
1218
1219 * emacs-lisp/cl-indent.el: Remove erroneous spec for condition-case.
1220
6452929e
GM
12212000-12-04 Gerd Moellmann <gerd@gnu.org>
1222
e04d21aa 1223 * mail/rmailsum.el (rmail-summary-expunge)
6452929e
GM
1224 (rmail-summary-expunge-and-save): Ask for confirmation with
1225 rmail-expunge-confirmed.
1226
1227 * mail/rmail.el (rmail-expunge-confirmed): New function.
1228 (rmail-expunge): Use it.
1229
0c68ce6f
GM
1230 * progmodes/etags.el (tag-partial-file-name-match-p): New function.
1231 (etags-recognize-tags-table, find-tag-in-order): New
1232 functionality: interpret file names as tags.
e04d21aa 1233
7a53d8c8
EZ
12342000-12-04 Eli Zaretskii <eliz@is.elta.co.il>
1235
1236 * info.el (Info-scroll-prefer-subnodes): New defcustom.
1237 (Info-scroll-up): If Info-scroll-prefer-subnodes is nil, don't
1238 visit the first subnode until the bottom of the current node is
1239 visible.
1240
caa15ef7
GM
12412000-12-04 Gerd Moellmann <gerd@gnu.org>
1242
1243 * format.el (format-decode): Don't change buffer's undo list.
1244
e225faa7
KH
12452000-12-04 Kenichi Handa <handa@etl.go.jp>
1246
1247 * faces.el (face-font-registry-alternatives): Add entries for CJK
1248 fonts. Doc-string adjusted for the actual usage of this data.
1249
1250 * international/fontset.el: Change the font registries for CJK
1251 fonts in the default fontset. Don't append '*' to registries.
1252
8b262a65
SM
12532000-12-03 Stefan Monnier <monnier@cs.yale.edu>
1254
e04d21aa 1255 * emacs-lisp/easy-mmode.el (define-derived-mode)
8b262a65
SM
1256 (easy-mmode-derived-mode-p): Remove (moved to derived.el).
1257
1258 * derived.el (define-derived-mode): Revived, moved from easy-mmode.el.
1259 (derived-mode-p): New function.
1260 (derived-mode-make-docstring): Add `docstring' argument.
1261 Use it if available and complete it if necessary.
1262
33c4460b
AS
12632000-12-03 Andreas Schwab <schwab@suse.de>
1264
1265 * type-break.el (type-break): Don't make parent of itself.
1266
5c9b3fac
MB
12672000-12-03 Miles Bader <miles@gnu.org>
1268
1269 * simple.el (delete-trailing-whitespace): Don't delete newlines too.
1270
27ce741e
SM
12712000-12-02 Stefan Monnier <monnier@cs.yale.edu>
1272
07c16ec4
SM
1273 * textmodes/tex-mode.el (tex-start-shell): Obey shell-file-name.
1274 (tex-main-file, tex-file): Simplify.
1275 (tex-generate-zap-file-name): Use subst-char-in-string.
1276 (tex-strip-dots): Remove.
1277
c19cc275
SM
1278 * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
1279
27ce741e
SM
1280 * textmodes/ispell.el (check-ispell-version): Don't use match-beginning
1281 to check if the match succeeded.
1282
285991dc
GM
12832000-12-02 Gerd Moellmann <gerd@gnu.org>
1284
1285 * startup.el (use-fancy-splash-screens-p): New function.
1286 (command-line-1): Use it to determine whether or not to use
1287 a fancy splash screen.
1288
52dca1b2
AS
12892000-12-02 Andreas Schwab <schwab@suse.de>
1290
1291 * emacs-lisp/eldoc.el (eldoc): Don't make parent of itself.
1292
d3e7e7cf
EZ
12932000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
1294
2dce2360
EZ
1295 * international/mule.el (make-char): Fix last change.
1296
9768eaa7
EZ
1297 * textmode/texinfo.el (texinfo-open-quote, texinfo-close-quote):
1298 New defcustoms.
1299 (texinfo-insert-quote): Don't call tex-insert-quote, to avoid
1300 autoloading tex-mode; instead, do the same manually. Use
1301 texinfo-open-quote and texinfo-close-quote. Insert literal quote
1302 with numeric argument. Docstring fix.
1303 (toplevel): Require cl when compiling.
e04d21aa 1304
285991dc 1305 * international/mule.el (make-char): Doc fix.
d3e7e7cf 1306
0dd5e255
JR
13072000-12-02 Jason Rumney <jasonr@gnu.org>
1308
1309 * term/w32-win.el (x-select-enable-clipboard): Customize (as per
1310 the Emacs Lisp manual)
1311
fbb87147
EZ
13122000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
1313
5cbb3e93
EZ
1314 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
1315
fbb87147
EZ
1316 * term/pc-win.el (x-select-enable-clipboard): Customize (as per
1317 the Emacs Lisp manual).
1318
1636ca09
GM
13192000-12-02 Gerd Moellmann <gerd@gnu.org>
1320
1321 * simple.el (next-line-add-newlines): Change default to nil.
1322
68875f0e
EZ
13232000-12-01 Eli Zaretskii <eliz@is.elta.co.il>
1324
1325 * files.el (revert-buffer, recover-file): Bind
1326 coding-system-for-read to emacs-mule-unix, not to no-conversion.
1327
fd9ac94c
GM
13282000-12-01 Gerd Moellmann <gerd@gnu.org>
1329
1330 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
1331
45450dd5
MB
13322000-12-01 Miles Bader <miles@gnu.org>
1333
1334 * window.el (fit-window-to-buffer): Handle non-nil `truncate-lines'.
1335
09df8881
KH
13362000-12-01 Kenichi Handa <handa@etl.go.jp>
1337
1338 * international/mule-diag.el (describe-char-after): Fix typo.
1339 (describe-character-set, non-iso-charset-alist): Fix typo.
1340
dea0a87d
MB
13412000-12-01 Miles Bader <miles@gnu.org>
1342
b170205b
MB
1343 * image-file.el (image-file-name-regexp): Automatically add
1344 upper-case variants of each filename extension in
1345 `image-file-name-extensions', since they seem to be common.
1346
e04d21aa 1347 * simple.el (minibuffer-contents)
dea0a87d
MB
1348 (minibuffer-contents-no-properties, delete-minibuffer-contents):
1349 New functions.
1350 * filecache.el (file-cache-directory-name)
1351 (file-cache-minibuffer-complete): Ignore the minibuffer prompt.
1352
2b69bc11 13532000-12-01 Milan Zamazal <Milan.Zamazal@qbizm.com>
e04d21aa 1354
dea0a87d
MB
1355 * filecache.el (file-cache-minibuffer-complete): Don't try to
1356 delete the minibuffer prompt.
1357
a8a1b05d
DL
13582000-11-30 Dave Love <fx@gnu.org>
1359
1360 * cus-start.el: Fix read-buffer-function type.
1361
693c4692
GM
13622000-11-30 Gerd Moellmann <gerd@gnu.org>
1363
1364 * md5.el: Removed. There's a built-in function, now.
1365
2c0b1898
GM
13662000-11-30 Markus Rost <rost@math.ohio-state.edu>
1367
1368 * mail/rmail.el (rmail-set-message-counters): Don't use "D"
1369 as dummy 0-th char of rmail-deleted-vector.
1370
63dfcf4b
EZ
13712000-11-30 Eli Zaretskii <eliz@is.elta.co.il>
1372
1373 * ps-print.el (ps-end-job): Bind case-fold-search only after
1374 switching to ps-spool-buffer.
1375
13762000-11-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1377
1378 * ps-print.el: Line number font customization. PostScript: Lines and
1379 PageCount are initialized on each page. Doc Fix.
1380 (ps-print-version): New version number (6.3.2).
1381 (ps-lpr-switches, ps-font-info-database, ps-font-size)
1382 (ps-header-font-size, ps-header-title-font-size, ps-left-header)
1383 (ps-right-header): Customization fix.
1384 (ps-setup, ps-select-font, ps-begin-file, ps-header-sheet, ps-end-job):
1385 Fix code.
1386 (ps-end-with-control-d, ps-line-number-font, ps-line-number-font-size):
1387 New vars.
1388
df3aedcf
GM
13892000-11-30 Gerd Moellmann <gerd@gnu.org>
1390
edfb795e
GM
1391 * bs.el: Fix typos and spelling errors.
1392 (bs-appearance) <defgroup>: Renamed from bs-appearence.
1393 (bs-configuration): Doc fix.
e04d21aa 1394
df3aedcf
GM
1395 * bs.el: Undo mistaken change of 2000-11-28. Update copyright.
1396
8b8a7f01
GM
13972000-11-30 Rob Riepel <riepel@Stanford.EDU>
1398
1399 * emulation/tpu-edt.el (tpu-version): New version.
1400 (tpu-search-overlay, tpu-replace-overlay): New initial range.
1401 (tpu-original-mode-line): Variable deleted.
1402 (tpu-mark-flag): New initial value.
1403 (tpu-set-mode-line): Don't redefine mode-line-format. Add
1404 tpu-mark-flag to minor-mode-alist.
1405 (tpu-update-mode-line): New mark flag logic.
1406 (tpu-get): Use find-file-wildcards.
1407 (tpu-search-highlight): Move overlay less, reset overlay properly.
1408 (tpu-unselect): Deactivate mark.
1409 (tpu-lm-replace): Reset overlay properly.
1410 (tpu-forward-line): Use forward-visible-line.
1411 (tpu-edt-on): Set transient mark mode. ispell autoloads deleted.
1412
1413 * emulation/tpu-extras.el (tpu-forward-line): Use
1414 forward-visible-line.
e04d21aa 1415
c069a9d3
GM
14162000-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
1417
1418 * cus-edit.el (custom-face-value-create): Always emphasize tag.
1419
b02cd40b
GM
14202000-11-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
1421
1422 * calendar/diary-lib.el (diary-entry-time): Anchor pattern correctly
1423 and skip whitespace and newlines.
e04d21aa 1424
b7a90344
SM
14252000-11-30 Stefan Monnier <monnier@cs.yale.edu>
1426
1427 * emacs-lisp/cl.el (third...tenth): Really undo change of 2000-08-05.
1428
be6bbb55
GM
14292000-11-29 Gerd Moellmann <gerd@gnu.org>
1430
0383ed60
GM
1431 * help.el (describe-function-1): Regexp-quote function name
1432 when used as part of a regexp.
1433
c7957947
GM
1434 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Use
1435 face-attribute instead of face-foreground and face-background.
1436 (tool-bar-add-item): Likewise, and handle unspecified colors.
1437
1438 * enriched.el (enriched-face-ans): Use face-attribute instead
1439 of face-foreground and face-background.
1440
1441 * faces.el (face-foreground, face-background, face-stipple):
1442 Return nil if attribute is unspecified, for backward
1443 compatibility.
1444
7423978d
GM
1445 * files.el (auto-mode-alist): Add an entry for antlr-mode.
1446
ef128c78
GM
1447 * play/5x5.el: Remove version info.
1448
a81fc510
GM
1449 * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
1450
be6bbb55
GM
1451 * frame.el (blink-cursor-mode): Doc fix.
1452
f9396e03
GM
14532000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
1454
1455 * antlr-mode.el: New commands to run ANTLR from within Emacs and
1456 to create Makefile rules.
1457 (antlr-tool-command): New user option.
1458 (antlr-ask-about-save): New user option.
1459 (antlr-makefile-specification): New user option.
1460 (antlr-file-formats-alist): New variable.
1461 (antlr-special-file-formats): New variable.
1462 (antlr-unknown-file-formats): New user option.
1463 (antlr-help-unknown-file-text): New variable.
1464 (antlr-help-rules-intro): New variable.
1465 (antlr-mode-map): Add [C-c C-r] for `antlr-run-tool'.
1466 (antlr-mode-menu): Add entries.
1467 (antlr-file-dependencies): New function.
1468 (antlr-directory-dependencies): New function.
1469 (antlr-superclasses-glibs): New function.
1470 (antlr-run-tool): New command.
1471 (antlr-makefile-insert-variable): New function.
1472 (antlr-insert-makefile-rules): New function.
1473 (antlr-show-makefile-rules): New command.
1474
1475 * antlr-mode.el: More Emacs/XEmacs stuff.
1476 (antlr-no-action-keywords): New constant with value nil.
1477 (antlr-font-lock-keywords-alist): Use it. Old value would break
1478 syntax highlighting in Emacs-21.0.
1479 (antlr-default-directory): Emacs/XEmacs dependend function.
1480 (antlr-read-shell-command): Ditto.
1481 (antlr-with-displaying-help-buffer): Ditto.
1482
14832000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
1484
1485 * antlr-mode.el: imenu, parsing and highlighting changes.
1486 (antlr-imenu-create-index-function): Don't create extra submenus
1487 for definitions in different grammar classes. It is not necessary
1488 for the menu and would make command `imenu' awkward to use.
1489 (antlr-skip-file-prelude): With ANTLR-2.7+, you can specify named
1490 header actions and more than one.
1491 (antlr-font-lock-tokendef-face): Changed color.
1492 (antlr-font-lock-tokenref-face): Changed color.
1493 (antlr-font-lock-additional-keywords): Also highlight lowercase.
1494 (antlr-mode-syntax-table): New variable.
1495 (antlr-mode): Populate and use it instead `java-mode-syntax-table'.
1496 (antlr-with-syntax-table): Don't copy syntax table.
1497
14982000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
1499
1500 * antlr-mode.el: Minor changes: language setting.
1501 (antlr-language-alist): The value for file option "language" can
1502 be both an identifier and a string.
1503 Reported by Rajesh Radhakrishnan <radhakrs@email.uc.edu>.
1504 (antlr-language-limit-n-regexp): Change accordingly.
1505
15062000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
1507
1508 * antlr-mode.el: Minor changes: tabs, hiding.
1509 (antlr-tab-offset-alist): Set `indent-tabs-mode' to nil instead t.
1510 (antlr-action-visibility): Also allow value nil to also hide the
1511 braces. Renamed from `antlr-tiny-action-length'.
1512 Suggested by Jay@aol.com.
1513 (antlr-hide-actions): Change accordingly. Hide line if completely
1514 hidden action is on a line of its own.
e04d21aa 1515
6ad948eb
SM
15162000-11-29 Stefan Monnier <monnier@cs.yale.edu>
1517
1518 * subr.el (combine-run-hooks): Only run-hooks if there's a hook to run.
1519
1520 * sort.el (sort-columns): Don't concat strings with numbers.
1521
9c6a4107
DL
15222000-11-29 Dave Love <fx@gnu.org>
1523
1524 * cus-edit.el (face): Fix :format.
1525
1526 * mail/feedmail.el: Require smtpmail when compiling.
1527 (mail-do-fcc): Autoload.
1528 (feedmail) <defgroup>: Fix :link.
1529 (feedmail-nuke-body-in-fcc): Fix :type.
1530 (feedmail-send-it): Add autoload cookie.
1531
053b8d35
SM
15322000-11-29 Stefan Monnier <monnier@cs.yale.edu>
1533
1534 * newcomment.el (comment-indent): Save excursion around call to
1535 comment-indent-function.
1536
242c13e8
MB
15372000-11-29 Miles Bader <miles@gnu.org>
1538
1539 * subr.el (member-ignore-case): Return the tail of the list who's
1540 car matches, like `member', not the matching element itself.
1541
8f4b5f28
KH
15422000-11-29 Kenichi Handa <handa@etl.go.jp>
1543
1544 * xml.el (xml-parse-tag): Fix finding opening tag. A tag name
1545 should not contain `\n'.
1546
bebe4a2c
GM
15472000-11-28 Gerd Moellmann <gerd@gnu.org>
1548
fd9ac94c 1549 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
99879a40 1550
ba7e40eb
GM
1551 * hscroll.el: Add hints to `automatic-hscrolling' to doc strings.
1552
75ab0c79
GM
1553 * dired-aux.el (dired-do-create-files): Construct default file
1554 name for dired-mark-read-file-name so that when the user enters
1555 just RET, the target file will end up in the target directory.
1556
bebe4a2c
GM
1557 * abbrev.el (prepare-abbrev-list-buffer): Get the value of
1558 local-abbrev-table before changing buffers because it might
1559 have a buffer-local binding.
1560
fa6d1ca8
MB
15612000-11-28 Miles Bader <miles@gnu.org>
1562
1563 * simple.el (delete-horizontal-space): Handle fields more generally.
1564
8d2c2642
GM
15652000-11-28 Gerd Moellmann <gerd@gnu.org>
1566
1567 * simple.el (delete-horizontal-space): Handle minibuffer prompt.
1568
8b31236d
DL
15692000-11-28 Dave Love <fx@gnu.org>
1570
3cbd02d2
DL
1571 * progmodes/ps-mode.el (ps-mode): Set comment-start and
1572 comment-start-skip locally.
1573
8b31236d
DL
1574 * progmodes/fortran.el (fortran-mode): Don't set
1575 fortran-comment-line-start-skip. Set comment-start to
1576 fortran-comment-line-start.
1577 (fortran-fill-paragraph) <non-empty-comment>: Remove regexp group.
1578 (fortran-comment-line-start-skip): Simplify slightly.
1579
ae4bf56d
GM
15802000-11-28 Gerd Moellmann <gerd@gnu.org>
1581
17ef7534
GM
1582 * play/5x5.el: Remove RCS keyword.
1583
fd9ac94c 1584 * bs.el: Mistaken commit, undone 2000-11-30.
ae4bf56d 1585
665b27a6
GM
15862000-11-28 Milan Zamazal <pdm@freesoft.cz>
1587
1588 * textmodes/tildify.el (tildify-string-alist): Add
1589 `plain-tex-mode' here.
1590
fe3c2ae3
GM
15912000-11-28 Colin Walters <walters@cis.ohio-state.edu>
1592
1593 * chistory.el (Command-history-setup): Remove extraneous `keymap'
1594 reference.
1595
d970106b
MB
15962000-11-28 Miles Bader <miles@gnu.org>
1597
36b80a0d
MB
1598 * cus-face.el (custom-face-attributes): Add post-filter function
1599 for :box. Make pre-filter function for :box handle all cases.
1600
d970106b
MB
1601 * wid-edit.el (widget-choose): Make sure pop-up window is large
1602 enough to display all the choices, as there's no way to scroll it.
1603
5a2bae6c
KH
16042000-11-28 Kenichi Handa <handa@etl.go.jp>
1605
1606 * international/mule-conf.el: Make the coding system no-conversion
1607 safe for all characters.
1608
9e836e23
DL
16092000-11-27 Dave Love <fx@gnu.org>
1610
8b31236d
DL
1611 * net/ldap.el (ldap) <defgroup>: Add :version.
1612
9e836e23
DL
1613 * tooltip.el (tooltip-use-echo-area): Doc fix.
1614
1615 * cus-start.el <minibuffer-prompt-properties>: Add version.
1616 <read-buffer-function>: Add.
1617
1618 * apropos.el (apropos-print): Add help-echo to active text.
1619
1620 * term/x-win.el (x-select-enable-clipboard): Customize (per lispref).
1621
4a74d071
GM
16222000-11-27 Gerd Moellmann <gerd@gnu.org>
1623
1624 * mail/rmail.el (rmail-automatic-folder-directives): Add a custom
1625 type, group and version.
1626
76058c27
EZ
16272000-11-27 Eli Zaretskii <eliz@is.elta.co.il>
1628
4a74d071 1629 * select.el (x-get-selection): Docstring fix.
76058c27 1630
fd9ac94c 16312000-11-27 Dave Pearson <davep@hagbard.demon.co.uk>
26a8d08d 1632
fd9ac94c 1633 * play/5x5.el (5x5-play-solution): Bind hinhibit-quit to t.
26a8d08d 1634
49060c51
AI
16352000-11-27 Andrew Innes <andrewi@gnu.org>
1636
1637 * makefile.nt (.SUFFIXES): Add .SUFFIXES.
1638
1639 * makefile.w32-in (.SUFFIXES): Add .SUFFIXES.
1640
b2a8e429
MB
16412000-11-27 Miles Bader <miles@gnu.org>
1642
1643 * dired.el (dired-get-filename): Return filename verbatim if
1644 LOCALP is `verbatim'.
1645 * dired-aux.el (dired-add-entry): Call `dired-get-filename' with
1646 `verbatim' so that we don't inadvertently delete a non-existant
1647 directory name.
1648
5ac0366d
KH
16492000-11-27 Kenichi Handa <handa@etl.go.jp>
1650
1651 * international/characters.el: Specify cases and syntaxes for
1652 mule-unicode-0100-24ff.
1653
67f1cf4c
GM
16542000-11-27 Gerd Moellmann <gerd@gnu.org>
1655
1656 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle case
1657 that foreground and/or background colors of the face `tool-bar'
1658 are unspecified.
1659
46c56972
MB
16602000-11-27 Miles Bader <miles@gnu.org>
1661
e04d21aa 1662 * wid-edit.el (widget-field-buffer, widget-field-start)
ec725166
MB
1663 (widget-field-end): Handle widget field `pseudo-overlays'.
1664 (widget-field-value-delete): Delete WIDGET from `widget-field-new'
1665 if it's there instead of in `widget-field-list'.
1666
46c56972 1667 * help.el (help-manyarg-func-alist): Correct entry for `vconcat'.
a2e6f426
MB
1668 (help-make-xrefs): Delete extraneous newlines at the end of the
1669 docstring.
46c56972 1670
640a9cdd
JR
16712000-11-25 Jason Rumney <jasonr@gnu.org>
1672
1673 * startup.el (command-line): Call set-locale-environment after
1674 Window System init file is read, as it can result in a call to
1675 redraw-frame.
1676
0b3f96d4
EZ
16772000-11-25 Eli Zaretskii <eliz@is.elta.co.il>
1678
1679 * simple.el (shell-command): Mention the effect of the prefix
1680 argument in the doc string.
1681
8da6e2a1
MB
16822000-11-25 Miles Bader <miles@gnu.org>
1683
a658d039
MB
1684 * cus-face.el (custom-face-attributes): Add "None" choice to :stipple.
1685
8da6e2a1 1686 * wid-edit.el (widget-field-value-delete): Don't try to delete
a2e6f426 1687 overlay when it's the `pseudo-overlay' that exists at some points.
8da6e2a1 1688
d3416cca
JR
16892000-11-24 Jason Rumney <jasonr@gnu.org>
1690
1691 * international/mule-cmds.el (locale-language-names): Add "jp" as
1692 a non-standard alternative for Japanese.
1693
17e37f53
AS
16942000-11-24 Andre Spiegel <spiegel@gnu.org>
1695
1696 * vc-hooks.el: Require 'cl during compilation.
1697
9aa5f148
GM
16982000-11-24 Gerd Moellmann <gerd@gnu.org>
1699
ba193890
GM
1700 * faces.el (face-set-after-frame-default): Let face attributes
1701 specified for new frames override frame parameters.
1702
9aa5f148
GM
1703 * startup.el (command-line): Fix computation of the source file
1704 for user-init-file when user-init-file is a compiled file.
1705
51a1edab
MB
17062000-11-24 Miles Bader <miles@gnu.org>
1707
e04d21aa 1708 * cus-edit.el (custom-filter-face-spec, custom-pre-filter-face-spec)
51a1edab
MB
1709 (custom-post-filter-face-spec): New functions.
1710 (custom-face-set, custom-face-value-create): Filter the face spec
1711 before and after customization.
1712 (custom-face-set): If VALUE specifies a null face, pass a
1713 non-null-but-otherwise-ignored face-spec instead to `face-spec-set'.
1714 * cus-face.el (custom-face-attributes): Remove SET and GET
1715 functions. Add some IN-FILTER and OUT-FILTER functions in the few
1716 cases they're needed.
1717
1ed74431
MB
1718 * wid-edit.el (checkbox): Add a small `X' to the the :on-glyph, so
1719 that it's distinguishable from the :off-glyph on dark-background
1720 displays. Set its background color too.
1721
67ee1125
MB
1722 * cus-start.el (all): Restore entry for `mode-line-inverse-video',
1723 so that people can easily turn it off.
1724
7d027816 17252000-11-24 Michael Kifer <kifer@cs.sunysb.edu>
e04d21aa 1726
7d027816 1727 * ediff-diff.el: Moved variables around to have it compile under NT.
e04d21aa 1728
9aa5f148 1729 * ediff-help.el (ediff-use-long-help-message): Made it customizable.
e04d21aa 1730
9aa5f148 1731 * ediff-init.el (ediff-abbrev-jobname): Use capitalize.
e04d21aa 1732
9aa5f148 1733 * ediff-wind.el (ediff-skip-unsuitable-frames): Deleted the
7d027816 1734 redundant skip-small-frames test.
e04d21aa 1735
9aa5f148 1736 * viper-cmd.el (viper-change-state-to-vi): Disable overwrite mode.
7d027816 1737 (viper-downgrade-to-insert): protect against errors in hooks.
e04d21aa 1738
9aa5f148
GM
1739 * viper-init.el (viper-vi-state-hook,viper-insert-state-hook)
1740 (viper-replace-state-hook,viper-emacs-state-hook): Do cursor handling.
1741 (viper-restore-cursor-type,viper-set-insert-cursor-type): New
7d027816 1742 functions.
e04d21aa 1743
9aa5f148 1744 * viper-util.el (viper-memq-char): Bug fixes.
e04d21aa 1745
9aa5f148 1746 * viper.el (viper-mode): Fix cursor handling.
e04d21aa 1747
f07fa1b8
KH
17482000-11-24 Kenichi Handa <handa@etl.go.jp>
1749
1750 * international/mule-diag.el (list-iso-charset-chars): For
1751 two-byte charset, fix the `while' condition.
1752 (list-non-iso-charset-chars): Fix the `while' condition.
1753
ba8299ff
SM
17542000-11-23 Stefan Monnier <monnier@cs.yale.edu>
1755
79372165
SM
1756 * subr.el (add-hook, remove-hook): Don't call make-local-hook
1757 if the variable is make-variable-buffer-local.
1758
ba8299ff
SM
1759 * progmodes/ada-stmt.el (ada-template-map): Initialize
1760 and bind it to C-c t in ada-mode-map.
1761 (ada-stmt-mode-hook): New function extracted from old code.
1762 Only change the buffer-local side of skeleton-*.
1763 (ada-mode-hook): Use it.
1764
68a887fa
EZ
17652000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
1766
1767 * iswitchb.el (iswitchb-minibuf-depth): New variable.
1768 (iswitchb-read-buffer): Record in iswitchb-minibuf-depth the value
1769 we expect to be returned by minibuffer-depth once we prompt the
1770 user in the minibuffer.
1771 (iswitchb-entryfn-p): If minibuffer-depth returns the same value
1772 as recorded in iswitchb-minibuf-depth, return non-nil.
1773
3b345582
EZ
17742000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
1775
1776 * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
1777 (hscroll-window-maybe): Docstring fix.
1778
595dead2
DL
17792000-11-23 Dave Love <fx@gnu.org>
1780
1781 * rect.el (string-rectangle): Don't test delete-selection-mode.
1782
1e66b27a
GM
17832000-11-23 Gerd Moellmann <gerd@gnu.org>
1784
02790ce2
GM
1785 * avoid.el (mouse-avoidance-too-close-p): Return nil if mouse
1786 is in the tool bar.
1787
1e66b27a
GM
1788 * dired-aux.el (dired-add-entry): Don't call dired-get-filename
1789 with `no-dir'; we want the directory part to be able to remove
1790 it.
1791
a4caa65d
SM
17922000-11-22 Stefan Monnier <monnier@cs.yale.edu>
1793
1794 * textmodes/outline.el (outline-flag-region):
1795 Don't bind inhibit-read-only since we don't modify the buffer.
1796 (outline-isearch-open-invisible): Don't jump to overlay-start
1797 since we're trying to unhide text around point.
1798 (outline-discard-overlays): Use dolist.
1799
1800 * autoinsert.el (auto-insert-alist): Add `provide' to elisp skeleton.
1801
03e757c1
GM
18022000-11-22 Gerd Moellmann <gerd@gnu.org>
1803
e04d21aa 1804 * mail/rmail.el (rmail-confirm-expunge): Default to
03e757c1 1805 y-or-n-p.
e04d21aa 1806
1598a961
SM
18072000-11-22 Stefan Monnier <monnier@cs.yale.edu>
1808
1809 * textmodes/tex-mode.el (tex-font-lock-keywords-1):
1810 Fix ARG regexp to skip quoted braces.
1811 (tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
1812 Remove `bf' and `it' from `bold' and `italic' (they were wrong and
1813 are (correctly) handled separately).
1814 Remove `caption' and `footnote' from `citations': they contain text.
1815 Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
1816 (latex-skeleton-end-hook): New function.
1817 (latex-mode): Use it.
1818 (tex-start-tex-marker): Remove.
1819 (tex-send-tex-command): Don't set tex-start-tex-marker.
1820 (tex-error-parse-syntax-table): New var.
1821 (tex-compilation-parse-errors): Use it.
1822 Ignore tex-start-tex-marker. Don't bother with marker-position.
1823 (tex-validate-buffer): Don't bother with marker-position.
1824
1825 * textmodes/flyspell.el (flyspell-prog-text-faces): New var.
bd7e01a3 1826 (flyspell-generic-progmode-verify): Use it.
1598a961 1827
eaae8106
SS
18282000-11-22 Sam Steingold <sds@gnu.org>
1829
03e757c1
GM
1830 * simple.el (delete-trailing-whitespace): New interactive
1831 function.
e04d21aa 1832
eaae8106 1833 * progmodes/ada-mode.el (ada-mode): Use it instead of
bd7e01a3 1834 `ada-remove-trailing-spaces'.
eaae8106 1835 (ada-remove-trailing-spaces): Removed.
e04d21aa 1836
eaae8106 1837 * textmodes/two-column.el (2C-merge): Recommend it in the doc.
e04d21aa 1838
1598a961
SM
1839 * textmodes/picture.el (picture-clean): Removed.
1840 (picture-mode-exit): Call it instead of `picture-clean'.
eaae8106 1841
a41d49e9
GM
18422000-11-22 Gerd Moellmann <gerd@gnu.org>
1843
e053c60f
GM
1844 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
1845
a41d49e9
GM
1846 * hi-lock.el (hi-lock-refontify): Don't call non-existent
1847 jit-lock-fontify-buffer; it should anyway be unneccessary to
4c4a541d 1848 do anything special when jit-lock is active.
a41d49e9
GM
1849 (hi-yellow, hi-pink, hi-green, hi-blue): Fix defface specs.
1850
197615f3
DL
18512000-11-22 Dave Love <fx@gnu.org>
1852
ddbfaa9f
DL
1853 * calendar/todo-mode.el (todo-top-priorities): Use
1854 todo-tmp-buffer-name. From Milan Zamazal <Milan.Zamazal@qbizm.com>.
1855
ddc3c695
DL
1856 * language/chinese.el, language/cyrillic.el:
1857 * language/devanagari.el, language/ethiopic.el, language/greek.el:
1858 * language/hebrew.el, language/indian.el, language/japanese.el:
1859 * language/korean.el, language/lao.el, language/misc-lang.el:
1860 * language/thai.el, language/tibetan.el, language/vietnamese.el:
1861 Use provide.
1862
fb9fa98d
DL
1863 * cus-edit.el (custom-buffer-create-internal): Save some consing.
1864 (custom-variable-set): Improve validation error mesage.
1865
197615f3
DL
1866 * rect.el (string-rectangle): Revert last change.
1867 (string-rectangle-line): New arg DELETE.
1868 (string-rectangle): Check delete-selection-mode.
1869
1870 * emacs-lisp/edebug.el (edebug-version)
1871 (edebug-maintainer-address): Deleted.
1872 (edebug-submit-bug-report): Just alias to report-emacs-bug.
1873 (edebug-read-function): Account for other `'#' read forms.
1874 (edebug-mode-menus): Make some items toggles.
1875 (edebug-outside-unread-command-event, unread-command-event):
1876 Remove these to avoid warnings.
1877
f4117c4d
GM
18782000-11-22 David Ponce <david@dponce.com>
1879
1880 * recentf.el (recentf-menu-items-for-commands)
1881 (recentf-make-menu-items, recentf-make-menu-item)
4c4a541d 1882 (recentf-filter-changer): Added :help and :active menu-item properties.
eaae8106 1883
f4117c4d
GM
1884 (recentf-build-dir-rules, recentf-dump-variable)
1885 (recentf-edit-list, recentf-open-files-item)
1886 (recentf-open-files): Replaced unnecessary `mapcar' with new
1887 built-in `mapc'.
eaae8106 1888
f8e2f3f2
MB
18892000-11-23 Miles Bader <miles@gnu.org>
1890
1891 * faces.el (menu): Make inverse-video on ttys too.
1892
4c4a541d
SM
18932000-11-22 Stefan Monnier <monnier@cs.yale.edu>
1894
1895 * simple.el (comment-line-break-function): Use the new name
1896 indent-new-comment-line -> comment-indent-new-line.
1897 (clone-indirect-buffer): Don't ignore NORECORD.
1898 (next-completion): Properly handle the case where items are adjacent.
1899
1900 * mouse.el (popup-menu): Stupid typo.
1901
980d836e
GM
19022000-11-22 Gerd Moellmann <gerd@gnu.org>
1903
60e8e0a5
GM
1904 * emacs-lisp/authors.el: Remove autoload cookies, add author,
1905 maintainer, keywords tags.
1906
980d836e
GM
1907 * rect.el (replace-rectangle): Don't call string-rectangle-line
1908 with too many arguments.
1909
e08b2069
AS
19102000-11-22 Andre Spiegel <spiegel@gnu.org>
1911
60e8e0a5 1912 * ediff-util.el (ediff-file-checked-out-p)
eaae8106 1913 (ediff-file-checked-in-p): Call vc-state instead of
e08b2069
AS
1914 vc-locking-user, which no longer exists.
1915
1916 * emulation/viper-util.el (viper-file-checked-in-p): Same as above.
1917
c6779d8d
DL
19182000-11-22 Dave Love <fx@gnu.org>
1919
1920 * md5.el (md5): Provide.
1921 (md5): Fix error call.
1922
e672fdce
MB
19232000-11-22 Miles Bader <miles@gnu.org>
1924
eaae8106 1925 * textmodes/refill.el (refill-adjust-ignorable-overlay)
d9fdcdb5
MB
1926 (refill-fill-paragraph-at): Remove debugging code.
1927
80e24c04
MB
1928 * calendar/calendar.el (generate-calendar-window): When we don't
1929 call `fit-window-to-buffer', make sure the top line is fully visible.
1930
3a17d6cc
MB
1931 * image-file.el (insert-image-file): Don't make `read-only'
1932 property rear-nonsticky.
1933
ae1a21c6
MB
1934 * isearch.el (isearch-original-minibuffer-message-timeout): New var.
1935 (isearch-mode): Set `minibuffer-message-timeout' to nil, after
1936 stashing away its original value.
1937 (isearch-edit-string): Temporarily restore `minibuffer-message-timeout'
1938 in the recursive edit.
1939 Bind `isearch-original-minibuffer-message-timeout' to protect it.
1940 (isearch-done): Restore `minibuffer-message-timeout'.
1941
e672fdce
MB
1942 * cus-start.el: Remove entry for `mode-line-inverse-video'.
1943
3ea79df8
SM
19442000-11-21 Stefan Monnier <monnier@cs.yale.edu>
1945
1946 * progmodes/ada-mode.el (ada-mode): `set '' -> `setq'.
1947
1948 * find-lisp.el (find-lisp-find-files-internal):
1949 Use dolist, when and file-name-as-directory.
1950
980d836e 1951 * emacs-lisp/edebug.el (edebug-form-spec prop): Use dolist.
3ea79df8
SM
1952 (define-derived-mode, define-minor-mode): Add specs.
1953
1954 * window.el: General comment and spacing fixes.
1955 (save-selected-window): Use backquotes.
1956 (window-safely-shrinkable-p): New function.
1957 (shrink-window-if-larger-than-buffer): Use it.
1958
1959 * subr.el (make-local-hook): Docstring fix.
1960
1961 * shell.el (shell-mode): Use define-derived-mode.
1962
1963 * newcomment.el (comment-indent): Insert comment before calling
1964 comment-indent-function. Don't insert in column 0.
1965 (comment-dwim): Indent before inserting comment.
1966
1967 * isearch.el (isearch-mode-map): Fix docstring. Init in defvar.
1968 (minibuffer-local-isearch-map): Init in defvar. Use inheritance.
1969 (isearch-clean-overlays, isearch-range-invisible, isearch-unread):
1970 Use mapc rather than map.
1971
1972 * files.el (find-buffer-visiting): Compare all attributes before
1973 declaring two files identical (rather than just their inode-no).
1974 (auto-mode-alist): Use \' rather than $.
1975
1976 * which-func.el: Update maintainer line.
1977
1978 * pcvs.el (uniquify-buffer-file-name): Remove advice.
1979 * uniquify.el (uniquify-list-buffers-directory-modes): New var.
1980 (uniquify-buffer-file-name): Use it.
1981
8f62f2b8
MB
19822000-11-22 Miles Bader <miles@gnu.org>
1983
1984 * cus-start.el: Add entry for `minibuffer-prompt-properties'.
1985 * simple.el (minibuffer-avoid-prompt): New function.
1986
fb279a6d
GM
19872000-11-21 Gerd Moellmann <gerd@gnu.org>
1988
1989 * Makefile.in (.SUFFIXES): Add .SUFFIXES.
1990
867092e9
MB
19912000-11-21 Miles Bader <miles@gnu.org>
1992
ef860850
MB
1993 * emacs-lisp/advice.el (ad-special-forms): Correct the conditional
1994 inclusion of `track-mouse'.
1995
867092e9
MB
1996 * textmodes/refill.el (refill-ignorable-overlay): New variable.
1997 (refill-adjust-ignorable-overlay): New function.
1998 (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill
1999 only the paragraph's tail if possible.
2000 Update `refill-ignorable-overlay'.
2001 (refill-mode): Initialize/cleanup `refill-ignorable-overlay'.
2002
2003 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
2004 point inside the fill-prefix.
2005
2006 * textmodes/refill.el (refill-post-command-function): Don't reset
2007 refill-doit in the case where a self-insertion command doesn't
2008 case a refill. Use `refill-fill-paragraph-at', getting position
2009 from `refill-doit'.
2010 (refill-after-change-function): Set `refill-doit' to END.
2011 (refill-fill-paragraph-at): New function, mostly from old
2012 refill-fill-paragraph.
2013 (refill-fill-paragraph): Use `refill-fill-paragraph-at'.
2014 (refill-pre-command-function): New function.
2015 (refill-mode): Add it to `pre-command-hook'.
2016
ff9ab414
GM
20172000-11-20 Gerd Moellmann <gerd@gnu.org>
2018
29a01b72
GM
2019 * textmodes/artist.el (artist-mode): Fix autoload cookie.
2020
ff9ab414
GM
2021 * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
2022 javadoc tags.
eaae8106 2023
885b211b
AS
20242000-11-20 Andre Spiegel <spiegel@gnu.org>
2025
2026 * vc.el, vc-hooks.el: Undo prev change (moved functions back to
2027 vc.el).
2028
eaae8106 2029 * vc-rcs.el (vc-rcs-state): Before calling vc-workfile-unchanged-p,
885b211b 2030 require vc.
eaae8106
SS
2031
2032 * vc-cvs.el (vc-cvs-checkout): Fix bug that broke C-x v ~-style
885b211b 2033 checkouts.
eaae8106 2034
d1838556
DL
20352000-11-20 Dave Love <fx@gnu.org>
2036
2037 * Makefile.in (DONTCOMPILE): Omit bindings.el.
2038
2b69bc11 20392000-11-20 Eli Barzilay <eli@www.barzilay.org>
56c13ae6 2040
2b69bc11
GM
2041 * calculator.el (calculator-paste): Use `if' instead of `and'
2042 and `or'.
2043 (calculator-help): Don't use electric-describe-mode for XEmacs.
56c13ae6 2044
b95b34e5
GM
20452000-11-19 Gerd Moellmann <gerd@gnu.org>
2046
030de92f
GM
2047 * info.el (info-menu-5): Doc fix.
2048
b95b34e5
GM
2049 * textmodes/artist.el: New file.
2050
54970452
AS
20512000-11-19 Andre Spiegel <spiegel@gnu.org>
2052
eaae8106 2053 * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here,
54970452
AS
2054 and differentiate according to checkout model.
2055 (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
2056 since this function is only concerned with master state.
2057
eaae8106 2058 * vc-hooks.el (vc-workfile-unchanged-p,
54970452
AS
2059 vc-default-workfile-unchanged-p): Moved here from vc.el.
2060
eaae8106 2061 * vc.el (vc-workfile-unchanged-p,
54970452
AS
2062 vc-default-workfile-unchanged-p): See above.
2063
e5a9dabf
MB
20642000-11-19 Miles Bader <miles@gnu.org>
2065
2066 * image-file.el (insert-image-file): Make `intangible' and
2067 `read-only' properties rear-nonsticky too.
2068
24127af0
GM
20692000-11-18 Gerd Moellmann <gerd@gnu.org>
2070
d392e9c5 2071 * ps-print.el: Update copyright notice.
eaae8106 2072
d392e9c5
GM
2073 * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
2074 (tooltip-show): Use the offsets.
2075
24127af0 2076 * bindings.el (mode-line-modified): Fix a typo.
eaae8106 2077 (mode-line-toggle-modified, mode-line-widen)
24127af0
GM
2078 (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
2079
2b69bc11 20802000-11-17 Vinicius Jose Latorre <vinicius@cpqd.com.br>
08ea6f17 2081
2b69bc11
GM
2082 * ps-print.el (toplevel): Test for find-coding-system being
2083 fboundp before calling ps-x-find-coding-system.
08ea6f17 2084
66321b2f
SM
20852000-11-16 Stefan Monnier <monnier@cs.yale.edu>
2086
2087 * vc.el (vc-version-diff): Bind inhibit-read-only when inserting text.
2088 (vc-version-backup-file): Docstring fix.
2089
046110c6
GM
20902000-11-16 Gerd Moellmann <gerd@gnu.org>
2091
4104194e
GM
2092 * files.el (basic-save-buffer): Don't add a newline if
2093 find-file-literally is non-nil.
2094 (find-file-literally): Extend doc string.
2095
046110c6
GM
2096 * sort.el (sort-columns): If sort-fold-case it non-nil, invoke
2097 sort(1) with the `-f' argument.
2098
6505c16e
AS
20992000-11-16 Andre Spiegel <spiegel@gnu.org>
2100
fd063975
AS
2101 * vc.el: Updated backend documentation.
2102 (vc-default-check-headers): New function.
2103
3d02dd81 2104 * vc-{cvs,rcs,sccs}.el: Functions reordered.
eaae8106
SS
2105
2106 * vc.el (vc-revert-buffer): Ask for confirmation if file seems
8791d617 2107 up-to-date.
eaae8106 2108 (vc-do-command): In the asynchronous case, output messages only if
9dd94743 2109 the minibuffer is not active.
fd063975 2110
eaae8106 2111 * vc-cvs.el (vc-cvs-revert): Use `cvs unedit' only if
8791d617 2112 `vc-cvs-use-edit' is on.
eaae8106
SS
2113 (vc-cvs-checkout): When this is used for reverting the workfile,
2114 make a backup of the original contents and revert to that in case
8791d617 2115 of error.
eaae8106 2116 (vc-cvs-print-log, vc-cvs-diff): Use asynchronous mode only for
9dd94743 2117 remote repositories.
eaae8106 2118
6505c16e
AS
2119 * vc.el (vc-annotate): Changed handling of prefix arg; now asks
2120 for both version and ratio in the minibuffer.
fd063975 2121
eaae8106 2122 * vc-cvs.el (vc-cvs-annotate-command): New optional arg VERSION.
8791d617 2123 Use vc-do-command to perform the annotation, not call-process.
6505c16e 2124
a13f0660
KH
21252000-11-16 Kenichi Handa <handa@etl.go.jp>
2126
2127 * international/quail.el (quail-start-translation): Don't call
2128 `message' before reading key sequence.
2129
1389a414
MB
21302000-11-16 Miles Bader <miles@lsi.nec.co.jp>
2131
2132 * net/ange-ftp.el (ange-ftp-file-modtime): Don't use `caddr'.
2133
9256a532
KH
21342000-11-16 Kenichi Handa <handa@etl.go.jp>
2135
2136 * window.el (fit-window-to-buffer): Be sure to acquire at least
2137 one text line even if the buffer is empty.
2138
0e14fe9f
GM
21392000-11-16 Gerd Moellmann <gerd@gnu.org>
2140
eaae8106 2141 * net/ange-ftp.el (ange-ftp-file-writable-p)
0e14fe9f
GM
2142 (ange-ftp-file-readable-p, ange-ftp-file-executable-p): Bind
2143 ange-ftp-process-verbose to nil.
2144
da645c53
DL
21452000-11-15 Dave Love <fx@gnu.org>
2146
233d5cde
DL
2147 * wid-edit.el (widget-specify-field, widget-specify-button): If
2148 :help-echo is a function, set help-echo of overlay to
2149 widget-mouse-help.
2150 (widget-mouse-help): New function.
2151 (widget-echo-help): Rewritten for :help-echo functions only taking
2152 a widget arg.
2153
b12057b9
DL
2154 * net/eudc-bob.el (eudc-bob-can-display-inline-images): Use
2155 display-graphic-p.
2156 (eudc-bob-display-jpeg) <!eudc-xemacs-p>: Test create-image bound
2157 and that JPEG is available.
2158 (eudc-bob-toggle-inline-display): Avoid non-existent `imagep'.
2159
da645c53
DL
2160 * international/mule-cmds.el (locale-charset-language-names):
2161 Match @euro.
2162
6d133d1f
GM
21632000-11-15 Gerd Moellmann <gerd@gnu.org>
2164
2165 * faces.el (face-set-after-frame-default): If
0e14fe9f 2166 `inhibit-default-face-x-resources' is bound, don't intialize the
6d133d1f
GM
2167 default face from X resources.
2168
49ac2ac5
EZ
21692000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
2170
2171 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
2172 Don't set EMACSLOADPATH.
2173
4fb0a34c
EZ
21742000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
2175
2176 * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
2177 texinfo-insert-@url.
2178 (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
2179 (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
2180
bb304a7a
SM
21812000-11-14 Stefan Monnier <monnier@cs.yale.edu>
2182
82bc80bf
SM
2183 * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
2184 (checkdoc-minor-mode-map): New map, replaces checkdoc-minor-keymap.
2185 (checkdoc-minor-keymap): Backward compatibility.
2186 (checkdoc-minor-menu): Don't bother checking checkdoc-minor-keymap.
2187 (checkdoc-minor-mode) <defun>: Use easy-mmode-define-minor-mode.
2188 (checkdoc-this-string-valid-engine): Be a bit more strict
2189 to avoid matching substrings of `...' quoted vars/funs.
2190 (checkdoc-defun-info): Only look for `interactive' if alone.
2191 (debug-ignored-errors): Add "arg doesn't appear in docstring".
2192
e8c87124
SM
2193 * progmodes/compile.el (grep): `tag-default' can be nil.
2194
bb304a7a
SM
2195 * newcomment.el (comment-indent): Paren typo.
2196
8628686a
DL
21972000-11-14 Dave Love <fx@gnu.org>
2198
25c269ef
DL
2199 * calculator.el: New maintainer version.
2200
66321b2f 2201 * diff-mode.el (diff-imenu-generic-expression): Modify unidiff pattern.
25c269ef 2202
8628686a
DL
2203 * cmuscheme.el: Doc fixes.
2204 (cmuscheme) <defgroup>: Use `scheme' as parent.
2205 (cmuscheme-program-name): Remove. Change uses to
2206 scheme-program-name.
2207
2208 * xscheme.el (scheme-program-name): Don't define here.
2209
2210 * progmodes/scheme.el (scheme-program-name): New variable
2211 (originally in cmuscheme).
2212
88f0a1eb
MB
22132000-11-14 Miles Bader <miles@gnu.org>
2214
2215 * window.el (fit-window-to-buffer): Handle windows without mode-lines.
2216 Handle header-lines. Don't loop forever if we can't enlarge the
2217 window anymore. Simplify a bit.
2218
cd9a000c
KH
22192000-11-14 Kenichi Handa <handa@etl.go.jp>
2220
2221 * window.el (fit-window-to-buffer): Don't check
2222 window-text-height. Assure that the last line is fully visible.
2223
2224 * international/quail.el (quail-show-guidance-buf): Call
2225 fit-window-to-buffer to assure the enough height of the guidance
2226 buffer.
2227 (quail-update-guidance): Avoid making the guidance buffer shorter.
2228
d3fcda22
SM
22292000-11-14 Stefan Monnier <monnier@cs.yale.edu>
2230
bdbd9606
SM
2231 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Use `keep'
2232 rather than `prepend' and add an interesting comment.
2233 (tex-math-face, tex-font-lock-syntactic-face-function):
2234 New face and function to use it.
2235 (tex-define-common-keys, tex-mode-map): Use menu-item rather
2236 than `menu-enable' symbol property.
2237 (tex-mode-map): Bind {, (, [ and $ to skeleton-pair-insert-maybe.
2238 (tex-mode): Add some latex-mode commands for auto-selection.
2239 Use tex-font-lock-syntactic-face-function.
2240 (tex-insert-quote): Simplify.
2241 (tex-shell): New mode.
2242 (tex-start-shell): Use it.
2243 (tex-shell-proc, tex-shell-buf): New functions.
2244 (tex-send-command): Use it.
2245 (tex-main-file): Fix the meaning of the new arg REALFILE.
2246 (tex-send-tex-command): New function split from `tex-start-tex'.
2247 Set compilation-last-buffer and compilation-parsing-end.
2248
d3fcda22
SM
2249 * newcomment.el (comment-indent-default): Stick \s<\s< to the left
2250 when it follows non-comment text on the line.
2251
2252 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
2253 Set font-lock-defaults.
2254 (lisp-mode-shared-map): Init inside the defvar.
2255 (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
2256 Use define-derived-mode.
2257
bdab1d43
MB
22582000-11-14 Miles Bader <miles@lsi.nec.co.jp>
2259
2260 * faces.el (header-line): Use `:box nil' for color/gs displays too.
2261
936ae731
GM
22622000-11-14 Gerd Moellmann <gerd@gnu.org>
2263
2264 * emacs-lisp/byte-opt.el (byte-compile-unfold-lambda): Don't
2265 recursively optimize body because that can lead to infinite
2266 recursion; see comment there.
2267
1695ca2b
EZ
22682000-11-13 Eli Zaretskii <eliz@is.elta.co.il>
2269
2270 * faces.el (face-spec-set-match-display): Revert the change from
2271 2000-10-24. Add a FIXME for after v21.1.
2272
9d348294
MB
22732000-11-13 Miles Bader <miles@gnu.org>
2274
2275 * textmodes/fill.el (skip-line-prefix): New function.
2276 (fill-region-as-paragraph, fill-region): Return the fill-prefix.
2277 (fill-paragraph): Don't leave point inside the fill-prefix.
88f0a1eb
MB
2278 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
2279 point inside the fill-prefix.
9d348294 2280
b85fa13c
MB
22812000-11-13 Miles Bader <miles@lsi.nec.co.jp>
2282
2283 * calendar/calendar.el (generate-calendar-window): Use
2284 `fit-window-to-buffer'.
2285
a0b47716
SM
22862000-11-12 Stefan Monnier <monnier@cs.yale.edu>
2287
2288 * gud.el (gud-minor-mode): New var.
2289 (gud-symbol, gud-val): New functions.
2290 (gud-find-file): Copy gud-minor-mode to the new buffer.
2291 (gud-menu-map): Include entries for commands that are not always
2292 available, using :enable to (de)activate them.
2293 (gud-minor-mode-map): New map. Add it to minor-mode-map-alist.
2294 (gud-mode-map): New map.
eaae8106 2295 (gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
a0b47716
SM
2296 (gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
2297 Don't set up gud's menu (it's done by the minor-mode).
2298 (gud-minibuffer-local-map): New.
2299 Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
2300 (gud-query-cmdline): New function.
2301 (gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it. Set gud-minor-mode.
2302 (gud-mode): Use define-derived-mode.
2303 Don't set up gud's menu (it's done by the minor-mode).
2304 (gud-chop-words): Remove.
2305 (gud-common-init): Use split-string instead.
2306 (gud-new-keymap, gud-make-debug-menu): Eradicate.
2307
2308 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
2309 Add keyword arg :name.
2310
2311 * diff-mode.el (diff-mode-menu): Add entry for applying hunk.
2312 (diff-count-matches, diff-split-hunk): New functions.
2313 (diff-mode-map): Bind C-c C-s to diff-split-hunk.
2314
2315 * pcvs-info.el (cvs-fi-conflict-face): New var.
2316
2317 * progmodes/sh-script.el (sh-mode-syntax-table) <defvar>:
2318 Make it into a simple syntax-table, shared among all submodes.
2319 (sh-heredoc-face): Re-introduce.
2320 (sh-font-lock-syntactic-face-function): New function.
2321 (sh-mode): Use it. Also use define-derived-mode.
2322 Remove old bogus setting of indent-region-function.
2323 (sh-set-shell): Don't set the syntax-table any more.
2324 (sh-mode-syntax-table) <defun>: Remove.
2325
f5ed37df
MB
23262000-11-12 Miles Bader <miles@gnu.org>
2327
2328 * textmodes/flyspell.el (flyspell-mode-on): Only output welcome
2329 message if interactive.
2330
0b074c2f
DL
23312000-11-12 Dave Love <fx@gnu.org>
2332
2333 * mail/feedmail.el: Fix header,
2334 (feedmail) <defgroup>: Add :link.
2335
2336 * view.el: Use local-map property, not keymap on mode-line string.
2337
2338 * scroll-all.el (scroll-all-mode): Customize variable. Add
2339 autoload cookie to function.
2340
2341 * lazy-lock.el: Remove compatibility code.
2342
2343 * finder.el (finder-known-keywords): Add `files', remove `vms'.
2344 (finder-help-echo): New variable.
2345 (finder-mouse-face-on-line): Add help-echo stuff.
2346 (finder-list-keywords, finder-list-matches): Use mapc.
2347
2348 * faces.el (face-font-registry-alternatives): Add :version.
2349
2350 * progmodes/etags.el (visit-tags-table-buffer): Beware of `t' in
2351 tags-table-list.
2352
a0b47716 2353 * net/browse-url.el (browse-url-browser-function): Update :version.
0b074c2f 2354
a0b47716 2355 * mail/sendmail.el (mail-font-lock-keywords): Use [:alpha:], not a-z.
0b074c2f
DL
2356 (mail-mode): Use [:alnum:] in some regexps.
2357
6d502396
DL
23582000-11-10 Dave Love <fx@gnu.org>
2359
2360 * ediff.el (ediff-regions-internal, ediff-documentation):
2361 * ediff-vers.el (rcs-ediff-view-revision): Put temp buffer into
2362 fundamental mode.
2363
2364 * ediff-util.el (ediff-status-info, ediff-debug-info): Put temp
2365 buffer into fundamental mode.
2366 (ediff-set-difference): Use copy-sequence if available.
2367
2368 * ediff-ptch.el (ediff-dispatch-file-patching-job): Check
2369 ediff-patch-map non-nil.
2370 (ediff-fixup-patch-map, ediff-fixup-patch-map)
2371 (ediff-fixup-patch-map, ediff-patch-file-internal): Put temp
2372 buffer into fundamental mode.
2373
2374 * ediff-merg.el (state-or-merge): Defvar when compiling.
2375
a82fe213
JR
23762000-11-10 Jason Rumney <jasonr@gnu.org>
2377
2378 * w32-fns.el (w32-add-charset-info): New function.
2379 (w32-charset-info-alist): Use it.
2380
52d89894
GM
23812000-11-10 Gerd Moellmann <gerd@gnu.org>
2382
2383 * faces.el (face-font-registry-alternatives): New user-option.
2384
178932de
SM
23852000-11-10 Stefan Monnier <monnier@cs.yale.edu>
2386
d7fa3319
SM
2387 * textmodes/texinfo.el (texinfo-block-default): New var.
2388 (texinfo-insert-block): Use it. Insert a newline if needed.
2389
178932de
SM
2390 * textmodes/fill.el (fill-indent-according-to-mode): New var.
2391 (fill-region-as-paragraph): Use it.
2392
2393 * textmodes/tex-mode.el (standard-latex-block-names): Add "math".
2394 (latex-mode): Tweak tex-*-(head|trail)er regexps.
2395 Tweak paragraph regexps to allow a leading [ \t]*.
2396 (tex-latex-block): Insert a newline if necessary.
2397 (latex-insert-item): Only insert a newline if necessary.
2398 (tex-guess-main-file): New function.
2399 (tex-main-file): Use it. Add arg `realfile'. Trim `.tex'.
2400 Set tex-main-file if TeX-master is provided.
2401 (tex-latex-indent-syntax-table): Map ( and ) to punctuation.
2402
bd02b8e0
GM
24032000-11-10 Gerd Moellmann <gerd@gnu.org>
2404
2405 * startup.el (command-line): Set the default tooltip-mode
2406 to t for graphical displays which implement x-show-tip.
2407
2408 * tooltip.el (tooltip-mode): Add a comment about startup.el
2409 setting the default value of this user-option.
2410
b29b03eb
SM
24112000-11-09 Stefan Monnier <monnier@cs.yale.edu>
2412
2413 * font-lock.el (font-lock-*-face) <defvar>: Move.
2414 (font-lock-defaults-alist): Mark obsolete.
2415 (font-lock-mode, font-lock-mode-hook) <defvar>: Remove.
2416 (font-lock-mode): Use define-minor-mode.
2417 (font-lock-support-mode): Tweak type to default to jit-lock-mode.
2418 (font-lock-turn-off-thing-lock): Be more explicit.
2419 (font-lock-apply-syntactic-highlight): Use string-to-syntax after eval.
2420 (font-lock-syntactic-face-function): New var.
2421 (font-lock-fontify-syntactically-region): Use it.
2422 (font-lock-doc-face): New.
2423
2424 * pcvs.el (cvs-enabledp): Ignore errors.
2425 (cvs-commit-filelist): Never query.
2426 (cvs-mode-insert): Always add a terminating / in the initial prompt.
2427 (cvs-mode-diff-backup): Use cvs-partition rather than delete-if-not.
2428 (cvs-do-removal): Use cvs-partition rather than delete-if.
2429 Use cvs-insert-strings, cvs-pop-to-buffer-same-frame and
2430 cvs-bury-buffer.
2431
2432 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
2433 Allow `next' to jump to after the end of the last match.
2434
778fbc46
GM
24352000-11-09 Gerd Moellmann <gerd@gnu.org>
2436
730c746c
GM
2437 * simple.el (byte-compiling-files-p): New function.
2438
2439 * textmodes/ispell.el (toplevel): Use byte-compiling-files-p
2440 if it is there.
2441
2442 * emacs-lisp/bytecomp.el (byte-compile-current-file): Bind it to
2443 nil again.
2444
778fbc46
GM
2445 * textmodes/ispell.el (ispell-library-path): Don't call
2446 check-ispell-version when byte-compiling because that starts
2447 an ispell process, and ispell might not be installed.
2448 (toplevel): Don't set up a menu when byte-compiling.
2449
2450 * emacs-lisp/bytecomp.el (byte-compile-current-file): Don't bind
2451 it, so that a boundp test can be used to determine if we're
2452 currently byte-compiling.
2453
5912c5bb
DL
24542000-11-09 Dave Love <fx@gnu.org>
2455
2456 * pcvs.el (uniquify-buffer-file-name): Wrap advice in
2457 eval-after-load.
2458
7bb054a5
GM
24592000-11-09 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2460
2461 * ps-print.el: Patch for variable initialization when spooling. Doc
2462 fix.
2463 (ps-output-list): Fun eliminated.
2464 (ps-begin-file, ps-begin-job): Code fix.
2465
9db2706e
DL
24662000-11-08 Dave Love <fx@gnu.org>
2467
2468 * ediff-wind.el (ediff-control-frame-parameters): Zero
2469 tool-bar-lines.
2470
f7eb32aa
GM
24712000-11-08 Gerd Moellmann <gerd@gnu.org>
2472
2473 * simple.el (shell-command, display-message-or-buffer)
2474 (shell-command-on-region): Mention resize-mini-windows in the doc
2475 string.
2476 (display-message-or-buffer): Take the value of resize-mini-windows
2477 into account.
2478
7b01b08c
GM
24792000-11-07 Gerd Moellmann <gerd@gnu.org>
2480
acad3c0b
GM
2481 * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
2482
7b01b08c
GM
2483 * dired.el (dired-between-files): Add `^. find' as an alternative
2484 to the regular expression, for find-dired.
2485
6f602bd0
SM
24862000-11-06 Stefan Monnier <monnier@cs.yale.edu>
2487
2488 * textmodes/texnfo-upd.el: Require texinfo.
2489 (defmacro, defgroup): Remove.
2490 (texinfo-section-to-generic-alist): Remove.
2491 Use texinfo-section-list instead (i.e. level is changed string->int).
2492 (texinfo-filter): New function.
2493 (texinfo-chapter-level-regexp, texinfo-subsubsection-level-regexp)
2494 (texinfo-subsection-level-regexp, texinfo-section-level-regexp):
2495 Use it. And use regexp-opt.
2496 (texinfo-find-higher-level-node, texinfo-hierarchic-level)
2497 (texinfo-update-menu-region-beginning)
2498 (texinfo-update-menu-higher-regexps, texinfo-update-menu-lower-regexps)
2499 (texinfo-update-the-node, texinfo-sequentially-update-the-node)
2500 (texinfo-update-menu-same-level-regexps): Update.
eaae8106 2501 (texinfo-update-node, texinfo-every-node-update)
6f602bd0
SM
2502 (texinfo-sequential-node-update): Remove autoload cookie.
2503
2504 * textmodes/texinfo.el (texinfo-section-list): Change majorheading.
2505 (texinfo-font-lock-syntactic-keywords): Use syntax-strings.
2506 (texinfo-chapter-level-regexp): Remove.
2507 (texinfo-mode): Hard code texinfo-chapter-level-regexp.
2508
bb216218
DL
25092000-11-06 Dave Love <fx@gnu.org>
2510
6f602bd0 2511 * autoinsert.el (auto-insert-alist) <latex-mode>: Use \documentclass.
b04f7626 2512
6f602bd0
SM
2513 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
2514 Match defun*.
bb216218 2515
ff8dd5d5
KH
25162000-11-06 Kenichi Handa <handa@etl.go.jp>
2517
2518 * composite.el (composition-function-table): Variable declaration
2519 moved to src/composite.c.
2520 (compose-chars-after): New optional arg object.
2521
e9da51a1
GM
25222000-11-06 Gerd Moellmann <gerd@gnu.org>
2523
e0c12c68
GM
2524 * bindings.el (mode-line-toggle-read-only)
2525 (mode-line-toggle-modified, mode-line-widen)
2526 (mode-line-abbrev-mode, mode-line-auto-fill-mode): New functions.
2527 (make-mode-line-mouse2-map): Rewritten.
2528 (mode-line-modified, mode-line-format, minor-mode-alist): Use new
2529 functions so that C-h k can show something with a doc string.
eaae8106 2530
e9da51a1
GM
2531 * startup.el (fancy-splash-delay): Set to 10 seconds.
2532 (fancy-splash-max-time): New user-option.
2533 (fancy-splash-stop-time): New variable.
2534 (fancy-splash-screens): Set it. Catch `stop-splashing'.
2535 (fancy-splash-screens-1): Throw `stop-splashing' when current
2536 time is greater than fancy-splash-stop-time.
2537
611dbdf0
SM
25382000-11-06 Stefan Monnier <monnier@cs.yale.edu>
2539
4d2806e2
SM
2540 * vc-hooks.el (vc-insert-file): Don't assume byte==char.
2541
611dbdf0
SM
2542 * pcvs.el (cvs-mode-marked): New arg `noquery'.
2543 Prompt user for a file rather than raising an error.
2544 (cvs-enabledp): Fix call to cvs-mode-marked.
2545 (cvs-insert-file): New function (extracted from cvs-mode-insert).
2546 (cvs-mode-insert): Use it. Change the init prompt' value.
2547 (cvs-mode-tree): Use cvs-status-cvstrees instead of cvs-status-trees.
2548
2549 * emacs-lisp/ewoc.el (ewoc-goto-prev, ewoc-goto-next):
2550 Don't pass default arg to ewoc-locate.
2551 (ewoc-collect): Return result in the right order.
2552
2553 * log-edit.el (log-edit-show-files): Use cvs-insert-strings.
2554
2555 * cvs-status.el (cvs-tree-merge): Use cvs-butlast (avoid CL).
2556 (cvs-status-get-tags): Fix regexp.
2557 (cvs-status-trees, cvs-status-cvstrees):
2558 Combine after change hooks and don't sit-for.
4d2806e2
SM
2559 (cvs-tree-use-jisx0208): Rename from cvs-tree-dstr-2byte-ready.
2560 (cvs-tree-char-*): Rename from cvs-tree-dstr-char-*.
611dbdf0
SM
2561 Use make-char rather than hard-coded cryptic data.
2562 (cvs-status-cvstrees): Convert the buffer to multibyte if necessary.
2563
2564 * pcvs-defs.el (cvs-menu): Add entries for tree and insert.
2565
2566 * pcvs-util.el (cvs-butlast, cvs-nbutlast): New (copied from CL).
2567 (cvs-insert-strings): New function.
2568
937b2877
MB
25692000-11-06 Miles Bader <miles@lsi.nec.co.jp>
2570
2571 * mwheel.el (mouse-wheel-scroll-amount): Renamed from
2572 `mwheel-scroll-amount'.
2573 (mouse-wheel-follow-mouse): Renamed from `mwheel-follow-mouse'.
2574 (mouse-wheel-mode): Use (featurep 'xemacs) instead of
2575 string-matching against the version string.
2576
c6c97763
KH
25772000-11-06 Kenichi Handa <handa@etl.go.jp>
2578
6eaec747
KH
2579 * language/thai.el ("Thai"): Set a lisp form that produces
2580 composed string in `sample-text' language info.
2581
2582 * language/tibetan.el ("Tibetan"): Set a lisp form that produces
2583 composed string in `sample-text' language info.
2584
2585 * international/mule-cmds.el (describe-language-environment): Eval
2586 `sample-text' data and insert the result.
2587
c6c97763
KH
2588 * international/mule-conf.el (compound-text): Define this coding
2589 system here. Make x-ctext and ctext aliases of it.
2590
2591 * language/european.el (compound-text, ctext): Moved to
2592 international/mule-conf.el.
2593
d1145f85
AI
25942000-11-05 Andrew Innes <andrewi@gnu.org>
2595
2596 * w32-fns.el (w32-version): New function.
2597
178a6a45
SM
25982000-11-05 Stefan Monnier <monnier@cs.yale.edu>
2599
2600 * progmodes/awk-mode.el: Update copyright.
2601 (awk-mode-abbrev-table): Remove.
2602 (awk-font-lock-keywords): Use regexp-opt.
2603 (awk-mode): Use define-derived-mode.
2604
2605 * emacs-lisp/regexp-opt.el (regexp-opt-group): Sort the strings
2606 when extracting a suffix.
2607
1ba90166
AS
26082000-11-04 Andre Spiegel <spiegel@gnu.org>
2609
2610 * vc-hooks.el (vc-insert-file): Rewritten. Don't bother about
2611 auto-save-mode.
2612
546790cb
JR
26132000-11-04 Jason Rumney <jasonr@gnu.org>
2614
2615 * language/european.el (decode-mac-roman): Test against r1 not r0.
2616
d247e32d
SM
26172000-11-03 Stefan Monnier <monnier@cs.yale.edu>
2618
fbf44f44
SM
2619 * progmodes/icon.el (icon-mode-map): Don't rebind \t.
2620 (icon-mode): Define indent-line-function.
2621 (icon-comment-indent): Simplify.
2622 (icon-font-lock-keywords-2): Use the `words' arg to regexp-opt.
2623
2624 * emacs-lisp/find-func.el (find-function-do-it): Quote the hook.
2625
2626 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
2627 Bind change-log-default-mode to defeat the caching done on it.
2628 Don't bother saving excursion any more.
2629
2630 * menu-bar.el (minibuffer maps): Use dolist rather than mapcar.
2631
2632 * frame.el (after-setting-font-hook): Rename hooks -> hook.
2633 (set-frame-font): Use the new name (and the old for compatibility).
2634
eaae8106
SS
2635 * toolbar/tool-bar.el (tool-bar-mode):
2636 * time.el (display-time-mode):
2637 * recentf.el (recentf-mode):
2638 * paren.el (show-paren-mode):
2639 * mwheel.el (mouse-wheel-mode):
2640 * msb.el (msb-mode):
2641 * jka-compr.el (auto-compression-mode):
2642 * image-file.el (auto-image-file-mode):
2643 * hl-line.el (hl-line-mode):
2644 * delsel.el (delete-selection-mode):
2645 * autoinsert.el (auto-insert-mode):
fbf44f44
SM
2646 * complete.el (partial-completion-mode): Drop unneeded positional args.
2647
eaae8106 2648 * info.el (Info-mode):
79372165 2649 * comint.el (comint-mode): Don't bother with make-local-hook.
fbf44f44 2650
d247e32d
SM
2651 * log-edit.el (log-edit-menu): New menu.
2652
4921558e
MB
26532000-11-03 Miles Bader <miles@gnu.org>
2654
2655 * wid-edit.el (widget-end-of-line): Reinstate, with a new
2656 definition, so that trailing spaces are handled properly.
2657 (widget-field-keymap, widget-text-keymap): Likewise C-e binding.
2658
1fc02b3c
GM
26592000-11-03 Gerd Moellmann <gerd@gnu.org>
2660
2661 * startup.el (fancy-splash-text, fancy-splash-text): Use a single
2662 tab character.
2663 (fancy-splash-screens): Set tab-width to 20.
2664
51d001f7
DL
26652000-11-03 Dave Love <fx@gnu.org>
2666
2667 * comint.el (comint-completion-addsuffix): Fix custom type.
2668
ba22aeff
SM
26692000-11-02 Stefan Monnier <monnier@cs.yale.edu>
2670
2671 * font-lock.el (font-lock-buffers): Remove.
2672 (font-lock-global-modes): Define with easy-mmode-define-global-mode.
2673 (font-lock-change-major-mode): Remove.
2674 (turn-on-font-lock-if-enabled): Only apply to the current buffer.
2675 (font-lock-default-fontify-region): Extend the multiline
2676 fontification to whole lines.
2677 (font-lock-fontify-anchored-keywords)
2678 (font-lock-fontify-keywords-region): If matching just one
2679 line (with \n) only mark the \n as multiline.
2680
2681 * emacs-lisp/easy-mmode.el (define-minor-mode): Remove :toggle arg.
2682 Correctly handle the case where several :group args are supplied.
2683 Allow :extra-args.
2684 (easy-mmode-define-global-mode): Allow :extra-args.
2685 Correctly handle the case where several :group args are supplied.
2686
9c887ada
MB
26872000-11-02 Miles Bader <miles@gnu.org>
2688
eaae8106 2689 * calendar/calendar.el (diary-face, calendar-today-face)
9c887ada
MB
2690 (holiday-face): Remove dependency on `window-system'.
2691
7f25090d
KR
26922000-11-02 Ken Raeburn <raeburn@gnu.org>
2693
2694 * Makefile.in (emacs): Set EMACSLOADPATH always.
2695 (update-authors, .el.elc, compile-files): Don't do it explicitly
2696 here.
9b911107 2697 (compile-files): Bomb out if compilation of a file fails.
7f25090d 2698
7dd6009c
DL
26992000-11-02 Dave Love <fx@gnu.org>
2700
2701 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup.
2702
94821e4f
EZ
27032000-11-02 Eli Zaretskii <eliz@is.elta.co.il>
2704
2705 * mail/emacsbug.el (report-emacs-bug): Fix whitespace and
2706 punctuation in the warning inserted into the *mail* buffer.
2707
1ac3fc42
GM
27082000-11-02 Gerd Moellmann <gerd@gnu.org>
2709
57731876
GM
2710 * emacs-lisp/authors.el (authors-public-domain-files): New variable.
2711 (authors-public-domain-p): New function.
2712 (authors-print): Use it.
2713
975f82c9
GM
2714 * help.el (view-emacs-news): Use ONEWS.* instead of NEWS.* files.
2715
1ac3fc42
GM
2716 * mail/mh-e.el, mail/mh-comp.el: Change maintainer.
2717
4b3eb10f
GM
27182000-11-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2719
975f82c9 2720 * ps-print.el: Extension for even/odd printing. Doc fix.
4b3eb10f
GM
2721 (ps-print-version): New version number (6.3.1).
2722 (ps-even-or-odd-pages): Customization fix.
2723 (ps-print-page-p, ps-begin-file, ps-begin-job, ps-page-number)
2724 (ps-header-sheet, ps-header-page, ps-end-job): Code fix.
2725 (ps-page-count): Var replaced by `ps-page-column'.
2726 (ps-page-column, ps-page-sheet, ps-page-printed): New vars.
2727 (ps-print-sheet-p): New fun.
2728
7da794df
MB
27292000-11-02 Miles Bader <miles@lsi.nec.co.jp>
2730
2731 * tooltip.el (tooltip-gud-tips-setup): New function.
2732 (tooltip-gud-tips-p): Add :set to call tooltip-gud-tips-setup.
2733 (tooltip-mode): Call tooltip-gud-tips-setup.
2734 (tooltip-gud-tips): Use `gud-basic-call' instead of
2735 process-send-string, so the prompt gets frobbed appropriately.
2736 Handle nil return value from `tooltip-gud-print-command'.
2737
0e40b809
EL
27382000-11-01 Eric M. Ludlam <zappo@ultranet.com>
2739
2740 * comint.el (comint-add-to-input-history): New function.
2741 (comint-send-input): Use `comint-add-to-input-history'.
2742
50ada0db
MB
27432000-11-02 Miles Bader <miles@lsi.nec.co.jp>
2744
973a3104
MB
2745 * info.el (info-menu-header): New face.
2746 (Info-fontify-menu-headers): New function.
2747 (Info-fontify-node, Info-insert-dir): Call `Info-fontify-menu-headers'.
2748
50ada0db
MB
2749 * info.el (Info-insert-dir): Don't include blank lines at
2750 beginning of additional dir files (one is added automatically).
2751
bff53411
SM
27522000-11-01 Stefan Monnier <monnier@cs.yale.edu>
2753
2754 * emacs-lisp/easy-mmode.el (define-minor-mode):
2755 Revert the latest changes.
2756 Allow the three positional arguments to be skipped and replaced
2757 by keyword arguments.
2758 Add a :toggle argument to determine whether a nil arg means toggle
2759 or means turn-on. The default is unchanged.
2760 Add a call to force-mode-line-update.
2761
6b8a0b2d
DL
27622000-11-01 Dave Love <fx@gnu.org>
2763
2764 * emacs-lisp/elp.el (elp-restore-function): Remove autoload
2765 cookie.
2766
5bf99100
MB
27672000-11-01 Miles Bader <miles@lsi.nec.co.jp>
2768
2769 * calendar/calendar.el (diary-face, holiday-face): Add
2770 dark-background variants.
2771
a4032611
SS
27722000-10-31 Sam Steingold <sds@gnu.org>
2773
2774 * textmodes/tex-mode.el (tex-file): Use `default-directory' when
2775 `tex-main-file' does not have directory in it.
2776
c286608e
SM
27772000-10-31 Stefan Monnier <monnier@cs.yale.edu>
2778
2779 * cus-edit.el (custom-mode-map): Switch back to a sparse keymap.
2780
4836835a
TTN
27812000-10-31 Thien-Thi Nguyen <ttn@gnu.org>
2782
2783 * ediff-init.el (ediff-prepare-buffer-hook): Expand docstring, no
2784 functional change.
2785
26dcb81b
GM
27862000-10-31 Gerd Moellmann <gerd@gnu.org>
2787
2788 * files.el (find-file-noselect): When we expand a wildcard, return
2789 a list of buffers, as we should do according to the doc string.
2790
49fc4500
KR
27912000-10-31 Ken Raeburn <raeburn@gnu.org>
2792
2793 * loadup.el (top level): Adjust load path if program name is
2794 "../src/bootstrap-emacs", in case it's not dumped and thus the
2795 load path adjustment hasn't already been done.
2796
ea0c615d
GM
27972000-10-31 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2798
2799 * ps-print.el: Fix bug on selected pages for printing. Use
2800 `color-values' for Emacs 21. Ensure fontification when jit-lock
2801 is on. Try to avoid warning messages when compiling. Doc Fix.
2802 (ps-print-version): New version number (6.3).
2803 (ps-color-device): Use `color-values' to determine if device
2804 supports color.
2805 (ps-color-values): Try to use `x-color-values' when using XEmacs.
2806 (ps-print-page-p): Changed from defsubst to defun.
2807 (ps-page-number): Changed from defmacro to defun.
2808 (ps-header-sheet, ps-header-page): Fix bug on selected pages for
2809 printing.
c286608e 2810 (ps-print-ensure-fontified): Ensure fontification when jit-lock is on.
ea0c615d
GM
2811 (ps-end-file, ps-dummy-page): Funs eliminated.
2812 (ps-print-color-scale): Changed default value.
2813 (ps-page-n-up, ps-print-page-p): New internal vars.
2814 (ps-print-preprint, ps-output, ps-begin-file, ps-begin-page)
2815 (ps-plot-region, ps-generate, ps-end-job): Code fix.
2816
9e20722f
GM
2817 * delim-col.el: Little programming improvement.
2818 (delimit-columns-str): New macro.
2819 (delimit-columns-region, delimit-columns-rectangle): Code fix.
2820
d7a0fd00
KH
28212000-10-31 Kenichi Handa <handa@etl.go.jp>
2822
c286608e
SM
2823 * term/mac-win.el (decode-mac-roman, encode-mac-roman, mac-roman):
2824 Moved to european.el.
d7a0fd00
KH
2825 (ccl-encode-mac-roman-font, fontset-mac): Modified for
2826 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
c286608e
SM
2827 (mac-roman-kbd-insert, mac-roman-kbd-mode): These functions deleted.
2828 (mac-roman-kbd-mode, mac-roman-kbd-mode-map): These variables deleted.
d7a0fd00 2829
234be340
DL
28302000-10-30 Dave Love <fx@gnu.org>
2831
2832 * progmodes/cc-menus.el (imenu-generic-expression)
2833 (imenu-progress-message): Only defvar when compiling.
2834
4edc4a39
DL
2835 * emacs-lisp/elp.el (elp-unload-hook): New function.
2836
2837 * loadhist.el (unload-feature): Call elp-restore-function,
2838 checking for symbols; don't use elp-restore-all.
2839 (loadhist-hook-functions): Doc fix.
2840
70c825df
SM
28412000-10-30 Stefan Monnier <monnier@cs.yale.edu>
2842
2843 * log-edit.el (log-edit-confirm): Fix the default.
2844
1d3baf74
GM
28452000-10-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2846
2847 * delim-col.el: Little fix: replace delimit-columns-align-columns by
2848 delimit-columns-format.
2849 (delimit-columns-region, delimit-columns-rectangle): Code fix.
4836835a 2850
1ec321a7
MB
28512000-10-30 Miles Bader <miles@lsi.nec.co.jp>
2852
2853 * comint.el (comint-replace-by-expanded-history): Don't use
2854 comint-get-old-input (we're not looking at *old* input).
2855 (comint-get-old-input-default): If using fields, signal an error
2856 when the point is not in an input field.
2857
70737ea9
KH
28582000-10-30 Kenichi Handa <handa@etl.go.jp>
2859
2860 * international/mule-conf.el: New charsets mule-unicode-2500-33ff
2861 and mule-unicode-e000-ffff.
2862
fa0cb51d 2863 * international/mule.el (decode-char, encode-char): New functions.
70737ea9
KH
2864 (make-coding-system): Accept a symbol of translation table as a
2865 value of property `safe-chars'.
2866
2867 * international/mule-cmds.el (encode-coding-char): Check property
2868 safe-chars instead of safe-charsets.
2869
2870 * international/fontset.el (fontset-default): Modified for
2871 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
2872 (x-font-name-charset-alist): Likewise.
2873 (ccl-encode-unicode-font): New CCL program. Record it in
2874 font-ccl-encoder-alist to be used for fonts "ISO10646-1".
2875
70c825df
SM
2876 * language/european.el (mac-roman-decoder, mac-roman-encoder):
2877 New translation tables.
70737ea9
KH
2878 (decode-mac-roman, encode-mac-roman): Definition of these CCL
2879 programs are modified and moved from mac-win.el.
2880 (mac-roman): Definition of this coding system is modified and
2881 moved from mac-win.el.
4836835a 2882
fda2ce24 28832000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
4836835a 2884
1d3baf74 2885 * ediff-wind.el (ediff-setup-control-frame): Enclose
fda2ce24 2886 face-attribute in condition-case to avoid errors in older emacsen.
70737ea9 2887
dd4d3cb6
MB
28882000-10-29 Miles Bader <miles@gnu.org>
2889
2890 * custom.el (custom-add-to-group): Allow multiple entries for a
2891 given value OPTION, as long as their widget types are different.
2892 * cus-edit.el (custom-face-value-create): If face name doesn't end
2893 with "face", add such here (similar to custom group widgets).
2894
2895 * comint.el (comint-highlight-prompt): Add :type.
2896
dace60cf
JW
28972000-10-28 John Wiegley <johnw@gnu.org>
2898
2899 * textmodes/flyspell.el (flyspell-maybe-correct-transposition):
2900 Changed this function to operate on a temporary buffer instead of
2901 the main buffer. This not only keeps flyspell from marking a
2902 buffer as changed that wasn't, but it solves the jumpy cursor
2903 problem when attempts are made to edit incorrect words.
2904 (flyspell-maybe-correct-doubling): Same change as for
2905 `flyspell-maybe-correct-transposition'.
2906
2907 * calendar/timeclock.el (timeclock-log): Doc fix.
2908 (timeclock-last-event): Doc fix.
2909 (timeclock-log): Kill the timelog buffer after appending a new
2910 event.
2911 (timeclock-find-discrep): Use a temp buffer to read in the
2912 timelog, instead of visiting the file.
2913 (timeclock-log-data): A new function, along with a host of helper
2914 functions, for the purpose of making timelog data accessible to
2915 programmers.
2916
2917 * eshell/esh-mode.el (window-height test): Make certain that
2918 `eshell-stringify-t' is non-nil.
2919 (eshell-password-prompt-regexp): Changed to a much simpler
2920 password regexp.
2921 (eshell-send-input): If `eshell-invoke-directly' returns t,
2922 directly invoke the parsed command using `eval'. This improves
2923 turn-around time on simple commands by a factor of three or
2924 greater, such as cd, ls, pwd, etc. -- which get used very often.
2925 It also conserves thousands of cons cells per call (since
2926 `eshell-do-eval' consumes memory like a Cookie Monster set loose
2927 in the Pacific Cookie Company).
2928
2929 * eshell/esh-test.el (eshell-test): Whitespace fix.
2930
2931 * eshell/em-ls.el (eshell-ls-insert-directory): Make
2932 `eshell-ls-initial-args' nil when inserting directory contents.
2933
2934 * eshell/em-script.el (eshell-script-initialize): Add names to
2935 `eshell-complex-commands, since `source' and `.' are complex.
2936
0467b076
EZ
2937 * eshell/esh-cmd.el (eshell-rewrite-for-command)
2938 (eshell-rewrite-while-command): Use `eshell-protect' instead of
dace60cf
JW
2939 `eshell-copy-handles'.
2940 (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
2941 bodies.
2942 (eshell-separate-commands): Whitespace fix.
2943 (eshell-complex-commands): Added a new list of names, for
2944 determining whether a given command is as simple as it looks.
2945 (eshell-invoke-directly): New function. Returns t if a command
2946 should be invoked directly (using `eval'), rather than indirectly
2947 using `eshell-do-eval'.
2948 (eshell-do-eval): Whitespace fix.
2949
2950 * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
2951 which provides an emulation of the DOS shell behavior of assuming
2952 that cp/mv/ln should copy/move/link to the current directory.
2953 (eshell-remove-entries): Added a doc string.
2954 (eshell-shuffle-files): Removed the check for `target' being null.
2955 (eshell-mvcp-template, eshell-mvcpln-template): Renamed
2956 `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
2957 it to do a smarter check of whether a destination was provided.
2958 (eshell/mv, eshell/cp): Enable `:preserve-args'.
2959 (eshell/ln): Enable `:preserve-args', and use
2960 `eshell-mvcpln-template' to implement the body of the function.
0467b076
EZ
2961 (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep)
2962 (eshell/du, eshell/diff, eshell/locate): Stringify the argument
dace60cf
JW
2963 list after flattening it. This makes it possible to cat files
2964 with numerical names.
2965 (eshell-unix-initialize): Added several names to
2966 `eshell-complex-commands.
2967 (eshell-unix-command-complex-p): Return t if a given command name
2968 may result in external processes being invoked.
2969
2970 * eshell/em-glob.el (eshell-glob-show-progress): Make this
2971 variable nil by default, since it slows down glob processing by a
2972 factor of two or more, and increases memory consumption.
2973
2974 * eshell/em-smart.el: Added a note about how memory consumptive
2975 smart display mode can be (at least this is true in Emacs 21).
2976 (eshell-smart-initialize): Whitespace fix.
2977 (eshell-refresh-windows): Use `if' instead of `when'.
2978 (eshell-smart-scroll-window): Calling `save-current-buffer' was
2979 not necessary.
2980 (eshell-currently-handling-window): Added a missing global
2981 variable.
2982
2983 * eshell/em-ls.el (eshell-do-ls): Code simplification.
2984 (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
2985 Whitespace fix.
2986 (eshell-ls-exclude-hidden): Added this variable in addition to
2987 `eshell-ls-exclude-regexp'. This one prevents files beginning
2988 with . from even being read, which can improve memory consumption
2989 quite a bit.
2990 (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
2991 read file entries beginning with a dot. In home directories with
2992 lots of hidden files, fully two-thirds of the time spent in ls is
2993 used to read directory entries that are immediately thrown away.
2994 (eshell-ls-initial-args): Added back this configuration variable,
2995 for specifying default initial arguments to every call to ls.
2996 Much faster than using an alias to do the same thing.
2997 (eshell-do-ls): Use `eshell-ls-initial-args', if set.
2998 (eshell-ls-dir): Whitespace change.
2999
3000 * eshell/em-dirs.el (eshell/pwd): Small code simplification.
3001
3002 * eshell/esh-util.el: Don't require `ange-ftp' if it's not
3003 available.
3004 (eshell-stringify-t): Added a customization variable, to indicate
3005 whether `t' should be rendered as a string at all. If not, one
3006 can still determine if the result of an expression is true using
3007 "file-exists-p FILE && echo true".
3008 (eshell-stringify): If `eshell-stringify-t' is nil, don't
3009 stringify t!
3010
3011 * eshell/esh-module.el: Whitespace fix.
3012
3013 * eshell/em-alias.el (eshell-alias-initialize): Added
3014 `eshell-command-aliased-p' to `eshell-complex-commands'.
3015 (eshell-command-aliased-p): New function that returns t if a
3016 command name names an aliased.
3017
657f9cb8 30182000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
4836835a 3019
0467b076 3020 * viper-cmd.el (viper-preserve-cursor-color): New test that avoids
70c825df 3021 redrawing the screen when changing cursor color.
0467b076
EZ
3022 (viper-insert-state-pre-command-sentinel)
3023 (viper-replace-state-pre-command-sentinel)
70c825df
SM
3024 (viper-replace-state-post-command-sentinel):
3025 Use viper-preserve-cursor-color.
657f9cb8
MK
3026 Many functions changed to use viper= instead of = when comparing
3027 characters.
0467b076 3028 * viper-util.el (viper-memq-char,viper=): New functions for
657f9cb8 3029 working with characters.
0467b076 3030 (viper-change-cursor-color): Fixed buglet.
657f9cb8
MK
3031 Many functions changed to use viper= instead of = when comparing
3032 characters.
0467b076 3033 * viper.el (viper-insert-state-mode-list): Added eshell.
4836835a 3034
0467b076 3035 * ediff-init.el (ediff-before-setup-hook): New hook.
657f9cb8 3036 Several typos fixed in various docstrings.
0467b076
EZ
3037 * ediff-merg.el (ediff-show-clashes-only): Docstring typo fixed.
3038 * ediff-nult.el (ediff-before-session-group-setup-hooks): New
657f9cb8 3039 hook.
0467b076
EZ
3040 (ediff-show-meta-buffer): Run ediff-before-session-group-setup-hooks.
3041 * ediff-util.el (ediff-setup): Run ediff-before-setup-hook.
3042 (ediff-other-buffer): Use selected buffers if in Buffer-menu buffer.
3043 (ediff-get-selected-buffers): New function.
3044 * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal)
3045 (ediff-vc-merge-internal,ediff-rcs-merge-internal): Use
657f9cb8 3046 save-window-excursion.
0467b076 3047 * ediff-wind.el (ediff-skip-unsuitable-frames): More robust
657f9cb8 3048 termination check in while loop.
0467b076 3049 * ediff.el (ediff-get-default-file-name): Better defaults when in
657f9cb8 3050 dired buffer.
0467b076
EZ
3051 (ediff-files,ediff-merge-files,ediff-files3)
3052 (ediff-merge-files-with-ancestor): Use ediff-get-default-file-name.
4836835a 3053
4f490d99
DL
30542000-10-28 Dave Love <fx@gnu.org>
3055
3056 * info.el (Info-fontify-node): Add help-echo for menu items.
3057
45b84006
EZ
30582000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
3059
5ebc02b3
EZ
3060 * startup.el (normal-top-level): If the value of $TERM indicates
3061 we are running from xterm or one of its work-alikes, default to a
3062 light background mode.
3063
45b84006
EZ
3064 Support for -fg, -bg, and -rv command-line arguments for TTYs:
3065 * faces.el (tty-handle-reverse-video): New function.
3066 (tty-create-frame-with-faces): Call it.
3067
3068 * frame.el (frame-notice-user-settings): Don't apply
3069 default-frame-alist and initial-frame-alist to MS-DOS frames.
3070 Call tty-handle-reverse-video, frame-set-background-mode, and
3071 face-set-after-frame-default for non-MS-DOS frames.
3072
3073 * startup.el (tty-long-option-alist): New variable.
3074 (tty-handle-args): New function.
3075 (command-line): Call tty-handle-args.
3076
3077 * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
3078 startup.el now does that for all character-terminal frames.
3079
eab6e8b9
MB
30802000-10-28 Miles Bader <miles@gnu.org>
3081
3082 * emacs-lisp/easy-mmode.el (define-minor-mode): Generate
3083 `turn-on-MODE' and `turn-off-MODE' functions unless the mode is
3084 global. If :global is followed by a non-nil but non-t value,
3085 make the mode buffer-local, but also generate a `global-MODE'
3086 version using `easy-mmode-define-global-mode'. Add
3087 :conditional-turn-on keyword argument.
3088
51a29efc
DL
30892000-10-28 Dave Love <fx@gnu.org>
3090
3091 * international/latin1-disp.el (latin1-char-displayable-p): Don't
3092 use window-system.
3093
d71d7114
EZ
30942000-10-27 Eli Zaretskii <eliz@is.elta.co.il>
3095
3096 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
3097 Don't call find-buffer-file-type-coding-system. Instead, just
3098 set eol-type to -unix if inhibit-eol-conversion is in effect, or
3099 if the file is on an untranslated filesystem.
3100 (add-untranslated-filesystem): Use "D" instead of "f" inside
3101 interactive.
3102
1f9cab4b
DL
31032000-10-27 Dave Love <fx@gnu.org>
3104
70c825df 3105 * textmodes/refill.el (refill-late-fill-paragraph-function): New var.
1f9cab4b
DL
3106 (refill-mode): Use it.
3107
70c825df
SM
31082000-10-27 Stefan Monnier <monnier@cs.yale.edu>
3109
3110 * international/quail.el (quail-activate): Don't make-local-hook.
3111
7432cf10
AS
31122000-10-27 Andre Spiegel <spiegel@gnu.org>
3113
4836835a 3114 * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
7432cf10 3115 manual backups and file.~<rev>.~ for automatic ones.
08a1fcb7
AS
3116 (vc-make-version-backup): Don't do it on MS-DOS without long file
3117 names.
4836835a 3118
7432cf10
AS
3119 * vc.el (vc-version-other-window): If an automatic backup of the
3120 desired version exists, rename it instead of copying it.
3121
4836835a
TTN
3122 * vc-cvs.el (vc-cvs-checkin): Check both status and error message
3123 after command. If there's an unexpected error, signal it instead
7432cf10 3124 of being silent.
e1483c38 3125 (vc-cvs-merge-news): Be prepared for no news at all.
4836835a 3126
05ea7ef2
MB
31272000-10-27 Miles Bader <miles@lsi.nec.co.jp>
3128
fd1035aa
MB
3129 * shell.el (shell): Add BUFFER argument.
3130 * comint.el (make-comint-in-buffer): New function.
3131 (make-comint): Use it.
3132
05ea7ef2
MB
3133 * faces.el (face-spec-choose): Change syntax so that the list of
3134 attribute-value pairs is now the cdr of each clause, not the cadr.
3135 Detect old-style entries, and handle them. Use pop.
3136
835a55fe
SM
31372000-10-26 Stefan Monnier <monnier@cs.yale.edu>
3138
f5ab1cdd
SM
3139 * cus-edit.el (custom-mode-map): Use a sparse map.
3140 (custom-mode): Don't bother with make-local-hook.
3141
3142 * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
3143
835a55fe
SM
3144 * vc.el (vc-start-entry): Only erase the buffer if comment is set.
3145
c13b0ec8
GM
31462000-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3147
3148 * ps-print.el: Avoid compilation gripes.
3149 (ps-print-version): New version number (6.2.1).
4836835a 3150
e9f63196
DL
31512000-10-26 Dave Love <fx@gnu.org>
3152
0b95284b
DL
3153 * menu-bar.el: Modify some menu item help strings.
3154 (menu-bar-help-menu): Add link to MORE.STUFF.
3155
e9f63196
DL
3156 * cus-edit.el (custom-mode): Add `special' mode-class property.
3157
3158 * wid-browse.el (widget-browse-mode): Likewise.
3159
3160 * wid-edit.el (widget-specify-field): Revert to using local-map
3161 property, not keymap.
3162
e276a14a
MB
31632000-10-26 Miles Bader <miles@lsi.nec.co.jp>
3164
c1545d88
MB
3165 * wid-edit.el (widget-field-end): When checking for a `boundary'
3166 field, do so in the correct buffer.
3167
3c1b77ca
MB
3168 * simple.el (undo): Correctly distinguish between numeric and
3169 non-numeric prefix args in non-transient-mark-mode, as per the doc
3170 string. When in transient-mark-mode, treat all prefix-args as
3171 numeric.
3172
f5ab1cdd
SM
3173 * simple.el (previous-matching-history-element): Miscellaneous cleanup.
3174 Position point on match. Handle N == 0 correctly.
22626d9d
MB
3175
3176 * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
3177 (comint-mode-map): Reverse order of `comint-write-output' and
3178 `comint-append-output-to-file'.
3179 (comint-append-output-to-file): Reinstate this function, for the
3180 benefit of the menu.
3181
d97151cb
SM
31822000-10-25 Stefan Monnier <monnier@cs.yale.edu>
3183
3184 * vc.el (vc-version-other-window): Bind `file'.
3185
ea7d6f5b
GM
31862000-10-25 Gerd Moellmann <gerd@gnu.org>
3187
f5ab1cdd 3188 * Makefile.in (update-authors): New target for maintenance purposes.
ea7d6f5b
GM
3189
3190 * emacs-lisp/authors.el (batch-update-authors): New function.
3191 (authors-fixed-entries): New defconst.
3192 (authors-add-fixed-entries): New function.
3193 (authors): Call it.: Don't process lispref/.
3194
17c25cea
JR
31952000-10-25 Jason Rumney <jasonr@gnu.org>
3196
3197 * cus-edit.el (custom-button-face, custom-button-pressed-face):
3198 Merge x w32 and mac definitions.
3199
4ecda532
GM
32002000-10-25 Gerd Moellmann <gerd@gnu.org>
3201
3202 * menu-bar.el (menu-bar-options-menu): Add a help string for
3203 `uniquify'.
3204
b6735035
GM
32052000-10-25 Stephen Gildea <gildea@alum.mit.edu>
3206
f5ab1cdd
SM
3207 * time-stamp.el (time-stamp-string-preprocess):
3208 Fix a wrong type argument error.
b6735035 3209
f4cbc7a0
MB
32102000-10-25 Miles Bader <miles@gnu.org>
3211
3212 * recentf.el (recentf-mode): Variable removed.
3213 (recentf-mode): Use `define-minor-mode'.
3214
3215 * mwheel.el (mouse-wheel-mode): New global minor mode.
3216 (mwheel-install): Use `mouse-wheel-mode'.
3217
f4b020f6
DL
32182000-10-25 Dave Love <fx@gnu.org>
3219
f5ab1cdd
SM
3220 * progmodes/cperl-mode.el (cperl-mode):
3221 Set normal-auto-fill-function correctly.
072cb6f9 3222
f4b020f6
DL
3223 * wid-edit.el (widget-field-keymap, widget-text-keymap): Don't
3224 inherit from global-map and don't nullify menu-bar and tool-bar
0b95284b 3225 bindings.
f4b020f6 3226
ebe2a441
MB
32272000-10-25 Miles Bader <miles@lsi.nec.co.jp>
3228
ff4dcd4b
MB
3229 * wid-edit.el (widget-field-at): New function.
3230 (widget-at, widget-field-activate): Use it.
3231 (widget-tabable-at): Use `widget-at'.
3232 (widget-specify-field): If the terminating character of the widget
3233 field (which is read-only) is a newline, put it into a special
3234 `boundary' field so that C-n/C-p act more naturally.
3235 (widget-field-end): Also don't subtract one if a special
3236 `boundary' field has been added after the widget field.
3237
ebe2a441
MB
3238 * comint.el (comint-output-filter, comint-send-input): Don't
3239 bother adding stickiness fields to overlays to fool the field
3240 code, since it should notice the overlay insertion-types now.
ff4dcd4b 3241
ebe2a441
MB
3242 * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
3243 Replace with aliases of the normal emacs b-o-l/e-o-l functions.
3244 (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
3245
fe50b6ab
GM
32462000-10-24 Gerd Moellmann <gerd@gnu.org>
3247
53df4dda
GM
3248 * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
3249 (authors): Set file coding system to iso-2022-7bit. Add
3250 file-local variables to output buffer.
3251
4836835a 3252 * files.el (after-find-file): Don't print any warnings if
fe50b6ab
GM
3253 WARN is nil.
3254
53df4dda
GM
32552000-10-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3256
3257 * ps-print.el (ps-generate): Fix odd/even pages printing bug.
3258
3259 * delim-col.el: Now there is a column formatting mechanism.
3260 Modified to customization mechanisms convention. Doc fix.
3261 (columns): New group for delim-col.
3262 (delimit-columns-before, delimit-columns-after)
3263 (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
3264 (delimit-columns-end): New vars.
3265 (delimit-columns-customize, delimit-columns-format): New funs.
3266 (delimit-columns-region, delimit-columns-rectangle)
3267 (delimit-columns-rectangle-line): Modified to support column
3268 formatting.
4836835a 3269
a9839779
DL
32702000-10-24 Dave Love <fx@gnu.org>
3271
3272 * log-edit.el (log-edit): Add :version and a :group for vc.
3273
df0267b8
GM
32742000-10-24 Gerd Moellmann <gerd@gnu.org>
3275
9acc3873
GM
3276 * files.el (after-find-file): Don't print a message ``New file''
3277 if WARN is nil.
3278
63e1b552
GM
3279 * wid-edit.el (widget-field-keymap, widget-text-keymap): Define
3280 the tool-bar map as nil, as for the menu-bar. Otherwise, we'll
3281 get duplicate tool-bar entries because we'll see the global ones
3282 on more than one path through keymaps.
3283
1946f901
GM
3284 * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
3285
df0267b8
GM
3286 * progmodes/cmacexp.el: Change Francesco's email address.
3287
ae3b264b
KH
32882000-10-24 Kenichi Handa <handa@etl.go.jp>
3289
3290 * window.el (fit-window-to-buffer): Adjust point of the window
3291 buffer, not that of the current buffer.
3292
23afac01
EZ
32932000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
3294
3295 * progmodes/cmacexp.el: Update the euthor's email address.
3296
22d1a4ed
MB
32972000-10-24 Miles Bader <miles@lsi.nec.co.jp>
3298
3299 * faces.el (face-spec-set-match-display): Add `graphic' display
3300 type (the inverse of `tty'). Use `display-graphic-p' instead of
3301 the window-system variable.
3302
f408aa48
KH
33032000-10-24 Kenichi Handa <handa@etl.go.jp>
3304
3305 * international/isearch-x.el (isearch-with-input-method): Call
3306 input-method-function with the first event in
3307 unread-command-events.
3308
94fe8a31
MB
33092000-10-24 Miles Bader <miles@lsi.nec.co.jp>
3310
3311 * faces.el (face-default-spec, face-user-default-spec): Make
3312 defsubsts.
3313
8f47302e
AC
33142000-10-24 Andrew Choi <akochoi@i-cable.com>
3315
3316 * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
3317 New charsets.
3318
3319 * term/mac-win.el: Remove definitions of mac-roman-lower and
3320 mac-roman-upper, require dired, and define instead of set
3321 mac-ready-for-drag-n-drop to avoid compilation error.
3322
446c097e
AI
33232000-10-23 Andrew Innes <andrewi@gnu.org>
3324
3325 * files.el (make-backup-file-name-1) [windowsnt, ms-dos]: Remove
3326 superfluous calls to subst-char-in-string; instead apply
3327 expand-file-name after convert-standard-filename to ensure
3328 expected directory separators are used.
3329
379b70e7
EZ
33302000-10-23 Eli Zaretskii <eliz@is.elta.co.il>
3331
3332 * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
3333
85c766e9
DL
33342000-10-23 Dave Love <fx@gnu.org>
3335
b7e03a67
DL
3336 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
3337 (tool-bar-add-item): Set foreground and background for XBM icons.
3338
3339 * international/latin1-disp.el (latin1-char-displayable-p): New
3340 function (from Handa).
3341 (latin1-display-check-font): Use it.
3342
0dcf8835
DL
3343 * imenu.el (imenu--create-keymap-2): Build menu with menu-item
3344 using :key-sequence, making it much more usable. Use nconc, not
3345 append.
3346 (imenu--create-keymap-1): Avoid append.
3347
85c766e9 3348 * textmodes/refill.el: Remove bits redundant with define-minor-mode.
4836835a 3349
cb3069bb
MB
33502000-10-23 Miles Bader <miles@lsi.nec.co.jp>
3351
3352 [the following changes fix a bug where `define-minor-mode' didn't
3353 correctly generate :require clauses for defcustoms in compiled files]
3354 * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
3355 (byte-compile-log-file, byte-compile-log-1): Don't set
3356 `byte-compile-current-file' to nil. Instead set
3357 `byte-compile-last-logged-file' to it. Test whether
3358 byte-compile-current-file equals byte-compile-last-logged-file
3359 instead of whether its nil.
3b6542ba 3360 (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
cb3069bb 3361
6db6243b
SM
33622000-10-23 Stefan Monnier <monnier@cs.yale.edu>
3363
3364 * textmodes/refill.el: Fix var names in doc.
3365 (refill-mode): Don't bother with make-local-hook anymore.
3366
98490598
MB
33672000-10-23 Miles Bader <miles@lsi.nec.co.jp>
3368
e01cd227
MB
3369 * faces.el (face-user-default-spec, face-default-spec): New functions.
3370 (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
4836835a 3371 (frame-set-background-mode, face-set-after-frame-default):
e01cd227
MB
3372 Use `face-user-default-spec'. Simplify code slightly.
3373
4836835a 3374 * woman.el (woman-italic-face, woman-bold-face)
e01cd227
MB
3375 (woman-unknown-face): Add dark-background variants.
3376 (woman-default-faces): Renamed from `woman-colour-faces'.
3377 Set using the stored defaults, rather than using hard-wired colors.
3378 (woman-monochrome-faces): Renamed from `woman-black-faces'.
3379 Just make the foreground `unspecified' rather than "black".
3380 (woman-menu): Rename menu entries accordingly.
3381
98490598
MB
3382 * faces.el (header-line): Make more reasonable on mono/grayscale
3383 displays.
3384
1a578e9b
AC
33852000-10-23 Andrew Choi <akochoi@i-cable.com>
3386
3387 * cus-edit.el (custom-button-face): Use 3D look for mac.
3388 (custom-button-pressed-face): Likewise.
3389
3390 * faces.el (set-face-attributes-from-resources): Handle mac frames
3391 in the same way as x and w32 frames.
3392 (face-valid-attribute-values): Likewise.
3393 (read-face-attribute): Likewise.
3394 (defined-colors): Likewise.
3395 (color-defined-p): Likewise.
3396 (color-values): Likewise.
3397 (display-grayscale-p): Likewise.
3398 (face-set-after-frame-default): Likewise.
3399 (mode-line): Same default face as for x and w32.
3400 (tool-bar): Likewise.
3401
3402 * frame.el: Remove call to frame-notice-user-settings at end of
3403 the file.
3404
3405 * info.el (Info-fontify-node): make underlines invisible for mac
3406 as for x, pc, and w32 frame types.
3407
3408 * term/mac-win.el: New file.
3409
aaaf7be7
DL
34102000-10-22 Dave Love <fx@gnu.org>
3411
3412 * textmodes/refill.el: New file.
3413
5392d654
AS
34142000-10-22 Andre Spiegel <spiegel@gnu.org>
3415
4836835a 3416 * vc-hooks.el (vc-version-backup-file-name): New optional args
5392d654 3417 MANUAL and REGEXP.
4836835a 3418 (vc-delete-automatic-version-backups, vc-make-version-backup):
5392d654
AS
3419 New functions.
3420 (vc-before-save): Use the latter.
3421 (vc-default-make-version-backups-p): Added `-p' suffix to avoid
3422 confusion.
3423
4836835a 3424 * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
5392d654
AS
3425 expected by vc[-hooks].el.
3426
3427 * vc.el (vc-checkout): Added `-p' suffix in call to
3428 vc-make-version-backups-p; use vc-make-version-backup to actually
3429 make the backup.
3430 (vc-version-other-window, vc-version-backup-file): Handle both
3431 automatic and manual backups.
3432 (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
3433 of all of them.
3434
1e221c16
MB
34352000-10-22 Miles Bader <miles@gnu.org>
3436
7ff4fda5
MB
3437 * comint.el (comint-highlight-input, comint-highlight-prompt):
3438 Renamed, `-face' at end removed.
3439 (comint-send-input, comint-output-filter): Use renamed faces.
3440
3511cde8
MB
3441 * window.el (fit-window-to-buffer): Change defaulting of
3442 MAX-HEIGHT slightly.
3443
1e221c16
MB
3444 * faces.el (color-values, color-defined-p): Use `member', not
3445 `memq', because it works correctly for strings.
3446 (frame-set-background-mode): Actually, "unspecified-fg" and
3447 "unspecified-bg" *are* strings. Use `member', not `memq', and
3448 `equal', not `eq', when a string value is possible.
3449
b6ef4898
EZ
34502000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
3451
3452 * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
3453
34939e2c
SM
34542000-10-21 Stefan Monnier <monnier@cs.yale.edu>
3455
3456 * progmodes/sh-script.el (sh-mode-map): Remove bindings for
3457 sh-electric-rparen, sh-electric-less and sh-electric-hash.
3458 (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
3459 (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
3460 (sh-font-lock-syntactic-keywords): Use them.
3461 (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
3462 (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
3463 (sh-mode): Don't override font-lock-unfontify-region-function.
3464 Use a copy of sh-font-lock-syntactic-keywords.
3465 (sh-set-shell): Don't set sh-electric-rparen-needed-here.
3466 Don't call sh-scan-buffer since font-lock does it on the fly.
3467 (sh-get-indent-info): Use `face' rather than `syntax-table'
3468 text-property to detect here-documents.
3469 Replace sh-special-syntax with sh-st-punc.
3470 (sh-prev-line): Use `face' rather than `syntax-table'
3471 text-property to skip over here-documents.
3472 (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
3473 (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
3474 (sh-electric-less, sh-set-here-doc-region)
4836835a 3475 (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
34939e2c
SM
3476 (sh-scan-buffer, sh-rescan-buffer): Remove.
3477
f3d3c491
AI
34782000-10-21 Andrew Innes <andrewi@gnu.org>
3479
3480 * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
3481 remote (ange-ftp) file names.
3482
b86c791c
MB
34832000-10-21 Miles Bader <miles@gnu.org>
3484
d9c30bdf
MB
3485 * window.el (fit-window-to-buffer): New function.
3486 (shrink-window-if-larger-than-buffer): Use it.
1e221c16
MB
3487 (window-text-height): Don't expect minibuffers to have mode-lines.
3488
d9c30bdf 3489 * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
feb5013d
MB
3490 * international/quail.el (quail-update-guidance): Use
3491 `fit-window-to-buffer' instead of `set-window-text-height'.
d9c30bdf 3492
617fee5a
MB
3493 * international/quail.el (quail-show-guidance-buf): Make sure
3494 guidance window really has enough room.
3495 (quail-update-guidance): If quail-guidance-win is already shown,
3496 make sure its height is OK.
3497
b86c791c
MB
3498 * window.el (window-text-height, set-window-text-height):
3499 New functions.
3500 (shrink-window-if-larger-than-buffer): Use `window-text-height'
3501 instead of `window-height' & `mode-line-window-height-fudge'.
3502 (mode-line-window-height-fudge): Add FACE parameter.
3503 * help.el (resize-temp-buffer-window): Use `set-window-text-height'
3504 instead of `enlarge-window' & `mode-line-window-height-fudge'.
3505
e34850d1
MB
35062000-10-20 Miles Bader <miles@gnu.org>
3507
3508 * window.el (height-affecting-face-attributes): Use `defconst'.
3509
3510 * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
3511 New function, conditionally aliased to `mode-line-window-height-fudge'.
3512 (ispell-help): Use it.
3513 (ispell-choices-win-default-height): Don't include mode-line fudge.
3514 (ispell-choices-win-default-height): New function.
3515 (ispell-show-choices, ispell-command-loop): Use function
3516 `ispell-choices-win-default-height' instead of variable.
3517
a8b883c2
MB
35182000-10-20 Miles Bader <miles@lsi.nec.co.jp>
3519
8c6e4a58
MB
3520 * window.el (mode-line-window-height-fudge): New variable.
3521 (height-affecting-face-attributes): New variable.
3522 (mode-line-window-height-fudge): New function.
3523 (shrink-window-if-larger-than-buffer): Use it.
3524 * help.el (resize-temp-buffer-window): Likewise.
3525
a8b883c2
MB
3526 * info.el (Info-fontify-node): Add support for @subsubsection
3527 titles, which use `Info-title-4-face'.
3528 (Info-title-4-face): New face.
3529 (Info-title-3-face): Inherit from Info-title-4-face instead of
3530 variable-pitch.
3531
e64c3a75
JR
35322000-10-19 Jason Rumney <jasonr@gnu.org>
3533
3534 * dired.el (dired-insert-directory): Do not let errors signalled by
3535 attempt to run dired-free-space-program prevent dired from working.
3536
c70fe852
SM
35372000-10-19 Stefan Monnier <monnier@cs.yale.edu>
3538
3539 * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
3540
877cf6b4
GM
35412000-10-19 Gerd Moellmann <gerd@gnu.org>
3542
5de037e0
GM
3543 * dirtrack.el (dirtrack): Fix call to run-hooks.
3544
6deb9af9
GM
3545 * cmuscheme.el (cmuscheme-program-name): Renamed from
3546 scheme-program-name because xscheme.el contains a defcustom with
3547 the same name. As a consequence, customizing group `cmuscheme'
3548 loaded `xscheme' which redefined run-scheme.
3549 (run-scheme): Use cmuscheme-program-name.
3550
877cf6b4
GM
3551 * ps-print.el (ps-print-emacs-type): Move into the
3552 eval-and-compile.
3553
e597d8fb 3554 * play/doctor.el (doctor-death): Update the Samaritans'
c70fe852 3555 anonymous address, and add a website for Befrienders International.
4836835a 3556
3e9cb08f
GM
35572000-10-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3558
c70fe852
SM
3559 * ps-print.el: Even/odd pages fix. Fix little bug on XEmacs.
3560 Avoid compilation gripes. Doc fix.
3e9cb08f
GM
3561 (ps-print-version): New version number (6.2).
3562 (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
3563 (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
3564 (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
3565 (ps-x-extent-priority, ps-x-extent-start-position)
3566 (ps-x-face-font-instance, ps-x-find-coding-system)
3567 (ps-x-font-instance-properties, ps-x-make-color-instance)
3568 (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
3569 avoid compilation gripes without defining functions.
3570 (ps-e-find-composition): Alias for function find-composition, to have a
3571 suitable function depending on Emacs version.
3572 (ps-color-device, ps-color-values, ps-face-foreground-name)
3573 (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
3574 (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
3575 (ps-print-ensure-fontified): Function definitions surrounded by
3576 `eval-and-compile' to avoid compilation gripes.
3577 (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
3578 by symbol-value to avoid compilation gripes.
3579 (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
3580 (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
3581
d8abcd91
MB
35822000-10-19 Miles Bader <miles@lsi.nec.co.jp>
3583
13ab33c4
MB
3584 * startup.el (normal-top-level): Call `frame-set-background-mode'
3585 after `frame-notice-user-settings' because the latter doesn't call
3586 the former on a tty.
3587
d8abcd91
MB
3588 * faces.el (frame-set-background-mode): `unspecified' &c are
3589 symbols, not strings.
3590
e8bce0a9
EZ
35912000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
3592
c70fe852
SM
3593 * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
3594 why some "light*" colors are deliberately absent from the alist.
e8bce0a9 3595
c70fe852
SM
3596 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
3597 Change colors for tty's, as suggested by Miles Bader.
e8bce0a9 3598
773272d8
KH
35992000-10-19 Kenichi Handa <handa@etl.go.jp>
3600
c70fe852 3601 * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
773272d8
KH
3602 (ccl-encode-mule-unicode-0100-24ff): New CCL program. Register it
3603 for ISO10646-1 fonts.
3604 (x-font-name-charset-alist): Add an entry for "iso10646-1".
3605
772139c0
EZ
36062000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
3607
3608 * faces.el (frame-set-background-mode): If a tty frame defines a
3609 background color, use that to compute the background mode, instead
3610 of always defaulting to "dark".
3611
d134a19f
MB
36122000-10-19 Miles Bader <miles@lsi.nec.co.jp>
3613
8bb84cb2
MB
3614 * comint.el (comint-write-output): New function.
3615 (comint-mode-map): Add it to the menu.
e40a778f 3616 Bind `C-c C-s' to comint-write-output.
d134a19f 3617
dada41e1
GM
36182000-10-18 Gerd Moellmann <gerd@gnu.org>
3619
3620 * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
3621 Use fancy-splash-delay.
3622
9b5360aa
GM
36232000-10-18 Alex Schroeder <alex@gnu.org>
3624
3625 * progmodes/sql.el (sql-sybase-options): New option.
3626 (sql-sybase): Use it. Add sql-database to the list of parameters
3627 provided for login. The options -w 2048 -n are not used any more.
3628
9035a35a
GM
3629 * comint.el (comint-read-input-ring): Bugfix such that the first
3630 and the last entry of the input ring file are not lost.
3631
3556c6dd
GM
36322000-10-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3633
3634 * ps-print.el: Internal variable changes to defcustom,
3635 make-local-hook changes to defvar. Doc fix.
3636 (ps-print-version): New version number (6.1).
3637 (ps-setup, ps-do-despool): Code fix.
3638 (ps-printer-name): Customization fix.
3639 (ps-printer-name-option): Now is a defcustom instead of an
3640 internal variable.
3641 (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
3642 (ps-print-begin-column-hook): Now are defvar instead of
3643 make-local-hook.
4836835a 3644
4e217e50
MB
36452000-10-18 Miles Bader <miles@gnu.org>
3646
3647 * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
3648 (comint-kill-output): Changed into an alias for `comint-delete-output',
3649 and made obsolete.
3650 (comint-mode-map): Rename references to comint-kill-output.
3651
34460354
EZ
36522000-10-18 Eli Zaretskii <eliz@is.elta.co.il>
3653
3654 * diff-mode.el (diff-header-face, diff-file-header-face)
3655 (diff-changed-face): Add bold and italic attributes to tty faces.
3656 (diff-function-face): New face.
3657 (diff-font-lock-keywords): Use it.
3658
17ea3cdb
MB
36592000-10-18 Miles Bader <miles@lsi.nec.co.jp>
3660
3661 * comint.el (comint-output-filter): Fixup comint-last-input-end too.
3662 Remove commented-out call to force-mode-line-update.
3663 (comint-kill-output): Use `forward-line 0' instead of
3664 beginning-of-line to make sure we get past the prompt.
3665
9244f2c7
SM
36662000-10-17 Stefan Monnier <monnier@cs.yale.edu>
3667
3668 * diff-mode.el (diff-header-face, diff-file-header-face):
3669 Add specific setting for dark background.
3670 (diff-context-face): Renamed from diff-comment-face.
3671 Set explicitly rather than inheriting from font-lock-comment-face.
3672
1592c1ef
EZ
36732000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
3674
3675 * startup.el (command-line): Move the code which sets the default
3676 TTY colors to before before-init-hook.
3677
f86292a9
GM
36782000-10-17 Gerd Moellmann <gerd@gnu.org>
3679
3680 * jit-lock.el (jit-lock-stealth-time): Doc fix.
3681
f7f2e883
EZ
36822000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
3683
e854cc22
EZ
3684 * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
3685 extensions, for MS-DOS.
3686
f7f2e883
EZ
3687 * diff-mode.el (diff-header-face, diff-file-header-face)
3688 (diff-changed-face): Define tty-specific colors.
3689
c7b4f0f9
GM
36902000-10-17 Gerd Moellmann <gerd@gnu.org>
3691
3692 * startup.el (fancy-splash-text): Realign the text.
3693
12a72271
EZ
36942000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
3695
3696 * font-lock.el (font-lock-comment-face): Define a separate default
3697 for dark-background tty's.
3698
61dfccfd
MB
36992000-10-17 Miles Bader <miles@gnu.org>
3700
3701 * help.el (resize-temp-buffer-window): Add hack to avoid last line
3702 being obscured by whizzy mode-lines on graphics displays.
3703
333cd59e
EZ
37042000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
3705
3706 * info.el (Info-title-1-face, Info-title-2-face)
3707 (Info-title-3-face): Define colors for tty's.
dada41e1 3708 (info-header-node): Remove unneeded tty-specific definition.
333cd59e 3709
dbf1fcc1
EZ
37102000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
3711
3712 * term/pc-win.el (msdos-handle-reverse-video): Don't remove
3713 reverse from the frame parameters, and don't invert foreground and
3714 background colors.
3715
ac629823
MB
37162000-10-16 Miles Bader <miles@gnu.org>
3717
3718 * info.el (Info-set-mode-line): Use `%b' instead of hardwired
3719 string "*Info*". Call propertized-buffer-identification to spruce
3720 up the result.
3721
76eebffc
GM
37222000-10-16 Gerd Moellmann <gerd@gnu.org>
3723
3a6b59d9
GM
3724 * help.el: Provide `help' for the sake of define-minor-mode
3725 which generates defcustoms with requires.
3726
6569c3d3
GM
3727 * jit-lock.el (jit-lock-after-change): If we're in text that
3728 matches a multi-line font-lock pattern, make sure the whole text
3729 will be redisplayed.
3730
c2e0a611
GM
3731 * emacs-lisp/authors.el (authors-add): Don't add an entry if
3732 author's name is unknown.
3733
76eebffc
GM
3734 * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
3735 * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
3736 * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
3737 * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
3738 * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
3739 * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
3740 * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
3741 * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
3742 * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
3743 Add author information.
3744
cf1e7b12
MB
37452000-10-16 Miles Bader <miles@lsi.nec.co.jp>
3746
3747 * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
3748 * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
3749 full-color version (using the Gimp) to eliminate dithering artifacts.
3750
5586f3eb
SM
37512000-10-15 Stefan Monnier <monnier@cs.yale.edu>
3752
3753 * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
3754
3755 * simple.el (syntax-flag-table, string-to-syntax): Remove.
3756
ad64a888
DL
37572000-10-15 Dave Love <fx@gnu.org>
3758
3759 * progmodes/sh-script.el: Require skeleton and comint when
3760 compiling.
3761
3762 * pcomplete.el (pcomplete) <defgroup>: Add :version.
3763
3764 * whitespace.el: Doc fixes.
3765 (top-level): Don't add hooks here.
3766 (whitespace-running-emacs): Deleted.
3767 (timer): Don't require.
3768 (whitespace): Add back :version conditional on xemacs test.
3769 (whitespace-spacetab-regexp, whitespace-indent-regexp)
3770 (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
3771 (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
3772 (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
3773 Avoid specific xemacs test.
3774 (whitespace-global-mode): New option.
3775 (whitespace-global-mode): New command.
3776 (whitespace-unload-hook): New function.
3777
3778 * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
4836835a 3779 (Info-fontify-node, Info-goto-node, Info-mode-menu)
ad64a888
DL
3780 (Info-fontify-node): `Goto' goes to `Go to'.
3781 (Info-fontify-node): Add help-echo to xref links.
3782
1ef49fc6
EZ
37832000-10-15 Eli Zaretskii <eliz@is.elta.co.il>
3784
3785 * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
3786
8b7707e1
SM
37872000-10-15 Stefan Monnier <monnier@cs.yale.edu>
3788
b3b7f42f
SM
3789 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
3790 Use plist-get and allow :inherit.
3791
3792 * emacs-lisp/cl-macs.el (cl-do-arglist):
3793 Use plist-get and plist-member instead of memq.
3794
3c7fafc7
SM
3795 * emacs-lisp/ewoc.el (ewoc-location): New function.
3796 (ewoc-enter-after, ewoc-enter-before): Document return value.
3797 * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
3798 Don't need make-local-hook any more.
3799 (cvs-addto-collection): Return the new tin.
3800 (cvs-mode-insert): Jump to the new line.
3801
8b7707e1
SM
3802 * jit-lock.el (jit-lock-fontify-buffer): Remove.
3803
3804 * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
3805
3806 * font-lock.el (font-lock-syntactically-fontified): New var.
3807 (font-lock-fontify-syntactic-keywords-region): Use it.
3808 (font-lock-mode): Fix docstring. Don't need make-local-hook anymore.
3809
3810 * diff-mode.el (diff-find-file-name): Fix regexp.
3811
3812 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
3813 (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
3814
3815 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
3816 (sh-mode-syntax-table): Add punctuation syntax for < and >.
3817 (sh-mode): Don't make all vars local here.
3818 (sh-kw): Reformat.
3819 (sh-set-shell): Use dolist. Don't set indent-region-function.
3820 (sh-mode-syntax-table): Use pop.
3821 (sh-remember-variable): Use push.
3822 (sh-help-string-for-variable): Use memq.
3823 (sh-safe-backward-sexp): Remove.
3824 (sh-safe-forward-sexp): Add ARG.
3825 (sh-get-indent-info, sh-prev-stmt): Use it.
3826 (sh-prev-line): Simplify by using forward-comment.
3827 (sh-this-is-a-continuation): Simplify.
3828 (sh-learn-buffer-indent): Use dolist.
3829 (sh-do-nothing): Remove.
3830 (sh-set-char-syntax, sh-set-here-doc-region):
3831 Use inhibit-modification-hooks.
3832 (sh-name-style): Use mapcar and push.
3833 (sh-load-style): Use dolist.
3834 (sh-save-styles-to-buffer): Use with-current-buffer and pp.
3835 (sh-case, sh-while-getopts): Use propertize directly rather
3836 than sh-electric-rparen.
3837
38382000-10-14 Stefan Monnier <monnier@cs.yale.edu>
3839
3840 * textmodes/tex-mode.el: Require CL when compiling.
3841 (tex-mode-syntax-table): Init immediately.
3842 (tex-mode-map): Bind M-RET to latex-insert-item.
3843 (latex-mode): Set indent-line-function to latex-indent.
3844 (tex-common-initialization): Don't setup the syntax-table any more.
3845 (latex-insert-item): New skeleton.
3846 (tex-next-unmatched-end): Fix copy/paste braino.
4836835a 3847 (latex-syntax-after, latex-skip-close-parens, latex-down-list)
8b7707e1 3848 (latex-indent, latex-find-indent): New functions.
4836835a 3849 (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
8b7707e1
SM
3850 (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
3851 (tex-compilation-parse-errors): Use with-syntax-table.
3852
86b7fcbb
MB
38532000-10-15 Miles Bader <miles@gnu.org>
3854
3855 * font-lock.el (font-lock-comment-face): Change dark-background,
3856 color, non-tty, default to `chocolate1'.
3857
57a24508
JW
38582000-10-13 John Wiegley <johnw@gnu.org>
3859
3860 * eshell/esh-util.el (require): Added a missing `require' form,
3861 needed when compiling (for an ange-ftp macro definition).
3862
40ad3db4
DL
38632000-10-13 Dave Love <fx@gnu.org>
3864
3865 * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
3866
db460189
GM
38672000-10-13 Gerd Moellmann <gerd@gnu.org>
3868
b41c9501
GM
3869 * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc
3870 fix.
3871
4836835a 3872 * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
db460189
GM
3873 transparent -colors 8).
3874
3b5e21df
GM
38752000-10-13 Stephen Gildea <gildea@alum.mit.edu>
3876
3877 * time-stamp.el (time-stamp): Fixed bug in new multi-line code
3878 that breaks with old list format timestamps.
3879 (time-stamp-warn-inactive, time-stamp-old-format-warn)
3880 (time-stamp-count, time-stamp-conversion-warn): Improved doc
3881 strings.
3882
16908a3f
JW
38832000-10-13 John Wiegley <johnw@gnu.org>
3884
d7103dda
JW
3885 * align.el, pcomplete.el, calendar/timeclock.el,
3886 eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
3887
dace60cf 3888 * calendar/timeclock.el (timeclock-find-discrep): A fix to some
16908a3f
JW
3889 faulty math, where holiday hours were being computing as seconds.
3890
b6b70cda
JW
38912000-10-13 John Wiegley <johnw@gnu.org>
3892
3893 * desktop.el (desktop-buffer-modes-to-save): Added a global for
3894 specifying what "other" kinds of buffers should be saved. This
3895 used to be hard-coded.
3896 (desktop-buffer-misc-functions): A global for specifying how
3897 auxiliary data should be determined for special buffer types.
3898 (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
3899 instead of hard-coding the special buffer types.
3900 (desktop-save): Run `desktop-buffer-misc-functions' to gather
3901 auxiliary data, instead of hard-coding for Info buffers and dired.
3902 (desktop-buffer-info-misc-data): Aux function for determining Info
3903 buffer auxiliary info.
3904 (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
3905 (desktop-buffer-info): Changed this function to use the info
3906 gathered above.
3907 (desktop-create-buffer): Be a little more careful about what
3908 `minor-mode' means before calling it. This is important for some
3909 buffer types.
3910
8c6b1d83
JW
39112000-10-13 John Wiegley <johnw@gnu.org>
3912
3913 * eshell/esh-util.el: Added a global form which declares an
3914 autoload for `parse-time-string', if that function is not already
3915 defined, and if parse-time.el is available on the user's system.
3916
3917 * eshell/em-ls.el (eshell-ls-applicable): Extended this function
3918 to be aware of ange-ftp user info.
3919 (eshell-do-ls): Bind `ange-cache'. Also, use
3920 `eshell-file-attributes'.
3921 (eshell-ls-annotate): Use `eshell-file-attributes'.
3922 (eshell-ls-file): Made the user-id printing code a bit smarter.
3923
3924 * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
3925 allow identification of alias user ids in remote directories.
3926 It's manual, but there's no other way to know when the current
3927 user on the local machine, is also the owning user on the remote
3928 machine.
3929 (fboundp): Bind `ange-cache'.
3930 (eshell-directory-files-and-attributes): Re-organized the logic a
3931 bit to use `eshell-file-attributes' instead of `file-attributes'.
3932 The former is more sensitive to directories that are read via FTP,
3933 and knows how to use ange-ftp to determine full attribute
3934 information, instead of just the name and last modtime.
3935 (eshell-current-ange-uids): Return the current user id when in a
3936 remote directory.
3937 (eshell-parse-ange-ls): Parse a full directory listing that has
3938 been returned by ange-ftp.
3939 (eshell-file-attributes): This beefed up version of
3940 `file-attributes' is only special if the user is currently in a
3941 remote directory, in which case it does a lot of work to find out
3942 what the real attributes of a file are, as they appear on the
3943 remote machine. This makes usage of remote directories (i.e.,
3944 ange-ftp pathnames) much more useful. You can now use Eshell as a
3945 full-fledged FTP client, with much more manipulation ability than
3946 most other clients.
3947
3948 * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
3949 variable, which means that Eshell's du should always be preferred
3950 in remote directories.
3951 (eshell-shuffle-files): Use `eshell-file-attributes', rather than
3952 just `file-attributes'.
3953 (eshell-mvcp-template): Bind `ange-cache', to improve performance
3954 when reading remote directories. This is an Eshell-specific
3955 variable (not part of ange-ftp).
3956 (eshell/ln): Bind `ange-cache'.
3957 (eshell/du): Added some extra logic for determining when to use
3958 Eshell's du (which is slow), and when to use the external version
3959 (which may or may not exist).
3960
3961 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof): Call
3962 `eshell-interactive-process', rather than using
3963 `get-buffer-process', since backgrounded processes don't count in
3964 the context of this function's logic.
3965
3966 * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
3967 `forward-char', so that null strings are parsed correctly.
3968
87730e84 39692000-09-13 John Wiegley <johnw@gnu.org>
8c6b1d83
JW
3970
3971 * eshell/em-pred.el (eshell-pred-file-type,
3972 eshell-pred-file-links, eshell-pred-file-size): Use
3973 `eshell-file-attributes'. This is more correct over ange-ftp.
3974
3975 * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
3976 that remote file globbing is more efficient.
3977
3978 * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
3979 gathering the files and attributes within a directory.
3980
3981 * eshell/em-unix.el (eshell/cat): If any of the files passed on
3982 the command line is a special file (not a regular file, directory
3983 or symlink), always attempt to call the external version of cat.
3984
87730e84 39852000-09-13 John Wiegley <johnw@gnu.org>
8c6b1d83
JW
3986
3987 * eshell/esh-mode.el (eshell-find-tag): Corrections to the
3988 Eshell-friendly version of find-tag.
3989
1c7e37a9
MB
39902000-10-13 Miles Bader <miles@lsi.nec.co.jp>
3991
4836835a 3992 * image-file.el (image-file-name-extensions)
1c7e37a9
MB
3993 (image-file-name-regexps): Add autoload cookies.
3994
11a7f341
KH
39952000-10-13 Kenichi Handa <handa@etl.go.jp>
3996
3997 * international/mule-cmds.el (select-safe-coding-system): If FROM
3998 is string, show it in *Warning* buffer.
3999
8ddddcb0
EZ
40002000-10-13 Eli Zaretskii <eliz@is.elta.co.il>
4001
4002 * startup.el (normal-top-level): Use display-popup-menus-p instead
4003 of window-system.
4004 (command-line): Use display-graphic-p instead of window-system.
4005 (command-line-1): Use display-popup-menus-p and display-mouse-p
4006 instead of window-system.
4007
72200f89
SS
40082000-10-12 Sam Steingold <sds@gnu.org>
4009
4010 * tooltip.el (tooltip-use-echo-area): New user variable.
4011 (tooltip-show): Use it to choose between `x-show-tip' and `message'.
4012
8661c643
DL
40132000-10-12 Dave Love <fx@gnu.org>
4014
d0b40dc1
DL
4015 * recentf.el: Maintainer's checkdoc fixes.
4016
a622451f
DL
4017 * startup.el (normal-top-level-add-subdirs-to-load-path): Use
4018 character class, not ASCII when matching file names.
4019 (fancy-splash-head): Add trailing slash to URL.
4020 (command-line): Don't require XPM support for toolbar.
4021
8661c643
DL
4022 * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
4023 (cperl-invalid-face): Revert last change.
4024 (cperl-init-faces): Quote cperl-invalid-face.
4025
ef2ed8ab
KH
40262000-10-12 Kenichi Handa <handa@etl.go.jp>
4027
4028 * startup.el (fancy-splash-text): Remove superfluous quote.
4029
b0da379e
GM
40302000-10-12 Gerd Moellmann <gerd@gnu.org>
4031
dbeb499b
GM
4032 * startup.el (fancy-splash-screens): Don't add a pre-command hook.
4033 (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
4034 (command-line-1): Don't use fancy-splash-pending-command.
4035 (fancy-splash-screens-1): Goto point-min after inserting text.
4036
d861718a
GM
4037 * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
4038
b0da379e
GM
4039 * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
4040 instead of shared-lisp-mode-map.
4041
4fb2ad98
MB
40422000-10-12 Miles Bader <miles@lsi.nec.co.jp>
4043
1cb4393e
MB
4044 * faces.el (header-line): Change tty-variant to use underlining.
4045
4fb2ad98
MB
4046 * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
4047 (isearch-highlight): Restore lazy-isearch face properties at old
4048 position, and suppress them at new position.
4049 (isearch-dehighlight): Restore lazy-isearch face properties.
4050 (isearch-lazy-highlight-update): Add lazy-isearch overlays even
4051 over the real isearch overlay, but in that case, don't give it a
4052 face property. Use `push'.
4053
eb991b25
KH
40542000-10-12 Kenichi Handa <handa@etl.go.jp>
4055
4056 * man.el (Man-getpage-in-background): Fix previous change.
4057 Decode the process output only when we are in multibyte mode.
4058
a818c1c0
DL
40592000-10-11 Dave Love <fx@gnu.org>
4060
c990f53a
DL
4061 * info.el (Info-mode-menu): Fix some help.
4062 (info-tool-bar-map): Add entry for Info-last.
4063
a818c1c0
DL
4064 * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
4065 * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
4066 * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
4067 * toolbar/cut.xpm, toolbar/mail_compose.xpm:
4068 * toolbar/search-replace.xpm, toolbar/exit.xpm:
4069 * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
4070 * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
4071 * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
4072 * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
4073 * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
4074 Reduce colour requirements to 25 overall. (Probably wants
4075 revisiting from the originals to reduce further.)
4076
c1b096cb
EZ
40772000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
4078
4079 * hexl.el (hexlify-buffer): Bind coding-system-for-write to
4080 buffer-file-coding-system, instead of raw-text.
4081 (dehexlify-buffer): Bind coding-system-for-read to
4082 buffer-file-coding-system, instead of raw-text.
4083
5c8b7eaf
SS
40842000-10-11 Sam Steingold <sds@gnu.org>
4085
4086 * progmodes/cperl-mode.el (cperl-invalid-face): double-quote
4087 `underline' - fixes the bug introduced on 2000-09-21.
4088
2cfbdb7a
DL
40892000-10-11 Dave Love <fx@gnu.org>
4090
4091 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode): Avoid
4092 compiler warnings.
4093 (scheme-mode): Doc fix.
4094 (scheme-font-lock-keywords-1): Match `define-syntax'.
4095
40962000-10-11 Miles Bader <miles@lsi.nec.co.jp>
4b33f290
MB
4097
4098 * faces.el (frame-set-background-mode): Pay attention to saved
f161d539
MB
4099 face specs as well as default ones. Only do anything if the
4100 bg-mode or display-type has actually changed. Use `dolist'.
0c846ea2 4101 (region): Make dark-background `region' face less in-your-face.
4b33f290 4102
690ec649
SS
41032000-10-10 Sam Steingold <sds@gnu.org>
4104
4105 * chistory.el, ielm.el, ledit.el:
4106 * progmodes/inf-lisp.el, progmodes/scheme.el:
4107 Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
4108
3b95d6bb
SM
41092000-10-10 Stefan Monnier <monnier@cs.yale.edu>
4110
4111 * textmodes/texinfo.el: Update copyright and fix typo.
4112
4113 * desktop.el (desktop-modes-not-to-save): New var.
4114 (desktop-save-buffer-p): Use it.
4115 Also, obey desktop-buffers-not-to-save even for non-file buffers.
4116 (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
4117
d646c828
DL
41182000-10-10 Dave Love <fx@gnu.org>
4119
4120 * toolbar/tool-bar.el (tool-bar-add-item)
4121 (tool-bar-add-item-from-menu): Don't favour XPM icons on mono
4122 display.
4123
d646c828
DL
4124 * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
4125 * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
4126 * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
4127 * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
4128 * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
4129 * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
4130 * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
4131 * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
4132 * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
4133 * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
4134 the .xpms; probably need retouching.
4135
862a7e28
MB
41362000-10-10 Miles Bader <miles@lsi.nec.co.jp>
4137
4138 * subr.el (add-to-list): Add optional argument APPEND.
4139 * battery.el (display-battery): Use `add-to-list'.
4140
46e33aee
TTN
41412000-10-09 Thien-Thi Nguyen <ttn@gnu.org>
4142
930baf47
TTN
4143 * play/zone.el (zone-timer, zone-wc-tbl): Rework
4144 these vars as symbol properties.
2cfbdb7a
DL
4145 (zone, zone-when-idle, zone-leave-me-alone)
4146 (zone-pgm-whack-chars): Use new symbol properties.
930baf47 4147
5a430f9c
TTN
4148 * battery.el (display-battery): Doc spelling fix.
4149
46e33aee
TTN
4150 * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
4151 property.
4152
adf7d3a8
DL
41532000-10-09 Dave Love <fx@gnu.org>
4154
4155 * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
4156 has been initialized before calling tool-bar-setup.
c2156508 4157 (tool-bar-add-item-from-menu): Add autoload cookie.
adf7d3a8 4158
06a8c9f8
EZ
41592000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
4160
e4ca8f8c
EZ
4161 * menu-bar.el (send-mail-item-name): New function.
4162 (menu-bar-tools-menu) <compose-mail>: Use it to display the value
4163 of mail-user-agent in the menu. Don't display the "Send Mail"
4164 item if mail-user-agent is nil or its value is ignore.
4165 (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
4166 if read-mail-command is nil or its value is ignore.
4167
06a8c9f8
EZ
4168 * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
4169
7dbc9c8a
MB
41702000-10-09 Miles Bader <miles@gnu.org>
4171
29e0814b
MB
4172 * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
4173 Correct image size.
4174 * toolbar/left_arrow.xpm: Correct image size.
4175
7dbc9c8a
MB
4176 * jka-compr.el: Don't call `jka-compr-install' when loading (it
4177 will be done by the definition of `auto-compression-mode' if
4178 necessary. Move code to uninstall existing file-name handler
4179 before definition of `auto-compression-mode'.
4180
4181 * image-file.el (auto-image-file-mode): Move to the end of the
4182 file, because `define-minor-mode' actually calls the mode-function
4183 if the associated variable is non-nil, which requires that all
4184 needed functions be already defined.
4185
65b61266
MB
4186 * mouse.el (popup-menu): Balance parens.
4187
d6b8c85b
SM
41882000-10-08 Stefan Monnier <monnier@cs.yale.edu>
4189
4190 * mouse.el (popup-menu): Move the command call outside the loop
4191 so that popup-menu returns whatever the command returns.
4192
4193 * progmodes/etags.el: Docstring fixes. Maintainer line updated.
4194 (initialize-new-tags-table): Use run-hook-with-args-until-success.
4195 (find-tag): Use pop-to-buffer if switch-to-buffer failed.
4196 (tags-table-format-functions): Renamed from tags-table-format-hooks.
4197
4198 * vc.el (vc-version-diff): diff-switches can be a list.
4199 Use relative filenames for prettier output.
4200
46e33aee 4201 * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
d6b8c85b
SM
4202 (vc-post-command-functions): Remove old-VC compatibility code.
4203
4204 * newcomment.el (comment-indent-default): Autoload.
4205
4206 * font-lock.el (font-lock-defaults): Make buffer-local.
4207 (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
4208 (font-lock-choose-keywords):
4209 Ignore LEVEL unless KEYWORDS is a list of syms.
4210 (c-keywords, c++-keywords, objc-keywords, java-keywords):
4211 Don't wrap regexp-opt things in \(...\) unnecessarily.
4212
4213 * jit-lock.el: Don't require font-lock any more.
4214 (jit-lock-functions): Make buffer-local.
4215 (jit-lock-saved-fontify-buffer-function): Remove.
4216 (jit-lock-mode): Remove autoload cookie.
4217 Remove font-lock specific code.
4218 (jit-lock-unregister): Don't bother handling complex hooks any more.
4219 (jit-lock-refontify): New function.
4220 (jit-lock-fontify-buffer): Use it.
4221 (jit-lock-function-1): Replaced by jit-lock-fontify-now.
4222 (jit-lock-fontify-now): Renamed from jit-lock-function-1.
4223 Add optional args START and END.
4224 Never call font-lock-fontify-region directly.
4225 (jit-lock-function, jit-lock-stealth-fontify): Use it.
4226
4227 * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
4228
a30ed6ac
DL
42292000-10-08 Dave Love <fx@gnu.org>
4230
4e7c7ca9
DL
4231 * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
4232
4233 * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
4234
4235 * play/studly.el (studlify-region, studlify-word): Add autoload
4236 cookie.
4237
4238 * play/morse.el (morse-region, unmorse-region): Add autoload
4239 cookie.
4240
4241 * play/spook.el (spook-phrases-file): Use expand-file-name, not
4242 concat.
4243
4244 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
4245 insist on symbols starting with word syntax.
4246 (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
4247 (eval-defun-1): Doc fix.
4248 (indent-sexp): Use nconc to build up indent-stack.
4249
4250 * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
4251 Gnus with little use.
4252 (mail-setup-hook): Add mail-abbrevs-setup to options.
4253
968f7c4a
DL
4254 * recentf.el: Doc fixes.
4255
4256 * vcursor.el (vcursor-cs-binding): Remove compatibility code.
4257 Clean up remainder.
4258
4259 * timezone.el (timezone-parse-date): Doc fix. Fix regexps for (5)
4260 without timezone and (8) with timezone to enforce some whitespace.
4261 Simplify code somewhat.
4262
4263 * options.el (list-options): Doc that you should use customize.
4264
4265 * iswitchb.el (iswitchb-mode): Add :require.
4266
a30ed6ac
DL
4267 * info.el (Info-goto-node, Info-menu): Doc fix.
4268 (Info-mode-menu): Bind beginning-of-buffer, Info-edit
4269 (info-tool-bar-map): New variable.
4270 (Info-mode): Use it.
4271 (Info-edit-map): Define all in defvar.
4272 (speedbar-attached-frame): Avoid compiler warning.
4273
4274 * toolbar/tool-bar.el (tool-bar-map): Define it empty.
4275 (global-map): Bind [tool-bar] to a filtered map.
4276 (tool-bar-add-item): Remove MAP arg. Allow PBM icons.
4277 (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
4278 Allow PBM icons.
4279 (tool-bar-setup): Adjust calls of tool-bar-add-item.
4280
4281 * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
4282 * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
4283 * toolbar/right_arrow.xpm: New files. Renamed from tigert's
4284 icons, except up_arrow, which is left-arrow rotated.
4285
4286 * imenu.el (imenu-add-to-menubar): Fix last change.
4287
4e953aff
PB
42882000-10-08 Peter Breton <pbreton@ne.mediaone.net>
4289
4290 * generic-x.el (rul-generic-mode): Remove eval-when-compile
4291 statements. Suggested by Stefan Monnier <monnier@cs.yale.edu>.
4292
739e92a7
EZ
42932000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
4294
d20faceb
EZ
4295 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
4296 typos in doc strings.
4297
a640322e
EZ
4298 * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
4299 the doc strings how to customize Font Lock faces.
4300
739e92a7
EZ
4301 * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
4302 computing growth when dragging the header line.
4303
8be7408c
EZ
43042000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
4305
4306 * simple.el (kill-line): Doc fix.
4307
6fee86a3
MB
43082000-10-08 Miles Bader <miles@gnu.org>
4309
445a653e
MB
4310 * faces.el (secondary-selection): Make foreground visible on tty.
4311
6fee86a3
MB
4312 * jka-compr.el (auto-compression-mode): Move to the end of the
4313 file, because `define-minor-mode' actually calls the mode-function
4314 if the associated variable is non-nil, which requires that all
4315 needed functions be already defined.
4316 (with-auto-compression-mode): Add autoload cookie.
4317
a115794c
EZ
43182000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
4319
4320 * files.el (find-backup-file-name) [ms-dos]: If support for long
4321 file names is not available, behave as if version-control were set
4322 to never.
4323
b12e6de3
DL
43242000-10-07 Dave Love <fx@gnu.org>
4325
4326 * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
4327 (browse-url-gnome-moz): New function.
4328 (browse-url-browser-function): Use it.
4329 Suggested by Colin Walters <walters@cis.ohio-state.edu>.
4330
20b1d079
SM
43312000-10-07 Stefan Monnier <monnier@cs.yale.edu>
4332
4333 * indent.el (tab-always-indent): New var.
4334 (indent-for-tab-command): Use it.
39250ec3 4335
9ee45b2c 4336 * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
a115794c 4337 raise an error. This way it can still default to a sane value.
9ee45b2c 4338
8c6b1d83
JW
43392000-10-06 Stefan Monnier <monnier@cs.yale.edu>
4340
39250ec3
SM
4341 * startup.el (fancy-splash-screens): Use local rather than global map.
4342 Don't use `update-menu-bindings' any more.
4343 Get rid of assumptions about keymap representation.
4344
a23ccdf2
DL
43452000-10-06 Dave Love <fx@gnu.org>
4346
814299a7 4347 * textmodes/fill.el (sentence-end-double-space)
742c1822
DL
4348 (sentence-end-without-period): Doc fix.
4349 (adaptive-fill-regexp): Purecopy.
4350 (unjustify-current-line): Use line-end-position.
4351 (fill-individual-paragraphs-prefix): Use line-beginning-position.
4352
4353 * net/eudc-vars.el (eudc): Add :version, :link.
4354
39250ec3 4355 * international/mule-conf.el (file-coding-system-alist): Use \', not $.
742c1822
DL
4356
4357 * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
4358 Fix for define-minor-mode.
4359 (function-at-point): Alias to function-called-at-point.
4360
4361 * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
4362
4363 * simple.el (backward-word): Doc fix.
4364
a23ccdf2
DL
4365 * image-file.el (image-file-name-regexp): image-file-regexps ->
4366 image-file-name-regexps.
742c1822 4367 (image-file-name-extensions): Add pbm.
a23ccdf2 4368
39250ec3
SM
43692000-10-06 Stefan Monnier <monnier@cs.yale.edu>
4370
4371 * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
4372 and add filename to the names so that diff-mode can jump to source.
4373
4374 * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
814299a7 4375 (tex-font-lock-keywords, tex-font-lock-keywords-2)
39250ec3
SM
4376 (tex-font-lock-keywords-1): Remove.
4377 (font-lock-turn-on-thing-lock): Use jit-lock-register.
4378 (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
9ee45b2c
SM
4379 (font-lock-default-fontify-region):
4380 Expand beg..end correctly when just following a multiline region.
39250ec3
SM
4381 (font-lock-fontify-anchored-keywords):
4382 Include the anchor text as part of the multiline.
4383
8d5dfacd
GM
43842000-10-06 Gerd Moellmann <gerd@gnu.org>
4385
4386 * loadup.el (toplevel): Load `loaddefs' before `help' because the
4387 latter needs the autoloaded define-minor-mode macro during the
4388 bootstrap.
4389
4390 * startup.el (command-line): For now, activate tool-bar-mode only
4391 if XPM images are supported.
4392
4393 * mouse.el (mouse-drag-header-line): Don't allow resizing a
4394 window by dragging a header-line at the top of the frame; that's
4c19fbce 4395 confusing because the header-line doesn't move.
8d5dfacd
GM
4396 (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
4397 of treating the event as a list. Some cleanup.
4398
f69aad2b 43992000-10-06 Miles Bader <miles@gnu.org>
8fb051f9 4400
f69aad2b
MB
4401 * simple.el (display-message-or-buffer): New function.
4402 (shell-command-on-region): Use `display-message-or-buffer'.
06933804 4403
09cb7646
MB
4404 * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
4405 docstring parts.
4406
814299a7 4407 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
8fb051f9
MB
4408 (smbclient-prompt-regexp): Add usage note to doc string.
4409 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
4410 (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
4411 Use add-hook for adding the comint filter function, and only do so
4412 if it's not already in the global hook list.
4413 (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
4414 to `make-local-variable'.
4415 (nslookup-font-lock-keywords): Remove prompt entry.
4416 (nslookup): Don't set the process-filter.
4417 (finger): Exit the loop correctly when the regexps list runs out.
4418 (ftp, smbclient, smbclient-list-shares):
4419 Set the real major mode immediately, not after execing.
4420 Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
4421
4422 * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
4423
4c19fbce
SM
44242000-10-05 Stefan Monnier <monnier@cs.yale.edu>
4425
4426 * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
4427
4428 * which-func.el (which-func-format): Remove spurious space.
4429 (which-func-mode): Don't make it permanent-local.
4430 (which-func-ff-hook): Allow which-func-maxout to be nil.
4431 (which-func-update): Simplify a bit. Only run if which-func-mode is t.
4432 (which-func-mode): Simplify.
4433 Use post-command-idle-hook rather than post-command-hook.
4434 Go through all buffers and update their state.
4435 (which-function): Also try add-log-current-defun-function.
4436
4437 * vc.el (with-vc-properties): Use conses rather than length-2 lists.
4438 (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
4439 Update call to with-vc-properties accordingly.
4440 (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
4441 (vc-revert-buffer): More careful about window selection and deletion.
4442 (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
4443
4444 * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
4445 (cvs-retrieve-revision): Reuse a pre-existing buffer.
4446 (cvs-dired-action): Change the default to quickdir.
4447
4448 * newcomment.el (comment-indent): Delegate to indent-according-to-mode
4449 if comment-indent-function returns nil.
4450 (comment-indent-default): New function.
4451 (comment-indent-function): Use it and document the new semantics.
4452
4453 * image-file.el: Docstring fixes.
4454
4455 * help.el (help-xref-on-pp): Use match-string.
4456 (describe-variable): New arg BUFFER.
4457 Store the current buffer in the help-xref-stack.
4458 (temp-buffer-resize-mode): Use define-minor-mode.
4459
4460 * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
4461 consistently with its docstring.
4462 Set jit-lock-first-unfontify-pos in an idempotent way.
4463 (jit-lock-register): Autoload and add arg CONTEXTUAL.
4464
542c6552
GM
44652000-10-05 Alex Schroeder <alex@gnu.org>
4466
4467 * sql.el (sql-mysql-options): New variable.
4468 (sql-mysql): Use it.
4469
a3489ece
MB
44702000-10-05 Miles Bader <miles@lsi.nec.co.jp>
4471
77f6105c
MB
4472 * image.el (image): New group.
4473
814299a7 4474 * smerge-mode.el (smerge-mine-face, smerge-other-face)
a3489ece
MB
4475 (smerge-base-face, smerge-markers-face): Add dark-background variants.
4476
3478046b
PB
44772000-10-04 Peter Breton <pbreton@ne.mediaone.net>
4478
4479 * net/net-utils.el (nslookup-font-lock-keywords)
814299a7 4480 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
3478046b
PB
4481 Ignore the value of wqindow-system; always define keywords
4482
22aca186
KH
44832000-10-05 Kenichi Handa <handa@etl.go.jp>
4484
4485 * startup.el (fancy-splash-screens): Remove the code for
4486 debugging; `(trace-to-stderr "EXITTT\n")'.
4487
55d5d717
MB
44882000-10-05 Miles Bader <miles@gnu.org>
4489
4490 * diff-mode.el (diff-goto-source): Update call to
4491 `diff-hunk-status-msg' to reflect new REV variable.
4492
41fa7178
SM
44932000-10-04 Stefan Monnier <monnier@cs.yale.edu>
4494
4495 * progmodes/icon.el (icon-mode):
4496 Don't gratuitously override the default for comment-column.
4497
4498 * vc-hooks.el (vc-mode-line): Fix interactive spec.
4499
4500 * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
4501 (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
4502 (jit-lock-functions): New var.
4503 (jit-lock-function-1): Use it if non-nil.
4504 Don't switch the syntax-table. Don't set parse-sexp-lookup-properties.
4505 Set the `fontified' property before doing the fontification to avoid
4506 repeatedly going through the same error.
4507 Don't turn errors into messages.
4508 (jit-lock-register, jit-lock-unregister): New functions.
4509
4510 * dired.el (dired-mark-pop-up): Turn comment into docstring.
4511 Use with-current-buffer.
4512
4513 * dired-aux.el (dired-do-create-files, dired-kill-tree):
4514 Turn comment into docstring.
4515
4516 * apropos.el (apropos-mode): Use define-derived-mode.
4517
3dc78168
GM
45182000-10-04 Gerd Moellmann <gerd@gnu.org>
4519
4520 * startup.el (fancy-splash-pending-command): New variable.
4521 (fancy-splash-pre-command): New function.
4522 (fancy-splash-screens): Rewritten.
4523 (command-line-1): If fancy-splash-pending-command is set, call it
4524 interactively.
4525
dae9dc56
DL
45262000-10-04 Dave Love <fx@gnu.org>
4527
4528 * toolbar/tool-bar.el (tool-bar-setup): New function.
4529 (tool-bar-mode): Use it.
4530
4531 * subr.el (substitute-key-definition): Doc fix.
4532 (play-sound-file): New command.
4533
3388f0a5
AS
45342000-10-04 Andre Spiegel <spiegel@gnu.org>
4535
814299a7 4536 * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
3388f0a5
AS
4537 vc-version-backup-file-name): New functions.
4538
4539 * files.el (basic-save-buffer): Call vc-before-save before saving.
814299a7
MB
4540
4541 * vc-cvs.el (vc-cvs-make-version-backups): Return t if
3388f0a5
AS
4542 vc-cvs-stay-local-p.
4543
4544 * vc.el (vc-revert-buffer): Handle empty diff properly.
4545 (vc-version-backup-file): New function.
4546 (vc-checkout): Create a version backup if necessary.
4547 (vc-checkin): If a version backup file exists, delete it.
4548 (vc-version-diff): Diff locally using version backups, if available.
4549 (vc-revert-file): If there's a version backup, revert locally.
4550 (vc-transfer-file): Use version backup for base version, if
4551 available. If not, ask for confirmation whether to get it from the
4552 server. Update mode line before check-in.
4553
ebd4825d
DL
45542000-10-04 Dave Love <fx@gnu.org>
4555
4556 * toolbar/tool-bar.el (tool-bar-setup): New function.
4557 (tool-bar-mode): Use it.
4558
1b24f4b7
PB
45592000-10-04 Peter Breton <pbreton@ne.mediaone.net>
4560
3dc78168 4561 * net/net-utils.el (nslookup-font-lock-keywords)
814299a7 4562 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
8b7187d8
PB
4563 Only set if window-system is non-nil
4564 (net-utils-run-program): Returns buffer.
4565 (network-connection-reconnect): Added this function.
4566
814299a7
MB
4567 * generic.el:
4568 Incorporates extensive cleanup and docfixes by
9a7f629d
PB
4569 Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
4570 Uses cl compile-time macros.
3dc78168
GM
4571 (generic-mode-name, generic-comment-list)
4572 (generic-keywords-list, generic-font-lock-expressions)
4573 (generic-mode-function-list, generic-mode-syntax-table):
9a7f629d
PB
4574 Removed variables.
4575 (generic-mode-alist): Renamed to generic-mode-list.
4576 (generic-find-file-regexp): Default changed to "^#".
4577 (generic-read-type): Uses completing read on generic-mode-list.
4578 (generic-mode-sanity-check): removed this function.
4579 (generic-add-to-auto-mode): Removed this function
3dc78168 4580 (generic-mode-internal): Bind mode-specific definitions
9a7f629d
PB
4581 into function instead of putting them in alist.
4582 (generic-mode-set-comments): Reworked extensively.
4583 (generic-mode-find-file-hook): Simplified regexp searching
814299a7 4584 (generic-make-keywords-list): Omit extra pair of parens
9a7f629d 4585
814299a7 4586 * find-lisp.el (find-lisp-find-files-internal):
1b24f4b7
PB
4587 Make sure directory name ends with "/".
4588
814299a7 4589 * generic-x.el (apache-conf-generic-mode):
1b24f4b7
PB
4590 Regexp now allows leading whitespace.
4591 (rc-generic-mode): Added eval-when-compile
4592 around generic-make-keywords-list.
4593 Deleted duplicate regexp
4594 (rul-generic-mode): Added eval-when-compile
4595 around generic-make-keywords-list.
4596 (etc-fstab-generic-mode): New generic mode.
4597 (rul-generic-mode): Removed one eval-when-compile
814299a7 4598 which caused a max-specpdl-size exceeded error.
1b24f4b7 4599
a7bf5cf3
MB
46002000-10-04 Miles Bader <miles@gnu.org>
4601
4602 * simple.el (minibuffer-temporary-goal-position): New variable.
4603 (next-history-element): Try to keep the position of point in the
4604 input string constant.
4605
4606 * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
4607 (dired-do-create-files): If there's only one file, pass it in as
4608 the DEFAULT arg to dired-mark-read-file-name.
4609
ce1087a9
SM
46102000-10-03 Stefan Monnier <monnier@cs.yale.edu>
4611
4612 * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
4613 (diff-goto-source): Be smarter when choosing REVERSE or not.
4614
4615 * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
4616 (texinfo-mode-menu): Add an explicit shortcut for update all.
4617
0e41e1d6
AS
46182000-10-03 Andre Spiegel <spiegel@gnu.org>
4619
814299a7 4620 * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
858f7cb4
AS
4621 factorize backend-specific code cleanly (this was essentially
4622 conceived by Stefan Monnier).
4623 (vc-unregister): Function removed.
814299a7 4624 (vc-revert-file): New function.
858f7cb4
AS
4625 (vc-revert-buffer): Delegate some of the work to it.
4626
0e41e1d6
AS
4627 * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
4628 default branch unconditionally.
4629 (vc-rcs-set-default-branch): New function.
4630 (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
4631 (vc-rcs-checkin): If an appropriate default branch has been set,
4632 force creation of that branch.
858f7cb4
AS
4633 (vc-rcs-receive-file): Rewritten to contain only backend-specific
4634 code (as suggested by Stefan Monnier).
0e41e1d6 4635
01c86c56
GM
46362000-10-02 Gerd Moellmann <gerd@gnu.org>
4637
45c477b4
GM
4638 * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
4639 highlighting overlay with a different face over the overlay
4640 isearch uses to highlight the current match because that can lead
4641 to bad face combinations.
4642
01c86c56
GM
4643 * loadup.el (toplevel): Load faces before isearch.
4644
4645 * isearch.el (isearch-faces): New custom group.
4646 (isearch): New defface; was already tested for in the code.
4647 (isearch-lazy-highlight-face): Changed to defface from defcustom.
4648 (isearch-highlight): Always use face `isearch'.
4649
944425c0
DL
46502000-10-02 Dave Love <fx@gnu.org>
4651
4652 * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
4653 unused vars. Treat byte-constant2 like byte-constant. Fix bogus
4654 comparison of opcode with operand.
4655
2a099bcc
MB
46562000-10-03 Miles Bader <miles@gnu.org>
4657
4658 * play/yow.el (yow): Don't display multi-line quotations in a *Help*
4659 buffer, since the echo area will now grow to accommodate them.
4660
4300ecb8
AS
46612000-10-02 Andre Spiegel <spiegel@gnu.org>
4662
4663 * vc-hooks.el (vc-registered): If FILE used to be registered under
4664 a certain backend, try that one first.
4665
814299a7 4666 * vc.el (vc-responsible-backend): Undo the previous change in the
4300ecb8
AS
4667 argument list. Handle multiple backends correctly.
4668 (vc-find-new-backend): Function removed.
4669 (vc-register): Use vc-responsible-backend, as before.
4670 (vc-next-action-on-file): Do use vc-registered, not vc-backend.
4671
64e6cc18
GM
46722000-10-02 Gerd Moellmann <gerd@gnu.org>
4673
4674 * startup.el (fancy-splash-head): Change message below the
4675 logo.
4676
00df919e
MB
46772000-10-02 Miles Bader <miles@lsi.nec.co.jp>
4678
4679 * diff-mode.el (diff-goto-source): Emit a status message.
4680 (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
4eaa6852 4681 (diff-test-hunk): Fix doc string.
00df919e
MB
4682 (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
4683 (diff-advance-after-apply-hunk): New variable.
4eaa6852 4684 (diff-apply-hunk): Don't return a value.
00df919e 4685
ceec5a0c
SM
46862000-10-01 Stefan Monnier <monnier@cs.yale.edu>
4687
4688 * vc.el (vc-editable-p): Minor optimization.
4689 (edit-vc-file, vc-next-action-on-file): Don't use find-file.
4690 (vc-find-new-backend): New function split from vc-responsible-backend.
4691 (vc-register): Use it.
4692 (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
4693 (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
4694 (vc-default-unregister, vc-revert-buffer): Docstring fix.
4695 (vc-clear-headers): Don't use find-file.
4696 (vc-revert-buffer): Use `and' again (must have been a braino).
4697 (vc-switch-backend): Only prompt if requested.
4698 Short circuit if nothing is to be done.
4699 Don't use vc-resynch-buffer which could lose unsaved editing.
4700 (vc-default-receive-file): Update call to vc-unregister.
4701 (with-vc-file, vc-next-action-on-file):
4702 Use vc-backend rather than vc-registered.
4703 (vc-next-action-on-file): Use intern-soft.
4704 Deal with read-only *vc-diff* buffer.
4705 (vc-transfer-file): Docstring fix.
4706
4707 * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
4708 (vc-rcs-receive-file): Avoid with-vc-properties.
4709 Update call to vc-unregister.
4710 Use constant `RCS' rather than (dynamically bound) var `backend'.
4711
4ad5da8f
AS
47122000-10-01 Andre Spiegel <spiegel@gnu.org>
4713
814299a7 4714 * vc.el (vc-next-action-on-file): Update mode line only if file
4ad5da8f
AS
4715 is visited.
4716 (vc-start-entry): New argument initial-contents. Don't visit the file
4717 if it isn't already visited. Brought documentation up-to-date.
814299a7
MB
4718 (vc-next-action, vc-register): Updated calls to vc-start-entry.
4719 (vc-checkin): New optional arg initial-contents, which is passed to
4ad5da8f
AS
4720 vc-start-entry.
4721 (vc-finish-logentry): Make sure to bury log buffer only if there
4722 really is one. Call `vc-resynch-buffer' on log-file, not
4723 buffer-file-name.
4724 (vc-default-comment-history, vc-default-wash-log): New functions.
4725 (vc-index-of): Removed.
4726 (vc-transfer-file): Make do without the above.
4727 (vc-default-receive-file): Call comment-history unconditionally. Pass
4728 the resulting string to vc-checkin, instead of inserting it into the
4729 comment ring.
4730
4731 * vc-rcs.el (vc-rcs-receive-file): Call comment-history
4732 unconditionally. Use the comments as initial contents of the log
814299a7 4733 entry buffer. Document the trick to force branch creation with no
4ad5da8f
AS
4734 changes.
4735
aa0c3dca
MB
47362000-10-01 Miles Bader <miles@gnu.org>
4737
4738 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
4739 `recenter' with an arg to prevent redrawing the display.
4740
d5f5a2c5
SM
47412000-09-30 Stefan Monnier <monnier@cs.yale.edu>
4742
4743 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
4744
4745 * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
4746
814299a7 4747 * progmodes/c-mode.el (c-mode):
d5f5a2c5
SM
4748 Don't gratuitously override the default for comment-column.
4749
4750 * textmodes/tex-mode.el (latex-metasection-list): New var.
4751 (latex-imenu-create-index): Use it.
4752 Move the regexp construction outside loops (and use push).
814299a7 4753 (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
d5f5a2c5
SM
4754 (tex-font-lock-keywords): Moved from font-lock.el.
4755 (tex-comment-indent): Remove.
4756 (tex-common-initialization): Don't set comment-indent-function.
4757 (latex-block-default): New var.
4758 (tex-latex-block): Use it to provide a default choice.
4759 Add any unknown choice to latex-block-names.
4760 Insert [...] after {...}.
4761 (tex-last-unended-begin): Simplify regexp.
4762 (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
4763 (latex-forward-sexp-1, latex-forward-sexp): New functions.
4764 (latex-mode): Set forward-sexp-function.
4765
4766 * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
4767 Add regexp for @ignore ... @end ignore.
4768 (texinfo-heading-face): New face.
4769 (texinfo-font-lock-keywords): Use it.
4770 (texinfo-mode-menu): New menu.
4771 (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
4772 New functions.
4773 (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
814299a7 4774 (texinfo-section-types-regexp, texinfo-section-level-regexp)
d5f5a2c5
SM
4775 (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
4776 Remove declaration.
4777 (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
4778
4779 * delsel.el (delete-selection-mode): Use define-minor-mode.
4780
4781 * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
4782
47832000-09-29 Stefan Monnier <monnier@cs.yale.edu>
4784
4785 * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
4786
8a5506f2
GM
47872000-09-30 Gerd Moellmann <gerd@gnu.org>
4788
068127d6
GM
4789 * replace.el (keep-lines-read-args): New function.
4790 (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
4791 read arguments interactively. Add parameters RSTART and REND.
4792 Operate on the active region in Transient Mark mode.
4793
d777bb8f
GM
4794 * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
4795
8a5506f2
GM
4796 * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
4797 (authors-obsolete-files-regexps): New variable.
4798 (authors-add): Don't record changes in obsolete files.
4799
3fa87bfc
SM
48002000-09-29 Stefan Monnier <monnier@cs.yale.edu>
4801
4802 * autoinsert.el (auto-insert-mode): Use define-minor-mode.
4803
4804 * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
4805 (comment-indent): Make sure there's a space between code and comment.
4806 Shift comments left to avoid going past fill-column.
4807
f02149ce
GM
48082000-09-29 Gerd Moellmann <gerd@gnu.org>
4809
4810 * startup.el (startup-echo-area-message): New function.
4811 (display-startup-echo-area-message): Use it.
4812 (fancy-splash-screens): Rewritten to use keymaps and a timer.
4813 (fancy-splash-default-action): New function.
4814 (fancy-splash-screens-1): New function.
4815 (fancy-splash-head): Put a help-echo and a keymap under the image.
4816
a3ef6569
SM
48172000-09-29 Stefan Monnier <monnier@cs.yale.edu>
4818
4819 * diff-mode.el (diff-add-log-file-name): Remove.
4820 (diff-mode): Use add-log-buffer-file-name-function.
4821
4822 * add-log.el (find-change-log): New arg BUFFER-FILE.
4823 (add-log-file-name): Obey add-log-file-name-function.
4824 (add-log-buffer-file-name-function): New var.
4825 (add-change-log-entry): Use it.
4826
75e5b373
MB
48272000-09-29 Miles Bader <miles@gnu.org>
4828
4829 * image-file.el (image-file-name-extensions): New variable.
4830 (image-file-name-regexps): Renamed from `image-file-regexps'.
4831 New default value is nil. Call `auto-image-file-mode'.
4832 (image-file-name-regexp): New function.
4833 (auto-image-file-mode): New minor mode.
4834 (insert-image-file): Don't make conditional on the image-file
4835 handler being enabled.
4836 (image-file-handler): Make the call here conditional instead.
4837 (set-image-file-handler-enabled, enable-image-file-handler)
4838 (disable-image-file-handler): Functions removed.
4839
4840 * emacs-lisp/authors.el (authors-print): Rephrase many-files
4841 string.
4842
de6e1f7c
GM
48432000-09-29 Gerd Moellmann <gerd@gnu.org>
4844
4845 * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
4846 it's a function from CL.
4847 (latex-imenu-create-index): Replace eval-when-compile with progn
4848 because latex-section-alist is not bound while compiling.
4849
d8c201f5
SM
48502000-09-28 Stefan Monnier <monnier@cs.yale.edu>
4851
4852 * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
4853 (outline-mode): Use define-derived-mode.
4854
814299a7 4855 * progmodes/perl-mode.el (perl-mode):
d8c201f5
SM
4856 * progmodes/awk-mode.el (awk-mode):
4857 * progmodes/asm-mode.el (asm-mode):
4858 Don't gratuitously override the default for comment-column.
4859
4860 * emacs-lisp/lisp.el (lisp-complete-symbol):
4861 Distinguish the let-binding case from the funcall case.
4862 (forward-sexp-function): New variable.
4863 (forward-sexp): Use it.
4864
4865 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
4866 (easy-mmode-defmap): Remove the now useless autoload.
4867
4868 * time.el (display-time-mode): Use define-minor-mode.
4869
4870 * subr.el (add-minor-mode): Don't eval NAME.
4871 Don't depend on the presence of TOGGLE-FUN for any special behavior.
4872 Use if rather than cond.
4873
4874 * simple.el (read-expression-map): Define more properly.
4875 (comment-indent-hook): Remove.
4876 (string-to-syntax): Bug fix.
4877
4878 * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
4879 (cvs-ediff-diff): Fix typo.
4880 (cvs-revert-if-needed): Don't bother preserving read-only.
4881
4882 * paren.el (show-paren-mode): Use define-minor-mode.
4883
4884 * jka-compr.el (auto-compression-mode): Use define-minor-mode.
4885 (toggle-auto-compression): Remove.
4886 (jka-compr-build-file-regexp): Remove useless grouping.
4887
4888 * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
4889 Avoid user-reserved bindings.
4890 (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
4891 (diff-header-face): Revert to grey85.
4892
4893 * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
4894
4895 * complete.el (partial-completion-mode) <defcustom>: Remove.
4896 (partial-completion-mode): Use define-minor-mode.
4897 (PC-do-completion): Understand `completion-auto-help = delay'
4898 to mean to popup the completion buffer only the second time.
814299a7 4899 (PC-include-file-all-completions, PC-include-file-all-completions)
d8c201f5
SM
4900 (PC-include-file-all-completions): Don't quote lambda.
4901
4902 * comint.el (comint-mode-hook): Docstring fix.
4903 (comint-mode): Use define-derived-mode.
4904 (comint-mode-map): Remove obsolete comment.
4905 (make-comint): Minor stylistic change.
4906 (comint-insert-clicked-input): Be more careful to find the overlay.
4907 Use this-command-keys rather than hardcoding mouse-2.
4908
4909 * font-lock.el: Replace confusing (,@ with ,
4910 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
4911 Don't use regexp-opt-depth. Spice up the regexp for args.
4912 Don't distinguish between cmds that can take an opt arg or not.
4913 Use `append' and `prepend' rather than `keep'.
4914
4915 * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
4916 (latex-outline-regexp): New var.
4917 (latex-outline-level): New fun.
4918 (latex-section-alist): New var.
4919 (latex-imenu-create-index): Use it. Use `push' as well.
4920 (tex-shell-map): Initialize it properly.
4921 (tex-mode): Minor stylistic change.
4922 (plain-tex-mode): Use define-derived-mode.
4923 (latex-mode): Use define-derived-mode.
4924 Construct the paragraph regexps in a more readable way.
4925 Set the buffer-local outline-{level,regexp} vars.
4926 (slitex-mode): Derive from latex-mode.
4927 (tex-common-initialization): Don't kill-all-vars anymore.
4928 Add setting for comment-add and font-lock-defaults.
4929 (tex-start-shell): Use with-current-buffer and don't re-init keymap.
4930 (tex-main-file): New fun. Obey TeX-master as well and remove `.tex'.
4931 (tex-start-tex): New arg DIR (and send a chdir command for it).
4932 Also display the shell buffer and save it in tex-last-buffer-texed.
4933 (tex-region): Use expand-file-name rather than concat.
4934 Remove code made useless by changes in tex-start-tex.
4935 (tex-file): Use tex-main-file and adapt to new tex-start-tex.
4936
4937 * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
4938
ff398532
DL
49392000-09-28 Dave Love <fx@gnu.org>
4940
4941 * eshell/eshell.el (eshell) <defgroup>: Add :version.
4942
f9415d5b
GM
49432000-09-28 Gerd Moellmann <gerd@gnu.org>
4944
4945 * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
4946 `append'.
4947
fa003899
SM
49482000-09-28 Stefan Monnier <monnier@cs.yale.edu>
4949
4950 * info.el (Info-extract-pointer): Undo last change.
4951 Instead, fix the position of the `bound' arg to re-search-backward.
4952
49532000-09-27 Stefan Monnier <monnier@cs.yale.edu>
4954
4955 * info.el (Info-extract-pointer):
4956 Widen more carefully, to avoid finding pointers in other nodes.
4957 (Info-index): Use push.
4958
f9415d5b 49592000-09-27 Gerd Moellmann <gerd@gnu.org>
6f22f1ad
GM
4960
4961 * frame.el (set-frame-font): Remove call to obsolete function
4962 frame-update-faces.
4963 (set-foreground-color, set-background-color): Likewise for
4964 frame-update-face-colors.
4965
5538b8ba
MB
49662000-09-27 Miles Bader <miles@gnu.org>
4967
4968 * image-file.el: New file.
4969
60536eea
GM
49702000-09-27 Gerd Moellmann <gerd@gnu.org>
4971
5b551d58
GM
4972 * frame.el (frame-notice-user-settings): Don't call
4973 frame-update-faces, which is a no-op now.
814299a7 4974
60536eea
GM
4975 * ediff-wind.el (ediff-control-frame-parameters): Add zero
4976 tool-bar-lines.
4977
36f1966f
DL
49782000-09-27 Dave Love <fx@gnu.org>
4979
4980 * mouse.el: Fix last change.
4981
c5785b73
MB
49822000-09-27 Miles Bader <miles@lsi.nec.co.jp>
4983
4984 * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
4985
672172d9
KH
49862000-09-22 Kenichi Handa <handa@etl.go.jp>
4987
4988 * international/quail.el (quail-help): The output message is
4989 improved.
4990
4653b4ea
DL
49912000-09-26 Dave Love <fx@gnu.org>
4992
4993 * mouse.el (popup-menu): If POSITION is nil, set it using
4994 mouse-position.
4995
63900fcf
SS
49962000-09-25 Sam Steingold <sds@gnu.org>
4997
4998 * net/browse-url.el (browse-url-file-url): Check for null maps.
4999
cd3b81be
GM
50002000-09-26 Gerd Moellmann <gerd@gnu.org>
5001
876512ab 5002 * frame.el (frame-notice-user-settings): Don't add a
fa003899 5003 tool-bar-lines frame parameter to default-frame-alist in batch mode.
814299a7 5004
fa003899
SM
5005 * frame.el (frame-notice-user-settings):
5006 Make tool-bar-mode and default-frame-alist consistent.
77072ab1 5007
cd3b81be
GM
5008 * toolbar/tool-bar.el (tool-bar-help): New function.
5009
d8b4516f
GM
50102000-09-25 Gerd Moellmann <gerd@gnu.org>
5011
6567e9b5
GM
5012 * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
5013 current-load-list in top-level forms. Else this leaks a cons cell
5014 every time a defun is called.
63900fcf 5015
d8b4516f 5016 * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
63900fcf 5017
a461758e
DL
50182000-09-25 Dave Love <fx@gnu.org>
5019
7df6adc3
DL
5020 * startup.el (fancy-splash-head): Check XPM is available.
5021
a461758e
DL
5022 * autoinsert.el (auto-insert): Doc fix.
5023 (auto-insert-alist): Following GNU notices, don't say `copyright
5024 _by_'. Use line-beginning-position.
5025 (auto-insert): Check buffer-file-name is non-nil before use.
5026
b11af2dd
GM
50272000-09-25 Gerd Moellmann <gerd@gnu.org>
5028
5029 * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
5030 starting with `@def' or `@multitable', in addition to ones
5031 specified by the user in auto-fill-inhibit-regexp.
5032
5f9f981b
GM
50332000-09-25 Markus Rost <rost@math.ohio-state.edu>
5034
5035 * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
5036 rmail-dont-reply-to-names matches the empty string.
63900fcf 5037
8ff16b4e
GM
50382000-09-25 Gerd Moellmann <gerd@gnu.org>
5039
63900fcf 5040 * startup.el (command-line-1, fancy-splash-text): Change the
8ff16b4e
GM
5041 text to sound more friendly.
5042
9b4a7800
TTN
50432000-09-23 Thien-Thi Nguyen <ttn@gnu.org>
5044
5045 * progmodes/hideshow.el: Update author email address.
5046 Generally, sync w/ maintainer version 5.22.
9b4a7800
TTN
5047 (hs-hide-all-non-comment-function): New var.
5048 (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
5049 (hs-hide-all): Use `hs-hide-all-non-comment-function'.
5050 (hs-show-region): Delete this command.
5051 (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
5052
4c7c1f3f
DL
50532000-09-22 Dave Love <fx@gnu.org>
5054
5055 * hl-line.el (hl-line-overlay): Don't make it buffer-local.
5056 (hl-line-highlight): Specify buffer when moving overlay.
5057
5058 * progmodes/fortran.el (fortran-mode): Locally set
5059 normal-auto-fill-function.
5060 (fortran-auto-fill-mode): Just alias to auto-fill-mode.
5061 (fortran-mode-map): Adjust auto-fill menu entry.
5062
13f93dee
GM
50632000-09-22 Gerd Moellmann <gerd@gnu.org>
5064
36eb0a91
GM
5065 * vc-rcs.el (toplevel): Require `vc' when compiling.
5066
fa003899 5067 * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
13f93dee 5068
36a03bf9
AS
50692000-09-22 Andre Spiegel <spiegel@gnu.org>
5070
9b4a7800 5071 * vc.el (vc-switch-backend): Signal an error if the file is not
36a03bf9
AS
5072 registered under the new backend.
5073
9b4a7800 5074 * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
36a03bf9
AS
5075 without explicit revision number.
5076
6e4e8a3b
SM
50772000-09-21 Stefan Monnier <monnier@cs.yale.edu>
5078
5079 * diff-mode.el (diff-file-header-face): Reset to its previous value.
5080 (diff-hunk-text): Correctly use offsets rather than buffer-positions.
5081 (diff-xor): New function.
5082 (diff-find-source-location): Use it. Fix a stupid name clash.
5083 (diff-hunk-status-msg): New function.
5084 (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
5085 (diff-test-hunk): Use diff-find-source-location.
5086 (diff-goto-source): Favor the `reverse'.
5087 (diff-hunk-text): Properly handle one-sided context diffs.
5088 (diff-apply-hunk): When done, advance to the next hunk.
5089
1b24b888
GM
50902000-09-21 Gerd Moellmann <gerd@gnu.org>
5091
623a0aae
GM
5092 * startup.el (command-line): If frame was created with a non-zero
5093 tool-bar-lines parameter, switch tool-bar-mode on.
9b4a7800 5094
1b24b888
GM
5095 * add-log.el (change-log-date-face, change-log-name-face)
5096 (change-log-email-face, change-log-file-face)
5097 (change-log-list-face, change-log-conditionals-face)
fa003899
SM
5098 (change-log-function-face, change-log-acknowledgement-face):
5099 New faces, inheriting from font-lock faces.
1b24b888 5100 (change-log-font-lock-keywords): Use them.
9b4a7800 5101
93b3a1c8
DL
51022000-09-21 Dave Love <fx@gnu.org>
5103
80585273
DL
5104 * progmodes/cperl-mode.el (top-level): Clean up
5105 `eval-when-compile's and assorted defvars.
5106 (cperl-invalid-face): Don't double-quote value. Change custom
5107 type.
5108 (cperl-mode): Set normal-auto-fill-function and don't zap
5109 auto-fill-function.
5110 (cperl-imenu--function-name-regexp-perl): Renamed from
5111 imenu-example--function-name-regexp-perl.
5112 (cperl-imenu--create-perl-index): Renamed from
5113 imenu-example--create-perl-index.
5114 (cperl-xsub-scan): Don't require cl.
5115
93b3a1c8
DL
5116 * msb.el (msb-mode-map): Use substitute-key-definition.
5117 (msb-mode): Use msb-mode-map.
5118
43ccb598
AS
51192000-09-21 Andre Spiegel <spiegel@gnu.org>
5120
5121 * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
5122 New functions.
fa003899 5123 (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
43ccb598
AS
5124 (vc-switch-backend): New function.
5125 (vc-prefix-map): Bind `vc-switch-backend' to `b'.
5126 (vc-register): Fix prompt.
5127 (vc-unregister, vc-default-unregister): New functions.
5128 (vc-version-diff): Handle empty buffer in sentinel.
5129
5130 * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
5131 (vc-rcs-state-heuristic): Use it to guess the state of files with
5132 non-strict locking.
5133 (vc-rcs-find-most-recent-rev): Handle the case when a branch has
5134 been set with -b, but not created yet.
5135 (vc-rcs-fetch-master-state): With non-strict locking, compare file
5136 contents in order to find the state.
5137 (vc-rcs-checkin): Allow creation of branches with no changes.
fa003899
SM
5138 (vc-rcs-unregister, vc-rcs-receive-file)
5139 (vc-rcs-set-non-strict-locking): New functions.
43ccb598 5140
9b4a7800 5141 * vc-hooks.el (vc-name): Force correct computation of the value
43ccb598 5142 in case it is missing.
9b4a7800 5143
95fadcca
GM
51442000-09-21 Gerd Moellmann <gerd@gnu.org>
5145
5146 * startup.el (fancy-splash-tail): Use a different foreground
5147 color on a dark frame background.
5148
470f23e1
MB
51492000-09-21 Miles Bader <miles@lsi.nec.co.jp>
5150
5151 * info.el: Use the correct capitalization when making Info-mode
5152 and Info-edit-mode `special' modes.
5153
281096ed
SM
51542000-09-20 Stefan Monnier <monnier@cs.yale.edu>
5155
5156 * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
5157 (diff-mode): Add support for add-log.el.
5158 (diff-hunk-text): Use char offsets rather than line offsets.
5159 (diff-find-source-location): Replace LINE with line-offset (nil
5160 if not found) and always set POS to a meaningful position.
5161 Adapt to the new char-offsets.
5162 (diff-apply-hunk): Drop support for the unused `select' POPUP.
5163 Adapt to the new diff-find-source-location.
5164 (diff-goto-source): Adapt to the new diff-find-source-location.
5165
5166 * add-log.el (add-log-file-name): New function (split out of
5167 add-change-log-entry).
5168 (add-change-log-entry): Use it.
5169 Call add-log-file-name-function with the changelog file name if
5170 the current buffer is not associated with any file.
5171 Avoid find-file if the selected window is dedicated.
5172
5173 * diff-mode.el (diff-find-source-location):
5174 Move code from diff-apply-hunk. Return buffer rather than file.
5175 (diff-apply-hunk): Use the new result from diff-find-source-location.
5176 (diff-goto-source): Use the new diff-find-source-location.
5177
c29d77c4
DL
51782000-09-20 Dave Love <fx@gnu.org>
5179
5180 * iswitchb.el: Some doc fixes.
5181 (iswitchb-mode-map): Define completely initially. Inherit
5182 minibuffer-local-map.
5183 (iswitchb-completion-help) <!iswitchb-xemacs>: Use
5184 fundamental-mode.
5185 (iswitchb-global-map): New variable.
5186 (iswitchb-summaries-to-end): Amalgamate regexps.
5187 (iswitchb-mode): New.
5188 (iswitchb-mode-hook): New variable.
5189 (iswitchb) <defgroup>: Add URL link. Use group `completion', not
5190 `extensions'.
5191
49939379
GM
51922000-09-20 Gerd Moellmann <gerd@gnu.org>
5193
d05c87ac
GM
5194 * ehelp.el (electric-help): New defgroup.
5195 (electric-help-shrink-window): New user-option.
5196 (with-electric-help): Use it.
5197
1ec082d4
GM
5198 * window.el (shrink-window-if-larger-than-buffer): If face
5199 `mode-line' has a :box, and we're on a graphical frame, add 1
5200 to the needed window height.
5201
f46c275e
GM
5202 * frame.el (frame-notice-user-settings): Add a last parameter nil
5203 to a call to `append', because the last list passed to `append' is
5204 not copied, and so subsequent calls to assq-delete-all will modify
5205 default-frame-alist.
5206
b7e11c5b
GM
5207 * startup.el (fancy-splash-image): Change :type.
5208 (fancy-splash-head): Use an XBM image if appropriate.
5209 (command-line-1): Show splash screens in more cases.
5210
26ff68aa
GM
5211 * startup.el (fancy-splash-text): Don't quote faces.
5212
8320414c
GM
5213 * dired.el (dired-font-lock-keywords): Undo last change.
5214 (dired-readin): Bind indent-tabs-mode to nil.
5215
49939379
GM
5216 * startup.el (fancy-splash-head): If frame's background mode
5217 is `dark', change the black background of the image to gray.
5218 (fancy-splash-screens): Display startup echo area message.
5219 (display-startup-echo-area-message): New function.
5220
c3b27206
MB
52212000-09-20 Miles Bader <miles@lsi.nec.co.jp>
5222
55a3d2a1
MB
5223 * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
5224
5225 * info.el (info-header-node): Tweak for color ttys.
5226
37a99821
MB
5227 * faces.el (face-valid-attribute-values): Make sure directories we
5228 search for stipples both exist and are readable before trying to
5229 search them.
5230
0415d0d0
MB
5231 * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
5232 in the dry-run case.
5233
523b128c
MB
5234 * jka-compr.el (with-auto-compression-mode): New macro.
5235
c3b27206
MB
5236 * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
5237 (custom-group-tag-face, custom-variable-tag-face): Use relative
5238 :height and inherit from `variable-pitch' face instead of
5239 hardwiring :family.
5240 * hi-lock.el (hi-black-hb): Likewise.
5241
ddba99ad
MB
5242 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
5243 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
5244 toolbar-add-item, if image doesn't have a mask add a `:mask
5245 heuristic'.
5246
7e99fbde
SM
52472000-09-19 Stefan Monnier <monnier@cs.yale.edu>
5248
5249 * diff-mode.el: Docstring fixes.
5250 (diff-header-face, diff-comment-face): New faces.
5251 (diff-font-lock-keywords): Highlight a bit differently.
5252 (diff-find-source-location): Don't return SPAN any more.
5253 (diff-hunk-text): Don't bother erasing the temp buffer.
5254 (diff-find-text): Drop argument LINE.
5255 (diff-apply-hunk): Update calls to diff-find-text.
5256 (diff-goto-source): Use pop-to-buffer again and don't raise an error.
5257
5258 * calendar/calendar.el: Docstring fixes.
5259 (calendar-make-alist): Don't quote lambda.
5260 (calendar-star-date): Use make-local-variable.
5261
fb275c02
DL
52622000-09-19 Dave Love <fx@gnu.org>
5263
7e99fbde
SM
5264 * toolbar/tool-bar.el: Renamed from toolbar.el.
5265 Change `toolbar' to `tool-bar' generally in symbols.
5266 Make some items invisible in `special' major modes.
5267 (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
5268 Add arg PROPS.
532cb34d 5269
7e99fbde
SM
5270 * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
5271 Add :version here.
fb275c02
DL
5272 (fancy-splash-delay, fancy-splash-image): Remove :version here.
5273
8f4ca9a5
GM
52742000-09-19 Gerd Moellmann <gerd@gnu.org>
5275
8b7707e1 5276 * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
da1608d9 5277
8b7707e1 5278 * files.el (find-file-suppress-same-file-warnings): New user-option.
8fb3df59
GM
5279 (find-file-noselect): Use it.
5280
8b7707e1 5281 * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
a01bb1db
GM
5282 (fancy-splash-screen): Defgroup.
5283
8f4ca9a5
GM
5284 * add-log.el (change-log-font-lock-keywords): Match names
5285 more exactly for the case that font-lock-constant-face is
5286 underlined.
5287
ba9eeda1 52882000-09-19 Richard M. Stallman <rms@gnu.org>
9b4a7800 5289
8b7707e1 5290 * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
ba9eeda1 5291
289eaef9
AS
52922000-09-19 Andre Spiegel <spiegel@gnu.org>
5293
5294 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
5295
ce9ded5d
GM
52962000-09-19 Gerd Moellmann <gerd@gnu.org>
5297
c113de23
GM
5298 * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
5299 * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
5300 * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
5301 * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
5302 * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
5303 * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
5304 * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
5305 * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
5306 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
5307 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
5308 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
8f4ca9a5 5309 * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
c113de23 5310
ce9ded5d
GM
5311 * startup.el (fancy-splash-text): New variable.
5312 (fancy-splash-delay, fancy-splash-image): New user-options.
5313 (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
5314 (fancy-splash-screens): New functions.
5315 (command-line-1): If display has a `display' frame parameter, has
5316 colors, and we have XPM support, show more fancy splash screens.
9b4a7800 5317
b9b1c3a9
DL
53182000-09-19 Dave Love <fx@gnu.org>
5319
5320 * map-ynp.el (map-y-or-n-p): Check use-dialog-box. Don't lose
5321 with null `help'. Use modern backquote syntax.
5322
1af25534
GM
53232000-09-19 Gerd Moellmann <gerd@gnu.org>
5324
afd3c8cd
GM
5325 * font-lock.el (font-lock-mode): Change message telling the user
5326 that ``the buffer is too big''.
5327
1af25534
GM
5328 * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
5329 for instance for the case that tab-width is 2.
5330
05b1f851
GM
53312000-09-18 Gerd Moellmann <gerd@gnu.org>
5332
5333 * toolbar/toolbar.el (toolbar-like-menu-item): Like in
5334 toolbar-add-item, if image doesn't have a mask add a `:mask
5335 heuristic'.
5336
8ec8f673
MB
53372000-09-18 Miles Bader <miles@lsi.nec.co.jp>
5338
2b612b1f
MB
5339 * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
5340 and return a cons if it's non-nil.
5341 (diff-apply-hunk): Try to jump to the line in the source text
5342 corresponding to the position of point in the in the hunk.
5343
9b4a7800 5344 * info.el (Info-title-3-face, Info-title-2-face)
8ec8f673
MB
5345 (Info-title-1-face): Use face inheritance and relative sizes
5346 instead of hard-wiring things.
5347
5348 * faces.el (secondary-selection): Make dark-background variant sane.
5349
5eedab4d
AI
53502000-09-16 Andrew Innes <andrewi@gnu.org>
5351
5eedab4d
AI
5352 * makefile.w32-in (compile-files-CMD): No need to make .elc files
5353 read-only, since they aren't under VC now.
5354
6a142f26
DL
53552000-09-17 Dave Love <fx@gnu.org>
5356
e07436e1
DL
5357 * tmm.el: Replace mapcar with mapc in several places.
5358
5359 * loadhist.el (unload-feature): Maybe call elp-restore-list and
5360 ad-unadvise.
5361
7d354dd5
DL
5362 * international/latin1-disp.el: New file.
5363
6a142f26
DL
5364 * calendar/cal-move.el (scroll-calendar-left)
5365 (scroll-calendar-right): Make arg optional (for active mode line).
5366
5367 * calendar/calendar.el (calendar-mode-line-format): Make fields
5368 mouse-sensitive.
5369 (calendar-read-date, calendar-read-date, calendar-window-list):
5370 Unquote lambda.
5371 (calendar-month-name): Use aref, not sref.
5372
5373 * view.el (minor-mode-alist): Propertize the string.
5374
5375 * international/characters.el (standard-case-table): Add entries
5376 for Greek.
5377
50ac70af
MB
53782000-09-18 Miles Bader <miles@gnu.org>
5379
53c9ab4f
MB
5380 * info.el (info-node, info-xref): Add dark-background variants.
5381
a114b1ca
MB
5382 * faces.el (header-line): Change defaults to be less confusing
5383 when mixed with mode-lines.
5384
50ac70af
MB
5385 * info.el (Info-fontify-node): Make a few cleanups.
5386 Add extra `help-echo' and `local-map' props to node xrefs.
5387 Use header-specific faces for node-names & xrefs.
5388 (Info-use-header-line): New variable.
53c9ab4f 5389 (info-header-xref, info-header-node): New faces.
50ac70af
MB
5390 (Info-setup-header-line): New function.
5391 (Info-select-node): Call Info-setup-header-line when enabled.
5392 (Info-extract-pointer): Work even if the header line is hidden.
5393 (Info-header-line): New variable.
5394
729927ff
SM
53952000-09-16 Stefan Monnier <monnier@cs.yale.edu>
5396
5397 * vms-patch.el (print-region-function): Don't quote lambda.
5398
5399 * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
5400
5401 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
5402 (lm-get-header-re): Allow spaces between the header and the colon.
5403 (lm-header): Allow $ in non-RCS headers.
5404 (lm-header-multiline): Put the strings back into order.
5405 Stop at an empty line. Don't require two space chars if the
5406 line is clearly not another header line.
5407
5408 * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
5409 (popup-menu-popup): Remove.
5410
7a98d821
GM
54112000-09-15 Gerd Moellmann <gerd@gnu.org>
5412
7f8f1edc
GM
5413 * toolbar/toolbar.el (toolbar-add-item): Use the same image
5414 specification if or if not tool-bar item contains an `:enabled'
5415 property.
5416
7a98d821
GM
5417 * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
5418 current buffer has no file name.
5419
a7bc704b
DL
54202000-09-15 Dave Love <fx@gnu.org>
5421
5422 * strokes.el: Sync with maintainer's current version with changes
5423 for Emacs, but avoid runtime cl and levents.
5424 (toplevel): Change autoloads and compilation requires.
5425 (strokes-version, strokes-bug-address, strokes-lift): Values
5426 changed.
5427 (strokes-xpm-header, strokes-insinuated): New variable.
5428 (strokes): Add :link.
5429 (strokes-mode): Customized.
5430 (strokes-while-inhibiting-garbage-collector): New macro.
5431 (strokes-remassoc): Avoid remove-if.
5432 (strokes-fix-button2-command): Don't use ad-do-it.
5433 (strokes-insinuate): New function.
5434 (strokes-button-press-event-p, strokes-button-release-event-p):
5435 New functions, used instead of non-`strokes-' versions..
5436 (strokes-mouse-event-p): Rewritten.
5437 (strokes-event-closest-point): Avoid event-point.
5438 (strokes-get-grid-position): Avoid cdadr, caadr
5439 (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
5440 functions.
5441 (strokes-help): Use with-output-to-temp-buffer.
5442 (strokes-window-configuration-changed-p): New function.
5443 (strokes-update-window-configuration): Use buffer-live-p,
5444 strokes-window-configuration-changed-p.
5445 (strokes-mode): Use strokes-insinuate. Alter mouse bindings.
5446 (strokes-char-face): New face.
5447 (strokes-char-table, strokes-base64-chars): New variable.
5448 (strokes-xpm-for-stroke, strokes-list-strokes)
5449 (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
5450 (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
5451 (strokes-xpm-to-compressed-string, strokes-decode-buffer)
5452 (strokes-encode-buffer, strokes-xpm-for-compressed-string)
5453 (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
5454 functions.
5455
47e351a3
GM
54562000-09-15 Gerd Moellmann <gerd@gnu.org>
5457
ebb8f116
GM
5458 * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
5459
47e351a3
GM
5460 * image.el (create-image): Doc fix.
5461
5462 * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
5463 instead of `:heuristic-mask t'.
5464
fe83b953
AI
54652000-09-14 Andrew Innes <andrewi@gnu.org>
5466
5467 * makefile.w32-in: Revert to Unix line endings.
5468
52481729
AI
54692000-09-14 Andrew Innes <andrewi@gnu.org>
5470
3021e816
AI
5471 * makefile.w32-in: Add bootstrap support. Also copy lisp source
5472 when installing.
5473
52481729
AI
5474 * makefile.nt (DONTCOMPILE): Fix typo.
5475
5476 * shell.el (shell-write-history-on-exit): New function.
5477 (shell-dumb-shell-regexp): New custom variable.
5478 (shell-mode): Make shell-write-history-on-exit the process
5479 sentinel if shell name matches shell-dumb-shell-regexp.
5480
5481 * w32-fns.el: Comment out before-init-hook function which resets
5482 source-directory based; this breaks bootstrap.
5483
f8034e41
DL
54842000-09-14 Dave Love <fx@gnu.org>
5485
5486 * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
5487 toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
5488 toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
5489 toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
5490 toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
5491 toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
5492 toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm: New.
5493 From Tuomas Kuosmanen <tigert@gimp.org>. (Gnome icons fetched
5494 from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
5495
5496 * toolbar/toolbar.el: New.
5497
5498 * subdirs.el: Add toolbar.
5499
b9ce5694
GM
55002000-09-14 Gerd Moellmann <gerd@gnu.org>
5501
5502 * indent.el (indent-for-tab-command): Doc fix.
5503
986b7dee
GM
55042000-09-14 Alex Schroeder <alex@gnu.org>
5505
5506 * ansi-color.el (ansi-colors): Doc change.
5507 (ansi-color-get-face): Simplified regexp.
5508 (ansi-color-faces-vector): Added more faces, doc change.
5509 (ansi-color-names-vector): Doc change.
5510 (ansi-color-regexp): Simplified regexp.
5511 (ansi-color-parameter-regexp): New regexp.
5512 (ansi-color-filter-apply): Doc change.
5513 (ansi-color-filter-region): Doc change.
5514 (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
5515 deal with zero length parameters.
5516 (ansi-color-apply-on-region): Doc change.
5517 (ansi-color-map): Doc change.
5518 (ansi-color-map-update): Removed debugging message.
5519 (ansi-color-get-face-1): Added condition-case to trap
5520 args-out-of-range errors.
5521 (ansi-color-get-face): Doc change.
5522 (ansi-color-make-face): Removed.
5523 (ansi-color-for-shell-mode): New option.
9b4a7800 5524
076ff911
KH
55252000-09-13 Kenichi Handa <handa@etl.go.jp>
5526
5527 * international/quail.el (quail-start-translation): Translate KEY
5528 if necessary even if it doesn't have any mapping in the current
5529 input method.
5530 (quail-start-conversion): Likewise.
5531 (quail-help): The output message is improved.
5532
bdf08678
MB
55332000-09-13 Miles Bader <miles@gnu.org>
5534
5535 * comint.el (comint-output-filter): Revert to using
5536 `insert-before-markers'. Add bletcherous hack to undo damage
5537 caused by `insert-before-markers'. Put `front-sticky' property on
5538 overlays created here so that the field code understands how the
5539 overlay works. Use a let when making comint-last-prompt-overlay,
5540 so that the code is easier to read.
5541
ffb8db8d
DL
55422000-09-13 Dave Love <fx@gnu.org>
5543
5544 * wid-edit.el (widget-default-format-handler): DTRT when
5545 doc-property is a function.
5546
5dd05f61
GM
55472000-09-12 Francesco Potorti` <pot@gnu.org>
5548
5549 * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
5550 filed name if it's not there.
5551
35177617
DL
55522000-09-12 Dave Love <fx@gnu.org>
5553
9023837e
DL
5554 * simple.el (read-mail-command): Doc fix.
5555 (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
5556
35177617
DL
5557 * vc.el (vc-dired-listing-switches): Fix :version.
5558
5559 * vc-hooks.el: Doc fixes.
5560
5561 * subr.el (add-minor-mode): Use toggle-fun arg.
5562
5563 * speedbar.el: Add :version to several defcustoms.
5564
5565 * imenu.el (imenu--truncate-items, imenu--cleanup)
5566 (imenu--generic-function): Avoid mapcar.
5567 (imenu--replace-spaces): Function removed.
5568 (imenu--completion-buffer): Use subst-char-in-string.
5569 (imenu-add-to-menubar): Use keymap inheritance.
5570
1afaae94
MB
55712000-09-12 Miles Bader <miles@gnu.org>
5572
5573 * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
5574 (diff-mode-map): Bind `diff-test-hunk'.
5575 (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
5576
55772000-09-11 Gerd Moellmann <gerd@gnu.org>
71246c2c
GM
5578
5579 * bytecomp.el (byte-compile-defvar): Undo last change
5580 because it breaks '(make-variable-buffer-local (defvar ...)'
5581 which is used at least in dired.
5582
63c36c3c
KH
55832000-09-12 Kenichi Handa <handa@etl.go.jp>
5584
5585 * international/quail.el (quail-define-package): Docstring
5586 modified.
5587
1ad24be1
KH
55882000-09-12 Kenichi Handa <handa@etl.go.jp>
5589
362a8065
KH
5590 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
5591 extra docstrings for "chinese-ccdospy", "chinese-ecdict",
5592 "chinese-etzy", "chinese-sw", and "chinese-ziranma". Modify the
5593 docstring of "chinese-py".
5594
1ad24be1
KH
5595 * international/quail.el (quail-translation-docstring): New
5596 variable.
5597 (quail-show-keyboard-layout): Docstring modified.
5598 (quail-select-current): Likewise.
5599 (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
5600 infinite recursive call.
5601 (quail-help): Check quail-translation-docstring. Format of the
5602 output changed.
5603 (quail-help-insert-keymap-description): Adjusted for the above
5604 change.
5605
cc0f95a4
GM
56062000-09-11 Gerd Moellmann <gerd@gnu.org>
5607
5608 * bytecomp.el (byte-compile-defvar): Only cons onto
5609 current-load-list in top-level forms. Else this leaks a cons cell
5610 every time a defun is called.
5611
7530b6da
MB
56122000-09-11 Miles Bader <miles@lsi.nec.co.jp>
5613
5614 * diff-mode.el (diff-apply-hunk): Function basically rewritten.
5615 Now understands non-unified diffs. Some functionality moved into
5616 `diff-hunk-text' and `diff-find-text'. Add OTHER-FILE, DRY-RUN,
5617 POPUP, and NOERROR arguments. If DRY-RUN is true, don't actually
5618 modify anything. Only reposition point in the patched file if the
5619 patch succeeds. Only pop up another window if POPUP is true.
5620 Emit a message describing what happened if successful, and at what
5621 line-offset. Automatically detect reversed hunks and do something
5622 appropriate.
5623 (diff-hunk-text, diff-find-text): New functions.
5624 (diff-filter-lines): Function removed.
5625 (diff-test-hunk): New function.
5626 (diff-goto-source): Rewritten in terms of diff-apply-hunk.
5627
6b124390
DL
56282000-09-10 Dave Love <fx@gnu.org>
5629
5630 * textmodes/tildify.el: Minor doc/commentary fixes.
5631 (tildify) <defgroup>: Add :version.
5632
5633 * faces.el (face-x-resources): Make custom type more specific.
5634 (frame-background-mode): Use mapc.
5635 (region) <defcustom>: Add :version.
5636
7f8b6551
SM
56372000-09-08 Stefan Monnier <monnier@cs.yale.edu>
5638
9b4a7800
TTN
5639 * vc-sccs.el (vc-sccs-register):
5640 * vc-rcs.el (vc-rcs-register):
7f8b6551
SM
5641 * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
5642 * vc.el (vc-register): Clear file's properties.
5643
c454aac1
GM
56442000-09-08 Gerd Moellmann <gerd@gnu.org>
5645
5646 * faces.el (face-spec-set): Only face-spec-reset-face when
5647 ATTRS is non-nil.
5648
bb934822
EZ
56492000-09-08 Eli Zaretskii <eliz@is.elta.co.il>
5650
5651 * help.el (help-insert-xref-button): Fix a typo in doc string.
5652
03419440
EZ
56532000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
5654
7f8b6551
SM
5655 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
5656 Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
43b11fee
EZ
5657 methods.
5658
03419440
EZ
5659 * menu-bar.el (read-mail-item-name): New function.
5660 (menu-bar-tools-menu): Use it to compute and display the package
5661 used to read email.
5662 (menu-bar-tools-menu): Fix typo in GUD's help string.
5663
dbcee71a
DL
56642000-09-07 Dave Love <fx@gnu.org>
5665
19e713d8
DL
5666 * diff-mode.el (diff-mouse-goto-source): New function.
5667
a7cafade 5668 * vc-sccs.el: Doc fixes.
7f8b6551 5669 (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
a7cafade
DL
5670
5671 * vc-rcs.el: Doc fixes.
7f8b6551
SM
5672 (vc-rcs-register-switches, vc-rcs-checkin-switches)
5673 (vc-rcs-checkout-switches, vc-rcs-header)
a7cafade
DL
5674 (vc-rcs-master-templates): Add or change :version.
5675
7f8b6551 5676 * vc-cvs.el: Doc fixes.
a7cafade
DL
5677 (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
5678 (vc-cvs-stay-local): Add :version.
5679
dbcee71a
DL
5680 * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
5681
ed254191
KH
56822000-09-07 Kenichi Handa <handa@etl.go.jp>
5683
5684 * international/quail.el (quail-help): Fix previous change.
5685
ab0ee409
GM
56862000-09-07 Gerd Moellmann <gerd@gnu.org>
5687
f46f845b 5688 * faces.el (color-values): Doc fix.
9b4a7800 5689
ab0ee409
GM
5690 * faces.el (frame-set-background-mode): Use frame-parameter
5691 instead of frame-parameters.
5692
5693 * frame.el (filtered-frame-list): Reduce consing.
9b4a7800 5694 (frames-on-display-list): Call frame-parameter instead of
ab0ee409 5695 frame-parameters.
9b4a7800 5696
f7246ac7
KH
56972000-09-07 Kenichi Handa <handa@etl.go.jp>
5698
5699 * language/devan-util.el (devanagari-to-indian-region): In the
5700 loop, change the following char, not preceding char.
5701
96889af2
GM
57022000-09-07 Gerd Moellmann <gerd@gnu.org>
5703
1091dd67
GM
5704 * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
5705 instead of frame-parameters.
5706
9b4a7800 5707 * faces.el (set-face-attribute): Simplify by calling
0da3ecef
GM
5708 internal-set-lisp-face-attribute with FRAME being 0.
5709
5710 * vc.el: Remove `Id' version control keyword.
96889af2 5711
0fddd0dc
KH
57122000-09-07 Kenichi Handa <handa@etl.go.jp>
5713
5714 * help.el (help-make-xrefs): Adjusted for the change of
5715 help-xref-mule-regexp.
5716 (help-insert-xref-button): New function.
5717
5718 * international/mule-cmds.el (help-xref-mule-regexp-template):
5719 Include the pattern for character set.
5720 (leim): New group.
5721
5722 * international/quail.el: Don't require face.
5723 (quail): New group.
7f8b6551 5724 (quail-other-command): Dummy command to make quail-help work better.
0fddd0dc
KH
5725 (quail-keyboard-layout-alist): Add Keyboard type "jp106".
5726 (quail-keyboard-layout-substitution): New variable.
5727 (quail-update-keyboard-layout): New function.
5728 (quail-keyboard-layout-type): New customizable variable.
5729 (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
5730 (quail-keyboard-translate): Pay attention to
5731 quail-keyboard-layout-substitution.
5732 (quail-insert-kbd-layout): New function.
5733 (quail-show-keyboard-layout): New function.
5734 (quail-get-translation): If the definition is a vector of length
7f8b6551 5735 1, and the element is a string of length 1, return the character
0fddd0dc
KH
5736 in that string.
5737 (quail-update-current-translations): Fix the case of
5738 relative-index out of range.
5739 (quail-build-decode-map, quail-insert-decode-map): New Functions.
5740 (quail-help): Show keyboard layout by quail-insert-kbd-layout.
7f8b6551 5741 Show key sequences for all available characters.
0fddd0dc
KH
5742 (quail-help-insert-keymap-description): Don't show such verbose
5743 key bindings as quail-self-insert-command.
5744
5745 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
5746 Format changed, and each element now have extra documentations.
5747 (tit-process-header): Delete invalid characters from TIT-PROMPT.
5748 Adjusted for the change of quail-cxterm-package-ext-info.
5749
8ddceaf1
GM
57502000-09-06 Gerd Moellmann <gerd@gnu.org>
5751
5752 * vc-hooks.el (toplevel): Don't require `vc' during compilation;
5753 requiring it leads to a recursive loading of vc.el and vc-hooks.el
5754 during bootstrap.
5755
099bd78a
SM
57562000-09-05 Stefan Monnier <monnier@cs.yale.edu>
5757
5758 * vc.el: (toplevel): Don't require `dired' at run-time.
5759 (vc-dired-resynch-file): Remove autoload cookie.
5760
57612000-09-05 Andre Spiegel <spiegel@gnu.org>
5762
5763 * vc.el: Made several backend functions optional.
5764 (vc-default-responsible-p): New function.
5765 (vc-merge): Use RET for first version to trigger merge-news, not
5766 prefix arg.
5767 (vc-annotate): Handle backends that do not support annotation.
5768 (vc-default-merge-news): Removed. The existence of a merge-news
5769 implementation is now checked on caller sites.
5770
9b4a7800 5771 * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
099bd78a
SM
5772 case.
5773
9b4a7800 5774 * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
099bd78a
SM
5775 special case that has been removed from the default in vc-hooks.el.
5776
57772000-09-05 Stefan Monnier <monnier@cs.yale.edu>
5778
5779 * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
5780
57812000-09-05 Andre Spiegel <spiegel@gnu.org>
5782
5783 * vc-hooks.el: Require vc during compilation.
5784 (vc-file-setprop): Use `vc-touched-properties' if bound by the new
5785 macro `with-vc-properties' in vc.el.
5786 (vc-file-getprop): Doc fix.
5787 (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
9b4a7800 5788
099bd78a
SM
5789 * vc.el: Require dired-aux during compilation.
5790 (vc-name-assoc-file): Moved to vc-sccs.el.
5791 (with-vc-properties): New macro.
9b4a7800 5792 (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
099bd78a
SM
5793 vc-finish-steal): Use it.
5794 (vc-cancel-version): Moved RCS-specific code to vc-rcs.el. The call
5795 to the backend-specific function is now supposed to do the checkout,
5796 too.
5797 (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
5798
9b4a7800 5799 * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
099bd78a
SM
5800 set file properties; that gets done in the generic code now.
5801
5802 * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
5803 Changed parameter list, added code from vc.el that does the
5804 checkout, possibly with a double-take.
5805
5806 * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
5807 (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
5808 the above under the new name.
5809 (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'. Changed
5810 parameter list, added checkout command.
5811 (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
5812 properties; that gets done in the generic code now.
5813
58142000-09-05 Stefan Monnier <monnier@cs.yale.edu>
5815
5816 * vc.el: Docstring fixes (courtesy of checkdoc).
5817
58182000-09-05 Stefan Monnier <monnier@cs.yale.edu>
5819
5820 * vc.el (vc-checkout-writable-buffer-hook)
5821 (vc-checkout-writable-buffer): Remove.
5822 (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
5823 (vc-log-mode): Make it into a clean derived major mode.
5824 (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
5825 vc-log-mode if log-edit is not available.
5826 (vc-dired-mode-map): Don't set-keymap-parent yet.
5827 (vc-dired-mode): Do set-keymap-parent here.
5828 (vc-dired-buffers-for-dir): Nop if dired is not loaded.
5829
08ba3862
GM
58302000-09-05 Gerd Moellmann <gerd@gnu.org>
5831
5832 * faces.el (set-face-attribute, face-spec-reset-face)
5833 (face-spec-set): Avoid consing by removing calls to `apply'.
5834
5835 * frame.el (frame-parameter): Move to C code.
5836
3b4429b4
DL
58372000-09-05 Dave Love <fx@gnu.org>
5838
5839 * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
5840 insert-before-markers-and-inherit. Now checked systematically!
5841
877055f6
GM
58422000-09-05 Alex Schroeder <alex@gnu.org>
5843
5844 * sql.el (sql-postgres): Use sql-postgres-options.
5845 (sql-postgres-options): New variable.
5846
58472000-09-05 Alex Schroeder <alex@gnu.org>
5848
5849 * sql.el (sql-mode-menu): Work around missing variable mark-active
5850 in XEmacs.
5851 (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
5852 (sql-interactive-mode): Added call to easy-menu-add for XEmacs
5853 compatibility.
5854
7a004b71
GM
58552000-09-04 Gerd Moellmann <gerd@gnu.org>
5856
54baed30 5857 * vc.el (vc-dired-resynch-file): Add autoload cookie.
9b4a7800 5858
7a004b71
GM
5859 * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
5860
5861 * Makefile.in (DONTCOMPILE): Fix typo in file name.
5862
58632000-09-04 Andre Spiegel <spiegel@gnu.org>
5864
5865 * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
5866 don't support anything else under SCCS yet.
5867
5868 * vc-hooks.el: Minor doc fixes.
5869
58702000-09-04 Andre Spiegel <spiegel@gnu.org>
5871
5872 * vc.el (vc-next-action-on-file): Do not visit the file if it's
5873 not necessary. If verbose in state `needs-patch', do the same as
5874 under `up-to-date'. When NOT verbose and `needs-patch', check out
5875 latest version instead of `merge-news'.
5876 (vc-next-action-dired): Don't mess with default-directory here; it
5877 breaks other parts of dired. It is the job of the
099bd78a 5878 backend-specific functions to adjust it temporarily if they need it.
7a004b71
GM
5879 (vc-next-action): Remove a special CVS case.
5880 (vc-clear-headers): New optional arg FILE.
5881 (vc-checkin, vc-checkout): Set properties vc-state and
5882 vc-checkout-time properly.
099bd78a 5883 (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
7a004b71
GM
5884 (vc-print-log): Use new backend function `show-log-entry'.
5885 (vc-cancel-version): Do the checks in a different order. Added a
5886 FIXME concerning RCS-only code.
5887
5888 * vc-rcs.el (vc-rcs-show-log-entry): New function.
5889 (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
5890
5891 * vc-cvs.el (vc-cvs-show-log-entry): New function.
5892
9b4a7800 5893 * vc-hooks.el (vc-default-mode-line-string): Show state
7a004b71
GM
5894 `needs-patch' as a `-' too.
5895
58962000-09-04 Andre Spiegel <spiegel@gnu.org>
5897
5898 * vc.el (vc-responsible-backend): New optional arg REGISTER.
5899 (vc-default-could-register): New function.
5900 (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
5901 (vc-resynch-buffer): Call vc-dired-resynch-file.
5902 (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
5903 vc-resynch-buffer instead of vc-resynch-window.
5904 (vc-next-action-dired): Don't redisplay here, that gets done as a
5905 result of the individual file operations.
5906 (vc-retrieve-snapshot): Corrected prompt order.
5907
5908 * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
9b4a7800 5909
7a004b71
GM
5910 * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
5911 as well.
5912 (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p. Handle
5913 hostname regexps. Updated all callers.
5914 (vc-cvs-responsible-p): Handle directories as well.
5915 (vc-cvs-could-register): New function.
5916 (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
5917 properties up-to-date.
9b4a7800 5918
7a004b71
GM
5919 * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
5920 user whether to create one.
5921
59222000-09-04 Andre Spiegel <spiegel@gnu.org>
5923
5924 * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
5925 check out a non-existing file.
5926
5927 * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
5928 workfile does not exist.
5929
5930 * vc.el (vc-version-diff): Use `require' to check for existence of
5931 diff-mode.
5932
59332000-09-04 Andre Spiegel <spiegel@gnu.org>
5934
5935 * vc-cvs.el (vc-cvs-registered): Use new function
5936 vc-cvs-parse-entry to do the actual work.
5937
59382000-09-04 Andre Spiegel <spiegel@gnu.org>
5939
5940 * vc-hooks.el (vc-find-backend-function): If function doesn't
5941 exist, return nil instead of error.
5942 (vc-call-backend): Doc fix.
5943
5944 * vc.el (vc-do-command): Doc fix.
5945 (vc-finish-logentry): When checking in from vc-dired, choose the
5946 right backend for logentry check.
5947 (vc-dired-mode-map): Inherit from dired-mode-map.
5948 (vc-dired-mode): Local value of dired-move-to-filename-regexp
5949 simplified.
5950 (vc-dired-state-info): Removed, updated caller.
5951 (vc-default-dired-state-info): Use parentheses instead of hyphens.
5952 (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
5953 (vc-dired-listing-switches): New variable.
5954 (vc-directory): Use it, instead of dired-listing-switches.
5955
5956 * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
5957 (vc-cvs-dir-state): New function.
7f8b6551 5958 (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
7a004b71
GM
5959 (vc-cvs-parse-entry): New function, also to be used in
5960 vc-cvs-registered.
9b4a7800 5961
7a004b71
GM
59622000-09-04 Stefan Monnier <monnier@cs.yale.edu>
5963
5964 * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
5965 *or* single-window-frames.
5966
59672000-09-04 Andre Spiegel <spiegel@gnu.org>
5968
5969 * vc.el (vc-update-changelog): Split into generic part and default
5970 implementation. Doc string adapted.
5971 (vc-default-update-changelog): New function. Call the `rcs2log'
5972 script in exec-directory, to fix a long-standing nuisance.
5973
5974 * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
5975 simply signals an error.
9b4a7800 5976
7a004b71
GM
59772000-09-04 Stefan Monnier <monnier@cs.yale.edu>
5978
5979 * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
5980 control-flow more clear and to avoid running `cvs' twice.
5981
5982 * vc.el (vc-next-action-on-file): Doc fix.
5983 (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
5984 (vc-print-log): Eval `file' before constructing the continuation.
5985
59862000-09-04 Andre Spiegel <spiegel@gnu.org>
5987
5988 * vc.el (vc-next-action-on-file): Corrected several messages.
5989 (vc-merge): Add prefix arg `merge-news'; handle it.
5990
5991 * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
5992 is not reached. It is.
5993 (vc-cvs-merge): Set state to 'edited after merge.
5994 (vc-cvs-merge-news): Set workfile version to nil if not known.
5995 (vc-cvs-latest-on-branch-p): Recommented. Candidate for removal.
5996
5997 * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
5998 via stdout. (Merge from main line.)
9b4a7800 5999
7a004b71
GM
60002000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6001
6002 * vc.el (vc-finish-logentry): Thinko in the "same comment"
6003 detection.
6004
60052000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6006
6007 * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
6008 against kill-all-local-variables.
6009 (vc-log-edit): Don't save vc-parent-buffer any more.
6010 (vc-last-comment-match): Initialize to an empty string.
6011 (vc-post-command-functions): New hook.
6012 (vc-do-command): Run it.
6013 (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
6014 (vc-finish-logentry): Only add the comment to the ring if it's
6015 different from the last comment entered.
6016 (vc-new-comment-index): New function.
6017 (vc-previous-comment): Use it. Make the minibuffer message
6018 slightly less terse.
6019 (vc-comment-search-reverse): Make it work forward as well. Don't
6020 set vc-comment-ring-index if no match is found. Use
6021 vc-new-comment-index.
6022 (vc-comment-search-forward): Use vc-comment-search-reverse.
6023 (vc-dired-mode-map): Don't inherit from dired-mode-map since
6024 define-derived-mode will do it for us. Bind `v' to a keymap that
6025 inherits from vc-prefix-map so that we can bind `vt' without
6026 binding C-x v t.
6027 (vc-retrieve-snapshot): Parenthesis typo.
6028
6029 * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
6030 to 1. Make sure to switch to *vc* before looking for an error
6031 message. Use vc-parse-buffer.
6032
60332000-09-04 Andre Spiegel <spiegel@gnu.org>
6034
6035 * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
6036 and NAME.
6037 (vc-retrieve-snapshot): Split into two parts.
6038 (vc-default-retrieve-snapshot): New function.
6039
6040 * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
6041 (vc-cvs-retrieve-snapshot): New function (untested).
6042 (vc-cvs-stay-local): Default to t.
6043 (vc-cvs-remote-p): New function and property.
6044 (vc-cvs-state): Stay local only if the above is t.
6045 (vc-handle-cvs): Removed.
6046 (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
6047 done via vc-handled-backends now.
6048 (vc-cvs-header): Escape Id.
6049
60502000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6051
6052 * vc.el (vc-do-command): Remove unused commands.
6053 (vc-version-diff): Make sure default-directory ends with a slash.
6054 Move the window commands into a vc-exec-after.
6055 (vc-print-log): Move more of the code into the `vc-exec-after'.
6056
60572000-09-04 Andre Spiegel <spiegel@gnu.org>
6058
6059 * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
6060 (vc-print-log): Search current revision from beginning of buffer.
6061 (vc-revert-buffer): Clear echo area after the diff is finished.
6062 (vc-prefix-map): Removed definition of "t" for terse display in vc
6063 dired.
6064 (vc-dired-mode-map): Inherit from dired-mode-map. Added
6065 definition of "vt" for terse display.
6066 (vc-dired-mode): Fix dired-move-to-filename-regexp.
6067
60682000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6069
6070 * vc.el (vc-exec-after): Avoid caddr.
6071
60722000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6073
6074 * vc.el (vc-exec-after): New function.
6075 (vc-do-command): Use it to add a termination message for async
6076 procs.
6077 (vc-checkout): Try to handle a missing-backend situation.
6078 (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
6079 of a directory with a backend using async diffs.
6080 (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
6081 present.
6082
6083 * vc-sccs.el (vc-sccs-state-heuristic): Use
6084 file-ownership-preserved-p.
6085
6086 * vc-rcs.el (vc-rcs-state-heuristic): Use
6087 file-ownership-preserved-p.
6088 (vc-rcs-checkout): Remove the error-handling for missing-rcs.
6089
60902000-09-04 Andre Spiegel <spiegel@gnu.org>
6091
6092 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
6093 vc-do-command.
6094
6095 * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
6096 when there are no changes.
6097
60982000-09-04 Andre Spiegel <spiegel@gnu.org>
6099
6100 * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
6101
6102 * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
6103
61042000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6105
6106 * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
6107
6108 * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
6109 the `fset' outside of the defvar so that it works even if
6110 vc-prefix-map was already defined.
6111 (vc-setup-buffer): New function, split out of vc-do-command.
6112 (vc-do-command): Allow BUFFER to be t to mean `just use the
6113 current buffer without any fuss'.
6114 (vc-version-diff): Change the `diff' backend operation to just put
6115 the diff in the current buffer without erasing it. Always use
6116 *vc-diff* even for directory-diffs. Use vc-setup-buffer. Protect
6117 shrink-window-if-larger-than-buffer.
6118 (vc-print-log): Change the `print-log' backend operation to just
6119 put the log in the current buffer without erasing it. Protect
6120 shrink-window-if-larger-than-buffer.
6121 (vc-update-change-log): Fix setd typo.
6122
6123 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
6124 (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
6125
6126 * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
6127 (vc-rcs-diff): Insert in the current buffer and remove unused arg
6128 CMP.
6129
6130 * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
6131 with-temp-file. Use the new BUFFER=t argument to vc-do-command.
6132 (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
6133
61342000-09-04 Andre Spiegel <spiegel@gnu.org>
6135
6136 * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
6137 not possible, use vc-BACKEND-workfile-unchanged-p.
6138 (vc-default-workfile-unchanged-p): New function. Delegates to a
6139 full vc-BACKEND-diff.
6140
6141 * vc-hooks.el (vc-simple-command): Removed.
6142
6143 * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
6144 instead of vc-simple-command.
6145 (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
6146 avoid doing a diff when opening a file.
6147 (vc-rcs-state): Added check for unlocked-changes.
6148 (vc-rcs-header): Escape Id.
6149 (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
6150 (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
6151 version.
6152
6153 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
6154 (vc-sccs-diff): Remove optional arg CMP.
6155 (vc-sccs-state): Call vc-workfile-unchanged-p, not the
6156 SCCS-specific function.
6157
6158 * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
6159 vc-simple-command.
6160
61612000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6162
6163 * vc.el (vc-editable-p): Renamed from vc-writable-p.
6164 (with-vc-file, vc-merge): Use vc-editable-p.
6165 (vc-do-command): Remove unused var vc-file and fix the
6166 doubly-defined `status' var. Add a user message when starting an
6167 async command.
6168 (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
6169 (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
6170 Use with-current-buffer.
6171 (vc-buffer-sync): Use unless.
6172 (vc-next-action-on-file): If the file is 'edited by read-only,
6173 make it read-write instead of trying to commit.
6174 (vc-version-diff, vc-update-change-log): Use `setq
6175 default-directory' rather than `cd'.
6176 (vc-log-edit): Don't forget to set default-directory in the
6177 buffer.
6178
6179 * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
6180 (vc-sccs-state-heuristic): Use file-writable-p instead of
6181 comparing userids.
6182 (vc-sccs-checkout): Use `unless'.
6183
6184 * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
6185 of comparing userids.
6186 (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
6187 Simplify the logic by eliminating unreachable code.
6188 (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
6189 just do a recursive call if we need to retry.
6190 (vc-rcs-checkout): Handle the case where rcs is missing by making
6191 the buffer read-write if requested and re-signalling the error.
6192
6193 * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
6194
61952000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6196
6197 * vc-hooks.el (vc-handled-backends): Docstring change.
6198 (vc-ignore-vc-files): Mark obsolete.
6199 (vc-registered): Check vc-ignore-vc-files.
6200 (vc-find-file-hook, vc-file-not-found-hook): Don't check
6201 vc-ignore-vc-files.
6202
6203 * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
6204
62052000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6206
6207 * vc.el (vc-checkout): Don't do anything special for ange-ftp
6208 files since ange-ftp already has vc-registered return nil.
6209
6210 * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
6211 (vc-sccs-workfile-version): Use with-temp-buffer and new
6212 vc-parse-buffer and don't bother setting the property.
6213 (vc-sccs-add-triple): Use with-current-buffer and
6214 find-file-noselect.
6215 (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
6216
6217 * vc-rcs.el (vc-rcs-find-most-recent-rev): New function. The code
6218 derives from the old vc-parse-buffer but uses the revision number
6219 rather than the date (much easier to compare robustly).
6220 (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the
6221 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the
6222 locking-user more directly. Check strict locking and set
6223 checkout-model appropriately.
6224 (vc-rcs-parse-locks): Remove.
6225 (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
6226 new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
6227 (vc-rcs-system-release): Use with-current-buffer and
6228 vc-parse-buffer.
6229 (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
6230
6231 * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
6232 (vc-simple-command): Docstring fix.
6233 (vc-registered): Align the way the file-handler is called with the
6234 way the function itself works.
6235 (vc-file-owner): Remove.
6236
6237 * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer. Reorder
6238 extraction of fields and call to file-attributes because of a
6239 temporary bug in rcp.el.
6240 (vc-cvs-fetch-status): Use with-current-buffer.
6241
62422000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6243
6244 * vc.el (vc-do-command): Use file-relative-name.
6245 (vc-responsible-backend): Use vc-backend if possible.
6246 (vc-create-snapshot): Improve the `interactive' spec. Add support
6247 for branches and dispatch to backend-specific `create-snapshot'.
6248 (vc-default-create-snapshot): New function, containing the bulk of
6249 the old vc-create-snapshot.
6250 (vc-retrieve-snapshot): Improve the interactive spec.
6251
6252 * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
6253 (vc-backend-hook-functions): Remove.
6254 (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
6255 (vc-backend): Reintroduce the test for `file = nil' now that I
6256 know why it was there (and added a comment to better remember).
6257
6258 * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
6259 code from vc-sccs-hooks.el.
6260 (vc-sccs-release, vc-sccs-system-release): Remove. Don't require
6261 'vc anymore.
6262 (vc-sccs-responsible-p): Use expand-file-name instead of concat
6263 and file-directory-p instead of file-exists-p.
6264 (vc-sccs-check-headers): Simplify the regexp.
6265
6266 * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
6267 from vc-rcs-hooks.el. Don't require 'vc anymore.
6268 (vc-rcs-responsible-p): Use expand-file-name instead of concat and
6269 file-directory-p instead of file-exists-p.
6270
6271 * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
6272 from vc-cvs-hooks.el.
6273 (proto vc-cvs-registered): Require 'vc-cvs instead of
6274 'vc-cvs-hooks. Don't require 'vc anymore.
6275 (vc-cvs-responsible-p): Use expand-file-name instead of concat and
6276 file-directory-p instead of file-exists-p.
6277 (vc-cvs-create-snapshot): New function, replacing
6278 vc-cvs-assign-name.
6279 (vc-cvs-assign-name): Remove.
6280
62812000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6282
6283 * vc-cvs.el (vc-cvs-header): New var.
6284
6285 * vc-rcs.el (vc-rcs-exists): Remove.
6286 (vc-rcs-header): New var.
6287
6288 * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
6289 `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
6290 (vc-sccs-header): New var.
6291
6292 * vc.el (vc-do-command): Get rid of the `last' argument.
6293 (vc-header-alist): Remove, replaced by vc-X-header.
6294 (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
6295 (vc-dired-hook): Use expand-file-name instead of concat.
6296 (vc-directory): Use file-name-as-directory.
6297 (vc-snapshot-precondition, vc-create-snapshot)
6298 (vc-retrieve-snapshot): Allow the command to operate on any
6299 directory.
6300
6301 * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
6302 just removing the 'WORKFILE argument or by removing the 'MASTER
6303 argument and replacing `file' with (vc-name file).
6304
63052000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6306
6307 * vc.el: Update Copyright and add a crude list of backend funs.
6308 (vc-writable-p): New function.
6309 (with-vc-file): Use vc-writable-p.
7f8b6551 6310 (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
7a004b71
GM
6311 (vc-register): Avoid vc-name.
6312 (vc-locking-user): Remove.
6313 (vc-steal-lock): Make the `owner' arg non-optional.
6314 (vc-merge): Use vc-writable-p instead of vc-locking-user and
6315 vc-checkout-model.
6316 (vc-default-dired-state-info): Use vc-state instead of
6317 vc-locking-user and return special strings for special states.
6318 (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
6319 and get rid of one of the special CVS cases.
6320 (vc-cancel-version): prettify error message with \\[...].
6321 (vc-rename-master): New function.
6322 (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
6323 use vc-rename-master) instead of vc-BACKEND-record-rename. Make
6324 the CVS special case generic.
6325 (vc-default-record-rename): Remove.
6326 (vc-file-tree-walk-internal): Only call FUNC for files that are
6327 under control of some VC backend and replace `concat' with
6328 expand-file-name.
6329 (vc-file-tree-walk): Update docstring.
6330 (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
6331 (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
6332
6333 * vc-sccs.el (vc-sccs-rename-file): Renamed from
6334 vc-sccs-record-rename. Use `find-file-noselect' rather than
6335 `find-file' and call `vc-rename-master' to do the actual move.
6336 (vc-sccs-diff): Remove unused `backend' variable.
6337
6338 * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
6339 to delay loading of vc-sccs until it is really used.
6340 (vc-sccs-master-templates): Preload.
6341 (vc-sccs-state): Update call to vc-sccs-parse-locks.
6342 (vc-sccs-project-dir): Remove (merged into
6343 vc-sccs-search-project-dir).
6344 (vc-sccs-search-project-dir): Rewrite using file name handling ops
6345 rather than `concat', make sure it is preloaded and don't bother
6346 to check that the file actually exists.
6347 (vc-sccs-parse-locks): Remove unused `file' argument, remove
6348 `locks' argument (use buffer's content instead) and eliminate n^2
6349 behavior.
6350
6351 * vc-rcs.el: Update Copyright.
6352 (vc-rcs-rename-file): New function.
6353 (vc-rcs-diff): Remove unused `backend' variable.
6354
6355 * vc-hooks.el: Update Copyright.
6356 (vc-backend): Don't accept a nil argument any more.
6357 (vc-up-to-date-p): Turn into a defsubst.
6358 (vc-possible-master): New function.
6359 (vc-check-master-templates): Use `vc-possible-master' and allow
6360 funs in vc-X-master-templates to return a non-existent file.
6361
6362 * vc-cvs.el: Update Copyright.
6363 (vc-cvs-diff): Remove unused `backend' variable.
7f8b6551 6364 (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
7a004b71
GM
6365
6366 * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
6367
63682000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6369
6370 * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
6371 since it can be called from vc-rcs.el.
6372 (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
6373
63742000-09-04 Andre Spiegel <spiegel@gnu.org>
6375
6376 * vc.el (vc-version-diff): Expand file name read from the
6377 minibuffer. Handle the case when a previous version number can't
6378 be guessed. Give suitable messages when there were no differences
6379 found.
6380 (vc-clear-headers): Call backend-specific implementation, if one
6381 exists.
6382 (vc-cancel-version): Made error checks generic. When done, clear
6383 headers generically, too.
6384
6385 * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
6386 from vc-clear-headers in vc.el.
6387
6388 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
6389 correctly.
6390 (vc-rcs-latest-on-branch-p): Made second argument VERSION
6391 optional. Handle the case when it's not there.
6392
63932000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6394
6395 * vc.el (vc-locking-user): Moved from vc-hooks.el.
6396
63972000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6398
6399 * vc-hooks.el (vc-loadup): Remove.
6400 (vc-find-backend-function): Use `require'. Also, handle the case
6401 where vc-BACKEND-hooks.el doesn't exist.
6402 (vc-call-backend): Cleanup.
6403
64042000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6405
6406 * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
6407 vc-rcs-grab-templates)
6408 (vc-rcs-registered): Remove. The default function works as well.
6409 * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
6410 vc-sccs-grab-templates)
6411 (vc-sccs-registered): Remove. The default function works as well.
6412
6413 * vc.el (vc-version-diff): Left out a vc- in call to
6414 vc-call-backend.
6415 (vc-default-dired-state-info, vc-default-record-rename)
6416 (vc-default-merge-news): Update for the new backend argument.
6417
6418 * vc-hooks.el (vc-find-backend-function): Return a cons cell if
6419 using the default function.
6420 (vc-call-backend): If calling the default function, pass it the
6421 backend as first argument. Update the docstring accordingly.
6422 (vc-default-state-heuristic, vc-default-mode-line-string): Update
6423 for the new backend argument.
6424 (vc-make-backend-sym): Renamed from vc-make-backend-function.
6425 (vc-find-backend-function): Use the new name.
6426 (vc-default-registered): New function.
6427
64282000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6429
6430 * vc.el (vc-merge): Use vc-find-backend-function.
6431
6432 * vc-hooks.el (vc-backend-functions): Remove.
6433 (vc-loadup): Don't setup 'vc-functions.
6434 (vc-find-backend-function): New function.
6435 (vc-call-backend): Use above fun and populate 'vc-functions
6436 lazily.
6437 (vc-backend-defines): Remove.
6438
64392000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6440
6441 * vc.el (vc-register): Put a FIXME note for a newly found bug.
6442 Call vc-call-backend without the leading vc-.
6443 (vc-responsible-backend, vc-finish-logentry, vc-annotate)
6444 (vc-check-headers): Call vc-call-backend without the leading vc-.
7f8b6551 6445 (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
7a004b71
GM
6446 (vc-annotate-display): Replace confusing use of `cond' with `or'.
6447 Call vc-call-backend without the leading vc-.
6448
6449 * vc-cvs.el (tail): Provide vc-cvs.
6450 * vc-sccs.el (tail): Provide vc-sccs.
6451 * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
6452
6453 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
6454 (vc-make-backend-function, vc-call): Pass names without leading
7f8b6551 6455 `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
7a004b71
GM
6456 (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
6457 (vc-call-backend): Always try to load vc-X-hooks.
6458 (vc-registered): Remove vc- in call to vc-call-backend.
6459
64602000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6461
6462 * vc.el (vc-process-filter): New function.
6463 (vc-do-command): Setup `vc-process-filter' for the async process.
6464 (vc-maybe-resolve-conflicts): New function to reduce
6465 code-duplication. Additionally, it puts the buffer in
6466 `smerge-mode' if applicable.
6467 (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
6468 calling `merge-news'.
7f8b6551 6469 (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
7a004b71
GM
6470 (vc-log-edit): New function. Replacement for `vc-log-mode' by
6471 interfacing to log-edit.el.
6472 (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
6473 log-edit is available.
6474 (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
6475
64762000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6477
6478 * vc.el (vc-register): Remove `vc-buffer-backend' setup.
6479 (vc-log-mode-map): New name for vc-log-entry-mode and merge the
6480 defvar and the initialization.
6481 (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
6482
6483 * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
6484 (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
6485
7f8b6551 6486 * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
7a004b71
GM
6487
64882000-09-04 Andre Spiegel <spiegel@gnu.org>
6489
6490 * vc.el (vc-file-clear-masterprops): Removed.
6491 (vc-checkin, vc-revert-buffer): Removed calls to the above.
6492 (vc-version-diff): Use buffer-size without argument.
6493 (vc-register): Heed vc-initial-comment.
6494
6495 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
6496 default branch.
6497
6498 * vc-rcs.el (vc-rcs-register): Parse command output to find master
6499 file name and workfile version.
6500 (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
6501
6502 * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
6503 vc-file-clear-masterprops.
6504
6505 * vc-sccs.el (vc-sccs-checkout): Removed call to
6506 vc-file-clear-masterprops. If writable, set vc-state to 'edited
6507 rather than user login name.
6508
6509
65102000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6511
6512 * vc.el (vc-workfile-unchanged-p): Remove unused argument
6513 `want-differences-if-changed' and simplify.
6514 (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
6515 (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
6516 output (which is invalid for async vc-diff) to decide whether to
6517 do the revert silently or not.
6518
65192000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6520
6521 * vc-hooks.el (vc-loadup): Load files quietly.
6522 (vc-call-backend): Oops, brain fart.
6523
65242000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6525
6526 * vc-cvs.el (vc-cvs-state): Typo.
7f8b6551 6527 (vc-cvs-merge-news): Return the status code rather than the error msg.
7a004b71
GM
6528
65292000-09-04 Andre Spiegel <spiegel@gnu.org>
6530
6531 * vc.el (with-vc-file, vc-next-action, vc-version-diff)
6532 (vc-dired-mark-locked): Replaced usage of vc-locking-user with
6533 vc-state or vc-up-to-date-p.
6534 (vc-merge): Use vc-backend-defines to check whether merging is
6535 possible. Set state to 'edited after successful merge.
6536
6537 * vc-hooks.el (vc-locking-user): If locked by the calling user,
6538 return that name. Redocumented.
6539
65402000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6541
6542 * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
6543 new `vc-state' semantics.
6544 (vc-finish-steal): Set 'vc-state to 'edited rather than setting
6545 'vc-locking-user to the current user.
6546 (vc-merge): Inline vc-backend-merge. Comment out code that I
6547 don't understand and hence can't adapt to the new `vc-state' and
6548 `vc-locking-user' semantics.
6549 (vc-backend-merge): Remove.
6550
6551 * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
6552 rather than 'vc-locking-user.
6553
6554 * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
6555
6556 * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
6557 (vc-state): Don't use 'reserved any more. Just use the same
6558 convention as the one used for vc-<backend>-state where the
6559 locking user (as a string) is returned.
6560 (vc-locking-user): Update, based on the above convention. The
6561 'vc-locking-user property has disappeared.
7f8b6551 6562 (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
7a004b71
GM
6563
6564 * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
6565 with a heuristic one.
6566 (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
6567 (vc-cvs-checkin): Do a trivial parse to set the state in case of
6568 error. That allows us to get to 'needs-merge even in the
6569 stay-local case. There's still no way to detect 'needs-patch in
6570 such a setup (or to force an update for that matter).
6571 (vc-cvs-logentry-check): Remove, the default works as well.
6572
65732000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6574
7f8b6551 6575 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
7a004b71
GM
6576
6577 * vc.el (vc-do-command): kill-all-local-variables, to reset any
6578 major-mode in which the buffer might have been put earlier. Use
6579 `remove' and `when'. Allow `okstatus' to be `async' and use
6580 `start-process' in this case.
6581 (vc-version-diff): Handle the case where the diff looks empty
6582 because of the use of an async process.
6583
65842000-09-04 Andre Spiegel <spiegel@gnu.org>
6585
6586 * vc.el (vc-next-action-on-file): Removed optional parameter
6587 `simple'. Recompute state unconditionally.
6588 (vc-default-toggle-read-only): Removed.
6589
6590 * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
6591 (vc-toggle-read-only): Undid prev change.
6592
6593 * vc-cvs.el (vc-cvs-stay-local): Renamed from
6594 vc-cvs-simple-toggle. Redocumented.
6595 (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
6596 (vc-cvs-toggle-read-only): Removed.
6597
65982000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6599
7f8b6551 6600 * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
7a004b71
GM
6601 (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
6602 (vc-release-greater-or-equal-p): Move to vc-rcs.el.
6603 (vc-file-clear-masterprops): Braindead "fix". It was a nop and
6604 still is. So maybe it should be removed.
6605 (vc-head-version, vc-find-binary): Remove.
6606 (vc-recompute-state): Move from vc-hooks.el.
6607 (vc-next-action-on-file): Add a `simple' argument to allow
6608 avoiding the `recompute' step (use for vc-cvs-simple-toggle).
7f8b6551
SM
6609 (vc-default-toggle-read-only, vc-default-record-rename): New funs.
6610 (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
7a004b71
GM
6611 (vc-dired-mode-map): Properly defvar it.
6612 (vc-print-log): Call log-view-mode if available.
6613 (small-temporary-file-directory): defvar instead of use boundp.
6614 (vc-merge-news): Moved to vc-cvs.el.
6615 (vc-default-merge-news): New function.
6616
6617 * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
6618 (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
6619 (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
6620 unknown `vc-latest-version' function. It should probably refer to
6621 vc-workfile-version or somesuch, but it's very unclear to me and I
6622 don't have SCCS to test things.
6623
6624 * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
6625 (vc-sccs-state-heuristic): Fix typo.
6626 (vc-sccs-workfile-unchanged-p): Add missing argument.
6627
6628 * vc-rcs.el: Require vc and vc-rcs-hooks.
6629 (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
6630 (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
6631 (vc-release-greater-or-equal-p): Move from vc.
6632 (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
6633 vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
6634 (vc-rcs-checkout): Add a missing `new-version' argument in the
7f8b6551 6635 call to vc-rcs-latest-on-branch-p. Hopefully that was the right one.
7a004b71
GM
6636
6637 * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
6638 (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
6639 (vc-rcs-latest-on-branch-p): Use the `version' argument rather
6640 than the apparently unbound `workfile-version'.
6641
6642 * vc-hooks.el (vc-master-templates): Def the obsolete var.
6643 (vc-file-prop-obarray): Use `make-vector'.
6644 (vc-backend-functions): Add new hookable functions
6645 vc-toggle-read-only, vc-record-rename and vc-merge-news.
6646 (vc-loadup): If neither backend nor default functions exist, use
6647 the backend function rather than nil.
6648 (vc-call-backend): If the function if not bound yet, try to load
6649 the non-hook file to see if it provides it.
6650 (vc-call): New macro plus use it wherever possible.
6651 (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
6652 nor `vc-find-binary' since it's only called from
7f8b6551 6653 vc-mistrust-permission which is only used once the backend is known.
7a004b71
GM
6654 (vc-checkout-model): Fix parenthesis.
6655 (vc-recompute-state, vc-prefix-map): Move to vc.el.
6656
7f8b6551 6657 * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
7a004b71
GM
6658 (vc-cvs-release, vc-cvs-system-release): Remove.
6659 (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
6660 (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
6661 status symbols.
6662 (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
6663 (vc-cvs-toggle-read-only): First cut at a function to allow a
6664 cvs-status-free vc-toggle-read-only.
6665 (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
6666 (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
6667 vc-cvs-status. Also set vc-state rather than vc-locking-user.
6668 (vc-cvs-checkout): Modify access rights directly if the user
6669 requested not to use `cvs edit'. And refresh the mode line.
6670
6671 * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
6672 (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
6673
66742000-09-04 Stefan Monnier <monnier@cs.yale.edu>
6675
6676 * vc-cvs.el (vc-cvs-checkout): Docstring fix. Added a `(if
6677 workfile' that got lost when the code was extracted from vc.el.
6678 And merged the tail with the rest of the code (not possible in the
6679 old vc.el where the tail was shared among all backends). And
6680 explicitly set the state to 'edited if `writable' is set.
6681
6682 * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
6683 (vc-cvs-state): Be careful to return the value from
6684 vc-cvs-parse-state.
6685 (vc-cvs-parse-status): Use expand-file-name. Don't set 'vc-state
6686 property but return it instead. Also be careful to handle a nil
6687 or "" `rev' when workfile is non-nil (it was handled properly when
6688 workfile was nil).
6689
6690 * vc.el: Removed those pesky unnecessary `(function' quotes.
6691 (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
6692 directly in the defvar.
6693 (vc-do-command): Bind inhibit-read-only so as to properly handle
6694 the case where the destination buffer has been made read-only.
6695 (vc-diff): Delegate to vc-version-diff in all cases.
7f8b6551 6696 (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
7a004b71
GM
6697 (vc-annotate-mode-variables): Removed (code moved partly to
6698 defvars and partly to vc-annotate-add-menu).
6699 (vc-annotate-mode): Turned into a derived-mode.
6700 (vc-annotate-add-menu): Moved in code in
6701 vc-annotate-mode-variables.
6702 (vc-update-change-log): Use make-temp-file if available.
6703
67042000-09-04 Martin Lorentzson <martinl@delysid.gnu.org>
6705
6706 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
6707 `vc-checkout-model' updated to `vc-cvs-update-model'.
6708
67092000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6710
6711 * vc.el (vc-next-action-on-file): Added handling of state
6712 `unlocked-changes'.
6713 (vc-checkout-carefully): Is now practically obsolete, unless the
6714 above is too slow to be enabled unconditionally.
6715 (vc-update-change-log): Fixed typo.
6716
6717 * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
6718
7f8b6551
SM
6719 * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
6720 Now handles state `unlocked-changes'.
6721 (vc-sccs-workfile-unchanged-p): New function, to support the above.
7a004b71
GM
6722
6723 * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
6724
6725 * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
6726 (vc-rcs-fetch-master-state): Bug fixes. Recognize state
6727 `unlocked-changes'.
6728 (vc-rcs-workfile-unchanged-p): Renamed from
6729 `vc-rcs-workfile-unchanged'. This is not a real backend-specific
6730 function yet, but supposed to become one soon.
6731
6732 * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
6733 `vc-steal-lock'.
6734 (vc-call-backend): Changed error message.
6735 (vc-state): Added description of state `unlocked-changes'.
6736
67372000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6738
6739 * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
6740 always return t in CVS-controlled directories.
6741
6742 * vc.el (vc-responsible-backend): New function.
6743 (vc-register): Largely rewritten.
6744 (vc-admin): Removed (implementation moved into vc-register).
6745 (vc-checkin): Redocumented.
6746 (vc-finish-logentry): If no backend defined yet (because we are in
6747 the process of registering), use the responsible backend.
6748
6749 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
6750 Updated function lists.
6751 (vc-call-backend): Fixed typo.
6752
7f8b6551
SM
6753 * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
6754 New functions.
6755 (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
6756 Removed query option. Redocumented.
7a004b71
GM
6757
67582000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6759
6760 * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
6761
6762 * vc.el: Updated callers of `vc-checkout-required' to use
6763 `vc-checkout-model'.
6764
67652000-09-04 Martin Lorentzson <martinl@gnu.org>
6766
6767 * vc-rcs.el (vc-rcs-backend-release-p): function added. other
6768 stuff updated to reference this function instead of the old
6769 `vc-backend-release-p'.
6770
67712000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6772
6773 * vc-sccs-hooks.el (vc-uses-locking): Renamed to
6774 vc-checkout-model. Return appropriate values. Updated callers.
6775
67762000-09-04 Martin Lorentzson <martinl@gnu.org>
6777
7f8b6551 6778 * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
7a004b71
GM
6779 (vc-backend-revert): Function moved into `vc-revert';
6780 `vc-next-action' must be updated to accomodate this change.
6781 (vc-backend-steal): Function moved into `vc-finish-steal'.
6782 (vc-backend-logentry-check): Function moved into
6783 `vc-finish-logentry'.
6784 (vc-backend-printlog): Function moved into `vc-print-log'.
6785 (vc-backend-uncheck): Function moved into `vc-cancel-version'.
6786 (vc-backend-assign-name): Function moved into
6787 `vc-create-snapshot'.
6788
67892000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6790
6791 * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
7f8b6551
SM
6792 Rename to vc-checkout-model. Return appropriate values.
6793 Update callers.
7a004b71 6794
7f8b6551 6795 * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
7a004b71 6796 to vc-checkout-model.
7f8b6551
SM
6797 (vc-checkout-required): Rename to vc-checkout-model.
6798 Re-implement and re-comment.
7a004b71
GM
6799 (vc-after-save): Use vc-checkout-model.
6800
68012000-09-04 Martin Lorentzson <martinl@gnu.org>
6802
7f8b6551
SM
6803 * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
6804 Update to use the vc-BACKEND-diff functions instead.
6805 `vc-diff' is now working.
7a004b71 6806
7f8b6551 6807 * vc-rcs.el (vc-rcs-logentry-check): New function.
7a004b71 6808
7f8b6551 6809 * vc-cvs.el (vc-cvs-logentry-check): New function.
7a004b71
GM
6810
6811 * vc-sccs.el (vc-sccs-diff): Function changed name from
6812 `vc-backend-diff'. This makes `vc-diff' work.
6813
7f8b6551 6814 * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
7a004b71 6815 of functions possibly implemented in a vc-BACKEND library.
7f8b6551 6816 (vc-checkout-required): Fix bug that caused an error to be
7a004b71
GM
6817 signaled during `vc-after-save'.
6818
7f8b6551
SM
6819 * vc.el: Fix typo.
6820 This checkin is made with our new VC code base for the very first time.
6821 A simple `(vc-checkin (buffer-file-name))' was used to perform it.
7a004b71
GM
6822
6823 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
6824 `vc-checkout-required' updated to `vc-cvs-uses-locking'.
6825
6826 * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
6827 updated to `vc-uses-locking'.
7f8b6551 6828 (vc-checkout-required): Call to backend function.
7a004b71
GM
6829 `vc-checkout-required' updated to `vc-uses-locking' instead.
6830
6831 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
6832 `vc-checkout-required' updated to `vc-rcs-uses-locking'.
6833
7f8b6551 6834 * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
7a004b71 6835 to match the split into various backends.
7f8b6551 6836 (vc-backend-checkin): Remove. Merge with `vc-checkin'.
7a004b71
GM
6837 (vc-retrieve-snapshot): Bug fix.
6838
68392000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6840
6841 * vc-sccs.el (vc-sccs-release): Doc fix.
6842
68432000-09-04 Martin Lorentzson <martinl@gnu.org>
6844
6845 * vc.el (vc-next-action-on-file): Bug found and fixed.
6846 (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
6847 (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
6848
6849 * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
6850 (vc-rcs-checkout): Name space cleaned up. No more revision number
6851 crunching function names that are not prefixed with vc-rcs.
6852 (vc-rcs-checkout-model): Function added. References to
6853 `vc-checkout-model' replaced.
6854
68552000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6856
6857 * vc.el (vc-next-action-on-file): Rewritten for the new state model.
6858 (vc-backend-merge-news): Renamed to `vc-merge-news'. (Specific parts
6859 still need to be split, and implemented for RCS).
6860
68612000-09-04 Martin Lorentzson <martinl@gnu.org>
6862
6863 * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
6864
6865 * vc-sccs.el (vc-sccs-admin): Added the query-only option as
6866 required by the vc.el file.
6867
6868 * vc-rcs.el (vc-rcs-admin): Added the query-only option as
6869 required by the vc.el file.
6870 (vc-rcs-exists): Function added.
6871
6872 * vc-cvs.el (vc-cvs-admin): Added the query-only option as
6873 required by the vc.el file.
6874
6875 * vc.el (vc-admin): Updated to handle selection of appropriate
6876 backend. Current implementation is crufty and need re-thinking.
6877
6878 * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
6879
68802000-09-04 Martin Lorentzson <martinl@gnu.org>
6881
6882 * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
6883 beginning of annotate buffers correctly.
6884
6885 * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
6886 (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
6887 functionality updated quite a lot to support multiple backends.
6888 Variables `vc-annotate-mode', `vc-annotate-buffers',
6889 `vc-annotate-backend' added.
6890
6891 * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
6892 `vc-annotate-difference' added to supported backend functions.
6893
68942000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6895
6896 * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
6897 Use with-temp-file instead of /bin/sh. Merged from mainline
6898
68992000-09-04 Martin Lorentzson <martinl@gnu.org>
6900
6901 * vc-sccs-hooks.el (vc-sccs-registered): Updated.
6902
6903 * vc-rcs-hooks.el (vc-rcs-registered): Updated.
6904
6905 * vc-cvs-hooks.el (vc-cvs-registered): Updated.
6906
69072000-09-04 Martin Lorentzson <martinl@gnu.org>
6908
6909 * vc-hooks.el: vc-state-heuristic added to
6910 vc-backend-hook-functions.
6911
6912 * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
6913
6914 * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
6915
7f8b6551
SM
6916 * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
6917 `vc-uses-locking' to `vc-checkout-required'. Rename the `locked'
7a004b71
GM
6918 state to `reserved'.
6919
6920 * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
6921 `vc-checkout-required'. Rename the `locked' state to `reserved'.
6922
69232000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6924
7f8b6551 6925 * vc-rcs-hooks.el: Implement new state model. Hardly anything
7a004b71
GM
6926 untouched.
6927
7f8b6551 6928 * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
7a004b71 6929
7f8b6551 6930 * vc.el (vc-update-change-log): Use small-temporary-file-directory,
7a004b71
GM
6931 if defined. (Merged from main line, slightly adapted.)
6932
6933 * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
6934 millenium problem (merged from mainline).
6935
69362000-09-04 Martin Lorentzson <martinl@gnu.org>
6937
6938 * vc-cvs.el: Split the annotate feature into a BACKEND-specific
6939 part and moved the non-BACKEND stuff to vc.el.
6940
6941 * vc.el: Split the annotate feature into a BACKEND specific part
6942 and moved it from the vc-cvs.el file to this one.
6943
69442000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6945
7f8b6551
SM
6946 * vc-hooks.el: Implement new state model.
6947 (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
6948 (vc-locking-user): Simplify. Now only needed if the file is
7a004b71 6949 locked by somebody else.
7f8b6551 6950 (vc-lock-from-permissions): Remove. Functionality is in
7a004b71
GM
6951 vc-sccs-hooks.el and vc-rcs-hooks.el now.
6952 (vc-mode-line-string): New name for former vc-status. Adapted.
7f8b6551 6953 (vc-mode-line): Adapt to use the above. Remove optional parameter.
7a004b71 6954
7f8b6551
SM
6955 * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
6956 Various simplifications and adaptations all over the place.
7a004b71 6957
7f8b6551
SM
6958 * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
6959 Simplify and adapt the rest.
7a004b71 6960
7f8b6551 6961 * vc.el (vc-resynch-window): Add TODO comment: check for
7a004b71 6962 interaction with view mode according to recent RCS change.
7f8b6551 6963 (vc-backend-merge-news): Merge "CMUP" patch from mainline.
7a004b71
GM
6964
69652000-09-04 Martin Lorentzson <martinl@gnu.org>
6966
7f8b6551 6967 * vc.el: Convert the remaining function comments to docstrings.
7a004b71
GM
6968
69692000-09-04 Martin Lorentzson <martinl@gnu.org>
6970
6971 * vc.el (vc-backend-release, vc-release-greater-or-equal)
6972 (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
6973 (vc-minor-part, vc-previous-version): Functions that operate and
6974 compare revision numbers got proper documentation. Comments added
6975 about their possible removal.
6976
69772000-09-04 Martin Lorentzson <martinl@gnu.org>
6978
6979 * vc.el (vc-latest-on-branch-p): Function removed and replaced in
6980 the vc-backend.el files.
6981
6982 * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
6983
6984 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
6985 (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
6986 (vc-rcs-previous-version): Functions added.
6987
6988 * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
6989
6990 * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
6991
69922000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
6993
6994 * vc-hooks.el (vc-master-templates): Is really obsolete.
7f8b6551 6995 Comment out the definition for now. What is the right procedure
7a004b71
GM
6996 to get rid of it?
6997 (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
6998 rewritten.
7f8b6551 6999 (vc-default-registered): Remove.
7a004b71
GM
7000 (vc-check-master-templates): New function; does mostly what the
7001 above did before.
7002 (vc-locking-user): Don't rely on the backend to set the property.
7003
7004 * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
7f8b6551 7005 Rewrite documentation.
7a004b71
GM
7006 (vc-rcs-templates-grabbed): New variable.
7007 (vc-rcs-grab-templates): New function.
7f8b6551 7008 (vc-rcs-registered): Rewrite to use above mechanism.
7a004b71
GM
7009
7010 * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
7f8b6551 7011 Rewrite documentation.
7a004b71
GM
7012 (vc-sccs-templates-grabbed): New variable.
7013 (vc-sccs-grab-templates): New function.
7f8b6551
SM
7014 (vc-sccs-registered): Rewrite to use above mechanism.
7015 (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
7016 Don't throw the result, simply return it.
7a004b71 7017
7f8b6551
SM
7018 * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
7019 (vc-cvs-find-master): Remove. Code is now in vc-cvs-registered.
7020 (vc-cvs-registered): Does the check itself now. Simplify.
7a004b71 7021
7f8b6551 7022 * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
7a004b71
GM
7023 from main line.
7024
70252000-09-04 Martin Lorentzson <martinl@gnu.org>
7026
7f8b6551 7027 * vc-cvs.el (vc-cvs-diff): New function.
7a004b71 7028
7f8b6551 7029 * vc-sccs.el (vc-sccs-diff): New function.
7a004b71 7030
7f8b6551
SM
7031 * vc-rcs.el (vc-rcs-diff): New function.
7032 (vc-rcs-checkout): Bug (typo) found and fixed.
7033 (vc-rcs-register-switches): New variable.
7a004b71
GM
7034
7035 * vc.el (vc-backend-diff): Function removed and placed in the
7036 backend files.
7037
70382000-09-04 Martin Lorentzson <martinl@gnu.org>
7039
7040 * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
7041
7042 * vc.el (vc-backend-checkout): Function removed and replaced in
7043 the vc-backend.el files.
7044
7045 * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
7046
7047 * vc.el (vc-backend-admin): Removed and replaced in the
7048 vc-backend.el files.
7049
7050 * vc.el (Martin): Removed all the annotate functionality since it
7051 is CVS backend specific.
7052
70532000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7054
7055 * spec.txt: Added specification of vc-state.
7056
7057 * vc-sccs-hooks.el (vc-sccs-master-properties):
7f8b6551 7058 Remove handling of vc-latest-version and
7a004b71
GM
7059 vc-your-latest-version. What used to be vc-latest-version, is now
7060 returned as vc-workfile-version.
7f8b6551 7061 (vc-sccs-workfile-version): Adapt.
7a004b71
GM
7062
70632000-09-04 Dave Love <fx@gnu.org>
7064
7065 * vc.el: [Merged from mainline.]
7066 (vc-dired-mode): Make the dired-move-to-filename-regexp
7067 regexp match the date, to avoid treating date as file size.
7068 Add YYYY S option to WESTERN/
7069
70702000-09-04 Dave Love <fx@gnu.org>
7071
7072 * vc.el: Require `compile' when compiling.
7073 (vc-logentry-check-hook): New option.
7074 (vc-steal-lock): Use compose-mail.
7075 (vc-dired-mode-map): Defvar when compiling.
7076 (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
7077 vc-sccs.el and renamed. Callers changed.
7078 (vc-backend-checkout, vc-backend-logentry-check)
7079 (vc-backend-merge-news): Doc fix.
7080 (vc-default-logentry-check): New function.
7081 (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
7082 (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
7083 (vc-backend-merge): Doc fix. Use backend functions.
7084 (vc-check-headers): Use backend functions.
7085
7086 * vc-cvs.el: Require vc when compiling.
7087 (vc-cvs-register-switches): Doc fix.
7088 (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
7089 (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
7090 (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
7091 New functions (code from vc.el).
7092 (vc-annotate-display-default): Fix interactive spec.
7093 (vc-annotate-time-span): Doc fix.
7094
7095 * vc-rcs.el: Require vc when compiling.
7096 (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
7097 (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
7098 (vc-rcs-checkin): New functions (code from vc.el).
7099 (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
7100 Doc fix.
7101 (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release).
7102
7103 * vc-sccs.el: Require vc when compiling.
7104 (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
7105 (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
7106 (vc-sccs-revert)
7107 (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
7108 from vc.el).
7109 (vc-sccs-add-triple, vc-sccs-record-rename)
7110 (vc-sccs-lookup-triple): Moved from vc.el and renamed.
7111 (vc-sccs-admin): Doc fix.
7112
71132000-09-04 Martin Lorentzson <martinl@gnu.org>
7114
7115 * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
7116 (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
7117 (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
7118 from vc.el.
7119
7120 * vc-sccs.el (vc-admin-sccs): Added from vc.el
7121
7122 * vc-cvs.el: Moved the annotate functionality from vc.el.
7123 (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
7124
71252000-09-04 Dave Love <fx@gnu.org>
7126
7127 * vc.el (vc-backend-release): Call vc-system-release.
7128
7129 * vc-sccs.el (vc-sccs-system-release):
7130 Renamed from vc-sccs-backend-release.
7131
7132 * vc-rcs.el (vc-rcs-system-release):
7133 Renamed from vc-rcs-backend-release.
7134
7135 * vc-cvs.el (vc-cvs-system-release):
7136 Renamed from vc-cvs-backend-release.
7137
71382000-09-04 Dave Love <fx@gnu.org>
7139
7140 * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
7141 backend files.
7142 (vc-backend-release): Dispatch to backend functions.
7143 (vc-backend-release-p): Don't mention CVS, RCS. [The SCCS case
7144 probably needs attention.]
7145
7146 * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
7147 (vc-sccs-backend-release): New function.
7148
7149 * vc-cvs.el (vc-cvs-release): Moved from vc.el.
7150 (vc-cvs-backend-release): New function.
7151
7152 * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
7153 Doc fix.
7154 (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
7155 (vc-default-dired-state-info): New function.
7156 (vc-dired-state-info): Dispatch to backends.
7157 (vc-dired-hook): Doc fix. Simplify, pending removal of CVS specifics.
7158
7159 * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
7160 from vc.el and renamed.
7161
71622000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7163
7164 * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
7165 (vc-version-other-window, vc-backend-assign-name): Removed
7166 references to vc-latest-version; sometimes changed into
7167 vc-workfile-version.
7168
7169 * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
7170 vc-rcs-master-workfile-version.
7171 (vc-rcs-workfile-version): Use the above. Don't call
7172 vc-latest-version (that was unreachable code, anyway).
7173 (vc-rcs-fetch-master-properties): Doc fix.
7174
7175 * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
7176 (vc-backend-hook-functions): Removed them from this list, too.
7177 (vc-fetch-properties): Removed.
7178 (vc-workfile-version): Doc fix.
7179
7180 * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
7181 (vc-rcs-workfile-version, vc-rcs-locking-user)
7182 (vc-rcs-uses-locking): Use it.
7183
7184 * vc-hooks.el (vc-consult-rcs-headers):
7185 Moved into vc-rcs-hooks.el, under the name
7186 vc-rcs-consult-headers.
7187
7188 * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
7189 headers.
7190 (vc-cvs-find-master): Use this name only; correct different
7191 versions of the name.
7192
7193 * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
7194 New functions.
7195 (vc-sccs-locking-user): Use the latter.
7196
7197 * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
7198 New functions.
7199
7200 * vc-hooks.el (vc-master-locks, vc-master-locking-user):
7201 Moved into both
7202 vc-rcs-hooks.el and vc-sccs-hooks.el. These properties and access
7203 functions are implementation details of those two backends.
7204
72052000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7206
7207 * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
7208 (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
7209
7210 * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
7211 (vc-sccs-parse-locks): SCCS-specific code moved here from
7212 vc-hooks.
7213
7214 * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
7215 code moved here from vc-hooks.
7216
7217 * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
7218 into back-end specific parts and removed. Callers not updated
7219 yet; because I guess these callers will disappear into back-end
7220 specific files anyway.
7221
72222000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7223
7224 * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
7225 (vc-backend-checkout): Changed calls to `vc-checkout-model' to
7226 `vc-uses-locking'.
7227
7228 * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
7229 Store yes/no in the property, and return t/nil. Updated all
7230 callers.
7231
7232 * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
7233 vc-sccs-uses-locking. Don't set property.
7234 (vc-sccs-locking-user): Don't set property.
7235
7236 * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
7237 vc-cvs-uses-locking. Don't set property here; leave that to
7238 vc-hooks.
7239 (vc-cvs-locking-user): Reflect above change. Streamlined.
7240
7241 * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
7242 vc-rcs-uses-locking.
7243 (vc-rcs-locking-user): Reflect above change.
7244
72452000-09-04 Dave Love <fx@gnu.org>
7246
7247 * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
7248
7249 * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
7250
7251 * vc-hooks.el (vc-checkout-model): Punt to backends.
7252
7253 * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
7254
7255 * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
7256
7257 * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
7258 New functions.
7259
7260 * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
7261 New functions.
7262
7263 * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
7264 (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
7265
7266 * vc-hooks.el (vc-default-locking-user): New function.
7267 (vc-locking-user, vc-workfile-version): Punt to backends.
7268
72692000-09-04 Dave Love <fx@gnu.org>
7270
7271 * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
7272 (vc-master-workfile-version): Moved from vc-hooks.
7273
7274 * vc-rcs-hooks.el: Fix duplicate code in last change.
7275
7276 * vc-rcs-hooks.el: Require vc-hooks when compiling.
7277 (vc-rcs-master-templates): Improve :type.
7278 (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
7279 vc-master-workfile-version): Moved from vc-hooks.
7280
7281 * vc-sccs-hooks.el: Require vc-hooks when compiling.
7282 (vc-sccs-master-templates): Improve :type.
7283 (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
7284
7285 * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
7286
7287 * vc-cvs-hooks.el: Require vc-hooks when compiling.
7288 (vc-cvs-master-templates): Improve :type. Use
7289 vc-cvs-find-cvs-master.
7290 (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
7291 from vc-hooks.
7292 (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
7293
7294 * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
7295 Moved to vc-cvs-hooks.
7296
7297 * vc-hooks.el: Add doc strings in various places. Simplify the
7298 minor mode setup.
7299 (vc-handled-backends): New user variable.
7300 (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
7301 simplification.
7302
73032000-09-04 Dave Love <fx@gnu.org>
7304
7305 * vc.el: Some doc fixes for autoloaded and interactive functions.
7306 Fix compilation warnings from ediff stuff.
7307 (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
7308
7309 * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
7310
7311 * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
7312
7313 * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
7314
73152000-09-04 Dave Love <fx@gnu.org>
7316
7317 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
7318 New variable.
7319 (vc-make-backend-function, vc-loadup, vc-call-backend)
7320 (vc-backend-defines): New functions.
7321
7322 * vc-hooks.el: Various doc fixes.
7323 (vc-default-back-end, vc-follow-symlinks): Custom fix.
7324 (vc-match-substring): Function removed. Callers changed to use
7325 match-string.
7326 (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
7327 Simplify.
7328
73292000-09-04 Dave Love <fx@gnu.org>
7330
7331 * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
7332 type.
7333 (vc-sccs-project-dir, vc-search-sccs-project-dir)
7334 (vc-sccs-registered): Doc fix.
7335
7336 * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
7337 (vc-cvs-registered): Doc fix.
7338
7339 * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
7340 (vc-rcs-registered): Doc fix.
7341
73422000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7343
7344 * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
7345
7346 * vc-hooks.el: vc-registered has been renamed
7347 vc-default-registered. Some functions have been moved to the
7348 backend specific files. they all support the
7349 vc-BACKEND-registered functions.
7350
73512000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
7352
7353 * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
7354
7355 * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
7356
a033ea13
DL
73572000-09-04 Dave Love <fx@gnu.org>
7358
179fc9ef
DL
7359 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
7360 menu-bar-update-hook.
7361
7362 * help.el (help-manyarg-func-alist): Add
7363 find-operation-coding-system.
7364
a033ea13
DL
7365 * wid-edit.el (widget-sexp-validate): Fix garbled code.
7366
7367 * custom.el (custom-set-variables): Print message about errors in
7368 setting.
7369
f8803e97
AI
73702000-09-03 Andrew Innes <andrewi@gnu.org>
7371
7372 * makefile.w32-in: Change to DOS line endings.
7373
59836110
EZ
73742000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
7375
7376 * mouse.el (mouse-popup-menubar): Supply the prompt string for
7377 minor-mode keymaps, if they don't have one.
7378
5514ba5c
EZ
73792000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
7380
7381 * eshell/esh-module.el (eval-when-compile): Don't lose if
7382 esh-module.el's file name is truncated to DOS 8+3 limits.
7383
79cf8e80
JW
73842000-09-01 John Wiegley <johnw@gnu.org>
7385
7386 * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
7387 predicate, which caused entries in the completion list to be
7388 doubled.
7389
73902000-08-30 John Wiegley <johnw@gnu.org>
7391
7392 * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
7393 sending to subprocesses. Also, hook pre-command-hook if
7394 `eshell-send-direct-to-subprocesses' is non-nil.
7395 (eshell-send-direct-to-subprocesses): New config variable. If t,
7396 subprocess input is send immediately.
7397 (eshell-toggle-direct-send): New function.
7398 (eshell-self-insert-command): New function.
7399 (eshell-intercept-commands): New function.
7400 (eshell-send-input): If direct subprocess sending is enabled,
7401 don't echo any input to the Eshell buffer. Let the subprocess
7402 handle that. This requires "stty echo" in bash, for example.
7403
74042000-08-28 John Wiegley <johnw@gnu.org>
7405
7406 * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
7407 completion function for Eshell's implementation of `unset'.
7408
778911b9
EZ
74092000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
7410
7411 * info.el (Info-directory-list): Doc fix.
7412
05d07b49
PB
74132000-08-31 Peter Breton <pbreton@ne.mediaone.net>
7414
9b4a7800 7415 * filecache.el (file-cache-add-directory-using-find): Don't quote
05d07b49
PB
7416 wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
7417
9941d4c7
KH
74182000-08-31 Kenichi Handa <handa@etl.go.jp>
7419
7420 * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
7421 coding systems.
7422
af9ba8ad
AI
74232000-08-30 Andrew Innes <andrewi@gnu.org>
7424
7425 * timer.el (run-with-idle-timer): Undo last change, so that timer
7426 is not activated immediately if Emacs is already idle. Some
7427 existing code relies on this behaviour.
7428
caccd8f2
MB
74292000-08-30 Miles Bader <miles@gnu.org>
7430
7431 * frame.el (set-frame-font): Do completion of font-name for
7432 interactive use.
7433
b64c0a1c
KH
74342000-08-30 Kenichi Handa <handa@etl.go.jp>
7435
7436 * international/quail.el (quail-start-translation): Bind locally
7437 last-command-event, last-command, and this-command.
7438 (quail-start-conversion): Likewise.
75cf0095 7439 (quail-self-insert-command): Fix docstring.
b64c0a1c 7440
fd5f61d3
GM
74412000-08-29 Gerd Moellmann <gerd@gnu.org>
7442
7443 * progmodes/executable.el
7444 (executable-make-buffer-file-executable-if-script-p): Check that
7445 buffer contains at least 2 characters.
7446
5b671d04
EZ
74472000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
7448
7449 * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
7450
485d9513
DL
74512000-08-29 Dave Love <fx@gnu.org>
7452
a39fb83d
DL
7453 * diff-mode.el (diff-mode) <defgroup>: Add :version.
7454 (diff-mode-shared-map): Bind mouse-2.
7455 (diff-imenu-generic-expression): New variable.
7456 (diff-mode): Use it.
7457
485d9513
DL
7458 * mouse.el (mouse-major-mode-menu): Use local-key-binding.
7459 (mouse-popup-menubar): Add minor mode menus.
7460 (popup-menu): Check for lookup-key returning number.
7461
ba3478d9
MB
74622000-08-29 Miles Bader <miles@gnu.org>
7463
7464 * comint.el (comint-send-input): Create overlays using the proper
7465 front/read-advance arguments.
9b4a7800 7466
c3d6d211
GM
74672000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
7468
7469 * ps-print.el: Even/odd pages printing. Doc fix.
7470 (ps-print-version): New version number (6.0).
7471 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
7472 (ps-background, ps-begin-file, ps-begin-job): Code fix.
7473 (ps-print-duplex-feature): Variable eliminated.
7474 (ps-even-or-odd-pages): New variable.
7475
ba087cd7 7476 * progmodes/ebnf2ps.el: Doc fix.
87d0f685
GM
7477 (ebnf-version): New version (3.3).
7478 (ebnf-user-arrow): Change variable customization to sexp.
7479 (ebnf-user-arrow): Function eliminated.
7480 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
9b4a7800 7481
d313265f
KH
74822000-08-29 Kenichi Handa <handa@etl.go.jp>
7483
cba62b78 7484 * help.el (help-xref-mule-regexp): New variable.
d313265f
KH
7485 (help-make-xrefs): Handle help-xref-mule-regexp.
7486
7487 * international/mule-cmds.el (help-xref-mule-regexp-template): New
7488 variable.
7489 (describe-input-method): Temporarily activate the specfied input
7490 method to display the information.
7491 (describe-language-environment): Hyperlinks to mule related items.
7492
7493 * international/mule-diag.el (charset-multibyte-form-string): New
7494 function.
7495 (list-character-sets-1): Use charset-multibyte-form-string.
7496 (describe-character-set): New function.
7497 (describe-coding-system): Hyperlinks to safe character sets.
7498
7499 * international/quail.el (quail-help): New arg PACKAGE.
7500 Hyperlinks to mule related items.
7501 (quail-help-insert-keymap-description): Use
7502 substitute-command-keys instead of describe-bindings.
7503 (quail-translation-help): Hyperlinks to mule related items.
7504
b4bd214e
JW
75052000-08-28 John Wiegley <johnw@gnu.org>
7506
ca7aae91
JW
7507 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
7508 have a defsubst call itself. Made `eshell-flatten-list' back into
7509 a function again.
7510
b4bd214e
JW
7511 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
7512 catch, in case re-centering point at bottom messes up the display.
7513 This happens frequently in Emacs 21, due I believe to variable
7514 line heights.
7515
7516 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
7517 to call `find-tag-interactive'.
7518
7519 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
7520 the list of remember directories.
7521
d44e146b
JW
75222000-08-28 John Wiegley <johnw@gnu.org>
7523
7524 * align.el: Test align-region-separate to see if it's a symbol.
7525
546c0888 75262000-08-28 John Wiegley <johnw@gnu.org>
d44e146b
JW
7527
7528 * eshell/esh-util.el (eshell-flatten-list): Made this function
7529 into a defsubst form. It gets used very frequently, although
7530 calls don't occur all that often.
7531
7532 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
7533 examining it.
7534
7535 * eshell/esh-cmd.el (eshell-rewrite-while-command):
7536 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
7537 `eshell-protect'.
7538 (eshell-copy-handles): Created a new macro for duplicating the
7539 current set of open handles. This is needed by the looping
7540 functions.
7541 (eshell-do-eval): Fixed while and if, so that the eshell-test-body
7542 is not incorrectly stomped on.
7543
7544 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
7545 declaration for pcomplete-use-paring.
7546 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
7547 value of eshell-cmpl-use-paring.
7548 * pcomplete.el (pcomplete-use-paring): New config variable, to
7549 indicate whether paring should be used.
7550 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
7551 completion alternatives that have already been used.
7552
7553 * eshell/esh-mode.el (eshell-repeat-argument): Added function,
7554 bound to C-c C-y, which will repeat the previous N arguments
7555 (based on prefix argument).
7556 (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
7557
7558 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
7559 if there is no *Help* buffer. This is for XEmacs, which renames
7560 its help buffers uniquely. TODO: Find out what the current buffer
7561 name to delete is.
7562
7563 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
7564 first entry that correlates to a passwd/group number. Later
7565 entries (used for group/user name aliasing to multiple IDs) are
7566 ignored.
7567
9b4a7800
TTN
7568 * eshell/em-xtra.el (eshell/expr):
7569 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
7570 (eshell-grep, eshell/diff, eshell/locate):
d44e146b
JW
7571 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
7572 argument list, before passing it to the system command.
7573
7574 * eshell/esh-mode.el (eshell-find-tag): Added a special version of
7575 `find-tag' for use at final position in Eshell buffers (which
7576 otherwise triggers an error on Emacs 21).
7577 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
7578 buffer, if it is currently bound to `find-tag'.
7579
7580 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
7581 in the list of matched Makefile names.
7582 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
7583 directory, prefer its contents to Makefile.
7584
7585 * eshell/em-dirs.el (eshell/cd): cd commands that look up
7586 directory parts (like "cd old new", or "cd =regexp"), are now case
7587 sensitive on non-Windows/DOS platforms.
7588
7589 * eshell/esh-mode.el (eshell-parse-command-input): When a user
7590 types RET after an open delimiter (like "), display a message
7591 indicating that Eshell is waiting for the closing delimiter.
7592
7593 * eshell/esh-var.el (eshell/unset): Added a command for unsetting
7594 environment variables.
7595
7596 * eshell/em-unix.el (eshell/diff): Added logic to fail more
7597 gracefully if the user enters incorrect arguments.
7598
7599 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
7600 Eshell buffers.
7601
9b4a7800
TTN
7602 * eshell/esh-var.el (eshell-interpolate-variable):
7603 * eshell/esh-mode.el (eshell-move-argument):
d44e146b
JW
7604 * eshell/em-unix.el (eshell-du-sum-directory):
7605 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
7606 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
7607 (not (= ...)).
7608
7609 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
7610 to ensure the `preserve' flag gets propagated when doing recursive
7611 directory copies.
7612
546c0888 76132000-08-28 Stefan Monnier <monnier@cs.yale.edu>
d44e146b
JW
7614
7615 * eshell/em-hist.el (eshell-put-history, eshell-get-history):
7616 Don't convert \n into \0177 in memory.
7617 (eshell-read-history, eshell-write-history): Convert \n to \0177,
7618 and back again, when reading and writing.
9b4a7800 7619
546c0888 76202000-08-28 Eli Zaretskii <eliz@is.elta.co.il>
d44e146b
JW
7621
7622 * eshell/esh-util.el (eshell-processp): Added to relieve constant
7623 testing of `fboundp' on `processp'.
7624
7625 * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
7626 (eshell/jobs): Don't call process-list if it is not bound.
7627 (eshell-gather-process-output): Support systems where async
7628 subprocesses aren't supported.
7629 (eshell-scratch-buffer, eshell-last-sync-output-start): New
7630 variables.
7631
7632 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
7633 eshell-do-eval returns t.
7634 (eshell-do-pipelines-synchronously): New defmacro.
7635 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
7636 when async subprocesses aren't supported.
7637 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer
7638 if async subprocesses aren't supported.
7639 (eshell-resume-command): Don't assume STATUS is a string.
7640
7641 * eshell/em-unix.el (eshell/rm): Use eshell-processp.
7642
7643 * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
7644 (eshell-close-target, eshell-get-target): Use eshell-processp.
7645 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
7646 fix.
7647 (eshell-get-target, eshell-create-handles): Doc fix.
7648
546c0888 76492000-08-28 Miles Bader <miles@lsi.nec.co.jp>
d44e146b 7650
546c0888 7651 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
d44e146b
JW
7652 criterion to include commands that output something, as long as it
7653 leaves both the command and the end-of-buffer visible when the
7654 command has exited.
7655 (eshell-review-quick-commands): Adjust the help doc string
7656 accordingly.
7657
2a371c3b
PB
76582000-08-28 Peter Breton <pbreton@ne.mediaone.net>
7659
8348e1f9 7660 * locate.el (locate): Cleaned up locate command's interactive prompting
1ec321a7 7661 Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
8348e1f9 7662
9b4a7800 7663 * filecache.el (file-cache-case-fold-search): New variable
2a371c3b
PB
7664 (file-cache-assoc-function): New variable
7665 (file-cache-minibuffer-complete): Use file-cache-assoc-function.
7666 Use file-cache-case-fold-search variable
7667 (file-cache-add-file): Use file-cache-assoc-function
7668 (file-cache-delete-file): likewise
7669 (file-cache-directory-name): likewise
7670 (file-cache-debug-read-from-minibuffer): likewise
7671
95931eb1
GM
76722000-08-28 Gerd Moellmann <gerd@gnu.org>
7673
7674 * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
7675 (abbrev-table-name): New function.
7676 (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
7677 If non-nil list local abbrev, only.
7678
bb17930d
GM
76792000-08-28 Stanislav Shalunov <shalunov@internet2.edu>
7680
546c0888
EZ
7681 * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
7682 from Gnus support code, and use special article copy buffer
bb17930d
GM
7683 `(gnus-original-article-buffer)' instead. This allows to get rid
7684 of article-hide-headers usage (which breaks in the latest Gnus
7685 version). Thanks to Detlev Zundel.
7686
41a68aef
KH
76872000-08-28 Kenichi Handa <handa@etl.go.jp>
7688
7689 * international/quail.el (quail-use-package): Hide "... loaded"
7690 message.
7691 (quail-start-translation, quail-start-conversion): Likewise.
7692
7693 * international/kkc.el (kkc-region): Hide "... loaded" message.
7694
28bb2cef
DL
76952000-08-27 Dave Love <fx@gnu.org>
7696
7697 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
7698
11a1118d
MB
76992000-08-27 Miles Bader <miles@gnu.org>
7700
7701 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
7702
0f85d477
KH
77032000-08-27 Kenichi Handa <handa@etl.go.jp>
7704
7705 * international/ja-dic-cnv.el (skkdic-convert): Insert (require
7706 'ja-dic-cnv), not (require 'skkdic-cnv).
7707
2d73e8d3
MB
77082000-08-26 Miles Bader <miles@gnu.org>
7709
a0e5a5a4
MB
7710 * faces.el (face-x-resources): Add entry for :inherit.
7711 * cus-face.el (custom-face-attributes): Add support for :inherit
7712 attribute. Add support for relative face heights.
7713 (custom-face-attributes-get): Treat `nil' as being a default value
7714 for :inherit (as well as `unspecified').
7715
19feb949
MB
7716 * faces.el (set-face-attribute): Update doc string.
7717 (face-attribute-name-alist): Add :inherit.
7718 (face-valid-attribute-values): Handle :inherit.
7719 (face-read-string): Rephrase prompt to be less confusing.
7720 Assume that DEFAULT is a string, since we must return a string.
7721 (face-read-integer): Use `format' to turn DEFAULT into an
7722 acceptable default for face-read-string. Match NEW-VALUE against
7723 the string "unspecified", not the symbol `unspecified', since
7724 that's what face-read-string returns.
7725 (read-face-attribute): Lookup a name for old-value in valid, and
7726 use it as a default if we find one. Treat all values from
7727 face-read-string as strings. If the default is used, don't do any
7728 more processing on the value, just use the old value directly.
7729 (read-face-and-attribute, modify-face): Tweak prompt.
7730 (read-face-name): Don't assume prompt ends with a space.
7731
2d73e8d3
MB
7732 * faces.el (describe-face): Add support for :inherit attribute.
7733
a1a2e38f
KH
77342000-08-25 Kenichi Handa <handa@etl.go.jp>
7735
e84fa7c5
KH
7736 * terminal.el (terminal-emulator): Fix args to `concat'. Now
7737 concat doesn't accept interger.
7738
a1a2e38f
KH
7739 * international/kkc.el: Remove SKK from Keywords. Require
7740 ja-dic-utl instead of skkdic-utl.
7741
7742 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
7743 Provide ja-dic-cnv instead of skkdic-cnv.
7744 (ja-dic-filename): Renamed from skkdic-filename. Referers changed
7745 (iso-2022-7bit-short): Add safe-charsets property.
7746 (skkdic-convert-postfix): Search Japanese chou-on character in
7747 addition to Hiragana character.
7748 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
7749 (skkdic-convert): Change file names from skkdic.el to ja-dic.el
7750 (batch-skkdic-convert): Likewise.
7751
7752 * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
7753 Provide ja-dic-utl instead of skkdic-utl.
7754 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
7755
f6499c03
DL
77562000-08-24 Dave Love <fx@gnu.org>
7757
1c2c3f16
DL
7758 * disp-table.el (standard-display-default): Make the test of `l'
7759 useful.
7760
f6499c03
DL
7761 * language/european.el ("Latin-8", "Latin-9"): Add input methods,
7762 mod sample text.
7763
7764 * international/iso-ascii.el: Make pilcrow convenient string
7765 consistent with section.
7766 (iso-ascii-display): Set up multibyte characters as well as
7767 unibyte.
7768
c543db81
KH
77692000-08-24 Kenichi Handa <handa@etl.go.jp>
7770
7771 * international/mule-cmds.el (reset-language-environment): Set
7772 default-process-coding-system to '(undecided . iso-latin-1), which
7773 makes process I/O almost consistent with file I/O. Call this
7774 function when mule-cmds.el[c] is loaded.
7775
746d9caf
AI
77762000-08-22 Andrew Innes <andrewi@gnu.org>
7777
7778 * makefile.w32-in: New file.
7779
5484005d
MB
77802000-08-22 Miles Bader <miles@lsi.nec.co.jp>
7781
7782 * comint.el (comint-output-filter): Compare end of
7783 comint-last-output-overlay with the start of the newly inserted
7784 text, not the end, when deciding whether to extend it.
9b4a7800 7785 Set saved-point's insertion type to advance after insertion.
5484005d
MB
7786
7787 * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
7788 since this is now done independently of font-lock mode.
7789
7a912f63
GM
77902000-08-21 Gerd Moellmann <gerd@gnu.org>
7791
7792 * server.el (server-kill-new-buffers): New user option.
7793 (server-existing-buffer): New buffer-local variable.
7794 (server-visit-files): When using an existing buffer, set
7795 server-existing-buffer to t.
7796 (server-buffer-done): If server-kill-new-buffers is t, kill the
7797 buffer, unless it was already present before visiting it with
7798 Emacs server.
9b4a7800 7799
240301df
EZ
78002000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
7801
7802 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
7803 even if the display doesn't support colors: some displays will
7804 support bold/underline faces.
7805
cbcef616
GM
78062000-08-21 Gerd Moellmann <gerd@gnu.org>
7807
6917e6bb
GM
7808 * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
7809
cbcef616
GM
7810 * startup.el (command-line): If user's init file had an error,
7811 add explanatory text to *Messages*.
7812
6922b018
KH
78132000-08-21 Kenichi Handa <handa@etl.go.jp>
7814
7815 * man.el (Man-getpage-in-background): Decode the process output by
7816 the system locale coding system.
7817
e50c4203
DL
78182000-08-20 Dave Love <fx@gnu.org>
7819
96ab6351
DL
7820 * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
7821 Don't test x-popup-menu.
7822 (function) <complete-function>: Complete only fbound symbols.
7823 <validate, value>: New.
7824 (variable) <complete-function>: Complete only bound symbols.
7825 (coding-system): Add :base-only, :complete-function, :validate,
7826 :value, :prompt-match.
7827 (widget-coding-system-prompt-value): Use read-coding-system and
7828 act on :base-only.
7829 (editable-field): Add :help-echo.
7830 (widget-push-button-gui, widget-push-button-cache)
7831 (widget-gui-action, widget-editable-list-gui): COmment out, along
7832 with uses.
7833 (widget-at): Make arg optional.
7834 (widget-echo-help): Adjust for current help-echo calling sequence.
7835 (widget-specify-field, widget-specify-button)
7836 (widget-specify-insert, widget-get-sibling, widget-image-find)
7837 (widget-convert, widget-insert, widget-leave-text)
7838 (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
7839 (widget-setup, widget-field-find, widget-before-change)
7840 (widget-after-change, widget-default-complete)
7841 (widget-default-create, widget-default-delete)
7842 (widget-push-button-value-create, editable-field)
7843 (widget-field-prompt-value, widget-field-validate)
7844 (widget-choice-value-create, widget-choice-action)
7845 (widget-choice-validate, widget-checklist-add-item)
7846 (widget-radio-add-item, widget-radio-chosen)
7847 (widget-radio-value-inline, widget-editable-list-value-create)
7848 (widget-editable-list-entry-create)
7849 (widget-documentation-link-add)
7850 (widget-documentation-string-value-create)
7851 (widget-regexp-validate, widget-file-complete)
7852 (widget-sexp-validate, widget-plist-convert-widget)
7853 (widget-plist-convert-widget, widget-alist-convert-widget)
7854 (widget-alist-convert-widget, widget-color-complete): Simplify,
7855 particularly to avoid bindings which aren't optimized out.
7856
e50c4203
DL
7857 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
7858 Doc fix.
7859 (down-list, backward-up-list, up-list, kill-sexp)
7860 (backward-kill-sexp, mark-sexp): Make arg optional.
7861 (lisp-complete-symbol): Add optional arg PREDICATE.
7862
7863 * cus-start.el: Add display-buffer-reuse-frames,
7864 file-coding-system-alist.
7865
511bd4eb
GM
78662000-08-20 Gerd Moellmann <gerd@gnu.org>
7867
7868 * startup.el (command-line): Clear realized faces after
7869 modifying TTY color mappings.
7870
a9de7d29
MB
78712000-08-20 Miles Bader <miles@gnu.org>
7872
7873 * faces.el (face-attr-match-p): Don't return true if ATTRS are
7874 merely a subset of FACE's attributes.
7875
8a8023d9
MB
78762000-08-19 Miles Bader <miles@gnu.org>
7877
7878 * comint.el (comint-output-filter): Save the point with a marker,
7879 not just a buffer position.
7880
7881 * international/mule.el (set-buffer-process-coding-system): Make
7882 interactive prompt less confusing.
7883
1433385f
GM
78842000-08-19 Gerd Moellmann <gerd@gnu.org>
7885
7886 * hilit-chg.el: General cleanup of doc strings, comments and
7887 code formatting.
7888
136b4eda
MB
78892000-08-19 Miles Bader <miles@gnu.org>
7890
7891 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
7892 Compiler macro removed; beginning-of-line is no longer always
7893 equivalent to forward-line, in the presence of fields.
7894
7895 * comint.el (comint-output-filter): Remove ad-hoc saving of
7896 restriction, and just use save-restriction, now that it works
7897 correctly. Don't adjust comint-last-input-start to account for
7898 our insertion; it shouldn't have moved because we don't use
7899 insert-before-markers anymore. Comment out call to
7900 `force-mode-line-update'; why is it here?
7901
7902 * gud.el (gud-basic-call): Temporarily widen gud comint buffer
7903 while checking for prompt to delete. Use `forward-line 0'
7904 instead of beginning-of-line.
7905 (gud-filter): Temporarily widen gud comint buffer while
7906 examining output.
7907
cdd0f857
SM
79082000-08-18 Stefan Monnier <monnier@cs.yale.edu>
7909
ebf96bfa
SM
7910 * progmodes/sh-script.el: Big bag of typos.
7911
cdd0f857
SM
7912 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
7913 check since ispell-process is not bound when ispell is not yet loaded.
7914
9bb7a286
DL
79152000-08-18 Dave Love <fx@gnu.org>
7916
7917 * image.el (find-image): Copy `spec' before using plist-put.
7918
74ec6045
GM
79192000-08-18 Gerd Moellmann <gerd@gnu.org>
7920
7921 * textmodes/ispell.el (ispell-dictionary-alist-6): Add
7922 `portugues'.
7923
7924 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
7925 backward-kill-sexp, analogous to kill-sexp.
7926
7927 * progmodes/icon.el (icon-indent-line)
7928 (icon-is-continuation-line): Handle comments specially.
7929
79302000-08-17 Ken Stevens <k.stevens@ieee.org>
7931
7932 * ispell.el: Set to standard author/maintainer/keyword fields.
7933 Fine tuning to menu map appearance and operation, and added help.
7934 Remove `start' and `end' error messages when compiling.
7935 (ispell-choices-win-default-height): Fixed comment string.
7936 (ispell-dictionary-alist-1): Fixed regexp in castellano and
7937 castellano8 dictionaries.
7938 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
7939 (ispell-dictionary-alist-4): Fixed regexp in francais-tex
7940 dictionary, added italiano dictionary.
7941 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
7942 word character
7943 (ispell-tex-skip-alists): Added psfig support.
7944 (ispell-skip-html): Renamed from ispell-skip-sgml.
7945 (ispell-begin-skip-region-regexp, ispell-skip-region)
7946 (ispell-minor-check): Improved html skipping support to skip across
7947 code, and recognize `&' commands without propper `;' syntax;
7948 (ispell-process-line): Fix alignment error when manually
7949 correcting spelling.
7950 (ispell): Fix comment string.
7951 (ispell-add-per-file-word-list): Always put word list on new line.
7952
3787e12e
GM
79532000-08-17 Gerd Moellmann <gerd@gnu.org>
7954
a7b28523
GM
7955 * format.el (format-encode-run-method): Fix error message to say
7956 `encode' instead of `decode'. Use save-window-excursion around
7957 shell-command-on-region as in format-decode-run-method because
7958 shell-command-on-region can display a buffer with error output.
7959 (format-decode): Don't record undo information for the decoding.
7960 (format-annotate-function): Add parameter FORMAT-COUNT. Make
7961 that number part of the temporary buffer name so that more than
7962 one decoding using a temporary buffer can happen safely.
7963
7964 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
7965 of `A-z' in the regexp.
7966
7967 * hilit-chg.el: Fix typos in commentary.
7968
3787e12e
GM
7969 * help.el (view-emacs-news): Rewritten for new naming scheme
7970 for old NEWS files.
7971
7972 * startup.el (command-line): Pop to *Messages* in case an error
7973 is signaled while loading user-init-file.
7974
d2473540
AS
79752000-08-17 Andreas Schwab <schwab@suse.de>
7976
7977 * files.el (insert-directory): Don't lose original file name,
7978 undoing an undocumented change.
7979
c0bbaf57
GM
79802000-08-17 Alex Schroeder <alex@gnu.org>
7981
7982 * sql.el (sql-magic-go): Use comint-bol.
7983 (sql-copy-column): Use comint-line-beginning-position.
7984 (comint-line-beginning-position): Define a replacement for
7985 comint-line-beginning-position if it is not fboundp.
7986
79872000-08-17 Alex Schroeder <alex@gnu.org>
7988
7989 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
7990 it didn't have any effect anyway.
7991
79922000-08-17 Alex Schroeder <alex@gnu.org>
7993
7994 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
7995 --pset and pager=off instead of sending \\o|cat at the beginning
7996 of the session.
7997
9d245da5
MB
79982000-08-17 Miles Bader <miles@gnu.org>
7999
8000 * progmodes/octave-inf.el: Add compatibility definition of
8001 comint-line-beginning-position.
8002
abfdbd2e
KH
80032000-08-17 Kenichi Handa <handa@etl.go.jp>
8004
8005 * startup.el (normal-top-level): Look in each dir in load-path for
8006 a leim-list.el file too. This assures of loading leim-list.el
8007 that is created at Emacs installation time even if a user have his
8008 own leim-list.el.
8009
a0b8c939
MB
80102000-08-17 Miles Bader <miles@gnu.org>
8011
8012 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
8013 foreground color to black if the background is dark.
8014
7382bcae
SM
80152000-08-16 Stefan Monnier <monnier@cs.yale.edu>
8016
8017 * loadhist.el (unload-feature): Typo.
8018
9b4a7800 8019 * finder.el (finder-compile-keywords):
7382bcae
SM
8020 * cus-dep.el (custom-make-dependencies): Add local-variable settings
8021 to the generated file.
8022
8023 * mail/mh-e.el (mh-make-local-vars):
8024 Replace make-variable-buffer-local with make-local-variable.
8025
cdd0f857 8026 * play/landmark.el:
7382bcae 8027 * options.el (Edit-options-{set,toggle,t,nil}):
9b4a7800
TTN
8028 * mail/mailabbrev.el (mail-abbrevs-mode):
8029 * textmodes/tex-mode.el (tex-expand-files):
7382bcae
SM
8030 * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
8031
8032 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
8033
8034 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
8035 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
8036 Allow going past the last element.
9b4a7800 8037 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
7382bcae
SM
8038 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
8039 (cvs-mouse-toggle-mark): Don't move point.
8040 (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
8041
8042 * progmodes/compile.el (grep): Provide a default set of files.
8043 (next-error): Docstring fix.
8044 (compilation-find-file): Avoid find-file (fails in a dedicated window).
8045
8046 * emacs-lisp/easy-mmode.el (define-minor-mode):
8047 Use `symbol-value' to keep the byte-compiler quiet.
8048
8049 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
8050 (diff-find-source-location): New fun, extracted from diff-goto-source.
8051 (diff-goto-source): Use it.
8052 (diff-next-complex-hunk, diff-filter-lines): New function.
8053 (diff-apply-hunk): New command.
8054
8055 * smerge-mode.el (smerge-mode-menu): Doc fix.
8056
8057 * msb.el (msb-mode): Define it in terms of define-minor-mode.
8058
4f00b8c1
DL
80592000-08-16 Dave Love <fx@gnu.org>
8060
2b5198bb
DL
8061 * windmove.el (windmove) <defgroup>: Add :version.
8062
8063 * net/goto-addr.el: Don't require browse-url. Require thingatpt.
8064 (goto-address-fontify-p, goto-address-highlight-p)
8065 (goto-address-url-face, goto-address-url-mouse-face)
8066 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
8067 (goto-address-url-regexp): Use thing-at-point-url-regexp.
8068 (goto-address-fontify, goto-address-at-mouse): Simplify,
8069 (goto-address-at-point): browse-url-url-at-point,
8070 goto-address-find-address-at-point can return nil.
8071 (goto-address-find-address-at-point): Return nil on failure.
8072
8073 * align.el (align) <defgroup>: Add :version.
8074
8075 * calculator.el (calculator): Add :version.
8076 (calculator): Use two lines for calculator window if `modeline'
8077 face is boxed.
8078
4f00b8c1
DL
8079 * play/5x5.el: Doc fixes.
8080 (5x5) <defgroup>: Add :version.
8081
8082 * play/fortune.el (fortune) <defgroup>: Add :version.
8083 (fortune-append): Fix error message.
8084 (fortune-from-region): Doc fix.
8085
8086 * play/pong.el (pong): Doc fix.
8087
8088 * play/morse.el: Keywords, commentary, autoloads.
8089
69db7ee7
EZ
80902000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
8091
8092 * desktop.el (desktop-save): Don't look at symbol-value of a
8093 member of minor-mode-alist, unless it is boundp.
8094
10e1dad9
SS
80952000-08-16 Sam Steingold <sds@gnu.org>
8096
a0b8c939 8097 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
10e1dad9
SS
8098 `while'; use `with-current-buffer' instead of `save-excursion'.
8099 Removed unnecessary kludges now that "*Buffer List*" is excluded.
8100
9d7bcb2e
KH
81012000-08-16 Kenichi Handa <handa@etl.go.jp>
8102
8103 * international/ccl.el (declare-ccl-program): Docstring modified.
8104 (ccl-execute-with-args): Likewise.
8105
04231ab8
MB
81062000-08-16 Miles Bader <miles@gnu.org>
8107
9d245da5 8108 * progmodes/sql.el: Add compatibility definition of
04231ab8
MB
8109 comint-line-beginning-position.
8110
f68446ef
GM
81112000-08-15 Gerd Moellmann <gerd@gnu.org>
8112
dc28878c
GM
8113 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
8114 'buffer-menu' property.
8115 (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
8116 fails.
8117 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
8118 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
8119 wasn't killed.
10e1dad9 8120
58ed0d3b
GM
8121 * buff-menu.el (list-buffers-noselect): Don't display the
8122 *Buffer List* buffer.
8123
32dc52f7
GM
8124 * font-lock.el: Require jit-lock to prevent a very late
8125 `Loading jit-lock' message.
8126
f68446ef 8127 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
10e1dad9 8128 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
f68446ef
GM
8129 mail address.
8130
90ac90a2
MB
81312000-08-15 Miles Bader <miles@gnu.org>
8132
8133 * textmodes/ispell.el (ispell-graphic-p): New constant.
8134 (ispell-choices-win-default-height, ispell-help): Use
8135 `ispell-graphic-p' instead of `xemacsp'.
8136
b0a0e263
DL
81372000-08-15 Dave Love <fx@gnu.org>
8138
c1e757e3
DL
8139 * simple.el: Autoload widget-convert when compiling.
8140 (mail-user-agent): Doc fix.
8141
8142 * help.el (function-called-at-point, variable-at-point): Use
8143 with-syntax-table.
8144 (help-manyarg-func-alist): Add insert-and-inherit.
8145
8146 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
8147
8148 * delsel.el (delsel-unload-hook): New function.
8149
8150 * find-file.el: Doc fixes. Move provide to end.
8151 (ff) <defgroup>: Add :link.
8152 (ff-goto-click): Deleted.
8153 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
8154 Use mouse-set-point.
8155
8156 * textmodes/tildify.el: Doc fixes.
8157 (tildify) <defgroup>: Add:version.
8158
8159 * progmodes/glasses.el (glasses) <defgroup>: Add :version.
8160 (glasses-custom-set): Use set-default, not set.
8161 (minor-mode-alist): Propertize the lighter.
8162 (glasses-mode): Provide optional arg.
8163
5f847612
DL
8164 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
8165 (global-cwarn-mode): Don't make it a user option. Unquote lambda.
8166 (cwarn-font-lock-feature-keywords-alist): Don't make it a user
8167 option. Provide :type.
8168 (cwarn-configuration): Provide :type.
8169 (cwarn-mode): Doc fix.
8170
8171 * add-log.el (change-log-merge): Doc fix.
8172 (change-log-redate): New command.
8173
b0a0e263
DL
8174 * net/browse-url.el (browse-url-filename-alist): Add a clause for
8175 Doze and Dog.
8176 (browse-url): Use dolist, not mapcar.
8177 (browse-url-at-point): Check for null url.
8178 (browse-url-event-buffer, browse-url-event-point): Functions
8179 deleted.
8180 (browse-url-at-mouse, browse-url-netscape): Simplify.
8181
8182 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
8183 modes.
8184 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
8185 Fix previous change to mapcan.
8186 (msb--init-file-alist, msb--add-separators)
8187 (msb--make-keymap-menu): Simplify.
8188 (msb--choose-file-menu): Use copy-sequence.
8189 (msb-mode-map): Add title to keymap.
8190 (msb-unload-hook): New function.
8191
8192 * bs.el: Fix indentation.
8193 (bs) <defgroup>: Add :links.
2b5198bb
DL
8194 (bs-show): Doc fix.
8195 (bs-apply-sort-faces): Don't use window-system.
8196 (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
b0a0e263 8197
70f1b78e
EZ
81982000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
8199
8200 * calendar/timeclock.el (timeclock-file): Run .timelog through
8201 convert-standard-filename.
8202
956777b3
GM
82032000-08-14 Gerd Moellmann <gerd@gnu.org>
8204
3215096c
GM
8205 * emacs-lisp/authors.el: New file.
8206
956777b3
GM
8207 * paren.el (show-paren-priority): New user option.
8208 (show-paren-function): Set overlay priorities to
8209 show-paren-priority.
10e1dad9 8210
0cde1424
MB
82112000-08-14 Miles Bader <miles@gnu.org>
8212
8213 * comint.el (comint-bol): Use `forward-line 0' instead of calling
8214 beginning-of-line with inhibit-field-text-motion bound.
8215
90cbf47e
GM
82162000-08-14 Gerd Moellmann <gerd@gnu.org>
8217
8218 * calendar/timeclock.el: New file.
8219
82202000-08-14 David Ponce <david@dponce.com>
8221
8222 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
8223 `widget-button-click'. so that one can use left mouse button to
8224 click on dialog buttons.
8225
82262000-08-14 Emmanuel Briot <briot@gnat.com>
8227
8228 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
814299a7 8229 identifiers, since XML is case sensitive
10e1dad9 8230
79e8dca7 82312000-08-12 Miles Bader <miles@gnu.org>
10e1dad9 8232
660394d1
MB
8233 * comint.el (comint-output-filter): Don't bother frobbing
8234 window-start, it doesn't seem to be necessary.
79e8dca7
MB
8235
8236 * comint.el (comint-send-string, comint-send-region): Make into
8237 real functions. Snapshot the prompt before sending.
8238
218c2cc7
EZ
82392000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
8240
8241 * info.el (Info-find-emacs-command-nodes): Rewrite to use
8242 technique similar to Info-index, instead of relying on specific
8243 names of relevant Index nodes.
8244 (Info-goto-emacs-command-node): Bind Info-history to nil when
8245 going to the first node found by Info-find-emacs-command-nodes.
8246
51e066d2 82472000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
968280cc
EZ
8248
8249 * menu-bar.el (menu-bar-help-menu): Add a :help string.
8250
867102f2
MB
82512000-08-10 Miles Bader <miles@gnu.org>
8252
8253 * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
8254
af718538
EZ
82552000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
8256
8257 * info.el (Info-file-list-for-emacs): More elements for the
8258 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
8259 and woman manuals.
8260
c51bacd6
MB
82612000-08-10 Miles Bader <miles@lsi.nec.co.jp>
8262
8263 * comint.el (comint-send-input): Make the newline boundary overlay
8264 rear-nonsticky. Use `insert' instead of `insert-before-markers'.
8265 (comint-output-filter): Use `insert' instead of
8266 `insert-before-markers'. Extend comint-last-output-overlay when
8267 necessary since we can't rely on insert-before-markers to do it.
8268 * gud.el (gud-filter): Use `with-current-buffer' instead of
8269 save-excursion when inserting the output, so that point gets
8270 updated correctly; the old method relied on a rather dodgy
8271 side-effect of comint-output-filter to avoid the effect of
8272 save-excursion.
8273
98532b12
EZ
82742000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
8275
8276 * files.el (recover-file): Call insert-directory instead of
8277 invoking `ls' directly.
8278
3db4b719
MB
82792000-08-10 Miles Bader <miles@gnu.org>
8280
8281 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
8282 (comint-last-prompt-overlay): New variables.
8283 (comint-output-filter): Implement prompt highlighting.
8284 (comint-snapshot-last-prompt): New function.
8285 (comint-send-input): Snapshot the last prompt.
8286 Use comint-highlight-input-face.
8287 (comint-highlight-input-face): Renamed from `comint-highlight-face'.
8288 Use defface instead of defcustom.
8289 (send-invisible, comint-send-eof): Snapshot the last prompt.
8290 (comint-delchar-or-maybe-eof): Use comint-send-eof.
8291 (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
8292
96190aa1
SM
82932000-08-09 Stefan Monnier <monnier@cs.yale.edu>
8294
5cda4b07
SM
8295 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
8296 (regexp-opt-group): Use a list of chars for `letters'.
8297 (regexp-opt-charset): `chars' is now a list of chars.
8298 Use a char-table rather than a vector so it works for multibyte chars.
8299
96190aa1
SM
8300 * pcvs.el (cvs-menu): Don't move point. Use popup-menu.
8301 Set cvs-minor-current-files to the selected fileinfo.
8302 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
8303 (cvs-mode-insert): Manually macroexpand `ignore-errors'.
8304
7d093d56
EZ
83052000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
8306
8307 * files.el (insert-directory): Don't call access-file on
8308 directories on DOS and Windows.
8309
b24c5811
KH
83102000-08-09 Kenichi Handa <handa@etl.go.jp>
8311
8312 * international/ccl.el (ccl-embed-data): Make ccl-program-vector
8313 longer if necessary.
8314 (ccl-embed-code): Call ccl-embed-data to store CODE in
8315 ccl-program-vector.
8316
0a6fd67e
MB
83172000-08-09 Miles Bader <miles@gnu.org>
8318
8319 * comint.el (comint-output-filter): Properly handle the case where
8320 the text surrounded by comint-last-output-overlay was deleted.
8321
9f6d1a6c
GM
83222000-08-08 Gerd Moellmann <gerd@gnu.org>
8323
25ad1371
GM
8324 * info.el (Info-insert-dir): Use Info-additional-directory-list if
8325 non-nil.
8326 (Info-file-list-for-emacs): Remove "info" from the list because
8327 that leads to trying to use the documentation from file `info'
8328 in various situations where it isn't appropriate, for instance
8329 C-h C-k C-h i.
8330
8331 * ffap.el (ffap-read-file-or-url-internal): Handle case that
8332 DIR and/or STRING are nil.
8333
8334 * progmodes/compile.el (compilation-setup): Make variable
8335 compilation-error-screen-columns buffer-local, as some comment
8336 in the code suggests it should be.
8337
8338 * files.el (auto-mode-interpreter-regexp): New variable.
8339 (set-auto-mode): Use it.
8340
8341 * indent.el (indent-for-tab-command): Doc fix.
8342
8343 * mouse-sel.el (mouse-sel-mode): Doc fix.
8344
9f6d1a6c
GM
8345 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
8346 labels.
8347
8348 * help.el (print-help-return-message): When
8349 display-buffer-reuse-frames is set, let the help window been quit,
8350 instead of deleting it, which might delete a reused frame.
8351
3d819a75
EZ
83522000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
8353
8354 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
8355 rename a directory to a name that differs only by its letter case.
8356
c5a52529
KH
83572000-08-08 Kenichi Handa <handa@etl.go.jp>
8358
8359 * international/quail.el (quail-define-rules): Handle Quail decode
8360 map correctly. Add code for supporting annotations.
8361 (quail-install-decode-map): New function.
8362 (quail-defrule-internal): New optional arguments decode-map and
8363 props.
8364 (quail-advice): New function.
8365
5e9e032a
SS
83662000-08-07 Sam Steingold <sds@gnu.org>
8367
8368 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
8369 `defconst', `define-condition', `with-slots'.
8370 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
8371
46645f4b
MB
83722000-08-03 Miles Bader <miles@gnu.org>
8373
8374 * comint.el (comint-use-prompt-regexp-instead-of-fields):
8375 New variable.
8376 (comint-prompt-regexp, comint-get-old-input): Document dependence on
8377 comint-use-prompt-regexp-instead-of-fields.
8378 (comint-send-input): Add `input' field property to stuff we send to
8379 the process, if comint-use-prompt-regexp-instead-of-fields is nil.
8380 (comint-output-filter): Add `output' field property to process
8381 output, if comint-use-prompt-regexp-instead-of-fields is nil.
8382 (comint-replace-by-expanded-history)
8383 (comint-get-old-input-default, comint-show-output)
8384 (comint-backward-matching-input, comint-forward-matching-input)
8385 (comint-next-prompt, comint-previous-prompt): Use field
8386 properties if comint-use-prompt-regexp-instead-of-fields is nil.
8387 (comint-line-beginning-position): New function.
8388 (comint-bol): Use comint-line-beginning-position. Make ARG optional.
8389 (comint-replace-by-expanded-history-before-point): Use
8390 comint-line-beginning-position and line-end-position.
8391 (comint-last-output-overlay): New variable.
8392 (comint-mode): Make `comint-last-output-overlay' buffer-local.
8393
8394 * shell.el (shell-prompt-pattern): Doc change.
8395 (shell-backward-command): Use line-beginning-position.
8396
8397 * gud.el (gud-gdb-complete-command): Use
8398 comint-line-beginning-position.
8399
8400 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
8401 comint-bol doesn't actually go to the beginning of the line.
8402
8403 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
8404 if comint-use-prompt-regexp-instead-of-fields is non-nil.
8405 (try-expand-line-all-buffers): Likewise.
8406
8407 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
8408 explicitly matching comint-prompt-regexp.
8409 (sql-copy-column): Use comint-line-beginning-position instead of
8410 explicitly matching comint-prompt-regexp.
8411
8412 * progmodes/octave-inf.el (inferior-octave-complete): Use
8413 comint-line-beginning-position.
8414
8415 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
8416
8417 * progmodes/idlw-shell.el (idlwave-shell-send-command): When
8418 looking for a prompt, use `forward-line 0' instead of
8419 `beginning-of-line', to avoid getting caught by an input field.
8420
ff3d9573
GM
84212000-08-07 Gerd Moellmann <gerd@gnu.org>
8422
8423 * files.el (shell-quote-wildcard-pattern): Make sure to return
8424 PATTERN, in the Unix case.
8425
e0d8827b
EZ
84262000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
8427
8428 * play/zone.el (zone): Discard any pending input before running
8429 the randomly-chosen pgm.
8430
24d55b8f
KH
84312000-08-07 Kenichi Handa <handa@etl.go.jp>
8432
8433 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
8434 checking the existence of any multibyte characters.
8435
3d05e1ee
GM
84362000-08-06 Gerd Moellmann <gerd@gnu.org>
8437
6c4a4368
GM
8438 * help.el (describe-mode): Test minor-mode symbol for being
8439 bound before testing its value for being nil.
8440
3d05e1ee
GM
8441 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
8442 `first', `second', and `third'.
8443
8444 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
8445 (second): Make it an alias for `cadr'.
8446
6968a481
EZ
84472000-08-06 Eli Zaretskii <eliz@is.elta.co.il>
8448
8449 * bs.el (bs-apply-sort-faces): Don't use window-system, since all
8450 types of display support faces now.
8451
e49aa397
GM
84522000-08-05 Gerd Moellmann <gerd@gnu.org>
8453
8454 * pcvs.el (require): Require `cl' during compilation, only.
8455
8456 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
8457 (toplevel): Remove `remq' and `remove' from autoloads.
8458 (cl-fake-autoloads): New variable. If set, arrange for an error
8459 when CL functions etc. are autoloaded.
8460
588aca27
EZ
84612000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
8462
2e78d4ab
EZ
8463 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
8464
85628348
EZ
8465 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
8466 popped up, but the user clicks outside the menu, return an empty
8467 regexp (that causes unhighlight-regexp to have no effect).
8468
74f0e552
EZ
8469 * menu-bar.el (menu-bar-games-menu): Add Zone.
8470
588aca27
EZ
8471 * hi-lock.el (toplevel): Require font-lock.
8472
f4988be7
GM
84732000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8474
ba087cd7 8475 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
f4988be7
GM
8476 (ebnf-8-bit-chars): New var for bug fix.
8477 (ebnf-string): Bug fix.
8478
027b73ac
SS
84792000-08-03 Sam Steingold <sds@gnu.org>
8480
8481 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
8482 instead of `buffer-string'.
8483 (require 'cl): Always, not just when compiling.
8484 `ignore-errors' in `interactive', `list*', `defun*' &c make this
8485 necessary.
8486
2f1fa038
EZ
84872000-08-03 Eli Zaretskii <eliz@is.elta.co.il>
8488
8489 * international/mule-cmds.el (select-safe-coding-system): Make
8490 the message text about selecting a safe coding system more clear.
8491
ead53494
GM
84922000-08-02 Gerd Moellmann <gerd@gnu.org>
8493
abb2db1c
GM
8494 * hi-lock.el: New file.
8495
8496 * play/zone.el: New file.
8497
ead53494
GM
8498 * replace.el (occur): Set tab-width in the *Occur* buffer to the
8499 value of tab-width in the original buffer. Choose a line number
8500 format that's a multiple of the original buffer's tab width, so
8501 that lines appear right.
8502
8503 * textmodes/ispell.el (ispell): New function, replacing an alias.
8504 Spell-check active region if in transient-mark-mode and mark
8505 is active; otherwise spell-check buffer.
8506
85072000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8508
8509 * ps-mule.el: Fix a customization problem on
8510 ps-mule-font-info-database-default.
8511
f4a2b0a4
EZ
85122000-08-02 Eli Zaretskii <eliz@is.elta.co.il>
8513
8514 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
8515 display-mouse-p instead of window-system.
8516 (ebrowse-member-mode-map): Ditto.
8517
b685181e
GM
85182000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8519
ba087cd7
EZ
8520 * progmodes/ebnf2ps.el: Update ps-print functions call.
8521 Indentation fix. Doc fix.
b685181e
GM
8522 (ebnf-version): New version number (3.2).
8523 (ebnf-format-color, ebnf-begin-job): Code fix.
027b73ac 8524
3b5fab87
EZ
85252000-08-01 Eli Zaretskii <eliz@is.elta.co.il>
8526
032ebb29
EZ
8527 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
8528 font lock support on window-system.
8529 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
8530
3b5fab87
EZ
8531 * textmodes/ispell.el (ispell-highlight-spelling-error): Use
8532 display-color-p, if fboundp, instead of window-system.
8533
7e2605e7
EZ
85342000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
8535
8536 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
8537 instead of window-system.
8538
8539 * wid-edit.el (widget-choose): Use display-mouse-p instead of
8540 window-system.
8541 (widget-choice-mouse-down-action): Use display-popup-menus-p
8542 instead of window-system.
8543
8544 * strokes.el (strokes-file): Run the file name through
8545 convert-standard-filename.
8546 (strokes-mode): Call display-mouse-p instead of looking at
8547 window-system. Change the error message accordingly.
8548
8549 * progmodes/cpp.el (toplevel): Support faces on tty's.
8550
8551 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
8552 (lm-plot-square, lm-init-display): Don't use window-system.
8553
8554 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
8555 (gomoku-plot-square, gomoku-init-display): Don't use window-system.
8556
8557 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
8558 instead of looking at window-system.
8559
26119624
GM
85602000-07-30 Gerd Moellmann <gerd@gnu.org>
8561
8562 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
8563 of testing if iswitchb-prepost-hooks is bound, because the
8564 latter will always be true when invoking a recursive minibuffer
8565 from an active Iswitchb buffer.
8566
c90596f3
EZ
85672000-07-30 Eli Zaretskii <eliz@is.elta.co.il>
8568
8569 * files.el (shell-quote-wildcard-pattern): New function.
8570 (insert-directory): Call it. Only prepend "\" to command on Unix
8571 and GNU/Linux systems.
8572
18925e78
GM
85732000-07-30 Gerd Moellmann <gerd@gnu.org>
8574
8575 * eshell/esh-groups.el: Change custom :link file names
8576 from `eshell.info' to `eshell'.
8577
85782000-07-30 Francis Wright <fjw@maths.qmw.ac.uk>
8579
8580 * dired.el (dired-build-subdir-alist): Expand subdirectory names
8581 correctly in recursive ange-ftp listings.
8582
85832000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
8584
8585 * ps-print.el: Fix bug 1: if ps-font-size-internal,
8586 ps-header-font-size-internal and
8587 ps-header-title-font-size-internal variables are not set,
8588 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if
8589 face text property is (foreground-color . COLOR) or
8590 `(background-color . COLOR)', ps-print crashes. Doc fix.
8591 (ps-print-version): New version number (5.2.4).
8592 (ps-plot-region): Code fix.
8593 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
8594 (ps-face-attribute-list, ps-face-attributes, ps-face-background):
8595 Bug fix 2.
8596
85972000-07-30 Milan Zamazal <pdm@freesoft.cz>
8598
8599 * glasses.el (glasses-make-readable): Fix uncapitalization of
8600 identifiers like `myXMLDocument'.
8601
aeb4c63e
KF
86022000-07-28 Karl Fogel <kfogel@red-bean.com>
8603
18925e78
GM
8604 * mail/mail-hist.el (mail-hist-previous-input)
8605 (mail-hist-next-input): Do the obvious code factorization.
8606 (mail-hist-retrieve-and-insert): New func, contains common
aeb4c63e
KF
8607 code of above two.
8608 If inserting a message body, leave point at top.
8609
9d453139
SS
86102000-07-28 Sam Steingold <sds@gnu.org>
8611
8612 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
18925e78
GM
8613 Use `<=', not `<' to compare times!
8614 (ange-ftp-ls): Remove.
9d453139 8615
b548072f
GM
86162000-07-27 Gerd Moellmann <gerd@gnu.org>
8617
27848c01
GM
8618 * play/cookie1.el: Add explanation of how to make cookie.el
8619 compatible with strfile(1) to comment.
8620
8621 * subr.el (remove, remq): New functions.
8622
3ab82477
GM
8623 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
8624 escape `*' in regexps.
8625 (midnight-find): Reverse order of arguments in the funcall of
8626 TEST.
8627
8628 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
8629 and `.class'.
8630
b548072f
GM
8631 * play/meese.el: Add Commentary section.
8632
27848c01
GM
86332000-07-27 Alex Schroeder <alex@gnu.org>
8634
8635 * sql.el (sql-ms): Added autoload cookie.
8636 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
8637 (sql-oracle): Ditto.
8638 (sql-help): Doc change.
8639
8640 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
8641 types and exceptions.
8642
86432000-07-27 Alex Schroeder <alex@gnu.org>
8644
8645 * sql.el (sql-placeholder-history): New variable.
8646 (sql-query-placeholders-and-send): New function that will query
8647 the user and replace placeholders with user input.
8648 (sql-oracle): If running on NT, set comint-input-sender to
8649 sql-query-placeholders-and-send.
8650
8651 (sql-stop): If in the SQLi buffer, insert stop notification, else
8652 present it as a message.
8653
86542000-07-27 Alex Schroeder <alex@gnu.org>
8655
8656 * sql.el (sql-input-ring-separator): Doc change.
8657 (sql-input-ring-file-name): Doc change.
8658 (sql-interactive-mode): Use `sql-input-ring-separator' and
8659 `sql-input-ring-file-name' to set the comint-mode equivalents
8660 without making them local variables.
8661 (sql-stop): Don't bind `sql-input-ring-separator' and
8662 `sql-input-ring-file-name' dynamically to their comint-mode
8663 equivalents.
8664
91ae8751
KH
86652000-07-27 Kenichi Handa <handa@etl.go.jp>
8666
8667 * international/mule.el (register-char-codings): New function.
8668 (make-coding-system): Handle `safe-chars' specification in the arg
8669 PROPERTY.
8670
8671 * international/mule-cmds.el
8672 (find-coding-systems-region-subset-p): This function deleted.
8673 (sort-coding-systems-predicate): New variable.
8674 (sort-coding-systems): New function.
8675 (find-coding-systems-region): Use
8676 find-coding-systems-region-internal.
8677 (find-coding-systems-string): Use find-coding-systems-region.
8678 (find-coding-systems-for-charsets): Check
8679 char-coding-system-table.
8680 (select-safe-coding-system-accept-default-p): New variable.
8681 (select-safe-coding-system): Mostly rewritten. New argument
8682 ACCEPT-DEFAULT-P.
8683 (select-message-coding-system): Call select-safe-coding-system
8684 with ACCEPT-DEFAULT-P arg.
8685 (reset-language-environment): Reset default-sendmail-coding-system
8686 to the default value iso-latin-1.
8687 (set-language-environment): Don't set the obsolete variable
8688 charset-origin-alist.
8689
8690 * international/codepage.el (cp-coding-system-for-codepage-1):
8691 Give `safe-chars' property to make-coding-system.
8692
8693 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
8694 calling select-message-coding-system twice.
8695
8696 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
8697 instead of `safe-charsets'.
8698 (cyrillic-alternativnyj): Likewise.
8699 (ccl-encode-alternativnyj): Don't check the charset
8700 cyrillic-iso8859-5.
8701
90cf4474
KH
87022000-07-27 Kenichi Handa <handa@etl.go.jp>
8703
8704 * composite.el (compose-chars-after): Preserve match data.
8705
a1f84f6d
SS
87062000-07-26 Sam Steingold <sds@gnu.org>
8707
8708 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
8709 (ange-ftp-real-file-newer-than-file-p): New function.
8710 (ange-ftp-verify-visited-file-modtime): Use `float-time'.
8711 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
8712
8713 * tooltip.el (tooltip-float-time): Removed (use `float-time').
8714 * midnight.el (midnight-float-time): Ditto.
8715
e092928e
AS
87162000-07-26 Andreas Schwab <schwab@suse.de>
8717
8718 * files.el (normal-backup-enable-predicate): Correct
8719 interpretation of the return value of compare-strings.
8720
7465ebef
GM
87212000-07-26 Gerd Moellmann <gerd@gnu.org>
8722
3353ef5a
GM
8723 * isearch.el (isearch-resume): New function.
8724 (isearch-done): Add something to command-history to resume
8725 the search.
8726 (isearch-yank-line, isearch-yank-word): Use
8727 buffer-substring-no-properties instead of buffer-substring.
8728
7465ebef
GM
8729 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
8730 of flyspell-mouse-map.
8731
8732 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
8733 duplicate definition.
8734 (makefile-mode): Remove duplicate setting of local-abbrev-table.
8735
8736 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
8737 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
8738
5044b74a
SS
87392000-07-25 Sam Steingold <sds@gnu.org>
8740
25759a92
SS
8741 * net/ange-ftp.el: Get modtime over the net.
8742 (ange-ftp-file-modtime): New function.
a95cb10a
GM
8743 (ange-ftp-write-region, ange-ftp-insert-file-contents)
8744 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
25759a92
SS
8745 Use it.
8746 (ange-ftp-dot-to-slash): New function.
8747 (ange-ftp-fix-name-for-vms): Use it.
8748
5044b74a
SS
8749 * midnight.el (midnight-buffer-display-time): Use
8750 `with-current-buffer'.
8751
5dcfb3f4
GM
87522000-07-25 Gerd Moellmann <gerd@gnu.org>
8753
8754 * find-dired.el: Update copyright notice.
8755 (find-dired): Offer to kill a running `find'.
8756
8757 * enriched.el (enriched-face-ans): For a `foreground-color'
8758 property, return '(("x-color" COLOR))' so that COLOR will be
8759 output as a parameter of the x-color annotation. Likewise for the
8760 `background-color' property. In the case of normal face
8761 properties, don't return annotations for unspecified foreground
8762 and background face attributes.
8763
8c662166
KH
87642000-07-25 Kenichi Handa <handa@etl.go.jp>
8765
8766 * language/japan-util.el (japanese-katakana-region): Fix handling
8767 HANKAKU argument.
8768
c28da489
MB
87692000-07-25 Miles Bader <miles@gnu.org>
8770
8771 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
8772 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to
8773 constrain-to-field.
8774
ad349719
AI
87752000-07-24 Andrew Innes <andrewi@gnu.org>
8776
8777 * timer.el (timer-activate-when-idle): Add optional parameter
8778 DONT-WAIT. Update docstring.
8779 (run-with-idle-timer): Specify extra parameter to
8780 timer-activate-when-idle, so that timer will be activated
8781 immediately if Emacs is already idle.
8782
8783 * w32-fns.el (w32-using-nt): Fix docstring.
8784
c95162f5
DL
87852000-07-24 Dave Love <fx@gnu.org>
8786
8787 * mouse.el (popup-menu): Set last-command-event.
8788 (mouse-major-mode-menu-prefix): Declare.
8789
e3c31fd5
GM
87902000-07-24 Gerd Moellmann <gerd@gnu.org>
8791
8792 * textmodes/flyspell.el: Update to author's version 1.5d.
8793
8794 * progmodes/hideshow.el: Update copyright notice.
8795
8796 * vcursor.el: Set maintainer to FSF, since author cannot
8797 be reached.
8798
7636d2a3
EZ
87992000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
8800
fbe0a958
EZ
8801 * info.el (Info-goto-emacs-key-command-node): Leave a space after
8802 the prompt.
8803
7636d2a3
EZ
8804 * mouse.el (popup-menu): Run the keymap through indirect-function,
8805 in case it was defined with define-prefix-key. If the menu is a
8806 list of keymaps, look up the binding of user's choice in each one
8807 of the keymaps.
8808 (mouse-popup-menubar): If the global and local menu-bar keymaps
8809 don't have a prompt string, create one and insert it into the
8810 keymap. Don't barf if current-local-map returns nil.
8811
e024b101
GM
88122000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
8813
8814 * dired.el (dired-sort-R-check): Added to allow recursive listing
8815 to be undone.
8816 (dired-sort-other): Use it.
8817
7972fcfc
GM
88182000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8819
e024b101 8820 * Release of cc-mode 5.27
7972fcfc
GM
8821
88222000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8823
8824 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
8825 c-beginning-of-statement-1 that caused a bad case of recursion
8826 which could consume a lot of CPU in large classes in languages
8827 that have in-expression classes (i.e. Java and Pike).
8828
8829 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
8830 statements before top level constructs (i.e. case 6 is moved
8831 before case 5 and is now case 4) to catch in-expression
8832 classes in top level expressions correctly.
8833
88342000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8835
8836 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
8837 objc-method-intro. Case 4 removed and case 5I added.
8838
8839 * cc-langs.el (c-append-paragraph-start): New variable used by
8840 c-common-init to get paragraph-start correct.
8841 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
8842 initialize paragraph-start to make it correct both with and
8843 without the javadoc special case.
8844
8845 * cc-mode.el (java-mode): Use c-append-paragraph-start to
8846 initialize paragraph-start for javadoc markup.
8847
8848 * cc-vars.el (c-style-variables-are-local-p): Incompatible
8849 change by defaulting this to t. It's motivated by the
8850 confusing behavior that otherwise arise from the style system
8851 when editing both java and non-java files at the same time
8852 (see the comments about style setting in c-common-init).
8853
88542000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8855
8856 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
8857 similar to the one in c-fill-paragraph to check the fill
8858 prefix from the adaptive fill function for sanity.
8859
88602000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8861
8862 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
8863 defun block.
8864
88652000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8866
5044b74a 8867 * cc-mode.texi Documented the change of cpp-macro.
7972fcfc
GM
8868
88692000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8870
8871 * cc-align.el (c-lineup-multi-inher): Handle lines with
8872 leading comma nicely. Extended to handle member initializers
8873 too.
8874
e024b101 8875 * cc-engine.el: (c-beginning-of-inheritance-list,
7972fcfc
GM
8876 c-guess-basic-syntax): Fixed recognition of inheritance lists
8877 when the lines begins with a comma.
8878
5044b74a 8879 * cc-mode.texi: Updated doc for c-lineup-multi-inher.
7972fcfc
GM
8880
8881 * cc-vars.el (c-offsets-alist): Changed default for
8882 member-init-cont to c-lineup-multi-inher since it now handles
8883 member initializers and indents better for leading commas.
8884
88852000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8886
8887 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
8888 handling that caused class open lines to be recognized as
8889 statement-conts in some cases.
8890
8891 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
8892 guessed by the adaptive fill function unless point is on the
8893 first line of a block comment.
8894
8895 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
8896 when the buffer ends with a macro continuation char.
8897
8898 * cc-engine.el (c-guess-basic-syntax): Added support for
8899 function definitions as statements in Pike. The first
8900 statement in a lambda block is now labeled defun-block-intro
8901 instead of statement-block-intro.
8902
8903 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
8904 so that the class surrounding point is selected, not the one
8905 innermost in the state.
8906
8907 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
8908 recognition of switch labels having hanging multiline
8909 statements.
8910
8911 * cc-engine.el (c-beginning-of-member-init-list): Broke out
8912 some code in c-guess-basic-syntax to a separate function.
8913 * cc-engine.el (c-just-after-func-arglist-p): Fixed
8914 recognition of member inits with multiple line arglists.
8915 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
8916 member-init-cont when the commas are in funny places.
8917
89182000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8919
8920 * cc-defs.el (c-auto-newline): Removed this macro since it's
8921 not used anymore.
8922
8923 * cc-engine.el (c-looking-at-bos): New helper function.
8924 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
8925 inexpr and toplevel classes apart in Pike.
8926
8927 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
8928 of case 9A.
8929
8930 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
8931 constant, since "class" can introduce an in-expression class
8932 in Pike nowadays.
8933
89342000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8935
8936 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
8937 indentation on cpp-macro lines.
8938
8939 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
8940 a syntax modifier like comment-intro, to make it possible to
8941 get syntactic indentation for preprocessor directives. It's
8942 incompatible wrt to lineup functions on cpp-macro, but it has
8943 no observable effect in the 99.9% common case where cpp-macro
8944 is set to -1000.
8945
89462000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8947
8948 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
8949 member-init-cont when the preceding arglist is several lines.
8950
89512000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8952
8953 * cc-styles.el (c-style-alist): The basic offset for the BSD
8954 style corrected to 8.
8955
89562000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8957
8958 * cc-styles.el (c-style-alist): Adjusted the indentation of
8959 brace list openers in the gnu style.
8960
89612000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8962
8963 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
8964
8965 * cc-cmds.el (c-electric-brace, c-electric-slash,
8966 c-electric-star, c-electric-semi&comma, c-electric-colon,
8967 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
8968 when c-syntactic-indentation is nil.
8969
8970 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
8971 we were left at comments preceding the first statement when
8972 reaching the beginning of the buffer.
8973
8974 * cc-vars.el (c-syntactic-indentation): New variable to turn
8975 off all syntactic indentation.
8976
89772000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8978
8979 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
8980 between the text and the block comment ender when it hangs,
8981 depending on how many there are before the fill.
8982
89832000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
8984
8985 * cc-engine.el (c-beginning-of-closest-statement): New helper
8986 function to go back to the closest preceding statement start,
8987 which could be inside a conditional statement.
8988 * cc-engine.el (c-guess-basic-syntax): Use
8989 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
8990
8991 * cc-engine.el (c-guess-basic-syntax): Better handling of
8992 arglist-intro, arglist-cont-nonempty and arglist-close when
8993 the arglist is nested inside parens. Cases 7A, 7C and 7F
8994 changed.
8995
8996 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
8997 up-to-date with javadoc 1.2.
8998
89992000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
9000
9001 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
9002 multiline Pike type decls.
9003
90042000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
9005
9006 * cc-cmds.el (c-indent-new-comment-line): Always break
9007 multiline comments in multiline mode, regardless of
9008 comment-multi-line.
9009
90102000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
9011
9012 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
9013 fully::qualified::names in C++ member init lists. Preamble in
9014 case 5D changed.
9015
90162000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
9017
9018 * cc-langs.el (c-common-init): Handling of obsolete variables
9019 moved to c-initialize-cc-mode. More compatible style override
9020 when using global style variables.
9021 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
9022 variables moved here.
9023
e024b101 9024 * cc-mode.texi: Documented the special behavior of
7972fcfc
GM
9025 c-special-indent-hook as a style variable. Don't talk about
9026 doing (c-make-styles-buffer-local t) in a mode hook, since
9027 that's already too late to work right.
5044b74a 9028
7972fcfc
GM
9029 * cc-styles.el (c-make-styles-buffer-local): Flag style
9030 variable localness in c-style-variables-are-local-p to make
9031 the compatibility measure in c-common-init work well.
9032
9033 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
9034 longer contain set-from-style.
9035 * cc-styles.el (c-initialize-builtin-style): Don't check for
9036 set-from-style on c-special-indent-hook.
9037 * cc-styles.el (c-copy-tree): Obsolete. The standard function
9038 copy-alist is sufficient now.
9039
9040 * cc-styles.el (c-set-style, c-set-style-1,
9041 c-get-style-variables): Fixes to variable initialization so
9042 that duplicate entries in styles have the same effect
9043 regardless of DONT-OVERRIDE.
9044
9045 * cc-styles.el (c-set-style-2): Fixed bug where the
9046 initialization of inheriting styles failed when the
9047 dont-override flag is set.
9048
9049 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
9050 on this.
9051
90522000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
9053
9054 * cc-defs.el (c-forward-comment): Removed the workaround
9055 introduced in 5.38 since it had worse side-effects. If a line
9056 contains the string "//\"", it regarded the // as a comment
9057 start since the \ temporarily doesn't have escape syntax.
9058
90592000-07-17 Emmanuel Briot <briot@act-europe.fr>
9060
9061 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
9062 ada-xref.el before ada-prj.el, so that the Project menu is created
9063 when ada-prj tries to add to it.
9064 (ada-activate-keys-for-case): Suppress the characters that are not
9065 part of the Ada syntax. Better compatibility with else-mode
9066 (ada-adjust-case-interactive): When auto-casing is not active,
9067 correctly insert newlines (used to insert only ^M). Prevent the
9068 syntax table from being changed in case of an error
814299a7 9069 (or '_' becomes part of a word and some commands are confused).
7972fcfc
GM
9070 Do nothing if ada-auto-case is nil.
9071 (ada-after-keyword-p): Ignore keywords that are also attributes
9072 (ada-batch-reformat): Update usage comment
9073 (ada-call-from-contextual-menu): New function
9074 (ada-case-read-exceptions): Reinitialize the casing exception list
9075 first to nil first, so that the casing exception file can be
9076 shared.
9077 (ada-check-defun-name): Handles "configure" keyword for gnatdist
9078 files.
9079 (ada-compile-goto-error): Fix regexp used to detect a file:line
9080 anywhere in the error message
9081 (ada-contextual-menu-last-point): New variable
9082 (ada-create-keymap): If the variable delete-key-deletes-forward is
9083 t on XEmacs, it means that DEL should delete one character
9084 forward.
9085 (ada-create-menu): Use :included instead of :visible for XEmacs.
9086 New submenu "Options".
9087 (ada-end-stmt-re): Correctly indent "select ... then abort"
9088 statements.
9089 (ada-fill-comment-paragraph): Correctly delete all leading '--'
9090 even if they don't match ada-fill-comment-prefix Fix handling of
9091 paragraphs on the first or last line of a file.
9092 (ada-format-paramlist): Fix handling of default parameter values.
9093 (ada-get-body-name): New function.
9094 (ada-get-current-indent): Optimized by searchling directly for an
9095 existing generic part or a statement outside of it. Handle
9096 ada-indent-align-comments when indenting comments Replaced some
9097 regexps by testing directly the next character. This results in a
9098 huge speedup on some files. New indentation scheme for renames
9099 statements. Stop looking for the 'while' or 'for' associated with
9100 a 'loop' at the first semicolon encountered. A "return" can also
9101 match an anonymous access subprogram declaration.
9102 (ada-get-indent-noindent): Ignore strings and comments when
9103 looking for the keywords "record" and "private".
9104 (ada-goto-matching-decl-start): When matching "if", make sure we
9105 are not in fact seeing "end if". Ignore "when" statements except
9106 when initial keyword was "begin". Fix handling of nested
9107 procedures. Add a recursive call to this function to skip over
9108 other 'end' statmts. Fix indentation for "when .. => begin"
9109 (ada-in-open-paren-p): Fix indentation for complex boolean
9110 expressions, where 'and then', 'or else' and parenthesis
9111 statements are mixed up.
9112 (ada-in-paramlist-p): Skip comments while searching for the
9113 beginning Fix handling of operator declarations.
9114 (ada-indent-align-comments): New variable
9115 (ada-indent-current): Change the syntax table only in the
9116 protected section, so that we are sure it is restored correctly.
9117 (ada-indent-on-previous-lines): Use ada-use-indent and
9118 ada-with-indent Correctly indent "select ... then"
9119 (ada-indent-region): Slight speedup.
9120 (ada-indent-renames): New variable.
9121 (ada-last-which-function-subprog, ada-last-which-function-line):
9122 New variables
9123 (ada-looking-at-semi-private): Correctly indent the 'private'
9124 keyword when it is the first word in a package declaration.
9125 (ada-loose-case-word): Stop searching if at the end of the buffer.
9126 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
9127 even if point is not initially at the end of the word.
9128 (ada-matching-decl-start-re): Add "when".
9129 (ada-mode): Add support for abbrev-mode, outline-mode and
9130 which-func-mode Override the old find-file.el entry in
9131 ff-special-constructs since it is using the obsolete
9132 ada-spec-suffix variable
9133 (ada-no-auto-case): New function
9134 (ada-scan-paramlist): When parsing the argument type, accept
9135 spaces (as in "X 'Class", generated by Rational Rose).
9136 (ada-other-file-name): No longer loads the other file.
9137 (ada-popup-menu): Save and restore the current buffer and cursor
9138 position before and after displaying the menu.
9139 (ada-search-ignore-complex-boolean): New function.
9140 (ada-uncomment-region): Emacs21 already knows how to delete
9141 comments not starting in the first column.
9142 (ada-use-indent): New variable
9143 (ada-which-function): New function.
9144 (ada-with-indent): New variable
9145 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
9146 can be batch-compiled from the command line.
9147
9148 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
9149 Add to the menu when the file is loaded, not in ada-mode-hook.
9150 Add -toolbar to the default ddd command Switches moved from
9151 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
9152 ada-prj-default-comp-opt
9153 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
9154 Reference Manual to the menu
9155 (ada-check-current): rewritten as a call to ada-compile-current
9156 (ada-compile): Removed.
9157 (ada-compile-application, ada-compile-current, ada-check-current):
9158 Set the compilation-search-path so that compile.el automatically
9159 finds the sources in src_dir. Automatic scrollong of the
9160 compilation buffer. C-uC-cC-c asks for confirmation before
9161 compiling
9162 (ada-compile-current): New parameter, prj-field
9163 (ada-complete-identifier): Load the .ali file before doing
9164 processing
9165 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
9166 conform to gnatmake's behavior.
9167 (ada-find-file-in-dir): New function
9168 (ada-find-references): Set the environment variables for gnatfind
9169 (ada-find-src-file-in-dir): New function.
9170 (ada-first-non-nil): Removed
9171 (ada-gdb-application): Add support for jdb, the java debugger.
9172 (ada-get-ada-file-name): Load the original-file first if not done
9173 yet.
9174 (ada-get-all-references): Handles the new ali syntax (parent types
9175 are found between <>).
9176 (ada-initialize-runtime-library): New function
9177 (ada-mode-hook): Always load a project file when a file is opened,
9178 so that the casing exceptions are correctly read.
9179 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
9180 (ada-parse-prj-file): Use find-file-noselect instead of find-file
9181 to open the project file, since the latter does not work with
9182 speedbar Get default values before loading the prj file, or the
9183 default executable file name is wrong. Use the absolute value of
9184 src_dir to initialize ada-search-directories and
9185 compilation-search-path,... Add the standard runtime library to
9186 the search path for find-file.
9187 (ada-prj-default-debugger): Was missing an opening '{'
9188 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
9189 variables.
9190 (ada-prj-default-gnatmake-opt): New variable
9191 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
9192 buffers, the project file is the default one Save the windows
9193 configuration before displaying the menu.
9194 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
9195 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
9196 ...) regexp-quote identifiers names to support operators +,
9197 -,... in regexps.
9198 (ada-remote): New function.
9199 (ada-run-application): Erase the output buffer before starting the
9200 run Support remote execution of the application. Use
9201 call-process, or the arguments are incorrectly parsed
9202 (ada-set-default-project-file): Reread the content of the active
9203 project file, not the one from the current buffer When a project
9204 file is set as the default project, all directories are
9205 automatically associated with it.
9206 (ada-set-environment): New function
9207 (ada-treat-cmd-string): New special variable ${current}
9208 (ada-treat-cmd-string): Revised. The substitution is now done for
9209 any ${...} substring
9210 (ada-xref-current): If no body was found, compiles the spec
9211 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
9212 compiler to get rid of command line length limitations.
9213 (ada-xref-get-project-field): New function
9214 (ada-xref-project-files): New variable
9215 (ada-xref-runtime-library-specs-path)
9216 (ada-xref-runtime-library-ali-path): New variables
9217 (ada-xref-set-default-prj-values): Default run command now does a
9218 cd to the build directory. New field: main_unit Provide a default
9219 file name even if the current buffer has no prj file.
9220
9221 * ada-prj.el:
9222 Rewritten to show a tabbed-dialog.
9223 (ada-prj-add-ada-menu): Remove the map and name parameters.
9224 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
9225 New function
9226 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
9227 (ada-prj-load-from-file): New function
9228 (ada-prj-save): Always save fields that depend on the current buffer
9229 (ada-prj-show-value): New function
5044b74a 9230
7972fcfc
GM
9231 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
9232 Ada mode. This will allow us to display the Ada menu in any buffer
9233 we want (for project items).
9234 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
9235 number of spaces in the header.
5044b74a 9236
8730a8da
DL
92372000-07-24 Dave Love <fx@gnu.org>
9238
9239 * ediff-init.el (ediff-region-help-echo): Bind face-help.
9240
db3ca487
NF
92412000-07-23 Noah Friedman <friedman@splode.com>
9242
ad953485
NF
9243 * type-break.el (type-break): perform autosave.
9244 Suggested by Stephen Gildea <gildea@intouchsys.com>.
9245 (type-break-do-query): Cancel query schedule while performing
9246 actual query, to avoid possibility of a second query being made
9247 while first one is already in progress.
9248 (type-break-time-stamp-format): New variable.
9249 (type-break-time-stamp): New function.
9250 (type-break-time-warning): Use it.
9251 (type-break-keystroke-warning): Use it.
9252 (type-break-noninteractive-query): Use it.
9253
03a9c6d0
NF
9254 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
9255 cookie.
9256 Use add-minor-mode to set minor-mode-alist, if available.
9257 (eldoc-echo-area-use-multiline-p): New user option.
9258 (eldoc-echo-area-multiline-supported-p): New variable.
9259 (eldoc-docstring-format-sym-doc): Use them.
9260 (eldoc-mode): If not using idle timers, append to local post and
9261 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
9262 (eldoc-display-message-no-interference-p): Don't interfere with
9263 edebug.
9264 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
9265 (eldoc-function-arglist): New function.
9266 (eldoc-function-argstring): Use it.
9267
db3ca487
NF
9268 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
9269 auto save directory exists before calling directory-files.
9270
f7ad1899
DL
92712000-07-23 Dave Love <fx@gnu.org>
9272
9273 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
9274 ^o, ^u.
9275
43e764c9
DL
92762000-07-21 Dave Love <fx@gnu.org>
9277
475de6f4
DL
9278 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
9279 now passed to the function. It now works properly.
9280
43e764c9
DL
9281 * smerge-mode.el (smerge-mode-menu): Fill it out.
9282
e8bea4c0
GM
92832000-07-20 Gerd Moellmann <gerd@gnu.org>
9284
9285 * info-look.el (info-lookup): If *info* is shown in another frame
9286 on the same display, select that frame, instead of switching to
9287 the Info buffer in another window of the selected frame.
9288
9289 * simple.el (universal-argument-map): Bind numeric keypad keys
9290 kp-0 to kp-9 and kp-subtract.
9291 (digit-argument): Handle these keys.
9292
bc75b4fd
DL
92932000-07-20 Dave Love <fx@gnu.org>
9294
9295 * net/goto-addr.el (goto-address-fontify): Don't bother with
9296 buffer-modified and read-only stuff -- irrelevant with overlays.
9297 Put an extra property on the overlays and use it to clean up in
9298 case goto-address is re-run.
9299
8b7bc628
RS
93002000-07-19 Richard M. Stallman <rms@gnu.org>
9301
18e21ce8
RS
9302 * timer.el (run-with-idle-timer): Doc fix.
9303
db3ca487 9304 * mail/mail-utils.el (mail-strip-quoted-names):
8b7bc628
RS
9305 Handle case where <...> appears inside "...".
9306 Use replace-match to edit the string more simply.
9307 (rmail-dont-reply-to): Cope with an unmatched ".
9308
50575ec2
DL
93092000-07-19 Dave Love <fx@gnu.org>
9310
9311 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
9312 implementation.
9313
9314 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
9315 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
9316 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
9317
4279296d
GM
93182000-07-19 Gerd Moellmann <gerd@gnu.org>
9319
47db06aa
GM
9320 * textmodes/refer.el: Correct maintainer's email address.
9321
9322 * progmodes/hideif.el: Correct author's email address.
9323 Fix typo in comment.
9324
9325 * xml.el: New file.
9326
4279296d
GM
9327 * mail/mailheader.el: Correct author's mail address.
9328
9329 * gnus/parse-time.el: Correct author's mail address.
9330
47db06aa 93312000-07-19 Colin Walters <walters@cis.ohio-state.edu>
db3ca487
NF
9332
9333 * comint.el (comint-highlight-input, comint-highlight-face):
47db06aa
GM
9334 New user options.
9335 (comint-input-ring-file-name): Change custom type.
9336 (comint-mode-map): Bind mouse-2.
9337 (comint-insert-clicked-input): New function.
9338 (comint-send-input): Handle input highlighting.
9339
21ad0f7b
SM
93402000-07-18 Stefan Monnier <monnier@cs.yale.edu>
9341
9342 * mouse.el (popup-menu): New function.
9343 (mouse-major-mode-menu): Use it.
9344
3b33a005
DL
93452000-07-18 Dave Love <fx@gnu.org>
9346
9347 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
9348 improvements.
9349
dc1cac59
GM
93502000-07-18 Gerd Moellmann <gerd@gnu.org>
9351
21ad0f7b 9352 * faces.el (face-font-selection-order)
dc1cac59 9353 (face-font-family-alternatives): Add custom type.
db3ca487 9354
f8276b77
DL
93552000-07-18 Dave Love <fx@gnu.org>
9356
9357 * cus-edit.el (custom-variable-reset-saved)
9358 (custom-variable-reset-standard): Remove unused bindings.
9359
9360 * rect.el (open-rectangle-line): Remove unused let.
9361
9362 * hl-line.el (hl-line-highlight): Check hl-line-mode.
9363
3d6cd763
GM
93642000-07-18 Gerd Moellmann <gerd@gnu.org>
9365
9366 * cdl.el: Fix `Maintainer' keyword.
9367
9368 * play/pong.el: Add author's email address.
9369
34342a07
SS
93702000-07-17 Sam Steingold <sds@gnu.org>
9371
9372 * files.el (insert-directory): Call `split-string' instead of
9373 re-implementing it.
9374
088831a6
GM
93752000-07-18 Gerd Moellmann <gerd@gnu.org>
9376
9377 * mail/vms-pmail.el: Change maintainer to FSF.
9378
9379 * net/goto-addr.el: Change maintainer to FSF.
9380
088831a6 9381 * info.el (Info-title-face-alist): Removed.
db3ca487 9382
c152047f
GM
93832000-07-18 David Ponce <david@dponce.com>
9384
9385 * recentf.el (recentf-open-files): New command that works like
9386 `recentf-open-more-files', but shows the whole list of files (not just
9387 those omitted from the menu). Useful if you don't use a menu-bar!
9388 (recentf-open-more-files) Modified to use `recentf-open-files'.
9389
9390 (recentf-open-files, recentf-open-more-files)
9391 (recentf-edit-list): Dialogs use `recentf-dialog-mode'
e04d21aa 9392
c152047f
GM
9393 (recentf-dialog-mode): New mode for dialogs. You can now just type
9394 "q" to cancel the dialogs.
9395
93962000-07-18 David Ponce <david@dponce.com>
9397
9398 * recentf.el: This is a major update of recentf.el. It adds new
9399 features to better organize the recentf menu and "More..." buffer.
9400
9401 Using new provided menu filtering functions you can now organize the
9402 recent files list:
9403
9404 - by major modes
9405 - by directories
9406 - by user defined rules
9407
9408 Finally, with the new `recentf-filter-changer' customizable filter you
9409 can define a ring of filters and dynamically (via the menu) cycle on
9410 each menu organization in the ring (a la msb).
9411
68be2869
EZ
94122000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
9413
9414 * eshell/eshell.el (eshell): Replace links to eshell.info with
9415 links to eshell, to avoid problems on systems where the manual is
9416 installed as `eshell'.
9417 * eshell/esh-cmd.el (eshell-cmd): Ditto.
9418 * eshell/em-smart.el (eshell-smart): Ditto.
9419 * eshell/em-banner.el (eshell-banner): Ditto.
21ad0f7b 9420 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
68be2869
EZ
9421
9422 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
9423 same-file check in the MS-DOS version (it does support inodes).
9424
9425 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
9426
21ad0f7b
SM
9427 * eshell/eshell.el (eshell-directory-name):
9428 Run default directory name through convert-standard-filename.
68be2869 9429
269b4dcb
KH
94302000-07-18 Kenichi Handa <handa@etl.go.jp>
9431
21ad0f7b
SM
9432 * international/mule-cmds.el (select-safe-coding-system):
9433 Fix typo in the comment.
240a16cf 9434
21ad0f7b
SM
9435 * language/european.el (compound-text):
9436 Force katakana-jisx0201 to be designated to G1.
aa96c820 9437
21ad0f7b
SM
9438 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
9439 Don't translate some national variant characters of latin-jisx0201.
aa96c820 9440 (x-ctext): Force katakana-jisx0201 to be designated to G1.
a99c9d06 9441
269b4dcb
KH
9442 * international/kkc.el (kkc-after-update-conversion-functions):
9443 New variable.
9444 (kkc-update-conversion): Run functions in it at the tail.
9445
68be2869 94462000-07-16 John Wiegley <johnw@gnu.org>
6feeb380 9447
21ad0f7b
SM
9448 * lisp/align.el (align-newline-and-indent):
9449 Adding new function. for auto-aligning blocks of code on RET.
6feeb380
JW
9450 (align-region): Fixed badly formatted minibuffer message.
9451
7a3fd467
KH
94522000-07-17 Kenichi Handa <handa@etl.go.jp>
9453
21ad0f7b 9454 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
7a3fd467
KH
9455 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
9456 the conversion list at first if appropriate.
9457 (kkc-next): Don't update kkc-next-count here.
9458 (kkc-prev): Don't update kkc-prev-count here.
9459 (kkc-show-conversion-list-update): Fix setting up of conversion
9460 list message.
9461
a45423d8
SM
94622000-07-16 Stefan Monnier <monnier@cs.yale.edu>
9463
088831a6 9464 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
a45423d8 9465
91a38db1
DL
94662000-07-16 Dave Love <fx@gnu.org>
9467
9468 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
9469 function to be more specific.
9470
9471 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
9472 non-string help-echo.
9473 (widget-types-convert-widget): Defsubst it.
9474 (widget-echo-help): Try to cope with a help-echo function of two
9475 possible sorts.
9476
3fddcdc3
JR
94772000-07-15 Jason Rumney <jasonr@gnu.org>
9478
9479 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
9480 Declare as obsolete.
9481
9482 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
9483
bd23a692
GM
94842000-07-14 Gerd Moellmann <gerd@gnu.org>
9485
9486 * hilit-chg.el: Fix typo.
9487
d4af987a
DL
94882000-07-14 Dave Love <fx@gnu.org>
9489
9490 * info.el (Info-mode-menu): Fix use of :help, :enable.
9491
3a4f3f86
SM
94922000-07-14 Stefan Monnier <monnier@cs.yale.edu>
9493
9494 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
9495
cf6936a4
DL
94962000-07-13 Dave Love <fx@gnu.org>
9497
4d6d04b5
DL
9498 * emacs-lisp/easymenu.el: Doc fixes.
9499 (easy-menu-remove): Defalias to ignore.
9500
cf6936a4
DL
9501 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
9502 Call throw correctly.
9503
56437999
GM
95042000-07-13 Gerd Moellmann <gerd@gnu.org>
9505
9506 * faces.el (frame-background-mode): Doc fix.
9507
9508 * simple.el (eval-expression-print-length): Change custom type to
9509 allow entering nil as value.
9510
d04a3972
DL
95112000-07-13 Dave Love <fx@gnu.org>
9512
3a4f3f86
SM
9513 * progmodes/fortran.el (fortran-imenu-generic-expression):
9514 Change definition layout.
a8189dfe
DL
9515 (fortran-mode-menu): Reinstate customize entries.
9516
d04a3972
DL
9517 * cus-edit.el (custom-group-menu-create, customize-menu-create):
9518 Use :filter, per old XEmacs code.
9519
4bf4fb05
GM
95202000-07-12 Gerd Moellmann <gerd@gnu.org>
9521
9522 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
9523 event when deciding what to send to the terminal.
9524
37328bcd
DL
95252000-07-12 Dave Love <fx@gnu.org>
9526
9527 * cus-start.el: Add optional version as 4th element of specs and
9528 use it for several things new in v21. Remove load-path. Fix type
9529 of line-number-display-limit.
9530
89492072
DL
95312000-07-11 Dave Love <fx@gnu.org>
9532
3a4f3f86
SM
9533 * progmodes/fortran.el: Don't require easymenu.
9534 Use repeat counts in various regexps.
315aa1de
DL
9535 (fortran-mode-syntax-table): Defvar directly.
9536 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
3a4f3f86
SM
9537 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
9538 Use defvar, not defconst.
9539 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
315aa1de
DL
9540 (fortran-mode): Set fortran-comment-line-start-skip,
9541 fortran-comment-line-start-skip, dabbrev-case-fold-search.
9542 (fortran-comment-indent): Use defsubst.
3a4f3f86
SM
9543 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
9544 Use fortran-comment-indent, not fortran-comment-indent-function.
315aa1de
DL
9545 (fortran-comment-region, fortran-electric-line-number): Simplify.
9546 (fortran-auto-fill): New function.
9547 (fortran-do-auto-fill): Deleted.
3a4f3f86
SM
9548 (fortran-find-comment-start-skip):
9549 Check for non-null comment-start-skip.
9550 (fortran-auto-fill-mode, fortran-fill-statement):
9551 Use fortran-auto-fill.
315aa1de 9552 (fortran-fill): Use fortran-auto-fill. Check for null
3a4f3f86 9553 comment-start-skip. Simplify final clause and use end-of-line finally.
315aa1de 9554
89492072
DL
9555 * widget.el (widget-plist-member): New alias.
9556
d55ead18
EZ
95572000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
9558
9559 * eshell/esh-module.el (toplevel): Reference
9560 byte-compile-current-file only if it is bound.
9561
e82a2a05
GM
95622000-07-10 Gerd Moellmann <gerd@gnu.org>
9563
9564 * dired.el: Don't require `dired-aux'.
9565
1fc7fb2b
MB
95662000-07-10 Miles Bader <miles@lsi.nec.co.jp>
9567
9568 * dired-aux.el (dired-show-file-type): New function.
9569 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
9570 (dired-show-file-type): Add autoload.
9571
ab49ce15
KH
95722000-07-10 Kenichi Handa <handa@etl.go.jp>
9573
9574 * international/mule-diag.el (describe-font): Adjusted for the
3a4f3f86 9575 change of fontset-info.
ab49ce15
KH
9576 (print-fontset): Likewise.
9577
f45aab65
SM
95782000-07-09 Stefan Monnier <monnier@cs.yale.edu>
9579
9580 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
9581
2f72fd2f
GM
95822000-07-07 Gerd Moellmann <gerd@gnu.org>
9583
e82a2a05 9584 * bindings.el: Bind `[delete]' to delete-char.
965522f5 9585
2f72fd2f
GM
9586 * dired.el (dired-find-alternate-file): New function.
9587 (dired-mode-map): Bind `a' to dired-find-alternate-file.
9588 (toplevel): Require dired-aux when compiling.
9589 (dired-buffers): Move defvar within file to avoid compiler warning.
9590
9591 * info.el (Info-last-search): Variable removed.
9592 (Info-search-history): New variable.
9593 (Info-search): New Info-search-history.
9594
9595 * battery.el, info-look.el: Change author's mail address.
9596
965522f5 95972000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
34342a07 9598
965522f5
GM
9599 * mail/rmail.el (rmail-clear-headers): Don't throw an error
9600 if rmail-ignored-headers is nil.
9601 (rmail-retry-failure): Bind rmail-ignored-headers and
9602 rmail-displayed-headers to nil.
9603
dd8888a1
GM
96042000-07-06 Gerd Moellmann <gerd@gnu.org>
9605
e5c81191
GM
9606 * lpr.el (lpr-page-header-switches): Add `-h' switch.
9607 (print-region-1): Don't hard code `-h' here.
9608
dd8888a1
GM
9609 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
9610
e5c81191
GM
96112000-07-01 Francesco Potorti` <pot@gnu.org>
9612
9613 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
9614 exim can use "your message" instead of "the message".
34342a07 9615
f45aab65
SM
96162000-07-06 Stefan Monnier <monnier@cs.yale.edu>
9617
9618 * facemenu.el: Docstrings fixes.
9619 (facemenu-get-face): Don't use internal-find-face.
9620 (facemenu-iterate): Rename arg to match the docstring.
9621
9622 * newcomment.el (uncomment-region): Be more careful when skipping
9623 backwards over `=' not to bump into BOBP.
9624
d396e521 96252000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
34342a07 9626
dd8888a1
GM
9627 * ediff-diff.el (ediff-wordify): Use syntax table.
9628 * ediff-init.el (ediff-has-face-support-p): Use
d396e521 9629 ediff-color-display-p.
dd8888a1 9630 (ediff-color-display-p): Use display-color-p, changed to defun
d396e521
MK
9631 from defsubst.
9632 Got rid of special cases for NeXT and OS/2.
dd8888a1 9633 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
d396e521 9634 face.
34342a07 9635
5e2dfaa4
SM
96362000-07-05 Stefan Monnier <monnier@cs.yale.edu>
9637
9638 * emacs-lisp/lucid.el: Require CL.
9639 (copy-tree, remprop): Remove, it's provided by CL.
9640 (map-keymap): Define in terms of cl-map-keymap.
9641 (extent-property, set-extent-end-glyph): New functions.
9642
9643 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
9644
d5c5cddd
GM
96452000-07-05 Gerd Moellmann <gerd@gnu.org>
9646
485266d0
GM
9647 * Makefile.in (DONTCOMPILE): Add comment that the name may
9648 not be changed without changing the make-dist script.
9649
5e2dfaa4 9650 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
d5c5cddd 9651 (cl-mapc): Use mapc instead of cl-old-mapc.
34342a07 9652
e2c46326
AI
96532000-07-05 Andrew Innes <andrewi@gnu.org>
9654
9655 * makefile.nt: Add support for `bootstrap' and related targets.
9656
a027a91b
SM
96572000-07-05 Stefan Monnier <monnier@cs.yale.edu>
9658
9659 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
9660 (easy-menu-do-define): Use `menu-item' format.
9661 Handle case where easy-menu-create-menu returns a symbol.
9662 Manually call the potential top-level filter in the function binding.
9663 (easy-menu-filter-return): New arg NAME.
9664 Convert to a keymap if MENU is an XEmacs menu.
9665 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
9666 (easy-menu-converted-items-table, easy-menu-convert-item):
9667 New var and fun to memoize easy-menu-convert-item-1.
9668 (easy-menu-do-add-item): Use it.
9669 (easy-menu-create-menu): Use easy-menu-convert-item.
9670 Wrap easy-menu-filter-return around any :filter specification.
9671 Don't convert the menu if a filter was specified.
9672 Tell easy-menu-make-symbol not to check for MENU being an expression.
9673 (easy-menu-make-symbol): New arg NOEXP.
9674
5e03eb84
GM
96752000-07-05 Gerd Moellmann <gerd@gnu.org>
9676
9677 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
9678 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
9679 (eval-defun): If called with prefix arg, instrument code for
9680 Edebug.
9681
9682 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
9683 similar to that of eval-defun.
9684
fca68a95
DL
96852000-07-04 Dave Love <fx@gnu.org>
9686
7ccbba4c
DL
9687 * hl-line.el (hl-line-overlay): Make it permanent-local.
9688
fca68a95
DL
9689 * calendar/todo-mode.el: Replaced with a working version, based on
9690 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
9691
96922000-07-03 Miles Bader <miles@lsi.nec.co.jp>
78e7e8a0
MB
9693
9694 * paths.el (prune-directory-list): New function.
9695 (Info-default-directory-list): Rewritten to more methodically
9696 enumerate a big list of possible info directories (based on the
9697 list used by the standalone info reader).
fca68a95 9698
78e7e8a0 9699 * info.el (info-initialize): Use prune-directory-list to remove
3a4f3f86 9700 non-existent directories from Info-directory-list.
78e7e8a0 9701
78e7e8a0
MB
9702 * paths.el (Info-default-directory-list): Try a list of possible
9703 info-directories instead of a single one. Add the possible
9704 info directory "/usr/share/info".
9705
9706 * woman.el (woman-man.conf-path): Explicitly include the debian
9707 man-db config file "/etc/manpath.config".
9708 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
9709 are present in `manpath.config'.
9710 (woman-manpath): Include "/usr/share/man".
9711
67c9a1d2
GM
97122000-07-03 Gerd Moellmann <gerd@gnu.org>
9713
6753393b
GM
9714 * frame.el (blink-cursor-mode): Don't hide cursor initially.
9715
9716 * startup.el (command-line): Initialize blink-cursor based
9717 on window-system.
9718
e4f98ad3
GM
9719 * frame.el (blink-cursor): Default to nil if not running under
9720 a window-system.
9721
2f516940
GM
9722 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
9723 (face-x-resources): Remove duplicate entry for :font.
9724
67c9a1d2
GM
9725 * textmodes/refer.el (refer-find-entry-internal): Use some-window
9726 instead of cycling through windows with next-window.
9727
9728 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
9729 of cycling through windows with next-window.
9730
9731 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
9732 of cycling through windows with next-window.
9733
9734 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
9735 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
9736 instead of cycling through windows with next-window.
9737
9738 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
9739 instead of cycling through windows with next-window.
9740
9741 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
9742 of cycling through windows with next-window.
9743
9744 * terminal.el (te-process-output): Use walk-windows instead of
9745 cycling through windows with next-window.
9746
9747 * server.el (server-switch-buffer): Use some-window instead of
9748 cycling through windows with next-window.
9749
9750 * window.el (some-window): New function.
9751 (walk-windows): Remove reference to walk-windows-start.
831a6cb0 9752
3a4f3f86 9753 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
831a6cb0 9754
8b7bc628 97552000-07-03 Richard Stallman <rms@gnu.org>
67c9a1d2
GM
9756
9757 * window.el (walk-windows): Guarantee termination by keeping a list
9758 of all the windows already handled.
9759
d0d57043
EZ
97602000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
9761
9762 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
9763 window-system.
9764
9765 * man.el (Man-notify-when-ready): Don't use window-system. If
9766 Man-notify-method is newframe, and the display is not
9767 multi-frame, select the frame created for the man page.
9768 (Man-init-defvars): Doc fix.
9769
d5483ab1
GM
97702000-06-28 Gerd Moellmann <gerd@gnu.org>
9771
af5c25e1
GM
9772 * faces.el (region): Change background color for light background.
9773
9774 * ediff-wind.el (ediff-setup-control-frame): Remove :box
9775 attribute from mode-line face of Ediff control frame.
9776
d5483ab1
GM
9777 * replace.el (query-replace-map): Bind `e' like `E'.
9778
9d47450f
EZ
97792000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
9780
3a4f3f86
SM
9781 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
9782 Change name to "Select All".
496b7491 9783
9d47450f
EZ
9784 * dos-fns.el (convert-standard-filename): Fix last change.
9785
0b431deb
GM
97862000-06-27 Gerd Moellmann <gerd@gnu.org>
9787
4fa9f636
GM
9788 * help.el (describe-variable): Don't insert a second `'s' in front
9789 of the string `value is shown below'. Since the syntax-table is
9790 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
9791 an existing `'s', so that this won't be deleted.
9792
0b431deb
GM
9793 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
9794 * pcmpl-unix.el: New files.
9795
32cad0aa
SM
97962000-06-26 Stefan Monnier <monnier@cs.yale.edu>
9797
9798 * wid-edit.el (widget-member): Use the new plist-member.
9799
2c69ced2
GM
98002000-06-26 Gerd Moellmann <gerd@gnu.org>
9801
44c0f771
GM
9802 * replace.el (perform-replace): Undo change of 2000-04-04.
9803 Instead, move backward 1 character at the end of the loop when
9804 necessary.
34342a07 9805
1d36487c
GM
9806 * faces.el (fringe): Change face for different backgrounds.
9807
9808 * eshell/esh-module.el (toplevel): Load defgroup's differently;
9809 patch from John.
9810
2c69ced2
GM
9811 * eshell/*.el: Change spelling of the Free Software Foundation.
9812
9813 * eshell/esh-toggle.el: Removed.
9814
9815 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
9816
9817 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
9818 interactively.
9819
98202000-06-26 Alex Schroeder <alex@gnu.org>
9821
9822 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
9823 `define-key'; instead of checking `(emacs-version)' check for
9824 `set-keymap-parent' and `set-keymap-name' directly. Add entries
9825 for `;' and `o' which might be electric.
9826
9827 (sql-electric-stuff): New user option.
9828 (sql-magic-go): New function which uses `sql-electric-stuff'.
9829 (sql-magic-semicolon): New function which uses
9830 `sql-electric-stuff'.
9831
9832 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
9833 is not fboundp.
9834
9835 (sql-oracle-options): New variable.
9836 (sql-oracle): Use it.
9837
9838 (sql-imenu-generic-expression): Doc change.
9839 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
9840 is used.
9841
9842 (sql-informix): Added command line parameter "-" to force
9843 sql-informix-program to use stdout.
9844
db1306d8
EZ
98452000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
9846
3a4f3f86 9847 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
db1306d8
EZ
9848 (cp864-decode-table): Doc fix.
9849 (cp720-decode-table): New variable, supports the Arabic OEM
9850 codepage used by Windows.
9851 (cp737-decode-table): New, Greek OEM codepage used by Windows.
9852
c69e5fcd
DL
98532000-06-23 Dave Love <fx@gnu.org>
9854
9855 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
9856 (font-lock-fontify-anchored-keywords): Use
9857 line-beginning-position.
9858 (global-font-lock-mode): Use mapc.
9859
30ad8f23
SM
98602000-06-23 Stefan Monnier <monnier@cs.yale.edu>
9861
9862 * eshell/esh-module.el: Require CL when compiling.
9863
26b4dc84
GM
98642000-06-23 Gerd Moellmann <gerd@gnu.org>
9865
78c56e70
GM
9866 * comint.el (comint-substitute-in-file-name): Call replace-match
9867 with second and third arg t.
9868
34342a07 9869 * cus-edit.el (custom-button-face, custom-button-pressed-face):
f6478c66
GM
9870 Specify foreground color.
9871
9872 * faces.el (tool-bar, mode-line, header-line): Specify foreground
9873 color.
9874
affbf647
GM
9875 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
9876
9877 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
9878 cddr instead of cdddr.
9879
25fffb31
GM
9880 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
9881 instead of copy-list.
9882
9883 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
9884 of copy-list.
9885
26b4dc84
GM
9886 * subdirs.el: Add eshell subdirectory.
9887
9888 * eshell: New subdirectory containing the Eshell package.
9889
9890 * pcomplete.el: New file.
9891
78c56e70
GM
98922000-06-23 Paul Eggert <eggert@twinsun.com>
9893
ea055732
GM
9894 * mail/mailpost.el (post-mail-send-it): Make sure file has
9895 proper permissions from birth.
9896
9897 * files.el (basic-save-buffer-2): When temporarily setting
9898 file modes, set them to current modes plus 0200, not to 0777.
9899
78c56e70
GM
9900 * emerge.el (emerge-make-temp-file): Make sure file has proper
9901 permissions from birth.
9902
a3a7ff33
EZ
99032000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
9904
9905 * files.el (make-backup-file-name-1): On DOS/Windows, run the
9906 backup file name through convert-standard-filename.
9907
9908 * dos-fns.el (convert-standard-filename): Convert leading
9909 directories as well. When long file names are supported, convert
9910 characters that are invalid in Windows file names.
9911
1fd9b7fe
GM
99122000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9913
9914 * ps-print.el: Fix bug: if ^L is the very first buffer character,
9915 ps-print crashes. New feature: page selection for printing. Create
9916 raw-text-unix coding system for XEmacs. Doc fix.
9917 (ps-print-version): New version number (5.2.3).
9918 (ps-plot-region): Bug fix.
9919 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
9920 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
9921 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
9922 funs.
9923 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
9924 (ps-last-page): New vars.
9925
16ed8416
GM
99262000-06-21 Gerd Moellmann <gerd@gnu.org>
9927
9928 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
9929 empty option string.
9930
4fbee715
EZ
99312000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
9932
9933 * man.el (man): Doc fix.
9934
eaecfc94
KH
99352000-06-21 Kenichi Handa <handa@etl.go.jp>
9936
9937 * international/mule-cmds.el (set-language-info-alist): Docstring
9938 fixed.
9939
4a27bdfb
GM
99402000-06-20 Gerd Moellmann <gerd@gnu.org>
9941
9942 * version.el (emacs-version): Use ISO date format.
9943
9944 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
9945 instead of `M-backspace'.
9946
9947 * simple.el (turn-off-auto-fill): New function.
9948
8972fe79
SM
99492000-06-20 Stefan Monnier <monnier@cs.yale.edu>
9950
9951 * jit-lock.el (with-buffer-prepared-for-jit-lock):
9952 Renamed from with-buffer-prepared-for-font-lock and use
9953 inhibit-modification-hooks rather than setting *-change-functions.
9954 Update all functions to use the new name.
9955 (jit-lock-first-unfontify-pos): New semantics (and doc).
9956 (jit-lock-mode): Make non-interactive.
9957 Don't automatically turn on font-lock.
9958 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
9959 Always use jit-lock-after-change.
9960 Remove and restore font-lock-after-change-function.
9961 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
9962 (jit-lock-after-unfontify-buffer): Remove.
9963 (jit-lock-stealth-fontify):
9964 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
9965 (jit-lock-after-change): Set the `fontified' text-prop to nil.
9966
5d80cc9c
SS
99672000-06-20 Sam Steingold <sds@gnu.org>
9968
9969 * emacs-lisp/cl-indent.el (toplevel): Indent
9970 `print-unreadable-object' properly. Untabify.
9971
f54e4d13
CD
99722000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
9973
9974 * textmodes/reftex.el (reftex-find-citation-regexp-format):
9975 Support for bibentry.
9976 (reftex-compile-variables): Fixed problem with end of section-re.
9977
9978 * texmodes/reftex-dcr.el (reftex-view-crossref,
8972fe79
SM
9979 reftex-view-crossref-from-bibtex):
9980 Deal with changed `reftex-find-citation-regexp-format'.
f54e4d13
CD
9981 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
9982 Replaced `remprop' with `put'.
8972fe79
SM
9983 (reftex-view-crossref, reftex-view-crossref-when-idle):
9984 Support for bibentry.
f54e4d13 9985
8972fe79
SM
9986 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
9987 New entry for bibentry package.
f54e4d13 9988
8972fe79
SM
9989 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
9990 Regexp also matches "\nobibliography".
f54e4d13 9991
8972fe79
SM
9992 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
9993 Call `reftex-ensure-write-access' before doing anything.
f54e4d13
CD
9994 (reftex-ensure-write-access): New function.
9995
f54e4d13
CD
99962000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
9997
9998 * progmodes/idlwave.el: File re-installed (update to version 4.2)
9999
10000 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
10001
10002 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
10003
10004 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
10005
10006
560c43f4
DL
100072000-06-20 Dave Love <fx@gnu.org>
10008
10009 * faces.el (frame-background-mode): Use set-default, not set, in
10010 setter.
10011 (frame-update-faces, frame-update-face-colors): Define with
10012 defalias.
10013
10014 * enriched.el (enriched-decode-foreground)
10015 (enriched-decode-background): Don't use internal-find-face.
10016
10017 * apropos.el: Doc fixes.
10018
10019 * cus-edit.el (customize-changed-options): Check arg.
10020 (customize-version-lessp): Don't require decimal point.
10021
10022 * custom.el (defcustom, defgroup): Doc fix.
10023
10024 * newcomment.el (comment) <defgroup>: Add :version.
10025 (comment-multi-line): Doc fix.
10026
10027 * emulation/mlsupport.el (define-hooked-local-abbrev,
10028 define-hooked-global-abbrev): Fix, using define-abbrev.
10029
cdf0357b
GM
100302000-06-19 Gerd Moellmann <gerd@gnu.org>
10031
10032 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
10033 the whole buffer.
10034
10013d74
DL
100352000-06-19 Dave Love <fx@gnu.org>
10036
10037 * menu-bar.el (menu-bar-options-save): New function.
10038 (menu-bar-options-menu): Use it.
10039 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
10040 Simplify.
10041
6922f208
AS
100422000-06-19 Andreas Schwab <schwab@suse.de>
10043
10044 * progmodes/etags.el (tags-query-replace): Put new parameters
10045 START and END at the end, for backward compatibility.
10046
10d7bf84
KH
100472000-06-19 Kenichi Handa <handa@etl.go.jp>
10048
10049 * international/codepage.el:
10050 (cp-coding-system-for-codepage-1): Delete special codes for
10051 generating xxx-dos coding system because now a CCL based coding
10052 system can handle EOL conversion by default.
10053
10054 * international/mule.el (make-coding-system): Generate subsidiary
10055 coding systems for EOL handling variants even for a CCL based
10056 coding system.
10057
8f3c9a3d
KH
100582000-06-19 Kenichi Handa <handa@etl.go.jp>
10059
10060 * international/isearch-x.el (isearch-minibuffer-input-method)
10061 (isearch-minibuffer-input-method-function): These variables
10062 deleted.
10063 (isearch-with-input-method): Don't use the above variables.
10064 (isearch-process-search-multibyte-characters): Likewise. Call
10065 read-string with the arg INHERIT-INPUT-METHOD t.
10066
c2acf685
SM
100672000-06-17 Stefan Monnier <monnier@cs.yale.edu>
10068
13f0d185
SM
10069 * font-lock.el (font-lock-after-fontify-buffer)
10070 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
10071
10072 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
10073 Use consistent make-local-variable style for font-lock-fontified.
10074 (jit-lock-fontify-buffer):
10075 Don't bother checking for font-lock-mode and jit-lock-mode.
10076
c2acf685
SM
10077 * time.el: Remove trailing ^M that prevent CVS-merging.
10078
a9021acd
GM
100792000-06-16 Gerd Moellmann <gerd@gnu.org>
10080
10081 * Makefile.in (distclean): New target.
5d80cc9c 10082
0df68e9f
SM
100832000-06-16 Stefan Monnier <monnier@cs.yale.edu>
10084
10085 * Makefile.in (srcdir): Define for update-subdirs.
10086
6344985d
GM
100872000-06-16 Gerd Moellmann <gerd@gnu.org>
10088
10089 * find-lisp.el: New file.
10090
63239267
AI
100912000-06-16 Andrew Innes <andrewi@gnu.org>
10092
10093 * time.el (display-time-mail-function): New variable, to allow
10094 external packages to indicate when new mail is available.
10095 (display-time-update): Use it.
10096
1699f991
KH
100972000-06-16 Kenichi Handa <handa@etl.go.jp>
10098
a3b37893
KH
10099 * international/mule.el (mule-version): Change version name to
10100 SAKAKI. AOI has already been used by Meadow.
10101
1699f991
KH
10102 * international/quail.el (quail-show-guidance-buf): To find the
10103 bottom window (but minibuffer), pay attention to the height of
10104 minibuffer.
10105
228b083e
EZ
101062000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
10107
7d5c8691
EZ
10108 * arc-mode.el (archive-mode-map): Use the new menu-item format for
10109 menu-bar menus. Add help strings. Don't remove the Edit menu
10110 from the menu bar, as the menu bar has enough space now.
10111
261f3289
EZ
10112 * Makefile.in (SHELL): Make sure /bin/sh is used.
10113
228b083e
EZ
10114 * woman.el (woman-man-buffer): Fix bold and underlined CJK
10115 characters, which use series of two ^H characters instead of one.
10116
e27e8d71
GM
101172000-06-15 Gerd Moellmann <gerd@gnu.org>
10118
5d80cc9c 10119 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
451ec4e3 10120 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
5d80cc9c 10121 functions.
451ec4e3
GM
10122 (Info-find-node-2): Try a case-sensitive search first, then
10123 do a case-insensitive search.
10124
10125 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
10126 tutorials.
10127
b675095c
GM
10128 * complete.el (PC-env-vars-alist): New variable.
10129 (PC-complete-as-file-name): New function.
10130 (partial-completion-mode): Initialize PC-env-vars-alist from
10131 process-environment.
10132 (PC-do-completion): Handle completion of env vars.
10133
10134 * info.el (Info-set-mode-line): Show file name in mode line,
10135 use `*Info*' instead of `Info:'.
10136
e27e8d71
GM
10137 * startup.el (command-line-1): Change copyright messages to year
10138 2000.
10139
28223a7e
DL
101402000-06-15 Dave Love <fx@gnu.org>
10141
10142 * net/goto-addr.el (goto-address-fontify): Use keymap property,
10143 not local-map.
10144
32684631
KH
101452000-06-15 Kenichi Handa <handa@etl.go.jp>
10146
10147 * international/mule.el (set-buffer-file-coding-system): Almost
10148 rewritten to handle `undecided' as no-op.
10149
9f817ea4
GM
101502000-06-14 Gerd Moellmann <gerd@gnu.org>
10151
e27e8d71 10152 * Makefile.in: New file.
dce6b995
GM
10153
10154 * Makefile: Removed.
10155
9f817ea4
GM
10156 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
10157 (goto-address-highlight-keymap): Bind C-c RET.
10158
2de33f94
KH
101592000-06-14 Kenichi Handa <handa@etl.go.jp>
10160
bbf1e8a5
KH
10161 * mail/sendmail.el (sendmail-send-it): The temporary buffer
10162 inherits buffer-file-coding-system of the current buffer.
725a6897 10163
02891cc3
KH
10164 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
10165 0. Give correct argument to set-auto-coding-function.
10166 (tar-expunge): For goto-char, use (point-min), not 0.
10167 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
10168 (tar-subfile-save-buffer): Likewize.
10169
2de33f94
KH
10170 * international/mule.el
10171 (after-insert-file-set-buffer-file-coding-system): Call
10172 set-buffer-file-coding-system with the arg FORCE t.
10173
1681ead6
GM
101742000-06-13 Gerd Moellmann <gerd@gnu.org>
10175
10176 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
10177 nil. Contemporary sendmails issue an X-Authentication-Warning if
b675095c 10178 the sender is set with `-f'.
1681ead6 10179
fdf4b680
DL
101802000-06-13 Dave Love <fx@gnu.org>
10181
9c50afce
DL
10182 * help.el (describe-function-1): Kluge around cases of functions
10183 fset to subrs whose doc doesn't match their symbol-name.
10184
0ad550ba 10185 * image.el (insert-image): Default STRING to a space.
f290ca08 10186
fdf4b680 10187 * info.el Doc fixes.
5d80cc9c 10188 (Info-build-node-completions): Match Ref tags.
fdf4b680 10189
9b6610db
EZ
101902000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
10191
a704139d
EZ
10192 * frame.el (display-multi-frame-p, display-multi-font-p): New
10193 defaliases for display-graphic-p.
10194
9b6610db
EZ
10195 * hl-line.el: Fixed a typo in commentary.
10196
7a5ea398
KH
101972000-06-13 Kenichi Handa <handa@etl.go.jp>
10198
10199 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
10200 fixed.
10201
0dc91c57
DL
102022000-06-12 Dave Love <fx@gnu.org>
10203
10204 * image.el (insert-image): Save a little consing.
10205
0bd5914b
KH
102062000-06-12 Kenichi Handa <handa@etl.go.jp>
10207
10208 * language/tibet-util.el: Convert all tibetan-1-column characters
10209 to the corresponding tibetan characters.
10210 (tibetan-add-components): Delete code for the special treatment of
10211 'a chung.
10212
10213 * language/tibetan.el (tibetan-composable-pattern): Fix previous
10214 change.
10215 (tibetan-vowel-transcription-alist): More rules added.
10216 (tibetan-composite-vowel-alist): New variable.
10217 (tibetan-precomposition-rule-alist): More rules added.
10218
6dc7d3d5
SM
102192000-06-12 Stefan Monnier <monnier@cs.yale.edu>
10220
9c04c393
SM
10221 * startup.el (command-line): Only call menu-bar-mode if interactive.
10222
10223 * thingatpt.el (toplevel symbol-properties):
10224 * textmodes/makeinfo.el (makeinfo-compile):
10225 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
5d80cc9c 10226 * progmodes/hideif.el (hif-compress-define-list)
9c04c393 10227 (hide-ifdef-use-define-alist):
5d80cc9c 10228 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
9c04c393
SM
10229 (ange-ftp-vms-add-file-entry):
10230 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
10231 * man.el (Man-build-man-command):
10232 * mail/rnewspost.el (news-reply-header-hook):
10233 * info.el (Info-insert-dir):
10234 * emulation/mlconvert.el (backward-word, forward-word, setq):
10235 * emacs-lisp/gulp.el (gulp-send-requests):
5d80cc9c
SS
10236 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
10237 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
9c04c393
SM
10238 (byte-optimize-apply, end of file):
10239 * emacs-lisp/advice.el (ad-advice-class-completion-table)
10240 (ad-make-freeze-definition):
10241 * startup.el (command-line, command-line-1): Don't quote lambdas.
10242
6dc7d3d5
SM
10243 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
10244 (cvs-cleanup-removed): New function.
10245 (cvs-cleanup-functions): New var.
10246 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
10247 some flexibility in specifying additional entries to auto-cleanup.
10248 (cvs-quickdir): New function.
10249 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
10250 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
10251 (cvs-mode-find-file): Check that we are on a filename or dirname
10252 when invoked through a mouse-click.
10253 (cvs-full-path): Remove.
10254 (cvs-dired-action): Re-introduced.
10255 (cvs-dired-noselect): Use it.
10256 (vc-post-command-functions): use this new hook if available.
10257
10258 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
10259 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
10260 (cvs-filename-map, cvs-dirname-map): Remove.
10261 (cvs-default-action): Remove.
10262 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
10263 if the arg is really a keymap.
10264 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
10265 Don't hardcode the mapping from state (aka type) to face, but check
10266 the var cvs-fi-<type>-face instead.
10267 (cvs-fileinfo-from-entries): New function.
10268
10269 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
10270 Docstring fix.
10271 (cvs-find-file-and-jump): Change default to be safer.
10272 (cvs-mode-diff-map): Define it as a function as well.
10273 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
10274 Bind mouse-2 in this global map rather than with text-properties.
10275
10276 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
10277 file to resolve the ambiguity between C(conflict) and C(need-merge).
10278
5050a2ef
KH
102792000-06-12 Kenichi Handa <handa@etl.go.jp>
10280
10281 * international/mule.el (set-buffer-file-coding-system): If
10282 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
10283 unconditionally.
10284
35a7ac84
DL
102852000-06-12 Dave Love <fx@gnu.org>
10286
10287 * wid-edit.el (widget-specify-button): Really suppress the face if
10288 required.
10289
db8eeecd
GM
102902000-06-11 Gerd Moellmann <gerd@gnu.org>
10291
10292 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
10293
70223ca4
SM
102942000-06-11 Stefan Monnier <monnier@cs.yale.edu>
10295
10296 * imenu.el (imenu-generic-expression): Docstring fix.
10297
10298 * composite.el (composition-function-table): Move the `put'
10299 below the autoload cookie so we can load the file before loaddefs.
10300
10301 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
10302
10303 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
10304 Handle easy-mmode-define-global-mode.
10305 For complex macros like define-minor-mode that can generate
10306 several autoload entries, try to autoload entries in the
10307 macroexpanded code.
10308
10309 * emacs-lisp/easy-mmode.el (define-minor-mode):
10310 If KEYMAP is a symbol, just use it.
10311 Use byte-compile-current-file and load-file-name to infer the
10312 proper :require to pass to defcustom.
10313 Wrap the hook var into `progn' so as not to autoload it.
10314 Add a :autoload-end cookie.
10315 Be more careful about the evaluation of KEYMAP.
10316 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
10317 (define-derived-mode): Move define-abbrev-table outside of defvar.
10318
103192000-06-10 Stefan Monnier <monnier@cs.yale.edu>
10320
10321 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
10322 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
10323 (backup-compiled-files): Ignore errors during `tar'.
10324 (bootstrap): Make autoloads before elc files.
10325
9c53b34e
KH
103262000-06-10 Kenichi Handa <handa@etl.go.jp>
10327
10328 * international/mule.el (set-buffer-file-coding-system): If one of
5d80cc9c 10329 undecided-XXX is specified, change only EOL conversion.
9c53b34e
KH
10330
10331 * international/mule-conf.el (unix): New alias for the coding
10332 system undecided-unix.
10333
22ddd299
DL
103342000-06-09 Dave Love <fx@gnu.org>
10335
5ee42746
DL
10336 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
10337
70223ca4 10338 * progmodes/executable.el: Byte compile dynamic.
22ddd299
DL
10339 (executable-insert): Change custom type.
10340 (executable-find): Add autoload cookie.
cc7e1d18
DL
10341 (executable-make-buffer-file-executable-if-script-p): New
10342 function. After Noah Friedman.
22ddd299
DL
10343
10344 * files.el (after-save-hook): Customize, with
cc7e1d18 10345 executable-make-buffer-file-executable-if-script-p as an option.
22ddd299 10346
41ea3794
KH
103472000-06-09 Kenichi Handa <handa@etl.go.jp>
10348
f89437e3
KH
10349 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
10350 "tib24p-mule.bdf" for Tibetan.
10351
7a4ee259
KH
10352 * composite.el (decompose-composite-char): Declare it as obsolete.
10353
ff6a65c2
KH
10354 * man.el (Man-fontify-manpage): Pay attention to underline and
10355 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
41ea3794 10356
f83fe4b4
GM
103572000-06-08 Gerd Moellmann <gerd@gnu.org>
10358
10359 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
10360 Set maintainer to FSF since author isn't reachable.
10361
e56d7900
DL
103622000-06-08 Dave Love <fx@gnu.org>
10363
10364 * international/mule-cmds.el (select-safe-coding-system): If
10365 DEFAULT-CODING-SYSTEM is not specified, also check the most
10366 preferred coding-system if buffer-file-coding-system is
10367 `undecided'. From Handa.
10368
d3981b49
KH
103692000-06-08 Kenichi Handa <handa@etl.go.jp>
10370
10371 * international/mule.el
10372 (after-insert-file-set-buffer-file-coding-system): If the buffer
10373 size is greater than INSERTED, judget that we are not visiting.
10374
bff71087
RV
103752000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
10376
10377 * whitespace.el (defgroup whitespace): Comment out `:version'.
10378 XEmacs 20.4 has problems defining the group with this present.
10379 We'll have this commented out till get resolve the problem.
10380
fd9ac94c 103812000-06-07 John Wiegley <johnw@gnu.org>
e04d21aa 10382
fd9ac94c
GM
10383 * align.el (align-dq-string-modes, align-sq-string-modes)
10384 (align-open-comment-modes): Add pyhton-mode.
10385 (align-rules-list): Use get-text-property instead of
10386 text-properties-at.
10387 (align-rules-list): Add python-assignment.
10388 (align-rules-list): Change perl-comma-delimiter to
10389 basic-comma-delimiter. Use if for Perl modes and python-mode.
10390 (align-rules-list): Add python-chain-logic and
10391 basic-line-continuation.
45f485a6
GM
10392
103932000-06-07 Jari Aalto <jari.aalto@poboxes.com>
10394
10395 * apropos.el (apropos-mode-hook): New user variable.
10396 (apropos-mode): Run apropos-mode-hook.
bff71087 10397
45f485a6
GM
103982000-06-07 David Ponce <david@dponce.com>
10399
10400 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
10401 commands. Require `wid-edit' at run-time.
10402
104032000-06-07 David Ponce <david@dponce.com>
10404
10405 * recentf.el: Added some "Commentary".
10406 (recentf-open-more-files, recentf-edit-list): Minor changes to
10407 move the point at the top of the file list. This behaviour is
10408 consistent with the menu one when the list contains a lot of
10409 files.
10410 (recentf-cleanup): Now displays the number of items removed from
10411 the list.
10412 (recentf-relative-filter) New menu filter to show filenames
10413 relative to `default-directory'.
bff71087 10414
45f485a6
GM
104152000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10416
10417 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
10418 with/without giving an error if PostScript printer doesn't have this
10419 kind of page size. Zebra Stripe continues or restarts on next page.
10420 Manual/automatic paper feeding. Switch or not the header.
10421 (ps-print-version): New version number (5.2.2).
10422 (ps-windows-system): Include emx as a Windows system.
10423 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
10424 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
10425 (ps-background-text): Code fix.
10426 (ps-error-handler-message, ps-user-defined-prologue)
10427 (ps-print-prologue-header, ps-printer-name)
10428 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
10429 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
10430 (ps-use-face-background): Customization fix.
10431 (ps-n-up-database): Data fix.
10432 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
10433 (ps-switch-header): New vars.
10434 (ps-xemacs-color-name, ps-face-foreground-name)
10435 (ps-face-background-name, ps-boolean-constant): New funs.
10436
c14dcd22
DL
104372000-06-07 Dave Love <fx@gnu.org>
10438
10439 * allout.el: New version from Manheimer.
10440
e4044bb0
KH
104412000-06-07 Kenichi Handa <handa@etl.go.jp>
10442
10443 * textmodes/fill.el (fill-find-break-point): Check the validity of
10444 charset.
10445
59cfe8b9
KF
104462000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10447
10448 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
10449 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
10450 Call display-color-p and display-mouse-p instead of looking at
10451 window-system.
10452
bb2337f5
DL
104532000-06-06 Dave Love <fx@gnu.org>
10454
10455 * image.el (find-image): Doc fix. Return nil if image not found.
10456 (put-image, insert-image): Make STRING arg optional.
10457
8e624fa2
KH
104582000-06-06 Kenichi Handa <handa@etl.go.jp>
10459
10460 * language/vietnamese.el: Remove eval-when-compile.
10461 (viet-viscii-nonascii-translation-table): Define it as a
10462 translation table made from viet-viscii-decode-table.
10463 (viet-viscii-encode-table): Define it as a translation table made
10464 from the reverse map of above.
10465 (viet-vscii-nonascii-translation-table): Define it as a
10466 translation table made from viet-vscii-decode-table.
10467 (viet-vscii-encode-table): Define it as a translation table made
10468 from the reverse map of above.
10469 (ccl-decode-viscii): Use translate-character.
10470 (ccl-encode-viscii, ccl-encode-viscii-font)
10471 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
10472 Likewize.
bff71087 10473
8e624fa2
KH
10474 * language/cyrillic.el: Remove eval-when-compile.
10475 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
10476 translation table made from cyrillic-koi8-r-decode-table.
10477 (cyrillic-koi8-r-encode-table): Define it as a translation table
10478 made from the reverse map of above.
10479 (ccl-decode-koi8): Use translate-character.
10480 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
10481 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
10482 a translation table made from cyrillic-alternativnyj-decode-table.
10483 (cyrillic-alternativnyj-encode-table): Define it as a translation
10484 table made from the reverse map of above.
10485 (ccl-decode-alternativnyj): Use translate-character.
10486 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
10487 Likewize
10488
10489 * international/mule-diag.el (non-iso-charset-alist): Specify
10490 translation table symbol instead of translation table itself.
10491 (list-block-of-chars): CHARSET may be a translation table symbol.
10492
10493 * international/mule.el (make-coding-system): If CODING-SYSTEM
10494 already exists, override it.
10495
10496 * international/fontset.el: Use family `proportional' for Tibetan
10497 fonts.
10498
10499 * international/ccl.el (ccl-compile-translate-character): Don't
10500 check if Rrr has property translation-table.
10501 (ccl-compile-map-multiple): Modified to avoid compiler warning.
10502
1969fae2
GM
105032000-06-05 Gerd Moellmann <gerd@gnu.org>
10504
10505 * info.el: Bind case-fold-search to t when searching in case
10506 a user sets it to nil in a hook.
10507
d5b037c5
SM
105082000-06-05 Stefan Monnier <monnier@cs.yale.edu>
10509
d3d02e65
SM
10510 * autoarg.el (autoarg-mode, autoarg-kp-mode):
10511 * hl-line.el (hl-line-mode): Use the new :global key argument.
10512
10513 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
10514 (tar-clip-time-string): Prepend a space.
10515 (tar-grind-file-mode): Construct a string rather than modifying one.
10516 (tar-header-block-summarize): Fix docstring.
10517 Use `format' rather than an error-prone set of copy-loops.
10518
10519 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
10520 (diff-goto-source, diff-unified->context, diff-context->unified)
10521 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
10522 understand the format output by the `-p' argument to diff.
10523
bff71087 10524 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
d3d02e65
SM
10525 (sh-re-done): Use defconst.
10526 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
10527 (sh-help-string-for-variable, sh-guess-basic-offset):
10528 Don't quote lambdas.
10529 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
10530 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
10531
f7c4478f
SM
10532 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
10533 (mh-letter-mode): Derive from text-mode.
10534 This implicitly means that it now calls kill-all-local-variables.
10535 Also remove the Emacs-18 compatibility code.
10536
a8add29d
SM
10537 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
10538 Make use of symbol-property doc-string-elt.
10539 Use memq rather than a sequence of eq.
10540 (doc-string-elt): Fix the wrong or missing previously unused values.
10541 (autoload-print-form): New function extracted from
10542 generate-file-autoloads to allow recursion when handling progn
10543 so that defvar's and defun's docstrings are properly printed.
10544 (generate-file-autoloads): Use it.
10545
d5b037c5
SM
10546 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
10547 Use find-file-hooks in the minor-mode function.
10548 Be careful not to loop indefinitely in the post-command-hook function.
10549
560ef11a 105502000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
bff71087 10551
1969fae2 10552 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
560ef11a 10553 tty's.
1969fae2 10554 * ediff-diff.el (ediff-exec-process): Use --binary for fine
d5b037c5 10555 differences whenever appropriate.
1969fae2
GM
10556 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
10557 * viper.el (find-file, find-file-other-window): Get viper to do
bff71087
RV
10558 wildcards.
10559
b5bbbb76
SM
105602000-06-04 Stefan Monnier <monnier@cs.yale.edu>
10561
d5b037c5
SM
10562 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
10563 (jit-lock-fontify-buffer): New function for JIT refontification.
10564 (jit-lock-mode): Fix docstring.
10565 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
10566 Remove jit-lock-after-change from the _local_ hook.
10567 (jit-lock-function-1): Fix docstring.
10568
10569 * info.el (Info-on-current-buffer): Initialize info.
10570
10571 * newcomment.el (comment-indent): Ignore comment-indent-hook.
10572
10573 * progmodes/tcl.el (tcl-indent-for-comment):
10574 Ignore comment-indent-hook.
10575
10576 * emacs-lisp/easy-mmode.el: Require CL during compilation.
10577 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
b5bbbb76
SM
10578 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
10579 and improve to use the lighter to guess the capitalization.
10580 (define-minor-mode): Inline code from easy-mmode-define-toggle.
10581 Add keyword arguments to specify global-ness or the custom group.
10582 Add local-map and help-echo properties to the lighter.
10583 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
d5b037c5 10584 (easy-mmode-define-global-mode): New macro.
b5bbbb76 10585
bfa6c260
DL
105862000-06-02 Dave Love <fx@gnu.org>
10587
10588 * wid-edit.el: byte-compile-dynamic since we typically don't use
10589 all the widgets. Don't require cl or widget. Remove
10590 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
10591 (widget-read-event): Removed. Callers changed to use read-event.
10592 (widget-button-release-event-p): Renamed from
10593 button-release-event-p.
10594 (widget-field-add-space, widget-field-use-before-change):
10595 Uncustomize.
10596 (widget-specify-field): Use keymap property, not local-map.
10597 (widget-specify-button): Obey :suppress-face.
10598 (widget-specify-insert): Use modern backquote syntax.
10599 (widget-image-directory): Renamed from widget-glyph-directory.
10600 (widget-image-enable): Renamed from widget-glyph-enable.
10601 (widget-image-find): Replaces widget-glyph-find.
10602 (widget-button-pressed-face): Move defvar.
10603 (widget-image-insert): Replaces widget-glyph-insert.
10604 (widget-convert): Use keywordp.
10605 (widget-leave-text, widget-children-value-delete): Use mapc.
10606 (widget-keymap): Remove XEmacs stuff.
b5bbbb76 10607 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
bfa6c260
DL
10608 (widget-button-click): Don't set point at the click, but re-centre
10609 if we scroll out of window. Rewritten for images v. glyphs &c.
10610 (widget-tabable-at): Use POS arg, not point.
10611 (widget-beginning-of-line, widget-end-of-line)
10612 (widget-item-value-create, widget-sublist, widget-princ-to-string)
10613 (widget-sexp-prompt-value, widget-echo-help): Simplify.
10614 (widget-default-create): Use widget-image-insert; some rewriting.
10615 (widget-visibility-value-create)
10616 (widget-push-button-value-create, widget-toggle-value-create): Use
10617 widget-image-insert.
10618 (checkbox): Create on and off images dynamically.
10619 (documentation-link): Change :help-echo.
10620 (widget-documentation-link-echo-help): Remove.
10621
3837de12
SM
106222000-06-02 Stefan Monnier <monnier@cs.yale.edu>
10623
10624 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
10625
10626 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
10627 (easy-mmode-define-toggle, define-minor-mode): Use it.
10628 (easy-mmode-define-keymap): Docstring fix.
10629 (define-derived-mode): Default PARENT to fundamental-mode.
10630 Add the derived-mode-parent symbol-property.
10631 (easy-mmode-derived-mode-p): New function.
10632
90aa4ea8
DL
106332000-06-02 Dave Love <fx@gnu.org>
10634
37193ee6
DL
10635 * files.el (convert-standard-filename): Doc fix.
10636 (normal-backup-enable-predicate): New function.
10637 (backup-enable-predicate): Use it to replace the lambda form.
10638
10639 * calendar/todo-mode.el: [This needs more work on the outline
10640 stuff.] Doc fixes.
10641 (todo) <defgroup>: Add :version.
10642 (todo-add-category): Don't use pushnew.
10643 (todo-cmd-raise): Fix typo.
10644 (todo-top-priorities): Change temp buffer name.
10645 (todo-category-alist): Avoid redundant lambda.
3837de12
SM
10646 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
10647 Use outline-next-heading.
37193ee6 10648
90aa4ea8
DL
10649 * autoarg.el: Rewritten to use define-minor-mode.
10650 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
10651 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
10652
2e54623a
KH
106532000-06-02 Kenichi Handa <handa@etl.go.jp>
10654
10655 * isearch.el (isearch-other-meta-char): Fix previous change.
10656
c5def0db
SM
106572000-06-01 Stefan Monnier <monnier@cs.yale.edu>
10658
3837de12
SM
10659 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
10660 (log-edit-done): Only add the comment to the ring if it's different
10661 from the last comment entered.
10662
c5def0db
SM
10663 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
10664
2330c9d4
DL
106652000-06-01 Dave Love <fx@gnu.org>
10666
10667 * hl-line.el: Rewritten using define-minor-mode.
10668
10669 * help.el (describe-function-1): Distinguish special form from
10670 builtin function. Sanity-check presence of arglist for builtins.
10671
6e5dfc31
KH
106722000-06-01 Kenichi Handa <handa@etl.go.jp>
10673
4dc1225b
KH
10674 * international/characters.el: Fix syntax/category setting of
10675 Tibetan characters.
10676
10677 * language/tibet-util.el (tibetan-add-components): Fixes for new
10678 encoding of Tibetan characters.
10679 (tibetan-decompose-precomposition-alist): New variable.
10680 (tibetan-decompose-region): Convert precomposed characters to
10681 non-precomposed characters.
10682 (tibetan-decompose-string): Likewise.
10683 (tibetan-composition-function): Fix args to
10684 thibetan-compose-string.
10685
10686 * language/tibetan.el (tibetan-composable-pattern): More
10687 characters included.
10688 (tibetan-consonant-transcription-alist): Rule for "R" added.
10689 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
10690 "+R" added.
10691 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
10692
eadef5e6
KH
10693 * language/lao-util.el (lao-composition-function): Fix args to
10694 compose-string.
10695
10696 * language/thai-util.el (thai-composition-function): Fix args to
10697 compose-string.
10698
6e5dfc31 10699 * isearch.el (isearch-update): Set disable-point-adjustment to t
6389e4ab
KH
10700 to prevent the point moving to the end of a composition when a
10701 part of a composition is searched.
6e5dfc31
KH
10702 (isearch-other-meta-char): If the key invoking this command can be
10703 mapped by function-key-map to a printing char, call
10704 isearch-process-search-char directly.
10705
2598a293
SM
107062000-06-01 Stefan Monnier <monnier@cs.yale.edu>
10707
10708 * emacs-lisp/bytecomp.el:
10709 * frame.el:
10710 * international/mule-cmds.el:
10711 * international/mule-util.el:
10712 * international/mule.el:
10713 * mouse.el:
10714 * subr.el:
10715 * faces.el: Update calls to make-obsolete with a WHEN argument.
10716
10717 * byte-run.el (make-obsolete, make-obsolete-variable):
10718 Add an optional WHEN argument and change the format of the
bff71087 10719 symbol-property information.
2598a293
SM
10720 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
10721 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
10722 new obsolete-symbol-property format and print WHEN if it is provided.
10723
28d8dff1
DL
107242000-05-31 Dave Love <fx@gnu.org>
10725
10726 * loadhist.el (loadhist-hook-functions): Remove
10727 before-change-function, after-change-function.
10728 (unload-feature): Deal with symbols which are both bound and
10729 fbound.
10730
10731 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
10732 before-change-function, after-change-function.
10733
10734 * simple.el (newline): Don't bind before-change-function,
10735 after-change-function.
10736
7f565d87
RV
107372000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
10738
10739 * whitespace.el (whitespace-rescan-timer-time): Update interval
10740 set to 600 seconds (10 minutes) instead of 60 seconds since
10741 a large number of whitespace buffers causes emacs to `freeze'
10742 for a considerable amount of time.
10743
bff71087 10744 * whitespace.el: Updated email address
7f565d87 10745
a8d693d8
DL
107462000-05-31 Dave Love <fx@gnu.org>
10747
10748 * add-log.el (change-log-font-lock-keywords) <function>: Add
10749 pattern for function of change.
10750 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
10751 acknowledgements patterns.
10752
a50192e7
KH
107532000-05-31 Kenichi Handa <handa@etl.go.jp>
10754
10755 * isearch.el (isearch-printing-char): If keyboard coding system is
10756 being used, call isearch-process-search-multibyte-characters.
10757
10758 * international/isearch-x.el: Mostly rewritten.
10759
10760 * international/quail.el (quail-start-conversion): Don't include
10761 unhandled events in the returned events, but set them in
10762 unread-command-events. Exit if all inputs are deleted.
10763
7e492772
JR
107642000-05-30 Jason Rumney <jasonr@gnu.org>
10765
10766 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
10767
10768 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
10769 Reenable code to create initial fontsets.
10770 Use set-fontset-font in place of put-charset-property.
10771
10fc3187
GM
107722000-05-30 Gerd Moellmann <gerd@gnu.org>
10773
79148ea7
GM
10774 * progmodes/perl-mode.el (perl-indent-line): When looking for a
10775 label, ensure that the first colon isn't followed by another.
10776
10777 * paths.el (Info-default-directory-list): Doc fix.
10778
086d5b87
GM
10779 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
10780 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
10781 send a query containing USER only, not USER@HOST.
10782
10fc3187
GM
10783 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
10784 and rmail-msgend to compute the restriction at the end, instead of
10785 computing it.
10786
49e70dec
GM
107872000-05-29 Gerd Moellmann <gerd@gnu.org>
10788
66254a13
GM
10789 * dabbrev.el (dabbrev-expand): Don't display messages in the
10790 echo area if the minibuffer window is active.
10791
49e70dec
GM
10792 * jit-lock.el (jit-lock-mode): Add after change function to
10793 local hook.
10794
107952000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
10796
10797 * antlr-mode.el: New commands: hide/unhide actions,
10798 upcase/downcase literals.
10799 (antlr-tiny-action-length): New user option.
10800 (antlr-hide-actions): New command. Suggested by
10801 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
7f565d87 10802 (antlr-mode-map): New binding [C-c C-v].
49e70dec
GM
10803 (antlr-mode-menu): New entries.
10804 (antlr-downcase-literals): New command.
10805 (antlr-upcase-literals): Ditto.
10806
10807 * antlr-mode.el: Minor changes: indendation, mode-name.
10808 (antlr-indent-line): Indent cpp directive at column 0.
10809 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
10810
10811 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
10812 (antlr-font-lock-additional-keywords): Workaround for intentional
10813 bug in XEmacs version of font-lock.
10814 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
10815 be used by a smarter version of `buffers-menu-grouping-function'.
10816
108172000-05-29 Gerd Moellmann <gerd@gnu.org>
10818
10819 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
10820 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
10821
49f93684
KH
108222000-05-29 Kenichi Handa <handa@etl.go.jp>
10823
10824 * international/encoded-kb.el
10825 (encoded-kbd-iso2022-designation-map): Pay attention to that
10826 charset-iso-final-char return -1 for eight-bit-control and
10827 eight-bit-graphic.
10828
5b1ae051
EZ
108292000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
10830
10831 * speedbar.el (speedbar-use-images, speedbar-update-flag)
10832 (speedbar-easymenu-definition-base): Use display-graphic-p where
10833 available, instead of window-system.
10834
a205e32a
EZ
108352000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
10836
10837 * international/codepage.el (cp-coding-system-for-codepage-1): Add
10838 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
10839 coding systems.
10840
dd854dc2
DL
108412000-05-26 Dave Love <fx@gnu.org>
10842
c88a85d5
DL
10843 * disp-table.el (standard-display-underline): Don't use
10844 internal-find-face.
10845
dd854dc2
DL
10846 * mail/reporter.el: Maintainer change. Doc fixes.
10847 (reporter-version): Deleted.
10848
10849 * emacs-lisp/elp.el: Maintainer change.
10850 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
10851
dc29aa6c
SM
108522000-05-26 Stefan Monnier <monnier@cs.yale.edu>
10853
10854 * add-log.el (add-change-log-entry): Merge the current entry with the
10855 previous one if the previous one is empty.
10856
ed62683d
DL
108572000-05-26 Dave Love <fx@gnu.org>
10858
4370a375
DL
10859 * loadhist.el (unload-feature): Fix interactive spec [from
10860 lijnzaad@ebi.ac.uk].
10861
ed62683d
DL
10862 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
10863 subr-arity to check primitives.
10864 (byte-compile-flush-pending, byte-compile-file-form-progn)
10865 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
10866 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
10867 mapcar.
10868
ba9f8f95
KH
108692000-05-26 Kenichi Handa <handa@etl.go.jp>
10870
0f3e0672
KH
10871 * international/fontset.el: Set family names of non-latin charsets
10872 in default fontset to "*".
10873
cebefb44
KH
10874 * international/mule-diag.el (print-fontset): Combine family part
10875 and registry part of the fontname by "-*-" instead of "-".
10876
ba9f8f95
KH
10877 * international/mule-cmds.el (encode-coding-char): Make strings
10878 multibyte before calling encode-coding-string.
10879
931d0724
SM
108802000-05-25 Stefan Monnier <monnier@cs.yale.edu>
10881
10882 * derived.el: Fix keywords.
8ccce2b0 10883 (define-derived-mode): Only define if needed.
931d0724
SM
10884
10885 * simple.el (fill-comment, comment-column, comment-start)
10886 (comment-start-skip, comment-end, comment-indent-function)
10887 (block-comment-start, block-comment-end, indent-for-comment)
10888 (set-comment-column, kill-comment, comment-padding, comment-region)
10889 (comment-multi-line, indent-new-comment-line): Remove.
10890
10891 * bindings.el (esc-map): Change ; to comment-dwim and use the new
10892 function names for comment operations.
10893
10894 * newcomment.el: Add abundant autoload cookies.
10895 (comment-style): Don't depend on runtime data at compile-time.
10896 (comment-indent-hook): Remove.
10897 (comment-indent): Check if comment-indent-hook is bound.
10898 (comment-region): Docstring fix.
10899
6fc596cf
DL
109002000-05-25 Dave Love <fx@gnu.org>
10901
10902 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
10903 byte-code-function-p.
10904
10905 * mail/rmailsum.el: Add provide.
10906
10907 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
10908
10909 * smerge-mode.el (smerge-diff-switches): Don't use list* in
10910 defcustom.
10911
7997f1ca 109122000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
7f565d87 10913
7997f1ca
MK
10914 * ediff-diff.el (ediff-exec-process): delete --binary option from
10915 non-buffer ediff jobs.
7f565d87 10916
e7a903e8
EZ
109172000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10918
10919 * hilit-chg.el (highlight-changes-mode): Ask about color or
10920 grayscale support, not about window-system.
10921
10922 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
10923 window-system.
10924 (ffap-highlight): Always default to t.
10925
10926 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
10927 display-popup-menus-p instead of looking at window-system.
10928
10929 * disp-table.el (standard-display-g1, standard-display-graphic):
10930 Only refuse to use string glyphs on X and MS-Windows.
10931
10932 * avoid.el: Remove window-system from commentary, suggest to use
10933 display-*-p instead.
10934
10935 * apropos.el (apropos-print): Use display-mouse-p instead of
10936 window-system.
10937
14028d57
EZ
109382000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10939
10940 * international/codepage.el (cp-decoding-vector-for-codepage):
10941 Fill up unsupported characters with their own codes. From Kenichi
10942 Handa.
10943
1a4f9cc1
EZ
109442000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10945
10946 * international/mule-diag.el (describe-char-after): Use
10947 display-graphic-p instead of window-system, so that this function
10948 works on MS-DOS.
10949
89f6ca4e
EZ
109502000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
10951
10952 * international/codepage.el (cp-make-coding-systems-for-codepage):
10953 Remove the eight-bit-graphic and eight-bit-control charsets from
10954 the list of charsets which we convert into `?'.
10955
eacfd7fe
KH
109562000-05-25 Kenichi Handa <handa@etl.go.jp>
10957
10958 * international/mule-conf.el: Specify CHARSET-ID explicitely for
10959 private charsets.
10960 (mule-unicode-0100-24ff, japanese-jisx0213-1,
10961 japanese-jisx0213-2): New charsets.
10962
10963 * international/fontset.el: Setup default fontset for new charsets.
10964
deadf7e3
DL
109652000-05-24 Dave Love <fx@gnu.org>
10966
10967 * info.el (Info-find-node-2): Restructure [following "Vadim
10968 S. Solomin" <sovs@uic.nnov.ru>].
10969
10970 * icomplete.el: Fix header for Finder.
10971
109722000-05-24 Eric M. Ludlam <zappo@ultranet.com>
10973
10974 * rmailout.el (rmail-output-to-rmail-file): Added optional param
10975 STAY.
10976
10977 * rmail.el (rmail-automatic-folder-directives): New user variable.
10978 (rmail-show-message): Add call to `rmail-auto-file' during
10979 display.
10980 (rmail-auto-file): New function.
10981
6de3983f 109822000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
7f565d87 10983
fc6a6a4e 10984 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
6de3983f 10985 account.
fc6a6a4e
GM
10986 (ediff-test-utility,ediff-diff-mandatory-option)
10987 (ediff-reset-diff-options): Utilities for proper initialization of
6de3983f 10988 ediff-diff-options and ediff-diff3-options on Windows.
7f565d87 10989
fc6a6a4e 10990 * ediff-init.el (ediff-merge-filename-prefix): New customizable
6de3983f 10991 variable.
7f565d87 10992
fc6a6a4e 10993 * ediff-mult.el (ediff-filegroup-action): Use
6de3983f
MK
10994 ediff-merge-filename-prefix.
10995
fc290d1d
MK
109962000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
10997
fc6a6a4e 10998 * viper-ex.el (ex-write): Set selective display to nil.
7f565d87 10999
273182b8
EZ
110002000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
11001
11002 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
11003 aliases for hebrew-iso-8bit.
11004
f471ea57
EZ
110052000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
11006
11007 * woman.el: New version from Francis J. Wright
11008 <F.J.Wright@Maths.QMW.ac.uk>.
11009 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
11010 names in environment variables regardless of the path separator.
11011 (woman-topic-all-completions-1): Don't call file-name-directory-p
11012 on all files, since woman-file-regexp already filters out any
11013 directories.
11014
01162f24
KH
110152000-05-24 Kenichi Handa <handa@etl.go.jp>
11016
48e3df76
KH
11017 * international/quail.el (quail-start-translation): Don't change
11018 modified-p of the current buffer.
11019 (quail-start-conversion): Likewise.
11020
11021 * international/kkc.el (kkc-region): Don't change modified-p of
11022 the current buffer.
11023
747d90ea
KH
11024 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
11025 conform to RFC1468.
11026 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
01162f24 11027
17a223ff
EL
110282000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
11029
11030 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
11031 (speedbar-insert-button): Invisible text property fix.
11032 (speedbar-directory-plus): Renamed from speedbar-directory-+
11033 (speedbar-directory-minus): Renamed from speedbar-directory--
11034 (speedbar-page-plus): Renamed from speedbar-file-+
11035 (speedbar-page-minus): Renamed from speedbar-file--
11036 (speedbar-page): Renamed from speedbar-file-
11037 (speedbar-tag): Renamed from speedbar-tag-
11038 (speedbar-tag-plus): Renamed from speedbar-tag-+
11039 (speedbar-tag-minus): Renamed from speedbar-tag--
11040 (speedbar-expand-image-button-alist): Use above renames.
11041
11042 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
11043 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
11044 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
11045 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
11046 * sb-pg.xpm: Renamed from sb-file.xpm
11047 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
11048 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
7f565d87 11049
e6b6fc18
KH
110502000-05-24 Kenichi Handa <handa@etl.go.jp>
11051
11052 * international/quail.el (quail-show-guidance-buf): Set
11053 current-input-method of the guidance buffer to the name of the
11054 curren input method.
11055
a1a336eb
SM
110562000-05-23 Stefan Monnier <monnier@cs.yale.edu>
11057
11058 * progmodes/compile.el (compile-internal): Style typo.
11059
11060 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
11061 quote vars and functions in the docstring.
11062
11063 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
11064
11065 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
11066 Don't quote lambdas.
11067
11068 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
11069
9695b783
GM
110702000-05-23 Gerd Moellmann <gerd@gnu.org>
11071
716e3b88
GM
11072 * startup.el (command-line): Determine source file of compiled
11073 user init file differently. Warn if compiled user init file
11074 is older than its source file.
11075
9695b783 11076 * ffap.el (ffap-url-regexp): Add `https'.
7f565d87 11077
41ac433f
EZ
110782000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
11079
11080 * files.el (make-backup-file-name-1): Replace slashes with `!'
11081 rather than `|' (which is not allowed on Windows). Replace the
11082 drive letters with a string "drive_X".
11083
46600ab1
GM
110842000-05-23 Gerd Moellmann <gerd@gnu.org>
11085
11086 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
11087
11088 * files.el (interpreter-mode-alist): Add `bash2'.
11089
79a64d87
DL
110902000-05-22 Dave Love <fx@gnu.org>
11091
11092 * loadhist.el (feature-symbols, file-provides, file-requires): Use
11093 mapc.
11094 (feature-file): Avoid calling symbol-name. Doc fix.
11095 (file-set-intersect, file-dependents): Use dolist, not mapcar.
11096 (loadhist-hook-functions): Add mouse-position-function.
11097 (unload-feature): Change uses of mapcar.
11098
11099 * files.el (parse-colon-path): Doc fix.
11100 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
11101 (set-auto-mode): Use mapc.
11102
11103 * complete.el (PC-look-for-include-file): Use :alnum: character
11104 class.
11105 (partial-completion-mode): Add autoload cookie.
11106
0e8c11d8
SS
111072000-05-22 Sam Steingold <sds@gnu.org>
11108
ce75fd23 11109 * info.el (Info-fontify-node): Fixed the call to
0e8c11d8
SS
11110 `add-text-properties' (bug introduced on 2000-05-18).
11111
d8d0fa6c
DL
111122000-05-22 Dave Love <fx@gnu.org>
11113
11114 * bindings.el: Remove debug-ignored-errors set in other files.
11115
11116 * progmodes/etags.el: Add to debug-ignored-errors.
11117 (visit-tags-table-buffer): Clear out buffers holding old tables
11118 when making a new list.
11119 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
11120 mapc.
11121
11122 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
11123 quote keywords.
11124 (cmpl-string-case-type): Use character classes.
11125
0e8c11d8
SS
11126 * comint.el:
11127 * textmodes/ispell.el:
11128 * imenu.el:
d8d0fa6c
DL
11129 * mail/mh-e.el:
11130 * progmodes/compile.el: Add to debug-ignored-errors.
11131
11132 * dabbrev.el: Add to debug-ignored-errors.
11133 (dabbrev-completion): Use mapc.
11134
1edbbf8a
EZ
111352000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
11136
11137 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
11138 (woman-mapcan, woman-parse-man.conf)
11139 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
11140 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
11141 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
11142 path syntax better.
11143 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
11144 (woman-manpath): Call woman-parse-man.conf.
11145 (woman-emulation): New defcustom, defaults to nroff.
11146 (woman-font-support): New defconst.
11147 (woman-use-symbol-font): New defcustom.
11148 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
11149 "Emulation".
11150 Many functions: Doc fix.
11151
5bd2148c
KH
111522000-05-22 Kenichi Handa <handa@etl.go.jp>
11153
11154 * international/quail.el (quail-simple-translation-keymap): Map
11155 128..255 to quail-self-insert-command.
11156 (quail-keyboard-layout-alist): Add definition for "pc102-de".
11157
4125ec7e
SM
111582000-05-22 Stefan Monnier <monnier@cs.yale.edu>
11159
a1a336eb
SM
11160 * help.el (help-manyarg-func-alist): Typo.
11161
40aeecad
SM
11162 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
11163 intervals which makes it heaps simpler.
11164
4125ec7e
SM
11165 * newcomment.el (comment-region-internal): Go back to BEG after quoting
11166 the nested comment markers.
e4da9c1c
SM
11167
11168 * subr.el (remove-hook): Don't turn the hook's value into a list.
11169
cb7216a7
DL
111702000-05-21 Dave Love <fx@gnu.org>
11171
ac266581
DL
11172 * edmacro.el (edmacro-parse-keys): Return vector if any elements
11173 are invalid characters.
11174
cb7216a7
DL
11175 * international/mule-util.el (detect-coding-with-priority): Use
11176 mapc. Remove redundant lambda.
11177
11178 * international/mule-diag.el (list-non-iso-charset-chars)
11179 (describe-fontset): Remove redundant lambda.
11180
11181 * emulation/crisp.el (brief-mode): New alias.
11182
11183 * emacs-lisp/ring.el (ring-elements): New function.
11184
11185 * emacs-lisp/easymenu.el (easy-menu-create-menu)
11186 (easy-menu-do-add-item): Use keywordp.
11187
11188 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
11189
11190 * replace.el: Doc and error message fixes.
11191 (replace-highlight): Use facep, not internal-find-face.
11192
9b0d1d6e
SM
111932000-05-20 Stefan Monnier <monnier@cs.yale.edu>
11194
b2d2cf58
SM
11195 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
11196
ffe7dc64
SM
11197 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
11198 (log-edit-insert-changelog): Drop `:' as well.
11199
11200 * log-view.el: Fix file description.
11201 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
11202 available.
11203 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
11204 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
11205
c8c21615
SM
11206 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
11207 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
11208 Print a status message if the toggle is called interactively.
11209 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
11210 for global minor modes and use `defcustom' for them.
11211 Use add-minor-mode.
11212 (easy-mmode-define-derived-mode): Remove.
11213 (define-derived-mode): Fancier default docstring.
11214 (easy-mmode-define-navigation): Signal an error rather than (ding).
11215
9b0d1d6e
SM
11216 * newcomment.el (comment-styles): New `box-multi'.
11217 (comment-normalize-vars): Better default for comment-continue to
11218 avoid whitespace-only continuations.
11219 (comment-search-forward): Always move even in the no-syntax case.
11220 (comment-padright): Only obey N if it's only obeyed for padleft.
11221 (comment-make-extra-lines): Better handling of empty continuations.
11222 Use `=' for the filler if comment-start has only one character.
11223 (uncomment-region): Try handling the special `=' filler.
11224 (comment-region): Allow LINES even if MULTI is nil.
11225 (comment-box): Choose box style based on comment-style.
11226
f5ee6d0f
KH
112272000-05-20 Kenichi Handa <handa@etl.go.jp>
11228
9b0d1d6e 11229 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
f5ee6d0f
KH
11230 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
11231
c9671f81
KH
112322000-05-20 Kenichi HANDA <handa@etl.go.jp>
11233
11234 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
11235 and insert, not subst-char-in-region.
11236
11237 * international/mule-diag.el (list-character-sets-1): Handle
11238 charsets eight-bit-control and eight-bit-graphic.
11239 (list-iso-charset-chars): Likewise.
11240 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
11241 charactes as is. Use indent-to to align characters.
11242
11243 * international/mule-cmds.el (find-multibyte-characters): Never
11244 exclude charsets eight-bit-control and eight-bit-graphic.
11245
1426aa5c
SM
112462000-05-19 Stefan Monnier <monnier@cs.yale.edu>
11247
11248 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
11249 Don't quote lambdas.
11250
11251 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
11252
2b63d473
GM
112532000-05-19 Gerd Moellmann <gerd@gnu.org>
11254
11255 * gud.el (gud-jdb-directories): Doc fix.
11256
f1355756
SM
112572000-05-19 Stefan Monnier <monnier@cs.yale.edu>
11258
11259 * newcomment.el: New file.
11260
5f64c9e0
GM
112612000-05-19 Gerd Moellmann <gerd@gnu.org>
11262
2b63d473 11263 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
5f64c9e0 11264
db7314bd
AS
112652000-05-18 Andreas Schwab <schwab@suse.de>
11266
11267 * dired.el (dired-between-files): Also skip lines beginning with
11268 `used'.
11269
25bb0401
GM
112702000-05-18 Gerd Moellmann <gerd@gnu.org>
11271
11272 * msb.el (msb-menu-cond): Add choice `user'.
11273
a199a865 112742000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
0e8c11d8 11275
a199a865
GM
11276 * ps-print.el: Compatibility, customization and doc fix.
11277 (ps-printer-name-option): Replace defconst by defvar.
11278 (ps-postscript-code-directory): XEmacs compatibility.
11279 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
11280 fix.
11281 (ps-user-defined-prologue, ps-print-prologue-header)
11282 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
11283 compatibility and code fix.
11284 (ps-print-background-image, ps-print-background-text):
11285 Customization fix.
11286 (ps-line-number-start, ps-n-up-on): New vars.
11287
25bb0401
GM
112882000-05-18 Espen Skoglund <esk@ira.uka.de>
11289
11290 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
11291 the indent-comment function to just return the appropriate indent.
11292
68e6c83a
EL
112932000-05-18 Eric M. Ludlam <zappo@ultranet.com>
11294
11295 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
11296 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
11297 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
11298
dae6cb9f
DL
112992000-05-18 Dave Love <fx@gnu.org>
11300
11301 * info.el (Info-fontify-node): Add intangible property as well as
11302 invisible.
11303
11304 * calendar/appt.el (appt-make-list): Match all lines of entry.
11305 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
11306
813086ea
KH
113072000-05-18 Kenichi Handa <handa@etl.go.jp>
11308
11309 * international/mule-diag.el (describe-char-after): Call
11310 internal-char-font, not char-font. If internal-char-font returns
11311 nil, display "-- none --".
11312
24978190
EZ
113132000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
11314
11315 * image.el (image-type-available-p): Don't reference image-types
11316 if it isn't bound.
11317
2fca2d5d
SM
113182000-05-17 Stefan Monnier <monnier@cs.yale.edu>
11319
11320 * autoarg.el (autoarg-mode): Typo in the :set argument.
11321
cfc75d05
EZ
113222000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
11323
11324 * startup.el (command-line-1): Don't signal an error if the
11325 directory for auto-save-list files does not yet exist.
11326
c4e30387
KH
113272000-05-17 Kenichi Handa <handa@etl.go.jp>
11328
11329 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
11330
dd6b8ea7
SM
113312000-05-16 Stefan Monnier <monnier@cs.yale.edu>
11332
11333 * subr.el (remove-hook): `setq' hook-value, not `set'.
11334
399c88ad
SS
113352000-05-16 Sam Steingold <sds@gnu.org>
11336
a199a865 11337 * info.el (debug-ignored-errors): More errors to ignore.
399c88ad 11338
01651f07
DL
113392000-05-16 Dave Love <fx@gnu.org>
11340
11341 * cus-edit.el: Don't require cl or easymenu.
11342 (custom-variable-prompt): Test standard-value property, not
11343 user-variable-p.
11344
2248c40d
SS
113452000-05-16 Sam Steingold <sds@gnu.org>
11346
11347 * subr.el (add-hook): `setq' hook-value, not `set'.
11348
b15f3b77
GM
113492000-05-16 Gerd Moellmann <gerd@gnu.org>
11350
11351 * startup.el (command-line-1): Mention the FAQ in the startup
11352 message.
11353
11354 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
11355
11356 * progmodes/compile.el (compilation-parse-errors): Collect
11357 `nomessage' regexps last.
11358
11359 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
11360
11361 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
11362 to the function name.
11363
f9bbcfac
EL
113642000-05-15 Dave Love <fx@gnu.org>
11365
11366 * speedbar.el (speedbar-recenter): Typo.
11367 (speedbar-expand-line): Make arg optional.
11368 (speedbar-mode): Avoid a compiler warning.
11369
119b42eb
GM
113702000-05-15 Gerd Moellmann <gerd@gnu.org>
11371
11372 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
11373 user-specified option string is empty.
11374
11375 * mouse.el (mouse-yank-at-click): Doc fix.
11376
f685bea9
EZ
113772000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
11378
11379 * term/internal.el (IT-character-translations): More updates of
11380 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
11381 documents.
11382
a1b8d58b
GM
113832000-05-15 Gerd Moellmann <gerd@gnu.org>
11384
11385 * env.el (getenv): New function, interactively callable.
11386 (setenv, getenv): Remove autoload cookies.
11387
11388 * loadup.el: Load `env'.
11389
11390 * progmodes/f90.el: Change author's mail address.
11391
c9bba7ed
DL
113922000-05-14 Dave Love <fx@gnu.org>
11393
e5c83697
DL
11394 * mail/rmail.el (rmail-show-message-hook): Customize and offer
11395 goto-addr as an option.
11396
11397 * help.el (help-xref-stack): Doc fix.
11398 (help-xref-following): New variable.
11399 (help-make-xrefs): Use it.
11400 (help-xref-go-back): Use position information from stack element.
11401 (help-follow): Make position in stack element a pair. Use
11402 help-xref-following.
399c88ad 11403
e5c83697
DL
11404 * autoarg.el: New file.
11405
11406 * faces.el: Declare more functions obsolete.
11407
c9bba7ed
DL
11408 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
11409 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
11410 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
11411 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
11412 Remove all the setup-...-environment functions.
11413
b6389bfb
EL
114142000-05-13 Eric M. Ludlam <zappo@ultranet.com>
11415
a1b8d58b
GM
11416 * speedbar.el: Updated the commentary section. xemacs20p now uses
11417 >= when detecting. Require `defimage' safely.
b6389bfb
EL
11418 (speedbar-easymenu-definition-base): Add toggle for images.
11419 (speedbar-easymenu-definition-special): Add flush cache & expand.
11420 (speedbar-visiting-tag-hook): Set new defaults. Added options.
11421 (speedbar-reconfigure-keymaps-hook): New variable.
11422 (speedbar-frame-parameters): Updated documentation.
11423 (speedbar-use-imenu-flag): Updated custom tag
11424 (speedbar-dynamic-tags-function-list): New variable.
11425 (speedbar-tag-hierarchy-method): Updated doc & custom.
a1b8d58b
GM
11426 (speedbar-indentation-width, speedbar-indentation-width) New
11427 variables.
11428 (speedbar-hide-button-brackets-flag): Customizable.
b6389bfb
EL
11429 (speedbar-vc-indicator): Doc update.
11430 (speedbar-ignored-path-expressions): Updated default value.
11431 (speedbar-supported-extension-expressions): Updated default value.
11432 (speedbar-syntax-table): Remove {} paren status.
a1b8d58b
GM
11433 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
11434 as "+". Added overlay aliases.
11435 (speedbar-mode): Use `speedbar-mode-line-update' instead of
11436 `force-mode-line-update'.
11437 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
11438 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
11439 `mouse-set-point'
b6389bfb 11440 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
a1b8d58b
GM
11441 (speedbar-item-info-tag-helper): Revamped to handle a wider range
11442 of arbitrary text, and new helper functions.
11443 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
11444 filename finder.
b6389bfb
EL
11445 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
11446 (speedbar-directory-buttons): Update path search/expansion.
11447 (speedbar-make-tag-line): Pay attention to
a1b8d58b
GM
11448 `speedbar-indentation-width'. Use more care w/ invisible
11449 properties.
b6389bfb
EL
11450 (speedbar-change-expand-button-char): Call
11451 `speedbar-insert-image-button-maybe'.
11452 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
a1b8d58b
GM
11453 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
11454 (speedbar-trim-words-tag-hierarchy)
11455 (speedbar-simple-group-tag-hierarchy): New functions
b6389bfb 11456 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
a1b8d58b
GM
11457 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
11458 functions.
b6389bfb
EL
11459 (speedbar-mouse-set-point): New function
11460 (speedbar-power-click): Updated documentation.
a1b8d58b
GM
11461 (speedbar-line-token, speedbar-goto-this-file): Handle more types
11462 of tag prefix text.
11463 (speedbar-expand-line, speedbar-contract-line): Make more robust
11464 to strange text.
11465 (speedbar-expand-line): Takes universal argument to flush the
11466 cache.
b6389bfb
EL
11467 (speedbar-flush-expand-line): New function.
11468 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
11469 Use new generator insertion method.
11470 (speedbar-fetch-dynamic-tags): New function.
11471 (speedbar-fetch-dynamic-imenu): Removed code now handled in
11472 `speedbar-fetch-dynamic-imenu'.
11473 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
11474 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
11475 "Revert Buffer" menu items.
11476 (speedbar-buffer-buttons-engine): Be smarter when creating a
11477 filename tag (for expansion purposes.).
a1b8d58b
GM
11478 (speedbar-highlight-one-tag-line,
11479 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
11480 (speedbar-recenter): New functions.
b6389bfb 11481 (defimage-speedbar): Image loading abstraction.
a1b8d58b
GM
11482 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
11483 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
11484 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
11485 (speedbar-tag-type, speedbar-tag-mail): New images.
b6389bfb
EL
11486 (speedbar-expand-image-button-alist): New variable.
11487 (speedbar-insert-image-button-maybe): Insert an image over some
11488 buttons.
11489
43fe9244
KH
114902000-05-13 Kenichi Handa <handa@etl.go.jp>
11491
11492 * international/mule-cmds.el (encode-coding-char): An ASCII
11493 character is always encodable.
11494
11495 * international/mule-conf.el: Add more information in descriptions
11496 of character sets.
11497
813086ea 11498 * international/mule-diag.el (describe-char-after): New function.
43fe9244
KH
11499 (describe-font-internal): Adjusted for the change of font-info.
11500 (describe-font): Likewise.
11501 (print-fontset): Rewritten for the new fontset implementation.
11502 (describe-fontset): Include fontset alias names in completion.
11503 (list-fontsets): Adjusted for the change of print-fontset.
11504
11505 * simple.el (what-cursor-position): If DETAIL is non-nil, call
11506 describe-char-after instead of displaying the detail in the echo
11507 area.
813086ea
KH
11508 (syntax-code-table): Format changed.
11509 (string-to-syntax): Adjusted for the above change.
0e8c11d8 11510
e8564f57
SM
115112000-05-12 Stefan Monnier <monnier@cs.yale.edu>
11512
11513 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
11514
9278c60d
DL
115152000-05-12 Dave Love <fx@gnu.org>
11516
11517 * calendar/todo-mode.el: Remove some compatibility stuff and CL
11518 dependence. Use line-{beginning,end}-position, not
11519 point-at{b,e}ol. Some doc fixes.
11520 (todo-position): New function. Fix callers of position to use it.
11521 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
11522
be0505fe
GM
115232000-05-12 Gerd Moellmann <gerd@gnu.org>
11524
11525 * time.el (display-time-mail-icon): Use `:ascent center'.
11526
a8a3541c
GM
11527 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
11528 handling FTP security extensions.
399c88ad 11529
44d5f148
DL
115302000-05-11 Dave Love <fx@gnu.org>
11531
33d0c179 11532 * calendar/todo-mode.el: New file.
44d5f148 11533
da4496b6
GM
115342000-05-11 Gerd Moellmann <gerd@gnu.org>
11535
cdc4401d
GM
11536 * comint.el (comint-read-input-ring): Move reference to
11537 comint-input-ring-size outside of the save-excursion. It was
11538 causing the default value to be the only one ever seen.
399c88ad 11539
0279f991
GM
11540 * font-lock.el: Update copyright. Remove Simon Marshall's email
11541 address on request from him.
11542
da4496b6
GM
11543 * subr.el (substitute-key-definition): Add comment describing
11544 the meaning of PREFIX.
11545
ac5cb26d
SM
115462000-05-10 Stefan Monnier <monnier@cs.yale.edu>
11547
11548 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
11549
11550 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
11551 (add-minor-mode): Don't make the variable buffer-local and add a
11552 reference to define-minor-mode in the docstring.
11553
11554 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
11555 HEADER/FOOTER and fix bug with trailing empty directory.
11556 (cvs-append-to-ignore): Use vc-editable-p if available.
11557 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
11558 (vc-do-command): Tweak advice to handle the new VC.
11559
11560 * log-view.el (log-view-goto-rev): New function for the new VC.
11561 (log-view-minor-wrap): Use mark-active.
11562
11563 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
11564 (log-edit-changelog-full-paragraphs): New var.
11565 (log-edit-insert-changelog): Remove a lonely leading `* file'.
11566 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
11567 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
11568 (log-edit-changelog-ours-p, log-edit-changelog-entries)
11569 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
11570 Replace the `cvs' prefix with `log-edit'.
11571
11572 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
11573
11574 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
11575 (diff-font-lock-defaults): Explicitly turn off multiline.
11576 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
11577 (diff-ediff-patch): Fix call to ediff-patch-file.
11578 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
11579 Handle comments.
11580
11581 * frame.el (automatic-hscrolling): Typo.
11582
11583 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
11584
21c34da3
DL
115852000-05-09 Sam Steingold <sds@goems.com>
11586
11587 * apropos.el (apropos-print): use `describe-face' instead of
11588 `customize-face-other-window'.
11589
950cf06f
DL
115902000-05-09 Dave Love <fx@gnu.org>
11591
11592 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
11593
11594 * help.el (describe-variable): Have customize button pop the
11595 help-xref stack when invoked.
11596 (help-xref-symbol-regexp): Add `face'.
11597 (help-make-xrefs): Check for quoted face names and adapt regexp
11598 submatch numbers to cope.
11599 (help-xref-interned): Maybe insert face doc too. Separate
11600 sections with a line of hyphens.
11601
0623e40f 11602 * faces.el: Some doc fixes. Declare some functions obsolete.
950cf06f
DL
11603 (describe-face): Add customize button. Return the help
11604 text. Fix prompt.
11605
82e2ca9d
EZ
116062000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
11607
11608 * term/internal.el (IT-character-translations): Fix last change.
11609
10c00b5c
EZ
116102000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
11611
11612 * woman.el: New file
11613 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
11614
9deed82f
EZ
116152000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
11616
001ad319
EZ
11617 * term/internal.el (IT-character-translations): Update ASCII
11618 simulations for greek-iso8859-7, add latin-iso8859-14 and
11619 latin-iso8859-15.
11620
9deed82f
EZ
11621 * international/mule-cmds.el (set-language-info-alist): Call
11622 define-prefix-command with 3 arguments, to make the map suitable
11623 for a menu.
11624
4f37b78a
DL
116252000-05-07 Dave Love <fx@gnu.org>
11626
1ec321a7 11627 * time.el: Small doc fixes from Pavel Jan\e,Am\e(Bk ml.
4f37b78a 11628
64a4c526
DL
116292000-05-05 Dave Love <fx@gnu.org>
11630
11631 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
11632 list in doc string. Don't quote keyword symbols.
11633 * emacs-lisp/cl.el: Likewise
11634 * emacs-lisp/cl-seq.el: Likewise
11635
056565f7
GM
116362000-05-05 Gerd Moellmann <gerd@gnu.org>
11637
11638 * abbrev.el (abbrev-mode): Make ARG optional.
11639
4656b314
GM
116402000-05-04 Gerd Moellmann <gerd@gnu.org>
11641
ec82fb2f
GM
11642 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
11643
11644 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
11645
4656b314
GM
11646 * subr.el (substitute-key-definition): Clarify documentation.
11647
116482000-05-04 Milan Zamazal <pdm@freesoft.cz>
11649
11650 * glasses.el (glasses-convert-to-unreadable): Use
11651 `glasses-separator' instead of the hard-wired "_".
11652 (glasses-mode): Call `glasses-make-unreadable' only in a single
11653 place.
11654
7b081c78
EZ
116552000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
11656
11657 * term/internal.el (cjk-codepages-alist): Add associations for
11658 Chinese and Korean codepages. Remove FIXME comment.
11659
baa5536e
DL
116602000-05-03 Dave Love <fx@gnu.org>
11661
11662 * time.el (display-time-mail-face, display-time-use-mail-icon):
11663 New option.
11664 (display-time-mail-icon): New variable.
11665 (display-time-string-forms): Use the above. Fix the local-map.
11666
cbf18892
GM
116672000-05-03 Gerd Moellmann <gerd@gnu.org>
11668
4ff40dd0
GM
11669 * replace.el (query-replace-map): Add binding for `E'.
11670 (query-replace-help): Extend help text.
11671 (perform-replace): Allow editing the replacement string.
11672
11673 * make-mode.el (makefile-mode-abbrev-table): New variable.
11674 (makefile-mode): Set local abbrev table to
11675 makefile-mode-abbrev-table.
11676 (makefile-font-lock-keywords): Fontify includes and conditionals.
399c88ad 11677
cbf18892
GM
11678 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
11679 set TOGGLE's value.
11680
4ff40dd0
GM
11681 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
11682 mail-interactive-insert-alias.
11683 (mail-abbrev-complete-alias): New command.
11684 (mail-mode-map): Bind it to `M-TAB'.
399c88ad 11685
ffec4d9f
KH
116862000-05-03 Kenichi Handa <handa@etl.go.jp>
11687
11688 * language/lao-util.el (lao-compose-region): New function.
11689
1b0672c3
GM
116902000-05-02 Gerd Moellmann <gerd@gnu.org>
11691
576da55d
GM
11692 * files.el (recover-session): Make directories as necessary
11693 if they don't exist yet.
11694
399c88ad
SS
11695 * calendar/cal-french.el
11696 (french-calendar-multibyte-special-days-array)
1b0672c3
GM
11697 (french-calendar-special-days-array): Change French text.
11698 (calendar-french-date-string): Change output.
11699 (calendar-goto-french-date): Likewise.
11700
117012000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
11702
11703 * wid-edit.el (widget-default-active): Obey `:always-active'.
11704 (widget-documentation-string-value-create): Set `:always-active'.
11705
4b33deaa
EZ
117062000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
11707
11708 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
11709 default prefix to `~/_emacs.d/auto-save.list/_s'.
11710 (normal-top-level): Create the directory for auto-save files, if
11711 it doesn't already exist (in the ms-dos case only).
11712
5c922ea7
EZ
117132000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
11714
11715 * international/mule-cmds.el (set-language-environment): Don't
11716 concat an integer (dos-codepage), use format instead.
11717
820ad5e7
DL
117182000-05-02 Dave Love <fx@gnu.org>
11719
11720 * help.el (help-xref-on-pp): Check for constant symbols.
11721
57cb56f5
GM
117222000-04-29 Gerd Moellmann <gerd@gnu.org>
11723
11724 * startup.el (normal-top-level): Put a condition-case around
11725 the code loading subdirs.el.
11726
117272000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
399c88ad 11728
57cb56f5
GM
11729 * ps-print.el: Upside-down and face background color printing,
11730 line number step, doc fix.
11731 (ps-print-version): New version number (5.2).
11732 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
11733 (ps-face-attribute-list, ps-plot-with-face): Code fix.
11734 (ps-spool-config): Var fix.
11735 (ps-printer-name-option): Const fix.
11736 (ps-print-upside-down, ps-use-face-background)
11737 (ps-line-number-step): New vars.
11738 (ps-window-system, ps-lp-system): New consts.
11739 (ps-face-background): New fun.
11740
084cec2f
GM
117412000-04-28 Richard Stallman <rms@gnu.org>
11742
11743 * files.el (make-auto-save-file-name):
11744 Apply auto-save-file-name-transforms to visited file name
11745 before generating auto save file name.
11746 (auto-save-file-name-transforms): New variable.
11747
399c88ad 11748 * files.el (backup-enable-predicate):
084cec2f
GM
11749 Correctly test for a file under a temporary directory.
11750
c94f4677
GM
117512000-04-28 Gerd Moellmann <gerd@gnu.org>
11752
11753 * subr.el (add-minor-mode): Rewritten.
11754
7b211df5
KH
117552000-04-28 Kenichi Handa <handa@etl.go.jp>
11756
11757 * mail/sendmail.el (sendmail-send-it): Set
11758 buffer-file-coding-system to the selected coding system for MIME
11759 header.
11760
c76e04a8 117612000-04-27 Gerd Moellmann <gerd@gnu.org>
e3e36d74 11762
c76e04a8
GM
11763 * dired.el (dired-move-to-filename-regexp): Allow format where
11764 YYYY is followed by two spaces.
e3e36d74 11765
c76e04a8
GM
11766 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
11767 in the second character class of the regexp.
11768
11769 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
11770 mh-etc, too.
353964e3 11771
c76e04a8
GM
11772 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
11773 nil.
399c88ad 11774
353964e3
GM
11775 * subr.el (add-minor-mode): Use `set' instead of `setq'.
11776
11777 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
11778 argument.
11779
c76e04a8 117802000-04-27 Sen Nagata <sen@eccosys.com>
399c88ad 11781
c76e04a8
GM
11782 * emacs-lisp/crm.el (crm-completion-table): New variable.
11783 (crm-collection-fn, crm-test-completion)
11784 (completing-read-multiple): Use it.
11785
117862000-04-27 Dave Love <fx@gnu.org>
11787
11788 * help.el (locate-library): Use mapc.
11789 (help-manyarg-func-alist): Add call-process-region.
11790
7464346d
GM
117912000-04-26 Gerd Moellmann <gerd@gnu.org>
11792
b35bd33d
GM
11793 * subr.el (add-minor-mode): Make argument MAP optional.
11794
7464346d
GM
11795 * desktop.el (desktop-save): Save list of minor modes.
11796 (desktop-create-buffer): Restore minor modes.
11797 (desktop-minor-mode-table): New user-option.
11798
11799 * subr.el (add-minor-mode): New function.
11800
11801 * image.el (find-image): New function.
11802 (defimage): Rewritten to find image at load time.
11803
11804 * startup.el (normal-top-level-add-to-load-path): Handle
11805 case that the default directory is not in load-path.
11806
11807 * help.el: Old patch from Stefan Monnier.
11808 (help-xref-on-pp): New function.
11809 (describe-variable): Use it to display xrefs in a symbol's value.
11810
23c0fb21
SM
118112000-04-26 Stefan Monnier <monnier@cs.yale.edu>
11812
11813 * cus-edit.el (custom-face): Fix parenthesis.
11814
fad95037
KH
118152000-04-26 Kenichi Handa <handa@etl.go.jp>
11816
f03392a1
KH
11817 * mail/rmail.el (rmail-expunge): When there are no deleted
11818 messages, do nothing.
fad95037 11819
0d7c5bb9
DL
118202000-04-26 Dave Love <fx@gnu.org>
11821
11822 * international/mule-cmds.el (locale-translation-file-name):
11823 Defvar to nil.
11824 (set-locale-environment): Set it here (at runtime).
11825
612839b6
GM
118262000-04-25 Gerd Moellmann <gerd@gnu.org>
11827
11828 * replace.el (perform-replace): Add parameters START and END. Use
11829 them instead of the check for a region in Transient Mark mode.
11830 (query-replace-read-args): Return two more list elements for the
11831 start and end of the region in Transient Mark mode.
11832 (query-replace, query-replace-regexp, query-replace-regexp-eval)
11833 (map-query-replace-regexp, replace-string, replace-regexp): Add
11834 optional last arguments START and END and pass them to
11835 perform-replace.
11836
11837 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
11838 form with additional arguments for perform-replace.
11839
11840 * progmodes/etags.el (tags-query-replace): Add parameters START
11841 and END. Construct a form with additional arguments for
11842 perform-replace.
11843
11844 * simple.el (shell-command): Set default directory for "*Shell
11845 Command Output" buffer.
11846
11847 * language/european.el (iso-latin-4): Fix typo.
11848
11849 * emacs-lisp/crm.el: New file.
11850
2917cc05
DL
118512000-04-24 Dave Love <fx@gnu.org>
11852
11853 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
11854 (Custom-reset-saved, Custom-reset-standard)
11855 (custom-group-value-create, custom-group-set, custom-group-save)
11856 (custom-group-reset-current, custom-group-reset-saved)
11857 (custom-group-reset-standard): Use mapc.
11858 (custom-buffer-create-internal): Disable undo when creating items.
11859 Use mapc.
11860 (custom-face): Avoid redundant lambda.
11861
abfcc168
GM
118622000-04-24 Gerd Moellmann <gerd@gnu.org>
11863
11864 * startup.el (auto-save-list-file-prefix): Set default to
11865 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
11866
fa78f71b
SS
118672000-04-24 Sam Steingold <sds@gnu.org>
11868
11869 * time-stamp.el (time-stamp-string-preprocess): Always convert
11870 `field-result' to a string.
11871
cc181e95
GM
118722000-04-24 Gerd Moellmann <gerd@gnu.org>
11873
11874 * frame.el (scrolling): New group.
11875 (automatic-hscrolling): New user-option.
11876
11877 * startup.el (command-line-x-option-alist): Add `-lsp' and
11878 `--line-spacing'.
11879
6142fdcb
DL
118802000-04-19 Dave Love <fx@gnu.org>
11881
11882 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
11883 (cl-mapc): Rename from mapc. Fix the funcall.
11884
5e3dac3f
GM
118852000-04-19 Gerd Moellmann <gerd@gnu.org>
11886
1c459486
GM
11887 * simple.el (clone-indirect-buffer-other-window): New command.
11888 (clone-indirect-buffer): Add optional arg NORECROD.
11889 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
11890
271b4185
GM
11891 * help.el (resize-temp-buffer-window): Use count-screen-lines.
11892
11893 * window.el (count-screen-lines): New function.
11894 (shrink-window-if-larger-than-buffer): Use count-screen-lines
11895 instead of window-buffer-height.
11896
11897 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
11898 non-existing variable comint-input-sentinel.
11899 (inferior-lisp-args-to-list): Removed.
11900 (inferior-lisp): Use split-string instead of
11901 inferior-lisp-args-to-list.
11902
11903 * hexl.el (hexl-insert-hex-string): New command.
11904
5e3dac3f
GM
11905 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
11906 instead of concat.
11907
f6d3257b
GM
119082000-04-18 Gerd Moellmann <gerd@gnu.org>
11909
11910 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
11911 at the start of an existing but empty folder.
11912
119132000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11914
11915 * ps-mule.el: Customization fix, doc fix.
11916 (ps-multibyte-buffer): Customization fix.
11917
8b7bc628 119182000-04-17 Richard M. Stallman <rms@gnu.org>
e61482c0
RS
11919
11920 * subr.el (read-passwd): Use read-char-exclusive.
11921
0daee095
GM
119222000-04-17 Gerd Moellmann <gerd@gnu.org>
11923
11924 * textmodes/texinfo.el (texinfo-insert-@email)
11925 (texinfo-insert-@emph, texinfo-insert-@quotation)
11926 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
11927 (texinfo-mode-map): Add key bindings for them.
11928
11929 * files.el (basic-save-buffer-2): Use a template with `$'
11930 instead of `#' for VMS.
11931
11932 * simple.el (clone-indirect-buffer): New function.
11933
e10f64e7
GM
119342000-04-16 Stephen Eglen <stephen@gnu.org>
11935
11936 * iswitchb.el (iswitchb-case): New function. If the user input
11937 contains any upper-case characters, the search is made
11938 case-sensitive.
11939
e3721db1
SM
119402000-04-17 Stefan Monnier <monnier@cs.yale.edu>
11941
e10f64e7
GM
11942 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
11943 comment-end.
e3721db1
SM
11944 (texinfo-font-lock-syntactic-keywords): New var.
11945 (texinfo-font-lock-keywords): Remove comment regexp.
11946 (texinfo-insert-block): New function.
11947 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
e10f64e7
GM
11948 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
11949 and font-lock-defaults. Use regexp-opt for outline-regexp.
e3721db1 11950 (texinfo-environments): New var.
e10f64e7
GM
11951 (texinfo-environment-regexp): Use regexp-opt and
11952 texinfo-environments.
e3721db1 11953
e10f64e7
GM
11954 * textmodes/ispell.el (ispell-menu-map-needed): Check that
11955 ispell-process is bound since this might be eval'd before ispell
11956 is loaded.
11957 (ispell-message): Use a tiny bit less magic and a bit more hard
11958 data to figure out what kind of sc-cite-regexp to use.
e3721db1
SM
11959
11960 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
11961
11962 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
11963 (insert-cyclic-diary-entry): Unquote the lambda.
11964
11965 * gud.el (gud-jdb-build-source-files-list): Fix typo.
11966
11967 * files.el (backup-enable-predicate): Unquote the lambda.
11968
11969 * cus-edit.el (custom-face, face): Unquote the lambda.
11970
712dc9e0
GM
119712000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11972
11973 * ps-print.el: Check for line-beginning-position definition.
fa78f71b 11974
712dc9e0
GM
11975 * ps-print.el: Fix counting lines in a region.
11976 (ps-print-version): New version number (5.1.5).
11977 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
11978 (ps-printing-region): Fun code fix.
11979
ffc50f2a
GM
119802000-04-15 Gerd Moellmann <gerd@gnu.org>
11981
11982 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
11983 to file-directory-p.
11984
a2522dca
GM
119852000-04-14 Gerd Moellmann <gerd@gnu.org>
11986
11987 * gud.el (gud-jdb-build-source-files-list): Check that directory
11988 exists before calling directory-files.
11989
6e883610
DL
119902000-04-13 Dave Love <fx@gnu.org>
11991
11992 * emacs-lisp/trace.el: Change maintainer. Use new backquote
11993 syntax.
11994
11995 * emacs-lisp/cl-specs.el: Remove when, unless.
11996
11997 * emacs-lisp/cl-extra.el: Don't quote keywords.
11998 (cl-old-mapc): New variable.
11999 (mapc): Use it.
12000 (cl-map-intervals): Use with-current-buffer. Don't check for
12001 next-property-change.
12002 (cl-map-overlays): Use with-current-buffer.
12003 (cl-expt): Remove.
12004 (copy-tree, remprop): Define unconditionally.
12005
12006 * emacs-lisp/cl-compat.el (keywordp): Remove.
12007
12008 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
12009 to use keywordp.
12010 (edebug-spec): Enable keywordp.
12011
12012 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
12013 string-lessp.
12014
12015 * cus-start.el: Use keywordp.
12016
198e3c7a
GM
120172000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12018
12019 * diary-lib.el (include-other-diary-files): Fix the fix of
12020 2000-02-18 by doing a save-excursion.
12021
120222000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12023
12024 * ps-print.el: Customization fix, doc fix.
12025 (ps-print-version): New version number (5.1.4).
12026 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
12027 (ps-print-preprint): Adjust code.
12028 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
12029 (ps-print-prologue-header, ps-print-control-characters)
12030 (ps-spool-config): Customization fix.
fa78f71b 12031
8eba343c
EZ
120322000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
12033
12034 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
12035 converted to the new menu-item format, names silightly changed,
12036 help strings added.
12037
12038 Support for spelling without async subprocesses:
12039
12040 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
12041 (ispell-session-buffer): New variables.
12042 (ispell-start-process, ispell-process-status,
12043 ispell-accept-output, ispell-send-string): New functions, for
12044 Ispell invocation when async subprocesses aren't supported.
12045 (ispell-word, ispell-pdict-save, ispell-command-loop,
12046 ispell-process-line, ispell-buffer-local-parsing): Replace calls
12047 to process-send-string with calls to ispell-send-string, and
12048 accept-process-output with ispell-accept-output.
12049 (ispell-init-process): Call ispell-process-status instead of
12050 process-status with.
12051 (ispell-init-process): Call ispell-start-process. Call
12052 ispell-accept-output and ispell-send-string. Don't call
12053 process-kill-without-query and kill-process if they are unbound.
12054 (ispell-async-processp): New function.
12055
3d30065d
DL
120562000-04-12 Dave Love <fx@gnu.org>
12057
12058 * info.el: Add debug-ignored-errors.
12059 (Info-mode-menu): Add some items.
12060 (Info-directory): Add autoload cookie.
12061
12062 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
12063 Modify `truncate-lines'. Make `describe-language-environment'
12064 always visible and add help. Modify `describe-key' help. Invoke
12065 Info-directory from `info'. New entry `emacs-manual'.
12066
1a1b1895
GM
120672000-04-10 Gerd Moellmann <gerd@gnu.org>
12068
8b2affc5
GM
12069 * progmodes/ebrowse.el (ebrowse-tree-mode): Use
12070 propertized-buffer-identification.
12071 (ebrowse-update-member-buffer-mode-line): Likewise.
12072 (ebrowse--mode-strings): Removed.
12073 (ebrowse--mode-line-props): Removed.
12074
1a1b1895
GM
12075 * files.el (auto-mode-alist): Add `EBROWSE'.
12076
12077 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
12078 space before testing for end of buffer.
12079 (ebrowse-load): Removed.
12080 (ebrowse-revert-tree-buffer-from-file): Rewritten.
12081 (ebrowse-create-tree-buffer): Rewritten.
12082 (ebrowse-tree-mode): Read tree from buffer.
12083
12084 * progmodes/ebrowse-ffh.el: Removed.
12085
223f3c91
KH
120862000-04-10 Kenichi Handa <handa@etl.go.jp>
12087
12088 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
12089
25fbf2c4
GM
120902000-04-10 Gerd Moellmann <gerd@gnu.org>
12091
12092 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
12093 at the wrong place.
12094
92c13173
DL
120952000-04-09 Dave Love <fx@gnu.org>
12096
12097 * files.el (backup-enable-predicate): Use
12098 temporary-file-directory, small-temporary-file-directory.
12099 (make-backup-file-name-function, backup-directory-alist): New
12100 variables.
12101 (make-backup-file-name-1): New function.
12102 (make-backup-file-name): Use it.
12103 (find-backup-file-name): Likewise. Use format for clarity, not
12104 concat.
12105 (file-newest-backup): Use make-backup-file-name.
12106
be0dbdab
GM
121072000-04-09 Gerd Moellmann <gerd@gnu.org>
12108
c45be9ac 12109 * progmodes/ebrowse-ffh.el: New file.
fa78f71b 12110
c45be9ac
GM
12111 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn): Moved
12112 to ebrowse-ffh.el.
12113 (ebrowse-load): Add autoload.
12114
12115 * finder.el (finder-commentary): Add autoload cookie.
12116
be0dbdab
GM
12117 * mail/rfc2368.el: Correct author's email address.
12118
12119 * progmodes/ebrowse.el: New file.
12120
12121 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
12122 item help string.
12123 (easy-menu-do-add-item): Ditto.
12124 (easy-menu-define): Extend doc string.
12125
12126 * jit-lock.el (with-buffer-unmodified): Use
12127 restore-buffer-modified-p.
12128 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
12129 (jit-lock-function, jit-lock-stealth-fontify): Don't use
12130 with-buffer-unmodified.
12131
3f923efe
DL
121322000-04-08 Dave Love <fx@gnu.org>
12133
12134 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
12135 unless, when.
12136
d35bee0e
MK
121372000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
12138
12139 * viper-util.el (viper-put-on-search-overlay): New subroutine.
12140 (viper-flash-search-pattern): No operation when using Emacs
fa78f71b 12141 doesn't support face.
d35bee0e 12142 Use `viper-put-on-search-overlay'.
fa78f71b 12143
c407c570
GM
121442000-04-04 Gerd Moellmann <gerd@gnu.org>
12145
12146 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
12147 like C-r.
12148
12149 * progmodes/make-mode.el: Some doc fixes.
12150 (makefile-mode-abbrev-table): New variable.
12151 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
12152 (makefile-font-lock-keywords): Fontify includes and conditionals.
12153 (toplevel): Require `dabbrev' and `add-log' when compiling.
12154
12155 * replace.el (perform-replace): Don't move forward one char
12156 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
12157 to do that because it leaves point 1 position after the last
12158 replacement, after everything has been replaced.
12159
12160 * jit-lock.el (with-buffer-unmodified): New macro.
12161 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
12162 modified state.
12163 (jit-lock-function-1): Extracted from jit-lock-function; not
12164 preserving buffer's modified state.
12165 (jit-lock-function, jit-lock-stealth-fontify): Call
12166 jit-lock-function-1.
12167
12168 * mail/rfc2368.el: Remove supernumerary copyright line.
12169
685e5ed2
GM
121702000-04-04 Milan Zamazal <pdm@freesoft.cz>
12171
12172 * glasses.el: Provide facilities for inserting space before left
12173 parentheses and uncapitalization of identifiers.
12174 (glasses-mode): Try to remove old overlays in all cases.
12175
0166aed1
GM
121762000-04-03 Gerd Moellmann <gerd@gnu.org>
12177
62f20204
GM
12178 * progmodes/compile.el (compile-internal): Display the compilation
12179 buffer in a different frame, if it's already displayed there.
12180
6460c400
GM
12181 * mail/rfc2368.el: New file.
12182
c0510d27
GM
12183 * simple.el (sendmail-user-agent-compose): Recognize a `body'
12184 header and insert its value as mail body.
12185
12186 * subr.el (member-ignore-case): New function.
12187
12188 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
12189 (dabbrev--find-expansion): Ignore buffers matching a regexp
12190 from dabbrev-ignored-regexps.
12191
0166aed1
GM
12192 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
12193 to extensions handled by gzip.
12194
c0510d27
GM
121952000-04-03 Richard M. Stallman <rms@gnu.org>
12196
12197 * files.el (insert-directory): List the total free space
12198 along with the used space.
fa78f71b 12199
c0510d27
GM
12200 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
12201 line is followed by one that matches CITATION-REGEXP, end the
12202 paragraph.
12203
122042000-04-03 Markus Rost <rost@delysid.gnu.org>
12205
12206 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
12207 (rmail-make-basic-summary-line): Use that option.
fa78f71b 12208
14c04384
KH
122092000-04-03 Kenichi Handa <handa@etl.go.jp>
12210
12211 * international/mule-cmds.el (encoded-string-description):
12212 Rewritten. Try pretty description for ISO 2022 escape sequences
3a100fd6
KH
12213 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
12214 for hexadecimal format.
14c04384 12215
ccf5869a
DL
122162000-04-01 Dave Love <fx@gnu.org>
12217
12218 * cpp.el: Change customization group to `c' from `C'.
12219
12220 * vcursor.el (vcursor-move): Use display-color-p.
12221
12222 * international/mule-util.el: Provide mule-utils.
12223 (string-to-sequence): Simplify and speed up.
12224
12225 * international/mule.el (make-coding-system): Purecopy doc-string.
12226
12227 * international/mule-cmds.el: Various menu changes.
12228 (describe-specified-language-support): Handle `Default'.
12229 (set-language-info): Purecopy `info'.
12230
610d841e
GM
122312000-03-31 Andrew Innes <andrewi@gnu.org>
12232
12233 * vc.el (vc-backend-diff): Return the correct status if we had to
12234 retry the rcsdiff command without the --brief option.
fa78f71b 12235
7f9de034
DL
122362000-03-31 Dave Love <fx@gnu.org>
12237
2de47765
DL
12238 * help.el (help-manyarg-func-alist): Correct several omissions.
12239
72838819
DL
12240 * add-log.el: Don't require cl, fortran.
12241 (add-log-current-defun-function): Doc fix.
12242 (change-log-version-number-regexp-list): Remove SCCS part. Doc
12243 fix.
12244 (change-log-version-rcs): Function deleted.
12245 (change-log-version-number-search): Doc fix. Use
12246 vc-workfile-version. Avoid CL dolist.
12247 (add-change-log-entry): Just call add-log-current-defun to get
12248 defun. Simplify somewhat.
12249 (change-log-get-method-definition-1): Likewise.
12250 (add-log-current-defun): Return nil if calling
12251 add-log-current-defun-function does so. Move Fortran stuff to
12252 fortran.el. Return string without properties.
12253
7f9de034
DL
12254 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
12255 and :alpha: char classes.
12256
12257 * mail/supercite.el: Defvar curline when compiling.
12258 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
12259 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
12260 rather than a-zA-Z0-9 to allow non-ASCII characters.
12261
aa110c0c
GM
122622000-03-31 Gerd Moellmann <gerd@gnu.org>
12263
12264 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
12265
12266 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
12267 Re-enable new code.
12268
12269 * lpr.el (print-region-1): Use -d to specify printer name for
12270 systems `usg-unix-v*, `dgux', `hpux', `irix'.
12271
122722000-03-31 Dave Love <fx@gnu.org>
fa78f71b 12273
aa110c0c
GM
12274 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Look
12275 for function definition in symbol's function value slot first
12276 instead of first consulting byte-compile-function-environment.
fa78f71b 12277
6733d074
KH
122782000-03-31 Kenichi Handa <handa@etl.go.jp>
12279
12280 * language/european.el ("Polish"): New language environment.
12281 (setup-polish-environment): New function.
12282
63fcfa04
GM
122832000-03-30 Gerd Moellmann <gerd@gnu.org>
12284
12285 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
12286 Disable new code.
12287
12288 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
12289 trying to `load' the symbol of an autoload instead of the file
12290 recorded in the autoload. Fix error messages.
12291
7438c86b
GM
122922000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12293
12294 * ps-print.el: PostScript programming fix for ghostview, doc fix.
12295 (ps-print-version): New version number (5.1.3).
12296 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
12297 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
12298 (ps-generate-postscript-with-faces): Code fix.
12299 (ps-color-values): XEmacs compatibility.
12300 (ps-print-background-image, ps-print-background-text, ps-printer-name)
12301 (ps-default-fg, ps-default-bg): Adjust customization.
12302 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
12303 (ps-color-scale): Renaming old ps-color-value fun.
12304 (ps-print-headers): Replace ps-print-header group to avoid conflict
12305 with ps-print-header variable.
12306 (ps-print-miscellany): New group.
12307 (ps-format-color, ps-rgb-color): New funs.
12308 (ps-default-foreground): New var.
12309 (ps-printer-name-option): New const.
fa78f71b 12310
326855a0
PB
123112000-03-30 Peter Breton <pbreton@ne.mediaone.net>
12312
1f56ba73
PB
12313 * net/net-utils.el:
12314 (network-connection-host, network-connection-service): New variables
12315 (network-connection-mode): New mode, derived from comint-mode
12316 (network-connection-mode-setup): New function, saves host and
fa78f71b 12317 service information in local variables.
1f56ba73 12318
326855a0
PB
12319 * lisp/locate.el:
12320 (locate-word-at-point): Added this function
12321 (locate): Default to using locate-word-at-point as input
12322 Run dired-mode-hook
12323
141384bd
DL
123242000-03-29 Dave Love <fx@gnu.org>
12325
12326 * calendar/appt.el: Doc fixes.
12327 (appt-check): Convert min-to-app to a string before passing to
12328 appt-disp-window-function or concat.
12329 (appt-delete-window): Remove test for frame-root-window.
12330 (appt-select-lowest-window, appt-convert-time): Simplify.
12331
12332 * emacs-lisp/bytecomp.el: Doc fixes.
12333 (byte-compile-file-form-autoload): Update
12334 byte-compile-function-environment.
12335
c5aa0fc2
AS
123362000-03-29 Andreas Schwab <schwab@suse.de>
12337
12338 * emacs-lisp/autoload.el: Also print defsubst doc string
12339 specially.
12340
12341 * dired.el (dired-insert-directory): If dired-free-space-program
12342 failed just delete its output.
12343
f1d6fe69
DL
123442000-03-29 Dave Love <fx@gnu.org>
12345
12346 * international/iso-cvt.el: Move provide to end. Doc fixes.
12347 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
12348 (iso-iso2sgml, iso-sgml2iso): New functions.
12349 (iso-cvt-define-menu): Fix some entries and use backquote for
12350 clarity.
12351
12352 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
12353
b61f1215
GM
123542000-03-28 Gerd Moellmann <gerd@gnu.org>
12355
12356 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
12357 ISO-DATE. If non-nil, return date in ISO 8601 format.
12358
ea4b0ca3
SM
123592000-03-26 Stefan Monnier <monnier@cs.yale.edu>
12360
3831af62
SM
12361 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
12362 if it ever becomes used.
12363 (log-edit-mode-hook): Default to vc-log-mode-hook.
12364 (log-edit-mode): Fix the docstring.
12365
ea4b0ca3
SM
12366 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
12367 the code.
12368
08f8b1cc
DL
123692000-03-26 Dave Love <fx@gnu.org>
12370
082527fe
DL
12371 * net/browse-url.el (browse-url): Re-fix case of
12372 browse-url-browser-function being an alist.
12373 (browse-url): Add :link to defgroup.
12374
08f8b1cc
DL
12375 * files.el: Doc fixes.
12376 (file-truename): Include `[' in wildcard characters.
12377 (automount-dir-prefix): Customize.
12378 (find-file-wildcards): Add :version.
12379 (find-file-noselect): Simplify a mapcar call.
12380
12381 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
12382 compatible with inf-lisp version.
12383 (eval-defun-1): Fix custom-declare-variable case.
12384
ea4b0ca3
SM
123852000-03-25 Stefan Monnier <monnier@cs.yale.edu>
12386
12387 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
12388
9a0dd3dc
GM
123892000-03-24 Gerd Moellmann <gerd@gnu.org>
12390
b68c375f
GM
12391 * Makefile (COMPILE_FIRST): New macro.
12392 (compile-files): Compile files from COMPILE_FIRST first.
12393
12394 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new
12395 code.
12396
9a0dd3dc
GM
12397 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
12398 matching open parenthesis in column 0 to defun-prompt-regexp
12399 only if open-paren-in-column-0-is-defun-start is set.
12400
12401 * sun-curs.el: Require CL at compile-time only.
12402
12403 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
12404 instead of copy-list which is a function from CL.
12405 (msb--choose-menu, msb--mode-menu-cond)
12406 (msb--create-buffer-menu-2): Use dolist instead of mapc.
12407 (msb--init-file-alist): Use mapcar instead of mapcan.
12408 (msb--aggregate-alist): Use mapcar instead of mapcan. Fix
12409 `(' in column 0 in doc string.
12410 (msb--add-separators): Use mapcar instead of mapcan.
12411
12412 * cus-dep.el: Require CL at compile-time only.
12413
c7dcadb5
SM
124142000-03-24 Stefan Monnier <monnier@cs.yale.edu>
12415
12416 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
12417 (byte-compile-warnings): New warning `noruntime'.
12418 (byte-compile-constants, byte-compile-variables): Fix docstring.
12419 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
12420 execute `eval-whenc-compile's body.
12421 (byte-compile-unresolved-functions): Fix docstring.
12422 (byte-compile-eval): New function.
12423 (byte-compile-callargs-warn): Check if the function will be available
12424 at runtime (via property `byte-compile-noruntime').
12425 (byte-compile-print-syms): New function.
12426 (byte-compile-warn-about-unresolved-functions): Also warn about
12427 `noruntime' functions (and use `byte-compile-print-syms').
12428 (byte-compile-file): Capitalize the message.
12429
3b55acc9
GM
124302000-03-24 Gerd Moellmann <gerd@gnu.org>
12431
12432 * mail/rmail.el (rmail-confirm-expunge): New user-option.
12433 (rmail-expunge): Ask for confirmation depending on the setting
12434 of rmail-confirm-expunge.
12435
124362000-03-23 Gerd Moellmann <gerd@gnu.org>
12437
12438 * Makefile (bootstrap-clean): If $(emacs) exists, build
12439 loaddefs.el first. A loaddefs.el that's not up-to-date might
12440 cause a bootstrap failure because things don't autoload as
12441 expected.
12442
02c76af4
DL
124432000-03-23 Dave Love <fx@gnu.org>
12444
12445 * net/browse-url.el: Restore previous use of
12446 browse-url-maybe-new-window.
12447
1a3199d9
GM
124482000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12449
12450 * ps-print.el: Skip banner page fix.
12451 (ps-print-version): New version number (5.1.2).
12452 (ps-begin-file, ps-end-file, ps-generate): Code fix.
fa78f71b 12453
1a3199d9
GM
124542000-03-23 Dave Pearson <davep@davep.org>
12455
12456 * net/quickurl.el Changed the type of parameter passed to the
12457 function defined by `quickurl-format-function'. Before only the
12458 text of the URL was passed. Now the whole URL structure is passed
12459 and the function is responsible for extracting the parts it
12460 requires. Changed the default of `quickurl-format-function'
12461 accordingly.
12462 (quickurl-insert): Changed the `funcall' of
12463 `quickurl-format-function' to match the above change.
12464 (quickurl-list-insert): Changed the `url' case so that it makes
12465 use of `quickurl-format-function', previous to this the format was
12466 hard wired.
fa78f71b 12467
72db3ab5
GM
124682000-03-22 Gerd Moellmann <gerd@gnu.org>
12469
12470 * startup.el: Change some spellings for the X Window System.
12471
68049bfa
SM
124722000-03-22 Stefan Monnier <monnier@cs.yale.edu>
12473
12474 * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean
12475 up the code and the regexp and make sure the cursor is temporarily
12476 moved to the suspicious line while querying the user.
12477
ff4df011
JR
124782000-03-22 Jason Rumney <jasonr@gnu.org>
12479
12480 * w32-fns.el (w32-charset-info-alist): Initialize.
12481
ee1c5b21
GM
124822000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12483
12484 * ps-print.el: N-up last page fix.
12485 (ps-print-version): New version number (5.1.1).
12486 (ps-end-file, ps-end-job, ps-generate): Code fix.
fa78f71b 12487
d2cbfba0
SM
124882000-03-21 Stefan Monnier <monnier@cs.yale.edu>
12489
bfb857d8
SM
12490 * files.el (find-file-run-dired): Update docstring.
12491 (find-directory-functions): New hook.
12492 (find-file-noselect): Run find-directory-functions rather than
12493 calling dired directly.
12494
12495 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
12496
cb3430a1
SM
12497 * pcvs.el: Add a minimal leading commentary.
12498 (cvs-make-cvs-buffer): Change the header part by removing the startup
12499 message and adding a `Module' entry. Also replace the FOOTER and
12500 HEADER special fileinfos with the new support in ewoc for updating
12501 its own footer and header.
12502 (cvs-update-header): Update to use the header/footer of the ewoc.
12503 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
12504 (cvs-is-within-p): New function.
12505 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
12506 to only examine some subset of the buffers.
12507
12508 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
12509 `format' instead of our own ad-hoc functions.
12510 Remove HEADER and FOOTER cases, now handled in the EWOC.
12511 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
12512
12513 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
12514 output to avoid scaring the user.
12515 (cvs-parse-table): Catch message for non-up-to-date commits.
12516
12517 * pcvs-defs.el (cvs-startup-message): Remove.
12518 (cvs-global-menu): New autoloaded menu.
12519
12520 * pcvs-util.el (cvs-string-fill): Remove.
12521
12522 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
12523 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
12524 PP part of it and also make it work for footers and headers.
12525 (ewoc-create): Drop POS and BUFFER arguments.
12526 Use the DLL's dummy node to store the end-of-footer position.
12527 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
12528 (ewoc-refresh): Remove unused `header' variable.
12529 (ewoc-(get|set)-hf): New functions.
12530
d2cbfba0
SM
12531 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
12532 log-view-*-(message|file) and use easy-mmode-define-navigation.
12533 (log-view-message-re): Match SCCS format as well.
12534 And match the revision line rather than the dashed separator line.
12535 (log-view-mode): Use the new define-derived-mode.
12536 (log-view-current-tag): Fill in with an actual implementation.
12537
12538 * cvs-status.el (cvs-status-(prev|next)): Rename from
12539 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
12540 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
12541 to let the output "breathe" a little more (more readable).
12542 (cvs-status-mode): Use the new define-derived-mode.
12543
12544 * smerge-mode.el (smerge-auto-leave): New function and variable.
12545 (smerge-basic-map): Rename from smerge-basic-keymap.
12546 Change the bindings for smerge-diff-*.
12547 (smerge-*-map): Use easy-mmode-defmap.
12548 (smerge-(next|prev)): Use easy-mmode-define-navigation.
12549 (smerge-keep-*): Use smerge-auto-leave.
12550
51663132
JR
125512000-03-21 Jason Rumney <jasonr@gnu.org>
12552
12553 * cus-edit.el (custom-button-face): Use 3D look for w32.
12554 (custom-button-pressed-face): Likewise.
12555
3f6e4b8b
GM
125562000-03-21 Gerd Moellmann <gerd@gnu.org>
12557
12558 * progmodes/etags.el (tags-case-fold-search): New user-option.
12559 (tags-loop-eval): New function. Bind case-fold-search around eval
12560 depending on the value of tags-case-fold-search.
12561 (tags-loop-continue): Use tags-loop-eval.
12562 (find-tag-in-order): Bind case-fold-search depending on the value
12563 of tags-case-fold-search.
12564
c7ea3acc
SM
125652000-03-21 Stefan Monnier <monnier@cs.yale.edu>
12566
0ae39f53
SM
12567 * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'.
12568 (diff-end-of-hunk): Return the end position for use in
12569 `easy-mmode-define-navigation'.
12570 (diff-recenter): Remove.
12571 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
12572 of `easy-mmode-define-navigation'.
12573 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
12574 previous renaming) and fix to use new names.
12575 (diff-merge-strings): Use \n as separator: simpler, faster.
12576 (diff-mode): Use `define-derived-mode'.
12577
c7ea3acc
SM
12578 * derived.el (define-derived-mode): Don't autoload anymore.
12579 Prefer the macro-only version provided by easy-mmode.el.
12580
12581 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
12582 `easy-mmode-define-derived-mode'.
12583 Use `combine-run-hooks'.
12584 (easy-mmode-define-navigation): New macro.
12585
12586 * subr.el (combine-run-hooks): New function.
12587
6c4bfdc0
KH
125882000-03-21 Kenichi HANDA <handa@etl.go.jp>
12589
12590 * term/x-win.el: Fontsets related initialization is simplified.
12591
12592 * international/mule-diag.el (describe-font): Don't refer to
12593 global-fontset-alist, instead call font-list.
12594 (describe-fontset, list-fontsets, mule-diag): Likewise.
12595 (print-fontset): Adjusted for the change of fontset
12596 implementation.
12597
12598 * international/fontset.el (x-charset-registries): Variable
12599 removed, instead the corresponding data is stored in the default
12600 fontset.
12601 (register-alternate-fontnames): Function removed.
12602 (resolved-ascii-font): Variable removed.
12603 (x-compose-font-name): Ignore the second argument REDOCE.
12604 (x-complement-fontset-spec): Complement only an ASCII font and
12605 element for those charsets than can use that ASCII font.
12606 (generate-fontset-menu): Don't refer to global-fontset-alist,
12607 instead call fontset-list.
12608 (uninstantiated-fontset-alist): Variable removed.
12609 (x-style-funcs-alist): Likewise.
12610 (fontset-default-styles): Likewise.
12611 (x-modify-font-name): Function removed.
12612 (create-fontset-from-fontset-spec): Ignore the argument
12613 STYLE-VARIANT.
12614 (create-fontset-from-ascii-font): Docsting adjusted for the above
12615 change.
12616 (instantiate-fontset, resolve-fontset-name): Functions removed.
12617 (fontset-list): Now implemented by C code.
fa78f71b 12618
6c4bfdc0
KH
12619 * faces.el (read-face-font): Fix TABLE arg to completing-read.
12620 (describe-face): Include `font' attribute in the description.
12621
9111d4b5
KH
126222000-03-21 Kenichi Handa <handa@etl.go.jp>
12623
12624 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
12625
b33dd3b0
GM
126262000-03-20 Gerd Moellmann <gerd@gnu.org>
12627
a25bbe00
GM
12628 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
12629 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
12630 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
fa78f71b 12631
b33dd3b0
GM
12632 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
12633 about behavior of set-buffer-modified-p wrt redisplay.
12634
8b7bc628 126352000-03-19 Richard M. Stallman <rms@gnu.org>
e53ae11c
RS
12636
12637 * view.el (view-mode-disable): Kill local binding of view-read-only.
12638
d7b511c4
GM
126392000-03-18 Gerd Moellmann <gerd@gnu.org>
12640
12641 * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
12642 is a string, convert it to a syntax cell using string-to-syntax.
12643
12644 * simple.el (syntax-code-table, syntax-flag-table): New variables.
12645 (string-to-syntax): New function.
12646
12647 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
12648 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
b33dd3b0 12649 try to use passive ftp mode.
d7b511c4 12650
998ecc60
GM
126512000-03-17 Gerd Moellmann <gerd@gnu.org>
12652
b33dd3b0 12653 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
998ecc60
GM
12654
12655 * simple.el (append-to-buffer): Update point of windows after
12656 insertion.
12657
12658 * abbrev.el (inverse-add-abbrev): Identify word by first moving
12659 forward then moving backward. Reindent.
12660
12661 * frame.el (other-frame): Call x-focus-frame only if
12662 focus-follows-mouse is off.
12663
235d6821
DL
126642000-03-17 Dave Love <fx@gnu.org>
12665
12666 * pcvs-util.el (cvs-strings->string): Rename
12667 replace-regexps-in-string.
12668
a29a2cd1
SM
126692000-03-17 Stefan Monnier <monnier@cs.yale.edu>
12670
af595444
SM
12671 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
12672 regexp for labels cannot span several lines.
12673
12674 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
998ecc60 12675 `(setq :<key> ':<key>)' to the macro expansion.
a29a2cd1 12676
a9be2843
DL
126772000-03-16 Dave Love <fx@gnu.org>
12678
12679 * progmodes/f90.el (f90): Put custom group under `languages', not
12680 `fortran'.
12681 (f90-mode-hook): Customize.
12682 (f90-mode): Set add-log-current-defun-function.
12683 (f90-current-defun): New function.
12684
d0ab3e9d
GM
126852000-03-16 Gerd Moellmann <gerd@gnu.org>
12686
16b20ed9
GM
12687 * cus-edit.el (custom-variable-tag-face): Handle case that
12688 default face's height is not a number.
12689 (custom-face-tag-face, custom-group-tag-face-1)
12690 (custom-group-tag-face): Ditto.
12691 (custom-group-tag-face-1): Add :group.
fa78f71b 12692
d0ab3e9d
GM
12693 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
12694
ae8ab422
GM
126952000-03-15 Gerd Moellmann <gerd@gnu.org>
12696
12697 * pcvs-defs.el (toplevel): Remove autoload cookie for form
12698 requiring easymenu.
12699
81c7ca69
GM
127002000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12701
12702 * ps-print.el: PostScript user-defined prologue, PostScript error
12703 handler, doc fix.
12704 (ps-print-version): New version number (5.1).
12705 (ps-user-defined-prologue, ps-error-handler-message)
12706 (ps-print-prologue-0, ps-error-handler-alist): New vars.
12707 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
12708 (ps-insert-string): New function.
fa78f71b 12709
dcf1003d
KH
127102000-03-15 Kenichi Handa <handa@etl.go.jp>
12711
12712 * international/ccl.el (ccl-compile-expression): Don't generate
12713 invalid self-assignment code.
12714
73825616
DL
127152000-03-14 Dave Love <fx@gnu.org>
12716
12717 * subr.el (replace-regexp-in-string): Renamed from
12718 replace-regexps-in-string. Doc fix.
12719
031020ac
DL
127202000-03-12 Dave Love <fx@gnu.org>
12721
12722 * cus-edit.el: Doc fixes.
12723 (customize-set-variable, customize-save-variable): Rename args for
12724 doc.
12725 (custom-variable-tag-face, custom-face-tag-face)
12726 (custom-group-tag-face-1, custom-group-tag-face): Modify from
12727 style which user identify as hyperlink.
12728 (hook): Don't add undefined functions to the hook.
12729 (debug-ignored-errors): Transfer message from bindings.el.
12730
9b2f3c38
GM
127312000-03-12 Gerd Moellmann <gerd@gnu.org>
12732
12733 * recentf.el (recentf-keep-non-readable-files-p): Remove
12734 double/nested definition.
12735
0d6e23cf
DL
127362000-03-12 Dave Love <fx@gnu.org>
12737
12738 * facemenu.el (facemenu-get-face): Use display-color-p.
12739 * enriched.el (enriched-decode-foreground): Likewise.
12740 (enriched-decode-background): Likewise.
12741 * isearch.el (isearch-highlight): Likewise.
12742 * info-look.el (info-lookup): Likewise.
12743 * simple.el (completion-setup-function): Likewise.
12744
12745 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
12746 :options.
12747
12748 * bindings.el (mode-line-format): Fix line-number and
12749 column-number items. Add help-echo for the background.
12750 (mode-line-mule-info): Modify help-echo.
12751
1598a961 12752 * avoid.el (mouse-avoidance-mode): Add autoload cookie to defcustom.
0d6e23cf
DL
12753
12754 * files.el (load-file): Allow completion to .elc.
12755
12756 * man.el: Doc fixes.
12757 (Man-init-defvars): Use display-color-p to set fontification.
12758
12759 * play/hanoi.el (hanoi-internal): Don't use oddp.
12760
e1cff360
GM
127612000-03-12 Gerd Moellmann <gerd@gnu.org>
12762
12763 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
12764
12765 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
12766
5e5dff44
GM
127672000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
12768
12769 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
12770 Fix comment.
12771
5b467bf4
SM
127722000-03-10 Stefan Monnier <monnier@cs.yale.edu>
12773
83fef604
SM
12774 * font-lock.el (font-lock-keywords): Fix the doc now that
12775 regexp-opt-depth is unnecessary.
12776 (save-buffer-state): Set an edebug spec.
12777 (font-lock-fontify-anchored-keywords): Properly handle the case when
12778 the matcher goes past the limit.
12779
5b467bf4
SM
12780 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
12781 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
12782
83fef604
SM
12783 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
12784 dll.el and cookie.el (from Elib) with heavy renaming and other
12785 massaging.
5b467bf4
SM
12786
12787 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
12788 Autoload the functions used.
12789 (easy-mmode-define-syntax): Fix CL typo.
12790 (easy-mmode-define-derived-mode): Improve the docstring generation.
12791
d407456c
GM
127922000-03-10 Gerd Moellmann <gerd@gnu.org>
12793
12794 * textmodes/texinfo.el (texinfo-version): Variable and function
12795 removed.
12796
5a7a545c
SM
127972000-03-09 Stefan Monnier <monnier@cs.yale.edu>
12798
0d6e23cf
DL
12799 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
12800 allow more flexibility.
12801 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New
12802 fns.
12803 (easy-mmode-defmap, easy-mmode-defsyntax)
12804 (easy-mmode-define-derived-mode): New macros.
5a7a545c 12805
d407456c 128062000-03-09 Didier Verna <didier@xemacs.org>
445b0666
DL
12807
12808 * rect.el (replace-rectangle): New function.
12809
128102000-03-09 Dave Love <fx@gnu.org>
12811
12812 * progmodes/fortran.el (fortran-comment-line-start): Define as
12813 "C".
12814 (fortran-comment-line-start-skip): Don't match cpp stuff.
12815 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
12816 (fortran-mode-map): Remove over-eager custom-menu-create for now.
12817 (fortran-mode): Don't set fortran-comment-line-start-skip,
12818 fortran-comment-line-start here. Set comment-start,
12819 add-log-current-defun.
12820 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
12821 (fortran-current-defun): New function.
12822
80460654
GM
128232000-03-09 Gerd Moellmann <gerd@gnu.org>
12824
d1221ea9
GM
12825 * emacs-lisp/re-builder.el: New file.
12826
1853aa6b
GM
12827 * mouse.el (mouse-drag-region): Don't run up-event handler
12828 if hscroll has changed.
12829
80460654
GM
12830 * octave-mod.el (octave-font-lock-keywords): To font-lock the
12831 builtin operators, use `font-lock-builtin-face' for Emacs and
12832 `font-lock-preprocessor-face' otherwise.
fa78f71b
SS
12833
12834 * font-lock.el (lisp-font-lock-keywords-1): Highlight
80460654
GM
12835 `(defun (setf foo)' differently.
12836
c0056275
SM
128372000-03-08 Stefan Monnier <monnier@cs.yale.edu>
12838
12839 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
80460654
GM
12840 (regexp-opt): Update comment and adapt the code the new meaning of
12841 the `paren' argument of regex-opt-group for shy-groups.
12842 (regexp-opt-depth): Handle shy groups as well as backslashed
12843 backslashes.
c0056275
SM
12844 (regexp-opt-group): Turn the leading comment into a docstring.
12845 Allow `paren' to be a string (the string to use to open a group).
80460654
GM
12846 Remove open-presuf and close-presuf. Instead of checking for `all
12847 one-char' and then later on check for `several one-char', handle
12848 both cases close together. Also apply a more generic algorithm
12849 for suffixes (the mirror image of the algorithm used for
12850 prefixes). Use shy-groups. Use nreverse rather than reverse.
c0056275
SM
12851 (regexp-opt-try-suffix): Removed.
12852
12853 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
80460654
GM
12854 from comint-mode-map, so we can just inherit from it. Also, move
12855 the initialization into the `defvar' since there's no docstring
12856 anyway and it's fairly short.
12857 (inferior-scheme-mode): Define it as derived-mode: the code is
12858 shorter and this way we inherit from comint-mode-map rather than
12859 copying it.
c0056275 12860
80460654
GM
12861 * subr.el (replace-regexps-in-string): Properly handle the case
12862 where we match an empty string.
c0056275 12863
80460654
GM
12864 * comint.el (comint-exec-1): Add the current-dir to the exec-path
12865 when the command has a directory component (such as "./testml").
c0056275
SM
12866 Also fix a typo in the comment.
12867
5e91ff9e
GM
128682000-03-08 Gerd Moellmann <gerd@gnu.org>
12869
feab4fba
GM
12870 * Makefile (compile-files): Compile files one by one because
12871 that's the only way to ensure a clean compilation environment for
12872 each individual file.
12873
5e91ff9e
GM
12874 * frame.el (other-frame): Call x-focus-frame.
12875
76162e12
DL
128762000-03-07 Dave Love <fx@gnu.org>
12877
f64ce788
DL
12878 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
12879 :require to defcustom.
12880
76162e12
DL
12881 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
12882 lists.
12883
12884 * files.el (auto-mode-alist): Add configure.in.
12885
12886 * progmodes/autoconf.el: New file.
12887
f7daf1e1
GM
128882000-03-07 Gerd Moellmann <gerd@gnu.org>
12889
12890 * mail/mh-e.el: Change maintainer to `none'.
12891
12892 * recentf.el (recentf-keep-non-readable-files-p): Quote args
12893 to remove-hook and add-hook.
12894
128952000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
12896
12897 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
12898 it as the default.
12899 (mail-send): Test mail-send-nonascii also for the new `mime' value.
12900 (sendmail-send-it): Conditionally add MIME headers specifying the
12901 used character set.
fa78f71b 12902
63f6b2c4
DL
129032000-03-07 Dave Love <fx@gnu.org>
12904
12905 * winner.el: Fix keywords, autoload cookies. Split
12906 eval-when-compile form to avoid compilation failure.
12907
8330e2f9
KH
129082000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
12909
12910 * international/mule.el: Modify comment about coding system
12911 property `coding-category'.
12912 (make-coding-system): New argument EOL-TYPE. Pay attention to
12913 coding-category property of PROPERTIES.
12914
12915 * international/mule-conf.el (coding-category-utf-8,
12916 coding-category-utf-16-be, coding-category-utf-16-le): New coding
12917 categories. Include them in the argument for set-coding-priority.
12918
12919 * international/mule-cmds.el (reset-language-environment): Include
12920 coding-category-utf-8, coding-category-utf-16-be, and
12921 coding-category-utf-16-le in the argument for set-coding-priority.
12922 (reset-language-environment): Initialize coding-category-utf-8,
12923 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
12924
18bb0684
GM
129252000-03-06 Karl Fogel <kfogel@red-bean.com>
12926
12927 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
12928 code abstracted out of `bookmark-jump-noselect'. Now tries info
12929 extensions as well as compression extensions.
12930 (bookmark-jump-noselect): Use above new func.
fa78f71b 12931
71a6ba55
GM
129322000-03-03 Gerd Moellmann <gerd@gnu.org>
12933
12934 * strokes.el: Change maintainer's mail address.
12935
0d56cdff
KH
129362000-03-03 Kenichi Handa <handa@etl.go.jp>
12937
12938 * international/mule-diag.el (list-character-sets): Make help-echo
12939 string by substitute-command-keys.
12940 (list-character-sets): Likewise.
12941 (sort-listed-character-sets): Call help-setup-xref.
12942
900fa1f1
GM
129432000-03-02 Gerd Moellmann <gerd@gnu.org>
12944
12945 * time.el (display-time-mail-file): Add `none' to the list of
12946 choices.
12947
54d04320
DL
129482000-03-01 Dave Love <fx@gnu.org>
12949
43f3fa09
DL
12950 * help.el (help-xref-go-back): Don't try to set position.
12951
54d04320
DL
12952 * international/mule-diag.el (list-character-sets): Call
12953 help-setup-xref. Add help-echo to xrefs.
12954 (list-character-sets-1): Add help-echo to xrefs.
12955
d054101f
GM
129562000-03-02 Gerd Moellmann <gerd@gnu.org>
12957
12958 * frame.el (blink-cursor-mode): Switch cursor on when turning
12959 the mode off.
12960
12961 * add-log.el (add-log-current-defun): Add support for
12962 Autoconf mode.
12963
12964 * mail/rmail.el (rmail-quit-hook): New variable.
12965
d77dae5c
DL
129662000-03-01 Dave Love <fx@gnu.org>
12967
e5f597f0
DL
12968 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
12969
d77dae5c
DL
12970 * help.el (help-xref-button): Add help-echo arg.
12971 (describe-function-1, describe-variable, help-make-xrefs): Use it.
12972
12973 * faces.el (list-faces-display): Supply help-echo with
12974 help-make-xrefs.
12975
12976 * facemenu.el (list-text-properties-at): Set help-xref-stack to
12977 nil.
12978
72d19d75
GM
129792000-03-01 Gerd Moellmann <gerd@gnu.org>
12980
2df636f4
GM
12981 * image.el (defimage): Look for image files in load-path.
12982
fa78f71b 12983 * frame.el (busy-cursor-delay-seconds): Change type to
72d19d75
GM
12984 `number'.
12985
2df636f4
GM
129862000-03-01 David Ponce <david.ponce@wanadoo.fr>
12987
12988 * recentf.el (recentf): Added version tag to the defgroup of
12989 recentf.
12990
129912000-03-01 David Ponce <david.ponce@wanadoo.fr>
12992
12993 * recentf.el (recentf-cleanup): Changed to remove excluded file
12994 too.
12995 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
12996 action to select/unselect a file.
12997 (recentf-edit-list): Code cleanup and improvement.
12998 (recentf-open-more-files-action): `recentf-open-more-files' button
12999 widget action to open a file.
13000 (recentf-open-more-files): No more use standard completion but
13001 widgets.
13002 (recentf-more-collection): Deleted.
13003 (recentf-more-history): Deleted.
13004 (recentf-setup-more-completion): Deleted.
13005
130062000-03-01 David Ponce <david.ponce@wanadoo.fr>
13007
13008 * recentf.el (recentf-mode): No more needs that Emacs is running
13009 under a window-system.
13010
130111999-03-01 David Ponce <david.ponce@wanadoo.fr>
13012
13013 * recentf.el (recentf-edit-list): New command to edit the recent
13014 list which allow the user to remove files.
13015 (recentf-edit-selected-items): New global variable, used by
13016 `recentf-edit-list' to hold the list of files to be removed from
13017 the recent list.
13018 (recentf-make-menu-items): Updated to display a "Edit list..."
13019 menu item. Minor code cleanup.
13020
130211999-03-01 David Ponce <david.ponce@wanadoo.fr>
13022
13023 * recentf.el (recentf-open-more-files): New command to open files
13024 that are not displayed in the menu.
13025 (recentf-more-collection): New global variable holding the set of
13026 permissible completions used by `recentf-open-more-files'.
13027 (recentf-more-history): New global variable holding the history list
13028 used by `recentf-open-more-files' completion.
13029 (recentf-setup-more-completion): New function to setup completion for
13030 `recentf-open-more-files'.
13031 (recentf-make-menu-items): Updated to display a "More..." menu item.
13032
130331999-03-01 David Ponce <david.ponce@wanadoo.fr>
13034
13035 * recentf.el (recentf-menu-action): Doc fixed.
13036
130371999-03-01 David Ponce <david.ponce@wanadoo.fr>
13038
13039 * recentf.el (recentf-menu-filter): Doc updated.
13040 (recentf-update-menu-hook): Allow menu filters to force menu update.
13041 (recentf-make-menu-items): New menu filter handling.
13042 (recentf-make-menu-item): New helper function.
13043 (recentf-menu-elements): New menu handling function.
13044 (recentf-sort-ascending): Updated to new menu filter handling.
13045 (recentf-sort-descending): Updated to new menu filter handling.
13046 (recentf-sort-basenames-ascending): New menu filter function.
13047 (recentf-sort-basenames-descending): New menu filter function.
13048 (recentf-show-basenames): New menu filter function.
13049 (recentf-show-basenames-ascending): New menu filter function.
13050 (recentf-show-basenames-descending): New menu filter function.
13051
72d19d75
GM
130522000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13053
13054 * diary-lib.el (list-diary-entries): Don't try to go forward at
13055 the end of the buffer.
13056
1ac1c836
KH
130572000-02-29 Kenichi Handa <handa@etl.go.jp>
13058
13059 * international/mule-diag.el (list-character-sets): Completely
13060 rewritten.
13061 (sort-listed-character-sets): New function.
13062 (list-character-sets-1): Completely rewritten.
13063 (list-character-sets-2): New function.
13064 (non-iso-charset-alist): New variable.
13065 (decode-codepage-char): New function.
13066 (charset-history): New variable.
13067 (read-charset) (list-block-of-chars)
13068 (list-iso-charset-chars)
13069 (list-non-iso-charset-chars)
13070 (list-charset-chars): New functions.
13071 (mule-diag): Call list-character-sets-2, not
13072 list-character-sets-2.
13073 (dump-charsets): Likewise.
13074
ed4d0512
GM
130752000-02-29 Gerd Moellmann <gerd@gnu.org>
13076
72d19d75
GM
13077 * dired-x.el (dired-filename-at-point): Add `@' to valid
13078 file name characters.
13079 (dired-filename-at-point): Handle ange-ftp file names.
13080
ed4d0512
GM
13081 * frame.el (frame-notice-user-settings): Use assq-delete-all
13082 instead of assoc-delete-all.
13083 (frame-notice-user-settings): Ditto.
13084
13085 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
13086 Don't copy alist.
13087
32038c7a
GM
130882000-02-28 Eli Barzilay <eli@cs.cornell.edu>
13089
13090 * calculator.el (calculator-use-menu): New option.
13091 (calculator-initial-bindings): Changed some bindings to work as
13092 macros.
13093 (calculator-forced-input): Removed.
13094 (calculator-restart-other-mode): New variable.
13095 (calculator-mode-map): Set up menu.
fa78f71b 13096
32038c7a
GM
130972000-02-28 Jari Aalto <jari.aalto@poboxes.com>
13098
13099 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
13100 tags.
fa78f71b 13101
55d7ff38 131022000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
fa78f71b 13103
55d7ff38
MK
13104 * viper-cmd.el (viper-envelop-ESC-key): added the option to
13105 translate all ESC key sequences.
13106 (viper-goto-mark-subr): restore markers for files for which
13107 they were saved.
13108 * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
13109 * viper-util.el (viper-set-replace-overlay-glyphs,
13110 viper-set-replace-overlay): always check if the replacement
13111 overlay is live.
13112 * viper.el (viper-vi-state-mode-list): added major modes.
13113 * ediff-wind.el: minor comment changes.
13114 * ediff.el: copyright notice date fix.
fa78f71b 13115
387023ee
JR
131162000-02-27 Jason Rumney <jasonr@gnu.org>
13117
13118 * faces.el (face-font-family-alternatives): Add arial to helv.
13119 (mode-line, header-line, tool-bar): Same default as x for w32.
13120 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
13121 face-font-family-alternatives from working.
13122 * term/w32-win.el (mouse-set-font): Do not build fontset from
13123 chosen font.
13124
f43d79c1
GM
131252000-02-25 Sam Steingold <sds@goems.com>
13126
5d80cc9c 13127 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
f43d79c1 13128 properly.
fa78f71b 13129
8b7bc628 131302000-02-25 Richard M. Stallman <rms@gnu.org>
f43d79c1
GM
13131
13132 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
13133
4eb8436f
GM
131342000-02-25 Gerd Moellmann <gerd@gnu.org>
13135
13136 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
13137 writable.
13138
449c3c52 13139 * frame.el (busy-cursor-delay-seconds): New option.
f5b58615 13140
42088c12
GM
131412000-02-24 Gerd Moellmann <gerd@gnu.org>
13142
13143 * frame.el (show-cursor-in-non-selected-windows): New option.
13144
c60ea02e
GM
131452000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13146
13147 * diary-lib.el (include-other-diary-files): Undo the selective
13148 display in any included file and don't kill it.
13149
d066de8e
EZ
131502000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
13151
13152 * dired.el (dired-mode-map): Don't remove "Edit" from the menu
13153 bar. Menu items converted to (menu-item format, help strings
13154 added.
13155 [downcase, upcase]: Don't enable on MS-DOS.
13156 [symlink, symlinks]: Don't show if make-symbolic-link is not
13157 bound.
13158 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
13159
b6906b38
DL
131602000-02-23 Dave Love <fx@gnu.org>
13161
275cf1b2
DL
13162 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
13163 (backward-kill-word): Revert addition of * to interactive spec --
13164 it's a feature.
13165
13166 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
13167 (backward-kill-sentence, kill-sentence): Likewise.
13168
99d48056
DL
13169 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
13170 scratch buffer name.
13171 (gud-format-command): Use int-to-string in ?l case. Simplify
13172 slightly.
13173
13174 * term/w32-win.el (internal-face-interactive): Update prompt for
13175 new read-face-name.
13176
13177 * mail/footnote.el (footnote): Add :version to defgroup.
13178 (footnote-section-tag-regexp): Customize.
13179 (footnote-start-tag, footnote-end-tag): New option.
13180 (footnote-latin-regexp): New variable.
13181 (Footnote-latin): New function.
13182 (footnote-style-alist): Add element for latin style.
13183 (footnote-style): Moved.
13184 (Footnote-goto-footnote): Use eq to test arg.
13185
13186 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
13187
b6906b38
DL
13188 * emacs-lisp/byte-opt.el: Change old backquote syntax.
13189 (byte-compile-trueconstp): Include keywords.
13190 (byte-optimize-quote, byte-optimize-lapcode): Use
13191 byte-compile-const-symbol-p.
13192 (byte-optimize-char-before): New optimization.
13193
13194 * emacs-lisp/bytecomp.el: Change old backquote syntax.
13195 (byte-compile-const-symbol-p): New function.
13196 (byte-compile-constp, byte-compile-out-toplevel)
13197 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
13198 Use it.
13199
13200 * subr.el (define-key-after): Default AFTER to t. Doc fix.
13201
214f877f
KH
132022000-02-23 Kenichi Handa <handa@etl.go.jp>
13203
c709bcf1
KH
13204 * international/encoded-kb.el: Be sure to update minor-mode-alist
13205 and minor-mode-map-alist.
13206 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
13207 codes SS2 and SS3 correctly.
13208 (encoded-kbd-self-insert-ccl): New function.
13209 (encoded-kbd-setup-keymap): New function.
13210 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
13211 by calling encoded-kbd-setup-keymap.
13212
214f877f
KH
13213 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
13214 characters.
13215 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
13216 locally.
13217
b021ef18
DL
132182000-02-22 Dave Love <fx@gnu.org>
13219
13220 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
13221 (lisp-mode-map, lisp-interaction-mode-map): Define all inside
13222 defvar.
13223 (lisp-mode-syntax-table): Set up for #|...|# comments.
13224 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
13225 classes. Match `defface'.
13226 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
13227 (eval-defun-1): Fix for defcustom.
13228 (lisp-indent-region): Doc fix.
13229
13230 * subr.el (when, unless, split-string): Doc fix.
13231 (read-passwd): Move call of clear-this-command-keys to the right
13232 place.
13233 (replace-regexps-in-string): New function.
13234
14cc00ad
GM
132352000-02-22 Gerd Moellmann <gerd@gnu.org>
13236
13237 * help.el (describe-variable): Set syntax table to
13238 emacs-lisp-mode-syntax-table when moving forward over the
13239 symbol's name.
13240
47da5efa
DL
132412000-02-22 Dave Love <fx@gnu.org>
13242
13243 * xt-mouse.el: Doc fixes.
13244 (xterm-mouse-position-function): New function, replacing advice of
13245 mouse-position.
13246 (xterm-mouse-mode): Use it. Don't turn on under a window system.
13247
13248 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
13249
f0a6c717
GM
132502000-02-21 Gerd Moellmann <gerd@gnu.org>
13251
13252 * format.el (format-annotate-single-property-change): Handle
13253 properties.with dotted-list values.
13254 (format-proper-list-p): New function.
13255
13256 * enriched.el (enriched-face-ans): Handle '(foreground-color
13257 . COLOR) and (background-color . COLOR).
13258
2be80b63
DL
132592000-02-20 Dave Love <fx@gnu.org>
13260
13261 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
13262 and assignments to it.
13263 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
13264 current local map.
13265 (make-flyspell-overlay): Use it.
13266 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
13267
13268 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
13269 (lm-get-header-re): Defun, not defsubst.
13270 (lm-get-package-name): Defun, not defsubst. Simplify.
13271 (lm-version): Doc fix. Simplify.
13272 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
13273 (lm-crack-address, lm-last-modified-date, lm-commentary)
13274 (lm-verify, lm-synopsis): Simplify.
13275 (lm-report-bug): Require emacsbug. Use compose-mail.
13276
329eed9f
GM
132772000-02-20 Gerd Moellmann <gerd@gnu.org>
13278
13279 * dired.el (dired-mode): Call propertized-buffer-identification
13280 to set mode-line-buffer-identification to something having
13281 the right text properties.
13282
13283 * bindings.el (propertized-buffer-identification): New function.
13284
be5bb146
DL
132852000-02-20 Dave Love <fx@gnu.org>
13286
13287 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
13288 check for t-mouse too.
13289
13290 * cus-start.el: Make echo-keystrokes `number'.
13291
1d4311c3
EZ
132922000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
13293
13294 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
13295 Don't call ring-empty-p unless tags-location-ring is bound.
13296 From Noah Friedman <friedman@splode.com>.
13297
a23c5037
TTN
132982000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
13299
13300 * progmodes/hideshow.el (hs-flag-region): No longer use
13301 `intangible' overlay property.
13302
13303 (hs-toggle-hiding): New command.
13304 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
13305
13306 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
13307 Fix omission bug: Run `hs-minor-mode-hook' for both activation
13308 and deactivation.
13309
b6a22bf8
GM
133102000-02-18 Gerd Moellmann <gerd@gnu.org>
13311
13312 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
13313
d621caf7
GM
133142000-02-17 Gerd Moellmann <gerd@gnu.org>
13315
3c0ed7ce
GM
13316 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
13317
d621caf7
GM
13318 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
13319 of `*' to handle `(* ... *)' comments.
13320
538d88fb
EZ
133212000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
13322
53c80cf6 13323 * faces.el (list-faces-display): Use display-mouse-p instead of
f24fef2f 13324 window-system.
53c80cf6 13325
538d88fb
EZ
13326 * menu-bar.el (global-map): Menu-bar items converted to the new
13327 format (menu-item..., rearranged for better CUA compliance, and
13328 their names changed for better clarity. Help strings added.
13329
13330 * international/mule-cmds.el (mule-menu-keymap)
13331 (describe-language-environment-map, set-coding-system-map)
13332 (setup-language-environment-map): Convert to new (menu-item...
13333 form, add help strings. Change names of menu items for better
13334 clarity. "Mule" menu-bar item removed (it's now in the "Options"
13335 submenu).
13336
8389e1e2 133372000-02-17 Gerd Moellmann <gerd@gnu.org>
84fe35f0 13338
a23c5037 13339 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
8389e1e2 13340 within the code.
a23c5037 13341
8389e1e2 133422000-02-16 Dave Love <fx@gnu.org>
a23c5037 13343
84fe35f0
DL
13344 * faces.el: Don't require custom. Add more specific :groups to
13345 various deffaces.
13346 (set-face-attribute): Purecopy args.
13347 (read-face-name): Default to name at point and use it in prompt.
13348 Remove colon from arg in all callers.
13349 (list-faces-display): Hyperlink to face descriptions and customize
13350 buffers.
13351
b2aeee30
DL
133522000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
13353
13354 * wid-edit.el (widget-match-inline): An atom never matches a
13355 list.
13356
99e95407
GM
133572000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13358
82d2c7c5
DL
13359 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
13360 at ':' characters by call to split-string.
99e95407
GM
13361
133622000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13363
82d2c7c5 13364 * textmodes/bibtex.el: Added RCS version identification.
99e95407
GM
13365
133662000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13367
82d2c7c5
DL
13368 * textmodes/bibtex.el: Some temporary comments removed.
13369 (bibtex-field-name, bibtex-entry-type): Made the relationship
13370 explicit.
13371 (bibtex-field-const): Allow capital letters.
13372 (bibtex-start-of-string): Deleted because unused.
13373
13374 * textmodes/bibtex.el: Unified some nomenclature. We no longer
13375 use the term 'reference' to describe a bibtex entry as a whole.
13376 Further, reference keys are no longer called 'labels'.
13377 (bibtex-keys): Renamed to bibtex-reference-keys.
13378 (bibtex-reformat-previous-labels): Renamed to
13379 bibtex-reformat-previous-reference-keys.
13380 (bibtex-reference-type): Renamed to bibtex-entry-type.
13381 (bibtex-reference-head): Renamed to bibtex-entry-head.
13382 (bibtex-reference-maybe-empty-head): Renamed to
13383 bibtex-entry-maybe-empty-head.
13384 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
13385 (bibtex-search-reference): Renamed to bibtex-search-entry.
13386 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
13387 bibtex-enclosing-entry-maybe-empty-head.
13388 (bibtex-entry-field-alist, bibtex-entry-head,
13389 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
13390 bibtex-map-entries, bibtex-search-entry,
13391 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
13392 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
13393 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
13394 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
13395 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
13396 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
13397 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
99e95407
GM
13398
133992000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13400
82d2c7c5
DL
13401 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
13402 comment.
13403 (bibtex-format-field-delimiters): New function, functionality
13404 extracted from bibtex-format-entry.
13405 (bibtex-autokey-get-yearfield-digits): New function, functionality
13406 extracted from bibtex-autokey-get-yearfield.
13407
13408 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
13409 entries in order to avoid stack overflow in the regexp matcher if
13410 field contents become large.
13411 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
13412 bibtex-field-string-part-not-braced,
13413 bibtex-field-string-part-no-inner-braces,
13414 bibtex-field-string-part-1-inner-brace,
13415 bibtex-field-string-part-2-inner-braces,
13416 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
13417 bibtex-field-string-quoted, bibtex-field-string,
13418 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
13419 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
13420 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
13421 as parsing is now performed by the following functions.
13422 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
13423 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
13424 bibtex-parse-field-string, bibtex-search-forward-field-string,
13425 bibtex-parse-association, bibtex-field-name-for-parsing,
13426 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
13427 bibtex-search-forward-field, bibtex-search-backward-field,
13428 bibtex-start-of-field, bibtex-end-of-field,
13429 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
13430 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
13431 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
13432 bibtex-parse-string, bibtex-search-forward-string,
13433 bibtex-search-backward-string, bibtex-start-of-string,
13434 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
13435 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
13436 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
13437 entries. Instead of reporting the results of the parsing by
13438 match-beginning or match-end, these functions return data structures
13439 that hold the corresponding positions.
13440 (bibtex-enclosing-field): Changed to also report field boundaries by
13441 return values rather than by match-beginning or match-end. The
13442 following functions have been adapted to use the new parsing
13443 functions.
13444 (bibtex-skip-to-valid-entry, bibtex-search-reference,
13445 bibtex-enclosing-field, bibtex-format-entry,
13446 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
13447 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
13448 bibtex-print-help-message, bibtex-end-of-entry,
13449 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
13450 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
13451 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
13452 method for parsing.
13453 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
13454 bibtex-map-entries, bibtex-flash-head,
13455 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
13456 bibtex-autokey-change, bibtex-autokey-get-namefield,
13457 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
13458 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
13459 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
13460 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
13461 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
13462 order to make the new binding of case-fold-search immediately
13463 visible.
99e95407
GM
13464
134652000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13466
82d2c7c5
DL
13467 * textmodes/bibtex.el: Copyright notice is up to date.
13468 Added constant 'bibtex-maintainer-salutation.
99e95407 13469
82d2c7c5
DL
13470 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
13471 than make-temp-name, use match-string-no-properties and eliminate
13472 a quadratic behavior when building bibtex-strings.
99e95407 13473
82d2c7c5
DL
13474 * bibtex.el (bibtex-reference-key): Accept string entries whose
13475 reference key contains upper case letters.
99e95407
GM
13476
134772000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13478
82d2c7c5
DL
13479 * bibtex.el (bibtex-reference-head): Allow entries to start with
13480 a new line.
99e95407
GM
13481
134822000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13483
82d2c7c5
DL
13484 * bibtex.el: Hiding of entry bodies is not longer provided by
13485 bibtex.el directly. Instead the hideshow package can be used.
13486 Added a special bibtex entry to hs-special-modes-alist.
13487 (bibtex-hs-forward-sexp): Added for hideshow.el.
8389e1e2
GM
13488
134892000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13490
f24fef2f
SM
13491 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
13492 at ':' characters by call to split-string.
8389e1e2
GM
13493
134942000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13495
f24fef2f 13496 * textmodes/bibtex.el: Added RCS version identification.
8389e1e2
GM
13497
134982000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13499
f24fef2f
SM
13500 * textmodes/bibtex.el: Some temporary comments removed.
13501 (bibtex-field-name, bibtex-entry-type): Made the relationship
13502 explicit.
13503 (bibtex-field-const): Allow capital letters.
13504 (bibtex-start-of-string): Deleted because unused.
fa78f71b 13505
f24fef2f
SM
13506 * textmodes/bibtex.el: Unified some nomenclature. We no longer
13507 use the term 'reference' to describe a bibtex entry as a whole.
13508 Further, reference keys are no longer called 'labels'.
13509 (bibtex-keys): Renamed to bibtex-reference-keys.
13510 (bibtex-reformat-previous-labels): Renamed to
13511 bibtex-reformat-previous-reference-keys.
13512 (bibtex-reference-type): Renamed to bibtex-entry-type.
13513 (bibtex-reference-head): Renamed to bibtex-entry-head.
13514 (bibtex-reference-maybe-empty-head): Renamed to
13515 bibtex-entry-maybe-empty-head.
13516 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
13517 (bibtex-search-reference): Renamed to bibtex-search-entry.
13518 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
13519 bibtex-enclosing-entry-maybe-empty-head.
13520 (bibtex-entry-field-alist, bibtex-entry-head,
13521 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
13522 bibtex-map-entries, bibtex-search-entry,
13523 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
13524 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
13525 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
13526 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
13527 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
13528 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
13529 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
8389e1e2
GM
13530
135312000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13532
f24fef2f
SM
13533 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
13534 comment.
13535 (bibtex-format-field-delimiters): New function, functionality
13536 extracted from bibtex-format-entry.
13537 (bibtex-autokey-get-yearfield-digits): New function, functionality
13538 extracted from bibtex-autokey-get-yearfield.
fa78f71b 13539
f24fef2f
SM
13540 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
13541 entries in order to avoid stack overflow in the regexp matcher if
13542 field contents become large.
13543 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
13544 bibtex-field-string-part-not-braced,
13545 bibtex-field-string-part-no-inner-braces,
13546 bibtex-field-string-part-1-inner-brace,
13547 bibtex-field-string-part-2-inner-braces,
13548 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
13549 bibtex-field-string-quoted, bibtex-field-string,
13550 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
13551 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
13552 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
13553 as parsing is now performed by the following functions.
13554 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
13555 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
13556 bibtex-parse-field-string, bibtex-search-forward-field-string,
13557 bibtex-parse-association, bibtex-field-name-for-parsing,
13558 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
13559 bibtex-search-forward-field, bibtex-search-backward-field,
13560 bibtex-start-of-field, bibtex-end-of-field,
13561 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
13562 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
13563 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
13564 bibtex-parse-string, bibtex-search-forward-string,
13565 bibtex-search-backward-string, bibtex-start-of-string,
13566 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
13567 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
13568 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
13569 entries. Instead of reporting the results of the parsing by
13570 match-beginning or match-end, these functions return data structures
13571 that hold the corresponding positions.
13572 (bibtex-enclosing-field): Changed to also report field boundaries by
13573 return values rather than by match-beginning or match-end. The
13574 following functions have been adapted to use the new parsing
13575 functions.
13576 (bibtex-skip-to-valid-entry, bibtex-search-reference,
13577 bibtex-enclosing-field, bibtex-format-entry,
13578 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
13579 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
13580 bibtex-print-help-message, bibtex-end-of-entry,
13581 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
13582 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
13583 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
13584 method for parsing.
13585 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
13586 bibtex-map-entries, bibtex-flash-head,
13587 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
13588 bibtex-autokey-change, bibtex-autokey-get-namefield,
13589 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
13590 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
13591 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
13592 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
13593 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
13594 order to make the new binding of case-fold-search immediately
13595 visible.
8389e1e2
GM
13596
135972000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13598
f24fef2f
SM
13599 * textmodes/bibtex.el: Copyright notice is up to date.
13600 Added constant 'bibtex-maintainer-salutation.
fa78f71b 13601
f24fef2f
SM
13602 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
13603 than make-temp-name, use match-string-no-properties and eliminate
13604 a quadratic behavior when building bibtex-strings.
fa78f71b 13605
f24fef2f
SM
13606 * bibtex.el (bibtex-reference-key): Accept string entries whose
13607 reference key contains upper case letters.
8389e1e2
GM
13608
136092000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13610
f24fef2f
SM
13611 * bibtex.el (bibtex-reference-head): Allow entries to start with
13612 a new line.
8389e1e2
GM
13613
136142000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13615
f24fef2f
SM
13616 * bibtex.el: Hiding of entry bodies is not longer provided by
13617 bibtex.el directly. Instead the hideshow package can be used.
13618 Added a special bibtex entry to hs-special-modes-alist.
13619 (bibtex-hs-forward-sexp): Added for hideshow.el.
99e95407
GM
13620
136212000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
13622
82d2c7c5 13623 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
99e95407
GM
13624 proceedings entry type (for cross referencing). Thanks to Wagner
13625 Toledo Correa for the suggestion.
13626
82d2c7c5 13627 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
99e95407 13628
eae61d8f
KH
136292000-02-14 Kenichi Handa <handa@etl.go.jp>
13630
13631 * international/characters.el: Setup case table for Vietnamese.
13632
fb07a302
GM
136332000-02-12 Gerd Moellmann <gerd@gnu.org>
13634
13635 * uniquify.el (toplevel): Require CL at compile time.
13636 (uniquify-push): Removed.
13637
13638 * shadowfile.el (shadow-when): Removed.
13639
13640 * tempo.el (tempo-dolist, tempo-mapc): Removed.
13641 (tempo-process-and-insert-string): Use dolist instead of
13642 tempo-dolist.
13643
13644 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
13645 regexp for paragraph-start.
13646
13647 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
13648 commas as well.
13649
a0eddf92
DL
136502000-02-10 Dave Love <fx@gnu.org>
13651
13652 * wid-edit.el: (widgets) [defgroup]: Remove url link.
13653 (widget-color-choice-list, widget-color-history, widget-mouse-help):
13654 Deleted.
13655 (widget-specify-field, widget-specify-button): Don't use
13656 widget-mouse-help as help-echo property.
13657 (default): Use #'ignore for :validate and :mouse-down-action.
13658 (checkbox): Add help-echo.
13659 (widget-sexp-validate): Rewritten to clarify error messages.
13660 (character): Use char-valid-p in :match function.
13661 (widget-color-complete): Use facemenu-color-alist.
13662 (widget-color-action): Use facemenu-read-color.
13663
13664 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
13665 set up `caar' &c that we now have.
13666
82d2c7c5
DL
136672000-02-09 Ray Blaak <blaak@gnu.org>
13668
13669 * delphi.el: Make resourcestring a declaration region, like const
13670 and var.
13671
6cbc1482
DL
136722000-02-09 Dave Love <fx@gnu.org>
13673
13674 * bindings.el (mode-line-input-method-map): New variable.
13675 (mode-line-mule-info): Use it; fix last change.
13676 (mode-line-mode-menu): Move definition.
13677 (mode-line-mouse-sensitive-p): Deleted.
13678 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
13679 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
13680 level.
13681
13682 * startup.el (command-line-1): Don't call
13683 make-mode-line-mouse-sensitive.
13684
f7136ee8
GM
136852000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
13686
13687 * mail/rmail.el (rmail-retry-failure): Use
13688 rmail-beginning-of-message before rmail-toggle-header, because the
13689 former toggles headers.
13690
6e1d0d15
SM
136912000-02-06 Stefan Monnier <monnier@cs.yale.edu>
13692
fef8c55b
SM
13693 * diff-mode.el (diff-kill-junk): New interactive function.
13694 (diff-reverse-direction): Use delete-and-extract-region.
13695 (diff-post-command-hook): Restrict the area so that the hook also works
13696 outside of any diff hunk. This is necessary for the minor-mode.
13697 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
13698 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
13699
6e1d0d15
SM
13700 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
13701 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
13702 so that it can be used more easily in <foo>-mode-hook. Also make sure
13703 to avoid duplicate entries.
13704 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
13705 (font-lock-remove-keywords): Just as was done for `add', allow it to
13706 work even if font-lock-mode is nil. Also make sure we don't modify
13707 any pre-existing list by forcing a copy-sequence. Finally rename
13708 `major-mode' to `mode'.
13709 (font-lock-fontify-syntactic-anchored-keywords)
13710 (font-lock-fontify-anchored-keywords)
13711 (font-lock-fontify-keywords-region): Use line-end-position.
13712 Don't make `font-lock-multiline' local (it's now done in
13713 font-lock-set-defaults).
13714 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
13715 move the `font-lock-fontified' creation to inside the `unless'.
13716
a75dfea0
AI
137172000-02-06 Andrew Innes <andrewi@gnu.org>
13718
13719 * term/w32-win.el (x-handle-args): Comment out call to message,
13720 which occurs before window system is initialized.
13721
13722 * makefile.nt: Add support for recompiling lisp code.
13723
b85e9462
DL
137242000-02-04 Dave Love <fx@gnu.org>
13725
9ff33afb
DL
13726 * bindings.el (mode-line-mule-info): Fix/extend last change.
13727
b85e9462
DL
13728 * completion.el: Replace completion-dolist with dolist.
13729
13730 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
13731 dotimes.
13732
44dff075
CD
137332000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
13734
13735 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
13736 environment names before they go into the section regexp.
13737
13738 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
13739 char class in regexp.
13740
13741 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
13742 `case-fold-search' to nil.
13743
13744 * progmodes/idlwave.el (idlwave-template): Respect
13745 `idlwave-abbrev-change-case'.
13746 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
13747 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
13748 idlwave-while): respect `idlwave-reserved-word-upcase'.
13749 (idlwave-rw-case): New function.
13750 (idlwave-statement-match): Fixed problem with assignment regexp.
13751 (idlwave-font-lock-keywords): Improved regexp for keyword
13752 parameters.
a23c5037 13753 (idlwave-surround): New argument LENGTH to support padding of
44dff075
CD
13754 operators longer than 1 char.
13755
13756 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
13757 idlwave-shell-expression-overlay. Implemented printing of
13758 expressions on higher levels of the calling stack.
13759 (idlwave-shell-display-level-in-calling-stack): Restore stack
13760 level.
13761 (idlwave-retrieve-expression-from-level): New function.
13762 (idlwave-shell-last-calling-stack): Variable removed.
13763 (idlwave-shell-reset): Argument action reversed (`visible' to
13764 `hidden'). Also remove stop-line overlay.
13765 (idlwave-shell-calling-stack-routine): New variable.
13766 (idlwave-shell-parse-stack-and-display): Messages now display
13767 negative level numbers.
13768 (idlwave-shell-mode): Set `modeline-format'.
13769 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
13770 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
13771 21.
13772 (idlwave-shell-print-expression-function): New option.
a23c5037 13773
44dff075
CD
13774 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
13775 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
13776 `tool-bar' instead of `toolbar'.
13777
f26c34fd
DL
137782000-02-02 Dave Love <fx@gnu.org>
13779
13780 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
13781 emacs-lisp-mode-hook. Don't check for defalias being defined.
13782
13783 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
13784 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
13785 the new builtins directly.
13786
13787 * whitespace.el (whitespace): Add :version to defgroup.
13788
13789 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
13790 Doc fix.
13791
13792 * thingatpt.el (sexp-at-point, symbol-at-point)
13793 (number-at-point, list-at-point): Add autoload cookie.
13794
13795 * recentf.el (recentf): Add :version to defgroup.
13796
13797 * quickurl.el (quickurl): Add :version to defgroup.
13798
13799 * elide-head.el (elide-head): Use point-marker more.
13800
13801 * bs.el (bs): Add :version to defgroup.
13802
13803 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
13804
13805 * progmodes/delphi.el (delphi): Add :version to defgroup.
13806
d240a249
GM
138072000-02-02 Gerd Moellmann <gerd@gnu.org>
13808
13809 * ange-ftp.el (ange-ftp-write-region): Handle case that
13810 succeeding process operation sets a different coding system.
13811
13812 * calculator.el: New file.
13813
d5179a01
EZ
138142000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
13815
13816 * frame.el (frames-on-display-list, framep-on-display): New
13817 functions.
13818 (display-mouse-p, display-popup-menus-p, display-graphic-p)
13819 (display-selections-p, display-screens, display-pixel-width)
13820 (display-pixel-height, display-mm-width, display-mm-height)
13821 (display-backing-store, display-save-under, display-planes)
13822 (display-color-cells, display-visual-class): New functions.
13823
13824 * term/tty-colors.el (tty-color-gray-shades): New function.
13825
13826 * faces.el (display-color-p): Use framep-on-display.
13827 (display-grayscale-p): New function.
13828
968e00f0
DL
138292000-01-31 Dave Love <fx@gnu.org>
13830
13831 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
13832 (create-fontset-from-x-resource): Don't concat integers.
13833
2cb750ba
GM
138342000-01-31 Inge Frick <inge@nada.kth.se>
13835
13836 * view.el: Some changes in documentation. Removed some trailing
13837 whitespace. Changed some parameter names to agree with
13838 documentation.
13839 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
13840 window is not deleted. Modifies change 1998-04-26.
a23c5037 13841
74e9213b
GM
138422000-01-31 Gerd Moellmann <gerd@gnu.org>
13843
47569935
GM
13844 * windmove.el: New file.
13845
74e9213b
GM
13846 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
13847 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
2cb750ba 13848 progmodes/ebnf-yac.el: Update copyright and license info.
a23c5037 13849
74e9213b
GM
13850 * jit-lock.el (jit-lock-function): Widen before calculating end
13851 position.
13852 (jit-lock-stealth-chunk-start): Rewritten.
13853
13854 * info.el (Info-title-face-alist): Removed.
13855 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
13856 faces.
13857 (Info-fontify-node): Use these faces.
13858
994c5afe
GM
138592000-01-30 Gerd Moellmann <gerd@gnu.org>
13860
13861 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
13862 (cl-macro-list1): Recognize `&allow-other-keys' instead of
13863 `&allow-other-keywords'.
13864
13865 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
13866 the list of directories scanned heuristically.
13867
13868 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
13869 exist.
13870
f00276e3
JR
138712000-01-30 Jason Rumney <jasonr@gnu.org>
13872
13873 * w32-fns.el: Define w32-tty-standard-colors.
13874
13875 * startup.el (command-line): Use w32-tty-standard-colors when in
13876 w32 console mode.
13877
cc4dfff0
DL
138782000-01-30 Dave Love <fx@gnu.org>
13879
e645e77b
DL
13880 * jka-compr.el (jka-compr-load): Fix up load-history.
13881
cc4dfff0
DL
13882 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
13883
13884 * emacs-lisp/cl-macs.el: Revert previous change.
13885
16215eb0
DL
138862000-01-29 Dave Love <fx@gnu.org>
13887
13888 * facemenu.el: Purecopy various strings.
13889
13890 * timezone.el (timezone-fix-time): Window against 69 for two-digit
13891 years. Deal with three-digit years.
13892
13893 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
13894 defconst, purecopy.
13895 (help-back-label): Purecopy it.
13896
bbd9b566
GM
138972000-01-18 Gerd Moellmann <gerd@gnu.org>
13898
13899 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
13900 variable. If non-nil, order the buffer list according to the
13901 currently selected frame.
13902 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
13903 non-nil, pass the selected frame to function buffer-list.
a23c5037 13904
887448e1
GM
139052000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13906
13907 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
13908
7df85084
DL
139092000-01-28 Dave Love <fx@gnu.org>
13910
142e109c
DL
13911 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
13912
7df85084
DL
13913 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
13914 Don't use lisp-indent-hook property.
13915 (cl-abs): Remove.
13916
13917 * subr.el: Move out indent and edebug specs for when and unless.
13918
13919 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
13920 when, unless.
13921
13922 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
13923 unless, when.
13924
3b43c01c
GM
139252000-01-28 Gerd Moellmann <gerd@gnu.org>
13926
d060bc9f
GM
13927 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
13928 `collecting' as synonym for `collect'.
13929
13930 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
13931 for the case it contains spaces.
13932
13933 * simple.el (what-cursor-position): Change formatting of
13934 messages.
13935
b02786f9
GM
13936 * frame.el (delete-other-frames): New function.
13937 (toplevel): Bind it to C-x 5 1.
13938
efd68b8a
GM
13939 * sort.el (sort-numeric-base): New option.
13940 (sort-numeric-fields): If number starts with `0' or `0[xX[',
13941 interpret it as octal or hexadecimal. Use sort-numeric-base
13942 as default base.
13943
3b43c01c
GM
13944 * progmodes/glasses.el: New file.
13945
984ae001
GM
139462000-01-27 Gerd Moellmann <gerd@gnu.org>
13947
a0b796e3
GM
13948 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
13949 userids differently.
13950
984ae001
GM
13951 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
13952 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
13953 progmodes/ebnf-yac.el: New files.
13954
6c67ddee
DL
139552000-01-26 Dave Love <fx@gnu.org>
13956
13957 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
13958 on a function with an empty body. [From Eric Ludlam.]
13959
4e6473c8
GM
139602000-01-25 Andre Spiegel <spiegel@gnu.org>
13961
13962 * vc.el (vc-version-diff): Make sure file name is expanded.
13963
e12489f9
GM
139642000-01-25 Gerd Moellmann <gerd@gnu.org>
13965
13966 * scroll-bar.el (scroll-bar-timer): Variable removed.
13967 (scroll-bar-toolkit-scroll): Don't use a timer.
13968
8dbe2b07
KH
139692000-01-25 Kenichi Handa <handa@etl.go.jp>
13970
13971 * language/thai-util.el (thai-composition-function): Delete
13972 superfluous `a'.
13973
26ef1c87
DL
139742000-01-24 Dave Love <fx@gnu.org>
13975
13976 * fortran.el (fortran-mode): Use beginning-of-defun-function,
13977 end-of-defun-function.
13978
13979 * font-lock.el (turn-on-font-lock): Don't depend on window-system
13980 &c.
13981
7ed4e9a7
JR
139822000-01-22 Jason Rumney <jasonr@gnu.org>
13983
13984 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
13985 conflicts with new face support.
13986
8b7bc628 139872000-01-22 Richard M. Stallman <rms@gnu.org>
d2ce3151
RS
13988
13989 * replace.el (query-replace): Rename last arg to DELIMITED.
13990 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
13991 (query-replace-regexp): Likewise.
13992
8b7bc628 139932000-01-20 Richard M. Stallman <rms@gnu.org>
2d5e9b54 13994
02b14400
RS
13995 * subr.el (with-syntax-table): Use make-symbol, not gensym.
13996
5bb6f079
RS
13997 * emacs-lisp/lisp.el (beginning-of-defun-function):
13998 Variable renamed from beginning-of-defun.
13999 Do not call make-variable-buffer-local.
14000 (beginning-of-defun-raw): Use new variable name; doc fix.
14001 (beginning-of-defun): Doc fix.
14002 (end-of-defun-function): Variable renamed from end-of-defun.
14003 Do not call make-variable-buffer-local.
14004 (end-of-defun): Use new variable name; doc fix.
14005
02b14400
RS
14006 * subr.el (dolist, dotimes): Copied from cl-macs.el
14007 and made to work.
2d5e9b54 14008
a23c5037 14009 * mail/undigest.el (rmail-digest-end-regexps):
2d5e9b54
RS
14010 Variable replaces rmail-digest-end-regexp.
14011 Allows multiple regexps for detecting the end line.
14012 (undigestify-rmail-message): Corresponding changes.
14013
60af03f1
DL
140142000-01-19 Dave Love <fx@gnu.org>
14015
fe5d99e1
DL
14016 * files.el (user-init-file): Don't declare here -- is primitive.
14017
60af03f1
DL
14018 * startup.el (command-line): Check for compiled user-init-file and
14019 set to uncompiled version if necessary.
14020
72dbbc7d
GM
140212000-01-18 Gerd Moellmann <gerd@gnu.org>
14022
6a1950ec
GM
14023 * mail/undigest.el (rmail-digest-end-regexp): New user option.
14024 (undigestify-rmail-message): Use it.
14025
72dbbc7d
GM
14026 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
14027
fbe91bbd
GM
140282000-01-17 Gerd Moellmann <gerd@gnu.org>
14029
14030 * tmm.el (tmm-goto-completions): Adapt to prompt being part
14031 of mini-buffer.
14032
33a6685b
GM
140332000-01-14 Gerd Moellmann <gerd@gnu.org>
14034
b3303df7
GM
14035 * emacs-lisp/copyright.el (copyright-update): Removed the
14036 requirement for a trailing space from `copyright-regexp', to
14037 support copyrights with owner specified on a separate line..
a23c5037 14038
3c4c8064
GM
14039 * align.el: New file.
14040
33a6685b
GM
14041 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
14042
14043 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
14044
044a4975
DL
140452000-01-13 Dave Love <fx@gnu.org>
14046
14047 * ph.el: Removed. (Obsoleted by EUDC.)
14048
0a352cd7
GM
140492000-01-13 Gerd Moellmann <gerd@gnu.org>
14050
14051 * net/eudc.el (toplevel): Remove autoloaded code installing
14052 menu with easymenu, because that causes build problems.
14053
14054 * frame.el (frame-notice-user-settings): New variable.
14055 (frame-notice-user-settings): Don't modify frame parameters
14056 if called a second time.
14057
8b7bc628 140582000-01-13 Richard M. Stallman <rms@gnu.org>
0a352cd7
GM
14059
14060 * frame.el (frame-notice-user-settings):
14061 Notice default-frame-parameters even for non-window frames.
14062
feb450e0
GM
140632000-01-13 Gerd Moellmann <gerd@gnu.org>
14064
14065 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
14066 for Emacs.
14067 (eudc-bob-can-display-inline-images): Extend for Emacs.
14068 (eudc-bob-toggle-inline-display): Ditto.
14069 (eudc-bob-display-jpeg): Ditto.
14070
99c6d63b
GM
140712000-01-12 Gerd Moellmann <gerd@gnu.org>
14072
7970b229
GM
14073 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
14074 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
14075 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
a23c5037 14076
e4936aa9
GM
14077 * add-log.el (add-change-log-entry): Fix error trying an `(insert
14078 nil)'.
14079
14080 * subdirs.el: Add `net' directory.
14081
133c9e59
GM
14082 * net: New directory.
14083
99c6d63b
GM
14084 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
14085 eval-last-sexp. Don't bind debug-on-error here.
14086 (eval-last-sexp): New function. Bind debug-on-error if
14087 eval-expression-debug-on-error is non-nil.
14088 (eval-defun-2, eval-defun): Likewise.
14089
14090 * simple.el (eval-expression): Don't bind debug-on-error if
14091 eval-expression-debug-on-error is nil. Detect changed
14092 debug-on-error, and propagate new value to global binding, if
14093 eval-expression-debug-on-error is non-nil,
14094 (eval-expression-debug-on-error): Change doc string.
a23c5037 14095
8b7bc628 140962000-01-11 Richard M. Stallman <rms@gnu.org>
83c8f461
RS
14097
14098 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
14099
14100 * emacs-lisp/lisp-mode.el (with-syntax-table):
14101 Set up lisp-indent-function property.
14102
14103 * subr.el (with-syntax-table): Moved from simple.el.
14104
14105 * simple.el (with-syntax-table): Moved to subr.el.
14106
7e3c74fa
GM
141072000-01-11 Gerd Moellmann <gerd@gnu.org>
14108
1fab1775
GM
14109 * tmm.el (tmm-shortcut): Delete region after prompt instead
14110 of erasing buffer.
14111
7e3c74fa 14112 * textmodes/fill.el (fill-common-string-prefix): New function.
133c9e59
GM
14113 (fill-context-prefix): Use the longest common prefix of first
14114 and second line fill prefix, if there is one.
7e3c74fa 14115
8b7bc628 141162000-01-11 Richard M. Stallman <rms@gnu.org>
782bd3ec
RS
14117
14118 * array.el (array-mode): Don't use make-variable-buffer-local.
14119 Use make-local-variable for `truncate-lines'.
14120
aa705642 141212000-01-11 Jari Aalto <jari.aalto@poboxes.com>
57df2446 14122
aa705642
GM
14123 * add-log.el (add-log-current-defun): Handle user-defined
14124 add-log-current-function returning nil,
a23c5037 14125
57df2446 14126 * add-log.el (add-change-log-entry): Insert version number
aa705642 14127 if having found a current function
c1356086
GM
14128
14129 * add-log.el (add-log-current-defun): Call
14130 `add-log-current-defun-function'. Try matches at level 0 and
14131 level 1. Strip whitespace from defun found.
a23c5037 14132
1d8c59e9
RS
141332000-01-10 John Wiegley <johnw@gnu.org>
14134
14135 * allout.el (isearch-done/outline-provisions): Added `edit'
14136 argument to correspond with the current definition of
14137 `isearch-done'.
14138
8cf87e9b
DL
141392000-01-10 Dave Love <fx@gnu.org>
14140
14141 * elide-head.el (elide-head): Use point-marker, not point.
14142
9050446c
GM
141432000-01-10 Gerd Moellmann <gerd@gnu.org>
14144
8321b22a
GM
14145 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
14146 before and after the year 2000.
a23c5037 14147
9050446c
GM
14148 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
14149 Add ispell- prefix.
14150
141512000-01-10 Ken Stevens <k.stevens@ieee.org>
14152
14153 * ispell.el: Only define dictionaries in menus when they exist.
14154 (version18p): New variable.
14155 (version20p): New variable.
14156 (xemacsp): New variable.
14157 (ispell-choices-win-default-height): Fix for XEmacs visibility.
14158 (ispell-dictionary-alist1): Added Brasileiro dictionary.
14159 (ispell-dictionary-alist6): Russian command lines no longer accept
f24fef2f 14160 run-together words.
9050446c
GM
14161 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
14162 (ispell-dictionary-alist): Add koi8-r to customize definition.
14163 (check-ispell-version): Added documentation string. Returns
f24fef2f 14164 library path when called non-interactively.
9050446c
GM
14165 (ispell-menu-map-needed): Uses new variables.
14166 (ispell-library-path): New variable.
14167 (ispell-decode-string): XEmacs fix for bogus variable bindings.
14168 (ispell-word): Improved documentation string. Test for valid
14169 character mappings. Correctly check typed in word changes that can
14170 result in single words split into multiple words. Returns
14171 replacement word.
14172 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
14173 replace in recursive query replace mode. Help message for
14174 recursive edit mode.
14175 (ispell-show-choices): Protect against bad framepop bindings.
14176 (ispell-help): Fix to work with XEmacs.
14177 (ispell-highlight-spelling-error): Use new variables.
14178 (ispell-overlay-window): Fix to work with XEmacs.
14179 (ispell-parse-output): Passed and returns location information
14180 tracking spelling corrections. Doesn't recheck same word on
14181 current line.
14182 (ispell-init-process): Protect against bogus XEmacs variable binding.
14183 Fix call to single argument in sleep-for. Use new variables.
14184 (ispell-region): Passed and returns location information tracking
14185 spelling corrections. Doesn't check same word on current line.
14186 Improved documentation string. Doesn't resend a line already
14187 checked to the ispell process - fixes bug in LaTeX parsing.
14188 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
14189 (ispell-skip-region): No longer skips <TT> in SGML.
14190 (ispell-process-line): Tracks location information with spelling
14191 corrections. Added documentation string. Accounts for words
14192 already accepted on this line. Don't allow query-replace on line
14193 starting with math characters. Doesn't resend a line already sent
14194 to ispell process. Fixes alignment error bug.
a23c5037 14195
8b7bc628 141962000-01-10 Richard M. Stallman <rms@gnu.org>
6d0c28f4 14197
a23c5037 14198 * dired-x.el (dired-guess-shell-alist-default):
8f3efb4e
RS
14199 Suggest xloadimage, which is free, not xv, which isn't.
14200
a23c5037 14201 * ange-ftp.el (ange-ftp-file-name-nondirectory):
6d0c28f4
RS
14202 Don't ever include the host name or user name in the value.
14203
9ed79f5d
GM
142042000-01-09 Gerd Moellmann <gerd@gnu.org>
14205
14206 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
14207 of a real newline.
14208
b950abb1
GM
142092000-01-09 Stephen Eglen <stephen@gnu.org>
14210
a23c5037 14211 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
b950abb1
GM
14212 for .png files.
14213
3c708e98
GM
142142000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
14215
14216 * cus-edit.el (custom-hook-convert-widget): Fix comment.
14217
bf61662d
GM
142182000-01-09 Gerd Moellmann <gerd@gnu.org>
14219
f1d851ae
GM
14220 * progmodes/cperl-mode.el: Replace ^F with ^L.
14221
bf61662d 14222 * sendmail.el (toplevel): Provide `sendmail' when compiling
a23c5037 14223 before `require'ing rmail and mailalias to prevent infinite
bf61662d
GM
14224 recursion.
14225
c65d14ee
DL
142262000-01-08 Dave Love <fx@gnu.org>
14227
8cf87e9b
DL
14228 * emacs-lisp/backquote.el: Remove inappropriate customization
14229 (allowing custom.el to use backquote).
c65d14ee 14230
83de2ebc
DL
142312000-01-07 Dave Love <fx@gnu.org>
14232
14233 * add-log.el (add-log-debugging): Deleted.
14234 (add-change-log-entry): Treat a backup FILE-NAME as its parent
14235 file. Remove debugging code.
14236 (change-log-get-method-definition, change-log-name): Add doc.
14237 (change-log-sortable-date-at): New function.
14238 (change-log-merge): New command.
14239
14240 * time.el (display-time-string-forms): Make the Mail string active.
14241 (display-time-update): Provide help-echo for load average.
14242
14243 * bindings.el (make-mode-line-mouse2-map): New function.
14244 (mode-line-modified): Use it and simplify.
14245 (mode-line-mule-info): Provide help-echo info.
14246 (minor-mode-alist): Activate the strings.
14247 (make-mode-line-mouse-sensitive): Simplify for
14248 mode-line-buffer-identification.
14249
c1475eae
GM
142502000-01-07 Gerd Moellmann <gerd@gnu.org>
14251
14252 * play/pong.el: New file.
14253
83de2ebc
DL
142542000-01-06 Dave Love <fx@gnu.org>
14255
14256 * array.el: Assorted cleanups for compiler warnings, doc strings,
14257 `array-' prefix for symbols.
14258
142592000-01-05 Dave Love <fx@gnu.org>
14260
14261 * textmodes/outline.el (outline-mode-menu-bar-map): Add
14262 outline-headers-as-kill.
14263 (outline-mode): Define imenu-generic-expression.
14264 (outline-headers-as-kill): New command.
14265
14266 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
14267 from paragraph-start.
14268 (paragraph-indent-minor-mode): New command.
14269
14270 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
14271 M-C-e, M-C-h, C-j, C-xnd, TAB.
14272 (fortran-mode): Set beginning-of-defun, end-of-defun.
14273 (fortran-column-ruler): Simplify.
14274 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
14275 (fortran-with-subprogram-narrowing): Likewise.
14276 (fortran-indent-subprogram): Call mark-defun.
14277 (fortran-check-for-matching-do): Change narrowing.
14278
14279 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
14280 (cl-lucid-hash-tag): Delete.
14281 (cl-hash-table-p): Correct test for native table.
14282 (cl-hash-table-count): Use hash-table-count.
14283
14284 * browse-url.el (browse-url): Fix case of
14285 browse-url-browser-function being an alist.
14286
676ac023
CD
142872000-01-05 Carsten Dominik <cd@gnu.org>
14288
c1475eae
GM
14289 * textmodes/reftex-vars.el (reftex-parse-file-extension)
14290 (reftex-index-phrase-file-extension): New options.
676ac023
CD
14291
14292 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
c1475eae 14293 Use new option `reftex-index-phrase-file-extension'.
676ac023
CD
14294
14295 * textmodes/reftex.el (reftex-access-parse-file): Use new option
c1475eae 14296 `reftex-parse-file-extension'.
eb483e17 14297
88807984
DL
142982000-01-05 Dave Love <fx@gnu.org>
14299
83de2ebc 14300 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
88807984
DL
14301 (beginning-of-defun-raw): Use it.
14302 (end-of-defun): New variable.
14303 (end-of-defun): Use it.
14304 (check-parens): New command.
14305
1362aeb4
TTN
143062000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
14307
c1475eae
GM
14308 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
14309 (hs-show-block): Don't use `mapcar' when not accumulating.
1362aeb4 14310
7ddafb95
TTN
14311 Fix buglet in local variables initialization.
14312
7334aa99
AS
143132000-01-05 Andreas Schwab <schwab@suse.de>
14314
14315 * hscroll.el (hscroll): Doc fix.
14316
b12e24cd
CD
143172000-01-05 Carsten Dominik <cd@gnu.org>
14318
14319 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
14320 idlw-toolbar.
14321
14322 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
14323 file idlw-rinfo.el.
1362aeb4
TTN
14324 (idlwave-customize): load must read file idlw-shell.el.
14325 (idlwave-create-customize-menu): load must read file idlw-shell.el.
b12e24cd 14326
d6226972
CD
143272000-01-05 Carsten Dominik <dominik@astro.uva.nl>
14328
14329 * progmodes/idlw-shell.el: Also provide idlwave-shell
14330 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
14331 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
14332
14333 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
14334 both reftex-dcr and reftex-vcr.
1362aeb4 14335
d6226972
CD
14336 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
14337
6ddb893f 143382000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
894ee0a2
KH
14339
14340 * ps-print.el: PostScript code now is in separate files, doc fix.
14341 (ps-print-version): New version number (5.0.3).
14342 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
14343 local.
14344 (ps-spool-config): Initialization fix.
c1475eae
GM
14345 (ps-print-prologue-1, ps-print-prologue-2)
14346 (ps-print-duplex-feature): PostScript code moved to separated file.
894ee0a2
KH
14347 (ps-background-image): Little code reformating.
14348 (ps-begin-file, ps-begin-job): Fix code.
88807984 14349 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
894ee0a2
KH
14350 (ps-prologue-file): New fun.
14351
ae833aae
KH
143522000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14353
c1475eae 14354 * ps-vars.el: Eliminated.
ae833aae
KH
14355
14356 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
14357 `;;;###autoload'.
14358
14359 * ps-print.el: ps-vars eliminated, doc fix.
14360 (ps-print-version): New version number (5.0.2).
14361 (ps-spool-config): Initialization fix.
14362 (ps-print-customize): New fun.
14363
560a7bd2
GM
143642000-01-04 Gerd Moellmann <gerd@gnu.org>
14365
14366 * autorevert.el (auto-revert-mode): Return value of
14367 auto-revert-mode.
14368
f45dd0f4
DL
143692000-01-04 Dave Love <fx@gnu.org>
14370
fae2ac05
DL
14371 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
14372 menu items.
f45dd0f4 14373
61255981
DL
143742000-01-03 Dave Love <fx@gnu.org>
14375
88807984 14376 * elide-head.el (elide-head) [defgroup]: Add :version.
c282ca4d 14377
83de2ebc 14378 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
61255981
DL
14379 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
14380 `cl-hash-table-p', not `hash-table-p'.
14381 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
14382
c182a70f
EZ
143832000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14384
14385 * faces.el (face-read-integer, read-face-attribute)
14386 (color-defined-p, color-values): unspecified-{f,b}g are now
14387 strings.
14388
047f434a
GM
143892000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
14390
14391 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
14392 at comment end, and re-insert them after filling.
14393
bab531e2
EZ
143942000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14395
14396 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
f7002084
EZ
14397 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
14398 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
bab531e2 14399
d684c676
EZ
144002000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14401
14402 * term/x-win.el (xw-defined-colors): Call color-supported-p,
14403 the new name of face-color-supported-p.
14404
14405 * term/w32-win.el (xw-defined-colors): Likewise.
14406
0aad4805
EZ
144072000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
14408
14409 * simple.el (completion-setup-function): Count completion-size
14410 from minibuffer-prompt-end, not from point-min.
14411
5fe1d139
EZ
144122000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
14413
14414 * faces.el (read-face-attribute, defined-colors, color-defined-p):
14415 Pass the frame to tty-color-* functions.
14416 (display-color-p, frame-set-background-mode): Pass the frame to
14417 tty-display-color-p.
14418
14419 * term/tty-colors.el (tty-defined-color-alist): Renamed from
14420 tty-color-alist.
14421 (tty-color-alist, tty-modify-color-alist): New functions.
14422 (tty-color-define, tty-color-clear, tty-color-approximate)
14423 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
14424 an optional parameter FRAME.
14425
162dec01
GM
144262000-01-01 Gerd Moellmann <gerd@gnu.org>
14427
27189709
GM
14428 * image.el (create-image, defimage): Don't assume image data is a
14429 string.
14430
162dec01
GM
14431 * image.el (defimage): Handle specifications containing :data
14432 instead of :file.
14433 (image-type-from-data): New function.
14434 (image-type-from-file-header): Use it.
14435 (create-image): Add parameter DATA-P.
1362aeb4 14436
bea56df7 14437See ChangeLog.8 for earlier changes.
25a6fab1
KH
14438
14439;; Local Variables:
e64c3a75 14440;; coding: iso-2022-7bit
25a6fab1 14441;; End: