(bs-cycle-next, bs-cycle-previous): Fix handling of
[bpt/emacs.git] / lisp / ChangeLog
CommitLineData
180d5509
GM
12001-03-21 Gerd Moellmann <gerd@gnu.org>
2
170a9e70
GM
3 * Makefile.in, makefile.w32-in (COMPILE_FIRST): Add cc-mode.el
4 and cc-vars.el.
5
180d5509
GM
6 * mail/sendmail.el (sendmail-send-it): Don't parse Resent-*
7 headers. Always invoke sendmail with option -t.
8
130c507e
GM
92000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
10
11 * Release of cc-mode 5.28.
12
132000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
14
15 * cc-mode.el, cc-vars.el (c-common-init, c-default-style):
16 Removed the hardcoded switch to "java" style in Java mode.
17 It's instead taken care of by the default value for
18 c-default-style.
19
130c507e
GM
202000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
21
22 * cc-align.el (c-lineup-math): Fix bug where lineup was
23 triggered by equal signs in string literals.
24
252000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
26
27 * cc-cmds.el (c-fill-paragraph): Fixed bug in the paragraph
28 limit detection when at the ends of the buffer.
29
30 * cc-engine.el (c-guess-basic-syntax): Removed bogus check for
31 "for" statement clause in case 7F; a better one is done
32 earlier in case 7D anyway.
33
342000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
35
36 * cc-cmds.el (c-guess-fill-prefix): Improved the heuristics
37 somewhat more and did a small optimization.
38
392000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
40
41 * cc-cmds.el (c-beginning-of-statement, c-end-of-statement):
42 Use the limit argument only to limit the syntactic context
43 search, not to limit the actual movement.
44
45 * cc-cmds.el (c-beginning-of-statement): Move by sentence
46 inside multiline strings, just like in comments. Also various
47 fixes to the paragraph and comment prefix recognition, block
48 comment ender handling etc.
49
502000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
51
52 * cc-cmds.el (c-fill-paragraph): Take more care to preserve
53 the relative position of the point.
54
55 * cc-cmds.el (c-electric-continued-statement): New function to
56 use as abbrev hook to reindent for keywords such as "else"
57 that continues an earlier statement.
58
59 * cc-menus.el (cc-imenu-c++-generic-expression): Treat structs
60 like classes.
61
62 * cc-mode.el (c-mode, c++-mode, java-mode, objc-mode)
63 (pike-mode): Populate the default abbrev tables to reindent for
64 keywords such as "else" that can continue earlier statements.
65 Abbrev mode is therefore turned on by default now. (Note that
66 this doesn't apply to idl-mode, since IDL afaik doesn't have
67 statements at all.)
68
692000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
70
71 * cc-engine.el (c-inside-bracelist-p): Fix for handling
72 bracelists where the declaration contains template arguments.
73
742000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
75
76 * cc-cmds.el (c-comment-indent): Use
77 `c-get-syntactic-indentation' to correctly calculate the
78 syntactic indentation. Fixes bug with lineup functions that
79 return vectors.
80
81 * cc-engine.el (c-get-syntactic-indentation): Split the
82 indentation sum calculation from `c-indent-line' to a separate
83 function.
84
852000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
86
87 * cc-cmds.el (c-beginning-of-statement, c-comment-indent):
88 Fixed places where it was assumed that preprocessor directives
89 have to start in column zero.
90
91 * cc-engine.el (c-beginning-of-member-init-list): Handle C++
92 template arguments after a class identifier properly.
93
94 * cc-engine.el (c-guess-basic-syntax): Treat initializer brace
95 lists for `new Foo[]' constructs in Java as expressions and
96 not top level definition brace lists on the top level, so that
97 they'll get indented consistently with the same type of
98 expression in a normal block.
99
1002000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
101
102 * cc-cmds.el (c-fill-paragraph): The kludge that checks
103 whether the adaptive filling package fails to keep the comment
104 prefix is now kludged further to check for filladapt-mode
105 which doesn't have that problem. This is really icky, but it's
106 the only way that works with the current misfeatures/bugs in
107 both adaptive-fill-mode and filladapt-mode.
108
109 * cc-cmds.el (c-fill-paragraph): Made the way the paragraph
110 around point is recognized more robust.
111
1122000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
113
114 * cc-cmds.el, cc-engine.el, cc-lobotomy.el (c-state-cache)
115 (c-in-literal-cache, c-auto-fill-prefix, c-lit-limits)
116 (c-lit-type): Fixed all internal variables used dynamically so
117 that they are always bound.
118
119 * cc-cmds.el, cc-engine.el: Improved recovery of syntactic
120 errors:
121
122 (c-indent-region): Fixed reporting of syntactic errors so that
123 the region is fully reindented even when an error occurs. The
124 last syntactic error is printed afterwards. Also cleanup up a
125 whole lot of code that tried to optimize indentation of whole
126 sexps but in reality accomplishes nothing.
127
128 (c-indent-sexp): Use c-indent-region.
129
130 (c-parsing-error): Changed this variable to hold the message
131 for any syntactic error that is discovered.
132
133 (c-parse-state): Search backward from point instead of the bod
134 position when the latter is invalid. This makes CC Mode
135 recover faster when there are unbalanced close braces.
136
137 (c-backward-to-start-of-if): Use c-parsing-error to report
138 dangling "else" clauses instead of throwing an error, and fall
139 back to a reasonable position.
140
141 (c-indent-line): Added argument to avoid reporting syntactic
142 errors.
143
144 (c-show-syntactic-information): Don't report any syntactic
145 errors.
146
1472000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
148
149 * cc-cmds.el (c-beginning-of-statement): Fixed bugs with
150 paragraph recognition when moving by sentence in literals.
151
152 * cc-langs.el (c-Java-javadoc-paragraph-start): Modified
153 paragraph start regexp for javadoc to recognize javadoc markup
154 in general instead of a specific set of keywords, to be more
155 future-safe.
156
157 (c-Pike-pikedoc-paragraph-start)
158 (c-Pike-pikedoc-paragraph-separate): New regexps to recognize
159 pikedoc markup.
160
161 * cc-mode.el: Fixed initialization and use of
162 c-current-comment-prefix.
163
164 (pike-mode): Initialize paragraph settings pikedoc
165 recognition.
166
167 * cc-vars.el (c-default-style): Made a nicer Customize widget.
168
169 (c-comment-prefix-regexp): Made it possible to use an
170 association list on this to specify mode specific regexps.
171 The default value now use a special regexp in Pike mode to
172 recognize pikedoc markup.
173
174 (c-current-comment-prefix): New variable containing the actual
175 regexp from c-comment-prefix-regexp for the current buffer.
176
1772000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
178
179 * cc-cmds.el (c-electric-brace): Fixed check for special brace
180 lists: We can't look at the syntax, since a brace list can get
181 recognized as a plain statement-cont.
182
183 * cc-engine.el (c-guess-basic-syntax): Fixed bug where a
184 special brace list opener broken over two lines got recognized
185 as a statement on the second line. Case 9A changed.
186
1872000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
188
189 * cc-cmds.el (c-electric-brace): Fixed bug in c-state-cache
190 adjustment after line is reindented.
191
1922000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
193
194 * cc-defs.el (c-point): Added optional argument for position
195 to use instead of the current point.
196
197 * cc-defs.el, cc-engine.el (c-add-class-syntax): Do not add
198 the in-expression block symbols when the construct starts at
199 boi, to avoid the extra level of indentation in that case.
200 Cases 4, 16A and 17E affected.
201
2022000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
203
204 * cc-cmds.el: Use `indent-according-to-mode' instead of direct
205 calls to `c-indent-line', to adhere better to Emacs
206 conventions.
207
208 * cc-engine.el (c-indent-line): Use the syntax already bound
209 to `c-syntactic-context', if there is any.
210
2112000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
212
213 * cc-engine.el (c-get-offset): Fixed bug where the indentation
214 wasn't added up correctly when a lineup function returned nil.
215
2162000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
217
218 * cc-engine.el (c-collect-line-comments): Fixed bug where
219 empty lines were ignored when collecting line comments
220 backwards.
221
2222000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
223
224 * cc-align.el (c-lineup-dont-change): Return an absolute
225 indentation column to work correctly in the case when several
226 syntactic elements are processed for the same line.
227
228 * cc-engine.el, cc-styles.el, cc-vars.el (c-evaluate-offset)
229 (c-get-offset, c-indent-line, c-valid-offset, c-read-offset)
230 (c-set-offset): Added absolute indentation column settings by
231 using the vector type.
232
130c507e
GM
2332000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
234
235 * cc-cmds.el, cc-vars.el (c-electric-paren, c-cleanup-list):
236 Implemented two new cleanups `space-before-funcall' and
237 `compact-empty-funcall'.
238
130c507e
GM
2392000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
240
241 * cc-defs.el (c-paren-re, c-identifier-re): Two new macros for
242 helping building regexps.
243
244 * cc-engine.el (c-on-identifier): New function for detecting
245 identifiers. It takes keywords into account.
246
247 * cc-langs.el, cc-mode.el: Added regexps for complete keyword
248 lists. `c-keywords' is set to a regexp matching all keywords
249 in the current language.
250
2512000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
252
253 * cc-engine.el (c-beginning-of-statement-1): Added '#' to the
254 list of characters to skip backwards over at the beginning of
255 a statement, since it can precede string literals in Pike.
256
2572000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
258
259 * cc-cmds.el (c-guess-fill-prefix): Fixed bug with prefix
260 recognition when standing on the last line in a C++ comment
261 with nothing but whitespace after the prefix.
262
263 * cc-engine.el (c-backward-to-start-of-if): Fixed bug when
264 given no limit argument.
265
2662000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
267
268 * cc-engine.el (c-inside-bracelist-p): Fixed brace list
269 recognition for the `[]= operator symbol in Pike.
270
2712000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
272
273 * cc-bytecomp.el (cc-eval-when-compile): New macro that works
274 around a bug in `eval-when-compile' in the byte compiler.
275
276 * cc-engine.el (c-forward-token-1): Fixed bug with return
277 value when count is zero and there's no token start within the
278 limit.
279
280 (c-guess-basic-syntax): Don't add 'comment-intro to lines with
281 "prefix comments", i.e. comments which are followed by code on
282 the same line.
283
284 * cc-mode-19.el: Fixes so that checks that must be done at
285 compile time also are done then.
286
2872000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
288
289 * cc-defs.el: Make sure cc-mode-19 is loaded both at compile
290 time and at runtime, and only when it's needed.
291
2922000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
293
294 Major cleanup for less error prone and more warning free
295 compilation, including some fixes for bugs due to different
296 compilation orders. Thanks to Martin Buchholz for providing
297 the basis for all this.
298
299 * cc-bytecomp.el: New file that provides some byte compilation
300 features: It ensures that files always are loaded from the
301 current source directory during compilation, and it provides a
302 set of macros to turn off specific compiler warnings for
303 specific symbols. (It's not CC Mode specific in any way.)
304
305 Fixed a nearly acyclic dependency tree (both runtime and
306 compile-time) between all files.
307
308 * cc-defs.el: Separated all macros before the inline functions,
309 to ensure correct compilation.
310
311 * cc-defs.el, cc-engine.el: Moved c-beginning-of-macro to from
312 cc-defs.el to cc-engine.el and made it a function instead.
313
314 * cc-mode-19.el: Patch the byte compiler in Emacs 19 not to warn
315 about char-after.
316
317 * cc-vars.el: Cope even when there isn't a custom package
318 containing defcustom available.
319
320 * cc-make.el: Removed since it's no longer necessary.
321
322 README: Updated installation instructions.
323
3242000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
325
326 * cc-cmds.el, cc-langs.el, cc-mode.el: Moved around things to
327 improve the modularity: Moved all mode init stuff from
328 cc-langs.el to cc-mode.el, including the keymap
329 initialization; cc-langs now only contains the various
330 variables for configuring the language syntax.
331
332 * cc-engine.el, cc-styles.el (c-evaluate-offset,
333 c-get-offset): Moved from cc-styles to cc-engine since file
334 dependency analysis suggests they belong there (which also
335 makes more sense). Thanks to Martin Buchholz for doing the
336 analysis.
337
3382000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
339
340 * cc-cmds.el (c-fn-region-is-active-p): New function that
341 wraps the corresponding macro, for use in places that aren't
342 compiled. Thanks to Martin Buchholz for pointing out this.
343
344 * cc-langs.el (c-mode-menu): Use c-fn-region-is-active-p.
345
346 * cc-mode.el (c-prepare-bug-report-hooks): Hook variable to
347 add things to the bug report.
348
3492000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
350
351 * cc-cmds.el (c-guess-fill-prefix): Fixed bug where the
352 returned prefix could contain a newline when the search for a
353 good prefix line failed.
354
3552000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
356
357 * cc-cmds.el (c-toggle-auto-state, c-toggle-hungry-state)
358 (c-toggle-auto-hungry-state): Made the argument optional, as
359 the documentation says it is.
360
3612000-03-21 Martin Stjernholm <bug-cc-mode@gnu.org>
362
363 * cc-engine.el (c-guess-basic-syntax): Don't treat the Pike
364 multiline string syntax, #"...", as a cpp macro.
365
7008ccac
GM
3662001-03-21 Paul Eggert <eggert@twinsun.com>
367
368 * international/mule-cmds.el (set-locale-environment): Set
369 system-messages-locale and system-time-locale, but only if the
370 caller specifies a non-nil locale name.
371
341c19b9
JW
3722001-03-20 John Wiegley <johnw@gnu.org>
373
374 * calendar/calendar.el (nongregorian-diary-listing-hook): Added
375 :options to cover the possible values.
7008ccac 376 (nongregorian-diary-marking-hook): Ditto
341c19b9
JW
377
378 * cal-bahai.el, cal-menu.el, calendar.el, diary-lib.el,
7008ccac 379 * holidays.el: Added support for the Baha'i calendar system.
341c19b9
JW
380
381 * pcvs-util.el (cvs-bury-buffer): Bodiless `if' statements cause
382 problems for the interpreter.
383
117e4b0c
GM
3842001-03-20 Gerd Moellmann <gerd@gnu.org>
385
7194219d
GM
386 * follow.el (follow-avoid-tail-recenter): Doc fix.
387
5721ae13
GM
388 * custom.el (custom-set-variables): Avoid reversing the list
389 of args needlessly.
390
7b8bbf72
GM
391 * startup.el (fancy-splash-head): Don't change the colors of the
392 XPM image on a dark background.
393
a91ad7c9
GM
394 * comint.el (comint-exec-1): Set columns of the terminal to
395 window-width instead of frame-width.
396
fa88947e
GM
397 * info.el (Info-scroll-down): Add missing WINDOW arg for
398 pos-visible-in-window-p.
399
1741905c
GM
400 * ehelp.el (electric-help-mode-hook): Add defcustom.
401
117e4b0c
GM
402 * mail/sendmail.el (mail-mode): Activate case-folding in
403 font-lock-defaults.
404
e84c695d
SM
4052001-03-19 Stefan Monnier <monnier@cs.yale.edu>
406
407 * bindings.el (mode-line-mode-menu): `glasses-mode' might be unbound.
408 (completion-ignored-extensions): Remove duplicate ".class".
409
fc774041
AS
4102001-03-19 Andreas Schwab <schwab@suse.de>
411
412 * textmodes/reftex-dcr.el (reftex-view-crossref): Doc fix. From
413 Roland Winkler <Roland.Winkler@physik.uni-erlangen.de>.
414
c2c097cc
GM
4152001-03-19 Gerd Moellmann <gerd@gnu.org>
416
417 * language/european.el ("Latin-5", "Latin-4"): Use postfix input
418 methods since there are not prefix input methods.
419
fbe2e958
KH
4202001-03-19 Kenichi Handa <handa@etl.go.jp>
421
422 * international/mule-cmds.el (read-input-method-name): Locally
423 bind enable-recursive-minibuffers to t.
424
da47e491
SM
4252001-03-18 Stefan Monnier <monnier@cs.yale.edu>
426
427 * emacs-lisp/lmenu.el (add-menu): Re-added (was erroneously removed).
428
4986c2c6
MK
4292001-03-17 Michael Kifer <kifer@cs.sunysb.edu>
430
431 * ediff-util.el: Copyright years.
432 (ediff-choose-syntax-table): New function.
433 (ediff-setup): Use ediff-choose-syntax-table.
434
435 * ediff-init.el (ediff-with-syntax-table): New macro, uses
436 with-syntax-table.
437
438 * ediff.el: Date of last update, copyright years.
439
440 * ediff-wind (ediff-setup-control-frame): Nill->nil.
441
442 * viper-ex.el (ex-token-list,ex-cmd-execute): Revamped, courtesy
443 of Scott Bronson.
444 (ex-cmd-assoc,ex-cmd-one-letr): New functions.
445 (viper-check-sub,viper-get-ex-command,viper-execute-ex-command):
446 Deleted functions.
447 (viper-get-ex-com-subr,viper-ex,ex-mark): Changed to use the new
448 ex-token-list.
449
450 * viper-util.el: Spaces, indentation.
451
452 * viper.el: Changed version, modification time.
453
3c799aec
JW
4542001-03-16 John Wiegley <johnw@gnu.org>
455
117e4b0c
GM
456 * calendar/timeclock.el (timeclock-workday-remaining): Check
457 whether `discrep' is non-null before using it.
3c799aec 458
ae3ce418
JW
4592001-03-16 John Wiegley <johnw@gnu.org>
460
461 * calendar/timeclock.el (timeclock-reread-log): Fixed problem with
462 first-time checkins.
463 (timeclock-log-data): Fixed problem with reading timelog log file.
464 Resulting data in the "day list" was incorrect.
465 (timeclock-find-discrep): Check if `timeclock-file' is readable
466 before opening it.
467 (timeclock-time-less-p): New function.
468 (timeclock-day-base): New function.
469 (timeclock-geometric-mean): New function.
470 (timeclock-generate-report): Generate a summary report based on
471 the contents of the log file. This uses `timeclock-log-data', and
472 is an example of writing a timelog manipulation function.
473 (timeclock-visit-timelog): A quick command for opening the timelog
474 file.
475 (timeclock-log-data): Bound the variable event.
476
c8d4a9bb
KH
4772001-03-16 Kenichi Handa <handa@etl.go.jp>
478
11d56c64
KH
479 * international/mule-cmds.el (select-safe-coding-system): Fix
480 typo: symbol-name -> symbol-value.
481
c8d4a9bb
KH
482 * mail/rmail.el (rmail-insert-inbox-text): Call expand-file-name
483 before substitute-in-file-name to handle double slashes in FILE
484 correctly.
485
c899e7e6
GM
4862001-03-15 Gerd Moellmann <gerd@gnu.org>
487
488 * textmodes/ispell.el (ispell-dictionary-alist-6): Add support
489 for Slovak. From Pavel.Janik@suse.cz (Pavel Jan\e,Bm\e(Bk ml.).
490
819dce0f
GM
4912001-03-14 Gerd Moellmann <gerd@gnu.org>
492
697617d9
GM
493 * bindings.el (features): Add `md5' and `overlay' to the list.
494
819dce0f
GM
495 * scroll-bar.el (toplevel): Test if `x-toolkit-scroll-bars' is
496 bound before using it. It's not bound when configured without X,
497 for instance.
498
e0067a9d
TTN
4992001-03-13 Thien-Thi Nguyen <ttn@gnu.org>
500
501 * progmodes/hideshow.el: Update copyright.
502 (hs-minor-mode-map): Change bindings to use `C-c @' prefix.
ed368846 503 (hs-minor-mode-hook): Include `:version' in defcustom form.
e0067a9d 504
afcdc0a1
GM
5052001-03-13 Gerd Moellmann <gerd@gnu.org>
506
e0067a9d 507 * help.el (string-key-binding): Don't call event-start on
afcdc0a1
GM
508 a non-list.
509
30564c48
EZ
5102001-03-13 Eli Zaretskii <eliz@is.elta.co.il>
511
512 * startup.el (fancy-splash-tail, command-line-1): Fix the
513 copyright year.
514
2b8e24b3
KH
5152001-03-13 Kenichi Handa <handa@etl.go.jp>
516
517 * term.el: These changes are based on a patch sent from Yong Lu
518 <lyongu@yahoo.com>.
519 (term-set-escape-char): Bind M-x to execute-extended-command in
520 term-raw-escape-map.
521 (term-move-columns): Don't try to move to negagive column.
522 (term-emulate-terminal): Insert a string before deleting a text to
523 overwrite.
524
789b6186
GM
5252001-03-12 Gerd Moellmann <gerd@gnu.org>
526
b0778a31
GM
527 * play/life.el (life): Rearrange code so that all calls to
528 life-display-generation are in a catch-form.
529
04528cda
GM
530 * progmodes/etags.el (tags-loop-continue): Don't change point in a
531 file that isn't interesting. In an interesting file, push the old
532 value of point on the mark ring.
533
760cefb5
GM
534 * mail/rmailsum.el (rmail-summary-override-mail-send-and-exit):
535 New function.
536 (rmail-summary-mail, rmail-summary-reply, rmail-summary-forward):
537 Use it.
538
789b6186
GM
539 * emacs-lisp/autoload.el (generate-file-autoloads): Remove
540 warning about line lengths.
541
a2ffbafe
FP
5422001-03-12 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
543
544 * progmodes/etags.el (tags-compression-info-list): New variable.
545 (find-tag-in-order): Use it to deal with compressed source files.
546 (tag-file-name-match-p): New function.
547 (etags-recognize-tags-table): Use it for better match of file names.
548
5c9d9d92
KH
5492001-03-12 Kenichi Handa <handa@etl.go.jp>
550
ba3e9b9b
KH
551 * international/mule-cmds.el (register-input-method): Doc fix.
552
5c9d9d92
KH
553 * international/quail.el (quail-translate-key): Fix condition to
554 check if there's another breaking point in the current key.
555
40beecee
EZ
5562001-03-11 Eli Zaretskii <eliz@is.elta.co.il>
557
558 * mail/rmailout.el (rmail-output-to-rmail-file): When writing the
559 Babyl header to the newly-created output file, bind
560 coding-system-for-write to either rmail-file-coding-system or
561 emacs-mule-unix.
562
75c6cb7f
SM
5632001-03-11 Stefan Monnier <monnier@cs.yale.edu>
564
565 * textmodes/texnfo-upd.el (texinfo-update-menu-lower-regexps):
566 Fix the name and regexp used for subsubsections.
567
5ec17636
DL
5682001-03-10 Dave Love <fx@gnu.org>
569
570 * toolbar/tool-bar.el (tool-bar-setup): Don't suppress write-file
571 and save-buffer if buffer-file-name non-nil. From rms.
572
6d2e2c02
AS
5732001-03-10 Andre Spiegel <spiegel@gnu.org>
574
575 * vc.el (vc-do-command): If the destination buffer is already
a2ffbafe 576 current, don't set it up and don't erase it. Updated doc string
6d2e2c02
AS
577 to reflect that.
578 (vc-version-diff): When doing a single file diff, don't switch to the
a2ffbafe 579 *vc-diff* buffer before the command. This is to preserve local
6d2e2c02
AS
580 variable bindings that might affect the diff command.
581 (vc-print-log): Don't switch to the *vc* buffer before the
582 command, so that local variable bindings are preserved.
583
789b6186 584 * vc-{cvs,rcs,sccs}.el (vc-*-print-log): Output to buffer *vc*,
6d2e2c02
AS
585 not the current buffer.
586 (vc-*-diff): Output to buffer *vc-diff*, not the current buffer.
587
789b6186 588 * vc-cvs.el (vc-cvs-checkin): When removing the sticky tag,
6d2e2c02 589 make output go to buffer *vc*, not the current buffer.
a2ffbafe 590
b18f5523
SM
5912001-03-09 Stefan Monnier <monnier@cs.yale.edu>
592
593 * hi-lock.el (hi-lock-line-face-buffer): Wrap the regexp in a group
594 so ^, $, *, ? and + are interpreted correctly.
595
3cfd8357
GM
5962001-03-09 Gerd Moellmann <gerd@gnu.org>
597
c085b77c 598 * help.el (string-key-binding): Renamed from
f9db8f19
SM
599 mode-line-key-binding. Handle any event on a string.
600 Check for `keymap' properties as well as `local-map' properties.
c085b77c 601
3cfd8357
GM
602 * comint.el (comint-insert-clicked-input): Use the last key
603 from this-command-keys to lookup the global key definition.
604
348f797a
KH
6052001-03-09 Kenichi Handa <handa@etl.go.jp>
606
3ebf3717
KH
607 * international/characters.el: Add category `j' for
608 katakana-jisx0201. Fix syntaxes of katakana-jisx0201.
609
348f797a
KH
610 * international/mule-conf.el (no-conversion): Fix docstring.
611 (raw-text): Fix docstring.
612
e1fbabaf
GM
6132001-03-08 Gerd Moellmann <gerd@gnu.org>
614
96e8e603
GM
615 * simple.el (choose-completion-string): When not leaving the
616 minibuffer, raise the minibuffer frame when minibuffer-auto-raise
617 is set.
618
e1fbabaf
GM
619 * window.el (shrink-window-if-larger-than-buffer): Handle frame
620 parameter `(minibuffer . t)'.
621
f9db8f19
SM
6222001-03-07 Stefan Monnier <monnier@cs.yale.edu>
623
624 * progmodes/sh-script.el (sh-st-symbol): New symbol.
625 (sh-font-lock-syntactic-keywords): Use it and fix bogus comment regexp.
626 (sh-mode): Remove `make-local-variable' for unused var
627 `font-lock-unfontify-region-function'.
628
02756877
RS
6292001-03-07 Richard M. Stallman <rms@gnu.org>
630
132bf46d
RS
631 * info.el (Info-scroll-down): Fix previous change.
632
02756877
RS
633 * mail/rmail.el (rmail-toggle-header): Use a window which
634 is showing the Rmail buffer, rather than the selected window.
635
eeb24429
DL
6362001-03-07 Dave Love <fx@gnu.org>
637
638 * imenu.el (imenu--create-keymap-2): Revert use of menu-item for
639 now, to avoid problems with binding imenu directly to a mouse event.
640
3bdf2660
GM
6412001-03-07 Gerd Moellmann <gerd@gnu.org>
642
643 * info.el (Info-scroll-down): Call pos-visible-in-window-p with
644 second arg t.
645
6462001-03-07 Stefan Monnier <monnier@cs.yale.edu>
5aaaec5d
SM
647
648 * log-edit.el (log-edit-common-indent): New var.
649 (log-edit-set-common-indentation): Renamed from
650 log-edit-delete-common-indentation. Use the new var.
651 (log-edit-insert-changelog, log-edit-done-hook): Use the new name.
652
653 * pcvs.el (cvs-ignore-marks-modif): Use `rassoc' rather than `member*'.
654 (cvs-mode-add-change-log-entry-other-window):
655 Don't presume change-log-default-name is defined.
656
657 * pcvs-util.el (cvs-bury-buffer): In doubt, don't delete window.
658
659 * pcvs-defs.el (cvs-buffer-name-alist): Use *cvs-info* for
660 the "tree" operation as well.
661
662 * pcvs-parse.el (cvs-parse-table): Add another ignored message.
663
664 * textmodes/fill.el (fill-context-prefix): Allow first-line-prefix
665 to match paragraph-start.
666
667 * textmodes/sgml-mode.el (sgml-mode-common): Correct value of
668 comment-start-skip and set comment-end-skip as well.
669 (sgml-comment-indent): Fix for new value of comment-start-skip.
670 (html-autoview-mode): Don't bother using make-local-hook.
671
2ad02767
GM
6722001-03-07 Gerd Moellmann <gerd@gnu.org>
673
189638d5
GM
674 * cus-edit.el (custom-save-delete): Move in front of local
675 variables, otherwise long Custom entries would make them
676 ineffective.
677
2ad02767
GM
678 * uniquify.el: Set maintainer to FSF.
679
656f8cae
EZ
6802001-03-07 Eli Zaretskii <eliz@is.elta.co.il>
681
682 * dired-aux.el (dired-do-shell-command): Doc fix.
683
c83965c4
SM
6842001-03-06 Stefan Monnier <monnier@cs.yale.edu>
685
04af43bc
SM
686 * emulation/viper.el (viper-vi-state-mode-list): Add cperl-mode.
687
688 * which-func.el (which-func-modes): Add cperl-mode.
689 (which-func-mode-global): Use define-minor-mode.
690
691 * info-look.el: Docstring fixes and dead code eliminated.
692 (cperl-mode): Add support.
693 (emacs-lisp-mode): List all entries from elisp manual, whether
694 or not they are currently (f)bound or not. Update regexp.
695
696 * add-log.el (add-log-current-defun): Accept `cperl-mode' as well.
697
c83965c4
SM
698 * progmodes/cperl-mode.el (cperl-mode): Set major-mode to cperl-mode
699 so that C-h m shows the correct information.
700 Use make-local-variable rather than make-variable-buffer-local.
701 (cperl-info-buffer, cperl-setup-tmp-buf):
702 Use make-local-variable rather than make-variable-buffer-local.
703 (cperl-msb-fix, cperl-get-help-defer):
704 Check major-mode for `cperl-mode' as well.
705
706 * progmodes/cperl-mode.el: Updated to author version 4.23.
707 (cperl-electric-pod): SYNOPSIS was misspelled.
708 (cperl-find-pods-heres): @if ? a : b was considered a REx.
709 (cperl-after-expr-p): Make true after __END__.
710
f16a7aa5
GM
7112001-03-06 Gerd Moellmann <gerd@gnu.org>
712
157ae273 713 * bookmark.el (bookmark-get-bookmark): Use assoc-ignore-case if
6c08bb38 714 bookmark-completion-ignore-case is t.
157ae273 715
f16a7aa5
GM
716 * term/x-win.el (x-handle-xrm-switch): Accept more than one -xrm
717 switch, like xterm, and concat resource strings, with a newline
718 between them.
719
abaddb98
EZ
7202001-03-06 Eli Zaretskii <eliz@is.elta.co.il>
721
a2ffbafe 722 * international/codepage.el (cp770-decode-table)
106e96bd
EZ
723 (cp773-decode-table, cp774-decode-table): New variables.
724
abaddb98
EZ
725 * man.el (Man-hyphenated-reference-regexp): New variable.
726 (Man-build-references-alist): Use it to search for referenced
727 manpages. If hyphenated is non-nil, record a concatenated word in
728 Man-refpages-alist only if it matches Man-reference-regexp.
729 Update word's length when it is concatenated. Reverse the list,
730 to get the first manpage at the head.
731 (Man-possibly-hyphenated-word): New function.
732 (Man-follow-manual-reference): Use it instead of current-word to
733 find a manpage at point, in a way that accounts for hyphenated
734 references.
735
eb3f61dd
GM
7362001-03-06 Alex Schroeder <alex@gnu.org>
737
738 * sql.el (sql-interbase): New function.
739 (sql-interbase-program): New option.
740 (sql-interbase-options): New option.
741 And some typos fixed: "customise" to "customize".
742
fa84f42a
DL
7432001-03-06 Dave Love <fx@gnu.org>
744
745 * textmodes/flyspell.el (flyspell-region): Set up
746 flyspell-local-mouse-map.
747
fda3411d
RS
7482001-03-05 Richard M. Stallman <rms@gnu.org>
749
a2ffbafe 750 * mail/rmail.el (rmail-retry-failure):
fda3411d
RS
751 Don't call rmail-beginning-of-message.
752 Don't discard From: field. Do discard Received: field.
753 Use unwind-protect to re-prune.
754 (rmail-retry-ignored-headers): Discard X-Authentication-Warning field.
a2ffbafe 755
e972ab1f
KH
7562001-03-06 Kenichi Handa <handa@etl.go.jp>
757
758 * international/quail.el (quail-title): Add autoload cookie.
759
335db3c1
DL
7602001-03-05 Dave Love <fx@gnu.org>
761
762 * emacs-lisp/cl.el (dotimes, dolist): Undef prior to autoloading
763 new defs.
764
278dd6ac
KH
7652001-03-05 Kenichi Handa <handa@etl.go.jp>
766
36d5e61d
KH
767 * language/ethio-util.el (ethio-toggle-space): Update
768 current-input-method-title if necessary.
769 (ethio-toggle-punctuation): Likewise.
770
341cd4f0
KH
771 * international/quail.el (quail-title): Fix for the case that a
772 title of an input method is specified by a list of the same form
773 as used in mode-line-format.
774
278dd6ac
KH
775 * international/mule-cmds.el (activate-input-method): If
776 current-input-method-title is set by activating INPUT-METHOD,
777 respect that value.
778
10ebaeb6
GM
7792001-03-05 Gerd Moellmann <gerd@gnu.org>
780
781 * play/dunnet.el (dun-mode): Set major-mode to `dun-mode'.
782
7a65c85c
GM
7832001-03-05 Alex Schroeder <alex@gnu.org>
784
785 * sql.el (sql-sybase): Fix typo (was: query user about server two
786 times instead of server and database).
787
788 * sql.el (sql-sybase): Doc change.
789 (sql-mysql): Doc change.
790 (sql-postgres): Doc change.
791
b86644f2
KH
7922001-03-05 Kenichi Handa <handa@etl.go.jp>
793
794 * international/mule-conf.el (emacs-mule, raw-text): Docstring
795 modified.
796
e30bd7b7
EZ
7972001-03-04 Eli Zaretskii <eliz@is.elta.co.il>
798
799 * term/internal.el: Update copyright notice.
800
801 * term/pc-win.el: Update copyright notice.
802
7e365285
DL
8032001-03-02 Dave Love <fx@gnu.org>
804
805 * files.el (insert-file-contents-literally): Bind
806 inhibit-file-name-handlers and inhibit-file-name-operation, not
807 jka-compr-compression-info-list.
808
75ed43a6
SM
8092001-03-02 Stefan Monnier <monnier@cs.yale.edu>
810
811 * newcomment.el (comment-normalize-vars): Use [ \t] for the trailing
812 spaces in default comment-start-skip settings rather than \s-.
813
53c4b1e6
EZ
8142001-03-02 Eli Zaretskii <eliz@is.elta.co.il>
815
816 * term/pc-win.el (msdos-handle-reverse-video): Look for reverse in
817 default-frame-alist as well.
818
028d739a
DL
8192001-03-01 Dave Love <fx@gnu.org>
820
821 * textmodes/reftex.el (defvar): Wrap some defvars in
822 eval-when-compile. From Markus Rost <rost@math.ohio-state.edu>.
823
824 * subr.el (event-basic-type): Doc fix.
825
826 * international/quail.el: Doc fixes.
827
828 * international/utf-8.el: Doc fixes.
829
830 * international/mule-cmds.el: Doc fixes.
831 (leim-list-header): Fix header text.
832
833 * international/mule.el (coding-system-category): Doc fix.
834
835 * international/ccl.el (ccl-compile): Doc fix.
836
15d1caef
SM
8372001-03-01 Stefan Monnier <monnier@cs.yale.edu>
838
839 * font-lock.el (save-buffer-state): Use inhibit-modification-hooks
840 rather than (before|after)-change-functions.
841
f84ff02c
GM
8422001-03-01 Gerd Moellmann <gerd@gnu.org>
843
844 * ediff-util.el (ediff-scroll-horizontally): Arrange for
845 scroll-left and scroll-right being called interactively so that
846 they set the window's min_hscroll.
847
e0c1e774
EZ
8482001-03-01 Eli Zaretskii <eliz@is.elta.co.il>
849
850 * info.el (info-insert-file-contents-1): Accept an additional
851 argument `lfn': if it is non-nil, concatenate `filename' and
852 `suffix'; otherwise use the complicated MS-DOS code. All callers
853 changed.
854 (info-insert-file-contents, Info-find-node): If the MS-DOS port
855 can access long file names, try the long file-name version of
856 `info-insert-file-contents-1', then the short file-name version.
857
b8b2ea31 8582001-02-28 TAKAHASHI Naoto <ntakahas@m17n.org>
1d64e2ad 859
af122766
KH
860 * language/ethio-util.el (setup-ethiopic-environment-internal):
861 Change bindings of functions keys to conform to "Emacs Lisp Coding
862 Convention".
863
864 * language/ethiopic.el ("Ethiopic"): Add documentation.
865
b8b2ea31
KH
8662001-02-28 Kenichi Handa <handa@etl.go.jp>
867
1d64e2ad
KH
868 * international/utf-8.el (mule-utf-8): Set coding-category
869 property to coding-category-utf-8.
870
91cb6e51
RS
8712001-02-27 Richard M. Stallman <rms@gnu.org>
872
873 * lpr.el (lpr-page-header-switches, print-region-1):
874 Undo 2000-07-06 change.
7298f3f7
RS
875 (lpr-add-switches): Default to t on gnu/linux.
876
c0cb1027
GM
8772001-02-27 Gerd Moellmann <gerd@gnu.org>
878
879 * bs.el (bs-attributes-list): Doc fix.
880
01459648
GM
8812001-02-26 Gerd Moellmann <gerd@gnu.org>
882
baebd8a5 883 * help.el (describe-project): Display the file THE-GNU-PROJECT.
a2ffbafe 884
01459648
GM
885 * help.el (view-order-manuals): Use goto-address.
886
887 * startup.el (command-line-1): Add info about ordering manuals
888 to the not so fancy splash screens.
889
f93e614e
AS
8902001-02-26 Andre Spiegel <spiegel@gnu.org>
891
01459648
GM
892 * vc.el (vc-default-workfile-unchanged-p)
893 (vc-default-latest-on-branch-p): Add missing BACKEND argument.
f93e614e 894
12435002
GM
8952001-02-26 Gerd Moellmann <gerd@gnu.org>
896
a2ffbafe 897 * lazy-lock.el (lazy-lock-fontify-after-idle): Make sure to
c596c392
GM
898 fontify in the right buffer.
899
12435002
GM
900 * allout.el (outline-flag-region): Move macro in front of first
901 use to avoid a run-time error.
902
425de386
AI
9032001-02-24 Andrew Innes <andrewi@gnu.org>
904
905 * makefile.w32-in: Fix copyright notice.
906
66c56ed1
KH
9072001-02-24 Kenichi Handa <handa@etl.go.jp>
908
4c1593ce
KH
909 * international/utf-8.el (mule-utf-8): Set correct value for
910 valid-codes property.
911
66c56ed1
KH
912 * international/fontset.el (x-complement-fontset-spec): In the
913 case that we use ASCII font for the other charsets, use only
15d1caef 914 family and registry part of it.
66c56ed1 915
119171dd
EZ
9162001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
917
918 * window.el (fit-window-to-buffer, window-safely-shrinkable-p)
919 (shrink-window-if-larger-than-buffer): Doc fix.
920
932c309e
SM
9212001-02-23 Stefan Monnier <monnier@cs.yale.edu>
922
923 * hi-lock.el (hi-lock-unface-buffer): Use nil rather than t for
924 predicate passed to completing-read.
925
9b760e36
EZ
9262001-02-23 Eli Zaretskii <eliz@is.elta.co.il>
927
928 * startup.el (command-line): Fix last change.
929
5c39a60f
JR
9302001-02-23 Jason Rumney <jasonr@gnu.org>
931
932 * startup.el (tool-bar-originally-present): New variable.
933 (command-line): Set it if the tool-bar is switched on at startup.
934
935 * frame.el (frame-notice-user-settings): Only adjust frame height
936 for no tool-bar case if tool-bar was originally switched on.
796ead7e 937 From E. Jay Berkenbilt.
5c39a60f 938
cb91b2c7
SM
9392001-02-22 Stefan Monnier <monnier@cs.yale.edu>
940
39b557e8
SM
941 * server.el (server-switch-buffer): Only switch window if the
942 current one is dedicated.
943
cb91b2c7
SM
944 * textmodes/fill.el (fill-region-as-paragraph): Skip spaces backward
945 rather than using (match-beginning 0) when searching for break point.
946
9238a8df
EZ
9472001-02-22 Eli Zaretskii <eliz@is.elta.co.il>
948
949 * textmodes/texinfmt.el (texinfo-format-scan): Signal an error if
950 @ follows an accent command such as @'. Support optional braces
951 in commands that insert accents, like makeinfo does.
952
3473f362
GM
9532001-02-22 Gerd Moellmann <gerd@gnu.org>
954
955 * startup.el (fancy-splash-text): Add a line for ordering
956 manuals. Reverse order of splash screens shown.
957 (use-fancy-splash-screens-p): Adapt to the text line added.
958
959 * menu-bar.el (menu-bar-help-menu): Add an item for ordering
960 manuals from the FSF.
961
962 * help.el (view-order-manuals): New function.
963 (toplevel): Bind C-h C-m to this function.
964
76a4de07
SM
9652001-02-21 Stefan Monnier <monnier@cs.yale.edu>
966
967 * newcomment.el (comment-forward): Skip the comment-start before
968 searching for the comment-end.
969
75b71d85
DL
9702001-02-21 Dave Love <fx@gnu.org>
971
2f4c9a87
DL
972 * custom.el (custom-initialize-changed, defcustom): Doc fix.
973
75b71d85
DL
974 * international/mule-cmds.el, international/mule.el: Doc fixes.
975
976 * play/fortune.el: Fix autoload cookies. Add types to defcustoms.
977 (fortune) <defgroup>: Add :link.
978 (fortune-from-region): Use eq, not eql.
979
ffc9ff0c
GM
9802001-02-21 Gerd Moellmann <gerd@gnu.org>
981
982 * startup.el (fancy-splash-screens): Use display-hourglass
983 instead of display-busy-cursor.
984
985 * frame.el (display-hourglass): Renamed from busy-cursor.
986 (hourglass-delay): Renamed from busy-cursor-delay-seconds.
987 (show-cursor-in-non-selected-windows): Doc fix.
988
f34eb373
DL
9892001-02-20 Dave Love <fx@gnu.org>
990
991 * international/utf-8.el: Doc and commentary fixes.
992
f55e4a7e
EZ
9932001-02-20 Eli Zaretskii <eliz@is.elta.co.il>
994
995 * ehelp.el (with-electric-help): Doc fix.
996
fa97adf6
GM
9972001-02-20 Gerd Moellmann <gerd@gnu.org>
998
999 * msb.el (msb-mode): Call the update-buffers function explicitly
1000 with a FORCE argument.
1001
1002 * menu-bar.el (menu-bar-update-buffers): Add optional parameter
1003 FORCE. If set, update the menu even if frame-or-buffer-changed-p
1004 returns nil.
1005
54ed3bd2
GM
10062001-02-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1007
1008 * ps-print.el: Timestamp package replacement. Some enhancements.
1009 Some XEmacs compatibility. Doc fix.
1010 (ps-print-version): New version number (6.4).
1011 (ps-printer-name): Initialization fix.
1012 (ps-zebra-stripe-follow): Funcionality enhancement.
1013 (ps-prologue-file): Code enhancement.
1014 (ps-right-header): Timestamp package replacement.
1015 (ps-setup, ps-face-bold-p, ps-face-italic-p,
1016 ps-get-page-dimensions)
1017 (ps-generate-header, ps-begin-file, ps-begin-job)
1018 (ps-generate-postscript-with-faces, ps-do-despool): Code fix.
1019 (ps-time-stamp-mon-dd-yyyy, ps-time-stamp-hh:mm:ss): New funs.
1020 (ps-zebra-stripe-full-p, ps-zebra-stripe-alist): New vars.
1021 (coding-system-for-write): Var declaration (XEmacs compatibility).
a2ffbafe 1022
e8ebf97d
MB
10232001-02-20 Miles Bader <miles@gnu.org>
1024
1025 * image-file.el (image-file-name-extensions): Add "tif".
1026
136b27c5
GM
10272001-02-19 Gerd Moellmann <gerd@gnu.org>
1028
1029 * wid-edit.el (widget-button-click): Save the selected window
1030 around the code handling clicks on buttons.
1031
6ebbcf59
DL
10322001-02-18 Dave Love <fx@gnu.org>
1033
1034 * imenu.el (imenu--generic-function): Use mapc to iterate over
1035 syntax characters.
1036
595ded73
RS
10372001-02-17 Richard M. Stallman <rms@gnu.org>
1038
b9fe3dc8
RS
1039 * progmodes/fortran.el (fortran-strip-sqeuence-nos): Doc fix.
1040
595ded73
RS
1041 * uniquify.el (uniquify-buffer-name-style): Doc fix.
1042
f3f053f3
GM
10432001-02-16 Gerd Moellmann <gerd@gnu.org>
1044
1045 * mouse.el (mouse-save-then-kill): If the distance from the new
1046 point to the mark is equal to the distance of point from the new
1047 point, move point instead of the mark.
1048
11570a8f
DL
10492001-02-16 Dave Love <fx@gnu.org>
1050
1051 * textmodes/flyspell.el (flyspell-get-word): Return string without
1052 properties.
1053
fb339cd5
EZ
10542001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
1055
1056 * generic.el (generic-find-file-regexp): Doc fix.
1057 (generic-ignore-files-regexp): New defcustom.
1058 (generic-mode-find-file-hook): If the file's name matches the
1059 regexp in `generic-ignore-files-regexp', don't enter
1060 default-generic-mode. Doc fix.
1061
c56b1c1b
GM
10622001-02-16 Gerd Moellmann <gerd@gnu.org>
1063
a2ffbafe 1064 * textmodes/flyspell.el (flyspell-region, flyspell-buffer):
c220b753
GM
1065 Add autoload cookies.
1066
a2ffbafe 1067 * calendar/cal-tex.el (cal-tex-weekly4-box): Respect setting
c56b1c1b
GM
1068 of cal-tex-24.
1069
0d140e65
EZ
10702001-02-16 Eli Zaretskii <eliz@is.elta.co.il>
1071
81558867
EZ
1072 * simple.el (kill-region, kill-line, kill-ring-save): Doc fix.
1073
0d140e65
EZ
1074 * progmodes/compile.el (grep-regexp-alist): Remove the blank from
1075 the character class after the (optional) drive, to support file
1076 names with embedded blanks.
1077
713f7b15
SS
10782001-02-15 Sam Steingold <sds@gnu.org>
1079
1080 * textmodes/tex-mode.el (tex-shell-running):
1081 Check the process buffer too.
1082
9a2a6f73
DL
10832001-02-15 Dave Love <fx@gnu.org>
1084
1085 * battery.el (battery-status-function): Fix doc, :type.
1086
15d1caef 1087 * calendar/timeclock.el (timeclock-get-workday-function): Fix :type.
9a2a6f73 1088
fe10cef0
GM
10892001-02-15 Gerd Moellmann <gerd@gnu.org>
1090
1091 * subr.el (read-passwd): Clear Lisp memory holding password.
1092
126f5d4d
MB
10932001-02-15 Miles Bader <miles@gnu.org>
1094
1095 * info.el (Info-copy-current-node-name): New function.
1096 (Info-mode-menu): Add it to the menu.
1097
92e98d63
RS
10982001-02-14 Richard M. Stallman <rms@theobromine.ai.mit.edu>
1099
1100 * international/mule-cmds.el (toggle-input-method): Doc fix.
1101
dd4e0e55
SM
11022001-02-13 Stefan Monnier <monnier@cs.yale.edu>
1103
1104 * replace.el (occur): Stop at end of buffer.
1105
402dbbd1
EZ
11062001-02-13 Eli Zaretskii <eliz@is.elta.co.il>
1107
1108 * international/mule-cmds.el (set-input-method): Another doc fix.
1109
e9fcba3d
GM
11102001-02-13 David M. Koppelman <koppel@ee.lsu.edu>
1111
1112 * hi-lock.el (hi-lock-find-patterns): Don't activate font-lock-mode.
1113
78ad1cd5
MB
11142001-02-13 Miles Bader <miles@gnu.org>
1115
713f7b15 1116 * faces.el (set-face-background, set-face-foreground)
78ad1cd5
MB
1117 (set-face-stipple): Treat a value of nil as being `unspecified'.
1118
fce9d9dc
DL
11192001-02-12 Dave Love <d.love@dl.ac.uk>
1120
1121 * international/latin1-disp.el: Doc fixes.
1122 (latin1-display) <defgroup>: Add :link.
1123 (latin1-display) <function>: Set variable latin1-display.
1124
bc406911
EZ
11252001-02-12 Eli Zaretskii <eliz@is.elta.co.il>
1126
1127 * international/mule-cmds.el (set-input-method): Doc fix.
1128
68514d48
EL
11292001-02-12 Eric M. Ludlam <zappo@choochoo.ultranet.com>
1130
1131 * speedbar.el (speedbar-frame-parameters): No toolbar lines.
1132 (speedbar-line-file): Return nil if not a file.
1133 (speedbar-buffers-line-path): Return file for tags, and dir for files.
1134
513bea45 11352001-02-12 Michael Kifer <kifer@cs.sunysb.edu>
713f7b15 1136
513bea45
MK
1137 * ediff-diff.el (ediff-make-diff2-buffer): Removed bogus checks
1138 for remote files.
bc406911 1139 (ediff-coding-system-for-read): Replaced the no-conversion default
513bea45 1140 with raw-text.
713f7b15 1141
513bea45 1142 * ediff-init.el: Removed :version from defcustom vars.
713f7b15 1143
513bea45
MK
1144 * ediff-util.el (ediff-compute-custom-diffs-maybe): Better
1145 handling of the diff mode
713f7b15 1146
513bea45 1147 * ediff.texi: Added ediff-coding-system-for-read.
713f7b15 1148
bc406911 1149 * viper.texi: Fix typos.
713f7b15 1150
521d4010
DL
11512001-02-11 Dave Love <fx@gnu.org>
1152
36fd8e17
DL
1153 * shadowfile.el: Doc fixes.
1154 (shadow) <defgroup>: Add :link.
1155 (shadowfile-unload-hook): New function.
1156 (shadow-initialize): Use defalias, not fset.
1157 (shadow-define-cluster, shadow-define-literal-group)
1158 (shadow-define-regexp-group, shadow-initialize): Add autoload
1159 cookie.
1160
521d4010
DL
1161 * international/mule.el: Doc and message fixes.
1162
36fd8e17
DL
1163 * international/ccl.el (define-ccl-program): Doc fix.
1164
92395bbe
KH
11652001-02-11 Kenichi Handa <handa@etl.go.jp>
1166
1167 * faces.el (mode-line): Set :line-width property to -1.
1168
103db06c
RS
11692001-02-10 Richard M. Stallman <rms@gnu.org>
1170
08b78974
RS
1171 * complete.el (partial-completion-mode): Doc fix.
1172
103db06c
RS
1173 * simple.el (delete-key-deletes-forward-mode):
1174 Change `let' to `let*' to fix gross bug in last change.
1175
1176 * repeat.el (repeat): Don't let execute-kbd-macro alter
1177 real-last-command.
1178
a6a1ee53
EZ
11792001-02-10 Eli Zaretskii <eliz@is.elta.co.il>
1180
1181 * simple.el (eval-expression): Doc fix.
1182
d2f288c6
DL
11832001-02-09 Dave Love <fx@gnu.org>
1184
038f4ae3
DL
1185 * imenu.el (imenu-generic-expression): Doc fix.
1186
1187 * emacs-lisp/re-builder.el (reb-mode): Quote the hook name. From
1188 Juanma Barranquero.
1189
15d1caef 1190 * emacs-lisp/authors.el (authors): Expand `root' before running find.
d2f288c6 1191
9804b846
KH
11922001-02-09 Kenichi Handa <handa@etl.go.jp>
1193
1194 * faces.el (set-face-attribute): Describe the case of a negative
1195 value specified for :line-width.
1196
532f5197
SM
11972001-02-08 Stefan Monnier <monnier@cs.yale.edu>
1198
1199 * which-func.el (which-func-mode): Invert which-func-mode-global.
1200 Fix from Juanma Barranquero <lektu@uol.com.br>.
1201
1d279666
DL
12022001-02-08 Dave Love <fx@gnu.org>
1203
4681ca3a
DL
1204 * wid-edit.el (widget-plist-convert-widget): Replace binding of
1205 widget-plist-value-type.
1206 (widget-alist-convert-widget): Replace binding of
1207 widget-alist-value-type.
1208
1d279666
DL
1209 * textmodes/paragraphs.el (sentence-end): Doc fix.
1210
1211 * eshell/em-rebind.el (eshell-cannot-leave-input-list): Remove
1212 `backward-line'.
1213
532f5197
SM
1214 * play/pong.el (pong-blank-color, pong-bat-color)
1215 (pong-ball-color, pong-border-color, pong-left-key)
1216 (pong-right-key, pong-up-key, pong-down-key, pong-quit-key)
1217 (pong-pause-key, pong-resume-key, pong-timer-delay):
1218 * mail/mh-comp.el (mh-compose-letter-function):
1219 * eshell/esh-mode.el (eshell-skip-prompt-function):
1220 * emulation/viper-ex.el (ex-unix-type-shell-options):
1221 * recentf.el (recentf-menu-filter):
1222 * ps-print.el (ps-print-region-function):
1223 * lpr.el (print-region-function):
1224 * forms.el (forms-mode-hooks):
1225 * dirtrack.el (dirtrack-directory-change-hook):
1226 * cus-start.el (temp-buffer-show-function, display-buffer-function):
1227 * textmodes/spell.el (spell-filter):
1228 * textmodes/fill.el (adaptive-fill-function):
1229 * textmodes/bibtex.el (bibtex-autokey-before-presentation-function):
1230 * progmodes/etags.el (find-tag-default-function):
1231 * progmodes/dcl-mode.el (dcl-calc-command-indent-function):
1d279666
DL
1232 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
1233
6f676109
EZ
12342001-02-07 Eli Zaretskii <eliz@is.elta.co.il>
1235
751d3bc4
EZ
1236 * emulation/viper-init.el (viper-fast-keyseq-timeout)
1237 (viper-translate-all-ESC-keysequences): Doc fix. From Jim
1238 Meyering <jim@meyering.net>.
1239
6f676109
EZ
1240 * loadup.el: Revert last change.
1241
d3c26cdf
KH
12422001-02-07 Kenichi Handa <handa@etl.go.jp>
1243
1244 * international/mule.el (transform-make-coding-system-args): Make
1245 it work also for coding systems not using CCL.
1246
44806980
EZ
12472001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
1248
9889af08
EZ
1249 * simple.el (previous-matching-history-element)
1250 (next-matching-history-element): Doc fix.
1251
44806980
EZ
1252 * loadup.el: Load ccl before utf-8; don't load ccl in the ms-dos
1253 specific part.
1254
1e36ff68
DL
12552001-02-06 Dave Love <fx@gnu.org>
1256
713f7b15 1257 * add-log.el (add-log-current-defun-function)
1e36ff68
DL
1258 (add-log-buffer-file-name-function, add-log-file-name-function):
1259 Fix :type.
1260 (change-log-mode) <font-lock-defaults>: Set SYNTAX-BEGIN.
1261
c7ca58df
EZ
12622001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
1263
fecd556a
EZ
1264 * info.el (info-initialize): Remove the test for system-type when
1265 invocation-directory is non-nil.
1266
c7ca58df
EZ
1267 * progmodes/make-mode.el (makefile-mode): Set SYNTAX-BEGIN member
1268 of `font-lock-defaults' to `backward-paragraph' rather than nil.
1269
587b5737
AI
12702001-02-06 Andrew Innes <andrewi@gnu.org>
1271
1272 * makefile.w32-in (EMACS): Use $(THISDIR) to make emacs.exe path
1273 absolute.
1274
baf7eee4
GM
12752001-02-06 David M. Koppelman <koppel@ee.lsu.edu>
1276
1277 * hi-lock.el (hi-lock-mode): Toggling hi-lock-mode now affects all
1278 buffers. When hi-lock turned on rather than only checking current
1279 buffer for regexps, all buffers are checked. Moved activation of
1280 font-lock to hi-lock-refontify. When font-lock turned off rather
1281 than removing added highlighting just in current buffer, remove it
1282 in all buffers. Changed edit menu text from "Automatic
1283 Highlighting" to "Regexp Highlighting" Documentation for
1284 highlighting phrases, minor documentation changes.
1285 (hi-lock-set-file-patterns): Execute only if there are new or
1286 existing file patterns.
1287 (hi-lock-refontify): Assume font-lock-fontify-buffer will first
1288 unfontify and, if a support mode is active, will not refontify the
1289 whole buffer. If necessary, turn on font lock. (Removed
1290 font-lock-unfontify and font-lock support-mode-specific calls,
1291 such as lazy-lock-fontify-window.)
1292 (hi-lock-find-patterns): Do not turn on hi-lock-mode even if
1293 patterns are found. Not useful now since find-file-hook is removed
1294 if hi-lock is off, but may be needed for per-buffer hi-lock
1295 activation.
1296 (hi-lock-face-phrase-buffer): New function. Also added related
1297 menu item and keybinding.
1298 (highlight-phrase): New alias, to hi-lock-face-phrase-buffer.
1299 (hi-lock-process-phrase): New function.
1300 (hi-lock-line-face-buffer): Doc fixes.
1301 (hi-lock-face-buffer): Doc fixes.
1302 (hi-lock-unface-buffer): Doc fixes.
713f7b15 1303
36710aa6
GM
13042001-02-06 Gerd Moellmann <gerd@gnu.org>
1305
1306 * dabbrev.el (dabbrev-ignored-buffer-regexps): Renamed from
1307 dabbrev-ignored-regexps.
1308
d3f22784
EZ
13092001-02-06 Eli Zaretskii <eliz@is.elta.co.il>
1310
1311 * simple.el (kill-line): Doc fix.
1312
5cb3c8d4
DL
13132001-02-05 Dave Love <fx@gnu.org>
1314
1315 * loadup.el: Revert last two changes -- bootstrapping works with
1316 regenerated loaddefs.
1317
e6297e7d
EZ
13182001-02-05 Eli Zaretskii <eliz@is.elta.co.il>
1319
1e14b095
EZ
1320 * isearch.el (isearch-forward): Doc fix.
1321
e6297e7d
EZ
1322 * textmodes/nroff-mode.el (nroff-mode): Set the SYNTAX-BEGIN part
1323 of font-lock-defaults to backward-paragraph.
1324
e16f52ce
GM
13252001-02-05 Gerd Moellmann <gerd@gnu.org>
1326
1327 * mail/rmail.el (rmail-ignored-headers): Add X-Trace,
1328 X-Complaints-To, NNTP-Posting-Date, and User-Agent.
1329
01d19dd7
GM
13302001-02-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1331
1332 * ebnf2ps.el: Eliminate time-stamp functions.
1333 (ebnf-version): New version (3.5).
1334 (ebnf-eps-finish-and-write): Replace time-stamp functions by
1335 format-time-string.
1336
24886813
GM
13372001-02-05 Gerd Moellmann <gerd@gnu.org>
1338
1339 * simple.el (next-line): Goto end-of-line before inserting a newline.
1340
65e70fc4
MB
13412001-02-05 Miles Bader <miles@gnu.org>
1342
1343 * image-file.el (insert-image-file): When visiting an image, also
1344 set `truncate-lines' to t so that any fringe arrow looks correct.
1345
482f06c9
KH
13462001-02-05 Kenichi Handa <handa@etl.go.jp>
1347
1348 * isearch.el (isearch-forward): Add description about input method
1349 in the docsting.
1350
02399da7
SM
13512001-02-04 Stefan Monnier <monnier@cs.yale.edu>
1352
1353 * skeleton.el (skeleton-internal-1): Always push the mark for @.
1354
2c366083
EZ
13552001-02-02 Eli Zaretskii <eliz@is.elta.co.il>
1356
1357 * info.el (info-initialize): If installation-directory is nil, for
1358 DOS/Windows systems try looking in a sibling of
1359 invocation-directory.
1360
bdadfce3
GM
13612001-02-02 Gerd Moellmann <gerd@gnu.org>
1362
79fb38c0
GM
1363 * wid-edit.el (widget-button-click): Fix last change.
1364
bdadfce3
GM
1365 * frame.el (frame-notice-user-settings): When resizing the initial
1366 frame because the tool bar is off, also change the frame's top
1367 position if a negative top position was specified.
1368
33155ffb
MB
13692001-02-02 Miles Bader <miles@gnu.org>
1370
1371 * image-file.el (insert-image-file): When visiting an image,
1372 suppress the cursor in the image buffer.
1373
1355ba0c
DL
13742001-02-01 Dave Love <fx@gnu.org>
1375
1376 * progmodes/f90.el (f90-mode): Remove startup message.
1377
fb758d2d 1378 * vc-cvs.el: Remove autoloads. Require vc when compiling.
713f7b15 1379
01acdb05
GM
13802001-02-01 Gerd Moellmann <gerd@gnu.org>
1381
1382 * startup.el (command-line): Fix code determining whether or not
1383 to use delete-key-deletes-forward-mode.
1384
5b1ee316
AS
13852001-02-01 Andre Spiegel <spiegel@gnu.org>
1386
1387 * vc.el (vc-diff-switches): New user option.
1388 (vc-version-diff): Use it.
1389 (vc-diff-switches-list): New macro.
1390
1391 * vc-{rcs,cvs,sccs}.el: (vc-BACKEND-diff-switches): New
1392 customization options.
1393 (vc-BACKEND-diff): Use new options via vc-diff-switches-list.
1394
1395 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Return correct status.
1396
00b1e7a1
GM
13972001-02-01 Gerd Moellmann <gerd@gnu.org>
1398
1399 * msb.el (toplevel): Quote hook symbols.
1400
85827036
KH
14012001-02-01 Kenichi Handa <handa@etl.go.jp>
1402
8e028499 1403 * international/mule.el (make-coding-system): Add description
3c948dde 1404 about recognized properties in the docstring.
8e028499 1405
85827036
KH
1406 * international/mule-conf.el: Remove unused charsets
1407 mac-roman-lower and mac-roman-upper.
1408
7ccf7ab9
GM
14092001-01-31 Gerd Moellmann <gerd@gnu.org>
1410
2441692d
GM
1411 * textmodes/fill.el (set-fill-prefix): Cancel fill prefix if point
1412 is in front of the left-margin, if any.
1413
ee5cece0
GM
1414 * simple.el (delete-key-deletes-forward-mode): Treat `kp-delete'
1415 like `delete'.
1416
1417 * bindings.el: Define `kp-delete' like `delete' in
1418 function-key-map.
1419
7ccf7ab9
GM
1420 * term/w32-win.el (mouse-set-font): Doc fix.
1421
b4f30ec5 14222001-01-31 Stefan Monnier <monnier@cs.yale.edu>
713f7b15 1423
b4f30ec5
GM
1424 * hi-lock.el (hi-lock-mode, hi-lock-line-face-buffer): Doc fix.
1425 (hi-lock-find-patterns): Turn on font-lock-mode, if it is not
1426 on already.
1427
03e0fe6e
GM
14282001-01-31 Markus Rost <rost@math.ohio-state.edu>
1429
1430 * files.el (save-buffer): Don't give message if (buffer-file-name)
1431 returns nil.
713f7b15 1432
8f289acc
EZ
14332001-01-31 Eli Zaretskii <eliz@is.elta.co.il>
1434
cb4aae04
EZ
1435 * toolbar/tool-bar.el (tool-bar-add-item): Doc fix.
1436
dbd98b19
EZ
1437 * emacs-lisp/re-builder.el (reb-update-modestring): Don't use
1438 concat for integers. From Juanma Barranquero <lektu@uol.com.br>.
1439
8f289acc
EZ
1440 * term/w32-win.el (redisplay-dont-pause): Set to t to alleviate
1441 display problems.
1442
c12553c1
KH
14432001-01-31 Kenichi Handa <handa@etl.go.jp>
1444
c7bf5db9
KH
1445 * international/mule.el (charset-info): Fix docstring.
1446
1447 * international/mule-diag.el (describe-character-set): Check final
1448 char valid before printing it.
c12553c1 1449
14f16b9c
GM
14502001-01-30 Gerd Moellmann <gerd@gnu.org>
1451
efaa080b
GM
1452 * lpr.el (lpr-windows-system, lpr-lp-system): Add autoload cookies.
1453
eef93f99
GM
1454 * frame.el (frame-notice-user-settings): Do the tool-bar
1455 stuff only for graphical displays. Fix a braino.
713f7b15 1456
14f16b9c
GM
1457 * frame.el (frame-initialize): Create initial frame visible.
1458 (frame-notice-user-settings): When tool-bar has been switched off,
25237df5 1459 correct the frame size and sync tool-bar-mode.
14f16b9c
GM
1460
1461 * startup.el (command-line): Remove manipulation of frame
1462 height for tool bars.
1463
4ad25e43
EZ
14642001-01-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1465
1466 * lpr.el: Compatibility with XEmacs and doc fixes.
1467 (lpr-windows-system, lpr-lp-system): New vars.
1468 (lpr-printer-switch): New defcustom.
1469 (printer-name, lpr-command): Customization fix.
1470 (print-region-1): Code fix.
1471 (print-region-new-buffer, printify-region): Indentation fix.
1472 (lpr-eval-switch, lpr-flatten-list, lpr-flatten-list-1): New
1473 functions.
1474
e8f044a0
GM
14752001-01-29 Gerd Moellmann <gerd@gnu.org>
1476
1477 * msb.el (toplevel): Fix the eval-after-load.
1478
850d5045
GM
14792001-01-29 Dave Love <fx@gnu.org>
1480
762fe76e
DL
1481 * eshell/esh-ext.el (eshell-windows-shell-file): Fix :type.
1482
1483 * eshell/em-ls.el (eshell-ls-exclude-regexp): Fix :type.
1484
850d5045
GM
1485 * progmodes/tcl.el (outline, dabbrev, add-log): Require when
1486 compiling.
1487 (tcl-using-emacs-19-23): Consider Emacs 21+.
1488 (tcl-help-directory-list, tcl-command-switches): Fix :type.
1489 (tcl-add-emacs-menu): Supply menu name.
1490 (tcl-beginning-of-defun, tcl-end-of-defun): Defalias, don't fset.
1491
3a768251
GM
14922001-01-29 Gerd Moellmann <gerd@gnu.org>
1493
1494 * simple.el (delete-trailing-whitespace): Don't delete formfeeds.
1495
274d02f7
SM
14962001-01-29 Stefan Monnier <monnier@cs.yale.edu>
1497
1498 * pcvs.el (cvs-mark-fis-dead): New function.
1499 (cvs-mode-add): Use it.
1500 (cvs-mode-add-change-log-entry-other-window):
1501 Rebind change-log-default-name to itself rather than to nil.
1502
ed5d446e
SS
15032001-01-29 Sam Steingold <sds@gnu.org>
1504
efaa080b 1505 * vc-cvs.el: Replaced (require 'vc) with a bunch of
ed5d446e
SS
1506 `autoload' statements.
1507
e2a80284
EZ
15082001-01-29 Eli Zaretskii <eliz@is.elta.co.il>
1509
8e1db7b3
EZ
1510 * files.el (confirm-kill-emacs): Doc fix.
1511
ff2a1c79
EZ
1512 * frame.el (frame-initialize): Doc fix.
1513
e7b0deaf
EZ
1514 * time-stamp.el (time-stamp-string): Doc fix.
1515
e2a80284
EZ
1516 * woman.el (WoMan-log-1): Make the log buffer writable. From
1517 Markus Rost <rost@math.ohio-state.edu>.
1518
005913e4
GM
15192001-01-29 Gerd Moellmann <gerd@gnu.org>
1520
1521 * imenu.el (imenu-syntax-alist): Add autoload cookie for
1522 the `make-variable-buffer-local'.
1523
58622cc5
GM
15242001-01-29 Dave Love <fx@gnu.org>
1525
1526 * ansi-color.el (ansi-color-for-comint-mode): Add :version.
1527 (ansi-color-for-comint-mode-on, ansi-color-process-output): Add
1528 autoload cookie.
1529 (ansi-color-apply-sequence): Fix typo.
1530
0404d031
GM
15312001-01-29 Gerd Moellmann <gerd@gnu.org>
1532
ed5d446e 1533 * menu-bar.el (menu-bar-files-menu): Add menu items for
438c2df0
GM
1534 Postscript printing in black and white.
1535
0404d031
GM
1536 * mail/rmail.el (rmail-ignored-headers): Add X-Sign, X-BeenThere,
1537 X-Mailman-Version, Precedence, List-Help, List-Post,
1538 List-Subscribe, List-Id, List-Unsubscribe, List-Archive,
1539 Content-Type, Content-Length.
1540
3b6ed359
DL
15412001-01-29 Dave Love <fx@gnu.org>
1542
ddd16e7a
DL
1543 * elide-head.el (elide-head): Make overlay evaporate.
1544
3b6ed359
DL
1545 * international/mule-conf.el (chinese-big5-1, chinese-big5-2): Doc
1546 fix.
1547
8005142f
EZ
15482001-01-28 Eli Zaretskii <eliz@is.elta.co.il>
1549
1550 * isearch.el (isearch-highlight): Don't punt if the display
1551 doesn't support colors, since isearch faces are defined for
1552 monochrome displays as well.
1553
84728570
SS
15542001-01-27 Sam Steingold <sds@gnu.org>
1555
1556 * shell.el (shell-write-history-on-exit): Make sure that we are in
1557 the shell buffer (M-x tex-file RET inserted the error message into
1558 the TeX buffer).
1559
e26f9ced
EZ
15602001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
1561
1562 * simple.el (transient-mark-mode): Doc fix.
1563
dc0274bd
GM
15642001-01-27 Gerd Moellmann <gerd@gnu.org>
1565
84728570 1566 * progmodes/etags.el (find-tag-noselect): Don't bind
dc0274bd
GM
1567 tags-file-name.
1568
c1acacc4
EZ
15692001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
1570
f5058b96
EZ
1571 * shell.el (shell-unquote-argument): If the shell is one of the
1572 mentioned in shell-dumb-shell-regexp, don't treat a backslash as a
1573 quote character.
1574 (shell-dumb-shell-regexp): Document that the shells which match
1575 this regexp are supposed to not treat a backslash as a quote
1576 character.
1577
c1acacc4
EZ
1578 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Undo the change
1579 from 2001-01-12. It is not needed, since backspace is mapped into
1580 DEL.
1581
103db06c 15822001-01-27 Richard M. Stallman <rms@gnu.org>
8dc5c94d 1583
84728570 1584 * dabbrev.el (dabbrev--substitute-expansion):
8dc5c94d
GM
1585 Treat a one-capital-letter abbrev as "not all upper case",
1586 so as to force preservation of the expansion's pattern
1587 if the expansion starts with a capital letter.
1588
cfa70244
EZ
15892001-01-27 Eli Zaretskii <eliz@is.elta.co.il>
1590
cfee9de7
EZ
1591 * facemenu.el (facemenu-set-face, facemenu-set-face-from-menu):
1592 Doc fix.
1593
cfa70244
EZ
1594 * simple.el (transient-mark-mode): Document the fact that many
1595 commands act on the region when mark is active.
1596
17d90d6b
KH
15972001-01-27 Kenichi Handa <handa@etl.go.jp>
1598
1599 * international/quail.el (quail-setup-completion-buf): Make the
1600 multibyteness of current buffer inherited to Quail completion
1601 buffer.
1602 (quail-show-guidance-buf): Make the multibyteness of current
1603 buffer inherited to Quail guidance buffer.
1604 (quail-help): Make the multibyteness of current buffer inherited
1605 to Quail help buffer.
1606
61076b20
DL
16072001-01-26 Dave Love <fx@gnu.org>
1608
c47e2c68
DL
1609 * time-stamp.el: Doc fixes.
1610
84728570 1611 * progmodes/delphi.el (delphi-comment-face, delphi-string-face)
3afe2b93
DL
1612 (delphi-keyword-face, delphi-other-face): Fix :type.
1613
940f14b4
DL
1614 * textmodes/flyspell.el: Doc fixes. Add :version to new options.
1615
1616 * mail/feedmail.el (feedmail): Add :link.
1617 (feedmail-send-it): Doc fix.
1618
1619 * mail/sendmail.el: Doc fixes.
1620 (sendmail-send-it): Fix the non-ASCII regexp and use
1621 rfc2047-encode-string.
1622
61076b20
DL
1623 * dired.el, dired-aux.el: Revert last change.
1624
6c317bd2
GM
16252001-01-26 Gerd Moellmann <gerd@gnu.org>
1626
1627 * makefile.w32-in (DONTCOMPILE): Add various term files.
1628
16292001-01-26 Dave Love <fx@gnu.org>
1630
1631 * Makefile.in (DONTCOMPILE): Add various term files.
1632
1c636b5f
GM
16332001-01-26 Gerd Moellmann <gerd@gnu.org>
1634
af900b23
GM
1635 * man.el (Man-default-man-entry, Man-mode): Doc fix.
1636
15fa6db0
GM
1637 * startup.el (display-startup-echo-area-message): Make sure
1638 the echo area is resized to fit the size of the startup
1639 message.
1640
1c636b5f
GM
1641 * gud.el (gud-perldb-massage-args): Avoid nreverse'ing a list
1642 part of which is a constant.
1643
9b1adbd5
EZ
16442001-01-26 Eli Zaretskii <eliz@is.elta.co.il>
1645
1646 * loadup.el (Top-level) [ms-dos]: Don't load international/ccl
1647 twice.
1648
103db06c 16492001-01-26 Richard M. Stallman <rms@gnu.org>
207d7545
GM
1650
1651 * simple.el (next-line): Don't let `newline' expand abbrevs.
1652 Simplify slightly.
1653 (open-line): Don't let `newline' expand abbrevs.
1654
219227ea
JW
16552001-01-25 John Wiegley <johnw@gnu.org>
1656
1657 * eshell/esh-util.el (eshell-ange-ls-uids): Changed use of `alist'
1658 to `repeat' in the :type field.
1659
1660 * pcomplete.el (pcomplete-file-ignore): Changed a :type field to
1661 allow a choice of regexp or nil.
d2906bf8 1662 (pcomplete-dir-ignore): Same.
219227ea
JW
1663
1664 * eshell/em-unix.el (eshell/occur): Fixed bug causing `occur' (as
1665 a command) to always fail.
1666
ceba0dac
GM
16672001-01-25 Gerd Moellmann <gerd@gnu.org>
1668
1669 * iswitchb.el (iswitchb-make-buflist): When nconc'ing lists, don't
1670 discard the result.
1671 (iswitchb-to-end): Likewise.
1672
9b0630e5
SS
16732001-01-25 Sam Steingold <sds@gnu.org>
1674
1675 * vc-cvs.el (vc-cvs-mode-line-string): Doc & comment fix.
89e65817 1676 Require vc.
9b0630e5 1677
a2ed9670
SM
16782001-01-25 Stefan Monnier <monnier@cs.yale.edu>
1679
f0c1adab
SM
1680 * smerge-mode.el (smerge-font-lock-keywords): Relax submatch 1.
1681
a2ed9670
SM
1682 * emacs-lisp/easy-mmode.el (define-minor-mode): Docstring fix.
1683
34ac3367
DL
16842001-01-25 Dave Love <fx@gnu.org>
1685
61076b20
DL
1686 * lisp/international/mule-diag.el (describe-char-after): Doc fix.
1687 (describe-coding-system): Tweak the English text.
1688
34ac3367
DL
1689 * loadup.el: Preload international/ccl for utf-8.
1690
4685e6b7
EZ
16912001-01-25 Eli Zaretskii <eliz@is.elta.co.il>
1692
1693 * mail/rmail.el (rmail-redecode-body): Doc fix.
1694
0fdb4475
KH
16952001-01-25 Kenichi Handa <handa@etl.go.jp>
1696
23cfab61
KH
1697 * international/mule-cmds.el (reset-language-environment): Reset
1698 coding-category-utf-8 to mule-utf-8.
0fdb4475
KH
1699
1700 * international/mule-conf.el (coding-category-utf-8): Initialize
1701 to mule-utf-8.
1702
9b0630e5 1703 * loadup.el: Preload international/utf-8.
0fdb4475
KH
1704
1705 * international/utf-8.el: New file.
1706
245ed2b1
SM
17072001-01-24 Stefan Monnier <monnier@cs.yale.edu>
1708
1709 * diff-mode.el (diff-mode): Disable preliminary support for `compile'.
1710
e95b0c08
SS
17112001-01-24 Sam Steingold <sds@gnu.org>
1712
1713 * dired.el (dired-replace-in-string): Removed.
1714 (dired-sort-toggle): Use `replace-regexps-in-string'
1715 instead of `dired-replace-in-string'.
9b0630e5 1716
ceba0dac
GM
1717 * dired-aux.el (dired-shell-stuff-it, dired-rename-subdir)
1718 (dired-rename-subdir-2, dired-insert-subdir-doinsert): Ditto.
9b0630e5 1719
e95b0c08
SS
1720 * gs.el (gs-replace-in-string): Removed.
1721 (gs-options): Use `replace-regexps-in-string'
1722 instead of `gs-replace-in-string'.
1723
c3902c3e
EZ
17242001-01-24 Eli Zaretskii <eliz@is.elta.co.il>
1725
1726 * mail/emacsbug.el (report-emacs-bug): Mention the fact that the
1727 bug report is mailed to an email list and posted to a news group.
1728
b66b6aeb
GM
17292001-01-24 Gerd Moellmann <gerd@gnu.org>
1730
e7e41584
GM
1731 * comint.el (comint-replace-by-expanded-history-before-point): Fix
1732 change of 2000-08-03 to move point to the start of the line again.
1733
b66b6aeb
GM
1734 * startup.el (tool-bar-images-pixel-height): New variable.
1735 (command-line): After loading the user's init file, when
1736 tool-bar-mode is on, increase the frame's size by some lines for
1737 the tool-bar.
1738
1739 * frame.el (frame-initialize): Create the initial frame invisible.
e95b0c08 1740
ff890e66
SZ
17412001-01-24 ShengHuo ZHU <zsh@cs.rochester.edu>
1742
1743 * language/chinese.el (chinese-iso-8bit): MIME:GB2312.
1744 (chinese-big5): MIME:Big5.
1745
04363179
GM
17462001-01-24 Gerd Moellmann <gerd@gnu.org>
1747
e95b0c08 1748 * international/mule-cmds.el (universal-coding-system-argument):
04363179
GM
1749 Handle commands with prefix args.
1750
d56aaa64
GM
17512001-01-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
1752
1753 * calendar/diary-lib.el (diary-float): Fix case of MONTH
1754 being a list of numbers.
1755 (diary-mail-entries): Rewritten.
1756
99858627
DL
17572001-01-23 Dave Love <fx@gnu.org>
1758
7aeb1fa9
DL
1759 * international/mule.el (make-coding-system): Fix typo.
1760
99858627
DL
1761 * textmodes/outline.el (outline-mode) <font-lock-defaults>: Add
1762 backward-paragraph as font-lock-beginning-of-syntax-function.
1763
5a43decf
EZ
17642001-01-23 Eli Zaretskii <eliz@is.elta.co.il>
1765
1766 * font-lock.el (font-lock-mode): Doc fix.
1767
b0e98867
KH
17682001-01-23 Kenichi Handa <handa@etl.go.jp>
1769
1770 * international/mule.el (make-translation-table): Fix docstring.
1771
9c8acefd
EZ
17722001-01-22 Eli Zaretskii <eliz@is.elta.co.il>
1773
fd4976b8
EZ
1774 * mail/rmail.el (rmail-redecode-body): New function.
1775
9c8acefd
EZ
1776 * icomplete.el (icomplete-minibuffer-setup-hook): Doc fix.
1777
871e0439
GM
17782001-01-22 Gerd Moellmann <gerd@gnu.org>
1779
21c2bbe0
GM
1780 * isearch.el (isearch-lazy-highlight-case-fold-search)
1781 (isearch-lazy-highlight-regexp): New variables.
1782 (isearch-lazy-highlight-cleanup): Update lazy highlight if
1783 case-fold search or regexp search has been toggled.
1784
5710730c
GM
1785 * wid-edit.el (widget-button-click): Avoid a save-excursion
1786 around running a global binding.
1787
871e0439
GM
1788 * isearch.el (isearch-lazy-highlight-initial-delay): Set default
1789 to 0.25.
1790
d0554957
MB
17912001-01-20 Miles Bader <miles@gnu.org>
1792
1793 * cus-edit.el (custom-face-save): Do post-processing on the face's
1794 new value like `custom-face-set' does.
1795
1519f618
EZ
17962001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
1797
ccd87890
EZ
1798 * mail/emacsbug.el (report-emacs-bug): Report the value of
1799 LC_CTYPE, not LC_TYPE.
1800
1519f618
EZ
1801 * isearch.el (isearch-forward): Add isearch-toggle-case-fold,
1802 isearch-toggle-regexp and isearch-edit-string to doc string.
1803
9724173b
GM
18042001-01-19 Gerd Moellmann <gerd@gnu.org>
1805
48bb9196
GM
1806 * textmodes/texinfo.el (texinfo-mode): Use backward-paragraph
1807 as font-lock-beginning-of-syntax-function in font-lock-defaults.
1808
e95b0c08 1809 * jit-lock.el (jit-lock-fontify-now): Don't bind
9724173b
GM
1810 font-lock-beginning-of-syntax-function to nil.
1811
dc81f8a2
EZ
18122001-01-19 Eli Zaretskii <eliz@is.elta.co.il>
1813
1814 * mail/emacsbug.el (report-emacs-bug): Report values of
1815 locale-coding-system, default-enable-multibyte-characters, and the
1816 environment variables LC_ALL, LC_TYPE, and LANG.
1817
99327974
GM
18182001-01-19 Gerd Moellmann <gerd@gnu.org>
1819
111c181e
GM
1820 * font-lock.el (font-lock-default-fontify-region): Fix last
1821 change.
e95b0c08 1822
2be6ecc6
GM
1823 * font-lock.el (font-lock-multiline): Default to nil.
1824 (font-lock-default-fontify-region): If font-lock-multiline is
1825 nil, don't check the property `font-lock-multiline'.
1826
99327974
GM
1827 * jit-lock.el (jit-lock-after-change): If font-lock-multiline
1828 is nil, don't check the `font-lock-multiline' text property.
1829
2550055a
MK
18302001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
1831
0a949811 1832 * viper.el: Call initial-major-mode on startup.
e95b0c08 1833
0a949811 1834 * ediff.el (ediff-patch-file): Use better defaults.
e95b0c08 1835
8501998a 1836 * ediff-vers.el: Fix for 8+3 DOS file systems.
e95b0c08 1837
2550055a 18382001-01-19 Colin Walters <walters@cis.ohio-state.edu>
e95b0c08 1839
0a949811 1840 * ediff-util.el (ediff-compare-custom-diffs-maybe): Put diff in
2550055a 1841 diff mode, if available.
e95b0c08 1842
0a949811 18432001-01-19 Michael Kifer <kifer@cs.sunysb.edu>
e95b0c08 1844
8501998a 1845 * ediff-hook.el (ediff-xemacs-init-menus): Fixed add-menu-button.
e95b0c08 1846
2550055a
MK
1847 * ediff-init.el (subst-char-in-string): Define and use it, unless
1848 it's already defined.
e95b0c08 1849
8962e303
GM
18502001-01-18 Gerd Moellmann <gerd@gnu.org>
1851
1852 * tooltip.el (tooltip-hide-delay): New user-option.
1853 (tooltip-show): Use tooltip-hide-delay instead of the default.
1854
6b453381
KH
18552001-01-18 Kenichi Handa <handa@etl.go.jp>
1856
1857 * mail/sendmail.el (mail-setup): Call set-buffer-multibyte because
1858 kill-local-variable doesn't work for enable-multibyte-characters.
1859
9eaf396b
DL
18602001-01-17 Dave Love <fx@gnu.org>
1861
cebd37ce
DL
1862 * ediff-init.el (ediff-before-setup-hook)
1863 (ediff-merge-filename-prefix): Add :version.
1864
9eaf396b
DL
1865 * international/latin1-disp.el: Require disp-table.
1866 (latin1-display): Fix :set.
1867
1868 * net/eudc-vars.el (eudc-server, eudc-protocol): Fix :type.
1869
f864120f
GM
18702001-01-17 Gerd Moellmann <gerd@gnu.org>
1871
1872 * isearch.el (isearch-lazy-highlight-initial-delay)
1873 (isearch-lazy-highlight-interval): Default to 0.
1874
18752001-01-17 Bob Glickstein <bobg@zanshin.com>
1876
1877 * isearch.el (isearch-highlight): Set isearch-overlay priority to
1878 1 here rather than each time through
1879 isearch-lazy-highlight-new-loop.
1880 (isearch-lazy-highlight-max): Variable deleted.
1881 (isearch-lazy-highlight-max-at-a-time): New user variable, like
1882 isearch-lazy-highlight-max but controls a single invocation of
1883 isearch-lazy-highlight-update.
1884 (isearch-lazy-highlight-wrapped): Variable recreated.
1885 (isearch-lazy-highlight-window-start): New variable.
1886 (isearch-lazy-highlight-cleanup): Restored to behavior of
1887 before 2-Jan.
1888 (isearch-lazy-highlight-remove-overlays): Function deleted;
1889 behavior folded into isearch-lazy-highlight-cleanup. "Keep"
1890 behavior removed.
1891 (isearch-lazy-highlight-new-loop): Restore old behavior of calling
1892 isearch-lazy-highlight-update in a loop rather than just once.
1893 Test isearch-invalid-regexp here and decide not to start a new
1894 loop, rather than testing it each time through
1895 isearch-lazy-highlight-update.
1896 (isearch-lazy-highlight-search): Function restored.
1897 (isearch-lazy-highlight-update): Get called in a timer loop again,
1898 but this time highlight more than one match each time through.
1899 Only highlight matches in the visible part of the window. Start
1900 at point, move in the direction of the search, and wrap around at
1901 the edge of the window. Use sit-for to force redisplay and ensure
1902 window-start is credible. "Face suppressing" behavior removed;
1903 overlay priorities should make it unnecessary, right?
1904 (isearch-highlight): Face suppressing behavior removed.
1905 (isearch-dehighlight): Face suppressing behavior removed.
1906 (isearch-set-lazy-highlight-faces-at): Removed.
1907
076ec540
KH
19082001-01-17 Kenichi Handa <handa@etl.go.jp>
1909
1910 * language/european.el ("Latin-1"): Make the format of description
1911 about additional language environments same as that of Latin-2.
1912
92328ec5
DL
19132001-01-16 Dave Love <fx@gnu.org>
1914
39f2174e
DL
1915 * isearch.el (isearch-lazy-highlight): Add :version.
1916
92328ec5
DL
1917 * simple.el (backward-delete-char-untabify-method)
1918 (next-line-add-newlines): Add :version.
1919
f251459d
GM
19202001-01-16 Gerd Moellmann <gerd@gnu.org>
1921
9d4850e5
GM
1922 * bindings.el: Bind <backspace> and <delete> via function-key-map.
1923 Don't bind <delete> otherwise.
1924
1925 * simple.el (delete-key-deletes-forward-mode): Bind <backspace>
1926 and <delete> via function-key-map.
1927
f251459d
GM
1928 * textmodes/flyspell.el (mail-mode-flyspell-verify): Check in
1929 Subject line only if point is after the `Subject:'.
1930
771ffcf7
KH
19312001-01-16 Kenichi Handa <handa@etl.go.jp>
1932
bda6b481
KH
1933 * language/japanese.el ("Japanese"): Add japanese-jisx0213-1 and
1934 japanese-jisx0213-2 in `charset' property of this lang. env.
1935
35793af7
KH
1936 * language/european.el ("Latin-1"): Add description for Dutch and
1937 Spanish lang. env.
1938
771ffcf7
KH
1939 * international/mule.el (decode-char): Fix conditions.
1940 (encode-char): Handle eight-bit-control too.
1c8102ff 1941 (transform-make-coding-system-args): New function.
50c29104
KH
1942 (make-coding-system): Accept XEmacs style arguments for CCL base
1943 coding system.
771ffcf7 1944
e1cf67b6
GM
19452001-01-15 Gerd Moellmann <gerd@gnu.org>
1946
1947 * progmodes/etags.el (find-tag-noselect): Save the value of
1948 tags-file-name before switching buffers, for the case it has a
1949 buffer-local value.
1950
b3287acf
GM
19512001-01-15 Alex Schroeder <alex@gnu.org>
1952
9eaf396b
DL
1953 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
1954 From Dave Love <fx@gnu.org>.
b3287acf
GM
1955 (ansi-color-for-comint-mode): Fix :version.
1956
19572001-01-15 Alex Schroeder <alex@gnu.org>
1958
1959 * ansi-color.el (ansi-color-unfontify-region): Doc change.
1960
8d7ff9c8
EZ
19612001-01-14 Eli Zaretskii <eliz@is.elta.co.il>
1962
1963 * dired.el (dired-insert-directory): If file-system-info fails,
1964 remove the " free " part, but don't signal an error.
1965
dbe99ae9
SS
19662001-01-12 Sam Steingold <sds@gnu.org>
1967
1968 * bookmark.el (bookmark-maybe-historicize-string):
1969 Use new backquote syntax.
1970
103db06c 19712001-01-12 Richard M. Stallman <rms@gnu.org>
420198cb
RS
1972
1973 * subr.el (last): Handle a list that doesn't end in nil.
1974
ca2ddd8e
SS
19752001-01-12 Sam Steingold <sds@gnu.org>
1976
1977 * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Bind `backspace'
1978 to `backward-delete-char-untabify'.
1979
1751c874
DL
19802001-01-12 Dave Love <fx@gnu.org>
1981
1982 * cus-edit.el (customize-menu-create): Fix the :filter following
1983 easymenu change.
1984
1985 * wid-edit.el (function): Add :match-alternatives.
1986 (widget-color-action): Doc fix.
1987
3cccce8d
GM
19882001-01-12 Gerd Moellmann <gerd@gnu.org>
1989
1990 * calendar/calendar.el (calendar-basic-setup): Doc fix.
1991
18bfd6b5
KH
19922001-01-12 Kenichi Handa <handa@etl.go.jp>
1993
60a62fdc
KH
1994 * international/mule-cmds.el (prefer-coding-system): Fix
1995 docstring.
1996
18bfd6b5
KH
1997 * international/ccl.el (define-ccl-program): Fix docstring.
1998
562e00da
DL
19992001-01-11 Dave Love <fx@gnu.org>
2000
14fd0da3
DL
2001 * international/mule-cmds.el (standard-display-european-internal):
2002 Set display table for 2208 as for 160.
2003
2004 * progmodes/ada-mode.el (ada-popup-key): Fix last change.
2005
562e00da
DL
2006 * progmodes/fortran.el (fortran-mode-map): Modify Customization
2007 entry for custom-menu-create change.
2008 (fortran-strip-sqeuence-nos): Make arg optional. Fix regexp and
2009 don't cons it in the search loop.
2010
2011 * imenu.el (imenu--truncate-items): Revert last change.
2012
6e961dcd
EZ
20132001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
2014
2015 * info.el (Info-setup-header-line): If the node header includes
2016 either Next: or Prev: links, don't show the File: and Node: parts
2017 in the header line.
2018
2c2ff7f2
GM
20192001-01-11 Gerd Moellmann <gerd@gnu.org>
2020
a7ee2d2e
GM
2021 * comint.el (comint-goto-process-mark): Don't print a message
2022 when running in batch mode.
2023
c5348233
GM
2024 * isearch.el (isearch-search): In the condition-case handler for
2025 `error', set isearch-invalid-regexp to the whole error message.
2026
422717d1
GM
2027 * subr.el (eval-after-load): Call load-symbol-file-load-history to
2028 ensure that eval-after-load works for files dumped with Emacs.
2029
2030 * help.el (load-symbol-file-load-history): New function extracted
2031 from function symbol-file.
2032 (symbol-file): Use it.
2033
2c2ff7f2
GM
2034 * toolbar/save.xpm, toolbar/undo.xpm: Use the same colors as
2035 exit.xpm.
2036
926861fb
EZ
20372001-01-11 Eli Zaretskii <eliz@is.elta.co.il>
2038
2039 * progmodes/etags.el (find-tag-interactive): If last-tag is nil,
2040 behave as if there were no prefix argument.
2041 (find-tag-noselect): If last-tag is nil, behave as if the NEXT-P
2042 argument were nil.
2043
afa1f52c
RS
20442001-01-11 Richard M. Stallman <rms@gnu.org>
2045
ca2ddd8e 2046 * isearch.el (isearch-lazy-highlight-update):
afa1f52c
RS
2047 Don't look for more potential matches once maximum is exceeded.
2048 Use overlays-in to check correctly for overlap with current match.
2049 Ignore empty matches.
2050
47a9f362
MB
20512001-01-11 Miles Bader <miles@gnu.org>
2052
2053 * textmodes/ispell.el (ispell-adjusted-window-height): New function.
2054 (ispell-overlay-window, ispell-help, ispell-show-choices)
2055 (ispell-command-loop): Use it instead of `window-height'.
2056
d196f58d
GM
20572001-01-10 Gerd Moellmann <gerd@gnu.org>
2058
cf523f0e
GM
2059 * files.el (confirm-kill-emacs): New user-option.
2060 (save-buffers-kill-emacs): Ask for final confirmation before
2061 killing Emacs.
2062
d196f58d
GM
2063 * isearch.el (isearch-done): Set isearch-lazy-highlight-start
2064 to nil.
2065
7c6c3d8e
GM
20662001-01-10 Dave Love <fx@gnu.org>
2067
1f8be15d
DL
2068 * progmodes/etags.el (tags-apropos-additional-actions): Fix :type.
2069
2070 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix doc,
2071 :type.
2072
2073 * hi-lock.el (hi-lock-exclude-modes): Fix :type.
2074
2075 * calculator.el (calculator-number-digits): Fix :type.
2076
0d5184de
DL
2077 * vc-cvs.el (vc-cvs-header): Fix :type.
2078 * vc-rcs.el (vc-rcs-header): Fix :type.
2079 * vc-sccs.el (vc-sccs-header): Fix :type.
2080
2081 * progmodes/ada-mode.el (ada-popup-key): Fix :type.
2082
7c6c3d8e
GM
2083 * ansi-color.el (ansi-colors) <defgroup>: Fix :version.
2084
8c9f73a2
GM
2085 * eshell/esh-util.el (eshell-ange-ls-uids): Fix :type.
2086
457b792c
GM
20872001-01-10 Gerd Moellmann <gerd@gnu.org>
2088
2089 * simple.el (set-variable): Force a thorough redisplay for the
2090 case that the variable has an effect on the display, like
2091 `tab-width' has.
2092
d2622d08
AS
20932001-01-10 Andre Spiegel <spiegel@gnu.org>
2094
2095 * vc.el: Add documentation for backend interface.
2096
ae4b5f4f
KH
20972001-01-10 Kenichi Handa <handa@etl.go.jp>
2098
e0844717
KH
2099 * font-lock.el (c-font-lock-extra-types): Add "Lisp_Object".
2100
ae4b5f4f
KH
2101 * international/mule-conf.el (latin-extra-code-table): Set to t
2102 for \223 and \224.
2103
3184082b
KH
21042001-01-09 Kenichi Handa <handa@etl.go.jp>
2105
2106 * international/mule-cmds.el (locale-language-names): Map "es" to
2107 "Spanish" and "nl" to "Dutch".
2108
732b9cdd
GM
21092001-01-09 Gerd Moellmann <gerd@gnu.org>
2110
1dfca644
GM
2111 * bindings.el (global-map): Bind <home> to beginning-of-line,
2112 <end> to end-of-line, C-<home> to beginning-of-buffer, and
2113 C-<end> to end-of-buffer.
2114
732b9cdd
GM
2115 * language/european.el: Add Dutch and Spanish language info
2116 to be able to use the appropriate tutorials.
2117
21182001-01-09 Alex Schroeder <alex@gnu.org>
2119
2120 * ansi-color.el (ansi-color-process-output): Use markers instead
2121 of positions for start and end of region.
2122 (ansi-color-apply-on-region): Rewrote code to make it more robust.
2123 Previously, occasional mistakes happend when fontifying many
2124 chunks of output (eg. ls --color=yes /dev). This happened
2125 whenever an overlay was created up to the end of the region, which
2126 coincided with the process-mark. New text would then be added
2127 within that overlay instead of after it.
2128 (ansi-color-make-extent): Overlays are created with the property
2129 `modification-hooks' set to '(ansi-color-freeze-overlay).
2130 (ansi-color-freeze-overlay): New function. When inserting text at
2131 the end of the overlay, the overlay will resize.
2132
21332000-01-09 Alex Schroeder <alex@gnu.org>
2134
2135 * ansi-color.el (ansi-color-process-output): Doc change.
2136 (ansi-color-unfontify-region): Doc change. No longer installed
2137 automatically in font-lock-unfontify-region-function.
2138 (ansi-color-apply): Doc change.
2139 (ansi-color-apply-on-region): Use extents or overlays instead of
2140 text-properties.
2141 (ansi-color-make-extent): New function.
2142 (ansi-color-set-extent-face): New function.
2143
21442000-01-09 Alex Schroeder <alex@gnu.org>
2145
2146 * ansi-color.el (ansi-color-process): Removed, Emacs and XEmacs
2147 both use ansi-color-process-output, now.
2148 (ansi-color-process-output): Doesn't return string anymore. It is
2149 installed in comint-output-filter-functions for both Emacs and
2150 XEmacs, now.
2151 (ansi-color-unfontify-region): Simplified code removing variables
2152 pos and start-ansi.
2153 (ansi-color-apply): Put text-property ansi-color before putting
2154 text-property face because ansi-color-unfontify-region is called
2155 immediately after the call to put-text-property.
2156 (ansi-color-context-region): Doc change.
2157 (ansi-color-filter-region): Simplified code.
2158 (ansi-color-apply-on-region): Changed start to start-marker, using
2159 a marker explicitly. Put text-property ansi-color before putting
2160 text-property face because ansi-color-unfontify-region is called
2161 immediately after the call to put-text-property.
2162
21632000-01-09 Alex Schroeder <alex@gnu.org>
2164
2165 * ansi-color.el (ansi-color-faces-vector): Doc change.
2166 (ansi-color-for-comint-mode): Changed :type property to choice.
2167 (ansi-color-last-context): Removed.
2168 (ansi-color-process-output): Don't use ansi-color-last-context, as
2169 the main functions will store their context now.
2170 (ansi-color-context): Doc change.
2171 (ansi-color-filter-apply): Rewrote it based on ansi-color-apply.
2172 Uses ansi-color-context such that repeated calls will strip
2173 partial escape sequences, too.
2174 (ansi-color-apply): Simplified code. Colorize end of string if
2175 face is not null. Store context in new (FACE STRING) format, such
2176 that repeated calls will strip partial escape sequences, too.
2177 Append faces to face property using ansi-color-apply-sequence such
2178 that cumulative mode actually works.
2179 (ansi-color-context-region): New variable.
2180 (ansi-color-filter-region): Rewrote it based on
2181 ansi-color-apply-on-region. Uses ansi-color-context-region such
2182 that repeated calls will strip partial escape sequences, too.
2183 (ansi-color-apply-on-region): Simplified code. Colorize end of
2184 region if face is not null. Store context in new (FACE POS)
2185 format, such that repeated calls will strip partial escape
2186 sequences, too. Append faces to face property using
2187 ansi-color-apply-sequence such that cumulative mode actually
2188 works.
2189 (ansi-color-apply-sequence): New function.
2190 (ansi-color-get-face): When the default face is added to the list
2191 of faces, all previous settings are discarded and the list of
2192 faces is set to '(default).
2193
21942000-01-09 Alex Schroeder <alex@gnu.org>
2195
2196 * ansi-color.el (ansi-color-faces-vector): Use nil for the default
2197 face, such that ansi-color-apply and ansi-color-apply-on-region
2198 will do the right thing.
2199 (ansi-color-apply): Do the right thing, ie. if ansi-color-get-face
2200 returns nil, set the list of faces back to nil instead of
2201 appending the result of ansi-color-get-face to the front of the
2202 list.
2203
22042000-01-09 Alex Schroeder <alex@gnu.org>
2205
2206 * ansi-color.el (ansi-color-for-comint-mode): Doc change.
2207 (ansi-color-process): Doc change.
2208 (ansi-color-last-context): New buffer-local variable.
2209 (ansi-color-process-output): New function. It is automatically
2210 added to comint-output-filter-functions if this is XEmacs.
2211 (ansi-color-unfontify-region): New optional parameter for XEmacs
2212 compatibility. Check wether font-lock-syntactic-keywords is
2213 boundp before removing the syntax table text property, as XEmacs
2214 doesn't have it.
2215 (ansi-color-filter-region): Doc change.
2216 (ansi-color-apply-on-region): Doc change.
2217 (ansi-color-make-face): New function. Compatibility layer for
2218 XEmacs. Return temporary faces instead of cons cells for XEmacs.
2219 (ansi-color-make-color-map): Use ansi-color-make-face.
2220 (ansi-color-get-face): Avoid face text property '(nil) as results
2221 in an errow for XEmacs.
2222
22232000-01-09 Alex Schroeder <alex@gnu.org>
2224
2225 * ansi-color.el (ansi-color-unfontify-region): New function. Uses
2226 text-property ansi-color in order to preserve fontification by
2227 ansi-color. When the package is loaded, a lambda expression is
2228 put onto font-lock-mode-hook. This lambda expression will check
2229 font-lock-unfontify-region-function and replace
2230 font-lock-default-unfontify-region with
2231 ansi-color-unfontify-region.
2232 (ansi-color-apply): Add text-property ansi-color in addition to
2233 text-property face.
2234 (ansi-color-apply-on-region): Add text-property ansi-color in
2235 addition to text-property face.
2236 (save-buffer-state): Copy of the macro that is also used by
2237 lazy-lock and font-lock.
2238
2239 (ansi-color-for-comint-mode): New option.
2240 (ansi-color-for-comint-mode-on): Set ansi-color-for-comint-mode.
2241 (ansi-color-for-comint-mode-off): Ditto.
2242 (ansi-color-for-comint-mode-filter): Ditto.
2243 (ansi-color-process): New function. Uses
2244 ansi-color-for-comint-mode to decide what to do. This function is
2245 added to comint-preoutput-filter-functions when the package is
2246 loaded.
2247
2248 (ansi-color-for-shell-mode-set): Removed.
2249 (ansi-color-for-shell-mode): Removed.
2250
22512000-01-09 Alex Schroeder <alex@gnu.org>
2252
2253 * ansi-color.el (ansi-color-for-shell-mode-set): New function with
2254 the lambda expression from the ansi-color-for-shell-mode :set
2255 property. Additionally, modify shell-mode-hook to enable or
2256 disable font-lock-mode for future shell buffers.
2257 (ansi-color-for-shell-mode): The :set property calls
2258 ansi-color-for-shell-mode-set instead of a lambda expression.
2259
22602000-01-09 Alex Schroeder <alex@gnu.org>
2261
2262 * ansi-color.el (ansi-color-for-shell-mode): Doc change.
2263 (ansi-color-context): New variable.
2264 (ansi-color-apply): Save context between calls.
2265
fb55ff10
EZ
22662001-01-09 Eli Zaretskii <eliz@is.elta.co.il>
2267
29910493
EZ
2268 * isearch.el (isearch, isearch-lazy-highlight-face): New
2269 definitions for face colors and attributes.
2270
fb55ff10
EZ
2271 * wid-edit.el (widget-choose): Call display-popup-menus-p instead
2272 of display-mouse-p.
2273
134d6265
KH
22742001-01-09 Kenichi Handa <handa@etl.go.jp>
2275
2276 * international/mule.el (make-coding-system): If the coding system
2277 accepts extra latin codes, register such codes as safe for the
2278 coding system.
2279
103db06c 22802001-01-08 Richard M. Stallman <rms@gnu.org>
78b8eee8 2281
984c9f75
RS
2282 * emacs-lisp/bytecomp.el (byte-compile-log-1): In non-batch case,
2283 don't mention the file name or the date here, because they are
2284 logged at the start of the file.
2285
22862001-01-08 Richard M. Stallman <rms@gnu.org>
2287
78b8eee8
RS
2288 * mouse-drag.el (mouse-drag-should-do-col-scrolling):
2289 Change screen-width to frame-width.
2290
1460e5d4
EZ
22912001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
2292
2293 * info.el (Info-search): Print the default as part of the prompt.
2294
56f24bc1
AS
22952001-01-08 Andre Spiegel <spiegel@gnu.org>
2296
ca2ddd8e 2297 * vc.el (vc-default-latest-on-branch-p): New function, replaces
56f24bc1
AS
2298 constant implementations in backends.
2299
2300 * vc-cvs.el (vc-cvs-latest-on-branch-p): Removed.
2301 (vc-cvs-checkout): Renamed arg WRITABLE to EDITABLE.
2302
2303 * vc-rcs.el (vc-rcs-checkout, vc-rcs-cancel-version): Renamed arg
2304 WRITABLE to EDITABLE.
2305
2306 * vc-sccs.el (vc-sccs-latest-on-branch-p): Removed.
2307 (vc-sccs-checkout, vc-sccs-cancel-version): Renamed arg WRITABLE
2308 to EDITABLE.
2309
b7812d30
EZ
23102001-01-08 Eli Zaretskii <eliz@is.elta.co.il>
2311
2312 * emacs-lisp/copyright.el (copyright-current-year): Now a defvar.
2313 (copyright, copyright-update): Compute the current year at run
2314 time.
2315
7e56ea04
GM
23162001-01-08 Gerd Moellmann <gerd@gnu.org>
2317
2318 * isearch.el (isearch-old-signal-hook): Removed.
2319 (isearch-mode): Add isearch-done to kbd-macro-termination-hook
2320 instead of setting signal-hook-function.
2321 (isearch-done): Remove isearch-done from kbd-macro-termination-hook.
2322
a758f97d
GM
23232001-01-08 Kevin Gallagher <kevingal@onramp.net>
2324
2325 * emulation/edt.el: Update to version 4.0. Provide support for
2326 EDT scroll margins at top and bottom of the window. Provide an
2327 emulation of the EDT SUBS command (bound to GOLD-Enter, by
2328 default). Enhance edt-quit, bound to GOLD-q by default, to warn
2329 user when file-related buffer modifications exist. Provide
2330 support for running EDT Emulation in XEmacs. Provide customize
2331 access to some user updatable variables. Add Commentary section
2332 to file header. Fixed a few minor bugs and cleaned up some code.
2333
2334 * emulation/edt-mapper.el: Update to version 4.0. Provide support
2335 for detecting a keypress that generates an ASCII key sequence.
2336 (Previously, only a keypress that generates a vector was
2337 recognized.) Embed Window Manager name into name of the generated
2338 EDT Emulation initialization file since the initialization file is
2339 Window Manager specific. Add Commentary section to file header.
ca2ddd8e 2340
30db89f9
EZ
23412001-01-07 Eli Zaretskii <eliz@is.elta.co.il>
2342
4deb3ba9
EZ
2343 * mail/sendmail.el (mail-mode): Doc fix.
2344
30db89f9
EZ
2345 * info.el (Info-goto-emacs-command-node): Doc fix.
2346 (Info-goto-emacs-key-command-node): Doc fix.
2347
c3f2772b
EZ
23482001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
2349
8726e79b 2350 * ediff-vers.el (noninteractive): Don't load generic-sc on MS-DOS
c3f2772b
EZ
2351 systems without long file-name support.
2352
0dac6924
AI
23532001-01-06 Andrew Innes <andrewi@gnu.org>
2354
2355 * makefile.w32-in (custom-deps): Set EMACSLOADPATH explicitly.
2356
4e6ef391
EZ
23572001-01-06 Eli Zaretskii <eliz@is.elta.co.il>
2358
380866a2
EZ
2359 * isearch.el (isearch-lazy-highlight-remove-overlays): Doc fix.
2360 (isearch-lazy-highlight-update): Doc fix.
2361
148b5960
EZ
2362 * ffap.el (ffap-bindings): Doc fix.
2363
4e6ef391
EZ
2364 * dired-x.el (dired-virtual-guess-dir): Doc fix.
2365
4cb1bcc2
DL
23662001-01-05 Dave Love <fx@gnu.org>
2367
2368 * emacs-lisp/cl-seq.el (remove, remq): Remove.
2369
3828218c
GM
23702001-01-05 Gerd Moellmann <gerd@gnu.org>
2371
f1ade7d3
GM
2372 * mouse-drag.el (mouse-drag-safe-scroll): Bind
2373 scroll-preserve-screen-position to nil.
2374
1f4139d5
GM
2375 * isearch.el (isearch-old-signal-hook): New variable.
2376 (isearch-mode): Set signal-hook-function to isearch-done.
2377 (isearch-done): Restore old signal-hook-function.
2378
3828218c
GM
2379 * info.el (Info-fontify-node): Mark one more char as intangible.
2380
3970013f
KH
23812000-01-05 Kenichi Handa <handa@etl.go.jp>
2382
3828218c 2383 * composite.el (compose-last-chars): New argument COMPONENTS. If
3970013f
KH
2384 it is non-nil, compose preceding characters by compose-region with
2385 COMPONENTS.
2386
2387 * international/quail.el (quail-input-string-to-events): New function.
2388 (quail-input-method): Convert input string to events here.
2389 (quail-start-translation): Return input string, not event list.
2390 (quail-start-conversion): Likewise.
2391
f3b05e99
GM
23922001-01-04 Gerd Moellmann <gerd@gnu.org>
2393
ca2ddd8e 2394 * tooltip.el (tooltip-cancel-delayed-tip)
2f5ded21
GM
2395 (tooltip-start-delayed-tip): Renamed from tooltip-disable-timeout
2396 and tooltip-add-timeout.
2397 (tooltip-show): Set border color from faces's foreground.
2398 (tooltip-show-help-function): If called with the same help string
2399 as last time, do nothing.
2400 (tooltip-help-tips): Don't set tooltip-help-message to nil.
2401
0f2ac578
GM
2402 * startup.el (fancy-splash-screens): Don't bind show-help-function
2403 to nil.
2404
f3b05e99
GM
2405 * tooltip.el (tooltip-frame-parameters): Remove colors.
2406 (tooltip): New face
2407 (tooltip-set-param): New function.
2408 (tooltip-show): Set up color frame parameters from face `tooltip'.
2409 Display the tooltip text in face `tooltip'.
2410
8416e94a
DL
24112001-01-04 Dave Love <fx@gnu.org>
2412
2413 * whitespace.el (whitespace-global-mode): Fix typo.
2414
2415 * hilit19.el, mail/rnewspost.el, mail/rnews.el: Moved to obsolete.
2416
30db89f9
EZ
24172001-01-04 Eli Zaretskii <eliz@is.elta.co.il>
2418
2419 * help.el (help-for-help): Fix a typo in a doc string. From
2420 kwzh@gnu.org (Karl Heuer).
2421
b847eb8c
DL
24222001-01-03 Dave Love <fx@gnu.org>
2423
2424 * dired-x.el: Doc fixes. Maintainer change.
2425 (dired-guess-shell-gnutar, dired-guess-shell-znew-switches): Fix
2426 :type.
2427 (dired-guess-shell-alist-default): Don't use xloadimage for PNG.
2428 (dired-guess-shell-alist-user): Customize.
2429 (dired-x-help-address): Set to bug-gnu-emacs.
2430 (dired-x-maintainer, dired-x-file, dired-x-version): Deleted.
2431 (dired-default-directory): Renamed from default-directory.
2432
2433 * hl-line.el (hl-line): Doc fix.
2434
43c4b570
KF
24352001-01-03 Karl Fogel <kfogel@red-bean.com>
2436
1bf6b1bf 2437 * mail/mail-hist.el (mail-hist-text-too-long-p): Doc fix.
43c4b570 2438
984c9f75 24392001-01-02 Richard M. Stallman <rms@gnu.org>
5297fb00
RS
2440
2441 * isearch.el (isearch-lazy-highlight-cleanup): Arg now says
2442 to remove all the current alternative-match highlighting.
2443 If nil, remove only what's outside the current window.
2444 (isearch-lazy-highlight-remove-overlays): Take optional
2445 region within which NOT to remove them.
2446 (isearch-lazy-highlight-new-loop): Greatly simplified.
2447 (isearch-lazy-highlight-update): Find all the other occurrences
2448 visible in the window, in just one call.
2449 (isearch-lazy-highlight-start): Now holds start of region to scan.
2450 (isearch-lazy-highlight-end): Now holds end of region to scan.
2451 (isearch-lazy-highlight-wrapped): Variable deleted.
2452 (isearch-lazy-highlight-search): Function deleted.
2453
13d6a61c
AI
24542000-01-02 Andrew Innes <andrewi@gnu.org>
2455
2456 * w32-fns.el (convert-standard-filename): Do length check on name
2457 before aref.
2458
064866e7
DL
24592001-01-02 Dave Love <fx@gnu.org>
2460
b33e041b
DL
2461 * progmodes/cperl-mode.el (cperl-invalid-face): Don't double-quote
2462 value.
2463 (cperl-init-faces): Allow cperl-invalid-face to be a normal face.
2464
2465 * ls-lisp.el (ls-lisp) <defgroup>: Add :version.
2466
8166ffd5
DL
2467 * net/browse-url.el (browse-url-filename-alist): Avoid backquote
2468 read syntax.
2469
064866e7
DL
2470 * calendar/todo-mode.el (todo): Add :link, :version.
2471 (todo-save-top-priorities): Remove autoload cookie.
2472 (todo-add-category, todo-add-item-non-interactively)
2473 (todo-insert-item, todo-mode, todo-cp, todo-show): Fix autoload
2474 cookie.
2475
6dde6abc
GM
24762001-01-02 Gerd Moellmann <gerd@gnu.org>
2477
2478 * comint.el (comint-input-history-ignore): New variable.
2479 (comint-read-input-ring): Ignore entries matching
2480 comint-input-history-ignore.
2481
1a8a9daf
GM
24822001-01-02 Eric M. Ludlam <zappo@gnu.org>
2483
2484 * emacs-lisp/lisp-mnt.el (lm-copyright-prefix): New Variable.
2485 (lm-copyright-mark): New function.
2486 (lm-crack-copyright): New function.
2487 (lm-verify): Check that the file has a copyright.
2488 Check that the file is copyright Free Software Foundation.
2489
9c92eb53
KH
24902000-12-30 Kenichi Handa <handa@etl.go.jp>
2491
2492 * international/mule-diag.el (print-fontset): Indent font name by
2493 24 columns, not 25.
2494
49172314
GM
24952000-12-29 Gerd Moellmann <gerd@gnu.org>
2496
762a68ec
GM
2497 * textmodes/flyspell.el (mail-mode-flyspell-verify): Spell-check
2498 in Subject line.
2499
49172314
GM
2500 * mail/mailabbrev.el (mail-abbrevs-enable, mail-abbrevs-disable):
2501 Use mail-mode-hook instead of mail-setup-hook. Otherwise
2502 continuing an interrupted message with C-u C-x m for instence,
2503 winds up in Mail mode without abbrevs.
2504
bd7a2e26
GM
25052000-12-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2506
2507 * ps-print.el: Handle form feed better when ps-zebra-stripe-follow is
2508 non-nil. Adding almost all customization variables on ps-setup. Doc
2f5ded21 2509 fix.
bd7a2e26
GM
2510 (ps-print-version): New version number (6.3.3).
2511 (ps-end-with-control-d): Initialization fix.
2512 (ps-lines-printed): New var.
2513 (ps-skip-newline): New fun.
2514 (ps-setup, ps-prologue-file, ps-begin-job, ps-begin-page)
2515 (ps-next-line, ps-continue-line, ps-plot-region)
2516 (ps-generate-postscript-with-faces, ps-end-job): Code fix.
ca2ddd8e 2517
2b3f28a4
KH
25182000-12-29 Kenichi Handa <handa@etl.go.jp>
2519
2520 * international/fontset.el (x-complement-fontset-spec): Resolve
2521 ASCII font name so that the same family name is used for fonts
2522 registered in x-font-name-charset-alist.
2523 (create-fontset-from-fontset-spec): Adjusted for the above change.
2524 The name of fontset alias should be a unresolved ASCII font name.
2525
2ece9174
GM
25262000-12-28 Gerd Moellmann <gerd@gnu.org>
2527
2528 * simple.el (delete-key-deletes-forward-mode): Bind backspace
2529 and delete in isearch-mode-map.
2530
cbe3ad7a
RS
25312000-12-28 Richard M. Stallman <rms@gnu.org>
2532
ca2ddd8e 2533 * dired-x.el (dired-guess-shell-alist-default):
cbe3ad7a
RS
2534 Use xpdf instead of acroread.
2535
a816f1c5
KH
25362000-12-28 Kenichi Handa <handa@etl.go.jp>
2537
f086e73c
KH
2538 * textmodes/artist.el (artist-butlast): Deleted.
2539 (artist-ellipse-mirror-quadrant): Use butlast instead of
defac922 2540 artist-butlast.
f086e73c 2541
a816f1c5
KH
2542 * subr.el (butlast, nbutlast): Moved from cl.el to here.
2543
2544 * emacs-lisp/cl.el (butlast, nbutlast): Moved to subr.el.
2545
b202115b
EZ
25462000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
2547
2548 From Francis J. Wright <F.J.Wright@maths.qmw.ac.uk>:
2549
2550 * ls-lisp.el: Better support for the Mac and MS-Windows.
2551 (ls-lisp): New defgroup.
2552 (ls-lisp-emulation, ls-lisp-ignore-case, ls-lisp-dirs-first)
ca2ddd8e 2553 (ls-lisp-verbosity, ls-lisp-use-insert-directory-program)
b202115b
EZ
2554 (ls-lisp-support-shell-wildcards): New defcustoms.
2555 (ls-lisp-parse-symlink): New function.
2556 (insert-directory): Code to convert switches to a list and set up
2557 the wildcard argument copied from ls-lisp-insert-directory.
2558 (ls-lisp-insert-directory): New argument TIME-INDEX. Add support
2559 for -C and -R switches.
2560 (ls-lisp-column-format): New function.
ca2ddd8e 2561 (ls-lisp-delete-matching, ls-lisp-handle-switches)
b202115b
EZ
2562 (ls-lisp-format-time): Add doc strings.
2563 (ls-lisp-handle-switches): Handle -U, -S, -X, and -F switches.
2564 Support ls-lisp-dirs-first.
2565 (ls-lisp-classify, ls-lisp-extension): New functions.
2566 (ls-lisp-format): Optionally support emulation of symlinks.
2567 Support -i, -s, and -G switches.
2568
6061fbf0
GM
25692000-12-27 Gerd Moellmann <gerd@gnu.org>
2570
5e25feee
GM
2571 * textmodes/texinfo.el (texinfo-mode): Set fill-column to 70.
2572
6061fbf0
GM
2573 * version.el (emacs-version): Print X scroll bar information.
2574
2575 * scroll-bar.el (toplevel): Check for x-toolkit-scroll-bars
2576 instead of x-toolkit-scroll-bars-p.
2577
2578 * loadup.el (toplevel): Check for x-toolkit-scroll-bars instead
2579 of x-toolkit-scroll-bars-p.
2580
25050dab
EZ
25812000-12-27 Eli Zaretskii <eliz@is.elta.co.il>
2582
2583 * ffap.el (ffap-bindings): Make interactive and add an autoload
2584 cookie.
2585 (ffap-bindings): Doc fix, to reflect the above change.
2586
c1786874
KH
25872000-12-27 Kenichi Handa <handa@etl.go.jp>
2588
2589 * term.el (term-char-mode): Define all non-ascii self-inserting
2590 characters to 'term-send-raw in term-raw-map.
2591
7261ece3 25922000-12-25 Michael Kifer <kifer@cs.sunysb.edu>
ca2ddd8e 2593
6061fbf0 2594 * viper-init (viper-restore-cursor-type): Added condition-case
7261ece3 2595 guard.
ca2ddd8e 2596
6061fbf0 2597 * ediff-init.el (ediff-quit-hook,ediff-suspend-hook): Changed
7261ece3 2598 initialization; use add-hook.
6061fbf0 2599 (ediff-file-remote-p): Use file-local-copy.
ca2ddd8e 2600
6061fbf0 2601 * ediff-ptch.el (ediff-prompt-for-patch-buffer): Improved defaults.
ca2ddd8e 2602
6061fbf0
GM
2603 * ediff.el (ediff-patch-buffer): Bug fix.
2604 (ediff-revision): Allow selection of the file at the prompt.
ca2ddd8e 2605
83f40583
SM
26062000-12-23 Stefan Monnier <monnier@cs.yale.edu>
2607
2608 * subr.el (combine-run-hooks): Remove.
2609
2610 * emacs-lisp/edebug.el (define-minor-mode): Improve the spec
2611 and remove the rogue second spec.
2612
bdd6d4e8
GM
26132000-12-23 Gerd Moellmann <gerd@gnu.org>
2614
2615 * progmodes/compile.el (compilation-forget-errors): Fix indentation.
2616
26736ce3
SM
26172000-12-22 Stefan Monnier <monnier@cs.yale.edu>
2618
0e86b6b0
SM
2619 * smerge-mode.el (smerge-basic-map): Use `=' rather than `d'.
2620 Use minibuffer menu prompt for the `=' prefix.
2621 (smerge-command-prefix): Change default to C-^.
6eabfb26 2622 (smerge-mode): Don't assume font-lock doesn't move point.
0e86b6b0 2623
26736ce3
SM
2624 * skeleton.el (skeleton-internal-1): Make sure the first line of
2625 the region is also re-indented.
d21584d6
SM
2626 (skeleton-end-newline): New var.
2627 (skeleton-end-hook): Use it.
26736ce3 2628
95fa4fd7
MB
26292000-12-22 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
2630
2631 * comint.el (comint-password-prompt-regexp): Support CVS.
2632
f060b834
GM
26332000-12-22 Gerd Moellmann <gerd@gnu.org>
2634
856ff7a7
GM
2635 * simple.el (delete-key-deletes-forward-mode): Simplify. Also
2636 backspace key combinations, depending on
2637 delete-key-deletes-forward.
2638
2639 * bindings.el ([C-backspace]): Bind C-backspace to kill-word.
2640
f060b834
GM
2641 * simple.el (delete-key-deletes-forward): Doc fix.
2642
653558a1
GM
26432000-08-22 Emmanuel Briot <briot@gnat.com>
2644
2645 * xml.el (top level comment): Updated to reflect the fact that
26736ce3 2646 white spaces are relevant in the XML file.
653558a1
GM
2647 (xml-parse-file): Do not kill an existing Emacs buffer if the file
2648 to parse was already edited. This allows for on-the-fly analysis
26736ce3 2649 of XML files.
653558a1
GM
2650 (xml-parse-tag): Check that the casing is the same in the start
2651 tag and end tag, since XML is case-sensitive. Allows for spaces
2652 in the end tag, after the name of the tag.
2653 (xml-parse-attlist): Allow for the character '-' in the name of
2654 attributes, as in the standard http-equiv attribute Do not save
26736ce3 2655 the properties in the XML tree, since they are not relevant.
653558a1 2656
3ad93d8d
SM
26572000-12-21 Stefan Monnier <monnier@cs.yale.edu>
2658
2659 * generic.el (generic-read-type): Undo last change, inline into
2660 `generic-mode' and then remove.
2661 (generic-mode): Inline generic-read-type.
2662 (define-generic-mode): Push the symbol name rather than the symbol
2663 onto generic-mode-list.
2664
177f4e88
GM
26652000-12-21 Gerd Moellmann <gerd@gnu.org>
2666
8e15274f
GM
2667 * generic.el (generic-read-type): Build an alist for
2668 completing-read as in 20.7.
2669
2670 * play/landmark.el (lm): Use interactive spec `P'.
2671 (toplevel): Don't set debug-on-error.
2672
177f4e88
GM
2673 * server.el (server-switch-buffer): Choose a window on a visible
2674 frame.
2675
6ba384dc
GM
26762000-12-21 Dave Pearson <davep@davep.org>
2677
2678 * quickurl.el: Commentry change, I've moved my web site.
ca2ddd8e 2679
647a066c
GM
26802000-12-21 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2681
2682 * ebnf2ps.el: Fix a problem with skip-chars-forward: it doesn't accept
2683 ranges like \177-\237, but accepts the character sequence from \177 to
2684 \237. Doc fix.
2685 (ebnf-version): New version (3.4).
2686 (ebnf-setup): Code fix.
2687 (ebnf-range-regexp): New fun.
2688 (ebnf-8-bit-chars): Const fix.
2689
2690 * ebnf-bnf.el: Fix the same problem as described on ebnf2ps.el log
2691 entry. Doc fix.
2692 (ebnf-bnf-lex): Code fix.
2693 (ebnf-bnf-comment-chars): Const fix.
2694
2695 * ebnf-iso.el: Fix the same problem as described on ebnf2ps.el log
2696 entry. Doc fix.
2697 (ebnf-iso-comment-chars): Const fix.
2698
2699 * ebnf-otz.el: Doc fix.
2700
2701 * ebnf-yac.el: Fix the same problem as described on ebnf2ps.el log
2702 entry. Doc fix.
2703 (ebnf-yac-skip-code): Code fix.
2704 (ebnf-yac-comment-chars): Const fix.
ca2ddd8e 2705
bc22fd18
EZ
27062000-12-21 Eli Zaretskii <eliz@is.elta.co.il>
2707
2708 * files.el (insert-directory-safely): New function.
834d23b2 2709 (recover-file): Use it instead of insert-directory. From Markus
ca2ddd8e 2710 Rost <markus.rost@mathematik.uni-regensburg.de>
bc22fd18 2711
587fc3f9
KH
27122000-12-21 Kenichi Handa <handa@etl.go.jp>
2713
eeefcfde 2714 * international/mule-cmds.el (select-safe-coding-system): Check
4d513a57 2715 coding-category-list more rigidly. Improve help message.
eeefcfde 2716
587fc3f9
KH
2717 * dired.el (dired-move-to-filename-regexp): Fix previous change.
2718
01860fb9
MB
27192000-12-21 Miles Bader <miles@gnu.org>
2720
587fc3f9
KH
2721 * mail/sendmail.el (mail-mode): Set `comment-start' to the yank
2722 prefix.
01860fb9 2723
3f9d67a6
KH
27242000-12-21 Kenichi Handa <handa@etl.go.jp>
2725
9fd1c1f7
KH
2726 * international/mule-diag.el (describe-char-after): Make *Help*
2727 buffer inherit multibyteness of the current buffer.
2728
3f9d67a6
KH
2729 * international/mule.el (make-char): Docstring adjusted for the
2730 change of make-char-internal.
2731
c9669fac
SM
27322000-12-20 Stefan Monnier <monnier@cs.yale.edu>
2733
2734 * international/iso-cvt.el: Docstrings fix.
2735
19594307
DL
27362000-12-20 Dave Love <fx@gnu.org>
2737
2738 * subr.el (eval-after-load): Doc fix.
2739
b1a447b3
KH
27402000-12-20 Kenichi Handa <handa@etl.go.jp>
2741
2742 * jka-compr.el (jka-compr-partial-uncompress): Don't use `concat'
2743 for numbers.
2744
09877d5d
MB
27452000-12-20 Miles Bader <miles@gnu.org>
2746
2747 * international/quail.el (quail-help): Resize the help window
2748 again after it has all its contents. Remove unneeded progn.
2749
71d4497a
GM
27502000-12-19 Gerd Moellmann <gerd@gnu.org>
2751
2752 * pcmpl-linux.el: Fix copy/paste error.
2753
741e56a0
AI
27542000-12-19 Andrew Innes <andrewi@gnu.org>
2755
2756 * simple.el (delete-key-deletes-forward-mode): Fix typo in
2757 docstring.
2758
cc24d91c
CD
27592000-12-19 Carsten Dominik <dominik@strw.leidenuniv.nl>
2760
ba4c05aa
CD
2761 * progmodes/idlw-rinfo.el: Fixed copyright notice.
2762
2763 * progmodes/idlw-toolbar.el: Fixed copyright notice.
2764
2765 * progmodes/idlw-shell.el: Fixed copyright notice.
2766
2767 * progmodes/idlwave.el: Fixed copyright notice.
2768
71d4497a 2769 * textmodes/reftex-dcr.el (reftex-view-crossref): Added SPACE and
cc24d91c
CD
2770 TAB as key separators.
2771
524c8caf
GM
27722000-12-19 Alex Schroeder <alex@gnu.org>
2773
2774 * sql.el (sql-sybase-options): New option.
2775 (sql-sybase): Use it. Add sql-database to the list of parameters
2776 provided for login. The options -w 2048 -n are not used any more.
2777 (sql-postgres-options): Changed default from "--pset" to "-P".
2778 (sql-mysql-options): Doc change.
2779 (sql-stop): Doc change.
2780
b5fa513d
KH
27812000-12-19 Kenichi Handa <handa@etl.go.jp>
2782
2783 * international/quail.el (quail-input-method): Always hide
2784 the guidance buffer on exiting.
2785
91c9e6ce
GM
27862000-12-18 Gerd Moellmann <gerd@gnu.org>
2787
c6da4eb4
GM
2788 * tooltip.el (tooltip-mode): Signal an error if x-show-tip
2789 isn't fboundp.
2790
3d2a0e0b
GM
2791 * server.el (server-buffer-done): Bury the buffer before
2792 killing it.
2793
91c9e6ce
GM
2794 * faces.el (face-spec-set): Interpret a nil in specs for
2795 foreground and background colors as `unspecified', for
2796 compatibility with 20.x.
2797
40fa0008
DL
27982000-12-18 Dave Love <fx@gnu.org>
2799
22adbe54
DL
2800 * simple.el (mail-user-agent): Doc fix.
2801 (input-mode-8-bit): Removed.
2802
2803 * international/mule.el (set-keyboard-coding-system): Doc fix.
2804 (keyboard-coding-system): New option.
2805
40fa0008
DL
2806 * mail/sendmail.el (send-mail-function): Customize.
2807
6f4745e2
EZ
28082000-12-18 Eli Zaretskii <eliz@is.elta.co.il>
2809
2810 * international/codepage.el (cp866-decode-table): New table.
2811
82b90229
GM
28122000-12-18 Gerd Moellmann <gerd@gnu.org>
2813
2814 * version.el (emacs-version): Remove `%a' from the time format
2815 because the weekday doesn't fit well into each locale.
2816
5a047002
MB
28172000-12-18 Miles Bader <miles@gnu.org>
2818
7f49aa07
MB
2819 * image-file.el (image-file-name-extensions): Add "pgm" and "ppm".
2820
ca2ddd8e 2821 * textmodes/artist.el (artist-replace-chars, artist-replace-char):
5a047002
MB
2822 Check that emacs-major-version is `=' to 20, not `>='.
2823 (artist-replace-chars): Use `make-string' instead of a loop.
2824
22ea2607
EZ
28252000-12-17 Stefan Monnier <monnier@cs.yale.edu>
2826
2827 * pcvs.el (cvs-diff-backup-extractor): Return full-path for file.
2828 (cvs-execute-single-file): Don't change directory.
2829 Patch from Per Cederqvist.
2830
6c825f8e
EZ
28312000-12-16 Eli Zaretskii <eliz@is.elta.co.il>
2832
2833 * textmodes/ispell.el (check-ispell-version): If
2834 `ispell-program-name' is "aspell", pass it the -v switch instead
2835 of -vv.
2836
8ff06845
KH
28372000-12-16 Kenichi Handa <handa@etl.go.jp>
2838
af4bb4c8
KH
2839 * international/mule-diag.el (mule-diag): Insert information about
2840 configure options, multibyte awareness, language env.
2841
8ff06845
KH
2842 * international/ja-dic-cnv.el (skkdic-get-candidate-list): Fix the
2843 regexp to search for candidates.
2844
b24e84ab
EZ
28452000-12-15 Eli Zaretskii <eliz@is.elta.co.il>
2846
2847 * info.el (Info-forward-node): If the node has an
2848 Info-header-line, widen the buffer before searching for "next:"
2849 and "up:" pointers, and set the search limit to stay in the
2850 current node.
2851
7981d89f
MB
28522000-12-16 Miles Bader <miles@gnu.org>
2853
2854 * simple.el (delete-trailing-whitespace): Remove extraneous let.
2855
88ee7917
MB
28562000-12-15 Miles Bader <miles@gnu.org>
2857
2858 * comint.el (comint-send-string, comint-send-region): Also accept
2859 a buffer, buffer-name, or nil for PROCESS, for compatibility with
2860 process-send-string/region.
2861
0c28d842
GM
28622000-12-15 Gerd Moellmann <gerd@gnu.org>
2863
4ea7fdca
GM
2864 * isearch.el (isearch-lazy-highlight-max): New user-option.
2865 (isearch-lazy-highlight-update): Don't highlight more than
2866 isearch-lazy-highlight-max matches.
2867
0c28d842
GM
2868 * mail/mh-utils.el (mh-find-path): Set read-mail-command.
2869
984c9f75 28702000-12-15 Richard M. Stallman <rms@gnu.org>
3ffa545b 2871
8062e53a
GM
2872 * sort.el (sort-columns): Fix error message.
2873
3ffa545b
GM
2874 * dabbrev.el (dabbrev--last-case-pattern): Value is now
2875 `upcase' or `downcase' or nil.
2876 (dabbrev-expand): Don't do anything with dabbrev--last-case-pattern.
2877 Pass new record-case-pattern arg to dabbrev--substitute-expansion.
2878 (dabbrev--substitute-expansion): New arg record-case-pattern.
2879 If it is non-nil, set dabbrev--last-case-pattern.
2880 If ABBREV is " ", use dabbrev--last-case-pattern to change EXPANSION.
2881
2882 * dabbrev.el (dabbrev--find-expansion): Remove extra nreverse.
2883
c2d7f289
MB
28842000-12-15 Miles Bader <miles@gnu.org>
2885
b6348438
MB
2886 * paths.el (Info-default-directory-list): Don't delete
2887 configure-info-directory from the list of standard info
2888 directories when appending it to the end -- their order is
2889 important.
2890
f9056dd9
MB
2891 * faces.el (read-face-attribute): If there's no entry for the
2892 user's input in VALID, just use it as-is (this will often result
2893 in an error, but it may be OK for e.g. colors using hexadecimal
2894 notation, and at least will yield a better error message).
2895
c2d7f289 2896 * window.el (mode-line-window-height-fudge): Function removed.
ca2ddd8e 2897 (height-affecting-face-attributes, mode-line-window-height-fudge):
c2d7f289
MB
2898 Variables removed.
2899 * textmodes/ispell.el (ispell-overlay-window): Ensure that the new
2900 window is really the right size. Use vertical-motion
2901 rather than forward-line.
2902 (ispell-help): Don't use ispell-mode-line-window-height-fudge.
2903 (ispell-command-loop, ispell-show-choices): Use the variable
2904 ispell-choices-win-default-height, rather than the function.
2905 (ispell-choices-win-default-height): Function removed.
2906 (ispell-mode-line-window-height-fudge): Function removed.
ca2ddd8e 2907
8f530b95
SM
29082000-12-14 Stefan Monnier <monnier@cs.yale.edu>
2909
2910 * add-log.el (add-change-log-entry): Only expand-file-name if non-nil.
2911
6d435deb
EZ
29122000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
2913
4dddb0b7
EZ
2914 * paths.el (Info-default-directory-list): If
2915 configure-info-directory is not one of the standard directories,
2916 put it first in the list; otherwise put it last. Doc string
2917 changed accordingly.
2918
2919 * info.el (Info-directory-list): Change doc string to reflect the
2920 change in Info-default-directory-list.
2921
6d435deb
EZ
2922 * simple.el (delete-key-deletes-forward-mode): Treat ms-dos and
2923 windows-nt as windowed environments, even under -nw.
2924
2925 * startup.el (command-line): Don't call x-backspace-delete-keys-p
2926 if not fboundp. Switch delete-forward mode for the <delete> key
2927 on all PC platforms, even under -nw.
2928
2929 * term/internal.el ([M-delete]): Remap to M-d.
2930
9d7d9263
GM
29312000-12-14 Gerd Moellmann <gerd@gnu.org>
2932
2933 * emacs-lisp/lisp-mnt.el: Change maintainer to FSF.
2934
7cf0153a
EZ
29352000-12-14 Eli Zaretskii <eliz@is.elta.co.il>
2936
2937 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
2938
5e5b3d41
GM
29392000-12-14 Gerd Moellmann <gerd@gnu.org>
2940
5f368d29
GM
2941 * startup.el (command-line): Call delete-key-deletes-forward-mode,
2942 if appropriate.
2943
2944 * simple.el (delete-key-deletes-forward): New user-option.
2945 (delete-key-deletes-forward-mode): New function.
2946
9d7d9263 2947 * bindings.el: Bind `delete' to backward-delete-char.
5f368d29 2948
5e5b3d41
GM
2949 * emacs-lisp/easymenu.el (easy-menu-current-active-maps): Test
2950 if symbol is bound before getting its value.
2951
2952 * tooltip.el (tooltip-show): If an error is signaled in
2953 x-show-tip, display that error, and display the help in the
2954 echo area.
ca2ddd8e 2955
191b83b6
KH
29562000-12-14 Kenichi Handa <handa@etl.go.jp>
2957
2958 * international/ja-dic-cnv.el (skkdic-set-okuri-nasi): Show
2959 "... entries" messages for every 10000 entries, not 10.
2960
6192b604
KF
29612000-12-13 Karl Fogel <kfogel@red-bean.com>
2962
2963 * bookmark.el: Provide a generic exit hook, as suggested by
2964 Ovidiu Predescu <ovidiu@cup.hp.com>:
a924cf63
EZ
2965 (bookmark-exit-hook): New var.
2966 (bookmark-exit-hook-internal): New func, replaces
6192b604
KF
2967 old raw lambda form in `kill-emacs-hook', and runs new
2968 `bookmark-exit-hooks'. No longer tests for the bookmark feature,
2969 as logically that feature must have been provided if this function
2970 is running.
2971 Removed ;;;###autoload before the `add-hook' call.
2972
5edf6b55
SM
29732000-12-13 Stefan Monnier <monnier@cs.yale.edu>
2974
2975 * emacs-lisp/easymenu.el (easy-menu-define): Setup indentation.
2976 (easy-menu-current-active-maps): New function.
2977 (easy-menu-get-map): Use it.
2978 Make a proper menu entry when creating a new keymap.
2979
16b5e8e6
KH
29802000-12-13 Kenichi Handa <handa@etl.go.jp>
2981
d49fc4eb
KH
2982 * international/characters.el: Fix cases and syntaxes for
2983 mule-unicode-0100-24ff.
2984
3b53d876
KH
2985 * dired.el (dired-move-to-filename-regexp): Fixed for the case
2986 that a Japanese character is not appended after day and year.
2987
16b5e8e6
KH
2988 * info.el (Info-suffix-list): Change format for a command that
2989 requires arguments.
2990 (info-insert-file-contents): Adjusted for the above change.
2991
1df1c518
AS
29922000-12-12 Andreas Schwab <schwab@suse.de>
2993
2994 * tar-mode.el (tar-extract): Base the name of the subfile buffer
2995 on the name of the tar buffer. Verify that the existing buffer is
2996 visiting the same subfile.
2997
a7a07b98
DL
29982000-12-12 Dave Love <fx@gnu.org>
2999
3000 * subdirs.el: Add obsolete.
3001
4fdbd809
GM
30022000-12-12 Gerd Moellmann <gerd@gnu.org>
3003
bfdb75ee
GM
3004 * mail/rmailsum.el (rmail-summary-expunge)
3005 (rmail-summary-expunge-and-save): Use rmail-expunge-confirmed
3006 instead of rmail-confirm-expunge.
3007
4fdbd809
GM
3008 * replace.el (perform-replace): Don't use an empty match adjacent
3009 to a non-empty match when computing the next match before the
3010 replacement is performed.
3011
e9a59cad
GM
30122000-12-12 Milan Zamazal <pdm@freesoft.cz>
3013
3014 * progmodes/glasses.el: Use `define-minor-mode' for the minor mode
3015 definition (patch by Stefan Monnier).
3016 (glasses-mode): Use jit-lock instead of `after-change-functions'
3017 (patch by Stefan Monnier).
3018
c2def7a0
MB
30192000-12-12 Miles Bader <miles@gnu.org>
3020
3021 * info.el (Info-last-preorder): Don't barf on nodes without a prev.
3022 (Info-scroll-down): Respect `Info-scroll-prefer-subnodes'.
3023
591b63b4
AC
30242000-12-12 Andrew Choi <akochoi@i-cable.com>
3025
3026 * term/mac-win.el: Remove load for ls-lisp.
3027
a924cf63 3028 * loadup.el: Load ls-lisp for system-type `macos'.
591b63b4 3029
5ff4ba3d
MB
30302000-12-12 Miles Bader <miles@gnu.org>
3031
3032 * simple.el (delete-horizontal-space): Add BACKWARD-ONLY parameter.
3033 Respect field end too.
3034 (just-one-space): Respect fields as `delete-horizontal-space'.
3035 (newline-and-indent, reindent-then-newline-and-indent): Use
3036 `delete-horizontal-space'.
3037
d0c679bc
SM
30382000-12-11 Stefan Monnier <monnier@cs.yale.edu>
3039
adf9c994
SM
3040 * newcomment.el (comment-indent-new-line): Use delete-horizontal-space
3041 (so as to obey the field property in the minibuffer).
3042
4b0cd42d
SM
3043 * obsolete/c-mode.el: Moved from lisp/progmodes.
3044 * obsolete/auto-show.el: Moved from lisp.
3045 * obsolete/ooutline.el: Moved from lisp/textmodes.
ca2ddd8e 3046
89f85863
CD
30472000-12-11 Carsten Dominik <dominik@strw.leidenuniv.nl>
3048
3049 * progmodes/idlwave.el: Updated to IDLWAVE version 4.7. Too many
dd4e0e55 3050 changes to list them here.
89f85863
CD
3051
3052 * progmodes/idlw-shell.el: Updated to IDLWAVE version 4.7. Too
3053 many changes to list them here.
3054
3055 * progmodes/idlw-rinfo.el: Updated to IDLWAVE version 4.7. Too
3056 many changes to list them here.
3057
3058 * progmodes/idlw-toolbar.el: Updated to IDLWAVE version 4.7.
3059
3e0d35ce
GM
30602000-12-11 Gerd Moellmann <gerd@gnu.org>
3061
d990421f
GM
3062 * simple.el (kill-new): Don't try to setcar kill-ring if it is
3063 nil.
3064
ca2ddd8e 3065 * cus-edit.el (custom-save-variables, custom-save-faces):
fda514f7
GM
3066 Comment fix.
3067
3e0d35ce
GM
3068 * hscroll.el: Moved to `obsolete' subdir.
3069
ff904dd6
MB
30702000-12-11 Miles Bader <miles@gnu.org>
3071
3072 * window.el (window-text-height): Function removed (now in C).
3073
fb97d87f
SM
30742000-12-10 Stefan Monnier <monnier@cs.yale.edu>
3075
3076 * log-edit.el (log-edit-parent-buffer): New var.
3077 (log-edit): Set it. Add BUFFER argument.
3078 (log-edit-done): Use char-before.
3079 Don't bother checking validity of vc-comment-ring.
3080 Only bury the buffer if log-edit popped it up.
3081
3082 * pcvs.el: Update references to CVS-Edit (now Log-Edit).
3083 (cvs-mode-diff-help): Remove.
3084 (cvs-mode-commit): Use the new `log-edit' BUFFER argument.
802cf66c 3085 (cvs-mode-marked): Set up the default for CMD manually.
fb97d87f
SM
3086
3087 * pcvs-defs.el (cvs-mode-diff-map): Use minibuffer menu prompt.
3088 Remove binding for ? now made unnecessary.
3089
7de77417
CD
30902000-12-10 Carsten Dominik <dominik@strw.leidenuniv.nl>
3091
3092 * textmodes/reftex.el (reftex-scanning-info-available-p): New
dd4e0e55 3093 function
7de77417
CD
3094 (reftex-TeX-master-file): Check for `tex-main-file' early enough.
3095
3096 * textmodes/reftex-global.el (reftex-create-tags-file): Fixed bug
3097 when master file is not open.
3098
4efa209f
SM
30992000-12-09 Stefan Monnier <monnier@cs.yale.edu>
3100
3101 * progmodes/ada-stmt.el: Update `maintainer'.
3102
0a8052bd
GM
31032000-12-09 Stephen Gildea <gildea@alum.mit.edu>
3104
3105 * time-stamp.el (time-stamp-old-format-warn): Reorder custom
3106 choices to match documentation string.
3107
a12167c5
MB
31082000-12-09 Miles Bader <miles@gnu.org>
3109
2161605d
MB
3110 * minibuf-eldef.el: New file.
3111
a12167c5
MB
3112 * window.el (fit-window-to-buffer): Don't pass last argument to
3113 pos-visible-in-window-p, now that its meaning is inverted.
3114
9ea8de1b
EZ
31152000-12-08 Eli Zaretskii <eliz@is.elta.co.il>
3116
3117 * image.el (create-image): Doc fix; spotted by Per Cederqvist
3118 <ceder@lysator.liu.se>.
3119
5002ddbb
SM
31202000-12-08 Stefan Monnier <monnier@cs.yale.edu>
3121
b6114d80
SM
3122 * autoinsert.el (auto-insert-alist): Add missing final \n.
3123
ee8d23ee
SM
3124 * pcvs-defs.el (cvs-menu): Move. Make submenu for diff commands.
3125 (cvs-menu-map): Remove.
3126 * pcvs.el (cvs-menu): Use `cvs-menu' rather than `cvs-menu-map'.
3127 (cvs-mode-quit): Turn it back into a plain function.
3128
5002ddbb 3129 * textmodes/texnfo-upd.el (texinfo-chapter-level-regexp)
ee8d23ee 3130 (texinfo-filter): Remove (move to texinfo.el).
5002ddbb
SM
3131
3132 * textmodes/texinfo.el: Move the (require 'cl) to the front of the
3133 file where it's more visible.
3134 (texinfo-filter, texinfo-chapter-level-regexp): New variables
3135 moved from texnfo-upd.el (for AUCTeX's compatibility, originally).
3136 (texinfo-mode): Use texinfo-chapter-level-regexp for page-delimiter.
3137 (texinfo-inside-macro-p): Only catch `scan-error's.
3138 (texinfo-inside-env-p): Make better use of the match info.
3139 (texinfo-insert-quote): Collapse calls to `texinfo-inside-macro-p'.
3140 (texinfo-insert-@end): Slight re-organization.
3141 Also remove useless `looking-at' call.
3142
30cd075d
AI
31432000-12-08 Andrew Innes <andrewi@gnu.org>
3144
3145 * w32-fns.el: Add clipboard support from term/w32-win.el, so it is
3146 accessible in -nw mode.
3147
3148 * term/w32-win.el: Remove stuff about selection timeout, which is
3149 irrelevant on Windows. Move clipboard support to w32-fns.el, so
3150 it is accessible in -nw mode.
3151
01b91009
DL
31522000-12-08 Dave Love <fx@gnu.org>
3153
3154 * emacs-lisp/lisp-mode.el (lisp-mode): Set
3155 font-lock-keywords-case-fold-search.
3156
842b2a94
GM
31572000-12-08 Gerd Moellmann <gerd@gnu.org>
3158
3159 * textmodes/ispell.el (ispell): Doc fix.
3160
f9d5f611
KH
31612000-12-08 Kenichi Handa <handa@etl.go.jp>
3162
3163 * international/quail.el (quail-insert-decode-map): Check the
3164 frame width of a window displaying the current buffer, not that of
3165 the selected frame.
3166 (quail-help): Make sure that the help buffer has window before
3167 inserting text in it.
3168
e04d21aa
SS
31692000-12-07 Sam Steingold <sds@gnu.org>
3170
3171 * loadup.el: Load emacs-lisp/backquote instead of autoloading.
3172 Backquote is used in isearch.el, so autoloading saves nothing.
3173
fc3e23a4
EZ
31742000-12-07 Eli Zaretskii <eliz@is.elta.co.il>
3175
137cad7c
EZ
3176 * startup.el (normal-top-level-add-subdirs-to-load-path): Ignore
3177 the CVS and RCS subdirectories case-insensitively.
3178
fc3e23a4
EZ
3179 * dired.el (dired-insert-directory): If file-system-info is
3180 fboundp, call it instead of invoking dired-free-space-program.
3181
796ecd10
GM
31822000-12-07 Gerd Moellmann <gerd@gnu.org>
3183
0f5f7c3e
GM
3184 * server.el (server-visit-files): Push files on file-name-history.
3185
3764ba49
GM
3186 * progmodes/cc-langs.el: Update copyright.
3187
8e7931da
GM
3188 * progmodes/idlw-shell.el, progmodes/idlwave.el: Update copyright.
3189
ae0d7485 3190 * bindings.el (mode-line-mode-menu): Add glasses-mode.
e04d21aa 3191
796ecd10
GM
3192 * bindings.el (mode-line-mode-menu): Reverse the order
3193 of define-keys so that the menu appears in alphabetical order.
3194
ae0d7485
GM
31952000-12-07 Milan Zamazal <pdm@freesoft.cz>
3196
3197 * progmodes/glasses.el (glasses-mode): Update mode line at the end
3198 of the function.
3199
e2849090
DL
32002000-12-07 Dave Love <fx@gnu.org>
3201
3202 * jka-compr.el (jka-compr-compression-info-list): Fix :type.
3203
3204 * facemenu.el (facemenu-unlisted-faces): Fix value.
3205
5c7f629c
SM
32062000-12-07 Stefan Monnier <monnier@cs.yale.edu>
3207
3208 * font-lock.el (font-lock-default-fontify-region):
3209 Include the terminating \n (off-by-one error).
3210 (font-lock-set-defaults): Use dolist.
3211
3212 * derived.el (define-derived-mode): Don't use combine-run-hooks.
3213
73481ae3
KH
32142000-12-07 Kenichi Handa <handa@etl.go.jp>
3215
ffbaa122
KH
3216 * international/mule-cmds.el (describe-language-environment): Fix
3217 for the case that an input method title is not string but a list.
3218
73481ae3
KH
3219 * ps-bdf.el (bdf-read-font-info): Modify the kludgy code for fonts
3220 of wrong SIZE record.
3221
e2896b22
DL
32222000-12-06 Dave Love <fx@gnu.org>
3223
67292061
DL
3224 * newcomment.el (comment-region, comment-dwim): Doc fix.
3225
3226 * textmodes/texinfo.el: Require tex-mode when compiling.
3227 (texinfo-update-node): Doc fix.
3228 (texinfo-imenu-generic-expression): Add @anchor.
3229 (texinfo-font-lock-keywords): Add @uref.
3230 (texinfo-inside-macro-p): Don't use ignore-errors.
3231 (texinfo-insert-quote): Match more contexts.
3232
e76938e7
DL
3233 * international/mule.el (decode-char, encode-char): Doc fix.
3234 (auto-coding-alist): Customize.
3235
3236 * files.el (load-file): Fix change of 2000-03-12.
3237
e2896b22
DL
3238 * wid-edit.el (widget-text-keymap): Doc fix.
3239
6610f4b2
AI
32402000-12-06 Andrew Innes <andrewi@gnu.org>
3241
3242 * makefile.w32-in (lisp): Set to an absolute directory, namely
3243 $(CURDIR).
3244
9e3366e4
EZ
32452000-12-06 Eli Zaretskii <eliz@is.elta.co.il>
3246
3247 * emacs-lisp/autoload.el (update-file-autoloads): Use raw-text to
3248 read generated-autoload-file, and set buffer-file-coding-system to
3249 raw-text-unix after reading the file.
3250
3251 * international/mule-conf.el (file-coding-system-alist): Use
3252 raw-text for reading loaddefs.el and raw-text-unix for writing
3253 it.
3254
d94d636f
GM
32552000-12-06 Gerd Moellmann <gerd@gnu.org>
3256
384333ee
GM
3257 * replace.el (occur): Make line-number-width 1 smaller for the
3258 colon following the line number.
3259
347d0813
GM
3260 * startup.el (fancy-splash-text, command-line-1): Use
3261 `File' for the menu name instead of `Files'.
e04d21aa 3262
d4b72d58
GM
3263 * tmm.el: Update copyright.
3264
d94d636f
GM
3265 * cus-start.el: Add entry for even-window-heights.
3266
6e424019
MB
32672000-12-06 Miles Bader <miles@gnu.org>
3268
3269 * faces.el (frame-set-background-mode): Avoid stomping on
3270 locally modified faces.
3271
e6477b58
KH
32722000-12-06 Kenichi Handa <handa@etl.go.jp>
3273
3274 * international/fontset.el: Correct the font registries for
3275 japanese-jisx0213-1 and japanese-jisx0213-2.
3276
21999ab9
GM
32772000-12-05 Gerd Moellmann <gerd@gnu.org>
3278
57d6e381
GM
3279 * textmodes/reftex-toc.el (reftex-toc-menu): Fix typo.
3280
21999ab9
GM
3281 * iswitchb.el: Update customization commentary.
3282
7422819c
GM
32832000-12-05 Rob Riepel <riepel@Stanford.EDU>
3284
3285 * emulation/tpu-edt.el (tpu-help): Fixed previous screen logic.
3286 (tpu-search-highlight): Fixed comparison of overlay end positions.
3287 (tpu-trim-line-ends): Implemented trimming logic locally.
3288
3289 * emulation/tpu-extras.el (tpu-write-file-hook)
3290 (tpu-set-cursor-bound): Replaced picture-clean with
3291 tpu-trim-line-ends.
3292
73daff18
KH
32932000-12-05 Kenichi Handa <handa@etl.go.jp>
3294
3295 * language/chinese.el (chinese-iso-8bit): Change mime-charset name
3296 to cn-gb.
3297 (cn-gb, gb2312): New aliases for chinese-iso-8bit.
3298
6a4cd002
DL
32992000-12-04 Dave Love <fx@gnu.org>
3300
3301 * emacs-lisp/cl-indent.el: Remove erroneous spec for condition-case.
3302
6452929e
GM
33032000-12-04 Gerd Moellmann <gerd@gnu.org>
3304
e04d21aa 3305 * mail/rmailsum.el (rmail-summary-expunge)
6452929e
GM
3306 (rmail-summary-expunge-and-save): Ask for confirmation with
3307 rmail-expunge-confirmed.
3308
3309 * mail/rmail.el (rmail-expunge-confirmed): New function.
3310 (rmail-expunge): Use it.
3311
1790abf4
FP
33122000-12-04 Philippe Waroquiers <wao@gull.tact.cfmu.eurocontrol.be>
3313
0c68ce6f
GM
3314 * progmodes/etags.el (tag-partial-file-name-match-p): New function.
3315 (etags-recognize-tags-table, find-tag-in-order): New
3316 functionality: interpret file names as tags.
e04d21aa 3317
7a53d8c8
EZ
33182000-12-04 Eli Zaretskii <eliz@is.elta.co.il>
3319
3320 * info.el (Info-scroll-prefer-subnodes): New defcustom.
3321 (Info-scroll-up): If Info-scroll-prefer-subnodes is nil, don't
3322 visit the first subnode until the bottom of the current node is
3323 visible.
3324
caa15ef7
GM
33252000-12-04 Gerd Moellmann <gerd@gnu.org>
3326
3327 * format.el (format-decode): Don't change buffer's undo list.
3328
e225faa7
KH
33292000-12-04 Kenichi Handa <handa@etl.go.jp>
3330
3331 * faces.el (face-font-registry-alternatives): Add entries for CJK
3332 fonts. Doc-string adjusted for the actual usage of this data.
3333
3334 * international/fontset.el: Change the font registries for CJK
3335 fonts in the default fontset. Don't append '*' to registries.
3336
8b262a65
SM
33372000-12-03 Stefan Monnier <monnier@cs.yale.edu>
3338
e04d21aa 3339 * emacs-lisp/easy-mmode.el (define-derived-mode)
8b262a65
SM
3340 (easy-mmode-derived-mode-p): Remove (moved to derived.el).
3341
3342 * derived.el (define-derived-mode): Revived, moved from easy-mmode.el.
3343 (derived-mode-p): New function.
3344 (derived-mode-make-docstring): Add `docstring' argument.
3345 Use it if available and complete it if necessary.
3346
33c4460b
AS
33472000-12-03 Andreas Schwab <schwab@suse.de>
3348
3349 * type-break.el (type-break): Don't make parent of itself.
3350
5c9b3fac
MB
33512000-12-03 Miles Bader <miles@gnu.org>
3352
3353 * simple.el (delete-trailing-whitespace): Don't delete newlines too.
3354
27ce741e
SM
33552000-12-02 Stefan Monnier <monnier@cs.yale.edu>
3356
07c16ec4
SM
3357 * textmodes/tex-mode.el (tex-start-shell): Obey shell-file-name.
3358 (tex-main-file, tex-file): Simplify.
3359 (tex-generate-zap-file-name): Use subst-char-in-string.
3360 (tex-strip-dots): Remove.
3361
c19cc275
SM
3362 * tmm.el (tmm-get-keymap): Eval the menu name in `menu-item'.
3363
27ce741e
SM
3364 * textmodes/ispell.el (check-ispell-version): Don't use match-beginning
3365 to check if the match succeeded.
3366
285991dc
GM
33672000-12-02 Gerd Moellmann <gerd@gnu.org>
3368
3369 * startup.el (use-fancy-splash-screens-p): New function.
3370 (command-line-1): Use it to determine whether or not to use
3371 a fancy splash screen.
3372
52dca1b2
AS
33732000-12-02 Andreas Schwab <schwab@suse.de>
3374
3375 * emacs-lisp/eldoc.el (eldoc): Don't make parent of itself.
3376
d3e7e7cf
EZ
33772000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
3378
2dce2360
EZ
3379 * international/mule.el (make-char): Fix last change.
3380
9768eaa7
EZ
3381 * textmode/texinfo.el (texinfo-open-quote, texinfo-close-quote):
3382 New defcustoms.
3383 (texinfo-insert-quote): Don't call tex-insert-quote, to avoid
3384 autoloading tex-mode; instead, do the same manually. Use
3385 texinfo-open-quote and texinfo-close-quote. Insert literal quote
3386 with numeric argument. Docstring fix.
3387 (toplevel): Require cl when compiling.
e04d21aa 3388
285991dc 3389 * international/mule.el (make-char): Doc fix.
d3e7e7cf 3390
0dd5e255
JR
33912000-12-02 Jason Rumney <jasonr@gnu.org>
3392
3393 * term/w32-win.el (x-select-enable-clipboard): Customize (as per
3394 the Emacs Lisp manual)
3395
fbb87147
EZ
33962000-12-02 Eli Zaretskii <eliz@is.elta.co.il>
3397
5cbb3e93
EZ
3398 * dos-w32.el (find-buffer-file-type-coding-system): Doc fix.
3399
fbb87147
EZ
3400 * term/pc-win.el (x-select-enable-clipboard): Customize (as per
3401 the Emacs Lisp manual).
3402
1636ca09
GM
34032000-12-02 Gerd Moellmann <gerd@gnu.org>
3404
3405 * simple.el (next-line-add-newlines): Change default to nil.
3406
68875f0e
EZ
34072000-12-01 Eli Zaretskii <eliz@is.elta.co.il>
3408
3409 * files.el (revert-buffer, recover-file): Bind
3410 coding-system-for-read to emacs-mule-unix, not to no-conversion.
3411
fd9ac94c
GM
34122000-12-01 Gerd Moellmann <gerd@gnu.org>
3413
3414 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
3415
45450dd5
MB
34162000-12-01 Miles Bader <miles@gnu.org>
3417
3418 * window.el (fit-window-to-buffer): Handle non-nil `truncate-lines'.
3419
09df8881
KH
34202000-12-01 Kenichi Handa <handa@etl.go.jp>
3421
3422 * international/mule-diag.el (describe-char-after): Fix typo.
3423 (describe-character-set, non-iso-charset-alist): Fix typo.
3424
dea0a87d
MB
34252000-12-01 Miles Bader <miles@gnu.org>
3426
b170205b
MB
3427 * image-file.el (image-file-name-regexp): Automatically add
3428 upper-case variants of each filename extension in
3429 `image-file-name-extensions', since they seem to be common.
3430
e04d21aa 3431 * simple.el (minibuffer-contents)
dea0a87d
MB
3432 (minibuffer-contents-no-properties, delete-minibuffer-contents):
3433 New functions.
3434 * filecache.el (file-cache-directory-name)
3435 (file-cache-minibuffer-complete): Ignore the minibuffer prompt.
3436
2b69bc11 34372000-12-01 Milan Zamazal <Milan.Zamazal@qbizm.com>
e04d21aa 3438
dea0a87d
MB
3439 * filecache.el (file-cache-minibuffer-complete): Don't try to
3440 delete the minibuffer prompt.
3441
a8a1b05d
DL
34422000-11-30 Dave Love <fx@gnu.org>
3443
3444 * cus-start.el: Fix read-buffer-function type.
3445
693c4692
GM
34462000-11-30 Gerd Moellmann <gerd@gnu.org>
3447
3448 * md5.el: Removed. There's a built-in function, now.
3449
2c0b1898
GM
34502000-11-30 Markus Rost <rost@math.ohio-state.edu>
3451
3452 * mail/rmail.el (rmail-set-message-counters): Don't use "D"
3453 as dummy 0-th char of rmail-deleted-vector.
3454
63dfcf4b
EZ
34552000-11-30 Eli Zaretskii <eliz@is.elta.co.il>
3456
3457 * ps-print.el (ps-end-job): Bind case-fold-search only after
3458 switching to ps-spool-buffer.
3459
34602000-11-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3461
3462 * ps-print.el: Line number font customization. PostScript: Lines and
3463 PageCount are initialized on each page. Doc Fix.
3464 (ps-print-version): New version number (6.3.2).
3465 (ps-lpr-switches, ps-font-info-database, ps-font-size)
3466 (ps-header-font-size, ps-header-title-font-size, ps-left-header)
3467 (ps-right-header): Customization fix.
3468 (ps-setup, ps-select-font, ps-begin-file, ps-header-sheet, ps-end-job):
3469 Fix code.
3470 (ps-end-with-control-d, ps-line-number-font, ps-line-number-font-size):
3471 New vars.
3472
df3aedcf
GM
34732000-11-30 Gerd Moellmann <gerd@gnu.org>
3474
edfb795e
GM
3475 * bs.el: Fix typos and spelling errors.
3476 (bs-appearance) <defgroup>: Renamed from bs-appearence.
3477 (bs-configuration): Doc fix.
e04d21aa 3478
df3aedcf
GM
3479 * bs.el: Undo mistaken change of 2000-11-28. Update copyright.
3480
8b8a7f01
GM
34812000-11-30 Rob Riepel <riepel@Stanford.EDU>
3482
3483 * emulation/tpu-edt.el (tpu-version): New version.
3484 (tpu-search-overlay, tpu-replace-overlay): New initial range.
3485 (tpu-original-mode-line): Variable deleted.
3486 (tpu-mark-flag): New initial value.
3487 (tpu-set-mode-line): Don't redefine mode-line-format. Add
3488 tpu-mark-flag to minor-mode-alist.
3489 (tpu-update-mode-line): New mark flag logic.
3490 (tpu-get): Use find-file-wildcards.
3491 (tpu-search-highlight): Move overlay less, reset overlay properly.
3492 (tpu-unselect): Deactivate mark.
3493 (tpu-lm-replace): Reset overlay properly.
3494 (tpu-forward-line): Use forward-visible-line.
3495 (tpu-edt-on): Set transient mark mode. ispell autoloads deleted.
3496
3497 * emulation/tpu-extras.el (tpu-forward-line): Use
3498 forward-visible-line.
e04d21aa 3499
c069a9d3
GM
35002000-11-30 Per Abrahamsen <abraham@dina.kvl.dk>
3501
3502 * cus-edit.el (custom-face-value-create): Always emphasize tag.
3503
b02cd40b
GM
35042000-11-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
3505
3506 * calendar/diary-lib.el (diary-entry-time): Anchor pattern correctly
3507 and skip whitespace and newlines.
e04d21aa 3508
b7a90344
SM
35092000-11-30 Stefan Monnier <monnier@cs.yale.edu>
3510
3511 * emacs-lisp/cl.el (third...tenth): Really undo change of 2000-08-05.
3512
be6bbb55
GM
35132000-11-29 Gerd Moellmann <gerd@gnu.org>
3514
0383ed60
GM
3515 * help.el (describe-function-1): Regexp-quote function name
3516 when used as part of a regexp.
3517
c7957947
GM
3518 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Use
3519 face-attribute instead of face-foreground and face-background.
3520 (tool-bar-add-item): Likewise, and handle unspecified colors.
3521
3522 * enriched.el (enriched-face-ans): Use face-attribute instead
3523 of face-foreground and face-background.
3524
3525 * faces.el (face-foreground, face-background, face-stipple):
3526 Return nil if attribute is unspecified, for backward
3527 compatibility.
3528
7423978d
GM
3529 * files.el (auto-mode-alist): Add an entry for antlr-mode.
3530
ef128c78
GM
3531 * play/5x5.el: Remove version info.
3532
a81fc510
GM
3533 * toolbar/tool-bar.el (tool-bar-mode): Doc fix.
3534
be6bbb55
GM
3535 * frame.el (blink-cursor-mode): Doc fix.
3536
f9396e03
GM
35372000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
3538
3539 * antlr-mode.el: New commands to run ANTLR from within Emacs and
3540 to create Makefile rules.
3541 (antlr-tool-command): New user option.
3542 (antlr-ask-about-save): New user option.
3543 (antlr-makefile-specification): New user option.
3544 (antlr-file-formats-alist): New variable.
3545 (antlr-special-file-formats): New variable.
3546 (antlr-unknown-file-formats): New user option.
3547 (antlr-help-unknown-file-text): New variable.
3548 (antlr-help-rules-intro): New variable.
3549 (antlr-mode-map): Add [C-c C-r] for `antlr-run-tool'.
3550 (antlr-mode-menu): Add entries.
3551 (antlr-file-dependencies): New function.
3552 (antlr-directory-dependencies): New function.
3553 (antlr-superclasses-glibs): New function.
3554 (antlr-run-tool): New command.
3555 (antlr-makefile-insert-variable): New function.
3556 (antlr-insert-makefile-rules): New function.
3557 (antlr-show-makefile-rules): New command.
3558
3559 * antlr-mode.el: More Emacs/XEmacs stuff.
3560 (antlr-no-action-keywords): New constant with value nil.
3561 (antlr-font-lock-keywords-alist): Use it. Old value would break
3562 syntax highlighting in Emacs-21.0.
3563 (antlr-default-directory): Emacs/XEmacs dependend function.
3564 (antlr-read-shell-command): Ditto.
3565 (antlr-with-displaying-help-buffer): Ditto.
3566
35672000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
3568
3569 * antlr-mode.el: imenu, parsing and highlighting changes.
3570 (antlr-imenu-create-index-function): Don't create extra submenus
3571 for definitions in different grammar classes. It is not necessary
3572 for the menu and would make command `imenu' awkward to use.
3573 (antlr-skip-file-prelude): With ANTLR-2.7+, you can specify named
3574 header actions and more than one.
3575 (antlr-font-lock-tokendef-face): Changed color.
3576 (antlr-font-lock-tokenref-face): Changed color.
3577 (antlr-font-lock-additional-keywords): Also highlight lowercase.
3578 (antlr-mode-syntax-table): New variable.
3579 (antlr-mode): Populate and use it instead `java-mode-syntax-table'.
3580 (antlr-with-syntax-table): Don't copy syntax table.
3581
35822000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
3583
3584 * antlr-mode.el: Minor changes: language setting.
3585 (antlr-language-alist): The value for file option "language" can
3586 be both an identifier and a string.
3587 Reported by Rajesh Radhakrishnan <radhakrs@email.uc.edu>.
3588 (antlr-language-limit-n-regexp): Change accordingly.
3589
35902000-11-29 Christoph Wedler <Christoph.Wedler@sap.com>
3591
3592 * antlr-mode.el: Minor changes: tabs, hiding.
3593 (antlr-tab-offset-alist): Set `indent-tabs-mode' to nil instead t.
3594 (antlr-action-visibility): Also allow value nil to also hide the
3595 braces. Renamed from `antlr-tiny-action-length'.
3596 Suggested by Jay@aol.com.
3597 (antlr-hide-actions): Change accordingly. Hide line if completely
3598 hidden action is on a line of its own.
e04d21aa 3599
6ad948eb
SM
36002000-11-29 Stefan Monnier <monnier@cs.yale.edu>
3601
3602 * subr.el (combine-run-hooks): Only run-hooks if there's a hook to run.
3603
3604 * sort.el (sort-columns): Don't concat strings with numbers.
3605
9c6a4107
DL
36062000-11-29 Dave Love <fx@gnu.org>
3607
3608 * cus-edit.el (face): Fix :format.
3609
3610 * mail/feedmail.el: Require smtpmail when compiling.
3611 (mail-do-fcc): Autoload.
3612 (feedmail) <defgroup>: Fix :link.
3613 (feedmail-nuke-body-in-fcc): Fix :type.
3614 (feedmail-send-it): Add autoload cookie.
3615
053b8d35
SM
36162000-11-29 Stefan Monnier <monnier@cs.yale.edu>
3617
3618 * newcomment.el (comment-indent): Save excursion around call to
3619 comment-indent-function.
3620
242c13e8
MB
36212000-11-29 Miles Bader <miles@gnu.org>
3622
3623 * subr.el (member-ignore-case): Return the tail of the list who's
3624 car matches, like `member', not the matching element itself.
3625
8f4b5f28
KH
36262000-11-29 Kenichi Handa <handa@etl.go.jp>
3627
3628 * xml.el (xml-parse-tag): Fix finding opening tag. A tag name
3629 should not contain `\n'.
3630
bebe4a2c
GM
36312000-11-28 Gerd Moellmann <gerd@gnu.org>
3632
fd9ac94c 3633 * hi-lock.el (hi-lock-refontify): Call jit-lock-refontify.
99879a40 3634
ba7e40eb
GM
3635 * hscroll.el: Add hints to `automatic-hscrolling' to doc strings.
3636
75ab0c79
GM
3637 * dired-aux.el (dired-do-create-files): Construct default file
3638 name for dired-mark-read-file-name so that when the user enters
3639 just RET, the target file will end up in the target directory.
3640
bebe4a2c
GM
3641 * abbrev.el (prepare-abbrev-list-buffer): Get the value of
3642 local-abbrev-table before changing buffers because it might
3643 have a buffer-local binding.
3644
fa6d1ca8
MB
36452000-11-28 Miles Bader <miles@gnu.org>
3646
3647 * simple.el (delete-horizontal-space): Handle fields more generally.
3648
8d2c2642
GM
36492000-11-28 Gerd Moellmann <gerd@gnu.org>
3650
3651 * simple.el (delete-horizontal-space): Handle minibuffer prompt.
3652
8b31236d
DL
36532000-11-28 Dave Love <fx@gnu.org>
3654
3cbd02d2
DL
3655 * progmodes/ps-mode.el (ps-mode): Set comment-start and
3656 comment-start-skip locally.
3657
8b31236d
DL
3658 * progmodes/fortran.el (fortran-mode): Don't set
3659 fortran-comment-line-start-skip. Set comment-start to
3660 fortran-comment-line-start.
3661 (fortran-fill-paragraph) <non-empty-comment>: Remove regexp group.
3662 (fortran-comment-line-start-skip): Simplify slightly.
3663
ae4bf56d
GM
36642000-11-28 Gerd Moellmann <gerd@gnu.org>
3665
17ef7534
GM
3666 * play/5x5.el: Remove RCS keyword.
3667
fd9ac94c 3668 * bs.el: Mistaken commit, undone 2000-11-30.
ae4bf56d 3669
665b27a6
GM
36702000-11-28 Milan Zamazal <pdm@freesoft.cz>
3671
3672 * textmodes/tildify.el (tildify-string-alist): Add
3673 `plain-tex-mode' here.
3674
fe3c2ae3
GM
36752000-11-28 Colin Walters <walters@cis.ohio-state.edu>
3676
3677 * chistory.el (Command-history-setup): Remove extraneous `keymap'
3678 reference.
3679
d970106b
MB
36802000-11-28 Miles Bader <miles@gnu.org>
3681
36b80a0d
MB
3682 * cus-face.el (custom-face-attributes): Add post-filter function
3683 for :box. Make pre-filter function for :box handle all cases.
3684
d970106b
MB
3685 * wid-edit.el (widget-choose): Make sure pop-up window is large
3686 enough to display all the choices, as there's no way to scroll it.
3687
5a2bae6c
KH
36882000-11-28 Kenichi Handa <handa@etl.go.jp>
3689
3690 * international/mule-conf.el: Make the coding system no-conversion
3691 safe for all characters.
3692
9e836e23
DL
36932000-11-27 Dave Love <fx@gnu.org>
3694
8b31236d
DL
3695 * net/ldap.el (ldap) <defgroup>: Add :version.
3696
9e836e23
DL
3697 * tooltip.el (tooltip-use-echo-area): Doc fix.
3698
3699 * cus-start.el <minibuffer-prompt-properties>: Add version.
3700 <read-buffer-function>: Add.
3701
3702 * apropos.el (apropos-print): Add help-echo to active text.
3703
3704 * term/x-win.el (x-select-enable-clipboard): Customize (per lispref).
3705
4a74d071
GM
37062000-11-27 Gerd Moellmann <gerd@gnu.org>
3707
3708 * mail/rmail.el (rmail-automatic-folder-directives): Add a custom
3709 type, group and version.
3710
76058c27
EZ
37112000-11-27 Eli Zaretskii <eliz@is.elta.co.il>
3712
4a74d071 3713 * select.el (x-get-selection): Docstring fix.
76058c27 3714
fd9ac94c 37152000-11-27 Dave Pearson <davep@hagbard.demon.co.uk>
26a8d08d 3716
fd9ac94c 3717 * play/5x5.el (5x5-play-solution): Bind hinhibit-quit to t.
26a8d08d 3718
49060c51
AI
37192000-11-27 Andrew Innes <andrewi@gnu.org>
3720
3721 * makefile.nt (.SUFFIXES): Add .SUFFIXES.
3722
3723 * makefile.w32-in (.SUFFIXES): Add .SUFFIXES.
3724
b2a8e429
MB
37252000-11-27 Miles Bader <miles@gnu.org>
3726
3727 * dired.el (dired-get-filename): Return filename verbatim if
3728 LOCALP is `verbatim'.
3729 * dired-aux.el (dired-add-entry): Call `dired-get-filename' with
3730 `verbatim' so that we don't inadvertently delete a non-existant
3731 directory name.
3732
5ac0366d
KH
37332000-11-27 Kenichi Handa <handa@etl.go.jp>
3734
3735 * international/characters.el: Specify cases and syntaxes for
3736 mule-unicode-0100-24ff.
3737
67f1cf4c
GM
37382000-11-27 Gerd Moellmann <gerd@gnu.org>
3739
3740 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Handle case
3741 that foreground and/or background colors of the face `tool-bar'
3742 are unspecified.
3743
46c56972
MB
37442000-11-27 Miles Bader <miles@gnu.org>
3745
e04d21aa 3746 * wid-edit.el (widget-field-buffer, widget-field-start)
ec725166
MB
3747 (widget-field-end): Handle widget field `pseudo-overlays'.
3748 (widget-field-value-delete): Delete WIDGET from `widget-field-new'
3749 if it's there instead of in `widget-field-list'.
3750
46c56972 3751 * help.el (help-manyarg-func-alist): Correct entry for `vconcat'.
a2e6f426
MB
3752 (help-make-xrefs): Delete extraneous newlines at the end of the
3753 docstring.
46c56972 3754
640a9cdd
JR
37552000-11-25 Jason Rumney <jasonr@gnu.org>
3756
3757 * startup.el (command-line): Call set-locale-environment after
3758 Window System init file is read, as it can result in a call to
3759 redraw-frame.
3760
0b3f96d4
EZ
37612000-11-25 Eli Zaretskii <eliz@is.elta.co.il>
3762
3763 * simple.el (shell-command): Mention the effect of the prefix
3764 argument in the doc string.
3765
8da6e2a1
MB
37662000-11-25 Miles Bader <miles@gnu.org>
3767
a658d039
MB
3768 * cus-face.el (custom-face-attributes): Add "None" choice to :stipple.
3769
8da6e2a1 3770 * wid-edit.el (widget-field-value-delete): Don't try to delete
a2e6f426 3771 overlay when it's the `pseudo-overlay' that exists at some points.
8da6e2a1 3772
d3416cca
JR
37732000-11-24 Jason Rumney <jasonr@gnu.org>
3774
3775 * international/mule-cmds.el (locale-language-names): Add "jp" as
3776 a non-standard alternative for Japanese.
3777
17e37f53
AS
37782000-11-24 Andre Spiegel <spiegel@gnu.org>
3779
3780 * vc-hooks.el: Require 'cl during compilation.
3781
9aa5f148
GM
37822000-11-24 Gerd Moellmann <gerd@gnu.org>
3783
ba193890
GM
3784 * faces.el (face-set-after-frame-default): Let face attributes
3785 specified for new frames override frame parameters.
3786
9aa5f148
GM
3787 * startup.el (command-line): Fix computation of the source file
3788 for user-init-file when user-init-file is a compiled file.
3789
51a1edab
MB
37902000-11-24 Miles Bader <miles@gnu.org>
3791
e04d21aa 3792 * cus-edit.el (custom-filter-face-spec, custom-pre-filter-face-spec)
51a1edab
MB
3793 (custom-post-filter-face-spec): New functions.
3794 (custom-face-set, custom-face-value-create): Filter the face spec
3795 before and after customization.
3796 (custom-face-set): If VALUE specifies a null face, pass a
3797 non-null-but-otherwise-ignored face-spec instead to `face-spec-set'.
3798 * cus-face.el (custom-face-attributes): Remove SET and GET
3799 functions. Add some IN-FILTER and OUT-FILTER functions in the few
3800 cases they're needed.
3801
1ed74431
MB
3802 * wid-edit.el (checkbox): Add a small `X' to the the :on-glyph, so
3803 that it's distinguishable from the :off-glyph on dark-background
3804 displays. Set its background color too.
3805
67ee1125
MB
3806 * cus-start.el (all): Restore entry for `mode-line-inverse-video',
3807 so that people can easily turn it off.
3808
7d027816 38092000-11-24 Michael Kifer <kifer@cs.sunysb.edu>
e04d21aa 3810
7d027816 3811 * ediff-diff.el: Moved variables around to have it compile under NT.
e04d21aa 3812
9aa5f148 3813 * ediff-help.el (ediff-use-long-help-message): Made it customizable.
e04d21aa 3814
9aa5f148 3815 * ediff-init.el (ediff-abbrev-jobname): Use capitalize.
e04d21aa 3816
9aa5f148 3817 * ediff-wind.el (ediff-skip-unsuitable-frames): Deleted the
7d027816 3818 redundant skip-small-frames test.
e04d21aa 3819
9aa5f148 3820 * viper-cmd.el (viper-change-state-to-vi): Disable overwrite mode.
7d027816 3821 (viper-downgrade-to-insert): protect against errors in hooks.
e04d21aa 3822
9aa5f148
GM
3823 * viper-init.el (viper-vi-state-hook,viper-insert-state-hook)
3824 (viper-replace-state-hook,viper-emacs-state-hook): Do cursor handling.
3825 (viper-restore-cursor-type,viper-set-insert-cursor-type): New
7d027816 3826 functions.
e04d21aa 3827
9aa5f148 3828 * viper-util.el (viper-memq-char): Bug fixes.
e04d21aa 3829
9aa5f148 3830 * viper.el (viper-mode): Fix cursor handling.
e04d21aa 3831
f07fa1b8
KH
38322000-11-24 Kenichi Handa <handa@etl.go.jp>
3833
3834 * international/mule-diag.el (list-iso-charset-chars): For
3835 two-byte charset, fix the `while' condition.
3836 (list-non-iso-charset-chars): Fix the `while' condition.
3837
ba8299ff
SM
38382000-11-23 Stefan Monnier <monnier@cs.yale.edu>
3839
79372165
SM
3840 * subr.el (add-hook, remove-hook): Don't call make-local-hook
3841 if the variable is make-variable-buffer-local.
3842
ba8299ff
SM
3843 * progmodes/ada-stmt.el (ada-template-map): Initialize
3844 and bind it to C-c t in ada-mode-map.
3845 (ada-stmt-mode-hook): New function extracted from old code.
3846 Only change the buffer-local side of skeleton-*.
3847 (ada-mode-hook): Use it.
3848
68a887fa
EZ
38492000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
3850
3851 * iswitchb.el (iswitchb-minibuf-depth): New variable.
3852 (iswitchb-read-buffer): Record in iswitchb-minibuf-depth the value
3853 we expect to be returned by minibuffer-depth once we prompt the
3854 user in the minibuffer.
3855 (iswitchb-entryfn-p): If minibuffer-depth returns the same value
3856 as recorded in iswitchb-minibuf-depth, return non-nil.
3857
3b345582
EZ
38582000-11-23 Eli Zaretskii <eliz@is.elta.co.il>
3859
3860 * hscroll.el (turn-on-hscroll, hscroll-mode, hscroll-global-mode)
3861 (hscroll-window-maybe): Docstring fix.
3862
595dead2
DL
38632000-11-23 Dave Love <fx@gnu.org>
3864
3865 * rect.el (string-rectangle): Don't test delete-selection-mode.
3866
1e66b27a
GM
38672000-11-23 Gerd Moellmann <gerd@gnu.org>
3868
02790ce2
GM
3869 * avoid.el (mouse-avoidance-too-close-p): Return nil if mouse
3870 is in the tool bar.
3871
1e66b27a
GM
3872 * dired-aux.el (dired-add-entry): Don't call dired-get-filename
3873 with `no-dir'; we want the directory part to be able to remove
3874 it.
3875
a4caa65d
SM
38762000-11-22 Stefan Monnier <monnier@cs.yale.edu>
3877
3878 * textmodes/outline.el (outline-flag-region):
3879 Don't bind inhibit-read-only since we don't modify the buffer.
3880 (outline-isearch-open-invisible): Don't jump to overlay-start
3881 since we're trying to unhide text around point.
3882 (outline-discard-overlays): Use dolist.
3883
3884 * autoinsert.el (auto-insert-alist): Add `provide' to elisp skeleton.
3885
03e757c1
GM
38862000-11-22 Gerd Moellmann <gerd@gnu.org>
3887
e04d21aa 3888 * mail/rmail.el (rmail-confirm-expunge): Default to
03e757c1 3889 y-or-n-p.
e04d21aa 3890
1598a961
SM
38912000-11-22 Stefan Monnier <monnier@cs.yale.edu>
3892
3893 * textmodes/tex-mode.el (tex-font-lock-keywords-1):
3894 Fix ARG regexp to skip quoted braces.
3895 (tex-font-lock-keywords-2): Fix ARG regexp to skip quoted braces.
3896 Remove `bf' and `it' from `bold' and `italic' (they were wrong and
3897 are (correctly) handled separately).
3898 Remove `caption' and `footnote' from `citations': they contain text.
3899 Don't highlight `textmd', `texttt' and `textrm' with bold-italic.
3900 (latex-skeleton-end-hook): New function.
3901 (latex-mode): Use it.
3902 (tex-start-tex-marker): Remove.
3903 (tex-send-tex-command): Don't set tex-start-tex-marker.
3904 (tex-error-parse-syntax-table): New var.
3905 (tex-compilation-parse-errors): Use it.
3906 Ignore tex-start-tex-marker. Don't bother with marker-position.
3907 (tex-validate-buffer): Don't bother with marker-position.
3908
3909 * textmodes/flyspell.el (flyspell-prog-text-faces): New var.
bd7e01a3 3910 (flyspell-generic-progmode-verify): Use it.
1598a961 3911
eaae8106
SS
39122000-11-22 Sam Steingold <sds@gnu.org>
3913
03e757c1
GM
3914 * simple.el (delete-trailing-whitespace): New interactive
3915 function.
e04d21aa 3916
eaae8106 3917 * progmodes/ada-mode.el (ada-mode): Use it instead of
bd7e01a3 3918 `ada-remove-trailing-spaces'.
eaae8106 3919 (ada-remove-trailing-spaces): Removed.
e04d21aa 3920
eaae8106 3921 * textmodes/two-column.el (2C-merge): Recommend it in the doc.
e04d21aa 3922
1598a961
SM
3923 * textmodes/picture.el (picture-clean): Removed.
3924 (picture-mode-exit): Call it instead of `picture-clean'.
eaae8106 3925
a41d49e9
GM
39262000-11-22 Gerd Moellmann <gerd@gnu.org>
3927
e053c60f
GM
3928 * frame.el (show-cursor-in-non-selected-windows): Doc fix.
3929
a41d49e9
GM
3930 * hi-lock.el (hi-lock-refontify): Don't call non-existent
3931 jit-lock-fontify-buffer; it should anyway be unneccessary to
4c4a541d 3932 do anything special when jit-lock is active.
a41d49e9
GM
3933 (hi-yellow, hi-pink, hi-green, hi-blue): Fix defface specs.
3934
197615f3
DL
39352000-11-22 Dave Love <fx@gnu.org>
3936
ddbfaa9f
DL
3937 * calendar/todo-mode.el (todo-top-priorities): Use
3938 todo-tmp-buffer-name. From Milan Zamazal <Milan.Zamazal@qbizm.com>.
3939
ddc3c695
DL
3940 * language/chinese.el, language/cyrillic.el:
3941 * language/devanagari.el, language/ethiopic.el, language/greek.el:
3942 * language/hebrew.el, language/indian.el, language/japanese.el:
3943 * language/korean.el, language/lao.el, language/misc-lang.el:
3944 * language/thai.el, language/tibetan.el, language/vietnamese.el:
3945 Use provide.
3946
fb9fa98d
DL
3947 * cus-edit.el (custom-buffer-create-internal): Save some consing.
3948 (custom-variable-set): Improve validation error mesage.
3949
197615f3
DL
3950 * rect.el (string-rectangle): Revert last change.
3951 (string-rectangle-line): New arg DELETE.
3952 (string-rectangle): Check delete-selection-mode.
3953
3954 * emacs-lisp/edebug.el (edebug-version)
3955 (edebug-maintainer-address): Deleted.
3956 (edebug-submit-bug-report): Just alias to report-emacs-bug.
3957 (edebug-read-function): Account for other `'#' read forms.
3958 (edebug-mode-menus): Make some items toggles.
3959 (edebug-outside-unread-command-event, unread-command-event):
3960 Remove these to avoid warnings.
3961
f4117c4d
GM
39622000-11-22 David Ponce <david@dponce.com>
3963
3964 * recentf.el (recentf-menu-items-for-commands)
3965 (recentf-make-menu-items, recentf-make-menu-item)
4c4a541d 3966 (recentf-filter-changer): Added :help and :active menu-item properties.
eaae8106 3967
f4117c4d
GM
3968 (recentf-build-dir-rules, recentf-dump-variable)
3969 (recentf-edit-list, recentf-open-files-item)
3970 (recentf-open-files): Replaced unnecessary `mapcar' with new
3971 built-in `mapc'.
eaae8106 3972
f8e2f3f2
MB
39732000-11-23 Miles Bader <miles@gnu.org>
3974
3975 * faces.el (menu): Make inverse-video on ttys too.
3976
4c4a541d
SM
39772000-11-22 Stefan Monnier <monnier@cs.yale.edu>
3978
3979 * simple.el (comment-line-break-function): Use the new name
3980 indent-new-comment-line -> comment-indent-new-line.
3981 (clone-indirect-buffer): Don't ignore NORECORD.
3982 (next-completion): Properly handle the case where items are adjacent.
3983
3984 * mouse.el (popup-menu): Stupid typo.
3985
980d836e
GM
39862000-11-22 Gerd Moellmann <gerd@gnu.org>
3987
60e8e0a5
GM
3988 * emacs-lisp/authors.el: Remove autoload cookies, add author,
3989 maintainer, keywords tags.
3990
980d836e
GM
3991 * rect.el (replace-rectangle): Don't call string-rectangle-line
3992 with too many arguments.
3993
e08b2069
AS
39942000-11-22 Andre Spiegel <spiegel@gnu.org>
3995
60e8e0a5 3996 * ediff-util.el (ediff-file-checked-out-p)
eaae8106 3997 (ediff-file-checked-in-p): Call vc-state instead of
e08b2069
AS
3998 vc-locking-user, which no longer exists.
3999
4000 * emulation/viper-util.el (viper-file-checked-in-p): Same as above.
4001
c6779d8d
DL
40022000-11-22 Dave Love <fx@gnu.org>
4003
4004 * md5.el (md5): Provide.
4005 (md5): Fix error call.
4006
e672fdce
MB
40072000-11-22 Miles Bader <miles@gnu.org>
4008
eaae8106 4009 * textmodes/refill.el (refill-adjust-ignorable-overlay)
d9fdcdb5
MB
4010 (refill-fill-paragraph-at): Remove debugging code.
4011
80e24c04
MB
4012 * calendar/calendar.el (generate-calendar-window): When we don't
4013 call `fit-window-to-buffer', make sure the top line is fully visible.
4014
3a17d6cc
MB
4015 * image-file.el (insert-image-file): Don't make `read-only'
4016 property rear-nonsticky.
4017
ae1a21c6
MB
4018 * isearch.el (isearch-original-minibuffer-message-timeout): New var.
4019 (isearch-mode): Set `minibuffer-message-timeout' to nil, after
4020 stashing away its original value.
4021 (isearch-edit-string): Temporarily restore `minibuffer-message-timeout'
4022 in the recursive edit.
4023 Bind `isearch-original-minibuffer-message-timeout' to protect it.
4024 (isearch-done): Restore `minibuffer-message-timeout'.
4025
e672fdce
MB
4026 * cus-start.el: Remove entry for `mode-line-inverse-video'.
4027
3ea79df8
SM
40282000-11-21 Stefan Monnier <monnier@cs.yale.edu>
4029
4030 * progmodes/ada-mode.el (ada-mode): `set '' -> `setq'.
4031
4032 * find-lisp.el (find-lisp-find-files-internal):
4033 Use dolist, when and file-name-as-directory.
4034
980d836e 4035 * emacs-lisp/edebug.el (edebug-form-spec prop): Use dolist.
3ea79df8
SM
4036 (define-derived-mode, define-minor-mode): Add specs.
4037
4038 * window.el: General comment and spacing fixes.
4039 (save-selected-window): Use backquotes.
4040 (window-safely-shrinkable-p): New function.
4041 (shrink-window-if-larger-than-buffer): Use it.
4042
4043 * subr.el (make-local-hook): Docstring fix.
4044
4045 * shell.el (shell-mode): Use define-derived-mode.
4046
4047 * newcomment.el (comment-indent): Insert comment before calling
4048 comment-indent-function. Don't insert in column 0.
4049 (comment-dwim): Indent before inserting comment.
4050
4051 * isearch.el (isearch-mode-map): Fix docstring. Init in defvar.
4052 (minibuffer-local-isearch-map): Init in defvar. Use inheritance.
4053 (isearch-clean-overlays, isearch-range-invisible, isearch-unread):
4054 Use mapc rather than map.
4055
4056 * files.el (find-buffer-visiting): Compare all attributes before
4057 declaring two files identical (rather than just their inode-no).
4058 (auto-mode-alist): Use \' rather than $.
4059
4060 * which-func.el: Update maintainer line.
4061
4062 * pcvs.el (uniquify-buffer-file-name): Remove advice.
4063 * uniquify.el (uniquify-list-buffers-directory-modes): New var.
4064 (uniquify-buffer-file-name): Use it.
4065
8f62f2b8
MB
40662000-11-22 Miles Bader <miles@gnu.org>
4067
4068 * cus-start.el: Add entry for `minibuffer-prompt-properties'.
4069 * simple.el (minibuffer-avoid-prompt): New function.
4070
fb279a6d
GM
40712000-11-21 Gerd Moellmann <gerd@gnu.org>
4072
4073 * Makefile.in (.SUFFIXES): Add .SUFFIXES.
4074
867092e9
MB
40752000-11-21 Miles Bader <miles@gnu.org>
4076
ef860850
MB
4077 * emacs-lisp/advice.el (ad-special-forms): Correct the conditional
4078 inclusion of `track-mouse'.
4079
867092e9
MB
4080 * textmodes/refill.el (refill-ignorable-overlay): New variable.
4081 (refill-adjust-ignorable-overlay): New function.
4082 (refill-fill-paragraph-at): Use `refill-ignorable-overlay' to fill
4083 only the paragraph's tail if possible.
4084 Update `refill-ignorable-overlay'.
4085 (refill-mode): Initialize/cleanup `refill-ignorable-overlay'.
4086
4087 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
4088 point inside the fill-prefix.
4089
4090 * textmodes/refill.el (refill-post-command-function): Don't reset
4091 refill-doit in the case where a self-insertion command doesn't
4092 case a refill. Use `refill-fill-paragraph-at', getting position
4093 from `refill-doit'.
4094 (refill-after-change-function): Set `refill-doit' to END.
4095 (refill-fill-paragraph-at): New function, mostly from old
4096 refill-fill-paragraph.
4097 (refill-fill-paragraph): Use `refill-fill-paragraph-at'.
4098 (refill-pre-command-function): New function.
4099 (refill-mode): Add it to `pre-command-hook'.
4100
ff9ab414
GM
41012000-11-20 Gerd Moellmann <gerd@gnu.org>
4102
29a01b72
GM
4103 * textmodes/artist.el (artist-mode): Fix autoload cookie.
4104
ff9ab414
GM
4105 * font-lock.el (java-keywords): Add MATCH-HIGHLIGHT part for
4106 javadoc tags.
eaae8106 4107
885b211b
AS
41082000-11-20 Andre Spiegel <spiegel@gnu.org>
4109
4110 * vc.el, vc-hooks.el: Undo prev change (moved functions back to
4111 vc.el).
4112
eaae8106 4113 * vc-rcs.el (vc-rcs-state): Before calling vc-workfile-unchanged-p,
885b211b 4114 require vc.
eaae8106
SS
4115
4116 * vc-cvs.el (vc-cvs-checkout): Fix bug that broke C-x v ~-style
885b211b 4117 checkouts.
eaae8106 4118
d1838556
DL
41192000-11-20 Dave Love <fx@gnu.org>
4120
4121 * Makefile.in (DONTCOMPILE): Omit bindings.el.
4122
2b69bc11 41232000-11-20 Eli Barzilay <eli@www.barzilay.org>
56c13ae6 4124
2b69bc11
GM
4125 * calculator.el (calculator-paste): Use `if' instead of `and'
4126 and `or'.
4127 (calculator-help): Don't use electric-describe-mode for XEmacs.
56c13ae6 4128
b95b34e5
GM
41292000-11-19 Gerd Moellmann <gerd@gnu.org>
4130
030de92f
GM
4131 * info.el (info-menu-5): Doc fix.
4132
b95b34e5
GM
4133 * textmodes/artist.el: New file.
4134
54970452
AS
41352000-11-19 Andre Spiegel <spiegel@gnu.org>
4136
eaae8106 4137 * vc-rcs.el (vc-rcs-state): Call vc-workfile-unchanged-p only here,
54970452
AS
4138 and differentiate according to checkout model.
4139 (vc-rcs-fetch-master-state): Don't call vc-workfile-unchanged-p,
4140 since this function is only concerned with master state.
4141
eaae8106 4142 * vc-hooks.el (vc-workfile-unchanged-p,
54970452
AS
4143 vc-default-workfile-unchanged-p): Moved here from vc.el.
4144
eaae8106 4145 * vc.el (vc-workfile-unchanged-p,
54970452
AS
4146 vc-default-workfile-unchanged-p): See above.
4147
e5a9dabf
MB
41482000-11-19 Miles Bader <miles@gnu.org>
4149
4150 * image-file.el (insert-image-file): Make `intangible' and
4151 `read-only' properties rear-nonsticky too.
4152
24127af0
GM
41532000-11-18 Gerd Moellmann <gerd@gnu.org>
4154
d392e9c5 4155 * ps-print.el: Update copyright notice.
eaae8106 4156
d392e9c5
GM
4157 * tooltip.el (tooltip-x-offset, tooltip-y-offset): New user-options.
4158 (tooltip-show): Use the offsets.
4159
24127af0 4160 * bindings.el (mode-line-modified): Fix a typo.
eaae8106 4161 (mode-line-toggle-modified, mode-line-widen)
24127af0
GM
4162 (mode-line-abbrev-mode, mode-line-auto-fill-mode): Fix typos.
4163
2b69bc11 41642000-11-17 Vinicius Jose Latorre <vinicius@cpqd.com.br>
08ea6f17 4165
2b69bc11
GM
4166 * ps-print.el (toplevel): Test for find-coding-system being
4167 fboundp before calling ps-x-find-coding-system.
08ea6f17 4168
66321b2f
SM
41692000-11-16 Stefan Monnier <monnier@cs.yale.edu>
4170
4171 * vc.el (vc-version-diff): Bind inhibit-read-only when inserting text.
4172 (vc-version-backup-file): Docstring fix.
4173
046110c6
GM
41742000-11-16 Gerd Moellmann <gerd@gnu.org>
4175
4104194e
GM
4176 * files.el (basic-save-buffer): Don't add a newline if
4177 find-file-literally is non-nil.
4178 (find-file-literally): Extend doc string.
4179
046110c6
GM
4180 * sort.el (sort-columns): If sort-fold-case it non-nil, invoke
4181 sort(1) with the `-f' argument.
4182
6505c16e
AS
41832000-11-16 Andre Spiegel <spiegel@gnu.org>
4184
fd063975
AS
4185 * vc.el: Updated backend documentation.
4186 (vc-default-check-headers): New function.
4187
3d02dd81 4188 * vc-{cvs,rcs,sccs}.el: Functions reordered.
eaae8106
SS
4189
4190 * vc.el (vc-revert-buffer): Ask for confirmation if file seems
8791d617 4191 up-to-date.
eaae8106 4192 (vc-do-command): In the asynchronous case, output messages only if
9dd94743 4193 the minibuffer is not active.
fd063975 4194
eaae8106 4195 * vc-cvs.el (vc-cvs-revert): Use `cvs unedit' only if
8791d617 4196 `vc-cvs-use-edit' is on.
eaae8106
SS
4197 (vc-cvs-checkout): When this is used for reverting the workfile,
4198 make a backup of the original contents and revert to that in case
8791d617 4199 of error.
eaae8106 4200 (vc-cvs-print-log, vc-cvs-diff): Use asynchronous mode only for
9dd94743 4201 remote repositories.
eaae8106 4202
6505c16e
AS
4203 * vc.el (vc-annotate): Changed handling of prefix arg; now asks
4204 for both version and ratio in the minibuffer.
fd063975 4205
eaae8106 4206 * vc-cvs.el (vc-cvs-annotate-command): New optional arg VERSION.
8791d617 4207 Use vc-do-command to perform the annotation, not call-process.
6505c16e 4208
a13f0660
KH
42092000-11-16 Kenichi Handa <handa@etl.go.jp>
4210
4211 * international/quail.el (quail-start-translation): Don't call
4212 `message' before reading key sequence.
4213
1389a414
MB
42142000-11-16 Miles Bader <miles@lsi.nec.co.jp>
4215
4216 * net/ange-ftp.el (ange-ftp-file-modtime): Don't use `caddr'.
4217
9256a532
KH
42182000-11-16 Kenichi Handa <handa@etl.go.jp>
4219
4220 * window.el (fit-window-to-buffer): Be sure to acquire at least
4221 one text line even if the buffer is empty.
4222
0e14fe9f
GM
42232000-11-16 Gerd Moellmann <gerd@gnu.org>
4224
eaae8106 4225 * net/ange-ftp.el (ange-ftp-file-writable-p)
0e14fe9f
GM
4226 (ange-ftp-file-readable-p, ange-ftp-file-executable-p): Bind
4227 ange-ftp-process-verbose to nil.
4228
da645c53
DL
42292000-11-15 Dave Love <fx@gnu.org>
4230
233d5cde
DL
4231 * wid-edit.el (widget-specify-field, widget-specify-button): If
4232 :help-echo is a function, set help-echo of overlay to
4233 widget-mouse-help.
4234 (widget-mouse-help): New function.
4235 (widget-echo-help): Rewritten for :help-echo functions only taking
4236 a widget arg.
4237
b12057b9
DL
4238 * net/eudc-bob.el (eudc-bob-can-display-inline-images): Use
4239 display-graphic-p.
4240 (eudc-bob-display-jpeg) <!eudc-xemacs-p>: Test create-image bound
4241 and that JPEG is available.
4242 (eudc-bob-toggle-inline-display): Avoid non-existent `imagep'.
4243
da645c53
DL
4244 * international/mule-cmds.el (locale-charset-language-names):
4245 Match @euro.
4246
6d133d1f
GM
42472000-11-15 Gerd Moellmann <gerd@gnu.org>
4248
4249 * faces.el (face-set-after-frame-default): If
0e14fe9f 4250 `inhibit-default-face-x-resources' is bound, don't intialize the
6d133d1f
GM
4251 default face from X resources.
4252
49ac2ac5
EZ
42532000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
4254
4255 * Makefile.in (custom-deps, finder-data, autoloads, recompile):
4256 Don't set EMACSLOADPATH.
4257
4fb0a34c
EZ
42582000-11-15 Eli Zaretskii <eliz@is.elta.co.il>
4259
4260 * textmodes/texinfo.el (texinfo-insert-@uref): Renamed from
4261 texinfo-insert-@url.
4262 (texinfo-insert-@url): A defalias for texinfo-insert-@uref.
4263 (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref.
4264
bb304a7a
SM
42652000-11-14 Stefan Monnier <monnier@cs.yale.edu>
4266
82bc80bf
SM
4267 * emacs-lisp/checkdoc.el (checkdoc-minor-mode) <defvar>: Remove.
4268 (checkdoc-minor-mode-map): New map, replaces checkdoc-minor-keymap.
4269 (checkdoc-minor-keymap): Backward compatibility.
4270 (checkdoc-minor-menu): Don't bother checking checkdoc-minor-keymap.
4271 (checkdoc-minor-mode) <defun>: Use easy-mmode-define-minor-mode.
4272 (checkdoc-this-string-valid-engine): Be a bit more strict
4273 to avoid matching substrings of `...' quoted vars/funs.
4274 (checkdoc-defun-info): Only look for `interactive' if alone.
4275 (debug-ignored-errors): Add "arg doesn't appear in docstring".
4276
e8c87124
SM
4277 * progmodes/compile.el (grep): `tag-default' can be nil.
4278
bb304a7a
SM
4279 * newcomment.el (comment-indent): Paren typo.
4280
8628686a
DL
42812000-11-14 Dave Love <fx@gnu.org>
4282
25c269ef
DL
4283 * calculator.el: New maintainer version.
4284
66321b2f 4285 * diff-mode.el (diff-imenu-generic-expression): Modify unidiff pattern.
25c269ef 4286
8628686a
DL
4287 * cmuscheme.el: Doc fixes.
4288 (cmuscheme) <defgroup>: Use `scheme' as parent.
4289 (cmuscheme-program-name): Remove. Change uses to
4290 scheme-program-name.
4291
4292 * xscheme.el (scheme-program-name): Don't define here.
4293
4294 * progmodes/scheme.el (scheme-program-name): New variable
4295 (originally in cmuscheme).
4296
88f0a1eb
MB
42972000-11-14 Miles Bader <miles@gnu.org>
4298
4299 * window.el (fit-window-to-buffer): Handle windows without mode-lines.
4300 Handle header-lines. Don't loop forever if we can't enlarge the
4301 window anymore. Simplify a bit.
4302
cd9a000c
KH
43032000-11-14 Kenichi Handa <handa@etl.go.jp>
4304
4305 * window.el (fit-window-to-buffer): Don't check
4306 window-text-height. Assure that the last line is fully visible.
4307
4308 * international/quail.el (quail-show-guidance-buf): Call
4309 fit-window-to-buffer to assure the enough height of the guidance
4310 buffer.
4311 (quail-update-guidance): Avoid making the guidance buffer shorter.
4312
d3fcda22
SM
43132000-11-14 Stefan Monnier <monnier@cs.yale.edu>
4314
bdbd9606
SM
4315 * textmodes/tex-mode.el (tex-font-lock-keywords-1): Use `keep'
4316 rather than `prepend' and add an interesting comment.
4317 (tex-math-face, tex-font-lock-syntactic-face-function):
4318 New face and function to use it.
4319 (tex-define-common-keys, tex-mode-map): Use menu-item rather
4320 than `menu-enable' symbol property.
4321 (tex-mode-map): Bind {, (, [ and $ to skeleton-pair-insert-maybe.
4322 (tex-mode): Add some latex-mode commands for auto-selection.
4323 Use tex-font-lock-syntactic-face-function.
4324 (tex-insert-quote): Simplify.
4325 (tex-shell): New mode.
4326 (tex-start-shell): Use it.
4327 (tex-shell-proc, tex-shell-buf): New functions.
4328 (tex-send-command): Use it.
4329 (tex-main-file): Fix the meaning of the new arg REALFILE.
4330 (tex-send-tex-command): New function split from `tex-start-tex'.
4331 Set compilation-last-buffer and compilation-parsing-end.
4332
d3fcda22
SM
4333 * newcomment.el (comment-indent-default): Stick \s<\s< to the left
4334 when it follows non-comment text on the line.
4335
4336 * emacs-lisp/lisp-mode.el (lisp-mode-variables):
4337 Set font-lock-defaults.
4338 (lisp-mode-shared-map): Init inside the defvar.
4339 (emacs-lisp-mode, lisp-mode, lisp-interaction-mode):
4340 Use define-derived-mode.
4341
bdab1d43
MB
43422000-11-14 Miles Bader <miles@lsi.nec.co.jp>
4343
4344 * faces.el (header-line): Use `:box nil' for color/gs displays too.
4345
936ae731
GM
43462000-11-14 Gerd Moellmann <gerd@gnu.org>
4347
4348 * emacs-lisp/byte-opt.el (byte-compile-unfold-lambda): Don't
4349 recursively optimize body because that can lead to infinite
4350 recursion; see comment there.
4351
1695ca2b
EZ
43522000-11-13 Eli Zaretskii <eliz@is.elta.co.il>
4353
4354 * faces.el (face-spec-set-match-display): Revert the change from
4355 2000-10-24. Add a FIXME for after v21.1.
4356
9d348294
MB
43572000-11-13 Miles Bader <miles@gnu.org>
4358
4359 * textmodes/fill.el (skip-line-prefix): New function.
4360 (fill-region-as-paragraph, fill-region): Return the fill-prefix.
4361 (fill-paragraph): Don't leave point inside the fill-prefix.
88f0a1eb
MB
4362 * textmodes/refill.el (refill-fill-paragraph-at): Don't leave
4363 point inside the fill-prefix.
9d348294 4364
b85fa13c
MB
43652000-11-13 Miles Bader <miles@lsi.nec.co.jp>
4366
4367 * calendar/calendar.el (generate-calendar-window): Use
4368 `fit-window-to-buffer'.
4369
a0b47716
SM
43702000-11-12 Stefan Monnier <monnier@cs.yale.edu>
4371
4372 * gud.el (gud-minor-mode): New var.
4373 (gud-symbol, gud-val): New functions.
4374 (gud-find-file): Copy gud-minor-mode to the new buffer.
4375 (gud-menu-map): Include entries for commands that are not always
4376 available, using :enable to (de)activate them.
4377 (gud-minor-mode-map): New map. Add it to minor-mode-map-alist.
4378 (gud-mode-map): New map.
eaae8106 4379 (gud-gdb-find-file, gud-sdb-find-file, gud-dbx-find-file)
a0b47716
SM
4380 (gud-xdb-find-file, gud-perldb-find-file, gud-pdb-find-file):
4381 Don't set up gud's menu (it's done by the minor-mode).
4382 (gud-minibuffer-local-map): New.
4383 Replace gdb-minibuffer-local-map and pdb-minibuffer-local-map.
4384 (gud-query-cmdline): New function.
4385 (gdb, sdb, dbx, xdb, perldb, pdb, jdb): Use it. Set gud-minor-mode.
4386 (gud-mode): Use define-derived-mode.
4387 Don't set up gud's menu (it's done by the minor-mode).
4388 (gud-chop-words): Remove.
4389 (gud-common-init): Use split-string instead.
4390 (gud-new-keymap, gud-make-debug-menu): Eradicate.
4391
4392 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap):
4393 Add keyword arg :name.
4394
4395 * diff-mode.el (diff-mode-menu): Add entry for applying hunk.
4396 (diff-count-matches, diff-split-hunk): New functions.
4397 (diff-mode-map): Bind C-c C-s to diff-split-hunk.
4398
4399 * pcvs-info.el (cvs-fi-conflict-face): New var.
4400
4401 * progmodes/sh-script.el (sh-mode-syntax-table) <defvar>:
4402 Make it into a simple syntax-table, shared among all submodes.
4403 (sh-heredoc-face): Re-introduce.
4404 (sh-font-lock-syntactic-face-function): New function.
4405 (sh-mode): Use it. Also use define-derived-mode.
4406 Remove old bogus setting of indent-region-function.
4407 (sh-set-shell): Don't set the syntax-table any more.
4408 (sh-mode-syntax-table) <defun>: Remove.
4409
f5ed37df
MB
44102000-11-12 Miles Bader <miles@gnu.org>
4411
4412 * textmodes/flyspell.el (flyspell-mode-on): Only output welcome
4413 message if interactive.
4414
0b074c2f
DL
44152000-11-12 Dave Love <fx@gnu.org>
4416
4417 * mail/feedmail.el: Fix header,
4418 (feedmail) <defgroup>: Add :link.
4419
4420 * view.el: Use local-map property, not keymap on mode-line string.
4421
4422 * scroll-all.el (scroll-all-mode): Customize variable. Add
4423 autoload cookie to function.
4424
4425 * lazy-lock.el: Remove compatibility code.
4426
4427 * finder.el (finder-known-keywords): Add `files', remove `vms'.
4428 (finder-help-echo): New variable.
4429 (finder-mouse-face-on-line): Add help-echo stuff.
4430 (finder-list-keywords, finder-list-matches): Use mapc.
4431
4432 * faces.el (face-font-registry-alternatives): Add :version.
4433
4434 * progmodes/etags.el (visit-tags-table-buffer): Beware of `t' in
4435 tags-table-list.
4436
a0b47716 4437 * net/browse-url.el (browse-url-browser-function): Update :version.
0b074c2f 4438
a0b47716 4439 * mail/sendmail.el (mail-font-lock-keywords): Use [:alpha:], not a-z.
0b074c2f
DL
4440 (mail-mode): Use [:alnum:] in some regexps.
4441
6d502396
DL
44422000-11-10 Dave Love <fx@gnu.org>
4443
4444 * ediff.el (ediff-regions-internal, ediff-documentation):
4445 * ediff-vers.el (rcs-ediff-view-revision): Put temp buffer into
4446 fundamental mode.
4447
4448 * ediff-util.el (ediff-status-info, ediff-debug-info): Put temp
4449 buffer into fundamental mode.
4450 (ediff-set-difference): Use copy-sequence if available.
4451
4452 * ediff-ptch.el (ediff-dispatch-file-patching-job): Check
4453 ediff-patch-map non-nil.
4454 (ediff-fixup-patch-map, ediff-fixup-patch-map)
4455 (ediff-fixup-patch-map, ediff-patch-file-internal): Put temp
4456 buffer into fundamental mode.
4457
4458 * ediff-merg.el (state-or-merge): Defvar when compiling.
4459
a82fe213
JR
44602000-11-10 Jason Rumney <jasonr@gnu.org>
4461
4462 * w32-fns.el (w32-add-charset-info): New function.
4463 (w32-charset-info-alist): Use it.
4464
52d89894
GM
44652000-11-10 Gerd Moellmann <gerd@gnu.org>
4466
4467 * faces.el (face-font-registry-alternatives): New user-option.
4468
178932de
SM
44692000-11-10 Stefan Monnier <monnier@cs.yale.edu>
4470
d7fa3319
SM
4471 * textmodes/texinfo.el (texinfo-block-default): New var.
4472 (texinfo-insert-block): Use it. Insert a newline if needed.
4473
178932de
SM
4474 * textmodes/fill.el (fill-indent-according-to-mode): New var.
4475 (fill-region-as-paragraph): Use it.
4476
4477 * textmodes/tex-mode.el (standard-latex-block-names): Add "math".
4478 (latex-mode): Tweak tex-*-(head|trail)er regexps.
4479 Tweak paragraph regexps to allow a leading [ \t]*.
4480 (tex-latex-block): Insert a newline if necessary.
4481 (latex-insert-item): Only insert a newline if necessary.
4482 (tex-guess-main-file): New function.
4483 (tex-main-file): Use it. Add arg `realfile'. Trim `.tex'.
4484 Set tex-main-file if TeX-master is provided.
4485 (tex-latex-indent-syntax-table): Map ( and ) to punctuation.
4486
bd02b8e0
GM
44872000-11-10 Gerd Moellmann <gerd@gnu.org>
4488
4489 * startup.el (command-line): Set the default tooltip-mode
4490 to t for graphical displays which implement x-show-tip.
4491
4492 * tooltip.el (tooltip-mode): Add a comment about startup.el
4493 setting the default value of this user-option.
4494
b29b03eb
SM
44952000-11-09 Stefan Monnier <monnier@cs.yale.edu>
4496
4497 * font-lock.el (font-lock-*-face) <defvar>: Move.
4498 (font-lock-defaults-alist): Mark obsolete.
4499 (font-lock-mode, font-lock-mode-hook) <defvar>: Remove.
4500 (font-lock-mode): Use define-minor-mode.
4501 (font-lock-support-mode): Tweak type to default to jit-lock-mode.
4502 (font-lock-turn-off-thing-lock): Be more explicit.
4503 (font-lock-apply-syntactic-highlight): Use string-to-syntax after eval.
4504 (font-lock-syntactic-face-function): New var.
4505 (font-lock-fontify-syntactically-region): Use it.
4506 (font-lock-doc-face): New.
4507
4508 * pcvs.el (cvs-enabledp): Ignore errors.
4509 (cvs-commit-filelist): Never query.
4510 (cvs-mode-insert): Always add a terminating / in the initial prompt.
4511 (cvs-mode-diff-backup): Use cvs-partition rather than delete-if-not.
4512 (cvs-do-removal): Use cvs-partition rather than delete-if.
4513 Use cvs-insert-strings, cvs-pop-to-buffer-same-frame and
4514 cvs-bury-buffer.
4515
4516 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
4517 Allow `next' to jump to after the end of the last match.
4518
778fbc46
GM
45192000-11-09 Gerd Moellmann <gerd@gnu.org>
4520
730c746c
GM
4521 * simple.el (byte-compiling-files-p): New function.
4522
4523 * textmodes/ispell.el (toplevel): Use byte-compiling-files-p
4524 if it is there.
4525
4526 * emacs-lisp/bytecomp.el (byte-compile-current-file): Bind it to
4527 nil again.
4528
778fbc46
GM
4529 * textmodes/ispell.el (ispell-library-path): Don't call
4530 check-ispell-version when byte-compiling because that starts
4531 an ispell process, and ispell might not be installed.
4532 (toplevel): Don't set up a menu when byte-compiling.
4533
4534 * emacs-lisp/bytecomp.el (byte-compile-current-file): Don't bind
4535 it, so that a boundp test can be used to determine if we're
4536 currently byte-compiling.
4537
5912c5bb
DL
45382000-11-09 Dave Love <fx@gnu.org>
4539
4540 * pcvs.el (uniquify-buffer-file-name): Wrap advice in
4541 eval-after-load.
4542
7bb054a5
GM
45432000-11-09 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4544
4545 * ps-print.el: Patch for variable initialization when spooling. Doc
4546 fix.
4547 (ps-output-list): Fun eliminated.
4548 (ps-begin-file, ps-begin-job): Code fix.
4549
9db2706e
DL
45502000-11-08 Dave Love <fx@gnu.org>
4551
4552 * ediff-wind.el (ediff-control-frame-parameters): Zero
4553 tool-bar-lines.
4554
f7eb32aa
GM
45552000-11-08 Gerd Moellmann <gerd@gnu.org>
4556
4557 * simple.el (shell-command, display-message-or-buffer)
4558 (shell-command-on-region): Mention resize-mini-windows in the doc
4559 string.
4560 (display-message-or-buffer): Take the value of resize-mini-windows
4561 into account.
4562
7b01b08c
GM
45632000-11-07 Gerd Moellmann <gerd@gnu.org>
4564
acad3c0b
GM
4565 * macros.el (insert-kbd-macro): Print semi-colons as `?\;'.
4566
7b01b08c
GM
4567 * dired.el (dired-between-files): Add `^. find' as an alternative
4568 to the regular expression, for find-dired.
4569
6f602bd0
SM
45702000-11-06 Stefan Monnier <monnier@cs.yale.edu>
4571
4572 * textmodes/texnfo-upd.el: Require texinfo.
4573 (defmacro, defgroup): Remove.
4574 (texinfo-section-to-generic-alist): Remove.
4575 Use texinfo-section-list instead (i.e. level is changed string->int).
4576 (texinfo-filter): New function.
4577 (texinfo-chapter-level-regexp, texinfo-subsubsection-level-regexp)
4578 (texinfo-subsection-level-regexp, texinfo-section-level-regexp):
4579 Use it. And use regexp-opt.
4580 (texinfo-find-higher-level-node, texinfo-hierarchic-level)
4581 (texinfo-update-menu-region-beginning)
4582 (texinfo-update-menu-higher-regexps, texinfo-update-menu-lower-regexps)
4583 (texinfo-update-the-node, texinfo-sequentially-update-the-node)
4584 (texinfo-update-menu-same-level-regexps): Update.
eaae8106 4585 (texinfo-update-node, texinfo-every-node-update)
6f602bd0
SM
4586 (texinfo-sequential-node-update): Remove autoload cookie.
4587
4588 * textmodes/texinfo.el (texinfo-section-list): Change majorheading.
4589 (texinfo-font-lock-syntactic-keywords): Use syntax-strings.
4590 (texinfo-chapter-level-regexp): Remove.
4591 (texinfo-mode): Hard code texinfo-chapter-level-regexp.
4592
bb216218
DL
45932000-11-06 Dave Love <fx@gnu.org>
4594
6f602bd0 4595 * autoinsert.el (auto-insert-alist) <latex-mode>: Use \documentclass.
b04f7626 4596
6f602bd0
SM
4597 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
4598 Match defun*.
bb216218 4599
ff8dd5d5
KH
46002000-11-06 Kenichi Handa <handa@etl.go.jp>
4601
4602 * composite.el (composition-function-table): Variable declaration
4603 moved to src/composite.c.
4604 (compose-chars-after): New optional arg object.
4605
e9da51a1
GM
46062000-11-06 Gerd Moellmann <gerd@gnu.org>
4607
e0c12c68
GM
4608 * bindings.el (mode-line-toggle-read-only)
4609 (mode-line-toggle-modified, mode-line-widen)
4610 (mode-line-abbrev-mode, mode-line-auto-fill-mode): New functions.
4611 (make-mode-line-mouse2-map): Rewritten.
4612 (mode-line-modified, mode-line-format, minor-mode-alist): Use new
4613 functions so that C-h k can show something with a doc string.
eaae8106 4614
e9da51a1
GM
4615 * startup.el (fancy-splash-delay): Set to 10 seconds.
4616 (fancy-splash-max-time): New user-option.
4617 (fancy-splash-stop-time): New variable.
4618 (fancy-splash-screens): Set it. Catch `stop-splashing'.
4619 (fancy-splash-screens-1): Throw `stop-splashing' when current
4620 time is greater than fancy-splash-stop-time.
4621
611dbdf0
SM
46222000-11-06 Stefan Monnier <monnier@cs.yale.edu>
4623
4d2806e2
SM
4624 * vc-hooks.el (vc-insert-file): Don't assume byte==char.
4625
611dbdf0
SM
4626 * pcvs.el (cvs-mode-marked): New arg `noquery'.
4627 Prompt user for a file rather than raising an error.
4628 (cvs-enabledp): Fix call to cvs-mode-marked.
4629 (cvs-insert-file): New function (extracted from cvs-mode-insert).
4630 (cvs-mode-insert): Use it. Change the init prompt' value.
4631 (cvs-mode-tree): Use cvs-status-cvstrees instead of cvs-status-trees.
4632
4633 * emacs-lisp/ewoc.el (ewoc-goto-prev, ewoc-goto-next):
4634 Don't pass default arg to ewoc-locate.
4635 (ewoc-collect): Return result in the right order.
4636
4637 * log-edit.el (log-edit-show-files): Use cvs-insert-strings.
4638
4639 * cvs-status.el (cvs-tree-merge): Use cvs-butlast (avoid CL).
4640 (cvs-status-get-tags): Fix regexp.
4641 (cvs-status-trees, cvs-status-cvstrees):
4642 Combine after change hooks and don't sit-for.
4d2806e2
SM
4643 (cvs-tree-use-jisx0208): Rename from cvs-tree-dstr-2byte-ready.
4644 (cvs-tree-char-*): Rename from cvs-tree-dstr-char-*.
611dbdf0
SM
4645 Use make-char rather than hard-coded cryptic data.
4646 (cvs-status-cvstrees): Convert the buffer to multibyte if necessary.
4647
4648 * pcvs-defs.el (cvs-menu): Add entries for tree and insert.
4649
4650 * pcvs-util.el (cvs-butlast, cvs-nbutlast): New (copied from CL).
4651 (cvs-insert-strings): New function.
4652
937b2877
MB
46532000-11-06 Miles Bader <miles@lsi.nec.co.jp>
4654
4655 * mwheel.el (mouse-wheel-scroll-amount): Renamed from
4656 `mwheel-scroll-amount'.
4657 (mouse-wheel-follow-mouse): Renamed from `mwheel-follow-mouse'.
4658 (mouse-wheel-mode): Use (featurep 'xemacs) instead of
4659 string-matching against the version string.
4660
c6c97763
KH
46612000-11-06 Kenichi Handa <handa@etl.go.jp>
4662
6eaec747
KH
4663 * language/thai.el ("Thai"): Set a lisp form that produces
4664 composed string in `sample-text' language info.
4665
4666 * language/tibetan.el ("Tibetan"): Set a lisp form that produces
4667 composed string in `sample-text' language info.
4668
4669 * international/mule-cmds.el (describe-language-environment): Eval
4670 `sample-text' data and insert the result.
4671
c6c97763
KH
4672 * international/mule-conf.el (compound-text): Define this coding
4673 system here. Make x-ctext and ctext aliases of it.
4674
4675 * language/european.el (compound-text, ctext): Moved to
4676 international/mule-conf.el.
4677
d1145f85
AI
46782000-11-05 Andrew Innes <andrewi@gnu.org>
4679
4680 * w32-fns.el (w32-version): New function.
4681
178a6a45
SM
46822000-11-05 Stefan Monnier <monnier@cs.yale.edu>
4683
4684 * progmodes/awk-mode.el: Update copyright.
4685 (awk-mode-abbrev-table): Remove.
4686 (awk-font-lock-keywords): Use regexp-opt.
4687 (awk-mode): Use define-derived-mode.
4688
4689 * emacs-lisp/regexp-opt.el (regexp-opt-group): Sort the strings
4690 when extracting a suffix.
4691
1ba90166
AS
46922000-11-04 Andre Spiegel <spiegel@gnu.org>
4693
4694 * vc-hooks.el (vc-insert-file): Rewritten. Don't bother about
4695 auto-save-mode.
4696
546790cb
JR
46972000-11-04 Jason Rumney <jasonr@gnu.org>
4698
4699 * language/european.el (decode-mac-roman): Test against r1 not r0.
4700
d247e32d
SM
47012000-11-03 Stefan Monnier <monnier@cs.yale.edu>
4702
fbf44f44
SM
4703 * progmodes/icon.el (icon-mode-map): Don't rebind \t.
4704 (icon-mode): Define indent-line-function.
4705 (icon-comment-indent): Simplify.
4706 (icon-font-lock-keywords-2): Use the `words' arg to regexp-opt.
4707
4708 * emacs-lisp/find-func.el (find-function-do-it): Quote the hook.
4709
4710 * pcvs.el (cvs-mode-add-change-log-entry-other-window):
4711 Bind change-log-default-mode to defeat the caching done on it.
4712 Don't bother saving excursion any more.
4713
4714 * menu-bar.el (minibuffer maps): Use dolist rather than mapcar.
4715
4716 * frame.el (after-setting-font-hook): Rename hooks -> hook.
4717 (set-frame-font): Use the new name (and the old for compatibility).
4718
eaae8106
SS
4719 * toolbar/tool-bar.el (tool-bar-mode):
4720 * time.el (display-time-mode):
4721 * recentf.el (recentf-mode):
4722 * paren.el (show-paren-mode):
4723 * mwheel.el (mouse-wheel-mode):
4724 * msb.el (msb-mode):
4725 * jka-compr.el (auto-compression-mode):
4726 * image-file.el (auto-image-file-mode):
4727 * hl-line.el (hl-line-mode):
4728 * delsel.el (delete-selection-mode):
4729 * autoinsert.el (auto-insert-mode):
fbf44f44
SM
4730 * complete.el (partial-completion-mode): Drop unneeded positional args.
4731
eaae8106 4732 * info.el (Info-mode):
79372165 4733 * comint.el (comint-mode): Don't bother with make-local-hook.
fbf44f44 4734
d247e32d
SM
4735 * log-edit.el (log-edit-menu): New menu.
4736
4921558e
MB
47372000-11-03 Miles Bader <miles@gnu.org>
4738
4739 * wid-edit.el (widget-end-of-line): Reinstate, with a new
4740 definition, so that trailing spaces are handled properly.
4741 (widget-field-keymap, widget-text-keymap): Likewise C-e binding.
4742
1fc02b3c
GM
47432000-11-03 Gerd Moellmann <gerd@gnu.org>
4744
4745 * startup.el (fancy-splash-text, fancy-splash-text): Use a single
4746 tab character.
4747 (fancy-splash-screens): Set tab-width to 20.
4748
51d001f7
DL
47492000-11-03 Dave Love <fx@gnu.org>
4750
4751 * comint.el (comint-completion-addsuffix): Fix custom type.
4752
ba22aeff
SM
47532000-11-02 Stefan Monnier <monnier@cs.yale.edu>
4754
4755 * font-lock.el (font-lock-buffers): Remove.
4756 (font-lock-global-modes): Define with easy-mmode-define-global-mode.
4757 (font-lock-change-major-mode): Remove.
4758 (turn-on-font-lock-if-enabled): Only apply to the current buffer.
4759 (font-lock-default-fontify-region): Extend the multiline
4760 fontification to whole lines.
4761 (font-lock-fontify-anchored-keywords)
4762 (font-lock-fontify-keywords-region): If matching just one
4763 line (with \n) only mark the \n as multiline.
4764
4765 * emacs-lisp/easy-mmode.el (define-minor-mode): Remove :toggle arg.
4766 Correctly handle the case where several :group args are supplied.
4767 Allow :extra-args.
4768 (easy-mmode-define-global-mode): Allow :extra-args.
4769 Correctly handle the case where several :group args are supplied.
4770
9c887ada
MB
47712000-11-02 Miles Bader <miles@gnu.org>
4772
eaae8106 4773 * calendar/calendar.el (diary-face, calendar-today-face)
9c887ada
MB
4774 (holiday-face): Remove dependency on `window-system'.
4775
7f25090d
KR
47762000-11-02 Ken Raeburn <raeburn@gnu.org>
4777
4778 * Makefile.in (emacs): Set EMACSLOADPATH always.
4779 (update-authors, .el.elc, compile-files): Don't do it explicitly
4780 here.
9b911107 4781 (compile-files): Bomb out if compilation of a file fails.
7f25090d 4782
7dd6009c
DL
47832000-11-02 Dave Love <fx@gnu.org>
4784
4785 * emacs-lisp/find-func.el (find-variable-regexp): Avoid defgroup.
4786
94821e4f
EZ
47872000-11-02 Eli Zaretskii <eliz@is.elta.co.il>
4788
4789 * mail/emacsbug.el (report-emacs-bug): Fix whitespace and
4790 punctuation in the warning inserted into the *mail* buffer.
4791
1ac3fc42
GM
47922000-11-02 Gerd Moellmann <gerd@gnu.org>
4793
57731876
GM
4794 * emacs-lisp/authors.el (authors-public-domain-files): New variable.
4795 (authors-public-domain-p): New function.
4796 (authors-print): Use it.
4797
975f82c9
GM
4798 * help.el (view-emacs-news): Use ONEWS.* instead of NEWS.* files.
4799
1ac3fc42
GM
4800 * mail/mh-e.el, mail/mh-comp.el: Change maintainer.
4801
4b3eb10f
GM
48022000-11-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4803
975f82c9 4804 * ps-print.el: Extension for even/odd printing. Doc fix.
4b3eb10f
GM
4805 (ps-print-version): New version number (6.3.1).
4806 (ps-even-or-odd-pages): Customization fix.
4807 (ps-print-page-p, ps-begin-file, ps-begin-job, ps-page-number)
4808 (ps-header-sheet, ps-header-page, ps-end-job): Code fix.
4809 (ps-page-count): Var replaced by `ps-page-column'.
4810 (ps-page-column, ps-page-sheet, ps-page-printed): New vars.
4811 (ps-print-sheet-p): New fun.
4812
7da794df
MB
48132000-11-02 Miles Bader <miles@lsi.nec.co.jp>
4814
4815 * tooltip.el (tooltip-gud-tips-setup): New function.
4816 (tooltip-gud-tips-p): Add :set to call tooltip-gud-tips-setup.
4817 (tooltip-mode): Call tooltip-gud-tips-setup.
4818 (tooltip-gud-tips): Use `gud-basic-call' instead of
4819 process-send-string, so the prompt gets frobbed appropriately.
4820 Handle nil return value from `tooltip-gud-print-command'.
4821
0e40b809
EL
48222000-11-01 Eric M. Ludlam <zappo@ultranet.com>
4823
4824 * comint.el (comint-add-to-input-history): New function.
4825 (comint-send-input): Use `comint-add-to-input-history'.
4826
50ada0db
MB
48272000-11-02 Miles Bader <miles@lsi.nec.co.jp>
4828
973a3104
MB
4829 * info.el (info-menu-header): New face.
4830 (Info-fontify-menu-headers): New function.
4831 (Info-fontify-node, Info-insert-dir): Call `Info-fontify-menu-headers'.
4832
50ada0db
MB
4833 * info.el (Info-insert-dir): Don't include blank lines at
4834 beginning of additional dir files (one is added automatically).
4835
bff53411
SM
48362000-11-01 Stefan Monnier <monnier@cs.yale.edu>
4837
4838 * emacs-lisp/easy-mmode.el (define-minor-mode):
4839 Revert the latest changes.
4840 Allow the three positional arguments to be skipped and replaced
4841 by keyword arguments.
4842 Add a :toggle argument to determine whether a nil arg means toggle
4843 or means turn-on. The default is unchanged.
4844 Add a call to force-mode-line-update.
4845
6b8a0b2d
DL
48462000-11-01 Dave Love <fx@gnu.org>
4847
4848 * emacs-lisp/elp.el (elp-restore-function): Remove autoload
4849 cookie.
4850
5bf99100
MB
48512000-11-01 Miles Bader <miles@lsi.nec.co.jp>
4852
4853 * calendar/calendar.el (diary-face, holiday-face): Add
4854 dark-background variants.
4855
a4032611
SS
48562000-10-31 Sam Steingold <sds@gnu.org>
4857
4858 * textmodes/tex-mode.el (tex-file): Use `default-directory' when
4859 `tex-main-file' does not have directory in it.
4860
c286608e
SM
48612000-10-31 Stefan Monnier <monnier@cs.yale.edu>
4862
4863 * cus-edit.el (custom-mode-map): Switch back to a sparse keymap.
4864
4836835a
TTN
48652000-10-31 Thien-Thi Nguyen <ttn@gnu.org>
4866
4867 * ediff-init.el (ediff-prepare-buffer-hook): Expand docstring, no
4868 functional change.
4869
26dcb81b
GM
48702000-10-31 Gerd Moellmann <gerd@gnu.org>
4871
4872 * files.el (find-file-noselect): When we expand a wildcard, return
4873 a list of buffers, as we should do according to the doc string.
4874
49fc4500
KR
48752000-10-31 Ken Raeburn <raeburn@gnu.org>
4876
4877 * loadup.el (top level): Adjust load path if program name is
4878 "../src/bootstrap-emacs", in case it's not dumped and thus the
4879 load path adjustment hasn't already been done.
4880
ea0c615d
GM
48812000-10-31 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4882
4883 * ps-print.el: Fix bug on selected pages for printing. Use
4884 `color-values' for Emacs 21. Ensure fontification when jit-lock
4885 is on. Try to avoid warning messages when compiling. Doc Fix.
4886 (ps-print-version): New version number (6.3).
4887 (ps-color-device): Use `color-values' to determine if device
4888 supports color.
4889 (ps-color-values): Try to use `x-color-values' when using XEmacs.
4890 (ps-print-page-p): Changed from defsubst to defun.
4891 (ps-page-number): Changed from defmacro to defun.
4892 (ps-header-sheet, ps-header-page): Fix bug on selected pages for
4893 printing.
c286608e 4894 (ps-print-ensure-fontified): Ensure fontification when jit-lock is on.
ea0c615d
GM
4895 (ps-end-file, ps-dummy-page): Funs eliminated.
4896 (ps-print-color-scale): Changed default value.
4897 (ps-page-n-up, ps-print-page-p): New internal vars.
4898 (ps-print-preprint, ps-output, ps-begin-file, ps-begin-page)
4899 (ps-plot-region, ps-generate, ps-end-job): Code fix.
4900
9e20722f
GM
4901 * delim-col.el: Little programming improvement.
4902 (delimit-columns-str): New macro.
4903 (delimit-columns-region, delimit-columns-rectangle): Code fix.
4904
d7a0fd00
KH
49052000-10-31 Kenichi Handa <handa@etl.go.jp>
4906
c286608e
SM
4907 * term/mac-win.el (decode-mac-roman, encode-mac-roman, mac-roman):
4908 Moved to european.el.
d7a0fd00
KH
4909 (ccl-encode-mac-roman-font, fontset-mac): Modified for
4910 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
c286608e
SM
4911 (mac-roman-kbd-insert, mac-roman-kbd-mode): These functions deleted.
4912 (mac-roman-kbd-mode, mac-roman-kbd-mode-map): These variables deleted.
d7a0fd00 4913
234be340
DL
49142000-10-30 Dave Love <fx@gnu.org>
4915
4916 * progmodes/cc-menus.el (imenu-generic-expression)
4917 (imenu-progress-message): Only defvar when compiling.
4918
4edc4a39
DL
4919 * emacs-lisp/elp.el (elp-unload-hook): New function.
4920
4921 * loadhist.el (unload-feature): Call elp-restore-function,
4922 checking for symbols; don't use elp-restore-all.
4923 (loadhist-hook-functions): Doc fix.
4924
70c825df
SM
49252000-10-30 Stefan Monnier <monnier@cs.yale.edu>
4926
4927 * log-edit.el (log-edit-confirm): Fix the default.
4928
1d3baf74
GM
49292000-10-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
4930
4931 * delim-col.el: Little fix: replace delimit-columns-align-columns by
4932 delimit-columns-format.
4933 (delimit-columns-region, delimit-columns-rectangle): Code fix.
4836835a 4934
1ec321a7
MB
49352000-10-30 Miles Bader <miles@lsi.nec.co.jp>
4936
4937 * comint.el (comint-replace-by-expanded-history): Don't use
4938 comint-get-old-input (we're not looking at *old* input).
4939 (comint-get-old-input-default): If using fields, signal an error
4940 when the point is not in an input field.
4941
70737ea9
KH
49422000-10-30 Kenichi Handa <handa@etl.go.jp>
4943
4944 * international/mule-conf.el: New charsets mule-unicode-2500-33ff
4945 and mule-unicode-e000-ffff.
4946
fa0cb51d 4947 * international/mule.el (decode-char, encode-char): New functions.
70737ea9
KH
4948 (make-coding-system): Accept a symbol of translation table as a
4949 value of property `safe-chars'.
4950
4951 * international/mule-cmds.el (encode-coding-char): Check property
4952 safe-chars instead of safe-charsets.
4953
4954 * international/fontset.el (fontset-default): Modified for
4955 mule-unicode-2500-33ff and mule-unicode-e000-ffff.
4956 (x-font-name-charset-alist): Likewise.
4957 (ccl-encode-unicode-font): New CCL program. Record it in
4958 font-ccl-encoder-alist to be used for fonts "ISO10646-1".
4959
70c825df
SM
4960 * language/european.el (mac-roman-decoder, mac-roman-encoder):
4961 New translation tables.
70737ea9
KH
4962 (decode-mac-roman, encode-mac-roman): Definition of these CCL
4963 programs are modified and moved from mac-win.el.
4964 (mac-roman): Definition of this coding system is modified and
4965 moved from mac-win.el.
4836835a 4966
fda2ce24 49672000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
4836835a 4968
1d3baf74 4969 * ediff-wind.el (ediff-setup-control-frame): Enclose
fda2ce24 4970 face-attribute in condition-case to avoid errors in older emacsen.
70737ea9 4971
dd4d3cb6
MB
49722000-10-29 Miles Bader <miles@gnu.org>
4973
4974 * custom.el (custom-add-to-group): Allow multiple entries for a
4975 given value OPTION, as long as their widget types are different.
4976 * cus-edit.el (custom-face-value-create): If face name doesn't end
4977 with "face", add such here (similar to custom group widgets).
4978
4979 * comint.el (comint-highlight-prompt): Add :type.
4980
dace60cf
JW
49812000-10-28 John Wiegley <johnw@gnu.org>
4982
4983 * textmodes/flyspell.el (flyspell-maybe-correct-transposition):
4984 Changed this function to operate on a temporary buffer instead of
4985 the main buffer. This not only keeps flyspell from marking a
4986 buffer as changed that wasn't, but it solves the jumpy cursor
4987 problem when attempts are made to edit incorrect words.
4988 (flyspell-maybe-correct-doubling): Same change as for
4989 `flyspell-maybe-correct-transposition'.
4990
4991 * calendar/timeclock.el (timeclock-log): Doc fix.
4992 (timeclock-last-event): Doc fix.
4993 (timeclock-log): Kill the timelog buffer after appending a new
4994 event.
4995 (timeclock-find-discrep): Use a temp buffer to read in the
4996 timelog, instead of visiting the file.
4997 (timeclock-log-data): A new function, along with a host of helper
4998 functions, for the purpose of making timelog data accessible to
4999 programmers.
5000
5001 * eshell/esh-mode.el (window-height test): Make certain that
5002 `eshell-stringify-t' is non-nil.
5003 (eshell-password-prompt-regexp): Changed to a much simpler
5004 password regexp.
5005 (eshell-send-input): If `eshell-invoke-directly' returns t,
5006 directly invoke the parsed command using `eval'. This improves
5007 turn-around time on simple commands by a factor of three or
5008 greater, such as cd, ls, pwd, etc. -- which get used very often.
5009 It also conserves thousands of cons cells per call (since
5010 `eshell-do-eval' consumes memory like a Cookie Monster set loose
5011 in the Pacific Cookie Company).
5012
5013 * eshell/esh-test.el (eshell-test): Whitespace fix.
5014
5015 * eshell/em-ls.el (eshell-ls-insert-directory): Make
5016 `eshell-ls-initial-args' nil when inserting directory contents.
5017
5018 * eshell/em-script.el (eshell-script-initialize): Add names to
5019 `eshell-complex-commands, since `source' and `.' are complex.
5020
0467b076
EZ
5021 * eshell/esh-cmd.el (eshell-rewrite-for-command)
5022 (eshell-rewrite-while-command): Use `eshell-protect' instead of
dace60cf
JW
5023 `eshell-copy-handles'.
5024 (eshell-rewrite-if-command): Use `eshell-protect' to wrap the call
5025 bodies.
5026 (eshell-separate-commands): Whitespace fix.
5027 (eshell-complex-commands): Added a new list of names, for
5028 determining whether a given command is as simple as it looks.
5029 (eshell-invoke-directly): New function. Returns t if a command
5030 should be invoked directly (using `eval'), rather than indirectly
5031 using `eshell-do-eval'.
5032 (eshell-do-eval): Whitespace fix.
5033
5034 * eshell/em-unix.el (eshell-default-target-is-dot): New variable,
5035 which provides an emulation of the DOS shell behavior of assuming
5036 that cp/mv/ln should copy/move/link to the current directory.
5037 (eshell-remove-entries): Added a doc string.
5038 (eshell-shuffle-files): Removed the check for `target' being null.
5039 (eshell-mvcp-template, eshell-mvcpln-template): Renamed
5040 `eshell-mvcp-template' to `eshell-mvcpln-template', and extended
5041 it to do a smarter check of whether a destination was provided.
5042 (eshell/mv, eshell/cp): Enable `:preserve-args'.
5043 (eshell/ln): Enable `:preserve-args', and use
5044 `eshell-mvcpln-template' to implement the body of the function.
0467b076
EZ
5045 (eshell/cat, eshell/make, eshell-poor-mans-grep, eshell-grep)
5046 (eshell/du, eshell/diff, eshell/locate): Stringify the argument
dace60cf
JW
5047 list after flattening it. This makes it possible to cat files
5048 with numerical names.
5049 (eshell-unix-initialize): Added several names to
5050 `eshell-complex-commands.
5051 (eshell-unix-command-complex-p): Return t if a given command name
5052 may result in external processes being invoked.
5053
5054 * eshell/em-glob.el (eshell-glob-show-progress): Make this
5055 variable nil by default, since it slows down glob processing by a
5056 factor of two or more, and increases memory consumption.
5057
5058 * eshell/em-smart.el: Added a note about how memory consumptive
5059 smart display mode can be (at least this is true in Emacs 21).
5060 (eshell-smart-initialize): Whitespace fix.
5061 (eshell-refresh-windows): Use `if' instead of `when'.
5062 (eshell-smart-scroll-window): Calling `save-current-buffer' was
5063 not necessary.
5064 (eshell-currently-handling-window): Added a missing global
5065 variable.
5066
5067 * eshell/em-ls.el (eshell-do-ls): Code simplification.
5068 (eshell-ls-sort-entries, eshell-ls-entries, eshell-ls-dir):
5069 Whitespace fix.
5070 (eshell-ls-exclude-hidden): Added this variable in addition to
5071 `eshell-ls-exclude-regexp'. This one prevents files beginning
5072 with . from even being read, which can improve memory consumption
5073 quite a bit.
5074 (eshell-ls-dir): If `eshell-ls-exclude-hidden' is non-nil, do not
5075 read file entries beginning with a dot. In home directories with
5076 lots of hidden files, fully two-thirds of the time spent in ls is
5077 used to read directory entries that are immediately thrown away.
5078 (eshell-ls-initial-args): Added back this configuration variable,
5079 for specifying default initial arguments to every call to ls.
5080 Much faster than using an alias to do the same thing.
5081 (eshell-do-ls): Use `eshell-ls-initial-args', if set.
5082 (eshell-ls-dir): Whitespace change.
5083
5084 * eshell/em-dirs.el (eshell/pwd): Small code simplification.
5085
5086 * eshell/esh-util.el: Don't require `ange-ftp' if it's not
5087 available.
5088 (eshell-stringify-t): Added a customization variable, to indicate
5089 whether `t' should be rendered as a string at all. If not, one
5090 can still determine if the result of an expression is true using
5091 "file-exists-p FILE && echo true".
5092 (eshell-stringify): If `eshell-stringify-t' is nil, don't
5093 stringify t!
5094
5095 * eshell/esh-module.el: Whitespace fix.
5096
5097 * eshell/em-alias.el (eshell-alias-initialize): Added
5098 `eshell-command-aliased-p' to `eshell-complex-commands'.
5099 (eshell-command-aliased-p): New function that returns t if a
5100 command name names an aliased.
5101
657f9cb8 51022000-10-29 Michael Kifer <kifer@cs.sunysb.edu>
4836835a 5103
0467b076 5104 * viper-cmd.el (viper-preserve-cursor-color): New test that avoids
70c825df 5105 redrawing the screen when changing cursor color.
0467b076
EZ
5106 (viper-insert-state-pre-command-sentinel)
5107 (viper-replace-state-pre-command-sentinel)
70c825df
SM
5108 (viper-replace-state-post-command-sentinel):
5109 Use viper-preserve-cursor-color.
657f9cb8
MK
5110 Many functions changed to use viper= instead of = when comparing
5111 characters.
0467b076 5112 * viper-util.el (viper-memq-char,viper=): New functions for
657f9cb8 5113 working with characters.
0467b076 5114 (viper-change-cursor-color): Fixed buglet.
657f9cb8
MK
5115 Many functions changed to use viper= instead of = when comparing
5116 characters.
0467b076 5117 * viper.el (viper-insert-state-mode-list): Added eshell.
4836835a 5118
0467b076 5119 * ediff-init.el (ediff-before-setup-hook): New hook.
657f9cb8 5120 Several typos fixed in various docstrings.
0467b076
EZ
5121 * ediff-merg.el (ediff-show-clashes-only): Docstring typo fixed.
5122 * ediff-nult.el (ediff-before-session-group-setup-hooks): New
657f9cb8 5123 hook.
0467b076
EZ
5124 (ediff-show-meta-buffer): Run ediff-before-session-group-setup-hooks.
5125 * ediff-util.el (ediff-setup): Run ediff-before-setup-hook.
5126 (ediff-other-buffer): Use selected buffers if in Buffer-menu buffer.
5127 (ediff-get-selected-buffers): New function.
5128 * ediff-vers.el (ediff-vc-internal,ediff-rcs-internal)
5129 (ediff-vc-merge-internal,ediff-rcs-merge-internal): Use
657f9cb8 5130 save-window-excursion.
0467b076 5131 * ediff-wind.el (ediff-skip-unsuitable-frames): More robust
657f9cb8 5132 termination check in while loop.
0467b076 5133 * ediff.el (ediff-get-default-file-name): Better defaults when in
657f9cb8 5134 dired buffer.
0467b076
EZ
5135 (ediff-files,ediff-merge-files,ediff-files3)
5136 (ediff-merge-files-with-ancestor): Use ediff-get-default-file-name.
4836835a 5137
4f490d99
DL
51382000-10-28 Dave Love <fx@gnu.org>
5139
5140 * info.el (Info-fontify-node): Add help-echo for menu items.
5141
45b84006
EZ
51422000-10-28 Eli Zaretskii <eliz@is.elta.co.il>
5143
5ebc02b3
EZ
5144 * startup.el (normal-top-level): If the value of $TERM indicates
5145 we are running from xterm or one of its work-alikes, default to a
5146 light background mode.
5147
45b84006
EZ
5148 Support for -fg, -bg, and -rv command-line arguments for TTYs:
5149 * faces.el (tty-handle-reverse-video): New function.
5150 (tty-create-frame-with-faces): Call it.
5151
5152 * frame.el (frame-notice-user-settings): Don't apply
5153 default-frame-alist and initial-frame-alist to MS-DOS frames.
5154 Call tty-handle-reverse-video, frame-set-background-mode, and
5155 face-set-after-frame-default for non-MS-DOS frames.
5156
5157 * startup.el (tty-long-option-alist): New variable.
5158 (tty-handle-args): New function.
5159 (command-line): Call tty-handle-args.
5160
5161 * term/pc-win.el (x-long-option-alist, msdos-handle-args): Remove;
5162 startup.el now does that for all character-terminal frames.
5163
eab6e8b9
MB
51642000-10-28 Miles Bader <miles@gnu.org>
5165
5166 * emacs-lisp/easy-mmode.el (define-minor-mode): Generate
5167 `turn-on-MODE' and `turn-off-MODE' functions unless the mode is
5168 global. If :global is followed by a non-nil but non-t value,
5169 make the mode buffer-local, but also generate a `global-MODE'
5170 version using `easy-mmode-define-global-mode'. Add
5171 :conditional-turn-on keyword argument.
5172
51a29efc
DL
51732000-10-28 Dave Love <fx@gnu.org>
5174
5175 * international/latin1-disp.el (latin1-char-displayable-p): Don't
5176 use window-system.
5177
d71d7114
EZ
51782000-10-27 Eli Zaretskii <eliz@is.elta.co.il>
5179
5180 * dos-w32.el (find-file-not-found-set-buffer-file-coding-system):
5181 Don't call find-buffer-file-type-coding-system. Instead, just
5182 set eol-type to -unix if inhibit-eol-conversion is in effect, or
5183 if the file is on an untranslated filesystem.
5184 (add-untranslated-filesystem): Use "D" instead of "f" inside
5185 interactive.
5186
1f9cab4b
DL
51872000-10-27 Dave Love <fx@gnu.org>
5188
70c825df 5189 * textmodes/refill.el (refill-late-fill-paragraph-function): New var.
1f9cab4b
DL
5190 (refill-mode): Use it.
5191
70c825df
SM
51922000-10-27 Stefan Monnier <monnier@cs.yale.edu>
5193
5194 * international/quail.el (quail-activate): Don't make-local-hook.
5195
7432cf10
AS
51962000-10-27 Andre Spiegel <spiegel@gnu.org>
5197
4836835a 5198 * vc-hooks.el (vc-version-backup-file-name): Use file.~<rev>~ for
7432cf10 5199 manual backups and file.~<rev>.~ for automatic ones.
08a1fcb7
AS
5200 (vc-make-version-backup): Don't do it on MS-DOS without long file
5201 names.
4836835a 5202
7432cf10
AS
5203 * vc.el (vc-version-other-window): If an automatic backup of the
5204 desired version exists, rename it instead of copying it.
5205
4836835a
TTN
5206 * vc-cvs.el (vc-cvs-checkin): Check both status and error message
5207 after command. If there's an unexpected error, signal it instead
7432cf10 5208 of being silent.
e1483c38 5209 (vc-cvs-merge-news): Be prepared for no news at all.
4836835a 5210
05ea7ef2
MB
52112000-10-27 Miles Bader <miles@lsi.nec.co.jp>
5212
fd1035aa
MB
5213 * shell.el (shell): Add BUFFER argument.
5214 * comint.el (make-comint-in-buffer): New function.
5215 (make-comint): Use it.
5216
05ea7ef2
MB
5217 * faces.el (face-spec-choose): Change syntax so that the list of
5218 attribute-value pairs is now the cdr of each clause, not the cadr.
5219 Detect old-style entries, and handle them. Use pop.
5220
835a55fe
SM
52212000-10-26 Stefan Monnier <monnier@cs.yale.edu>
5222
f5ab1cdd
SM
5223 * cus-edit.el (custom-mode-map): Use a sparse map.
5224 (custom-mode): Don't bother with make-local-hook.
5225
5226 * wid-edit.el (widget-add-change): Don't bother with make-local-hook.
5227
835a55fe
SM
5228 * vc.el (vc-start-entry): Only erase the buffer if comment is set.
5229
c13b0ec8
GM
52302000-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5231
5232 * ps-print.el: Avoid compilation gripes.
5233 (ps-print-version): New version number (6.2.1).
4836835a 5234
e9f63196
DL
52352000-10-26 Dave Love <fx@gnu.org>
5236
0b95284b
DL
5237 * menu-bar.el: Modify some menu item help strings.
5238 (menu-bar-help-menu): Add link to MORE.STUFF.
5239
e9f63196
DL
5240 * cus-edit.el (custom-mode): Add `special' mode-class property.
5241
5242 * wid-browse.el (widget-browse-mode): Likewise.
5243
5244 * wid-edit.el (widget-specify-field): Revert to using local-map
5245 property, not keymap.
5246
e276a14a
MB
52472000-10-26 Miles Bader <miles@lsi.nec.co.jp>
5248
c1545d88
MB
5249 * wid-edit.el (widget-field-end): When checking for a `boundary'
5250 field, do so in the correct buffer.
5251
3c1b77ca
MB
5252 * simple.el (undo): Correctly distinguish between numeric and
5253 non-numeric prefix args in non-transient-mark-mode, as per the doc
5254 string. When in transient-mark-mode, treat all prefix-args as
5255 numeric.
5256
f5ab1cdd
SM
5257 * simple.el (previous-matching-history-element): Miscellaneous cleanup.
5258 Position point on match. Handle N == 0 correctly.
22626d9d
MB
5259
5260 * comint.el (comint-mode): Locally set `next-line-add-newlines' to nil.
5261 (comint-mode-map): Reverse order of `comint-write-output' and
5262 `comint-append-output-to-file'.
5263 (comint-append-output-to-file): Reinstate this function, for the
5264 benefit of the menu.
5265
d97151cb
SM
52662000-10-25 Stefan Monnier <monnier@cs.yale.edu>
5267
5268 * vc.el (vc-version-other-window): Bind `file'.
5269
ea7d6f5b
GM
52702000-10-25 Gerd Moellmann <gerd@gnu.org>
5271
f5ab1cdd 5272 * Makefile.in (update-authors): New target for maintenance purposes.
ea7d6f5b
GM
5273
5274 * emacs-lisp/authors.el (batch-update-authors): New function.
5275 (authors-fixed-entries): New defconst.
5276 (authors-add-fixed-entries): New function.
5277 (authors): Call it.: Don't process lispref/.
5278
17c25cea
JR
52792000-10-25 Jason Rumney <jasonr@gnu.org>
5280
5281 * cus-edit.el (custom-button-face, custom-button-pressed-face):
5282 Merge x w32 and mac definitions.
5283
4ecda532
GM
52842000-10-25 Gerd Moellmann <gerd@gnu.org>
5285
5286 * menu-bar.el (menu-bar-options-menu): Add a help string for
5287 `uniquify'.
5288
b6735035
GM
52892000-10-25 Stephen Gildea <gildea@alum.mit.edu>
5290
f5ab1cdd
SM
5291 * time-stamp.el (time-stamp-string-preprocess):
5292 Fix a wrong type argument error.
b6735035 5293
f4cbc7a0
MB
52942000-10-25 Miles Bader <miles@gnu.org>
5295
5296 * recentf.el (recentf-mode): Variable removed.
5297 (recentf-mode): Use `define-minor-mode'.
5298
5299 * mwheel.el (mouse-wheel-mode): New global minor mode.
5300 (mwheel-install): Use `mouse-wheel-mode'.
5301
f4b020f6
DL
53022000-10-25 Dave Love <fx@gnu.org>
5303
f5ab1cdd
SM
5304 * progmodes/cperl-mode.el (cperl-mode):
5305 Set normal-auto-fill-function correctly.
072cb6f9 5306
f4b020f6
DL
5307 * wid-edit.el (widget-field-keymap, widget-text-keymap): Don't
5308 inherit from global-map and don't nullify menu-bar and tool-bar
0b95284b 5309 bindings.
f4b020f6 5310
ebe2a441
MB
53112000-10-25 Miles Bader <miles@lsi.nec.co.jp>
5312
ff4dcd4b
MB
5313 * wid-edit.el (widget-field-at): New function.
5314 (widget-at, widget-field-activate): Use it.
5315 (widget-tabable-at): Use `widget-at'.
5316 (widget-specify-field): If the terminating character of the widget
5317 field (which is read-only) is a newline, put it into a special
5318 `boundary' field so that C-n/C-p act more naturally.
5319 (widget-field-end): Also don't subtract one if a special
5320 `boundary' field has been added after the widget field.
5321
ebe2a441
MB
5322 * comint.el (comint-output-filter, comint-send-input): Don't
5323 bother adding stickiness fields to overlays to fool the field
5324 code, since it should notice the overlay insertion-types now.
ff4dcd4b 5325
ebe2a441
MB
5326 * wid-edit.el (widget-beginning-of-line, widget-end-of-line):
5327 Replace with aliases of the normal emacs b-o-l/e-o-l functions.
5328 (widget-field-keymap, widget-text-keymap): Don't bind C-a/C-e.
5329
fe50b6ab
GM
53302000-10-24 Gerd Moellmann <gerd@gnu.org>
5331
53df4dda
GM
5332 * emacs-lisp/authors.el (authors-aliases): Add some more aliases.
5333 (authors): Set file coding system to iso-2022-7bit. Add
5334 file-local variables to output buffer.
5335
4836835a 5336 * files.el (after-find-file): Don't print any warnings if
fe50b6ab
GM
5337 WARN is nil.
5338
53df4dda
GM
53392000-10-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5340
5341 * ps-print.el (ps-generate): Fix odd/even pages printing bug.
5342
5343 * delim-col.el: Now there is a column formatting mechanism.
5344 Modified to customization mechanisms convention. Doc fix.
5345 (columns): New group for delim-col.
5346 (delimit-columns-before, delimit-columns-after)
5347 (delimit-columns-format, delimit-columns-extra, delimit-columns-start)
5348 (delimit-columns-end): New vars.
5349 (delimit-columns-customize, delimit-columns-format): New funs.
5350 (delimit-columns-region, delimit-columns-rectangle)
5351 (delimit-columns-rectangle-line): Modified to support column
5352 formatting.
4836835a 5353
a9839779
DL
53542000-10-24 Dave Love <fx@gnu.org>
5355
5356 * log-edit.el (log-edit): Add :version and a :group for vc.
5357
df0267b8
GM
53582000-10-24 Gerd Moellmann <gerd@gnu.org>
5359
9acc3873
GM
5360 * files.el (after-find-file): Don't print a message ``New file''
5361 if WARN is nil.
5362
63e1b552
GM
5363 * wid-edit.el (widget-field-keymap, widget-text-keymap): Define
5364 the tool-bar map as nil, as for the menu-bar. Otherwise, we'll
5365 get duplicate tool-bar entries because we'll see the global ones
5366 on more than one path through keymaps.
5367
1946f901
GM
5368 * emacs-lisp/lisp.el (defun-prompt-regexp): Doc fix.
5369
df0267b8
GM
5370 * progmodes/cmacexp.el: Change Francesco's email address.
5371
ae3b264b
KH
53722000-10-24 Kenichi Handa <handa@etl.go.jp>
5373
5374 * window.el (fit-window-to-buffer): Adjust point of the window
5375 buffer, not that of the current buffer.
5376
23afac01
EZ
53772000-10-24 Eli Zaretskii <eliz@is.elta.co.il>
5378
5379 * progmodes/cmacexp.el: Update the euthor's email address.
5380
22d1a4ed
MB
53812000-10-24 Miles Bader <miles@lsi.nec.co.jp>
5382
5383 * faces.el (face-spec-set-match-display): Add `graphic' display
5384 type (the inverse of `tty'). Use `display-graphic-p' instead of
5385 the window-system variable.
5386
f408aa48
KH
53872000-10-24 Kenichi Handa <handa@etl.go.jp>
5388
5389 * international/isearch-x.el (isearch-with-input-method): Call
5390 input-method-function with the first event in
5391 unread-command-events.
5392
94fe8a31
MB
53932000-10-24 Miles Bader <miles@lsi.nec.co.jp>
5394
5395 * faces.el (face-default-spec, face-user-default-spec): Make
5396 defsubsts.
5397
8f47302e
AC
53982000-10-24 Andrew Choi <akochoi@i-cable.com>
5399
5400 * international/mule-conf.el (mac-roman-lower, mac-roman-upper):
5401 New charsets.
5402
5403 * term/mac-win.el: Remove definitions of mac-roman-lower and
5404 mac-roman-upper, require dired, and define instead of set
5405 mac-ready-for-drag-n-drop to avoid compilation error.
5406
446c097e
AI
54072000-10-23 Andrew Innes <andrewi@gnu.org>
5408
5409 * files.el (make-backup-file-name-1) [windowsnt, ms-dos]: Remove
5410 superfluous calls to subst-char-in-string; instead apply
5411 expand-file-name after convert-standard-filename to ensure
5412 expected directory separators are used.
5413
379b70e7
EZ
54142000-10-23 Eli Zaretskii <eliz@is.elta.co.il>
5415
5416 * info.el (Info-file-list-for-emacs): Add an entry for Eshell.
5417
85c766e9
DL
54182000-10-23 Dave Love <fx@gnu.org>
5419
b7e03a67
DL
5420 * toolbar/tool-bar.el (tool-bar-add-item-from-menu)
5421 (tool-bar-add-item): Set foreground and background for XBM icons.
5422
5423 * international/latin1-disp.el (latin1-char-displayable-p): New
5424 function (from Handa).
5425 (latin1-display-check-font): Use it.
5426
0dcf8835
DL
5427 * imenu.el (imenu--create-keymap-2): Build menu with menu-item
5428 using :key-sequence, making it much more usable. Use nconc, not
5429 append.
5430 (imenu--create-keymap-1): Avoid append.
5431
85c766e9 5432 * textmodes/refill.el: Remove bits redundant with define-minor-mode.
4836835a 5433
cb3069bb
MB
54342000-10-23 Miles Bader <miles@lsi.nec.co.jp>
5435
5436 [the following changes fix a bug where `define-minor-mode' didn't
5437 correctly generate :require clauses for defcustoms in compiled files]
5438 * emacs-lisp/bytecomp.el (byte-compile-last-logged-file): New variable.
5439 (byte-compile-log-file, byte-compile-log-1): Don't set
5440 `byte-compile-current-file' to nil. Instead set
5441 `byte-compile-last-logged-file' to it. Test whether
5442 byte-compile-current-file equals byte-compile-last-logged-file
5443 instead of whether its nil.
3b6542ba 5444 (byte-compile-file): Bind `byte-compile-last-logged-file' to nil.
cb3069bb 5445
6db6243b
SM
54462000-10-23 Stefan Monnier <monnier@cs.yale.edu>
5447
5448 * textmodes/refill.el: Fix var names in doc.
5449 (refill-mode): Don't bother with make-local-hook anymore.
5450
98490598
MB
54512000-10-23 Miles Bader <miles@lsi.nec.co.jp>
5452
e01cd227
MB
5453 * faces.el (face-user-default-spec, face-default-spec): New functions.
5454 (face-spec-choose, face-spec-set): Document nil-SPEC behavior.
4836835a 5455 (frame-set-background-mode, face-set-after-frame-default):
e01cd227
MB
5456 Use `face-user-default-spec'. Simplify code slightly.
5457
4836835a 5458 * woman.el (woman-italic-face, woman-bold-face)
e01cd227
MB
5459 (woman-unknown-face): Add dark-background variants.
5460 (woman-default-faces): Renamed from `woman-colour-faces'.
5461 Set using the stored defaults, rather than using hard-wired colors.
5462 (woman-monochrome-faces): Renamed from `woman-black-faces'.
5463 Just make the foreground `unspecified' rather than "black".
5464 (woman-menu): Rename menu entries accordingly.
5465
98490598
MB
5466 * faces.el (header-line): Make more reasonable on mono/grayscale
5467 displays.
5468
1a578e9b
AC
54692000-10-23 Andrew Choi <akochoi@i-cable.com>
5470
5471 * cus-edit.el (custom-button-face): Use 3D look for mac.
5472 (custom-button-pressed-face): Likewise.
5473
5474 * faces.el (set-face-attributes-from-resources): Handle mac frames
5475 in the same way as x and w32 frames.
5476 (face-valid-attribute-values): Likewise.
5477 (read-face-attribute): Likewise.
5478 (defined-colors): Likewise.
5479 (color-defined-p): Likewise.
5480 (color-values): Likewise.
5481 (display-grayscale-p): Likewise.
5482 (face-set-after-frame-default): Likewise.
5483 (mode-line): Same default face as for x and w32.
5484 (tool-bar): Likewise.
5485
5486 * frame.el: Remove call to frame-notice-user-settings at end of
5487 the file.
5488
5489 * info.el (Info-fontify-node): make underlines invisible for mac
5490 as for x, pc, and w32 frame types.
5491
5492 * term/mac-win.el: New file.
5493
aaaf7be7
DL
54942000-10-22 Dave Love <fx@gnu.org>
5495
5496 * textmodes/refill.el: New file.
5497
5392d654
AS
54982000-10-22 Andre Spiegel <spiegel@gnu.org>
5499
4836835a 5500 * vc-hooks.el (vc-version-backup-file-name): New optional args
5392d654 5501 MANUAL and REGEXP.
4836835a 5502 (vc-delete-automatic-version-backups, vc-make-version-backup):
5392d654
AS
5503 New functions.
5504 (vc-before-save): Use the latter.
5505 (vc-default-make-version-backups-p): Added `-p' suffix to avoid
5506 confusion.
5507
4836835a 5508 * vc-cvs.el (vc-cvs-make-version-backups-p): Added `-p' suffix as
5392d654
AS
5509 expected by vc[-hooks].el.
5510
5511 * vc.el (vc-checkout): Added `-p' suffix in call to
5512 vc-make-version-backups-p; use vc-make-version-backup to actually
5513 make the backup.
5514 (vc-version-other-window, vc-version-backup-file): Handle both
5515 automatic and manual backups.
5516 (vc-revert-file): Use vc-delete-automatic-version-backups to get rid
5517 of all of them.
5518
1e221c16
MB
55192000-10-22 Miles Bader <miles@gnu.org>
5520
7ff4fda5
MB
5521 * comint.el (comint-highlight-input, comint-highlight-prompt):
5522 Renamed, `-face' at end removed.
5523 (comint-send-input, comint-output-filter): Use renamed faces.
5524
3511cde8
MB
5525 * window.el (fit-window-to-buffer): Change defaulting of
5526 MAX-HEIGHT slightly.
5527
1e221c16
MB
5528 * faces.el (color-values, color-defined-p): Use `member', not
5529 `memq', because it works correctly for strings.
5530 (frame-set-background-mode): Actually, "unspecified-fg" and
5531 "unspecified-bg" *are* strings. Use `member', not `memq', and
5532 `equal', not `eq', when a string value is possible.
5533
b6ef4898
EZ
55342000-10-21 Eli Zaretskii <eliz@is.elta.co.il>
5535
5536 * info.el (Info-file-list-for-emacs): Add an entry for Speedbar.
5537
34939e2c
SM
55382000-10-21 Stefan Monnier <monnier@cs.yale.edu>
5539
5540 * progmodes/sh-script.el (sh-mode-map): Remove bindings for
5541 sh-electric-rparen, sh-electric-less and sh-electric-hash.
5542 (sh-st-punc, sh-here-doc-syntax): Use string-to-syntax.
5543 (sh-font-lock-heredoc, sh-font-lock-paren): New funs.
5544 (sh-font-lock-syntactic-keywords): Use them.
5545 (sh-heredoc-face, sh-st-face, sh-special-syntax): Remove.
5546 (sh-mkword-regexp, sh-electric-rparen-needed-here): Remove.
5547 (sh-mode): Don't override font-lock-unfontify-region-function.
5548 Use a copy of sh-font-lock-syntactic-keywords.
5549 (sh-set-shell): Don't set sh-electric-rparen-needed-here.
5550 Don't call sh-scan-buffer since font-lock does it on the fly.
5551 (sh-get-indent-info): Use `face' rather than `syntax-table'
5552 text-property to detect here-documents.
5553 Replace sh-special-syntax with sh-st-punc.
5554 (sh-prev-line): Use `face' rather than `syntax-table'
5555 text-property to skip over here-documents.
5556 (sh-font-lock-unfontify-region-function, sh-check-paren-in-case)
5557 (sh-set-char-syntax, sh-electric-rparen, sh-electric-hash)
5558 (sh-electric-less, sh-set-here-doc-region)
4836835a 5559 (sh-remove-our-text-properties, sh-search-word, sh-scan-case)
34939e2c
SM
5560 (sh-scan-buffer, sh-rescan-buffer): Remove.
5561
f3d3c491
AI
55622000-10-21 Andrew Innes <andrewi@gnu.org>
5563
5564 * w32-fns.el (make-auto-save-file-name): Don't apply conversion to
5565 remote (ange-ftp) file names.
5566
b86c791c
MB
55672000-10-21 Miles Bader <miles@gnu.org>
5568
d9c30bdf
MB
5569 * window.el (fit-window-to-buffer): New function.
5570 (shrink-window-if-larger-than-buffer): Use it.
1e221c16
MB
5571 (window-text-height): Don't expect minibuffers to have mode-lines.
5572
d9c30bdf 5573 * help.el (resize-temp-buffer-window): Use `fit-window-to-buffer'.
feb5013d
MB
5574 * international/quail.el (quail-update-guidance): Use
5575 `fit-window-to-buffer' instead of `set-window-text-height'.
d9c30bdf 5576
617fee5a
MB
5577 * international/quail.el (quail-show-guidance-buf): Make sure
5578 guidance window really has enough room.
5579 (quail-update-guidance): If quail-guidance-win is already shown,
5580 make sure its height is OK.
5581
b86c791c
MB
5582 * window.el (window-text-height, set-window-text-height):
5583 New functions.
5584 (shrink-window-if-larger-than-buffer): Use `window-text-height'
5585 instead of `window-height' & `mode-line-window-height-fudge'.
5586 (mode-line-window-height-fudge): Add FACE parameter.
5587 * help.el (resize-temp-buffer-window): Use `set-window-text-height'
5588 instead of `enlarge-window' & `mode-line-window-height-fudge'.
5589
e34850d1
MB
55902000-10-20 Miles Bader <miles@gnu.org>
5591
5592 * window.el (height-affecting-face-attributes): Use `defconst'.
5593
5594 * textmodes/ispell.el (ispell-mode-line-window-height-fudge):
5595 New function, conditionally aliased to `mode-line-window-height-fudge'.
5596 (ispell-help): Use it.
5597 (ispell-choices-win-default-height): Don't include mode-line fudge.
5598 (ispell-choices-win-default-height): New function.
5599 (ispell-show-choices, ispell-command-loop): Use function
5600 `ispell-choices-win-default-height' instead of variable.
5601
a8b883c2
MB
56022000-10-20 Miles Bader <miles@lsi.nec.co.jp>
5603
8c6e4a58
MB
5604 * window.el (mode-line-window-height-fudge): New variable.
5605 (height-affecting-face-attributes): New variable.
5606 (mode-line-window-height-fudge): New function.
5607 (shrink-window-if-larger-than-buffer): Use it.
5608 * help.el (resize-temp-buffer-window): Likewise.
5609
a8b883c2
MB
5610 * info.el (Info-fontify-node): Add support for @subsubsection
5611 titles, which use `Info-title-4-face'.
5612 (Info-title-4-face): New face.
5613 (Info-title-3-face): Inherit from Info-title-4-face instead of
5614 variable-pitch.
5615
e64c3a75
JR
56162000-10-19 Jason Rumney <jasonr@gnu.org>
5617
5618 * dired.el (dired-insert-directory): Do not let errors signalled by
5619 attempt to run dired-free-space-program prevent dired from working.
5620
c70fe852
SM
56212000-10-19 Stefan Monnier <monnier@cs.yale.edu>
5622
5623 * diff-mode.el (diff-find-file-name): Fix regex subgroup number.
5624
877cf6b4
GM
56252000-10-19 Gerd Moellmann <gerd@gnu.org>
5626
5de037e0
GM
5627 * dirtrack.el (dirtrack): Fix call to run-hooks.
5628
6deb9af9
GM
5629 * cmuscheme.el (cmuscheme-program-name): Renamed from
5630 scheme-program-name because xscheme.el contains a defcustom with
5631 the same name. As a consequence, customizing group `cmuscheme'
5632 loaded `xscheme' which redefined run-scheme.
5633 (run-scheme): Use cmuscheme-program-name.
5634
877cf6b4
GM
5635 * ps-print.el (ps-print-emacs-type): Move into the
5636 eval-and-compile.
5637
e597d8fb 5638 * play/doctor.el (doctor-death): Update the Samaritans'
c70fe852 5639 anonymous address, and add a website for Befrienders International.
4836835a 5640
3e9cb08f
GM
56412000-10-19 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5642
c70fe852
SM
5643 * ps-print.el: Even/odd pages fix. Fix little bug on XEmacs.
5644 Avoid compilation gripes. Doc fix.
3e9cb08f
GM
5645 (ps-print-version): New version number (6.2).
5646 (ps-x-color-instance-p, ps-x-color-instance-rgb-components)
5647 (ps-x-color-name, ps-x-color-specifier-p, ps-x-copy-coding-system)
5648 (ps-x-device-class, ps-x-extent-end-position, ps-x-extent-face)
5649 (ps-x-extent-priority, ps-x-extent-start-position)
5650 (ps-x-face-font-instance, ps-x-find-coding-system)
5651 (ps-x-font-instance-properties, ps-x-make-color-instance)
5652 (ps-x-map-extents): Alias for functions without the prefix `ps-x-', to
5653 avoid compilation gripes without defining functions.
5654 (ps-e-find-composition): Alias for function find-composition, to have a
5655 suitable function depending on Emacs version.
5656 (ps-color-device, ps-color-values, ps-face-foreground-name)
5657 (ps-face-background-name, ps-face-bold-p, ps-face-italic-p, ps-mapper)
5658 (ps-extent-sorter, ps-xemacs-face-kind-p, ps-xemacs-color-name)
5659 (ps-print-ensure-fontified): Function definitions surrounded by
5660 `eval-and-compile' to avoid compilation gripes.
5661 (ps-font-lock-face-attributes): `font-lock-face-attributes' evaluated
5662 by symbol-value to avoid compilation gripes.
5663 (ps-end-file, ps-header-sheet, ps-plot-region): Even/odd pages fix.
5664 (ps-generate-postscript-with-faces): Fix little bug on XEmacs.
5665
d8abcd91
MB
56662000-10-19 Miles Bader <miles@lsi.nec.co.jp>
5667
13ab33c4
MB
5668 * startup.el (normal-top-level): Call `frame-set-background-mode'
5669 after `frame-notice-user-settings' because the latter doesn't call
5670 the former on a tty.
5671
d8abcd91
MB
5672 * faces.el (frame-set-background-mode): `unspecified' &c are
5673 symbols, not strings.
5674
e8bce0a9
EZ
56752000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
5676
c70fe852
SM
5677 * term/tty-colors.el (color-name-rgb-alist): Add a comment explaining
5678 why some "light*" colors are deliberately absent from the alist.
e8bce0a9 5679
c70fe852
SM
5680 * info.el (Info-title-1-face, Info-title-2-face, Info-title-3-face):
5681 Change colors for tty's, as suggested by Miles Bader.
e8bce0a9 5682
773272d8
KH
56832000-10-19 Kenichi Handa <handa@etl.go.jp>
5684
c70fe852 5685 * international/fontset.el: Use registry "MuleTibetan-2" for Tibetan.
773272d8
KH
5686 (ccl-encode-mule-unicode-0100-24ff): New CCL program. Register it
5687 for ISO10646-1 fonts.
5688 (x-font-name-charset-alist): Add an entry for "iso10646-1".
5689
772139c0
EZ
56902000-10-19 Eli Zaretskii <eliz@is.elta.co.il>
5691
5692 * faces.el (frame-set-background-mode): If a tty frame defines a
5693 background color, use that to compute the background mode, instead
5694 of always defaulting to "dark".
5695
d134a19f
MB
56962000-10-19 Miles Bader <miles@lsi.nec.co.jp>
5697
8bb84cb2
MB
5698 * comint.el (comint-write-output): New function.
5699 (comint-mode-map): Add it to the menu.
e40a778f 5700 Bind `C-c C-s' to comint-write-output.
d134a19f 5701
dada41e1
GM
57022000-10-18 Gerd Moellmann <gerd@gnu.org>
5703
5704 * startup.el (fancy-splash-screens): Set buffer-undo-list to t.
5705 Use fancy-splash-delay.
5706
9b5360aa
GM
57072000-10-18 Alex Schroeder <alex@gnu.org>
5708
5709 * progmodes/sql.el (sql-sybase-options): New option.
5710 (sql-sybase): Use it. Add sql-database to the list of parameters
5711 provided for login. The options -w 2048 -n are not used any more.
5712
9035a35a
GM
5713 * comint.el (comint-read-input-ring): Bugfix such that the first
5714 and the last entry of the input ring file are not lost.
5715
3556c6dd
GM
57162000-10-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5717
5718 * ps-print.el: Internal variable changes to defcustom,
5719 make-local-hook changes to defvar. Doc fix.
5720 (ps-print-version): New version number (6.1).
5721 (ps-setup, ps-do-despool): Code fix.
5722 (ps-printer-name): Customization fix.
5723 (ps-printer-name-option): Now is a defcustom instead of an
5724 internal variable.
5725 (ps-print-hook, ps-print-begin-sheet-hook, ps-print-begin-page-hook)
5726 (ps-print-begin-column-hook): Now are defvar instead of
5727 make-local-hook.
4836835a 5728
4e217e50
MB
57292000-10-18 Miles Bader <miles@gnu.org>
5730
5731 * comint.el (comint-delete-output): Renamed from `comint-kill-output'.
5732 (comint-kill-output): Changed into an alias for `comint-delete-output',
5733 and made obsolete.
5734 (comint-mode-map): Rename references to comint-kill-output.
5735
34460354
EZ
57362000-10-18 Eli Zaretskii <eliz@is.elta.co.il>
5737
5738 * diff-mode.el (diff-header-face, diff-file-header-face)
5739 (diff-changed-face): Add bold and italic attributes to tty faces.
5740 (diff-function-face): New face.
5741 (diff-font-lock-keywords): Use it.
5742
17ea3cdb
MB
57432000-10-18 Miles Bader <miles@lsi.nec.co.jp>
5744
5745 * comint.el (comint-output-filter): Fixup comint-last-input-end too.
5746 Remove commented-out call to force-mode-line-update.
5747 (comint-kill-output): Use `forward-line 0' instead of
5748 beginning-of-line to make sure we get past the prompt.
5749
9244f2c7
SM
57502000-10-17 Stefan Monnier <monnier@cs.yale.edu>
5751
5752 * diff-mode.el (diff-header-face, diff-file-header-face):
5753 Add specific setting for dark background.
5754 (diff-context-face): Renamed from diff-comment-face.
5755 Set explicitly rather than inheriting from font-lock-comment-face.
5756
1592c1ef
EZ
57572000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
5758
5759 * startup.el (command-line): Move the code which sets the default
5760 TTY colors to before before-init-hook.
5761
f86292a9
GM
57622000-10-17 Gerd Moellmann <gerd@gnu.org>
5763
5764 * jit-lock.el (jit-lock-stealth-time): Doc fix.
5765
f7f2e883
EZ
57662000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
5767
e854cc22
EZ
5768 * files.el (auto-mode-alist): Add .dif and .pat as diff-mode
5769 extensions, for MS-DOS.
5770
f7f2e883
EZ
5771 * diff-mode.el (diff-header-face, diff-file-header-face)
5772 (diff-changed-face): Define tty-specific colors.
5773
c7b4f0f9
GM
57742000-10-17 Gerd Moellmann <gerd@gnu.org>
5775
5776 * startup.el (fancy-splash-text): Realign the text.
5777
12a72271
EZ
57782000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
5779
5780 * font-lock.el (font-lock-comment-face): Define a separate default
5781 for dark-background tty's.
5782
61dfccfd
MB
57832000-10-17 Miles Bader <miles@gnu.org>
5784
5785 * help.el (resize-temp-buffer-window): Add hack to avoid last line
5786 being obscured by whizzy mode-lines on graphics displays.
5787
333cd59e
EZ
57882000-10-17 Eli Zaretskii <eliz@is.elta.co.il>
5789
5790 * info.el (Info-title-1-face, Info-title-2-face)
5791 (Info-title-3-face): Define colors for tty's.
dada41e1 5792 (info-header-node): Remove unneeded tty-specific definition.
333cd59e 5793
dbf1fcc1
EZ
57942000-10-16 Eli Zaretskii <eliz@is.elta.co.il>
5795
5796 * term/pc-win.el (msdos-handle-reverse-video): Don't remove
5797 reverse from the frame parameters, and don't invert foreground and
5798 background colors.
5799
ac629823
MB
58002000-10-16 Miles Bader <miles@gnu.org>
5801
5802 * info.el (Info-set-mode-line): Use `%b' instead of hardwired
5803 string "*Info*". Call propertized-buffer-identification to spruce
5804 up the result.
5805
76eebffc
GM
58062000-10-16 Gerd Moellmann <gerd@gnu.org>
5807
3a6b59d9
GM
5808 * help.el: Provide `help' for the sake of define-minor-mode
5809 which generates defcustoms with requires.
5810
6569c3d3
GM
5811 * jit-lock.el (jit-lock-after-change): If we're in text that
5812 matches a multi-line font-lock pattern, make sure the whole text
5813 will be redisplayed.
5814
c2e0a611
GM
5815 * emacs-lisp/authors.el (authors-add): Don't add an entry if
5816 author's name is unknown.
5817
76eebffc
GM
5818 * eshell/esh-var.el, eshell/esh-util.el, eshell/esh-test.el,
5819 * eshell/esh-proc.el, eshell/esh-opt.el, eshell/esh-mode.el,
5820 * eshell/esh-maint.el, eshell/esh-io.el, eshell/esh-ext.el,
5821 * eshell/esh-cmd.el, eshell/esh-arg.el, eshell/em-xtra.el,
5822 * eshell/em-unix.el, eshell/em-term.el, eshell/em-smart.el,
5823 * eshell/em-script.el, eshell/em-rebind.el, eshell/em-prompt.el,
5824 * eshell/em-pred.el, eshell/em-ls.el, eshell/em-hist.el,
5825 * eshell/em-glob.el, shell/em-dirs.el, eshell/em-cmpl.el,
5826 * eshell/em-basic.el, eshell/em-banner.el, eshell/em-alias.el:
5827 Add author information.
5828
cf1e7b12
MB
58292000-10-16 Miles Bader <miles@lsi.nec.co.jp>
5830
5831 * toolbar/up_arrow.xpm, toolbar/right_arrow.xpm:
5832 * toolbar/left_arrow.xpm, toolbar/home.xpm: Re-convert from
5833 full-color version (using the Gimp) to eliminate dithering artifacts.
5834
5586f3eb
SM
58352000-10-15 Stefan Monnier <monnier@cs.yale.edu>
5836
5837 * font-lock.el (font-lock-syntactic-keywords): Fix docstring.
5838
5839 * simple.el (syntax-flag-table, string-to-syntax): Remove.
5840
ad64a888
DL
58412000-10-15 Dave Love <fx@gnu.org>
5842
5843 * progmodes/sh-script.el: Require skeleton and comint when
5844 compiling.
5845
5846 * pcomplete.el (pcomplete) <defgroup>: Add :version.
5847
5848 * whitespace.el: Doc fixes.
5849 (top-level): Don't add hooks here.
5850 (whitespace-running-emacs): Deleted.
5851 (timer): Don't require.
5852 (whitespace): Add back :version conditional on xemacs test.
5853 (whitespace-spacetab-regexp, whitespace-indent-regexp)
5854 (whitespace-ateol-regexp, whitespace-modes): Fix custom type.
5855 (whitespace-force-mode-line-update, whitespace-refresh-rescan-list)
5856 (whitespace-tickle-timer, whitespace-rescan-files-in-buffers):
5857 Avoid specific xemacs test.
5858 (whitespace-global-mode): New option.
5859 (whitespace-global-mode): New command.
5860 (whitespace-unload-hook): New function.
5861
5862 * info.el (Info-mouse-follow-nearest-node): Use mouse-set-point.
4836835a 5863 (Info-fontify-node, Info-goto-node, Info-mode-menu)
ad64a888
DL
5864 (Info-fontify-node): `Goto' goes to `Go to'.
5865 (Info-fontify-node): Add help-echo to xref links.
5866
1ef49fc6
EZ
58672000-10-15 Eli Zaretskii <eliz@is.elta.co.il>
5868
5869 * eshell/em-unix.el (eshell-du-prefer-over-ange): Doc fix.
5870
8b7707e1
SM
58712000-10-15 Stefan Monnier <monnier@cs.yale.edu>
5872
b3b7f42f
SM
5873 * emacs-lisp/easy-mmode.el (easy-mmode-define-syntax):
5874 Use plist-get and allow :inherit.
5875
5876 * emacs-lisp/cl-macs.el (cl-do-arglist):
5877 Use plist-get and plist-member instead of memq.
5878
3c7fafc7
SM
5879 * emacs-lisp/ewoc.el (ewoc-location): New function.
5880 (ewoc-enter-after, ewoc-enter-before): Document return value.
5881 * pcvs.el (cvs-make-cvs-buffer, cvs-run-process):
5882 Don't need make-local-hook any more.
5883 (cvs-addto-collection): Return the new tin.
5884 (cvs-mode-insert): Jump to the new line.
5885
8b7707e1
SM
5886 * jit-lock.el (jit-lock-fontify-buffer): Remove.
5887
5888 * arc-mode.el (archive-zoo-summarize): Fix from gnu.emacs.bug.
5889
5890 * font-lock.el (font-lock-syntactically-fontified): New var.
5891 (font-lock-fontify-syntactic-keywords-region): Use it.
5892 (font-lock-mode): Fix docstring. Don't need make-local-hook anymore.
5893
5894 * diff-mode.el (diff-find-file-name): Fix regexp.
5895
5896 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
5897 (cl-builtin-clrhash, cl-builtin-maphash): Add for byte-compatibility.
5898
5899 * progmodes/sh-script.el (sh-imenu-generic-expression): Fix.
5900 (sh-mode-syntax-table): Add punctuation syntax for < and >.
5901 (sh-mode): Don't make all vars local here.
5902 (sh-kw): Reformat.
5903 (sh-set-shell): Use dolist. Don't set indent-region-function.
5904 (sh-mode-syntax-table): Use pop.
5905 (sh-remember-variable): Use push.
5906 (sh-help-string-for-variable): Use memq.
5907 (sh-safe-backward-sexp): Remove.
5908 (sh-safe-forward-sexp): Add ARG.
5909 (sh-get-indent-info, sh-prev-stmt): Use it.
5910 (sh-prev-line): Simplify by using forward-comment.
5911 (sh-this-is-a-continuation): Simplify.
5912 (sh-learn-buffer-indent): Use dolist.
5913 (sh-do-nothing): Remove.
5914 (sh-set-char-syntax, sh-set-here-doc-region):
5915 Use inhibit-modification-hooks.
5916 (sh-name-style): Use mapcar and push.
5917 (sh-load-style): Use dolist.
5918 (sh-save-styles-to-buffer): Use with-current-buffer and pp.
5919 (sh-case, sh-while-getopts): Use propertize directly rather
5920 than sh-electric-rparen.
5921
59222000-10-14 Stefan Monnier <monnier@cs.yale.edu>
5923
5924 * textmodes/tex-mode.el: Require CL when compiling.
5925 (tex-mode-syntax-table): Init immediately.
5926 (tex-mode-map): Bind M-RET to latex-insert-item.
5927 (latex-mode): Set indent-line-function to latex-indent.
5928 (tex-common-initialization): Don't setup the syntax-table any more.
5929 (latex-insert-item): New skeleton.
5930 (tex-next-unmatched-end): Fix copy/paste braino.
4836835a 5931 (latex-syntax-after, latex-skip-close-parens, latex-down-list)
8b7707e1 5932 (latex-indent, latex-find-indent): New functions.
4836835a 5933 (tex-indent-allhanging, tex-indent-arg, tex-latex-indent-syntax-table)
8b7707e1
SM
5934 (tex-indent-item, tex-indent-item-re, tex-indent-basic): New vars.
5935 (tex-compilation-parse-errors): Use with-syntax-table.
5936
86b7fcbb
MB
59372000-10-15 Miles Bader <miles@gnu.org>
5938
5939 * font-lock.el (font-lock-comment-face): Change dark-background,
5940 color, non-tty, default to `chocolate1'.
5941
57a24508
JW
59422000-10-13 John Wiegley <johnw@gnu.org>
5943
5944 * eshell/esh-util.el (require): Added a missing `require' form,
5945 needed when compiling (for an ange-ftp macro definition).
5946
40ad3db4
DL
59472000-10-13 Dave Love <fx@gnu.org>
5948
5949 * toolbar/paste.pbm, toolbar/saveas.pbm: Retouch.
5950
db460189
GM
59512000-10-13 Gerd Moellmann <gerd@gnu.org>
5952
b41c9501
GM
5953 * emacs-lisp/lisp.el (down-list, backward-up-list, up-list): Doc
5954 fix.
5955
4836835a 5956 * toolbar/*.xpm: Reduce to max. 8 colors (mogrify -colorspace
db460189
GM
5957 transparent -colors 8).
5958
3b5e21df
GM
59592000-10-13 Stephen Gildea <gildea@alum.mit.edu>
5960
5961 * time-stamp.el (time-stamp): Fixed bug in new multi-line code
5962 that breaks with old list format timestamps.
5963 (time-stamp-warn-inactive, time-stamp-old-format-warn)
5964 (time-stamp-count, time-stamp-conversion-warn): Improved doc
5965 strings.
5966
16908a3f
JW
59672000-10-13 John Wiegley <johnw@gnu.org>
5968
d7103dda
JW
5969 * align.el, pcomplete.el, calendar/timeclock.el,
5970 eshell/esh-module.el, eshell/eshell.el: Removed URL reference.
5971
dace60cf 5972 * calendar/timeclock.el (timeclock-find-discrep): A fix to some
16908a3f
JW
5973 faulty math, where holiday hours were being computing as seconds.
5974
b6b70cda
JW
59752000-10-13 John Wiegley <johnw@gnu.org>
5976
5977 * desktop.el (desktop-buffer-modes-to-save): Added a global for
5978 specifying what "other" kinds of buffers should be saved. This
5979 used to be hard-coded.
5980 (desktop-buffer-misc-functions): A global for specifying how
5981 auxiliary data should be determined for special buffer types.
5982 (desktop-save-buffer-p): Use `desktop-buffer-modes-to-save',
5983 instead of hard-coding the special buffer types.
5984 (desktop-save): Run `desktop-buffer-misc-functions' to gather
5985 auxiliary data, instead of hard-coding for Info buffers and dired.
5986 (desktop-buffer-info-misc-data): Aux function for determining Info
5987 buffer auxiliary info.
5988 (desktop-buffer-dired-misc-data): Likewise, but for dired buffers.
5989 (desktop-buffer-info): Changed this function to use the info
5990 gathered above.
5991 (desktop-create-buffer): Be a little more careful about what
5992 `minor-mode' means before calling it. This is important for some
5993 buffer types.
5994
8c6b1d83
JW
59952000-10-13 John Wiegley <johnw@gnu.org>
5996
5997 * eshell/esh-util.el: Added a global form which declares an
5998 autoload for `parse-time-string', if that function is not already
5999 defined, and if parse-time.el is available on the user's system.
6000
6001 * eshell/em-ls.el (eshell-ls-applicable): Extended this function
6002 to be aware of ange-ftp user info.
6003 (eshell-do-ls): Bind `ange-cache'. Also, use
6004 `eshell-file-attributes'.
6005 (eshell-ls-annotate): Use `eshell-file-attributes'.
6006 (eshell-ls-file): Made the user-id printing code a bit smarter.
6007
6008 * eshell/esh-util.el (eshell-ange-ls-uids): Added variable, to
6009 allow identification of alias user ids in remote directories.
6010 It's manual, but there's no other way to know when the current
6011 user on the local machine, is also the owning user on the remote
6012 machine.
6013 (fboundp): Bind `ange-cache'.
6014 (eshell-directory-files-and-attributes): Re-organized the logic a
6015 bit to use `eshell-file-attributes' instead of `file-attributes'.
6016 The former is more sensitive to directories that are read via FTP,
6017 and knows how to use ange-ftp to determine full attribute
6018 information, instead of just the name and last modtime.
6019 (eshell-current-ange-uids): Return the current user id when in a
6020 remote directory.
6021 (eshell-parse-ange-ls): Parse a full directory listing that has
6022 been returned by ange-ftp.
6023 (eshell-file-attributes): This beefed up version of
6024 `file-attributes' is only special if the user is currently in a
6025 remote directory, in which case it does a lot of work to find out
6026 what the real attributes of a file are, as they appear on the
6027 remote machine. This makes usage of remote directories (i.e.,
6028 ange-ftp pathnames) much more useful. You can now use Eshell as a
6029 full-fledged FTP client, with much more manipulation ability than
6030 most other clients.
6031
6032 * eshell/em-unix.el (eshell-du-prefer-over-ange): Added a new
6033 variable, which means that Eshell's du should always be preferred
6034 in remote directories.
6035 (eshell-shuffle-files): Use `eshell-file-attributes', rather than
6036 just `file-attributes'.
6037 (eshell-mvcp-template): Bind `ange-cache', to improve performance
6038 when reading remote directories. This is an Eshell-specific
6039 variable (not part of ange-ftp).
6040 (eshell/ln): Bind `ange-cache'.
6041 (eshell/du): Added some extra logic for determining when to use
6042 Eshell's du (which is slow), and when to use the external version
6043 (which may or may not exist).
6044
6045 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof): Call
6046 `eshell-interactive-process', rather than using
6047 `get-buffer-process', since backgrounded processes don't count in
6048 the context of this function's logic.
6049
6050 * eshell/esh-arg.el (eshell-parse-double-quote): Moved a call to
6051 `forward-char', so that null strings are parsed correctly.
6052
87730e84 60532000-09-13 John Wiegley <johnw@gnu.org>
8c6b1d83
JW
6054
6055 * eshell/em-pred.el (eshell-pred-file-type,
6056 eshell-pred-file-links, eshell-pred-file-size): Use
6057 `eshell-file-attributes'. This is more correct over ange-ftp.
6058
6059 * eshell/em-glob.el (eshell-extended-glob): Bind `ange-cache', so
6060 that remote file globbing is more efficient.
6061
6062 * eshell/em-ls.el (eshell-ls-dir): Use `expand-file-name' when
6063 gathering the files and attributes within a directory.
6064
6065 * eshell/em-unix.el (eshell/cat): If any of the files passed on
6066 the command line is a special file (not a regular file, directory
6067 or symlink), always attempt to call the external version of cat.
6068
87730e84 60692000-09-13 John Wiegley <johnw@gnu.org>
8c6b1d83
JW
6070
6071 * eshell/esh-mode.el (eshell-find-tag): Corrections to the
6072 Eshell-friendly version of find-tag.
6073
1c7e37a9
MB
60742000-10-13 Miles Bader <miles@lsi.nec.co.jp>
6075
4836835a 6076 * image-file.el (image-file-name-extensions)
1c7e37a9
MB
6077 (image-file-name-regexps): Add autoload cookies.
6078
11a7f341
KH
60792000-10-13 Kenichi Handa <handa@etl.go.jp>
6080
6081 * international/mule-cmds.el (select-safe-coding-system): If FROM
6082 is string, show it in *Warning* buffer.
6083
8ddddcb0
EZ
60842000-10-13 Eli Zaretskii <eliz@is.elta.co.il>
6085
6086 * startup.el (normal-top-level): Use display-popup-menus-p instead
6087 of window-system.
6088 (command-line): Use display-graphic-p instead of window-system.
6089 (command-line-1): Use display-popup-menus-p and display-mouse-p
6090 instead of window-system.
6091
72200f89
SS
60922000-10-12 Sam Steingold <sds@gnu.org>
6093
6094 * tooltip.el (tooltip-use-echo-area): New user variable.
6095 (tooltip-show): Use it to choose between `x-show-tip' and `message'.
6096
8661c643
DL
60972000-10-12 Dave Love <fx@gnu.org>
6098
d0b40dc1
DL
6099 * recentf.el: Maintainer's checkdoc fixes.
6100
a622451f
DL
6101 * startup.el (normal-top-level-add-subdirs-to-load-path): Use
6102 character class, not ASCII when matching file names.
6103 (fancy-splash-head): Add trailing slash to URL.
6104 (command-line): Don't require XPM support for toolbar.
6105
8661c643
DL
6106 * progmodes/cperl-mode.el (cperl-tips-faces): Doc fix.
6107 (cperl-invalid-face): Revert last change.
6108 (cperl-init-faces): Quote cperl-invalid-face.
6109
ef2ed8ab
KH
61102000-10-12 Kenichi Handa <handa@etl.go.jp>
6111
6112 * startup.el (fancy-splash-text): Remove superfluous quote.
6113
b0da379e
GM
61142000-10-12 Gerd Moellmann <gerd@gnu.org>
6115
dbeb499b
GM
6116 * startup.el (fancy-splash-screens): Don't add a pre-command hook.
6117 (fancy-splash-pre-command, fancy-splash-pending-command): Removed.
6118 (command-line-1): Don't use fancy-splash-pending-command.
6119 (fancy-splash-screens-1): Goto point-min after inserting text.
6120
d861718a
GM
6121 * calendar/diary-lib.el (diary-cyclic): Doc fix from Ed Reingold.
6122
b0da379e
GM
6123 * progmodes/scheme.el (scheme-mode-map): Use lisp-mode-shared-map
6124 instead of shared-lisp-mode-map.
6125
4fb2ad98
MB
61262000-10-12 Miles Bader <miles@lsi.nec.co.jp>
6127
1cb4393e
MB
6128 * faces.el (header-line): Change tty-variant to use underlining.
6129
4fb2ad98
MB
6130 * isearch.el (isearch-set-lazy-highlight-faces-at): New function.
6131 (isearch-highlight): Restore lazy-isearch face properties at old
6132 position, and suppress them at new position.
6133 (isearch-dehighlight): Restore lazy-isearch face properties.
6134 (isearch-lazy-highlight-update): Add lazy-isearch overlays even
6135 over the real isearch overlay, but in that case, don't give it a
6136 face property. Use `push'.
6137
eb991b25
KH
61382000-10-12 Kenichi Handa <handa@etl.go.jp>
6139
6140 * man.el (Man-getpage-in-background): Fix previous change.
6141 Decode the process output only when we are in multibyte mode.
6142
a818c1c0
DL
61432000-10-11 Dave Love <fx@gnu.org>
6144
c990f53a
DL
6145 * info.el (Info-mode-menu): Fix some help.
6146 (info-tool-bar-map): Add entry for Info-last.
6147
a818c1c0
DL
6148 * toolbar/cancel.xpm, toolbar/jump_to.xpm, toolbar/right_arrow.xpm:
6149 * toolbar/close.xpm, toolbar/left_arrow.xpm, toolbar/save.xpm:
6150 * toolbar/copy.xpm, toolbar/mail.xpm, toolbar/saveas.xpm:
6151 * toolbar/cut.xpm, toolbar/mail_compose.xpm:
6152 * toolbar/search-replace.xpm, toolbar/exit.xpm:
6153 * toolbar/mail_send.xpm, toolbar/search.xpm, toolbar/fld_open.xpm:
6154 * toolbar/new.xpm, toolbar/spell.xpm, toolbar/help.xpm:
6155 * toolbar/open.xpm, toolbar/undo.xpm, toolbar/home.xpm:
6156 * toolbar/paste.xpm, toolbar/up_arrow.xpm, toolbar/index.xpm:
6157 * toolbar/preferences.xpm, toolbar/info.xpm, toolbar/print.xpm:
6158 Reduce colour requirements to 25 overall. (Probably wants
6159 revisiting from the originals to reduce further.)
6160
c1b096cb
EZ
61612000-10-11 Eli Zaretskii <eliz@is.elta.co.il>
6162
6163 * hexl.el (hexlify-buffer): Bind coding-system-for-write to
6164 buffer-file-coding-system, instead of raw-text.
6165 (dehexlify-buffer): Bind coding-system-for-read to
6166 buffer-file-coding-system, instead of raw-text.
6167
5c8b7eaf
SS
61682000-10-11 Sam Steingold <sds@gnu.org>
6169
6170 * progmodes/cperl-mode.el (cperl-invalid-face): double-quote
6171 `underline' - fixes the bug introduced on 2000-09-21.
6172
2cfbdb7a
DL
61732000-10-11 Dave Love <fx@gnu.org>
6174
6175 * progmodes/scheme.el (scheme-mode-variables, dsssl-mode): Avoid
6176 compiler warnings.
6177 (scheme-mode): Doc fix.
6178 (scheme-font-lock-keywords-1): Match `define-syntax'.
6179
61802000-10-11 Miles Bader <miles@lsi.nec.co.jp>
4b33f290
MB
6181
6182 * faces.el (frame-set-background-mode): Pay attention to saved
f161d539
MB
6183 face specs as well as default ones. Only do anything if the
6184 bg-mode or display-type has actually changed. Use `dolist'.
0c846ea2 6185 (region): Make dark-background `region' face less in-your-face.
4b33f290 6186
690ec649
SS
61872000-10-10 Sam Steingold <sds@gnu.org>
6188
6189 * chistory.el, ielm.el, ledit.el:
6190 * progmodes/inf-lisp.el, progmodes/scheme.el:
6191 Use `lisp-mode-shared-map' instead of `shared-lisp-mode-map'.
6192
3b95d6bb
SM
61932000-10-10 Stefan Monnier <monnier@cs.yale.edu>
6194
6195 * textmodes/texinfo.el: Update copyright and fix typo.
6196
6197 * desktop.el (desktop-modes-not-to-save): New var.
6198 (desktop-save-buffer-p): Use it.
a30eb617
DL
6199 Also, obey desktop-buffers-not-to-save even for non-file buffers.
6200 (desktop-buffer-file): Use pop-to-buffer if switch-to-buffer fails.
6201
62022000-10-10 Dave Love <fx@gnu.org>
6203
6204 * toolbar/tool-bar.el (tool-bar-add-item)
6205 (tool-bar-add-item-from-menu): Don't favour XPM icons on mono
6206 display.
6207
6208 * toolbar/attach.pbm, toolbar/cancel.pbm, toolbar/close.pbm:
6209 * toolbar/copy.pbm, toolbar/cut.pbm, toolbar/exit.pbm:
6210 * toolbar/fld_open.pbm, toolbar/help.pbm, toolbar/home.pbm:
6211 * toolbar/index.pbm, toolbar/info.pbm, toolbar/jump_to.pbm:
6212 * toolbar/left_arrow.pbm, toolbar/mail.pbm, toolbar/mail_compose.pbm:
6213 * toolbar/mail_send.pbm, toolbar/new.pbm, toolbar/open.pbm:
6214 * toolbar/paste.pbm, toolbar/preferences.pbm, toolbar/print.pbm:
6215 * toolbar/right_arrow.pbm, toolbar/save.pbm, toolbar/saveas.pbm:
6216 * toolbar/search-replace.pbm, toolbar/search.pbm, toolbar/spell.pbm:
6217 * toolbar/undo.pbm, toolbar/up_arrow.pbm: New files straight from
6218 the .xpms; probably need retouching.
6219
62202000-10-10 Miles Bader <miles@lsi.nec.co.jp>
6221
6222 * subr.el (add-to-list): Add optional argument APPEND.
6223 * battery.el (display-battery): Use `add-to-list'.
6224
62252000-10-09 Thien-Thi Nguyen <ttn@gnu.org>
6226
6227 * play/zone.el (zone-timer, zone-wc-tbl): Rework
6228 these vars as symbol properties.
6229 (zone, zone-when-idle, zone-leave-me-alone)
6230 (zone-pgm-whack-chars): Use new symbol properties.
6231
6232 * battery.el (display-battery): Doc spelling fix.
6233
6234 * vc.el (with-vc-file, edit-vc-file): Specify `indent-function'
6235 property.
6236
62372000-10-09 Dave Love <fx@gnu.org>
6238
6239 * toolbar/tool-bar.el (tool-bar-mode): Check whether tool-bar-map
6240 has been initialized before calling tool-bar-setup.
6241 (tool-bar-add-item-from-menu): Add autoload cookie.
6242
62432000-10-09 Eli Zaretskii <eliz@is.elta.co.il>
6244
6245 * menu-bar.el (send-mail-item-name): New function.
6246 (menu-bar-tools-menu) <compose-mail>: Use it to display the value
6247 of mail-user-agent in the menu. Don't display the "Send Mail"
6248 item if mail-user-agent is nil or its value is ignore.
6249 (menu-bar-tools-menu) <rmail>: Don't display the "Read Mail" item
6250 if read-mail-command is nil or its value is ignore.
6251
6252 * mouse.el ([header-line mouse-1]): Bind to mouse-select-window.
6253
62542000-10-09 Miles Bader <miles@gnu.org>
6255
6256 * toolbar/up_arrow.xpm: Flip to put highlight in correct place.
6257 Correct image size.
6258 * toolbar/left_arrow.xpm: Correct image size.
6259
6260 * jka-compr.el: Don't call `jka-compr-install' when loading (it
6261 will be done by the definition of `auto-compression-mode' if
6262 necessary. Move code to uninstall existing file-name handler
6263 before definition of `auto-compression-mode'.
6264
6265 * image-file.el (auto-image-file-mode): Move to the end of the
6266 file, because `define-minor-mode' actually calls the mode-function
6267 if the associated variable is non-nil, which requires that all
6268 needed functions be already defined.
6269
6270 * mouse.el (popup-menu): Balance parens.
6271
62722000-10-08 Stefan Monnier <monnier@cs.yale.edu>
6273
6274 * mouse.el (popup-menu): Move the command call outside the loop
6275 so that popup-menu returns whatever the command returns.
6276
6277 * progmodes/etags.el: Docstring fixes. Maintainer line updated.
6278 (initialize-new-tags-table): Use run-hook-with-args-until-success.
6279 (find-tag): Use pop-to-buffer if switch-to-buffer failed.
6280 (tags-table-format-functions): Renamed from tags-table-format-hooks.
6281
6282 * vc.el (vc-version-diff): diff-switches can be a list.
6283 Use relative filenames for prettier output.
6284
6285 * pcvs.el (cvs-append-to-ignore, cvs-vc-command-advice)
6286 (vc-post-command-functions): Remove old-VC compatibility code.
6287
6288 * newcomment.el (comment-indent-default): Autoload.
6289
6290 * font-lock.el (font-lock-defaults): Make buffer-local.
6291 (font-lock-turn-on-thing-lock): Use jit-lock-refontify.
6292 (font-lock-choose-keywords):
6293 Ignore LEVEL unless KEYWORDS is a list of syms.
6294 (c-keywords, c++-keywords, objc-keywords, java-keywords):
6295 Don't wrap regexp-opt things in \(...\) unnecessarily.
6296
6297 * jit-lock.el: Don't require font-lock any more.
6298 (jit-lock-functions): Make buffer-local.
6299 (jit-lock-saved-fontify-buffer-function): Remove.
6300 (jit-lock-mode): Remove autoload cookie.
6301 Remove font-lock specific code.
6302 (jit-lock-unregister): Don't bother handling complex hooks any more.
6303 (jit-lock-refontify): New function.
6304 (jit-lock-fontify-buffer): Use it.
6305 (jit-lock-function-1): Replaced by jit-lock-fontify-now.
6306 (jit-lock-fontify-now): Renamed from jit-lock-function-1.
6307 Add optional args START and END.
6308 Never call font-lock-fontify-region directly.
6309 (jit-lock-function, jit-lock-stealth-fontify): Use it.
6310
6311 * emacs-lisp/regexp-opt.el (regexp-opt): Add \<...\> if PAREN=`words'.
6312
63132000-10-08 Dave Love <fx@gnu.org>
6314
6315 * progmodes/ada-mode.el (ada-mode-menu): Add name to menu map.
6316
6317 * progmodes/icon.el (icon-mode-map): Add name to menu-bar keymap.
6318
6319 * play/studly.el (studlify-region, studlify-word): Add autoload
6320 cookie.
6321
6322 * play/morse.el (morse-region, unmorse-region): Add autoload
6323 cookie.
6324
6325 * play/spook.el (spook-phrases-file): Use expand-file-name, not
6326 concat.
6327
6328 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression): Don't
6329 insist on symbols starting with word syntax.
6330 (lisp-mode-shared-map): Renamed from shared-lisp-mode-map.
6331 (eval-defun-1): Doc fix.
6332 (indent-sexp): Use nconc to build up indent-stack.
6333
6334 * mail/sendmail.el: Byte-compile-dynamic since it gets loaded by
6335 Gnus with little use.
6336 (mail-setup-hook): Add mail-abbrevs-setup to options.
6337
6338 * recentf.el: Doc fixes.
6339
6340 * vcursor.el (vcursor-cs-binding): Remove compatibility code.
6341 Clean up remainder.
6342
6343 * timezone.el (timezone-parse-date): Doc fix. Fix regexps for (5)
6344 without timezone and (8) with timezone to enforce some whitespace.
6345 Simplify code somewhat.
6346
6347 * options.el (list-options): Doc that you should use customize.
6348
6349 * iswitchb.el (iswitchb-mode): Add :require.
6350
6351 * info.el (Info-goto-node, Info-menu): Doc fix.
6352 (Info-mode-menu): Bind beginning-of-buffer, Info-edit
6353 (info-tool-bar-map): New variable.
6354 (Info-mode): Use it.
6355 (Info-edit-map): Define all in defvar.
6356 (speedbar-attached-frame): Avoid compiler warning.
6357
6358 * toolbar/tool-bar.el (tool-bar-map): Define it empty.
6359 (global-map): Bind [tool-bar] to a filtered map.
6360 (tool-bar-add-item): Remove MAP arg. Allow PBM icons.
6361 (tool-bar-add-item-from-menu): Use tool-bar-map, not tb-map.
6362 Allow PBM icons.
6363 (tool-bar-setup): Adjust calls of tool-bar-add-item.
6364
6365 * toolbar/index.xpm, toolbar/jump_to.xpm, toolbar/attach.xpm:
6366 * toolbar/up_arrow.xpm, toolbar/left_arrow.xpm, toolbar/home.xpm:
6367 * toolbar/right_arrow.xpm: New files. Renamed from tigert's
6368 icons, except up_arrow, which is left-arrow rotated.
6369
6370 * imenu.el (imenu-add-to-menubar): Fix last change.
6371
63722000-10-08 Peter Breton <pbreton@ne.mediaone.net>
6373
6374 * generic-x.el (rul-generic-mode): Remove eval-when-compile
6375 statements. Suggested by Stefan Monnier <monnier@cs.yale.edu>.
6376
63772000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
6378
6379 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Fix
6380 typos in doc strings.
6381
6382 * font-lock.el (font-lock-mode, global-font-lock-mode): Mention in
6383 the doc strings how to customize Font Lock faces.
6384
6385 * mouse.el (mouse-drag-mode-line-1): Fix an off-by-one error in
6386 computing growth when dragging the header line.
6387
63882000-10-08 Eli Zaretskii <eliz@is.elta.co.il>
6389
6390 * simple.el (kill-line): Doc fix.
6391
63922000-10-08 Miles Bader <miles@gnu.org>
6393
6394 * faces.el (secondary-selection): Make foreground visible on tty.
6395
6396 * jka-compr.el (auto-compression-mode): Move to the end of the
6397 file, because `define-minor-mode' actually calls the mode-function
6398 if the associated variable is non-nil, which requires that all
6399 needed functions be already defined.
6400 (with-auto-compression-mode): Add autoload cookie.
6401
64022000-10-07 Eli Zaretskii <eliz@is.elta.co.il>
6403
6404 * files.el (find-backup-file-name) [ms-dos]: If support for long
6405 file names is not available, behave as if version-control were set
6406 to never.
6407
64082000-10-07 Dave Love <fx@gnu.org>
6409
6410 * net/browse-url.el (browse-url-gnome-moz-arguments): New option.
6411 (browse-url-gnome-moz): New function.
6412 (browse-url-browser-function): Use it.
6413 Suggested by Colin Walters <walters@cis.ohio-state.edu>.
6414
64152000-10-07 Stefan Monnier <monnier@cs.yale.edu>
6416
6417 * indent.el (tab-always-indent): New var.
6418 (indent-for-tab-command): Use it.
6419
6420 * files.el (set-auto-mode): Ignore unknown -*- mode -*- rather than
6421 raise an error. This way it can still default to a sane value.
6422
64232000-10-06 Stefan Monnier <monnier@cs.yale.edu>
6424
6425 * startup.el (fancy-splash-screens): Use local rather than global map.
6426 Don't use `update-menu-bindings' any more.
6427 Get rid of assumptions about keymap representation.
6428
64292000-10-06 Dave Love <fx@gnu.org>
6430
6431 * textmodes/fill.el (sentence-end-double-space)
6432 (sentence-end-without-period): Doc fix.
6433 (adaptive-fill-regexp): Purecopy.
6434 (unjustify-current-line): Use line-end-position.
6435 (fill-individual-paragraphs-prefix): Use line-beginning-position.
6436
6437 * net/eudc-vars.el (eudc): Add :version, :link.
6438
6439 * international/mule-conf.el (file-coding-system-alist): Use \', not $.
6440
6441 * emacs-lisp/find-func.el (find-function-regexp): Remove spurion.
6442 Fix for define-minor-mode.
6443 (function-at-point): Alias to function-called-at-point.
6444
6445 * custom.el (custom-declare-variable, custom-set-variables): Use mapc.
6446
6447 * simple.el (backward-word): Doc fix.
6448
6449 * image-file.el (image-file-name-regexp): image-file-regexps ->
6450 image-file-name-regexps.
6451 (image-file-name-extensions): Add pbm.
6452
64532000-10-06 Stefan Monnier <monnier@cs.yale.edu>
6454
6455 * smerge-mode.el (smerge-diff): Setup the buffer's default-directory
6456 and add filename to the names so that diff-mode can jump to source.
6457
6458 * font-lock.el (font-lock-defaults-alist): Remove the TeX entries.
6459 (tex-font-lock-keywords, tex-font-lock-keywords-2)
6460 (tex-font-lock-keywords-1): Remove.
6461 (font-lock-turn-on-thing-lock): Use jit-lock-register.
6462 (font-lock-turn-off-thing-lock): Use jit-lock-unregister.
6463 (font-lock-default-fontify-region):
6464 Expand beg..end correctly when just following a multiline region.
6465 (font-lock-fontify-anchored-keywords):
6466 Include the anchor text as part of the multiline.
6467
64682000-10-06 Gerd Moellmann <gerd@gnu.org>
6469
6470 * loadup.el (toplevel): Load `loaddefs' before `help' because the
6471 latter needs the autoloaded define-minor-mode macro during the
6472 bootstrap.
6473
6474 * startup.el (command-line): For now, activate tool-bar-mode only
6475 if XPM images are supported.
6476
6477 * mouse.el (mouse-drag-header-line): Don't allow resizing a
6478 window by dragging a header-line at the top of the frame; that's
6479 confusing because the header-line doesn't move.
6480 (mouse-drag-mode-line-1): Use event-* and posn-* functions instead
6481 of treating the event as a list. Some cleanup.
6482
64832000-10-06 Miles Bader <miles@gnu.org>
6484
6485 * simple.el (display-message-or-buffer): New function.
6486 (shell-command-on-region): Use `display-message-or-buffer'.
6487
6488 * emacs-lisp/easy-mmode.el (define-derived-mode): Tweak generated
6489 docstring parts.
6490
6491 * net/net-utils.el (nslookup-prompt-regexp, ftp-prompt-regexp)
6492 (smbclient-prompt-regexp): Add usage note to doc string.
6493 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Removed.
6494 (ftp-mode, smbclient-mode): Don't set `font-lock-defaults'.
6495 Use add-hook for adding the comint filter function, and only do so
6496 if it's not already in the global hook list.
6497 (ftp-mode, smbclient-mode, nslookup-mode): Remove redundant calls
6498 to `make-local-variable'.
6499 (nslookup-font-lock-keywords): Remove prompt entry.
6500 (nslookup): Don't set the process-filter.
6501 (finger): Exit the loop correctly when the regexps list runs out.
6502 (ftp, smbclient, smbclient-list-shares):
6503 Set the real major mode immediately, not after execing.
6504 Use `pop-to-buffer' instead of `switch-to-buffer-other-window'.
6505
6506 * comint.el (comint-watch-for-password-prompt): Use STRING as a prompt.
6507
65082000-10-05 Stefan Monnier <monnier@cs.yale.edu>
6509
6510 * progmodes/compile.el (compile-collect-regexps): Use dolist and push.
6511
6512 * which-func.el (which-func-format): Remove spurious space.
6513 (which-func-mode): Don't make it permanent-local.
6514 (which-func-ff-hook): Allow which-func-maxout to be nil.
6515 (which-func-update): Simplify a bit. Only run if which-func-mode is t.
6516 (which-func-mode): Simplify.
6517 Use post-command-idle-hook rather than post-command-hook.
6518 Go through all buffers and update their state.
6519 (which-function): Also try add-log-current-defun-function.
6520
6521 * vc.el (with-vc-properties): Use conses rather than length-2 lists.
6522 (vc-checkout, vc-finish-steal, vc-checkin, vc-revert-file):
6523 Update call to with-vc-properties accordingly.
6524 (vc-comment-search-reverse, vc-comment-search-forward): Docstring fix.
6525 (vc-revert-buffer): More careful about window selection and deletion.
6526 (vc-switch-backend): Slight reorg to avoid calling `registered' twice.
6527
6528 * pcvs.el (cvs-ediff-exit-hook): Expect delete-window to fail.
6529 (cvs-retrieve-revision): Reuse a pre-existing buffer.
6530 (cvs-dired-action): Change the default to quickdir.
6531
6532 * newcomment.el (comment-indent): Delegate to indent-according-to-mode
6533 if comment-indent-function returns nil.
6534 (comment-indent-default): New function.
6535 (comment-indent-function): Use it and document the new semantics.
6536
6537 * image-file.el: Docstring fixes.
6538
6539 * help.el (help-xref-on-pp): Use match-string.
6540 (describe-variable): New arg BUFFER.
6541 Store the current buffer in the help-xref-stack.
6542 (temp-buffer-resize-mode): Use define-minor-mode.
6543
6544 * jit-lock.el (jit-lock-mode): Use jit-lock-defer-contextually
6545 consistently with its docstring.
6546 Set jit-lock-first-unfontify-pos in an idempotent way.
6547 (jit-lock-register): Autoload and add arg CONTEXTUAL.
6548
65492000-10-05 Alex Schroeder <alex@gnu.org>
6550
6551 * sql.el (sql-mysql-options): New variable.
6552 (sql-mysql): Use it.
6553
65542000-10-05 Miles Bader <miles@lsi.nec.co.jp>
6555
6556 * image.el (image): New group.
6557
6558 * smerge-mode.el (smerge-mine-face, smerge-other-face)
6559 (smerge-base-face, smerge-markers-face): Add dark-background variants.
6560
65612000-10-04 Peter Breton <pbreton@ne.mediaone.net>
6562
6563 * net/net-utils.el (nslookup-font-lock-keywords)
6564 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
6565 Ignore the value of wqindow-system; always define keywords
6566
65672000-10-05 Kenichi Handa <handa@etl.go.jp>
6568
6569 * startup.el (fancy-splash-screens): Remove the code for
6570 debugging; `(trace-to-stderr "EXITTT\n")'.
6571
65722000-10-05 Miles Bader <miles@gnu.org>
6573
6574 * diff-mode.el (diff-goto-source): Update call to
6575 `diff-hunk-status-msg' to reflect new REV variable.
6576
65772000-10-04 Stefan Monnier <monnier@cs.yale.edu>
6578
6579 * progmodes/icon.el (icon-mode):
6580 Don't gratuitously override the default for comment-column.
6581
6582 * vc-hooks.el (vc-mode-line): Fix interactive spec.
6583
6584 * jit-lock.el (with-buffer-unmodified): Use unwind-protect.
6585 (jit-lock-mode): Make sure font-lock-keywords-only is bound before use.
6586 (jit-lock-functions): New var.
6587 (jit-lock-function-1): Use it if non-nil.
6588 Don't switch the syntax-table. Don't set parse-sexp-lookup-properties.
6589 Set the `fontified' property before doing the fontification to avoid
6590 repeatedly going through the same error.
6591 Don't turn errors into messages.
6592 (jit-lock-register, jit-lock-unregister): New functions.
6593
6594 * dired.el (dired-mark-pop-up): Turn comment into docstring.
6595 Use with-current-buffer.
6596
6597 * dired-aux.el (dired-do-create-files, dired-kill-tree):
6598 Turn comment into docstring.
6599
6600 * apropos.el (apropos-mode): Use define-derived-mode.
6601
66022000-10-04 Gerd Moellmann <gerd@gnu.org>
6603
6604 * startup.el (fancy-splash-pending-command): New variable.
6605 (fancy-splash-pre-command): New function.
6606 (fancy-splash-screens): Rewritten.
6607 (command-line-1): If fancy-splash-pending-command is set, call it
6608 interactively.
6609
66102000-10-04 Dave Love <fx@gnu.org>
6611
6612 * toolbar/tool-bar.el (tool-bar-setup): New function.
6613 (tool-bar-mode): Use it.
6614
6615 * subr.el (substitute-key-definition): Doc fix.
6616 (play-sound-file): New command.
6617
66182000-10-04 Andre Spiegel <spiegel@gnu.org>
6619
6620 * vc-hooks.el (vc-before-save, vc-default-make-version-backups,
6621 vc-version-backup-file-name): New functions.
6622
6623 * files.el (basic-save-buffer): Call vc-before-save before saving.
6624
6625 * vc-cvs.el (vc-cvs-make-version-backups): Return t if
6626 vc-cvs-stay-local-p.
6627
6628 * vc.el (vc-revert-buffer): Handle empty diff properly.
6629 (vc-version-backup-file): New function.
6630 (vc-checkout): Create a version backup if necessary.
6631 (vc-checkin): If a version backup file exists, delete it.
6632 (vc-version-diff): Diff locally using version backups, if available.
6633 (vc-revert-file): If there's a version backup, revert locally.
6634 (vc-transfer-file): Use version backup for base version, if
6635 available. If not, ask for confirmation whether to get it from the
6636 server. Update mode line before check-in.
6637
66382000-10-04 Dave Love <fx@gnu.org>
6639
6640 * toolbar/tool-bar.el (tool-bar-setup): New function.
6641 (tool-bar-mode): Use it.
6642
66432000-10-04 Peter Breton <pbreton@ne.mediaone.net>
6644
6645 * net/net-utils.el (nslookup-font-lock-keywords)
6646 (ftp-font-lock-keywords, smbclient-font-lock-keywords):
6647 Only set if window-system is non-nil
6648 (net-utils-run-program): Returns buffer.
6649 (network-connection-reconnect): Added this function.
6650
6651 * generic.el:
6652 Incorporates extensive cleanup and docfixes by
6653 Stefan Monnier (monnier+gnu/emacs@flint.cs.yale.edu).
6654 Uses cl compile-time macros.
6655 (generic-mode-name, generic-comment-list)
6656 (generic-keywords-list, generic-font-lock-expressions)
6657 (generic-mode-function-list, generic-mode-syntax-table):
6658 Removed variables.
6659 (generic-mode-alist): Renamed to generic-mode-list.
6660 (generic-find-file-regexp): Default changed to "^#".
6661 (generic-read-type): Uses completing read on generic-mode-list.
6662 (generic-mode-sanity-check): removed this function.
6663 (generic-add-to-auto-mode): Removed this function
6664 (generic-mode-internal): Bind mode-specific definitions
6665 into function instead of putting them in alist.
6666 (generic-mode-set-comments): Reworked extensively.
6667 (generic-mode-find-file-hook): Simplified regexp searching
6668 (generic-make-keywords-list): Omit extra pair of parens
6669
6670 * find-lisp.el (find-lisp-find-files-internal):
6671 Make sure directory name ends with "/".
6672
6673 * generic-x.el (apache-conf-generic-mode):
6674 Regexp now allows leading whitespace.
6675 (rc-generic-mode): Added eval-when-compile
6676 around generic-make-keywords-list.
6677 Deleted duplicate regexp
6678 (rul-generic-mode): Added eval-when-compile
6679 around generic-make-keywords-list.
6680 (etc-fstab-generic-mode): New generic mode.
6681 (rul-generic-mode): Removed one eval-when-compile
6682 which caused a max-specpdl-size exceeded error.
6683
66842000-10-04 Miles Bader <miles@gnu.org>
6685
6686 * simple.el (minibuffer-temporary-goal-position): New variable.
6687 (next-history-element): Try to keep the position of point in the
6688 input string constant.
6689
6690 * dired-aux.el (dired-mark-read-file-name): Add optional arg DEFAULT.
6691 (dired-do-create-files): If there's only one file, pass it in as
6692 the DEFAULT arg to dired-mark-read-file-name.
6693
66942000-10-03 Stefan Monnier <monnier@cs.yale.edu>
6695
6696 * diff-mode.el (diff-font-lock-keywords): Minor regex fix.
6697 (diff-goto-source): Be smarter when choosing REVERSE or not.
6698
6699 * textmodes/texinfo.el (texinfo-heading-face): Forgot the var def.
6700 (texinfo-mode-menu): Add an explicit shortcut for update all.
6701
67022000-10-03 Andre Spiegel <spiegel@gnu.org>
6703
6704 * vc.el (vc-transfer-file, vc-default-receive-file): Rewritten to
6705 factorize backend-specific code cleanly (this was essentially
6706 conceived by Stefan Monnier).
6707 (vc-unregister): Function removed.
6708 (vc-revert-file): New function.
6709 (vc-revert-buffer): Delegate some of the work to it.
6710
6711 * vc-rcs.el (vc-rcs-fetch-master-state): Parse and remember
6712 default branch unconditionally.
6713 (vc-rcs-set-default-branch): New function.
6714 (vc-rcs-cancel-version, vc-rcs-checkin, vc-rcs-checkout): Use it.
6715 (vc-rcs-checkin): If an appropriate default branch has been set,
6716 force creation of that branch.
6717 (vc-rcs-receive-file): Rewritten to contain only backend-specific
6718 code (as suggested by Stefan Monnier).
6719
67202000-10-02 Gerd Moellmann <gerd@gnu.org>
6721
6722 * isearch.el (isearch-lazy-highlight-update): Don't put a lazy
6723 highlighting overlay with a different face over the overlay
6724 isearch uses to highlight the current match because that can lead
6725 to bad face combinations.
6726
6727 * loadup.el (toplevel): Load faces before isearch.
6728
6729 * isearch.el (isearch-faces): New custom group.
6730 (isearch): New defface; was already tested for in the code.
6731 (isearch-lazy-highlight-face): Changed to defface from defcustom.
6732 (isearch-highlight): Always use face `isearch'.
6733
67342000-10-02 Dave Love <fx@gnu.org>
6735
6736 * emacs-lisp/byte-opt.el (byte-optimize-lapcode): Don't bind
6737 unused vars. Treat byte-constant2 like byte-constant. Fix bogus
6738 comparison of opcode with operand.
6739
67402000-10-03 Miles Bader <miles@gnu.org>
6741
6742 * play/yow.el (yow): Don't display multi-line quotations in a *Help*
6743 buffer, since the echo area will now grow to accommodate them.
6744
67452000-10-02 Andre Spiegel <spiegel@gnu.org>
6746
6747 * vc-hooks.el (vc-registered): If FILE used to be registered under
6748 a certain backend, try that one first.
6749
6750 * vc.el (vc-responsible-backend): Undo the previous change in the
6751 argument list. Handle multiple backends correctly.
6752 (vc-find-new-backend): Function removed.
6753 (vc-register): Use vc-responsible-backend, as before.
6754 (vc-next-action-on-file): Do use vc-registered, not vc-backend.
6755
67562000-10-02 Gerd Moellmann <gerd@gnu.org>
6757
6758 * startup.el (fancy-splash-head): Change message below the
6759 logo.
6760
67612000-10-02 Miles Bader <miles@lsi.nec.co.jp>
6762
6763 * diff-mode.el (diff-goto-source): Emit a status message.
6764 (diff-test-hunk, diff-apply-hunk): Remove unneeded `let'.
6765 (diff-test-hunk): Fix doc string.
6766 (diff-apply-hunk): Only advance if `diff-advance-after-apply-hunk'.
6767 (diff-advance-after-apply-hunk): New variable.
6768 (diff-apply-hunk): Don't return a value.
6769
67702000-10-01 Stefan Monnier <monnier@cs.yale.edu>
6771
6772 * vc.el (vc-editable-p): Minor optimization.
6773 (edit-vc-file, vc-next-action-on-file): Don't use find-file.
6774 (vc-find-new-backend): New function split from vc-responsible-backend.
6775 (vc-register): Use it.
6776 (vc-responsible-backend): Remove REGISTER arg and add BACKENDS arg.
6777 (vc-unregister): Drop BACKEND arg (it doesn't work anyway).
6778 (vc-default-unregister, vc-revert-buffer): Docstring fix.
6779 (vc-clear-headers): Don't use find-file.
6780 (vc-revert-buffer): Use `and' again (must have been a braino).
6781 (vc-switch-backend): Only prompt if requested.
6782 Short circuit if nothing is to be done.
6783 Don't use vc-resynch-buffer which could lose unsaved editing.
6784 (vc-default-receive-file): Update call to vc-unregister.
6785 (with-vc-file, vc-next-action-on-file):
6786 Use vc-backend rather than vc-registered.
6787 (vc-next-action-on-file): Use intern-soft.
6788 Deal with read-only *vc-diff* buffer.
6789 (vc-transfer-file): Docstring fix.
6790
6791 * vc-rcs.el (vc-rcs-unregister): Keep a backup of the master file.
6792 (vc-rcs-receive-file): Avoid with-vc-properties.
6793 Update call to vc-unregister.
6794 Use constant `RCS' rather than (dynamically bound) var `backend'.
6795
67962000-10-01 Andre Spiegel <spiegel@gnu.org>
6797
6798 * vc.el (vc-next-action-on-file): Update mode line only if file
6799 is visited.
6800 (vc-start-entry): New argument initial-contents. Don't visit the file
6801 if it isn't already visited. Brought documentation up-to-date.
6802 (vc-next-action, vc-register): Updated calls to vc-start-entry.
6803 (vc-checkin): New optional arg initial-contents, which is passed to
6804 vc-start-entry.
6805 (vc-finish-logentry): Make sure to bury log buffer only if there
6806 really is one. Call `vc-resynch-buffer' on log-file, not
6807 buffer-file-name.
6808 (vc-default-comment-history, vc-default-wash-log): New functions.
6809 (vc-index-of): Removed.
6810 (vc-transfer-file): Make do without the above.
6811 (vc-default-receive-file): Call comment-history unconditionally. Pass
6812 the resulting string to vc-checkin, instead of inserting it into the
6813 comment ring.
6814
6815 * vc-rcs.el (vc-rcs-receive-file): Call comment-history
6816 unconditionally. Use the comments as initial contents of the log
6817 entry buffer. Document the trick to force branch creation with no
6818 changes.
6819
68202000-10-01 Miles Bader <miles@gnu.org>
6821
6822 * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation): Call
6823 `recenter' with an arg to prevent redrawing the display.
6824
68252000-09-30 Stefan Monnier <monnier@cs.yale.edu>
6826
6827 * emacs-lisp/easy-mmode.el (easy-mmode-pretty-mode-name): Prettier.
6828
6829 * emacs-lisp/lisp.el (lisp-complete-symbol): Only jump 2 not 3 levels.
6830
6831 * progmodes/c-mode.el (c-mode):
6832 Don't gratuitously override the default for comment-column.
6833
6834 * textmodes/tex-mode.el (latex-metasection-list): New var.
6835 (latex-imenu-create-index): Use it.
6836 Move the regexp construction outside loops (and use push).
6837 (tex-font-lock-keywords-1, tex-font-lock-keywords-2)
6838 (tex-font-lock-keywords): Moved from font-lock.el.
6839 (tex-comment-indent): Remove.
6840 (tex-common-initialization): Don't set comment-indent-function.
6841 (latex-block-default): New var.
6842 (tex-latex-block): Use it to provide a default choice.
6843 Add any unknown choice to latex-block-names.
6844 Insert [...] after {...}.
6845 (tex-last-unended-begin): Simplify regexp.
6846 (tex-goto-last-unclosed-latex-block, latex-backward-sexp-1)
6847 (latex-forward-sexp-1, latex-forward-sexp): New functions.
6848 (latex-mode): Set forward-sexp-function.
6849
6850 * textmodes/texinfo.el (texinfo-font-lock-syntactic-keywords):
6851 Add regexp for @ignore ... @end ignore.
6852 (texinfo-heading-face): New face.
6853 (texinfo-font-lock-keywords): Use it.
6854 (texinfo-mode-menu): New menu.
6855 (texinfo-inside-macro-p, texinfo-inside-env-p, texinfo-insert-quote):
6856 New functions.
6857 (texinfo-mode-map): Bind " to insert-quote and M-RET to insert-@item.
6858 (texinfo-section-types-regexp, texinfo-section-level-regexp)
6859 (texinfo-subsection-level-regexp, texinfo-subsubsection-level-regexp):
6860 Remove declaration.
6861 (texinfo-show-structure): Use outline-regexp and texinfo-section-list.
6862
6863 * delsel.el (delete-selection-mode): Use define-minor-mode.
6864
6865 * emacs-lisp/regexp-opt.el (regexp-opt-group): Put more parenthesis.
6866
68672000-09-29 Stefan Monnier <monnier@cs.yale.edu>
6868
6869 * dired.el (dired-map-over-marks): Use modern backquotes and docstring.
6870
68712000-09-30 Gerd Moellmann <gerd@gnu.org>
6872
6873 * replace.el (keep-lines-read-args): New function.
6874 (keep-lines, flush-lines, how-many): Use keep-lines-read-args to
6875 read arguments interactively. Add parameters RSTART and REND.
6876 Operate on the active region in Transient Mark mode.
6877
6878 * files.el (auto-mode-alist): Add pattern for `#*mail*...'.
6879
6880 * emacs-lisp/authors.el (authors-obsolete-file-p): New function.
6881 (authors-obsolete-files-regexps): New variable.
6882 (authors-add): Don't record changes in obsolete files.
6883
68842000-09-29 Stefan Monnier <monnier@cs.yale.edu>
6885
6886 * autoinsert.el (auto-insert-mode): Use define-minor-mode.
6887
6888 * newcomment.el (comment-indent-function): Use 0 for ;;; and %%%.
6889 (comment-indent): Make sure there's a space between code and comment.
6890 Shift comments left to avoid going past fill-column.
6891
68922000-09-29 Gerd Moellmann <gerd@gnu.org>
6893
6894 * startup.el (startup-echo-area-message): New function.
6895 (display-startup-echo-area-message): Use it.
6896 (fancy-splash-screens): Rewritten to use keymaps and a timer.
6897 (fancy-splash-default-action): New function.
6898 (fancy-splash-screens-1): New function.
6899 (fancy-splash-head): Put a help-echo and a keymap under the image.
6900
69012000-09-29 Stefan Monnier <monnier@cs.yale.edu>
6902
6903 * diff-mode.el (diff-add-log-file-name): Remove.
6904 (diff-mode): Use add-log-buffer-file-name-function.
6905
6906 * add-log.el (find-change-log): New arg BUFFER-FILE.
6907 (add-log-file-name): Obey add-log-file-name-function.
6908 (add-log-buffer-file-name-function): New var.
6909 (add-change-log-entry): Use it.
6910
69112000-09-29 Miles Bader <miles@gnu.org>
6912
6913 * image-file.el (image-file-name-extensions): New variable.
6914 (image-file-name-regexps): Renamed from `image-file-regexps'.
6915 New default value is nil. Call `auto-image-file-mode'.
6916 (image-file-name-regexp): New function.
6917 (auto-image-file-mode): New minor mode.
6918 (insert-image-file): Don't make conditional on the image-file
6919 handler being enabled.
6920 (image-file-handler): Make the call here conditional instead.
6921 (set-image-file-handler-enabled, enable-image-file-handler)
6922 (disable-image-file-handler): Functions removed.
6923
6924 * emacs-lisp/authors.el (authors-print): Rephrase many-files
6925 string.
6926
69272000-09-29 Gerd Moellmann <gerd@gnu.org>
6928
6929 * textmodes/tex-mode.el (latex-outline-regexp): Don't use `list*';
6930 it's a function from CL.
6931 (latex-imenu-create-index): Replace eval-when-compile with progn
6932 because latex-section-alist is not bound while compiling.
6933
69342000-09-28 Stefan Monnier <monnier@cs.yale.edu>
6935
6936 * textmodes/outline.el (outline-minor-mode): Use define-minor-mode.
6937 (outline-mode): Use define-derived-mode.
6938
6939 * progmodes/perl-mode.el (perl-mode):
6940 * progmodes/awk-mode.el (awk-mode):
6941 * progmodes/asm-mode.el (asm-mode):
6942 Don't gratuitously override the default for comment-column.
6943
6944 * emacs-lisp/lisp.el (lisp-complete-symbol):
6945 Distinguish the let-binding case from the funcall case.
6946 (forward-sexp-function): New variable.
6947 (forward-sexp): Use it.
6948
6949 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Autoload.
6950 (easy-mmode-defmap): Remove the now useless autoload.
6951
6952 * time.el (display-time-mode): Use define-minor-mode.
6953
6954 * subr.el (add-minor-mode): Don't eval NAME.
6955 Don't depend on the presence of TOGGLE-FUN for any special behavior.
6956 Use if rather than cond.
6957
6958 * simple.el (read-expression-map): Define more properly.
6959 (comment-indent-hook): Remove.
6960 (string-to-syntax): Bug fix.
6961
6962 * pcvs.el (cvs-ediff-exit-hook): Kill buffer before window.
6963 (cvs-ediff-diff): Fix typo.
6964 (cvs-revert-if-needed): Don't bother preserving read-only.
6965
6966 * paren.el (show-paren-mode): Use define-minor-mode.
6967
6968 * jka-compr.el (auto-compression-mode): Use define-minor-mode.
6969 (toggle-auto-compression): Remove.
6970 (jka-compr-build-file-regexp): Remove useless grouping.
6971
6972 * diff-mode.el (diff-mode-map, diff-minor-mode-prefix):
6973 Avoid user-reserved bindings.
6974 (diff-mode, diff-minor-mode): Drop make-local-hook (done by add-hook).
6975 (diff-header-face): Revert to grey85.
6976
6977 * cvs-status.el (cvs-status-entry-leader-re): Minor fix.
6978
6979 * complete.el (partial-completion-mode) <defcustom>: Remove.
6980 (partial-completion-mode): Use define-minor-mode.
6981 (PC-do-completion): Understand `completion-auto-help = delay'
6982 to mean to popup the completion buffer only the second time.
6983 (PC-include-file-all-completions, PC-include-file-all-completions)
6984 (PC-include-file-all-completions): Don't quote lambda.
6985
6986 * comint.el (comint-mode-hook): Docstring fix.
6987 (comint-mode): Use define-derived-mode.
6988 (comint-mode-map): Remove obsolete comment.
6989 (make-comint): Minor stylistic change.
6990 (comint-insert-clicked-input): Be more careful to find the overlay.
6991 Use this-command-keys rather than hardcoding mouse-2.
6992
6993 * font-lock.el: Replace confusing (,@ with ,
6994 (tex-font-lock-keywords-1, tex-font-lock-keywords-2):
6995 Don't use regexp-opt-depth. Spice up the regexp for args.
6996 Don't distinguish between cmds that can take an opt arg or not.
6997 Use `append' and `prepend' rather than `keep'.
6998
6999 * textmodes/tex-mode.el (latex-imenu-indent-string): Add a space.
7000 (latex-outline-regexp): New var.
7001 (latex-outline-level): New fun.
7002 (latex-section-alist): New var.
7003 (latex-imenu-create-index): Use it. Use `push' as well.
7004 (tex-shell-map): Initialize it properly.
7005 (tex-mode): Minor stylistic change.
7006 (plain-tex-mode): Use define-derived-mode.
7007 (latex-mode): Use define-derived-mode.
7008 Construct the paragraph regexps in a more readable way.
7009 Set the buffer-local outline-{level,regexp} vars.
7010 (slitex-mode): Derive from latex-mode.
7011 (tex-common-initialization): Don't kill-all-vars anymore.
7012 Add setting for comment-add and font-lock-defaults.
7013 (tex-start-shell): Use with-current-buffer and don't re-init keymap.
7014 (tex-main-file): New fun. Obey TeX-master as well and remove `.tex'.
7015 (tex-start-tex): New arg DIR (and send a chdir command for it).
7016 Also display the shell buffer and save it in tex-last-buffer-texed.
7017 (tex-region): Use expand-file-name rather than concat.
7018 Remove code made useless by changes in tex-start-tex.
7019 (tex-file): Use tex-main-file and adapt to new tex-start-tex.
7020
7021 * map-ynp.el (map-y-or-n-p): Fix missing backquotes.
7022
70232000-09-28 Dave Love <fx@gnu.org>
7024
7025 * eshell/eshell.el (eshell) <defgroup>: Add :version.
7026
70272000-09-28 Gerd Moellmann <gerd@gnu.org>
7028
7029 * emacs-lisp/authors.el (authors-add): Use `nconc' instead of
7030 `append'.
7031
70322000-09-28 Stefan Monnier <monnier@cs.yale.edu>
7033
7034 * info.el (Info-extract-pointer): Undo last change.
7035 Instead, fix the position of the `bound' arg to re-search-backward.
7036
70372000-09-27 Stefan Monnier <monnier@cs.yale.edu>
7038
7039 * info.el (Info-extract-pointer):
7040 Widen more carefully, to avoid finding pointers in other nodes.
7041 (Info-index): Use push.
7042
70432000-09-27 Gerd Moellmann <gerd@gnu.org>
7044
7045 * frame.el (set-frame-font): Remove call to obsolete function
7046 frame-update-faces.
7047 (set-foreground-color, set-background-color): Likewise for
7048 frame-update-face-colors.
7049
70502000-09-27 Miles Bader <miles@gnu.org>
7051
7052 * image-file.el: New file.
7053
70542000-09-27 Gerd Moellmann <gerd@gnu.org>
7055
7056 * frame.el (frame-notice-user-settings): Don't call
7057 frame-update-faces, which is a no-op now.
7058
7059 * ediff-wind.el (ediff-control-frame-parameters): Add zero
7060 tool-bar-lines.
7061
70622000-09-27 Dave Love <fx@gnu.org>
7063
7064 * mouse.el: Fix last change.
7065
70662000-09-27 Miles Bader <miles@lsi.nec.co.jp>
7067
7068 * toolbar/tool-bar.el (tool-bar-help): Use `mouse-pixel-position'.
7069
70702000-09-22 Kenichi Handa <handa@etl.go.jp>
7071
7072 * international/quail.el (quail-help): The output message is
7073 improved.
7074
70752000-09-26 Dave Love <fx@gnu.org>
7076
7077 * mouse.el (popup-menu): If POSITION is nil, set it using
7078 mouse-position.
7079
70802000-09-25 Sam Steingold <sds@gnu.org>
7081
7082 * net/browse-url.el (browse-url-file-url): Check for null maps.
7083
70842000-09-26 Gerd Moellmann <gerd@gnu.org>
7085
7086 * frame.el (frame-notice-user-settings): Don't add a
7087 tool-bar-lines frame parameter to default-frame-alist in batch mode.
7088
7089 * frame.el (frame-notice-user-settings):
7090 Make tool-bar-mode and default-frame-alist consistent.
7091
7092 * toolbar/tool-bar.el (tool-bar-help): New function.
7093
70942000-09-25 Gerd Moellmann <gerd@gnu.org>
7095
7096 * bytecomp.el (byte-compile-defvar-or-defconst): Only cons onto
7097 current-load-list in top-level forms. Else this leaks a cons cell
7098 every time a defun is called.
7099
7100 * mail/mail-utils.el (rmail-dont-reply-to): Fix last change.
7101
71022000-09-25 Dave Love <fx@gnu.org>
7103
7104 * startup.el (fancy-splash-head): Check XPM is available.
7105
7106 * autoinsert.el (auto-insert): Doc fix.
7107 (auto-insert-alist): Following GNU notices, don't say `copyright
7108 _by_'. Use line-beginning-position.
7109 (auto-insert): Check buffer-file-name is non-nil before use.
7110
71112000-09-25 Gerd Moellmann <gerd@gnu.org>
7112
7113 * textmodes/texinfo.el (texinfo-mode): Prevent filling lines
7114 starting with `@def' or `@multitable', in addition to ones
7115 specified by the user in auto-fill-inhibit-regexp.
7116
71172000-09-25 Markus Rost <rost@math.ohio-state.edu>
7118
7119 * mail/mail-utils.el (rmail-dont-reply-to): Avoid infinite loop if
7120 rmail-dont-reply-to-names matches the empty string.
7121
71222000-09-25 Gerd Moellmann <gerd@gnu.org>
7123
7124 * startup.el (command-line-1, fancy-splash-text): Change the
7125 text to sound more friendly.
7126
71272000-09-23 Thien-Thi Nguyen <ttn@gnu.org>
7128
7129 * progmodes/hideshow.el: Update author email address.
7130 Generally, sync w/ maintainer version 5.22.
7131 (hs-hide-all-non-comment-function): New var.
7132 (hs-hide-hook, hs-show-hook, hs-minor-mode): Update docstrings.
7133 (hs-hide-all): Use `hs-hide-all-non-comment-function'.
7134 (hs-show-region): Delete this command.
7135 (hs-minor-mode-map): Change bindings to leave "C-c LETTER" alone.
7136
71372000-09-22 Dave Love <fx@gnu.org>
7138
7139 * hl-line.el (hl-line-overlay): Don't make it buffer-local.
7140 (hl-line-highlight): Specify buffer when moving overlay.
7141
7142 * progmodes/fortran.el (fortran-mode): Locally set
7143 normal-auto-fill-function.
7144 (fortran-auto-fill-mode): Just alias to auto-fill-mode.
7145 (fortran-mode-map): Adjust auto-fill menu entry.
7146
71472000-09-22 Gerd Moellmann <gerd@gnu.org>
7148
7149 * vc-rcs.el (toplevel): Require `vc' when compiling.
7150
7151 * startup.el (fancy-splash-head): Use splash.pbm instead of splash.xbm.
7152
71532000-09-22 Andre Spiegel <spiegel@gnu.org>
7154
7155 * vc.el (vc-switch-backend): Signal an error if the file is not
7156 registered under the new backend.
7157
7158 * vc-rcs.el (vc-rcs-checkin): Fix bug that prevented check-in
7159 without explicit revision number.
7160
71612000-09-21 Stefan Monnier <monnier@cs.yale.edu>
7162
7163 * diff-mode.el (diff-file-header-face): Reset to its previous value.
7164 (diff-hunk-text): Correctly use offsets rather than buffer-positions.
7165 (diff-xor): New function.
7166 (diff-find-source-location): Use it. Fix a stupid name clash.
7167 (diff-hunk-status-msg): New function.
7168 (diff-apply-hunk): Drop args OTHER-FILE, DRY-RUN, POPUP and NOERROR.
7169 (diff-test-hunk): Use diff-find-source-location.
7170 (diff-goto-source): Favor the `reverse'.
7171 (diff-hunk-text): Properly handle one-sided context diffs.
7172 (diff-apply-hunk): When done, advance to the next hunk.
7173
71742000-09-21 Gerd Moellmann <gerd@gnu.org>
7175
7176 * startup.el (command-line): If frame was created with a non-zero
7177 tool-bar-lines parameter, switch tool-bar-mode on.
7178
7179 * add-log.el (change-log-date-face, change-log-name-face)
7180 (change-log-email-face, change-log-file-face)
7181 (change-log-list-face, change-log-conditionals-face)
7182 (change-log-function-face, change-log-acknowledgement-face):
7183 New faces, inheriting from font-lock faces.
7184 (change-log-font-lock-keywords): Use them.
7185
71862000-09-21 Dave Love <fx@gnu.org>
7187
7188 * progmodes/cperl-mode.el (top-level): Clean up
7189 `eval-when-compile's and assorted defvars.
7190 (cperl-invalid-face): Don't double-quote value. Change custom
7191 type.
7192 (cperl-mode): Set normal-auto-fill-function and don't zap
7193 auto-fill-function.
7194 (cperl-imenu--function-name-regexp-perl): Renamed from
7195 imenu-example--function-name-regexp-perl.
7196 (cperl-imenu--create-perl-index): Renamed from
7197 imenu-example--create-perl-index.
7198 (cperl-xsub-scan): Don't require cl.
7199
7200 * msb.el (msb-mode-map): Use substitute-key-definition.
7201 (msb-mode): Use msb-mode-map.
7202
72032000-09-21 Andre Spiegel <spiegel@gnu.org>
7204
7205 * vc.el (vc-index-of, vc-transfer-file, vc-default-receive-file):
7206 New functions.
7207 (vc-next-action-on-file): Call vc-transfer-file at appropriate places.
7208 (vc-switch-backend): New function.
7209 (vc-prefix-map): Bind `vc-switch-backend' to `b'.
7210 (vc-register): Fix prompt.
7211 (vc-unregister, vc-default-unregister): New functions.
7212 (vc-version-diff): Handle empty buffer in sentinel.
7213
7214 * vc-rcs.el (vc-rcs-workfile-is-newer): New function.
7215 (vc-rcs-state-heuristic): Use it to guess the state of files with
7216 non-strict locking.
7217 (vc-rcs-find-most-recent-rev): Handle the case when a branch has
7218 been set with -b, but not created yet.
7219 (vc-rcs-fetch-master-state): With non-strict locking, compare file
7220 contents in order to find the state.
7221 (vc-rcs-checkin): Allow creation of branches with no changes.
7222 (vc-rcs-unregister, vc-rcs-receive-file)
7223 (vc-rcs-set-non-strict-locking): New functions.
7224
7225 * vc-hooks.el (vc-name): Force correct computation of the value
7226 in case it is missing.
7227
72282000-09-21 Gerd Moellmann <gerd@gnu.org>
7229
7230 * startup.el (fancy-splash-tail): Use a different foreground
7231 color on a dark frame background.
7232
72332000-09-21 Miles Bader <miles@lsi.nec.co.jp>
7234
7235 * info.el: Use the correct capitalization when making Info-mode
7236 and Info-edit-mode `special' modes.
7237
72382000-09-20 Stefan Monnier <monnier@cs.yale.edu>
7239
7240 * diff-mode.el (diff-add-log-file-name, diff-current-defun): New funs.
7241 (diff-mode): Add support for add-log.el.
7242 (diff-hunk-text): Use char offsets rather than line offsets.
7243 (diff-find-source-location): Replace LINE with line-offset (nil
7244 if not found) and always set POS to a meaningful position.
7245 Adapt to the new char-offsets.
7246 (diff-apply-hunk): Drop support for the unused `select' POPUP.
7247 Adapt to the new diff-find-source-location.
7248 (diff-goto-source): Adapt to the new diff-find-source-location.
7249
7250 * add-log.el (add-log-file-name): New function (split out of
7251 add-change-log-entry).
7252 (add-change-log-entry): Use it.
7253 Call add-log-file-name-function with the changelog file name if
7254 the current buffer is not associated with any file.
7255 Avoid find-file if the selected window is dedicated.
7256
7257 * diff-mode.el (diff-find-source-location):
7258 Move code from diff-apply-hunk. Return buffer rather than file.
7259 (diff-apply-hunk): Use the new result from diff-find-source-location.
7260 (diff-goto-source): Use the new diff-find-source-location.
7261
72622000-09-20 Dave Love <fx@gnu.org>
7263
7264 * iswitchb.el: Some doc fixes.
7265 (iswitchb-mode-map): Define completely initially. Inherit
7266 minibuffer-local-map.
7267 (iswitchb-completion-help) <!iswitchb-xemacs>: Use
7268 fundamental-mode.
7269 (iswitchb-global-map): New variable.
7270 (iswitchb-summaries-to-end): Amalgamate regexps.
7271 (iswitchb-mode): New.
7272 (iswitchb-mode-hook): New variable.
7273 (iswitchb) <defgroup>: Add URL link. Use group `completion', not
7274 `extensions'.
7275
72762000-09-20 Gerd Moellmann <gerd@gnu.org>
7277
7278 * ehelp.el (electric-help): New defgroup.
7279 (electric-help-shrink-window): New user-option.
7280 (with-electric-help): Use it.
7281
7282 * window.el (shrink-window-if-larger-than-buffer): If face
7283 `mode-line' has a :box, and we're on a graphical frame, add 1
7284 to the needed window height.
7285
7286 * frame.el (frame-notice-user-settings): Add a last parameter nil
7287 to a call to `append', because the last list passed to `append' is
7288 not copied, and so subsequent calls to assq-delete-all will modify
7289 default-frame-alist.
7290
7291 * startup.el (fancy-splash-image): Change :type.
7292 (fancy-splash-head): Use an XBM image if appropriate.
7293 (command-line-1): Show splash screens in more cases.
7294
7295 * startup.el (fancy-splash-text): Don't quote faces.
7296
7297 * dired.el (dired-font-lock-keywords): Undo last change.
7298 (dired-readin): Bind indent-tabs-mode to nil.
7299
7300 * startup.el (fancy-splash-head): If frame's background mode
7301 is `dark', change the black background of the image to gray.
7302 (fancy-splash-screens): Display startup echo area message.
7303 (display-startup-echo-area-message): New function.
7304
73052000-09-20 Miles Bader <miles@lsi.nec.co.jp>
7306
7307 * faces.el (mode-line, tool-bar): Merge entries for `x' and `w32'.
7308
7309 * info.el (info-header-node): Tweak for color ttys.
7310
7311 * faces.el (face-valid-attribute-values): Make sure directories we
7312 search for stipples both exist and are readable before trying to
7313 search them.
7314
7315 * diff-mode.el (diff-apply-hunk): Jump to the correct line offset
7316 in the dry-run case.
7317
7318 * jka-compr.el (with-auto-compression-mode): New macro.
7319
7320 * cus-edit.el (custom-face-tag-face, custom-group-tag-face-1)
7321 (custom-group-tag-face, custom-variable-tag-face): Use relative
7322 :height and inherit from `variable-pitch' face instead of
7323 hardwiring :family.
7324 * hi-lock.el (hi-black-hb): Likewise.
7325
7326 Reapply Gerd's change from 2000-09-18, which seems to have gotten lost:
7327 * toolbar/tool-bar.el (tool-bar-add-item-from-menu): Like in
7328 toolbar-add-item, if image doesn't have a mask add a `:mask
7329 heuristic'.
7330
73312000-09-19 Stefan Monnier <monnier@cs.yale.edu>
7332
7333 * diff-mode.el: Docstring fixes.
7334 (diff-header-face, diff-comment-face): New faces.
7335 (diff-font-lock-keywords): Highlight a bit differently.
7336 (diff-find-source-location): Don't return SPAN any more.
7337 (diff-hunk-text): Don't bother erasing the temp buffer.
7338 (diff-find-text): Drop argument LINE.
7339 (diff-apply-hunk): Update calls to diff-find-text.
7340 (diff-goto-source): Use pop-to-buffer again and don't raise an error.
7341
7342 * calendar/calendar.el: Docstring fixes.
7343 (calendar-make-alist): Don't quote lambda.
7344 (calendar-star-date): Use make-local-variable.
7345
73462000-09-19 Dave Love <fx@gnu.org>
7347
7348 * toolbar/tool-bar.el: Renamed from toolbar.el.
7349 Change `toolbar' to `tool-bar' generally in symbols.
7350 Make some items invisible in `special' major modes.
7351 (tool-bar-add-item-from-menu): Renamed from toolbar-like-menu-item.
7352 Add arg PROPS.
7353
7354 * startup.el (fancy-splash-screen) <defgroup>: Fix syntax.
7355 Add :version here.
7356 (fancy-splash-delay, fancy-splash-image): Remove :version here.
7357
73582000-09-19 Gerd Moellmann <gerd@gnu.org>
7359
7360 * progmodes/sh-script.el (sh-search-word): Remove call to `debug'.
7361
7362 * files.el (find-file-suppress-same-file-warnings): New user-option.
7363 (find-file-noselect): Use it.
7364
7365 * startup.el (fancy-splash-delay, fancy-splash-image): Add :version.
7366 (fancy-splash-screen): Defgroup.
7367
7368 * add-log.el (change-log-font-lock-keywords): Match names
7369 more exactly for the case that font-lock-constant-face is
7370 underlined.
7371
73722000-09-19 Richard M. Stallman <rms@gnu.org>
7373
7374 * progmodes/sh-script.el (sh-search-word): Rewritten for speed.
7375
73762000-09-19 Andre Spiegel <spiegel@gnu.org>
7377
7378 * vc.el (vc-revert-buffer): Set vc-checkout-time correctly.
7379
73802000-09-19 Gerd Moellmann <gerd@gnu.org>
7381
7382 * gnus/: Update to emacs-21-branch of the Gnus CVS repository.
7383 * gnus/binhex.el, gnus/flow-fill.el, gnus/format-spec.el
7384 * gnus/gnus-ml.el, gnus/gnus-mlspl.el, gnus/ietf-drums.el,
7385 * gnus/imap.el, gnus/mail-parse.el, gnus/mail-prsvr.el,
7386 * gnus/mail-source.el, gnus/mailcap.el, gnus/mm-bodies.el,
7387 * gnus/mm-decode.el, gnus/mm-encode.el, gnus/mm-partial.el,
7388 * gnus/mm-util.el, gnus/mm-uu.el, gnus/mm-view.el,
7389 * gnus/mml.el, gnus/nnimap.el, gnus/nnslashdot.el,
7390 * gnus/nnultimate.el, gnus/nnwarchive.el, gnus/qp.el,
7391 * gnus/rfc1843.el, gnus/rfc2045.el, gnus/rfc2047.el,
7392 * gnus/rfc2104.el, gnus/rfc2231.el, gnus/time-date.el,
7393 * gnus/utf7.el, gnus/uudecode.el, gnus/webmail.el: New files.
7394
7395 * startup.el (fancy-splash-text): New variable.
7396 (fancy-splash-delay, fancy-splash-image): New user-options.
7397 (fancy-splash-insert, fancy-splash-head, fancy-splash-tail)
7398 (fancy-splash-screens): New functions.
7399 (command-line-1): If display has a `display' frame parameter, has
7400 colors, and we have XPM support, show more fancy splash screens.
7401
74022000-09-19 Dave Love <fx@gnu.org>
7403
7404 * map-ynp.el (map-y-or-n-p): Check use-dialog-box. Don't lose
7405 with null `help'. Use modern backquote syntax.
7406
74072000-09-19 Gerd Moellmann <gerd@gnu.org>
7408
7409 * font-lock.el (font-lock-mode): Change message telling the user
7410 that ``the buffer is too big''.
7411
7412 * dired.el (dired-font-lock-keywords): Allow tabs and spaces,
7413 for instance for the case that tab-width is 2.
7414
74152000-09-18 Gerd Moellmann <gerd@gnu.org>
7416
7417 * toolbar/toolbar.el (toolbar-like-menu-item): Like in
7418 toolbar-add-item, if image doesn't have a mask add a `:mask
7419 heuristic'.
7420
74212000-09-18 Miles Bader <miles@lsi.nec.co.jp>
7422
7423 * diff-mode.el (diff-hunk-text): Add new optional arg LINE-OFFSET,
7424 and return a cons if it's non-nil.
7425 (diff-apply-hunk): Try to jump to the line in the source text
7426 corresponding to the position of point in the in the hunk.
7427
7428 * info.el (Info-title-3-face, Info-title-2-face)
7429 (Info-title-1-face): Use face inheritance and relative sizes
7430 instead of hard-wiring things.
7431
7432 * faces.el (secondary-selection): Make dark-background variant sane.
7433
74342000-09-16 Andrew Innes <andrewi@gnu.org>
7435
7436 * makefile.w32-in (compile-files-CMD): No need to make .elc files
7437 read-only, since they aren't under VC now.
7438
74392000-09-17 Dave Love <fx@gnu.org>
7440
7441 * tmm.el: Replace mapcar with mapc in several places.
7442
7443 * loadhist.el (unload-feature): Maybe call elp-restore-list and
7444 ad-unadvise.
7445
7446 * international/latin1-disp.el: New file.
7447
7448 * calendar/cal-move.el (scroll-calendar-left)
7449 (scroll-calendar-right): Make arg optional (for active mode line).
7450
7451 * calendar/calendar.el (calendar-mode-line-format): Make fields
7452 mouse-sensitive.
7453 (calendar-read-date, calendar-read-date, calendar-window-list):
7454 Unquote lambda.
7455 (calendar-month-name): Use aref, not sref.
7456
7457 * view.el (minor-mode-alist): Propertize the string.
7458
7459 * international/characters.el (standard-case-table): Add entries
7460 for Greek.
7461
74622000-09-18 Miles Bader <miles@gnu.org>
7463
7464 * info.el (info-node, info-xref): Add dark-background variants.
7465
7466 * faces.el (header-line): Change defaults to be less confusing
7467 when mixed with mode-lines.
7468
7469 * info.el (Info-fontify-node): Make a few cleanups.
7470 Add extra `help-echo' and `local-map' props to node xrefs.
7471 Use header-specific faces for node-names & xrefs.
7472 (Info-use-header-line): New variable.
7473 (info-header-xref, info-header-node): New faces.
7474 (Info-setup-header-line): New function.
7475 (Info-select-node): Call Info-setup-header-line when enabled.
7476 (Info-extract-pointer): Work even if the header line is hidden.
7477 (Info-header-line): New variable.
7478
74792000-09-16 Stefan Monnier <monnier@cs.yale.edu>
7480
7481 * vms-patch.el (print-region-function): Don't quote lambda.
7482
7483 * tempo.el (tempo-expand-if-complete): Quote paren in docstring.
7484
7485 * emacs-lisp/lisp-mnt.el (lm-header-prefix): Cleanup the regexp.
7486 (lm-get-header-re): Allow spaces between the header and the colon.
7487 (lm-header): Allow $ in non-RCS headers.
7488 (lm-header-multiline): Put the strings back into order.
7489 Stop at an empty line. Don't require two space chars if the
7490 line is clearly not another header line.
7491
7492 * emacs-lisp/lmenu.el (popup-menu, popup-menu-internal)
7493 (popup-menu-popup): Remove.
7494
74952000-09-15 Gerd Moellmann <gerd@gnu.org>
7496
7497 * toolbar/toolbar.el (toolbar-add-item): Use the same image
7498 specification if or if not tool-bar item contains an `:enabled'
7499 property.
7500
7501 * menu-bar.el (menu-bar-files-menu): Disable ``Save'' if
7502 current buffer has no file name.
7503
75042000-09-15 Dave Love <fx@gnu.org>
7505
7506 * strokes.el: Sync with maintainer's current version with changes
7507 for Emacs, but avoid runtime cl and levents.
7508 (toplevel): Change autoloads and compilation requires.
7509 (strokes-version, strokes-bug-address, strokes-lift): Values
7510 changed.
7511 (strokes-xpm-header, strokes-insinuated): New variable.
7512 (strokes): Add :link.
7513 (strokes-mode): Customized.
7514 (strokes-while-inhibiting-garbage-collector): New macro.
7515 (strokes-remassoc): Avoid remove-if.
7516 (strokes-fix-button2-command): Don't use ad-do-it.
7517 (strokes-insinuate): New function.
7518 (strokes-button-press-event-p, strokes-button-release-event-p):
7519 New functions, used instead of non-`strokes-' versions..
7520 (strokes-mouse-event-p): Rewritten.
7521 (strokes-event-closest-point): Avoid event-point.
7522 (strokes-get-grid-position): Avoid cdadr, caadr
7523 (strokes-read-stroke, strokes-read-complex-stroke): Avoid levents
7524 functions.
7525 (strokes-help): Use with-output-to-temp-buffer.
7526 (strokes-window-configuration-changed-p): New function.
7527 (strokes-update-window-configuration): Use buffer-live-p,
7528 strokes-window-configuration-changed-p.
7529 (strokes-mode): Use strokes-insinuate. Alter mouse bindings.
7530 (strokes-char-face): New face.
7531 (strokes-char-table, strokes-base64-chars): New variable.
7532 (strokes-xpm-for-stroke, strokes-list-strokes)
7533 (strokes-xpm-char-on-p, strokes-xpm-char-bit-p)
7534 (strokes-xpm-encode-length-as-string, strokes-xpm-decode-char)
7535 (strokes-xpm-to-compressed-string, strokes-decode-buffer)
7536 (strokes-encode-buffer, strokes-xpm-for-compressed-string)
7537 (strokes-compose-complex-stroke, strokes-alphabetic-lessp): New
7538 functions.
7539
75402000-09-15 Gerd Moellmann <gerd@gnu.org>
7541
7542 * toolbar/toolbar.el (toolbar-add-item): Use image-mask-p.
7543
7544 * image.el (create-image): Doc fix.
7545
7546 * toolbar/toolbar.el (toolbar-add-item): Use `:mask heuristic'
7547 instead of `:heuristic-mask t'.
7548
75492000-09-14 Andrew Innes <andrewi@gnu.org>
7550
7551 * makefile.w32-in: Revert to Unix line endings.
7552
75532000-09-14 Andrew Innes <andrewi@gnu.org>
7554
7555 * makefile.w32-in: Add bootstrap support. Also copy lisp source
7556 when installing.
7557
7558 * makefile.nt (DONTCOMPILE): Fix typo.
7559
7560 * shell.el (shell-write-history-on-exit): New function.
7561 (shell-dumb-shell-regexp): New custom variable.
7562 (shell-mode): Make shell-write-history-on-exit the process
7563 sentinel if shell name matches shell-dumb-shell-regexp.
7564
7565 * w32-fns.el: Comment out before-init-hook function which resets
7566 source-directory based; this breaks bootstrap.
7567
75682000-09-14 Dave Love <fx@gnu.org>
7569
7570 * toolbar/cancel.xpm, toolbar/close.xpm, toolbar/copy.xpm,
7571 toolbar/cut.xpm, toolbar/exit.xpm, toolbar/fld_open.xpm,
7572 toolbar/help.xpm, toolbar/info.xpm, toolbar/mail.xpm,
7573 toolbar/mail_compose.xpm, toolbar/new.xpm, toolbar/open.xpm,
7574 toolbar/paste.xpm, toolbar/preferences.xpm, toolbar/print.xpm,
7575 toolbar/save.xpm, toolbar/saveas.xpm, toolbar/search-replace.xpm,
7576 toolbar/search.xpm, toolbar/spell.xpm, toolbar/undo.xpm: New.
7577 From Tuomas Kuosmanen <tigert@gimp.org>. (Gnome icons fetched
7578 from <URL:http://tigert.gimp.org/gnome/gnome-stock/>.)
7579
7580 * toolbar/toolbar.el: New.
7581
7582 * subdirs.el: Add toolbar.
7583
75842000-09-14 Gerd Moellmann <gerd@gnu.org>
7585
7586 * indent.el (indent-for-tab-command): Doc fix.
7587
75882000-09-14 Alex Schroeder <alex@gnu.org>
7589
7590 * ansi-color.el (ansi-colors): Doc change.
7591 (ansi-color-get-face): Simplified regexp.
7592 (ansi-color-faces-vector): Added more faces, doc change.
7593 (ansi-color-names-vector): Doc change.
7594 (ansi-color-regexp): Simplified regexp.
7595 (ansi-color-parameter-regexp): New regexp.
7596 (ansi-color-filter-apply): Doc change.
7597 (ansi-color-filter-region): Doc change.
7598 (ansi-color-apply): Use ansi-color-regexp and ansi-color-get-face,
7599 deal with zero length parameters.
7600 (ansi-color-apply-on-region): Doc change.
7601 (ansi-color-map): Doc change.
7602 (ansi-color-map-update): Removed debugging message.
7603 (ansi-color-get-face-1): Added condition-case to trap
7604 args-out-of-range errors.
7605 (ansi-color-get-face): Doc change.
7606 (ansi-color-make-face): Removed.
7607 (ansi-color-for-shell-mode): New option.
7608
76092000-09-13 Kenichi Handa <handa@etl.go.jp>
7610
7611 * international/quail.el (quail-start-translation): Translate KEY
7612 if necessary even if it doesn't have any mapping in the current
7613 input method.
7614 (quail-start-conversion): Likewise.
7615 (quail-help): The output message is improved.
7616
76172000-09-13 Miles Bader <miles@gnu.org>
7618
7619 * comint.el (comint-output-filter): Revert to using
7620 `insert-before-markers'. Add bletcherous hack to undo damage
7621 caused by `insert-before-markers'. Put `front-sticky' property on
7622 overlays created here so that the field code understands how the
7623 overlay works. Use a let when making comint-last-prompt-overlay,
7624 so that the code is easier to read.
7625
76262000-09-13 Dave Love <fx@gnu.org>
7627
7628 * wid-edit.el (widget-default-format-handler): DTRT when
7629 doc-property is a function.
7630
76312000-09-12 Francesco Potorti` <pot@gnu.org>
7632
7633 * mail/sendmail.el (mail-mode-fill-paragraph): Do not get the
7634 filed name if it's not there.
7635
76362000-09-12 Dave Love <fx@gnu.org>
7637
7638 * simple.el (read-mail-command): Doc fix.
7639 (mail-user-agent): Add gnus-user-agent option for upcoming Gnus.
7640
7641 * vc.el (vc-dired-listing-switches): Fix :version.
7642
7643 * vc-hooks.el: Doc fixes.
7644
7645 * subr.el (add-minor-mode): Use toggle-fun arg.
7646
7647 * speedbar.el: Add :version to several defcustoms.
7648
7649 * imenu.el (imenu--truncate-items, imenu--cleanup)
7650 (imenu--generic-function): Avoid mapcar.
7651 (imenu--replace-spaces): Function removed.
7652 (imenu--completion-buffer): Use subst-char-in-string.
7653 (imenu-add-to-menubar): Use keymap inheritance.
7654
76552000-09-12 Miles Bader <miles@gnu.org>
7656
7657 * diff-mode.el (diff-hunk-text): Use `with-temp-buffer'.
7658 (diff-mode-map): Bind `diff-test-hunk'.
7659 (diff-apply-hunk): Use `select-window' instead of `pop-to-buffer'.
7660
76612000-09-11 Gerd Moellmann <gerd@gnu.org>
7662
7663 * bytecomp.el (byte-compile-defvar): Undo last change
7664 because it breaks '(make-variable-buffer-local (defvar ...)'
7665 which is used at least in dired.
7666
76672000-09-12 Kenichi Handa <handa@etl.go.jp>
7668
7669 * international/quail.el (quail-define-package): Docstring
7670 modified.
7671
76722000-09-12 Kenichi Handa <handa@etl.go.jp>
7673
7674 * international/titdic-cnv.el (quail-cxterm-package-ext-info): Add
7675 extra docstrings for "chinese-ccdospy", "chinese-ecdict",
7676 "chinese-etzy", "chinese-sw", and "chinese-ziranma". Modify the
7677 docstring of "chinese-py".
7678
7679 * international/quail.el (quail-translation-docstring): New
7680 variable.
7681 (quail-show-keyboard-layout): Docstring modified.
7682 (quail-select-current): Likewise.
7683 (quail-build-decode-map): Change arg MAP to MAP-LIST to avoid
7684 infinite recursive call.
7685 (quail-help): Check quail-translation-docstring. Format of the
7686 output changed.
7687 (quail-help-insert-keymap-description): Adjusted for the above
7688 change.
7689
76902000-09-11 Gerd Moellmann <gerd@gnu.org>
7691
7692 * bytecomp.el (byte-compile-defvar): Only cons onto
7693 current-load-list in top-level forms. Else this leaks a cons cell
7694 every time a defun is called.
7695
76962000-09-11 Miles Bader <miles@lsi.nec.co.jp>
7697
7698 * diff-mode.el (diff-apply-hunk): Function basically rewritten.
7699 Now understands non-unified diffs. Some functionality moved into
7700 `diff-hunk-text' and `diff-find-text'. Add OTHER-FILE, DRY-RUN,
7701 POPUP, and NOERROR arguments. If DRY-RUN is true, don't actually
7702 modify anything. Only reposition point in the patched file if the
7703 patch succeeds. Only pop up another window if POPUP is true.
7704 Emit a message describing what happened if successful, and at what
7705 line-offset. Automatically detect reversed hunks and do something
7706 appropriate.
7707 (diff-hunk-text, diff-find-text): New functions.
7708 (diff-filter-lines): Function removed.
7709 (diff-test-hunk): New function.
7710 (diff-goto-source): Rewritten in terms of diff-apply-hunk.
7711
77122000-09-10 Dave Love <fx@gnu.org>
7713
7714 * textmodes/tildify.el: Minor doc/commentary fixes.
7715 (tildify) <defgroup>: Add :version.
7716
7717 * faces.el (face-x-resources): Make custom type more specific.
7718 (frame-background-mode): Use mapc.
7719 (region) <defcustom>: Add :version.
7720
77212000-09-08 Stefan Monnier <monnier@cs.yale.edu>
7722
7723 * vc-sccs.el (vc-sccs-register):
7724 * vc-rcs.el (vc-rcs-register):
7725 * vc-cvs.el (vc-cvs-register): Don't clear file's properties.
7726 * vc.el (vc-register): Clear file's properties.
7727
77282000-09-08 Gerd Moellmann <gerd@gnu.org>
7729
7730 * faces.el (face-spec-set): Only face-spec-reset-face when
7731 ATTRS is non-nil.
7732
77332000-09-08 Eli Zaretskii <eliz@is.elta.co.il>
7734
7735 * help.el (help-insert-xref-button): Fix a typo in doc string.
7736
77372000-09-07 Eli Zaretskii <eliz@is.elta.co.il>
7738
7739 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
7740 Fix doc strings of chinese-py-b5, chinese-py, and chinese-tonepy input
7741 methods.
7742
7743 * menu-bar.el (read-mail-item-name): New function.
7744 (menu-bar-tools-menu): Use it to compute and display the package
7745 used to read email.
7746 (menu-bar-tools-menu): Fix typo in GUD's help string.
7747
77482000-09-07 Dave Love <fx@gnu.org>
7749
7750 * diff-mode.el (diff-mouse-goto-source): New function.
7751
7752 * vc-sccs.el: Doc fixes.
7753 (vc-sccs-register-switches, vc-sccs-master-templates): Add :version.
7754
7755 * vc-rcs.el: Doc fixes.
7756 (vc-rcs-register-switches, vc-rcs-checkin-switches)
7757 (vc-rcs-checkout-switches, vc-rcs-header)
7758 (vc-rcs-master-templates): Add or change :version.
7759
7760 * vc-cvs.el: Doc fixes.
7761 (vc-cvs-register-switches, vc-cvs-header, vc-cvs-use-edit)
7762 (vc-cvs-stay-local): Add :version.
7763
7764 * menu-bar.el (menu-bar-options-menu): Fix the font-lock toggle.
7765
77662000-09-07 Kenichi Handa <handa@etl.go.jp>
7767
7768 * international/quail.el (quail-help): Fix previous change.
7769
77702000-09-07 Gerd Moellmann <gerd@gnu.org>
7771
7772 * faces.el (color-values): Doc fix.
7773
7774 * faces.el (frame-set-background-mode): Use frame-parameter
7775 instead of frame-parameters.
7776
7777 * frame.el (filtered-frame-list): Reduce consing.
7778 (frames-on-display-list): Call frame-parameter instead of
7779 frame-parameters.
7780
77812000-09-07 Kenichi Handa <handa@etl.go.jp>
7782
7783 * language/devan-util.el (devanagari-to-indian-region): In the
7784 loop, change the following char, not preceding char.
7785
77862000-09-07 Gerd Moellmann <gerd@gnu.org>
7787
7788 * menu-bar.el (menu-bar-update-buffers): Call frame-parameter
7789 instead of frame-parameters.
7790
7791 * faces.el (set-face-attribute): Simplify by calling
7792 internal-set-lisp-face-attribute with FRAME being 0.
7793
7794 * vc.el: Remove `Id' version control keyword.
7795
77962000-09-07 Kenichi Handa <handa@etl.go.jp>
7797
7798 * help.el (help-make-xrefs): Adjusted for the change of
7799 help-xref-mule-regexp.
7800 (help-insert-xref-button): New function.
7801
7802 * international/mule-cmds.el (help-xref-mule-regexp-template):
7803 Include the pattern for character set.
7804 (leim): New group.
7805
7806 * international/quail.el: Don't require face.
7807 (quail): New group.
7808 (quail-other-command): Dummy command to make quail-help work better.
7809 (quail-keyboard-layout-alist): Add Keyboard type "jp106".
7810 (quail-keyboard-layout-substitution): New variable.
7811 (quail-update-keyboard-layout): New function.
7812 (quail-keyboard-layout-type): New customizable variable.
7813 (quail-set-keyboard-layout): Call quail-update-keyboard-layout.
7814 (quail-keyboard-translate): Pay attention to
7815 quail-keyboard-layout-substitution.
7816 (quail-insert-kbd-layout): New function.
7817 (quail-show-keyboard-layout): New function.
7818 (quail-get-translation): If the definition is a vector of length
7819 1, and the element is a string of length 1, return the character
7820 in that string.
7821 (quail-update-current-translations): Fix the case of
7822 relative-index out of range.
7823 (quail-build-decode-map, quail-insert-decode-map): New Functions.
7824 (quail-help): Show keyboard layout by quail-insert-kbd-layout.
7825 Show key sequences for all available characters.
7826 (quail-help-insert-keymap-description): Don't show such verbose
7827 key bindings as quail-self-insert-command.
7828
7829 * international/titdic-cnv.el (quail-cxterm-package-ext-info):
7830 Format changed, and each element now have extra documentations.
7831 (tit-process-header): Delete invalid characters from TIT-PROMPT.
7832 Adjusted for the change of quail-cxterm-package-ext-info.
7833
78342000-09-06 Gerd Moellmann <gerd@gnu.org>
7835
7836 * vc-hooks.el (toplevel): Don't require `vc' during compilation;
7837 requiring it leads to a recursive loading of vc.el and vc-hooks.el
7838 during bootstrap.
7839
78402000-09-05 Stefan Monnier <monnier@cs.yale.edu>
7841
7842 * vc.el: (toplevel): Don't require `dired' at run-time.
7843 (vc-dired-resynch-file): Remove autoload cookie.
7844
78452000-09-05 Andre Spiegel <spiegel@gnu.org>
7846
7847 * vc.el: Made several backend functions optional.
7848 (vc-default-responsible-p): New function.
7849 (vc-merge): Use RET for first version to trigger merge-news, not
7850 prefix arg.
7851 (vc-annotate): Handle backends that do not support annotation.
7852 (vc-default-merge-news): Removed. The existence of a merge-news
7853 implementation is now checked on caller sites.
7854
7855 * vc-hooks.el (vc-default-mode-line-string): Removed CVS special
7856 case.
7857
7858 * vc-cvs.el (vc-cvs-mode-line-string): New function, handles the
7859 special case that has been removed from the default in vc-hooks.el.
7860
78612000-09-05 Stefan Monnier <monnier@cs.yale.edu>
7862
7863 * vc.el (vc-log-edit): Properly handle the case where FILE is nil.
7864
78652000-09-05 Andre Spiegel <spiegel@gnu.org>
7866
7867 * vc-hooks.el: Require vc during compilation.
7868 (vc-file-setprop): Use `vc-touched-properties' if bound by the new
7869 macro `with-vc-properties' in vc.el.
7870 (vc-file-getprop): Doc fix.
7871 (vc-after-save): Call `vc-dired-resynch-file' only if vc is loaded.
7872
7873 * vc.el: Require dired-aux during compilation.
7874 (vc-name-assoc-file): Moved to vc-sccs.el.
7875 (with-vc-properties): New macro.
7876 (vc-checkin, vc-checkout, vc-revert, vc-cancel-version,
7877 vc-finish-steal): Use it.
7878 (vc-cancel-version): Moved RCS-specific code to vc-rcs.el. The call
7879 to the backend-specific function is now supposed to do the checkout,
7880 too.
7881 (vc-log-edit): Handle FILE being nil and added a FIXME for log-edit.
7882
7883 * vc-cvs.el (vc-cvs-checkin, vc-cvs-checkout): Don't bother to
7884 set file properties; that gets done in the generic code now.
7885
7886 * vc-rcs.el (vc-rcs-uncheck): Renamed to `vc-rcs-cancel-version'.
7887 Changed parameter list, added code from vc.el that does the
7888 checkout, possibly with a double-take.
7889
7890 * vc-sccs.el (vc-sccs-name-assoc-file): Moved here from vc.el.
7891 (vc-sccs-add-triple, vc-sccs-rename-file, vc-sccs-lookup-triple): Use
7892 the above under the new name.
7893 (vc-sccs-uncheck): Renamed to `vc-sccs-cancel-version'. Changed
7894 parameter list, added checkout command.
7895 (vc-sccs-checkin, vc-sccs-checkout): Don't bother to set file
7896 properties; that gets done in the generic code now.
7897
78982000-09-05 Stefan Monnier <monnier@cs.yale.edu>
7899
7900 * vc.el: Docstring fixes (courtesy of checkdoc).
7901
79022000-09-05 Stefan Monnier <monnier@cs.yale.edu>
7903
7904 * vc.el (vc-checkout-writable-buffer-hook)
7905 (vc-checkout-writable-buffer): Remove.
7906 (vc-start-entry): Always call vc-log-edit, never vc-log-mode.
7907 (vc-log-mode): Make it into a clean derived major mode.
7908 (vc-log-edit): Mark buffer unmodified (as vc-log-mode did) and use
7909 vc-log-mode if log-edit is not available.
7910 (vc-dired-mode-map): Don't set-keymap-parent yet.
7911 (vc-dired-mode): Do set-keymap-parent here.
7912 (vc-dired-buffers-for-dir): Nop if dired is not loaded.
7913
79142000-09-05 Gerd Moellmann <gerd@gnu.org>
7915
7916 * faces.el (set-face-attribute, face-spec-reset-face)
7917 (face-spec-set): Avoid consing by removing calls to `apply'.
7918
7919 * frame.el (frame-parameter): Move to C code.
7920
79212000-09-05 Dave Love <fx@gnu.org>
7922
7923 * help.el (help-manyarg-func-alist): Add ml-prefix-argument-loop,
7924 insert-before-markers-and-inherit. Now checked systematically!
7925
79262000-09-05 Alex Schroeder <alex@gnu.org>
7927
7928 * sql.el (sql-postgres): Use sql-postgres-options.
7929 (sql-postgres-options): New variable.
7930
79312000-09-05 Alex Schroeder <alex@gnu.org>
7932
7933 * sql.el (sql-mode-menu): Work around missing variable mark-active
7934 in XEmacs.
7935 (sql-mode): Added call to easy-menu-add for XEmacs compatibility.
7936 (sql-interactive-mode): Added call to easy-menu-add for XEmacs
7937 compatibility.
7938
79392000-09-04 Gerd Moellmann <gerd@gnu.org>
7940
7941 * vc.el (vc-dired-resynch-file): Add autoload cookie.
7942
7943 * vc.el (toplevel): Require `dired' at run-time for dired-mode-map.
7944
7945 * Makefile.in (DONTCOMPILE): Fix typo in file name.
7946
79472000-09-04 Andre Spiegel <spiegel@gnu.org>
7948
7949 * vc-sccs.el (vc-sccs-latest-on-branch-p): Always return t; we
7950 don't support anything else under SCCS yet.
7951
7952 * vc-hooks.el: Minor doc fixes.
7953
79542000-09-04 Andre Spiegel <spiegel@gnu.org>
7955
7956 * vc.el (vc-next-action-on-file): Do not visit the file if it's
7957 not necessary. If verbose in state `needs-patch', do the same as
7958 under `up-to-date'. When NOT verbose and `needs-patch', check out
7959 latest version instead of `merge-news'.
7960 (vc-next-action-dired): Don't mess with default-directory here; it
7961 breaks other parts of dired. It is the job of the
7962 backend-specific functions to adjust it temporarily if they need it.
7963 (vc-next-action): Remove a special CVS case.
7964 (vc-clear-headers): New optional arg FILE.
7965 (vc-checkin, vc-checkout): Set properties vc-state and
7966 vc-checkout-time properly.
7967 (vc-finish-steal): Call steal-lock, not steal, which doesn't exist.
7968 (vc-print-log): Use new backend function `show-log-entry'.
7969 (vc-cancel-version): Do the checks in a different order. Added a
7970 FIXME concerning RCS-only code.
7971
7972 * vc-rcs.el (vc-rcs-show-log-entry): New function.
7973 (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties.
7974
7975 * vc-cvs.el (vc-cvs-show-log-entry): New function.
7976
7977 * vc-hooks.el (vc-default-mode-line-string): Show state
7978 `needs-patch' as a `-' too.
7979
79802000-09-04 Andre Spiegel <spiegel@gnu.org>
7981
7982 * vc.el (vc-responsible-backend): New optional arg REGISTER.
7983 (vc-default-could-register): New function.
7984 (vc-dired-buffers-for-dir, vc-dired-resynch-file): New functions.
7985 (vc-resynch-buffer): Call vc-dired-resynch-file.
7986 (vc-start-entry, vc-finish-logentry, vc-revert-buffer): Use
7987 vc-resynch-buffer instead of vc-resynch-window.
7988 (vc-next-action-dired): Don't redisplay here, that gets done as a
7989 result of the individual file operations.
7990 (vc-retrieve-snapshot): Corrected prompt order.
7991
7992 * vc-hooks.el (vc-after-save): Call vc-dired-resynch-file.
7993
7994 * vc-cvs.el (vc-cvs-stay-local): Allow it to be a hostname regexp
7995 as well.
7996 (vc-cvs-remote-p): Renamed to vc-cvs-stay-local-p. Handle
7997 hostname regexps. Updated all callers.
7998 (vc-cvs-responsible-p): Handle directories as well.
7999 (vc-cvs-could-register): New function.
8000 (vc-cvs-retrieve-snapshot): Parse "cvs update" output, keep file
8001 properties up-to-date.
8002
8003 * vc-rcs.el (vc-rcs-register): If there is no RCS subdir, ask the
8004 user whether to create one.
8005
80062000-09-04 Andre Spiegel <spiegel@gnu.org>
8007
8008 * vc-hooks.el (vc-file-not-found-hook): Ask the user whether to
8009 check out a non-existing file.
8010
8011 * vc-cvs.el (vc-cvs-checkout): Do the right thing when the
8012 workfile does not exist.
8013
8014 * vc.el (vc-version-diff): Use `require' to check for existence of
8015 diff-mode.
8016
80172000-09-04 Andre Spiegel <spiegel@gnu.org>
8018
8019 * vc-cvs.el (vc-cvs-registered): Use new function
8020 vc-cvs-parse-entry to do the actual work.
8021
80222000-09-04 Andre Spiegel <spiegel@gnu.org>
8023
8024 * vc-hooks.el (vc-find-backend-function): If function doesn't
8025 exist, return nil instead of error.
8026 (vc-call-backend): Doc fix.
8027
8028 * vc.el (vc-do-command): Doc fix.
8029 (vc-finish-logentry): When checking in from vc-dired, choose the
8030 right backend for logentry check.
8031 (vc-dired-mode-map): Inherit from dired-mode-map.
8032 (vc-dired-mode): Local value of dired-move-to-filename-regexp
8033 simplified.
8034 (vc-dired-state-info): Removed, updated caller.
8035 (vc-default-dired-state-info): Use parentheses instead of hyphens.
8036 (vc-dired-hook): Use vc-BACKEND-dir-state, if available.
8037 (vc-dired-listing-switches): New variable.
8038 (vc-directory): Use it, instead of dired-listing-switches.
8039
8040 * vc-cvs.el (vc-cvs-remote-p): Allow FILE to be a directory, too.
8041 (vc-cvs-dir-state): New function.
8042 (vc-cvs-dir-state-heuristic): New function, subroutine of the above.
8043 (vc-cvs-parse-entry): New function, also to be used in
8044 vc-cvs-registered.
8045
80462000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8047
8048 * vc.el (vc-revert-buffer): Hide the frame for dedicated windows
8049 *or* single-window-frames.
8050
80512000-09-04 Andre Spiegel <spiegel@gnu.org>
8052
8053 * vc.el (vc-update-changelog): Split into generic part and default
8054 implementation. Doc string adapted.
8055 (vc-default-update-changelog): New function. Call the `rcs2log'
8056 script in exec-directory, to fix a long-standing nuisance.
8057
8058 * vc-sccs.el (vc-sccs-update-changelog): Dummy implementation that
8059 simply signals an error.
8060
80612000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8062
8063 * vc-cvs.el (vc-cvs-checkout): Slight restructuring to make the
8064 control-flow more clear and to avoid running `cvs' twice.
8065
8066 * vc.el (vc-next-action-on-file): Doc fix.
8067 (vc-maybe-resolve-conflicts): Don't just toggle smerge-mode.
8068 (vc-print-log): Eval `file' before constructing the continuation.
8069
80702000-09-04 Andre Spiegel <spiegel@gnu.org>
8071
8072 * vc.el (vc-next-action-on-file): Corrected several messages.
8073 (vc-merge): Add prefix arg `merge-news'; handle it.
8074
8075 * vc-cvs.el (vc-cvs-workfile-version): Removed comment that this
8076 is not reached. It is.
8077 (vc-cvs-merge): Set state to 'edited after merge.
8078 (vc-cvs-merge-news): Set workfile version to nil if not known.
8079 (vc-cvs-latest-on-branch-p): Recommented. Candidate for removal.
8080
8081 * vc-*.el (vc-*-checkout): Switch off coding systems for checkout
8082 via stdout. (Merge from main line.)
8083
80842000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8085
8086 * vc.el (vc-finish-logentry): Thinko in the "same comment"
8087 detection.
8088
80892000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8090
8091 * vc.el (vc-parent-buffer, vc-parent-buffer-name): Protect them
8092 against kill-all-local-variables.
8093 (vc-log-edit): Don't save vc-parent-buffer any more.
8094 (vc-last-comment-match): Initialize to an empty string.
8095 (vc-post-command-functions): New hook.
8096 (vc-do-command): Run it.
8097 (vc-next-action-on-file): Remove unnecessary pop-to-buffer.
8098 (vc-finish-logentry): Only add the comment to the ring if it's
8099 different from the last comment entered.
8100 (vc-new-comment-index): New function.
8101 (vc-previous-comment): Use it. Make the minibuffer message
8102 slightly less terse.
8103 (vc-comment-search-reverse): Make it work forward as well. Don't
8104 set vc-comment-ring-index if no match is found. Use
8105 vc-new-comment-index.
8106 (vc-comment-search-forward): Use vc-comment-search-reverse.
8107 (vc-dired-mode-map): Don't inherit from dired-mode-map since
8108 define-derived-mode will do it for us. Bind `v' to a keymap that
8109 inherits from vc-prefix-map so that we can bind `vt' without
8110 binding C-x v t.
8111 (vc-retrieve-snapshot): Parenthesis typo.
8112
8113 * vc-cvs.el (vc-cvs-checkin): Raise the max-correct status from 0
8114 to 1. Make sure to switch to *vc* before looking for an error
8115 message. Use vc-parse-buffer.
8116
81172000-09-04 Andre Spiegel <spiegel@gnu.org>
8118
8119 * vc.el (vc-create-snapshot, vc-default-create-snapshot): Swap DIR
8120 and NAME.
8121 (vc-retrieve-snapshot): Split into two parts.
8122 (vc-default-retrieve-snapshot): New function.
8123
8124 * vc-cvs.el ((vc-cvs-create-snapshot): Swap DIR and NAME.
8125 (vc-cvs-retrieve-snapshot): New function (untested).
8126 (vc-cvs-stay-local): Default to t.
8127 (vc-cvs-remote-p): New function and property.
8128 (vc-cvs-state): Stay local only if the above is t.
8129 (vc-handle-cvs): Removed.
8130 (vc-cvs-registered): Don't check vc-handle-cvs -- it should all be
8131 done via vc-handled-backends now.
8132 (vc-cvs-header): Escape Id.
8133
81342000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8135
8136 * vc.el (vc-do-command): Remove unused commands.
8137 (vc-version-diff): Make sure default-directory ends with a slash.
8138 Move the window commands into a vc-exec-after.
8139 (vc-print-log): Move more of the code into the `vc-exec-after'.
8140
81412000-09-04 Andre Spiegel <spiegel@gnu.org>
8142
8143 * vc.el (vc-exec-after): Fix disassembly of previous sentinel.
8144 (vc-print-log): Search current revision from beginning of buffer.
8145 (vc-revert-buffer): Clear echo area after the diff is finished.
8146 (vc-prefix-map): Removed definition of "t" for terse display in vc
8147 dired.
8148 (vc-dired-mode-map): Inherit from dired-mode-map. Added
8149 definition of "vt" for terse display.
8150 (vc-dired-mode): Fix dired-move-to-filename-regexp.
8151
81522000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8153
8154 * vc.el (vc-exec-after): Avoid caddr.
8155
81562000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8157
8158 * vc.el (vc-exec-after): New function.
8159 (vc-do-command): Use it to add a termination message for async
8160 procs.
8161 (vc-checkout): Try to handle a missing-backend situation.
8162 (vc-version-diff): Use vc-exec-after to fix the behavior for diffs
8163 of a directory with a backend using async diffs.
8164 (vc-print-log): Use vc-exec-after and use log-view-goto-rev if
8165 present.
8166
8167 * vc-sccs.el (vc-sccs-state-heuristic): Use
8168 file-ownership-preserved-p.
8169
8170 * vc-rcs.el (vc-rcs-state-heuristic): Use
8171 file-ownership-preserved-p.
8172 (vc-rcs-checkout): Remove the error-handling for missing-rcs.
8173
81742000-09-04 Andre Spiegel <spiegel@gnu.org>
8175
8176 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix call to
8177 vc-do-command.
8178
8179 * vc.el (vc-next-action-on-file): Use vc-revert-buffer to revert
8180 when there are no changes.
8181
81822000-09-04 Andre Spiegel <spiegel@gnu.org>
8183
8184 * vc-sccs.el (vc-sccs-state-heuristic): Don't use file-writable-p.
8185
8186 * vc-rcs.el (vc-rcs-state-heuristic): Don't use file-writable-p.
8187
81882000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8189
8190 * vc-hooks.el (vc-prefix-map): Move the autoload from vc.el.
8191
8192 * vc.el (vc-prefix-map): Move the autoload to vc-hooks.el and move
8193 the `fset' outside of the defvar so that it works even if
8194 vc-prefix-map was already defined.
8195 (vc-setup-buffer): New function, split out of vc-do-command.
8196 (vc-do-command): Allow BUFFER to be t to mean `just use the
8197 current buffer without any fuss'.
8198 (vc-version-diff): Change the `diff' backend operation to just put
8199 the diff in the current buffer without erasing it. Always use
8200 *vc-diff* even for directory-diffs. Use vc-setup-buffer. Protect
8201 shrink-window-if-larger-than-buffer.
8202 (vc-print-log): Change the `print-log' backend operation to just
8203 put the log in the current buffer without erasing it. Protect
8204 shrink-window-if-larger-than-buffer.
8205 (vc-update-change-log): Fix setd typo.
8206
8207 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Fix parenthesis.
8208 (vc-sccs-print-log, vc-sccs-diff): Insert in the current buffer.
8209
8210 * vc-rcs.el (vc-rcs-print-log): Insert in the current buffer.
8211 (vc-rcs-diff): Insert in the current buffer and remove unused arg
8212 CMP.
8213
8214 * vc-cvs.el (vc-cvs-state, vc-cvs-fetch-status): Use
8215 with-temp-file. Use the new BUFFER=t argument to vc-do-command.
8216 (vc-cvs-print-log, vc-cvs-diff): Insert in the current buffer.
8217
82182000-09-04 Andre Spiegel <spiegel@gnu.org>
8219
8220 * vc.el (vc-workfile-unchanged-p): If checkout-time comparison is
8221 not possible, use vc-BACKEND-workfile-unchanged-p.
8222 (vc-default-workfile-unchanged-p): New function. Delegates to a
8223 full vc-BACKEND-diff.
8224
8225 * vc-hooks.el (vc-simple-command): Removed.
8226
8227 * vc-rcs.el (vc-rcs-workfile-unchanged-p): Use vc-do-command
8228 instead of vc-simple-command.
8229 (vc-rcs-fetch-master-state): Removed check for unlocked-changes to
8230 avoid doing a diff when opening a file.
8231 (vc-rcs-state): Added check for unlocked-changes.
8232 (vc-rcs-header): Escape Id.
8233 (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION.
8234 (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific
8235 version.
8236
8237 * vc-sccs.el (vc-sccs-workfile-unchanged-p): Rewritten.
8238 (vc-sccs-diff): Remove optional arg CMP.
8239 (vc-sccs-state): Call vc-workfile-unchanged-p, not the
8240 SCCS-specific function.
8241
8242 * vc-cvs.el (vc-cvs-state): Use vc-do-command instead of
8243 vc-simple-command.
8244
82452000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8246
8247 * vc.el (vc-editable-p): Renamed from vc-writable-p.
8248 (with-vc-file, vc-merge): Use vc-editable-p.
8249 (vc-do-command): Remove unused var vc-file and fix the
8250 doubly-defined `status' var. Add a user message when starting an
8251 async command.
8252 (vc-restore-buffer-context, vc-resynch-buffer, vc-start-entry)
8253 (vc-finish-steal, vc-checkin, vc-finish-logentry, vc-rename-file):
8254 Use with-current-buffer.
8255 (vc-buffer-sync): Use unless.
8256 (vc-next-action-on-file): If the file is 'edited by read-only,
8257 make it read-write instead of trying to commit.
8258 (vc-version-diff, vc-update-change-log): Use `setq
8259 default-directory' rather than `cd'.
8260 (vc-log-edit): Don't forget to set default-directory in the
8261 buffer.
8262
8263 * vc-sccs.el (vc-sccs-state): Fix obviously wrong parenthesis.
8264 (vc-sccs-state-heuristic): Use file-writable-p instead of
8265 comparing userids.
8266 (vc-sccs-checkout): Use `unless'.
8267
8268 * vc-rcs.el (vc-rcs-state-heuristic): Use file-writable-p instead
8269 of comparing userids.
8270 (vc-rcs-fetch-master-state): Handle the case where rcs is missing.
8271 Simplify the logic by eliminating unreachable code.
8272 (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and
8273 just do a recursive call if we need to retry.
8274 (vc-rcs-checkout): Handle the case where rcs is missing by making
8275 the buffer read-write if requested and re-signalling the error.
8276
8277 * vc-cvs.el (vc-cvs-diff): Remove unused and unsupported argument CMP.
8278
82792000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8280
8281 * vc-hooks.el (vc-handled-backends): Docstring change.
8282 (vc-ignore-vc-files): Mark obsolete.
8283 (vc-registered): Check vc-ignore-vc-files.
8284 (vc-find-file-hook, vc-file-not-found-hook): Don't check
8285 vc-ignore-vc-files.
8286
8287 * vc-cvs.el (vc-cvs-registered): Obey vc-handle-cvs.
8288
82892000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8290
8291 * vc.el (vc-checkout): Don't do anything special for ange-ftp
8292 files since ange-ftp already has vc-registered return nil.
8293
8294 * vc-sccs.el (vc-sccs-state): Use with-temp-buffer.
8295 (vc-sccs-workfile-version): Use with-temp-buffer and new
8296 vc-parse-buffer and don't bother setting the property.
8297 (vc-sccs-add-triple): Use with-current-buffer and
8298 find-file-noselect.
8299 (vc-sccs-lookup-triple): New vc-parse-buffer and turn cond -> if.
8300
8301 * vc-rcs.el (vc-rcs-find-most-recent-rev): New function. The code
8302 derives from the old vc-parse-buffer but uses the revision number
8303 rather than the date (much easier to compare robustly).
8304 (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the
8305 new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the
8306 locking-user more directly. Check strict locking and set
8307 checkout-model appropriately.
8308 (vc-rcs-parse-locks): Remove.
8309 (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the
8310 new vc-parse-buffer (and vc-rcs-find-most-recent-rev).
8311 (vc-rcs-system-release): Use with-current-buffer and
8312 vc-parse-buffer.
8313 (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer.
8314
8315 * vc-hooks.el (vc-parse-buffer): Lobotomize the monster.
8316 (vc-simple-command): Docstring fix.
8317 (vc-registered): Align the way the file-handler is called with the
8318 way the function itself works.
8319 (vc-file-owner): Remove.
8320
8321 * vc-cvs.el (vc-cvs-registered): Use with-temp-buffer. Reorder
8322 extraction of fields and call to file-attributes because of a
8323 temporary bug in rcp.el.
8324 (vc-cvs-fetch-status): Use with-current-buffer.
8325
83262000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8327
8328 * vc.el (vc-do-command): Use file-relative-name.
8329 (vc-responsible-backend): Use vc-backend if possible.
8330 (vc-create-snapshot): Improve the `interactive' spec. Add support
8331 for branches and dispatch to backend-specific `create-snapshot'.
8332 (vc-default-create-snapshot): New function, containing the bulk of
8333 the old vc-create-snapshot.
8334 (vc-retrieve-snapshot): Improve the interactive spec.
8335
8336 * vc-hooks.el (vc-header-alist): Move the dummy def from vc.el.
8337 (vc-backend-hook-functions): Remove.
8338 (vc-find-backend-function): Don't try to load vc-X-hooks anymore.
8339 (vc-backend): Reintroduce the test for `file = nil' now that I
8340 know why it was there (and added a comment to better remember).
8341
8342 * vc-sccs-hooks.el: Merge into vc-sccs.el * vc-sccs.el: Merge in
8343 code from vc-sccs-hooks.el.
8344 (vc-sccs-release, vc-sccs-system-release): Remove. Don't require
8345 'vc anymore.
8346 (vc-sccs-responsible-p): Use expand-file-name instead of concat
8347 and file-directory-p instead of file-exists-p.
8348 (vc-sccs-check-headers): Simplify the regexp.
8349
8350 * vc-rcs-hooks.el: Merge into vc-rcs.el * vc-rcs.el: Merge in code
8351 from vc-rcs-hooks.el. Don't require 'vc anymore.
8352 (vc-rcs-responsible-p): Use expand-file-name instead of concat and
8353 file-directory-p instead of file-exists-p.
8354
8355 * vc-cvs-hooks.el: Merge into vc-cvs.el * vc-cvs.el: Merge in code
8356 from vc-cvs-hooks.el.
8357 (proto vc-cvs-registered): Require 'vc-cvs instead of
8358 'vc-cvs-hooks. Don't require 'vc anymore.
8359 (vc-cvs-responsible-p): Use expand-file-name instead of concat and
8360 file-directory-p instead of file-exists-p.
8361 (vc-cvs-create-snapshot): New function, replacing
8362 vc-cvs-assign-name.
8363 (vc-cvs-assign-name): Remove.
8364
83652000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8366
8367 * vc-cvs.el (vc-cvs-header): New var.
8368
8369 * vc-rcs.el (vc-rcs-exists): Remove.
8370 (vc-rcs-header): New var.
8371
8372 * vc-sccs.el (vc-sccs-responsible-p, vc-sccs-register): Use
8373 `vc-sccs-search-project-dir' instead of `vc-sccs-project-dir'.
8374 (vc-sccs-header): New var.
8375
8376 * vc.el (vc-do-command): Get rid of the `last' argument.
8377 (vc-header-alist): Remove, replaced by vc-X-header.
8378 (vc-insert-headers): Use vc-X-header instead of vc-header-alist.
8379 (vc-dired-hook): Use expand-file-name instead of concat.
8380 (vc-directory): Use file-name-as-directory.
8381 (vc-snapshot-precondition, vc-create-snapshot)
8382 (vc-retrieve-snapshot): Allow the command to operate on any
8383 directory.
8384
8385 * vc-{rcs,sccs,cvs}.el: Update calls to vc-do-command by either
8386 just removing the 'WORKFILE argument or by removing the 'MASTER
8387 argument and replacing `file' with (vc-name file).
8388
83892000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8390
8391 * vc.el: Update Copyright and add a crude list of backend funs.
8392 (vc-writable-p): New function.
8393 (with-vc-file): Use vc-writable-p.
8394 (vc-next-action-on-file): Update call to vc-steal-lock and cleanup.
8395 (vc-register): Avoid vc-name.
8396 (vc-locking-user): Remove.
8397 (vc-steal-lock): Make the `owner' arg non-optional.
8398 (vc-merge): Use vc-writable-p instead of vc-locking-user and
8399 vc-checkout-model.
8400 (vc-default-dired-state-info): Use vc-state instead of
8401 vc-locking-user and return special strings for special states.
8402 (vc-dired-hook): Use vc-up-to-date-p instead of vc-locking-user
8403 and get rid of one of the special CVS cases.
8404 (vc-cancel-version): prettify error message with \\[...].
8405 (vc-rename-master): New function.
8406 (vc-rename-file): Use vc-BACKEND-rename-file (which might in turn
8407 use vc-rename-master) instead of vc-BACKEND-record-rename. Make
8408 the CVS special case generic.
8409 (vc-default-record-rename): Remove.
8410 (vc-file-tree-walk-internal): Only call FUNC for files that are
8411 under control of some VC backend and replace `concat' with
8412 expand-file-name.
8413 (vc-file-tree-walk): Update docstring.
8414 (vc-version-diff, vc-snapshot-precondition, vc-create-snapshot)
8415 (vc-retrieve-snapshot): Update call to vc-file-tree-walk.
8416
8417 * vc-sccs.el (vc-sccs-rename-file): Renamed from
8418 vc-sccs-record-rename. Use `find-file-noselect' rather than
8419 `find-file' and call `vc-rename-master' to do the actual move.
8420 (vc-sccs-diff): Remove unused `backend' variable.
8421
8422 * vc-sccs-hooks.el (vc-sccs-registered): Preloaded trivial version
8423 to delay loading of vc-sccs until it is really used.
8424 (vc-sccs-master-templates): Preload.
8425 (vc-sccs-state): Update call to vc-sccs-parse-locks.
8426 (vc-sccs-project-dir): Remove (merged into
8427 vc-sccs-search-project-dir).
8428 (vc-sccs-search-project-dir): Rewrite using file name handling ops
8429 rather than `concat', make sure it is preloaded and don't bother
8430 to check that the file actually exists.
8431 (vc-sccs-parse-locks): Remove unused `file' argument, remove
8432 `locks' argument (use buffer's content instead) and eliminate n^2
8433 behavior.
8434
8435 * vc-rcs.el: Update Copyright.
8436 (vc-rcs-rename-file): New function.
8437 (vc-rcs-diff): Remove unused `backend' variable.
8438
8439 * vc-hooks.el: Update Copyright.
8440 (vc-backend): Don't accept a nil argument any more.
8441 (vc-up-to-date-p): Turn into a defsubst.
8442 (vc-possible-master): New function.
8443 (vc-check-master-templates): Use `vc-possible-master' and allow
8444 funs in vc-X-master-templates to return a non-existent file.
8445
8446 * vc-cvs.el: Update Copyright.
8447 (vc-cvs-diff): Remove unused `backend' variable.
8448 (vc-cvs-checkout): Only toggle read-only if the buffer is setup right.
8449
8450 * vc-cvs-hooks.el: Preload a proto vc-cvs-registered.
8451
84522000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8453
8454 * vc-rcs-hooks.el (vc-rcs-registered): Provide a trivial version
8455 since it can be called from vc-rcs.el.
8456 (vc-rcs-parse-locks): Cleanup to remove an n^2 behavior.
8457
84582000-09-04 Andre Spiegel <spiegel@gnu.org>
8459
8460 * vc.el (vc-version-diff): Expand file name read from the
8461 minibuffer. Handle the case when a previous version number can't
8462 be guessed. Give suitable messages when there were no differences
8463 found.
8464 (vc-clear-headers): Call backend-specific implementation, if one
8465 exists.
8466 (vc-cancel-version): Made error checks generic. When done, clear
8467 headers generically, too.
8468
8469 * vc-rcs.el (vc-rcs-clear-headers): New function; code moved here
8470 from vc-clear-headers in vc.el.
8471
8472 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Use vc-parse-buffer
8473 correctly.
8474 (vc-rcs-latest-on-branch-p): Made second argument VERSION
8475 optional. Handle the case when it's not there.
8476
84772000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8478
8479 * vc.el (vc-locking-user): Moved from vc-hooks.el.
8480
84812000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8482
8483 * vc-hooks.el (vc-loadup): Remove.
8484 (vc-find-backend-function): Use `require'. Also, handle the case
8485 where vc-BACKEND-hooks.el doesn't exist.
8486 (vc-call-backend): Cleanup.
8487
84882000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8489
8490 * vc-rcs-hooks.el (vc-rcs-templates-grabbed,
8491 vc-rcs-grab-templates)
8492 (vc-rcs-registered): Remove. The default function works as well.
8493 * vc-sccs-hooks.el (vc-sccs-templates-grabbed,
8494 vc-sccs-grab-templates)
8495 (vc-sccs-registered): Remove. The default function works as well.
8496
8497 * vc.el (vc-version-diff): Left out a vc- in call to
8498 vc-call-backend.
8499 (vc-default-dired-state-info, vc-default-record-rename)
8500 (vc-default-merge-news): Update for the new backend argument.
8501
8502 * vc-hooks.el (vc-find-backend-function): Return a cons cell if
8503 using the default function.
8504 (vc-call-backend): If calling the default function, pass it the
8505 backend as first argument. Update the docstring accordingly.
8506 (vc-default-state-heuristic, vc-default-mode-line-string): Update
8507 for the new backend argument.
8508 (vc-make-backend-sym): Renamed from vc-make-backend-function.
8509 (vc-find-backend-function): Use the new name.
8510 (vc-default-registered): New function.
8511
85122000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8513
8514 * vc.el (vc-merge): Use vc-find-backend-function.
8515
8516 * vc-hooks.el (vc-backend-functions): Remove.
8517 (vc-loadup): Don't setup 'vc-functions.
8518 (vc-find-backend-function): New function.
8519 (vc-call-backend): Use above fun and populate 'vc-functions
8520 lazily.
8521 (vc-backend-defines): Remove.
8522
85232000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8524
8525 * vc.el (vc-register): Put a FIXME note for a newly found bug.
8526 Call vc-call-backend without the leading vc-.
8527 (vc-responsible-backend, vc-finish-logentry, vc-annotate)
8528 (vc-check-headers): Call vc-call-backend without the leading vc-.
8529 (vc-annotate-time-span): Replace confusing use of `cond' with `or'.
8530 (vc-annotate-display): Replace confusing use of `cond' with `or'.
8531 Call vc-call-backend without the leading vc-.
8532
8533 * vc-cvs.el (tail): Provide vc-cvs.
8534 * vc-sccs.el (tail): Provide vc-sccs.
8535 * vc-rcs.el (tail): Provide vc-rcs and remove vc-rcs-logentry-check.
8536
8537 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions)
8538 (vc-make-backend-function, vc-call): Pass names without leading
8539 `vc-' to vc-call-backend so we can blindly prefix them with vc-BACKEND.
8540 (vc-loadup): Don't load vc-X-hooks if vc-X is requested.
8541 (vc-call-backend): Always try to load vc-X-hooks.
8542 (vc-registered): Remove vc- in call to vc-call-backend.
8543
85442000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8545
8546 * vc.el (vc-process-filter): New function.
8547 (vc-do-command): Setup `vc-process-filter' for the async process.
8548 (vc-maybe-resolve-conflicts): New function to reduce
8549 code-duplication. Additionally, it puts the buffer in
8550 `smerge-mode' if applicable.
8551 (vc-next-action-on-file): Use `vc-maybe-resolve-conflicts' after
8552 calling `merge-news'.
8553 (vc-merge): Use `vc-maybe-resolve-conflicts' after calling `merge'.
8554 (vc-log-edit): New function. Replacement for `vc-log-mode' by
8555 interfacing to log-edit.el.
8556 (vc-start-entry): Call `vc-log-edit' instead of `vc-log-mode' if
8557 log-edit is available.
8558 (vc-resolve-conflicts): Delegate to `smerge-ediff' if available.
8559
85602000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8561
8562 * vc.el (vc-register): Remove `vc-buffer-backend' setup.
8563 (vc-log-mode-map): New name for vc-log-entry-mode and merge the
8564 defvar and the initialization.
8565 (vc-log-mode): Minor docstring fix and use vc-log-mode-map.
8566
8567 * vc-hooks.el (vc-default-back-end, vc-buffer-backend): Remove.
8568 (vc-kill-buffer-hook): Remove `vc-buffer-backend' handling.
8569
8570 * vc-cvs-hooks.el (vc-handle-cvs): Make it a defvar and add a FIXME.
8571
85722000-09-04 Andre Spiegel <spiegel@gnu.org>
8573
8574 * vc.el (vc-file-clear-masterprops): Removed.
8575 (vc-checkin, vc-revert-buffer): Removed calls to the above.
8576 (vc-version-diff): Use buffer-size without argument.
8577 (vc-register): Heed vc-initial-comment.
8578
8579 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Fix regexp for
8580 default branch.
8581
8582 * vc-rcs.el (vc-rcs-register): Parse command output to find master
8583 file name and workfile version.
8584 (vc-rcs-checkout): Removed call to vc-file-clear-masterprops.
8585
8586 * vc-cvs.el (vc-cvs-merge-news, vc-cvs-checkout): Removed call to
8587 vc-file-clear-masterprops.
8588
8589 * vc-sccs.el (vc-sccs-checkout): Removed call to
8590 vc-file-clear-masterprops. If writable, set vc-state to 'edited
8591 rather than user login name.
8592
8593
85942000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8595
8596 * vc.el (vc-workfile-unchanged-p): Remove unused argument
8597 `want-differences-if-changed' and simplify.
8598 (vc-next-action-on-file) [needs-merge]: Resynch the buffer.
8599 (vc-revert-buffer): Use `unchanged-p' rather than vc-diff's status
8600 output (which is invalid for async vc-diff) to decide whether to
8601 do the revert silently or not.
8602
86032000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8604
8605 * vc-hooks.el (vc-loadup): Load files quietly.
8606 (vc-call-backend): Oops, brain fart.
8607
86082000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8609
8610 * vc-cvs.el (vc-cvs-state): Typo.
8611 (vc-cvs-merge-news): Return the status code rather than the error msg.
8612
86132000-09-04 Andre Spiegel <spiegel@gnu.org>
8614
8615 * vc.el (with-vc-file, vc-next-action, vc-version-diff)
8616 (vc-dired-mark-locked): Replaced usage of vc-locking-user with
8617 vc-state or vc-up-to-date-p.
8618 (vc-merge): Use vc-backend-defines to check whether merging is
8619 possible. Set state to 'edited after successful merge.
8620
8621 * vc-hooks.el (vc-locking-user): If locked by the calling user,
8622 return that name. Redocumented.
8623
86242000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8625
8626 * vc.el (vc-recompute-state, vc-next-action-on-file): Update to
8627 new `vc-state' semantics.
8628 (vc-finish-steal): Set 'vc-state to 'edited rather than setting
8629 'vc-locking-user to the current user.
8630 (vc-merge): Inline vc-backend-merge. Comment out code that I
8631 don't understand and hence can't adapt to the new `vc-state' and
8632 `vc-locking-user' semantics.
8633 (vc-backend-merge): Remove.
8634
8635 * vc-{sc,r}cs.el (vc-{sc,r}cs-check{in,out}): Update 'vc-state
8636 rather than 'vc-locking-user.
8637
8638 * vc-rcs-hooks.el (vc-rcs-consult-headers): Adapt to new `vc-state'.
8639
8640 * vc-hooks.el (vc-user-login-name): Simplify the code a tiny bit.
8641 (vc-state): Don't use 'reserved any more. Just use the same
8642 convention as the one used for vc-<backend>-state where the
8643 locking user (as a string) is returned.
8644 (vc-locking-user): Update, based on the above convention. The
8645 'vc-locking-user property has disappeared.
8646 (vc-mode-line, vc-default-mode-line-string): Adapt to new `vc-state'.
8647
8648 * vc-cvs.el (vc-cvs-state): Don't overwrite a non-heuristic state
8649 with a heuristic one.
8650 (vc-cvs-merge-news): Just use 'edited for the case with conflicts.
8651 (vc-cvs-checkin): Do a trivial parse to set the state in case of
8652 error. That allows us to get to 'needs-merge even in the
8653 stay-local case. There's still no way to detect 'needs-patch in
8654 such a setup (or to force an update for that matter).
8655 (vc-cvs-logentry-check): Remove, the default works as well.
8656
86572000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8658
8659 * vc-cvs.el (vc-cvs-print-log, vc-cvs-diff): Run cvs asynchronously.
8660
8661 * vc.el (vc-do-command): kill-all-local-variables, to reset any
8662 major-mode in which the buffer might have been put earlier. Use
8663 `remove' and `when'. Allow `okstatus' to be `async' and use
8664 `start-process' in this case.
8665 (vc-version-diff): Handle the case where the diff looks empty
8666 because of the use of an async process.
8667
86682000-09-04 Andre Spiegel <spiegel@gnu.org>
8669
8670 * vc.el (vc-next-action-on-file): Removed optional parameter
8671 `simple'. Recompute state unconditionally.
8672 (vc-default-toggle-read-only): Removed.
8673
8674 * vc-hooks.el (vc-backend-functions): Removed vc-toggle-read-only.
8675 (vc-toggle-read-only): Undid prev change.
8676
8677 * vc-cvs.el (vc-cvs-stay-local): Renamed from
8678 vc-cvs-simple-toggle. Redocumented.
8679 (vc-cvs-state): If locality is wanted, use vc-cvs-state-heuristic.
8680 (vc-cvs-toggle-read-only): Removed.
8681
86822000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8683
8684 * vc.el (vc-backend-dispatch, vc-annotate-mode-syntax-table): Remove.
8685 (vc-prefix-map): Move from vc-hooks.el and make autoloaded.
8686 (vc-release-greater-or-equal-p): Move to vc-rcs.el.
8687 (vc-file-clear-masterprops): Braindead "fix". It was a nop and
8688 still is. So maybe it should be removed.
8689 (vc-head-version, vc-find-binary): Remove.
8690 (vc-recompute-state): Move from vc-hooks.el.
8691 (vc-next-action-on-file): Add a `simple' argument to allow
8692 avoiding the `recompute' step (use for vc-cvs-simple-toggle).
8693 (vc-default-toggle-read-only, vc-default-record-rename): New funs.
8694 (vc-next-action, vc-dired-hook): Use vc-state instead of vc-cvs-status.
8695 (vc-dired-mode-map): Properly defvar it.
8696 (vc-print-log): Call log-view-mode if available.
8697 (small-temporary-file-directory): defvar instead of use boundp.
8698 (vc-merge-news): Moved to vc-cvs.el.
8699 (vc-default-merge-news): New function.
8700
8701 * vc-sccs.el: Require 'vc and 'vc-sccs-hooks.
8702 (vc-sccs-register-switches): New var, copied off of vc-rcs-hooks.
8703 (vc-sccs-latest-on-branch-p): Add a `FIXME' for a call to the
8704 unknown `vc-latest-version' function. It should probably refer to
8705 vc-workfile-version or somesuch, but it's very unclear to me and I
8706 don't have SCCS to test things.
8707
8708 * vc-sccs-hooks.el: Provide 'vc-sccs-hooks.
8709 (vc-sccs-state-heuristic): Fix typo.
8710 (vc-sccs-workfile-unchanged-p): Add missing argument.
8711
8712 * vc-rcs.el: Require vc and vc-rcs-hooks.
8713 (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks.
8714 (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p).
8715 (vc-release-greater-or-equal-p): Move from vc.
8716 (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part,
8717 vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates.
8718 (vc-rcs-checkout): Add a missing `new-version' argument in the
8719 call to vc-rcs-latest-on-branch-p. Hopefully that was the right one.
8720
8721 * vc-rcs-hooks.el: Provide 'vc-rcs-hooks.
8722 (vc-rcs-trunk-p, vc-rcs-branch-part): Moved from vc-rcs.el.
8723 (vc-rcs-latest-on-branch-p): Use the `version' argument rather
8724 than the apparently unbound `workfile-version'.
8725
8726 * vc-hooks.el (vc-master-templates): Def the obsolete var.
8727 (vc-file-prop-obarray): Use `make-vector'.
8728 (vc-backend-functions): Add new hookable functions
8729 vc-toggle-read-only, vc-record-rename and vc-merge-news.
8730 (vc-loadup): If neither backend nor default functions exist, use
8731 the backend function rather than nil.
8732 (vc-call-backend): If the function if not bound yet, try to load
8733 the non-hook file to see if it provides it.
8734 (vc-call): New macro plus use it wherever possible.
8735 (vc-backend-subdirectory-name): Use neither `vc-default-back-end'
8736 nor `vc-find-binary' since it's only called from
8737 vc-mistrust-permission which is only used once the backend is known.
8738 (vc-checkout-model): Fix parenthesis.
8739 (vc-recompute-state, vc-prefix-map): Move to vc.el.
8740
8741 * vc-cvs.el: Require 'vc and 'vc-cvs-hooks (for compiler warnings).
8742 (vc-cvs-release, vc-cvs-system-release): Remove.
8743 (vc-cvs-use-edit, vc-cvs-simple-toggle): New config variables.
8744 (vc-cvs-dired-state-info): Use `cvs-state' and slightly different
8745 status symbols.
8746 (vc-cvs-parse-status, vc-cvs-state): Move from vc-cvs-hooks.el.
8747 (vc-cvs-toggle-read-only): First cut at a function to allow a
8748 cvs-status-free vc-toggle-read-only.
8749 (vc-cvs-merge-news): Move from cvs-merge-news in vc.el.
8750 (vc-cvs-checkin): Use vc-recompute-state+vc-state instead of
8751 vc-cvs-status. Also set vc-state rather than vc-locking-user.
8752 (vc-cvs-checkout): Modify access rights directly if the user
8753 requested not to use `cvs edit'. And refresh the mode line.
8754
8755 * vc-cvs-hooks.el: Provide 'vc-cvs-hooks.
8756 (vc-cvs-state, vc-cvs-parse-status): Move to vc-cvs.el.
8757
87582000-09-04 Stefan Monnier <monnier@cs.yale.edu>
8759
8760 * vc-cvs.el (vc-cvs-checkout): Docstring fix. Added a `(if
8761 workfile' that got lost when the code was extracted from vc.el.
8762 And merged the tail with the rest of the code (not possible in the
8763 old vc.el where the tail was shared among all backends). And
8764 explicitly set the state to 'edited if `writable' is set.
8765
8766 * vc-cvs-hooks.el (vc-cvs-registered): Use expand-file-name.
8767 (vc-cvs-state): Be careful to return the value from
8768 vc-cvs-parse-state.
8769 (vc-cvs-parse-status): Use expand-file-name. Don't set 'vc-state
8770 property but return it instead. Also be careful to handle a nil
8771 or "" `rev' when workfile is non-nil (it was handled properly when
8772 workfile was nil).
8773
8774 * vc.el: Removed those pesky unnecessary `(function' quotes.
8775 (vc-annotate-mode-map, vc-annotate-mode-syntax-table): Initialize
8776 directly in the defvar.
8777 (vc-do-command): Bind inhibit-read-only so as to properly handle
8778 the case where the destination buffer has been made read-only.
8779 (vc-diff): Delegate to vc-version-diff in all cases.
8780 (vc-version-diff): Setup the *vc-diff* buffer as was done in vc-diff.
8781 (vc-annotate-mode-variables): Removed (code moved partly to
8782 defvars and partly to vc-annotate-add-menu).
8783 (vc-annotate-mode): Turned into a derived-mode.
8784 (vc-annotate-add-menu): Moved in code in
8785 vc-annotate-mode-variables.
8786 (vc-update-change-log): Use make-temp-file if available.
8787
87882000-09-04 Martin Lorentzson <martinl@delysid.gnu.org>
8789
8790 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): References to
8791 `vc-checkout-model' updated to `vc-cvs-update-model'.
8792
87932000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
8794
8795 * vc.el (vc-next-action-on-file): Added handling of state
8796 `unlocked-changes'.
8797 (vc-checkout-carefully): Is now practically obsolete, unless the
8798 above is too slow to be enabled unconditionally.
8799 (vc-update-change-log): Fixed typo.
8800
8801 * vc-sccs.el (vc-sccs-steal-lock): Renamed from `vc-sccs-steal'.
8802
8803 * vc-sccs-hooks.el (vc-sccs-state): Somewhat rewritten.
8804 Now handles state `unlocked-changes'.
8805 (vc-sccs-workfile-unchanged-p): New function, to support the above.
8806
8807 * vc-rcs.el (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'.
8808
8809 * vc-rcs-hooks.el (vc-rcs-state): Fixed typo.
8810 (vc-rcs-fetch-master-state): Bug fixes. Recognize state
8811 `unlocked-changes'.
8812 (vc-rcs-workfile-unchanged-p): Renamed from
8813 `vc-rcs-workfile-unchanged'. This is not a real backend-specific
8814 function yet, but supposed to become one soon.
8815
8816 * vc-hooks.el (vc-backend-functions): Renamed `vc-steal' to
8817 `vc-steal-lock'.
8818 (vc-call-backend): Changed error message.
8819 (vc-state): Added description of state `unlocked-changes'.
8820
88212000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
8822
8823 * vc-cvs-hooks.el (vc-cvs-registered): Fixed bug that caused it to
8824 always return t in CVS-controlled directories.
8825
8826 * vc.el (vc-responsible-backend): New function.
8827 (vc-register): Largely rewritten.
8828 (vc-admin): Removed (implementation moved into vc-register).
8829 (vc-checkin): Redocumented.
8830 (vc-finish-logentry): If no backend defined yet (because we are in
8831 the process of registering), use the responsible backend.
8832
8833 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
8834 Updated function lists.
8835 (vc-call-backend): Fixed typo.
8836
8837 * vc-sccs.el, vc-rcs.el, vc-cvs.el (vc-BACKEND-responsible-p):
8838 New functions.
8839 (vc-BACKEND-register): Renamed from `vc-BACKEND-admin'.
8840 Removed query option. Redocumented.
8841
88422000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
8843
8844 * vc-rcs.el, vc-cvs.el: Updated everything to use `vc-checkout-model'.
8845
8846 * vc.el: Updated callers of `vc-checkout-required' to use
8847 `vc-checkout-model'.
8848
88492000-09-04 Martin Lorentzson <martinl@gnu.org>
8850
8851 * vc-rcs.el (vc-rcs-backend-release-p): function added. other
8852 stuff updated to reference this function instead of the old
8853 `vc-backend-release-p'.
8854
88552000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
8856
8857 * vc-sccs-hooks.el (vc-uses-locking): Renamed to
8858 vc-checkout-model. Return appropriate values. Updated callers.
8859
88602000-09-04 Martin Lorentzson <martinl@gnu.org>
8861
8862 * vc.el (vc-backend-release, vc-backend-release-p): Moved to vc-rcs.el.
8863 (vc-backend-revert): Function moved into `vc-revert';
8864 `vc-next-action' must be updated to accomodate this change.
8865 (vc-backend-steal): Function moved into `vc-finish-steal'.
8866 (vc-backend-logentry-check): Function moved into
8867 `vc-finish-logentry'.
8868 (vc-backend-printlog): Function moved into `vc-print-log'.
8869 (vc-backend-uncheck): Function moved into `vc-cancel-version'.
8870 (vc-backend-assign-name): Function moved into
8871 `vc-create-snapshot'.
8872
88732000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
8874
8875 * vc-rcs-hooks.el, vc-cvs-hooks.el (vc-uses-locking):
8876 Rename to vc-checkout-model. Return appropriate values.
8877 Update callers.
8878
8879 * vc-hooks.el (vc-backend-hook-functions): Rename vc-uses-locking
8880 to vc-checkout-model.
8881 (vc-checkout-required): Rename to vc-checkout-model.
8882 Re-implement and re-comment.
8883 (vc-after-save): Use vc-checkout-model.
8884
88852000-09-04 Martin Lorentzson <martinl@gnu.org>
8886
8887 * vc.el (vc-workfile-unchanged-p,vc-diff,vc-version-diff):
8888 Update to use the vc-BACKEND-diff functions instead.
8889 `vc-diff' is now working.
8890
8891 * vc-rcs.el (vc-rcs-logentry-check): New function.
8892
8893 * vc-cvs.el (vc-cvs-logentry-check): New function.
8894
8895 * vc-sccs.el (vc-sccs-diff): Function changed name from
8896 `vc-backend-diff'. This makes `vc-diff' work.
8897
8898 * vc-hooks.el (vc-backend-functions): Add `vc-diff' to the list
8899 of functions possibly implemented in a vc-BACKEND library.
8900 (vc-checkout-required): Fix bug that caused an error to be
8901 signaled during `vc-after-save'.
8902
8903 * vc.el: Fix typo.
8904 This checkin is made with our new VC code base for the very first time.
8905 A simple `(vc-checkin (buffer-file-name))' was used to perform it.
8906
8907 * vc-cvs.el (vc-cvs-revert,vc-cvs-checkout): Function calls to
8908 `vc-checkout-required' updated to `vc-cvs-uses-locking'.
8909
8910 * vc-hooks.el (vc-backend-hook-functions): `vc-checkout-required'
8911 updated to `vc-uses-locking'.
8912 (vc-checkout-required): Call to backend function.
8913 `vc-checkout-required' updated to `vc-uses-locking' instead.
8914
8915 * vc-rcs-hooks.el (vc-rcs-fetch-master-state): Function calls to
8916 `vc-checkout-required' updated to `vc-rcs-uses-locking'.
8917
8918 * vc.el (vc-checkin): Merge with `vc-backend-checkin' and update
8919 to match the split into various backends.
8920 (vc-backend-checkin): Remove. Merge with `vc-checkin'.
8921 (vc-retrieve-snapshot): Bug fix.
8922
89232000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
8924
8925 * vc-sccs.el (vc-sccs-release): Doc fix.
8926
89272000-09-04 Martin Lorentzson <martinl@gnu.org>
8928
8929 * vc.el (vc-next-action-on-file): Bug found and fixed.
8930 (vc-checkout, vc-version-other-window, vc-retrieve-snapshot)
8931 (vc-cancel-version): Handle of vc-BACKEND-checkout updated.
8932
8933 * vc-rcs.el (vc-rcs-checkin, vc-rcs-previous-version)
8934 (vc-rcs-checkout): Name space cleaned up. No more revision number
8935 crunching function names that are not prefixed with vc-rcs.
8936 (vc-rcs-checkout-model): Function added. References to
8937 `vc-checkout-model' replaced.
8938
89392000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
8940
8941 * vc.el (vc-next-action-on-file): Rewritten for the new state model.
8942 (vc-backend-merge-news): Renamed to `vc-merge-news'. (Specific parts
8943 still need to be split, and implemented for RCS).
8944
89452000-09-04 Martin Lorentzson <martinl@gnu.org>
8946
8947 * vc-sccs-hooks.el (vc-sccs-state-heuristic): Bug found and fixed.
8948
8949 * vc-sccs.el (vc-sccs-admin): Added the query-only option as
8950 required by the vc.el file.
8951
8952 * vc-rcs.el (vc-rcs-admin): Added the query-only option as
8953 required by the vc.el file.
8954 (vc-rcs-exists): Function added.
8955
8956 * vc-cvs.el (vc-cvs-admin): Added the query-only option as
8957 required by the vc.el file.
8958
8959 * vc.el (vc-admin): Updated to handle selection of appropriate
8960 backend. Current implementation is crufty and need re-thinking.
8961
8962 * vc-hooks.el (vc-parse-buffer): Bug found and fixed.
8963
89642000-09-04 Martin Lorentzson <martinl@gnu.org>
8965
8966 * vc-cvs.el (vc-cvs-annotate-difference): Updated to handle
8967 beginning of annotate buffers correctly.
8968
8969 * vc.el (vc-annotate-get-backend, vc-annotate-display-default)
8970 (vc-annotate-add-menu, vc-annotate, vc-annotate-display): Annotate
8971 functionality updated quite a lot to support multiple backends.
8972 Variables `vc-annotate-mode', `vc-annotate-buffers',
8973 `vc-annotate-backend' added.
8974
8975 * vc-hooks.el (vc-backend-functions): `vc-annotate-command',
8976 `vc-annotate-difference' added to supported backend functions.
8977
89782000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
8979
8980 * vc-rcs.el, vc-sccs.el, vc-cvs.el (vc-*-checkout):
8981 Use with-temp-file instead of /bin/sh. Merged from mainline
8982
89832000-09-04 Martin Lorentzson <martinl@gnu.org>
8984
8985 * vc-sccs-hooks.el (vc-sccs-registered): Updated.
8986
8987 * vc-rcs-hooks.el (vc-rcs-registered): Updated.
8988
8989 * vc-cvs-hooks.el (vc-cvs-registered): Updated.
8990
89912000-09-04 Martin Lorentzson <martinl@gnu.org>
8992
8993 * vc-hooks.el: vc-state-heuristic added to
8994 vc-backend-hook-functions.
8995
8996 * vc-sccs-hooks.el (vc-sccs-registered): Bug fix.
8997
8998 * vc-rcs-hooks.el (vc-rcs-registered): Bug fix.
8999
9000 * vc.el, vc-sccs-hooks.el, vc-rcs-hooks.el, vc-hooks.el: Rename
9001 `vc-uses-locking' to `vc-checkout-required'. Rename the `locked'
9002 state to `reserved'.
9003
9004 * vc-cvs.el, vc-cvs-hooks.el: Rename `vc-uses-locking' to
9005 `vc-checkout-required'. Rename the `locked' state to `reserved'.
9006
90072000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9008
9009 * vc-rcs-hooks.el: Implement new state model. Hardly anything
9010 untouched.
9011
9012 * vc-rcs.el (vc-rcs-latest-on-branch-p): Move to vc-rcs-hooks.el.
9013
9014 * vc.el (vc-update-change-log): Use small-temporary-file-directory,
9015 if defined. (Merged from main line, slightly adapted.)
9016
9017 * vc-cvs.el (vc-cvs-annotate-difference): Handle possible
9018 millenium problem (merged from mainline).
9019
90202000-09-04 Martin Lorentzson <martinl@gnu.org>
9021
9022 * vc-cvs.el: Split the annotate feature into a BACKEND-specific
9023 part and moved the non-BACKEND stuff to vc.el.
9024
9025 * vc.el: Split the annotate feature into a BACKEND specific part
9026 and moved it from the vc-cvs.el file to this one.
9027
90282000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9029
9030 * vc-hooks.el: Implement new state model.
9031 (vc-state, vc-state-heuristic, vc-default-state-heuristic): New funs.
9032 (vc-locking-user): Simplify. Now only needed if the file is
9033 locked by somebody else.
9034 (vc-lock-from-permissions): Remove. Functionality is in
9035 vc-sccs-hooks.el and vc-rcs-hooks.el now.
9036 (vc-mode-line-string): New name for former vc-status. Adapted.
9037 (vc-mode-line): Adapt to use the above. Remove optional parameter.
9038
9039 * vc-cvs-hooks.el (vc-cvs-state, vc-cvs-state-heuristic): New funs.
9040 Various simplifications and adaptations all over the place.
9041
9042 * vc-sccs-hooks.el (vc-sccs-state, vc-sccs-state-heuristic): New funs.
9043 Simplify and adapt the rest.
9044
9045 * vc.el (vc-resynch-window): Add TODO comment: check for
9046 interaction with view mode according to recent RCS change.
9047 (vc-backend-merge-news): Merge "CMUP" patch from mainline.
9048
90492000-09-04 Martin Lorentzson <martinl@gnu.org>
9050
9051 * vc.el: Convert the remaining function comments to docstrings.
9052
90532000-09-04 Martin Lorentzson <martinl@gnu.org>
9054
9055 * vc.el (vc-backend-release, vc-release-greater-or-equal)
9056 (vc-backend-release-p, vc-trunk-p, vc-branch-p, vc-branch-part)
9057 (vc-minor-part, vc-previous-version): Functions that operate and
9058 compare revision numbers got proper documentation. Comments added
9059 about their possible removal.
9060
90612000-09-04 Martin Lorentzson <martinl@gnu.org>
9062
9063 * vc.el (vc-latest-on-branch-p): Function removed and replaced in
9064 the vc-backend.el files.
9065
9066 * vc-sccs.el (vc-sccs-latest-on-branch-p): Function added.
9067
9068 * vc-rcs.el (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p)
9069 (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part)
9070 (vc-rcs-previous-version): Functions added.
9071
9072 * vc-cvs.el (vc-cvs-latest-on-branch-p): Function added.
9073
9074 * vc-rcs-hooks.el (vc-rcs-master-templates): Extra `)' removed.
9075
90762000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9077
9078 * vc-hooks.el (vc-master-templates): Is really obsolete.
9079 Comment out the definition for now. What is the right procedure
9080 to get rid of it?
9081 (vc-registered, vc-backend, vc-buffer-backend, vc-name): Largely
9082 rewritten.
9083 (vc-default-registered): Remove.
9084 (vc-check-master-templates): New function; does mostly what the
9085 above did before.
9086 (vc-locking-user): Don't rely on the backend to set the property.
9087
9088 * vc-rcs-hooks.el (vc-rcs-master-templates): Use simpler values.
9089 Rewrite documentation.
9090 (vc-rcs-templates-grabbed): New variable.
9091 (vc-rcs-grab-templates): New function.
9092 (vc-rcs-registered): Rewrite to use above mechanism.
9093
9094 * vc-sccs-hooks.el (vc-sccs-master-templates): Use simpler values.
9095 Rewrite documentation.
9096 (vc-sccs-templates-grabbed): New variable.
9097 (vc-sccs-grab-templates): New function.
9098 (vc-sccs-registered): Rewrite to use above mechanism.
9099 (vc-sccs-search-project-dir): Rename from vc-search-sccs-project-dir.
9100 Don't throw the result, simply return it.
9101
9102 * vc-cvs-hooks.el (vc-cvs-master-templates): Remove.
9103 (vc-cvs-find-master): Remove. Code is now in vc-cvs-registered.
9104 (vc-cvs-registered): Does the check itself now. Simplify.
9105
9106 * vc-cvs.el (vc-cvs-revert): Merge and adapt "unedit" patch
9107 from main line.
9108
91092000-09-04 Martin Lorentzson <martinl@gnu.org>
9110
9111 * vc-cvs.el (vc-cvs-diff): New function.
9112
9113 * vc-sccs.el (vc-sccs-diff): New function.
9114
9115 * vc-rcs.el (vc-rcs-diff): New function.
9116 (vc-rcs-checkout): Bug (typo) found and fixed.
9117 (vc-rcs-register-switches): New variable.
9118
9119 * vc.el (vc-backend-diff): Function removed and placed in the
9120 backend files.
9121
91222000-09-04 Martin Lorentzson <martinl@gnu.org>
9123
9124 * vc-cvs.el (vc-cvs-checkout): Function `vc-cvs-checkout' added.
9125
9126 * vc.el (vc-backend-checkout): Function removed and replaced in
9127 the vc-backend.el files.
9128
9129 * vc-sccs.el (vc-sccs-checkout): Added function `vc-sccs-checkout'.
9130
9131 * vc.el (vc-backend-admin): Removed and replaced in the
9132 vc-backend.el files.
9133
9134 * vc.el (Martin): Removed all the annotate functionality since it
9135 is CVS backend specific.
9136
91372000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9138
9139 * spec.txt: Added specification of vc-state.
9140
9141 * vc-sccs-hooks.el (vc-sccs-master-properties):
9142 Remove handling of vc-latest-version and
9143 vc-your-latest-version. What used to be vc-latest-version, is now
9144 returned as vc-workfile-version.
9145 (vc-sccs-workfile-version): Adapt.
9146
91472000-09-04 Dave Love <fx@gnu.org>
9148
9149 * vc.el: [Merged from mainline.]
9150 (vc-dired-mode): Make the dired-move-to-filename-regexp
9151 regexp match the date, to avoid treating date as file size.
9152 Add YYYY S option to WESTERN/
9153
91542000-09-04 Dave Love <fx@gnu.org>
9155
9156 * vc.el: Require `compile' when compiling.
9157 (vc-logentry-check-hook): New option.
9158 (vc-steal-lock): Use compose-mail.
9159 (vc-dired-mode-map): Defvar when compiling.
9160 (vc-add-triple, vc-record-rename, vc-lookup-triple): Moved to
9161 vc-sccs.el and renamed. Callers changed.
9162 (vc-backend-checkout, vc-backend-logentry-check)
9163 (vc-backend-merge-news): Doc fix.
9164 (vc-default-logentry-check): New function.
9165 (vc-backend-checkin, vc-backend-revert, vc-backend-steal)
9166 (vc-backend-uncheck, vc-backend-print-log, vc-backend-assign-name)
9167 (vc-backend-merge): Doc fix. Use backend functions.
9168 (vc-check-headers): Use backend functions.
9169
9170 * vc-cvs.el: Require vc when compiling.
9171 (vc-cvs-register-switches): Doc fix.
9172 (vc-annotate-color-map, vc-annotate-menu-elements): Fix custom type.
9173 (vc-cvs-print-log, vc-cvs-assign-name, vc-cvs-merge)
9174 (vc-cvs-check-headers, vc-cvs-steal, vc-cvs-revert, vc-cvs-checkin):
9175 New functions (code from vc.el).
9176 (vc-annotate-display-default): Fix interactive spec.
9177 (vc-annotate-time-span): Doc fix.
9178
9179 * vc-rcs.el: Require vc when compiling.
9180 (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge)
9181 (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert)
9182 (vc-rcs-checkin): New functions (code from vc.el).
9183 (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout):
9184 Doc fix.
9185 (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release).
9186
9187 * vc-sccs.el: Require vc when compiling.
9188 (vc-sccs-print-log, vc-sccs-assign-name, vc-sccs-merge)
9189 (vc-sccs-check-headers, vc-sccs-steal, vc-sccs-uncheck)
9190 (vc-sccs-revert)
9191 (vc-sccs-checkin, vc-sccs-logentry-check): New functions (code
9192 from vc.el).
9193 (vc-sccs-add-triple, vc-sccs-record-rename)
9194 (vc-sccs-lookup-triple): Moved from vc.el and renamed.
9195 (vc-sccs-admin): Doc fix.
9196
91972000-09-04 Martin Lorentzson <martinl@gnu.org>
9198
9199 * vc-rcs.el (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part)
9200 (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release)
9201 (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions
9202 from vc.el.
9203
9204 * vc-sccs.el (vc-admin-sccs): Added from vc.el
9205
9206 * vc-cvs.el: Moved the annotate functionality from vc.el.
9207 (vc-cvs-admin, vc-cvs-fetch-status): Added from vc.el.
9208
92092000-09-04 Dave Love <fx@gnu.org>
9210
9211 * vc.el (vc-backend-release): Call vc-system-release.
9212
9213 * vc-sccs.el (vc-sccs-system-release):
9214 Renamed from vc-sccs-backend-release.
9215
9216 * vc-rcs.el (vc-rcs-system-release):
9217 Renamed from vc-rcs-backend-release.
9218
9219 * vc-cvs.el (vc-cvs-system-release):
9220 Renamed from vc-cvs-backend-release.
9221
92222000-09-04 Dave Love <fx@gnu.org>
9223
9224 * vc.el (vc-rcs-release, vc-cvs-release, vc-sccs-release): Moved to
9225 backend files.
9226 (vc-backend-release): Dispatch to backend functions.
9227 (vc-backend-release-p): Don't mention CVS, RCS. [The SCCS case
9228 probably needs attention.]
9229
9230 * vc-sccs.el, vc-rcs.el (vc-sccs-release): Moved from vc.el.
9231 (vc-sccs-backend-release): New function.
9232
9233 * vc-cvs.el (vc-cvs-release): Moved from vc.el.
9234 (vc-cvs-backend-release): New function.
9235
9236 * vc.el (vc-dired-mode, vc-dired-reformat-line, vc-dired-purge):
9237 Doc fix.
9238 (vc-fetch-cvs-status): Moved to vc-cvs.el and renamed.
9239 (vc-default-dired-state-info): New function.
9240 (vc-dired-state-info): Dispatch to backends.
9241 (vc-dired-hook): Doc fix. Simplify, pending removal of CVS specifics.
9242
9243 * vc-cvs.el (vc-cvs-dired-state-info, vc-cvs-fetch-status): Moved
9244 from vc.el and renamed.
9245
92462000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9247
9248 * vc.el (vc-file-clear-masterprops, vc-latest-on-branch-p)
9249 (vc-version-other-window, vc-backend-assign-name): Removed
9250 references to vc-latest-version; sometimes changed into
9251 vc-workfile-version.
9252
9253 * vc-rcs-hooks.el (vc-master-workfile-version): Renamed to
9254 vc-rcs-master-workfile-version.
9255 (vc-rcs-workfile-version): Use the above. Don't call
9256 vc-latest-version (that was unreachable code, anyway).
9257 (vc-rcs-fetch-master-properties): Doc fix.
9258
9259 * vc-hooks.el (vc-latest-version, vc-your-latest-version): Removed.
9260 (vc-backend-hook-functions): Removed them from this list, too.
9261 (vc-fetch-properties): Removed.
9262 (vc-workfile-version): Doc fix.
9263
9264 * vc-rcs-hooks.el (vc-rcs-consult-headers): New function.
9265 (vc-rcs-workfile-version, vc-rcs-locking-user)
9266 (vc-rcs-uses-locking): Use it.
9267
9268 * vc-hooks.el (vc-consult-rcs-headers):
9269 Moved into vc-rcs-hooks.el, under the name
9270 vc-rcs-consult-headers.
9271
9272 * vc-cvs-hooks.el (vc-cvs-workfile-version): Don't consult RCS
9273 headers.
9274 (vc-cvs-find-master): Use this name only; correct different
9275 versions of the name.
9276
9277 * vc-sccs-hooks.el (vc-sccs-master-locks, vc-sccs-master-locking-user):
9278 New functions.
9279 (vc-sccs-locking-user): Use the latter.
9280
9281 * vc-rcs-hooks.el (vc-rcs-master-locks, vc-rcs-master-locking-user):
9282 New functions.
9283
9284 * vc-hooks.el (vc-master-locks, vc-master-locking-user):
9285 Moved into both
9286 vc-rcs-hooks.el and vc-sccs-hooks.el. These properties and access
9287 functions are implementation details of those two backends.
9288
92892000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9290
9291 * vc-rcs-hooks.el (vc-rcs-fetch-master-properties)
9292 (vc-rcs-parse-locks): RCS-specific code moved here from vc-hooks.
9293
9294 * vc-sccs-hooks.el (vc-sccs-fetch-master-properties)
9295 (vc-sccs-parse-locks): SCCS-specific code moved here from
9296 vc-hooks.
9297
9298 * vc-cvs-hooks.el (vc-cvs-fetch-master-properties): CVS-specific
9299 code moved here from vc-hooks.
9300
9301 * vc-hooks.el (vc-parse-locks, vc-fetch-master-properties): Split
9302 into back-end specific parts and removed. Callers not updated
9303 yet; because I guess these callers will disappear into back-end
9304 specific files anyway.
9305
93062000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9307
9308 * vc.el (with-vc-file, vc-next-action-on-file, vc-merge)
9309 (vc-backend-checkout): Changed calls to `vc-checkout-model' to
9310 `vc-uses-locking'.
9311
9312 * vc-hooks.el (vc-checkout-model): Renamed to vc-uses-locking.
9313 Store yes/no in the property, and return t/nil. Updated all
9314 callers.
9315
9316 * vc-sccs-hooks.el (vc-sccs-checkout-model): Renamed to
9317 vc-sccs-uses-locking. Don't set property.
9318 (vc-sccs-locking-user): Don't set property.
9319
9320 * vc-cvs-hooks.el (vc-cvs-checkout-model): Renamed to
9321 vc-cvs-uses-locking. Don't set property here; leave that to
9322 vc-hooks.
9323 (vc-cvs-locking-user): Reflect above change. Streamlined.
9324
9325 * vc-rcs-hooks.el (vc-rcs-checkout-model): Renamed to
9326 vc-rcs-uses-locking.
9327 (vc-rcs-locking-user): Reflect above change.
9328
93292000-09-04 Dave Love <fx@gnu.org>
9330
9331 * vc-sccs-hooks.el (vc-sccs-checkout-model): New function.
9332
9333 * vc-rcs-hooks.el (vc-rcs-checkout-model): New function.
9334
9335 * vc-hooks.el (vc-checkout-model): Punt to backends.
9336
9337 * vc-cvs-hooks.el (vc-cvs-checkout-model): New function.
9338
9339 * vc.el (vc-fetch-cvs-status): Use renamed vc-cvs-parse-status.
9340
9341 * vc-rcs-hooks.el (vc-rcs-workfile-version, vc-rcs-locking-user):
9342 New functions.
9343
9344 * vc-sccs-hooks.el (vc-sccs-workfile-version, vc-sccs-locking-user):
9345 New functions.
9346
9347 * vc-cvs-hooks.el (vc-handle-cvs): Doc fix.
9348 (vc-cvs-workfile-version, vc-cvs-locking-user): New functions.
9349
9350 * vc-hooks.el (vc-default-locking-user): New function.
9351 (vc-locking-user, vc-workfile-version): Punt to backends.
9352
93532000-09-04 Dave Love <fx@gnu.org>
9354
9355 * vc-hooks.el (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff)
9356 (vc-master-workfile-version): Moved from vc-hooks.
9357
9358 * vc-rcs-hooks.el: Fix duplicate code in last change.
9359
9360 * vc-rcs-hooks.el: Require vc-hooks when compiling.
9361 (vc-rcs-master-templates): Improve :type.
9362 (vc-rcsdiff-knows-brief, vc-rcs-lock-from-diff,
9363 vc-master-workfile-version): Moved from vc-hooks.
9364
9365 * vc-sccs-hooks.el: Require vc-hooks when compiling.
9366 (vc-sccs-master-templates): Improve :type.
9367 (vc-sccs-lock-file): Moved/renamed from vc-hooks.el vc-lock-file.
9368
9369 * vc-hooks.el (vc-lock-file): Moved to vc-sccs-hooks and renamed.
9370
9371 * vc-cvs-hooks.el: Require vc-hooks when compiling.
9372 (vc-cvs-master-templates): Improve :type. Use
9373 vc-cvs-find-cvs-master.
9374 (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status): Moved here
9375 from vc-hooks.
9376 (vc-vc-find-cvs-master): Renamed to vc-cvs-find-cvs-master.
9377
9378 * vc-hooks.el (vc-handle-cvs, vc-cvs-parse-status, vc-cvs-status):
9379 Moved to vc-cvs-hooks.
9380
9381 * vc-hooks.el: Add doc strings in various places. Simplify the
9382 minor mode setup.
9383 (vc-handled-backends): New user variable.
9384 (vc-parse-buffer, vc-insert-file, vc-default-registered): Minor
9385 simplification.
9386
93872000-09-04 Dave Love <fx@gnu.org>
9388
9389 * vc.el: Some doc fixes for autoloaded and interactive functions.
9390 Fix compilation warnings from ediff stuff.
9391 (vc-rcs-release, vc-cvs-release, vc-sccs-release): Custom fix.
9392
9393 * vc-sccs-hooks.el (vc-sccs-master-templates): Add :version.
9394
9395 * vc-cvs-hooks.el (vc-cvs-master-templates): Add :version.
9396
9397 * vc-rcs-hooks.el (vc-rcs-master-templates): Add :version.
9398
93992000-09-04 Dave Love <fx@gnu.org>
9400
9401 * vc-hooks.el (vc-backend-hook-functions, vc-backend-functions):
9402 New variable.
9403 (vc-make-backend-function, vc-loadup, vc-call-backend)
9404 (vc-backend-defines): New functions.
9405
9406 * vc-hooks.el: Various doc fixes.
9407 (vc-default-back-end, vc-follow-symlinks): Custom fix.
9408 (vc-match-substring): Function removed. Callers changed to use
9409 match-string.
9410 (vc-lock-file, vc-consult-rcs-headers, vc-kill-buffer-hook):
9411 Simplify.
9412
94132000-09-04 Dave Love <fx@gnu.org>
9414
9415 * vc-sccs-hooks.el (vc-sccs-master-templates): Fix doc, custom
9416 type.
9417 (vc-sccs-project-dir, vc-search-sccs-project-dir)
9418 (vc-sccs-registered): Doc fix.
9419
9420 * vc-cvs-hooks.el (vc-cvs-master-templates): Fix doc, custom type.
9421 (vc-cvs-registered): Doc fix.
9422
9423 * vc-rcs-hooks.el (vc-rcs-master-templates): Fix doc, custom type.
9424 (vc-rcs-registered): Doc fix.
9425
94262000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9427
9428 * vc-rcs-hooks.el, vc-cvs-hooks.el, vc-sccs-hooks.el: New file.
9429
9430 * vc-hooks.el: vc-registered has been renamed
9431 vc-default-registered. Some functions have been moved to the
9432 backend specific files. they all support the
9433 vc-BACKEND-registered functions.
9434
94352000-09-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
9436
9437 * vc-hooks.el: This is 1998-11-11T18:47:32Z!kwzh@gnu.org from the emacs sources
9438
9439 * vc.el: This is 1999-03-13T05:04:24Z!kwzh@gnu.org from the emacs sources
9440
94412000-09-04 Dave Love <fx@gnu.org>
9442
9443 * mouse.el (mouse-major-mode-menu, mouse-popup-menubar): Run
9444 menu-bar-update-hook.
9445
9446 * help.el (help-manyarg-func-alist): Add
9447 find-operation-coding-system.
9448
9449 * wid-edit.el (widget-sexp-validate): Fix garbled code.
9450
9451 * custom.el (custom-set-variables): Print message about errors in
9452 setting.
9453
94542000-09-03 Andrew Innes <andrewi@gnu.org>
9455
9456 * makefile.w32-in: Change to DOS line endings.
9457
94582000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
9459
9460 * mouse.el (mouse-popup-menubar): Supply the prompt string for
9461 minor-mode keymaps, if they don't have one.
9462
94632000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
9464
9465 * eshell/esh-module.el (eval-when-compile): Don't lose if
9466 esh-module.el's file name is truncated to DOS 8+3 limits.
9467
94682000-09-01 John Wiegley <johnw@gnu.org>
9469
9470 * pcomplete.el (pcomplete-dirs-or-entries): Added a missing
9471 predicate, which caused entries in the completion list to be
9472 doubled.
9473
94742000-08-30 John Wiegley <johnw@gnu.org>
9475
9476 * eshell/esh-mode.el (eshell-mode): Bound C-c M-d to toggle direct
9477 sending to subprocesses. Also, hook pre-command-hook if
9478 `eshell-send-direct-to-subprocesses' is non-nil.
9479 (eshell-send-direct-to-subprocesses): New config variable. If t,
9480 subprocess input is send immediately.
9481 (eshell-toggle-direct-send): New function.
9482 (eshell-self-insert-command): New function.
9483 (eshell-intercept-commands): New function.
9484 (eshell-send-input): If direct subprocess sending is enabled,
9485 don't echo any input to the Eshell buffer. Let the subprocess
9486 handle that. This requires "stty echo" in bash, for example.
9487
94882000-08-28 John Wiegley <johnw@gnu.org>
9489
9490 * eshell/esh-var.el (pcomplete/eshell-mode/unset): Added
9491 completion function for Eshell's implementation of `unset'.
9492
94932000-09-02 Eli Zaretskii <eliz@is.elta.co.il>
9494
9495 * info.el (Info-directory-list): Doc fix.
9496
94972000-08-31 Peter Breton <pbreton@ne.mediaone.net>
9498
9499 * filecache.el (file-cache-add-directory-using-find): Don't quote
9500 wildcards on MS-DOS. Suggested by Eli Zaretskii <eliz@is.elta.co.il>.
9501
95022000-08-31 Kenichi Handa <handa@etl.go.jp>
9503
9504 * help.el (help-make-xrefs): Don't make hyperlinks for incorrect
9505 coding systems.
9506
95072000-08-30 Andrew Innes <andrewi@gnu.org>
9508
9509 * timer.el (run-with-idle-timer): Undo last change, so that timer
9510 is not activated immediately if Emacs is already idle. Some
9511 existing code relies on this behaviour.
9512
95132000-08-30 Miles Bader <miles@gnu.org>
9514
9515 * frame.el (set-frame-font): Do completion of font-name for
9516 interactive use.
9517
95182000-08-30 Kenichi Handa <handa@etl.go.jp>
9519
9520 * international/quail.el (quail-start-translation): Bind locally
9521 last-command-event, last-command, and this-command.
9522 (quail-start-conversion): Likewise.
9523 (quail-self-insert-command): Fix docstring.
9524
95252000-08-29 Gerd Moellmann <gerd@gnu.org>
9526
9527 * progmodes/executable.el
9528 (executable-make-buffer-file-executable-if-script-p): Check that
9529 buffer contains at least 2 characters.
9530
95312000-08-29 Eli Zaretskii <eliz@is.elta.co.il>
9532
9533 * help.el (help-make-xrefs, help-xref-mule-regexp): Doc fix.
9534
95352000-08-29 Dave Love <fx@gnu.org>
9536
9537 * diff-mode.el (diff-mode) <defgroup>: Add :version.
9538 (diff-mode-shared-map): Bind mouse-2.
9539 (diff-imenu-generic-expression): New variable.
9540 (diff-mode): Use it.
9541
9542 * mouse.el (mouse-major-mode-menu): Use local-key-binding.
9543 (mouse-popup-menubar): Add minor mode menus.
9544 (popup-menu): Check for lookup-key returning number.
9545
95462000-08-29 Miles Bader <miles@gnu.org>
9547
9548 * comint.el (comint-send-input): Create overlays using the proper
9549 front/read-advance arguments.
9550
95512000-08-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9552
9553 * ps-print.el: Even/odd pages printing. Doc fix.
9554 (ps-print-version): New version number (6.0).
9555 (ps-setup, ps-print-page-p, ps-background-text, ps-background-image)
9556 (ps-background, ps-begin-file, ps-begin-job): Code fix.
9557 (ps-print-duplex-feature): Variable eliminated.
9558 (ps-even-or-odd-pages): New variable.
9559
9560 * progmodes/ebnf2ps.el: Doc fix.
9561 (ebnf-version): New version (3.3).
9562 (ebnf-user-arrow): Change variable customization to sexp.
9563 (ebnf-user-arrow): Function eliminated.
9564 (ebnf-eps-finish-and-write, ebnf-insert-ebnf-prologue): Code fix.
9565
95662000-08-29 Kenichi Handa <handa@etl.go.jp>
9567
9568 * help.el (help-xref-mule-regexp): New variable.
9569 (help-make-xrefs): Handle help-xref-mule-regexp.
9570
9571 * international/mule-cmds.el (help-xref-mule-regexp-template): New
9572 variable.
9573 (describe-input-method): Temporarily activate the specfied input
9574 method to display the information.
9575 (describe-language-environment): Hyperlinks to mule related items.
9576
9577 * international/mule-diag.el (charset-multibyte-form-string): New
9578 function.
9579 (list-character-sets-1): Use charset-multibyte-form-string.
9580 (describe-character-set): New function.
9581 (describe-coding-system): Hyperlinks to safe character sets.
9582
9583 * international/quail.el (quail-help): New arg PACKAGE.
9584 Hyperlinks to mule related items.
9585 (quail-help-insert-keymap-description): Use
9586 substitute-command-keys instead of describe-bindings.
9587 (quail-translation-help): Hyperlinks to mule related items.
9588
95892000-08-28 John Wiegley <johnw@gnu.org>
9590
9591 * eshell/esh-util.el (eshell-flatten-list): It's not too wise to
9592 have a defsubst call itself. Made `eshell-flatten-list' back into
9593 a function again.
9594
9595 * eshell/em-smart.el (eshell-smart-redisplay): Added a safety
9596 catch, in case re-centering point at bottom messes up the display.
9597 This happens frequently in Emacs 21, due I believe to variable
9598 line heights.
9599
9600 * eshell/esh-mode.el (eshell-find-tag): Require `etags', in order
9601 to call `find-tag-interactive'.
9602
9603 * eshell/em-dirs.el (eshell/cd): Use buffered printing to display
9604 the list of remember directories.
9605
96062000-08-28 John Wiegley <johnw@gnu.org>
9607
9608 * align.el: Test align-region-separate to see if it's a symbol.
9609
96102000-08-28 John Wiegley <johnw@gnu.org>
9611
9612 * eshell/esh-util.el (eshell-flatten-list): Made this function
9613 into a defsubst form. It gets used very frequently, although
9614 calls don't occur all that often.
9615
9616 * eshell/em-dirs.el (eshell/cd): Flatten the argument list before
9617 examining it.
9618
9619 * eshell/esh-cmd.el (eshell-rewrite-while-command):
9620 (eshell-rewrite-for-command): Use `eshell-copy-handles' instead of
9621 `eshell-protect'.
9622 (eshell-copy-handles): Created a new macro for duplicating the
9623 current set of open handles. This is needed by the looping
9624 functions.
9625 (eshell-do-eval): Fixed while and if, so that the eshell-test-body
9626 is not incorrectly stomped on.
9627
9628 * eshell/em-cmpl.el (eshell-cmpl-use-paring): Mirror
9629 declaration for pcomplete-use-paring.
9630 (eshell-cmpl-initialize): Set pcomplete-use-paring based on the
9631 value of eshell-cmpl-use-paring.
9632 * pcomplete.el (pcomplete-use-paring): New config variable, to
9633 indicate whether paring should be used.
9634 (pcomplete-do-complete): If pcomplete-use-paring is t, pare out
9635 completion alternatives that have already been used.
9636
9637 * eshell/esh-mode.el (eshell-repeat-argument): Added function,
9638 bound to C-c C-y, which will repeat the previous N arguments
9639 (based on prefix argument).
9640 (eshell-mode): Bind C-c C-y to eshell-repeat-argument.
9641
9642 * eshell/esh-cmd.el (eshell/which): Don't kill the *Help* buffer
9643 if there is no *Help* buffer. This is for XEmacs, which renames
9644 its help buffers uniquely. TODO: Find out what the current buffer
9645 name to delete is.
9646
9647 * eshell/esh-util.el (eshell-read-passwd-file): Only keep the
9648 first entry that correlates to a passwd/group number. Later
9649 entries (used for group/user name aliasing to multiple IDs) are
9650 ignored.
9651
9652 * eshell/em-xtra.el (eshell/expr):
9653 * eshell/em-unix.el (eshell/du, eshell/cat, eshell/make)
9654 (eshell-grep, eshell/diff, eshell/locate):
9655 * eshell/em-dirs.el (eshell-dirs-substitute-cd): Flatten the
9656 argument list, before passing it to the system command.
9657
9658 * eshell/esh-mode.el (eshell-find-tag): Added a special version of
9659 `find-tag' for use at final position in Eshell buffers (which
9660 otherwise triggers an error on Emacs 21).
9661 (eshell-mode): Bind M-. to `eshell-find-tag' with the Eshell
9662 buffer, if it is currently bound to `find-tag'.
9663
9664 * pcmpl-gnu.el (pcmpl-gnu-makefile-regexps): Include GNUmakefile
9665 in the list of matched Makefile names.
9666 (pcmpl-gnu-make-rule-names): If GNUmakefile exists in the current
9667 directory, prefer its contents to Makefile.
9668
9669 * eshell/em-dirs.el (eshell/cd): cd commands that look up
9670 directory parts (like "cd old new", or "cd =regexp"), are now case
9671 sensitive on non-Windows/DOS platforms.
9672
9673 * eshell/esh-mode.el (eshell-parse-command-input): When a user
9674 types RET after an open delimiter (like "), display a message
9675 indicating that Eshell is waiting for the closing delimiter.
9676
9677 * eshell/esh-var.el (eshell/unset): Added a command for unsetting
9678 environment variables.
9679
9680 * eshell/em-unix.el (eshell/diff): Added logic to fail more
9681 gracefully if the user enters incorrect arguments.
9682
9683 * eshell/esh-mode.el (eshell-mode): Disable auto-fill-function in
9684 Eshell buffers.
9685
9686 * eshell/esh-var.el (eshell-interpolate-variable):
9687 * eshell/esh-mode.el (eshell-move-argument):
9688 * eshell/em-unix.el (eshell-du-sum-directory):
9689 * eshell/em-rebind.el (eshell-delchar-or-maybe-eof):
9690 * eshell/em-ls.el (eshell-ls-decorated-name): Use /= instead of
9691 (not (= ...)).
9692
9693 * eshell/em-unix.el (eshell-shuffle-files): Added use of `apply',
9694 to ensure the `preserve' flag gets propagated when doing recursive
9695 directory copies.
9696
96972000-08-28 Stefan Monnier <monnier@cs.yale.edu>
9698
9699 * eshell/em-hist.el (eshell-put-history, eshell-get-history):
9700 Don't convert \n into \0177 in memory.
9701 (eshell-read-history, eshell-write-history): Convert \n to \0177,
9702 and back again, when reading and writing.
9703
97042000-08-28 Eli Zaretskii <eliz@is.elta.co.il>
9705
9706 * eshell/esh-util.el (eshell-processp): Added to relieve constant
9707 testing of `fboundp' on `processp'.
9708
9709 * eshell/esh-proc.el (eshell/kill): Use eshell-processp.
9710 (eshell/jobs): Don't call process-list if it is not bound.
9711 (eshell-gather-process-output): Support systems where async
9712 subprocesses aren't supported.
9713 (eshell-scratch-buffer, eshell-last-sync-output-start): New
9714 variables.
9715
9716 * eshell/esh-cmd.el (eshell-resume-eval): Handle the case when
9717 eshell-do-eval returns t.
9718 (eshell-do-pipelines-synchronously): New defmacro.
9719 (eshell-execute-pipeline): Call it instead of eshell-do-pipelines
9720 when async subprocesses aren't supported.
9721 (eshell-do-eval): Use eshell-processp. Don't throw eshell-defer
9722 if async subprocesses aren't supported.
9723 (eshell-resume-command): Don't assume STATUS is a string.
9724
9725 * eshell/em-unix.el (eshell/rm): Use eshell-processp.
9726
9727 * eshell/esh-io.el (eshell-virtual-targets): Doc fix.
9728 (eshell-close-target, eshell-get-target): Use eshell-processp.
9729 (eshell-print, eshell-error, eshell-errorn, eshell-printn): Doc
9730 fix.
9731 (eshell-get-target, eshell-create-handles): Doc fix.
9732
97332000-08-28 Miles Bader <miles@lsi.nec.co.jp>
9734
9735 * eshell/em-smart.el (eshell-smart-maybe-jump-to-end): Change the
9736 criterion to include commands that output something, as long as it
9737 leaves both the command and the end-of-buffer visible when the
9738 command has exited.
9739 (eshell-review-quick-commands): Adjust the help doc string
9740 accordingly.
9741
97422000-08-28 Peter Breton <pbreton@ne.mediaone.net>
9743
9744 * locate.el (locate): Cleaned up locate command's interactive prompting
9745 Thanks to Fran\e,Ag\e(Bois_Pinard <pinard@iro.umontreal.ca> for suggestions.
9746
9747 * filecache.el (file-cache-case-fold-search): New variable
9748 (file-cache-assoc-function): New variable
9749 (file-cache-minibuffer-complete): Use file-cache-assoc-function.
9750 Use file-cache-case-fold-search variable
9751 (file-cache-add-file): Use file-cache-assoc-function
9752 (file-cache-delete-file): likewise
9753 (file-cache-directory-name): likewise
9754 (file-cache-debug-read-from-minibuffer): likewise
9755
97562000-08-28 Gerd Moellmann <gerd@gnu.org>
9757
9758 * abbrev.el (list-abbrevs): Add optional parameter LOCAL.
9759 (abbrev-table-name): New function.
9760 (prepare-abbrev-list-buffer): Add optional parameter LOCAL.
9761 If non-nil list local abbrev, only.
9762
97632000-08-28 Stanislav Shalunov <shalunov@internet2.edu>
9764
9765 * mail/uce.el (uce-reply-to-uce): Remove hard-coded "*Article*"
9766 from Gnus support code, and use special article copy buffer
9767 `(gnus-original-article-buffer)' instead. This allows to get rid
9768 of article-hide-headers usage (which breaks in the latest Gnus
9769 version). Thanks to Detlev Zundel.
9770
97712000-08-28 Kenichi Handa <handa@etl.go.jp>
9772
9773 * international/quail.el (quail-use-package): Hide "... loaded"
9774 message.
9775 (quail-start-translation, quail-start-conversion): Likewise.
9776
9777 * international/kkc.el (kkc-region): Hide "... loaded" message.
9778
97792000-08-27 Dave Love <fx@gnu.org>
9780
9781 * emacs-lisp/bytecomp.el (mapc): Use byte-compile-funarg.
9782
97832000-08-27 Miles Bader <miles@gnu.org>
9784
9785 * faces.el (read-face-font, read-face-and-attribute): Tweak prompts.
9786
97872000-08-27 Kenichi Handa <handa@etl.go.jp>
9788
9789 * international/ja-dic-cnv.el (skkdic-convert): Insert (require
9790 'ja-dic-cnv), not (require 'skkdic-cnv).
9791
97922000-08-26 Miles Bader <miles@gnu.org>
9793
9794 * faces.el (face-x-resources): Add entry for :inherit.
9795 * cus-face.el (custom-face-attributes): Add support for :inherit
9796 attribute. Add support for relative face heights.
9797 (custom-face-attributes-get): Treat `nil' as being a default value
9798 for :inherit (as well as `unspecified').
9799
9800 * faces.el (set-face-attribute): Update doc string.
9801 (face-attribute-name-alist): Add :inherit.
9802 (face-valid-attribute-values): Handle :inherit.
9803 (face-read-string): Rephrase prompt to be less confusing.
9804 Assume that DEFAULT is a string, since we must return a string.
9805 (face-read-integer): Use `format' to turn DEFAULT into an
9806 acceptable default for face-read-string. Match NEW-VALUE against
9807 the string "unspecified", not the symbol `unspecified', since
9808 that's what face-read-string returns.
9809 (read-face-attribute): Lookup a name for old-value in valid, and
9810 use it as a default if we find one. Treat all values from
9811 face-read-string as strings. If the default is used, don't do any
9812 more processing on the value, just use the old value directly.
9813 (read-face-and-attribute, modify-face): Tweak prompt.
9814 (read-face-name): Don't assume prompt ends with a space.
9815
9816 * faces.el (describe-face): Add support for :inherit attribute.
9817
98182000-08-25 Kenichi Handa <handa@etl.go.jp>
9819
9820 * terminal.el (terminal-emulator): Fix args to `concat'. Now
9821 concat doesn't accept interger.
9822
9823 * international/kkc.el: Remove SKK from Keywords. Require
9824 ja-dic-utl instead of skkdic-utl.
9825
9826 * international/ja-dic-cnv.el: Renamed from skkdic-cnv.el.
9827 Provide ja-dic-cnv instead of skkdic-cnv.
9828 (ja-dic-filename): Renamed from skkdic-filename. Referers changed
9829 (iso-2022-7bit-short): Add safe-charsets property.
9830 (skkdic-convert-postfix): Search Japanese chou-on character in
9831 addition to Hiragana character.
9832 (skkdic-convert-prefix, skkdic-collect-okuri-nasi): Likewise.
9833 (skkdic-convert): Change file names from skkdic.el to ja-dic.el
9834 (batch-skkdic-convert): Likewise.
9835
9836 * international/ja-dic-utl.el: Renamed from skkdic-utl.el.
9837 Provide ja-dic-utl instead of skkdic-utl.
9838 (skkdic-lookup-key): Load ja-dic/ja-dic, not skkdic/skkdic.
9839
98402000-08-24 Dave Love <fx@gnu.org>
9841
9842 * disp-table.el (standard-display-default): Make the test of `l'
9843 useful.
9844
9845 * language/european.el ("Latin-8", "Latin-9"): Add input methods,
9846 mod sample text.
9847
9848 * international/iso-ascii.el: Make pilcrow convenient string
9849 consistent with section.
9850 (iso-ascii-display): Set up multibyte characters as well as
9851 unibyte.
9852
98532000-08-24 Kenichi Handa <handa@etl.go.jp>
9854
9855 * international/mule-cmds.el (reset-language-environment): Set
9856 default-process-coding-system to '(undecided . iso-latin-1), which
9857 makes process I/O almost consistent with file I/O. Call this
9858 function when mule-cmds.el[c] is loaded.
9859
98602000-08-22 Andrew Innes <andrewi@gnu.org>
9861
9862 * makefile.w32-in: New file.
9863
98642000-08-22 Miles Bader <miles@lsi.nec.co.jp>
9865
9866 * comint.el (comint-output-filter): Compare end of
9867 comint-last-output-overlay with the start of the newly inserted
9868 text, not the end, when deciding whether to extend it.
9869 Set saved-point's insertion type to advance after insertion.
9870
9871 * shell.el (shell-font-lock-keywords): Remove prompt highlighting,
9872 since this is now done independently of font-lock mode.
9873
98742000-08-21 Gerd Moellmann <gerd@gnu.org>
9875
9876 * server.el (server-kill-new-buffers): New user option.
9877 (server-existing-buffer): New buffer-local variable.
9878 (server-visit-files): When using an existing buffer, set
9879 server-existing-buffer to t.
9880 (server-buffer-done): If server-kill-new-buffers is t, kill the
9881 buffer, unless it was already present before visiting it with
9882 Emacs server.
9883
98842000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
9885
9886 * man.el (Man-init-defvars): Don't reset Man-fontify-manpage-flag,
9887 even if the display doesn't support colors: some displays will
9888 support bold/underline faces.
9889
98902000-08-21 Gerd Moellmann <gerd@gnu.org>
9891
9892 * emacs-lisp/cl.el (cl-macroexpand): Doc fix.
9893
9894 * startup.el (command-line): If user's init file had an error,
9895 add explanatory text to *Messages*.
9896
98972000-08-21 Kenichi Handa <handa@etl.go.jp>
9898
9899 * man.el (Man-getpage-in-background): Decode the process output by
9900 the system locale coding system.
9901
99022000-08-20 Dave Love <fx@gnu.org>
9903
9904 * wid-edit.el (widget-choose, widget-choice-mouse-down-action):
9905 Don't test x-popup-menu.
9906 (function) <complete-function>: Complete only fbound symbols.
9907 <validate, value>: New.
9908 (variable) <complete-function>: Complete only bound symbols.
9909 (coding-system): Add :base-only, :complete-function, :validate,
9910 :value, :prompt-match.
9911 (widget-coding-system-prompt-value): Use read-coding-system and
9912 act on :base-only.
9913 (editable-field): Add :help-echo.
9914 (widget-push-button-gui, widget-push-button-cache)
9915 (widget-gui-action, widget-editable-list-gui): COmment out, along
9916 with uses.
9917 (widget-at): Make arg optional.
9918 (widget-echo-help): Adjust for current help-echo calling sequence.
9919 (widget-specify-field, widget-specify-button)
9920 (widget-specify-insert, widget-get-sibling, widget-image-find)
9921 (widget-convert, widget-insert, widget-leave-text)
9922 (widget-beginning-of-line, widget-end-of-line, widget-kill-line)
9923 (widget-setup, widget-field-find, widget-before-change)
9924 (widget-after-change, widget-default-complete)
9925 (widget-default-create, widget-default-delete)
9926 (widget-push-button-value-create, editable-field)
9927 (widget-field-prompt-value, widget-field-validate)
9928 (widget-choice-value-create, widget-choice-action)
9929 (widget-choice-validate, widget-checklist-add-item)
9930 (widget-radio-add-item, widget-radio-chosen)
9931 (widget-radio-value-inline, widget-editable-list-value-create)
9932 (widget-editable-list-entry-create)
9933 (widget-documentation-link-add)
9934 (widget-documentation-string-value-create)
9935 (widget-regexp-validate, widget-file-complete)
9936 (widget-sexp-validate, widget-plist-convert-widget)
9937 (widget-plist-convert-widget, widget-alist-convert-widget)
9938 (widget-alist-convert-widget, widget-color-complete): Simplify,
9939 particularly to avoid bindings which aren't optimized out.
9940
9941 * emacs-lisp/lisp.el (defun-prompt-regexp, parens-require-spaces):
9942 Doc fix.
9943 (down-list, backward-up-list, up-list, kill-sexp)
9944 (backward-kill-sexp, mark-sexp): Make arg optional.
9945 (lisp-complete-symbol): Add optional arg PREDICATE.
9946
9947 * cus-start.el: Add display-buffer-reuse-frames,
9948 file-coding-system-alist.
9949
99502000-08-20 Gerd Moellmann <gerd@gnu.org>
9951
9952 * startup.el (command-line): Clear realized faces after
9953 modifying TTY color mappings.
9954
99552000-08-20 Miles Bader <miles@gnu.org>
9956
9957 * faces.el (face-attr-match-p): Don't return true if ATTRS are
9958 merely a subset of FACE's attributes.
9959
99602000-08-19 Miles Bader <miles@gnu.org>
9961
9962 * comint.el (comint-output-filter): Save the point with a marker,
9963 not just a buffer position.
9964
9965 * international/mule.el (set-buffer-process-coding-system): Make
9966 interactive prompt less confusing.
9967
99682000-08-19 Gerd Moellmann <gerd@gnu.org>
9969
9970 * hilit-chg.el: General cleanup of doc strings, comments and
9971 code formatting.
9972
99732000-08-19 Miles Bader <miles@gnu.org>
9974
9975 * emacs-lisp/bytecomp.el (byte-compile-beginning-of-line):
9976 Compiler macro removed; beginning-of-line is no longer always
9977 equivalent to forward-line, in the presence of fields.
9978
9979 * comint.el (comint-output-filter): Remove ad-hoc saving of
9980 restriction, and just use save-restriction, now that it works
9981 correctly. Don't adjust comint-last-input-start to account for
9982 our insertion; it shouldn't have moved because we don't use
9983 insert-before-markers anymore. Comment out call to
9984 `force-mode-line-update'; why is it here?
9985
9986 * gud.el (gud-basic-call): Temporarily widen gud comint buffer
9987 while checking for prompt to delete. Use `forward-line 0'
9988 instead of beginning-of-line.
9989 (gud-filter): Temporarily widen gud comint buffer while
9990 examining output.
9991
99922000-08-18 Stefan Monnier <monnier@cs.yale.edu>
9993
9994 * progmodes/sh-script.el: Big bag of typos.
9995
9996 * textmodes/ispell.el (ispell-menu-map-needed): Put back the boundp
9997 check since ispell-process is not bound when ispell is not yet loaded.
9998
99992000-08-18 Dave Love <fx@gnu.org>
10000
10001 * image.el (find-image): Copy `spec' before using plist-put.
10002
100032000-08-18 Gerd Moellmann <gerd@gnu.org>
10004
10005 * textmodes/ispell.el (ispell-dictionary-alist-6): Add
10006 `portugues'.
10007
10008 * bindings.el (esc-map): Bind `C-delete' and `C-backspace' to
10009 backward-kill-sexp, analogous to kill-sexp.
10010
10011 * progmodes/icon.el (icon-indent-line)
10012 (icon-is-continuation-line): Handle comments specially.
10013
100142000-08-17 Ken Stevens <k.stevens@ieee.org>
10015
10016 * ispell.el: Set to standard author/maintainer/keyword fields.
10017 Fine tuning to menu map appearance and operation, and added help.
10018 Remove `start' and `end' error messages when compiling.
10019 (ispell-choices-win-default-height): Fixed comment string.
10020 (ispell-dictionary-alist-1): Fixed regexp in castellano and
10021 castellano8 dictionaries.
10022 (ispell-dictionary-alist-3): Fixed regexp in francais dictionary.
10023 (ispell-dictionary-alist-4): Fixed regexp in francais-tex
10024 dictionary, added italiano dictionary.
10025 (ispell-skip-region-alist): Removed regexp thrashing when `-' is a
10026 word character
10027 (ispell-tex-skip-alists): Added psfig support.
10028 (ispell-skip-html): Renamed from ispell-skip-sgml.
10029 (ispell-begin-skip-region-regexp, ispell-skip-region)
10030 (ispell-minor-check): Improved html skipping support to skip across
10031 code, and recognize `&' commands without propper `;' syntax;
10032 (ispell-process-line): Fix alignment error when manually
10033 correcting spelling.
10034 (ispell): Fix comment string.
10035 (ispell-add-per-file-word-list): Always put word list on new line.
10036
100372000-08-17 Gerd Moellmann <gerd@gnu.org>
10038
10039 * format.el (format-encode-run-method): Fix error message to say
10040 `encode' instead of `decode'. Use save-window-excursion around
10041 shell-command-on-region as in format-decode-run-method because
10042 shell-command-on-region can display a buffer with error output.
10043 (format-decode): Don't record undo information for the decoding.
10044 (format-annotate-function): Add parameter FORMAT-COUNT. Make
10045 that number part of the temporary buffer name so that more than
10046 one decoding using a temporary buffer can happen safely.
10047
10048 * enriched.el (enriched-annotation-regexp): Use `A-Z' instead
10049 of `A-z' in the regexp.
10050
10051 * hilit-chg.el: Fix typos in commentary.
10052
10053 * help.el (view-emacs-news): Rewritten for new naming scheme
10054 for old NEWS files.
10055
10056 * startup.el (command-line): Pop to *Messages* in case an error
10057 is signaled while loading user-init-file.
10058
100592000-08-17 Andreas Schwab <schwab@suse.de>
10060
10061 * files.el (insert-directory): Don't lose original file name,
10062 undoing an undocumented change.
10063
100642000-08-17 Alex Schroeder <alex@gnu.org>
10065
10066 * sql.el (sql-magic-go): Use comint-bol.
10067 (sql-copy-column): Use comint-line-beginning-position.
10068 (comint-line-beginning-position): Define a replacement for
10069 comint-line-beginning-position if it is not fboundp.
10070
100712000-08-17 Alex Schroeder <alex@gnu.org>
10072
10073 * sql.el (sql-mode-map): TAB is no longer defined in sql-mode-map;
10074 it didn't have any effect anyway.
10075
100762000-08-17 Alex Schroeder <alex@gnu.org>
10077
10078 * sql.el (sql-postgres): Jason Beegan's patch uses the parameters
10079 --pset and pager=off instead of sending \\o|cat at the beginning
10080 of the session.
10081
100822000-08-17 Miles Bader <miles@gnu.org>
10083
10084 * progmodes/octave-inf.el: Add compatibility definition of
10085 comint-line-beginning-position.
10086
100872000-08-17 Kenichi Handa <handa@etl.go.jp>
10088
10089 * startup.el (normal-top-level): Look in each dir in load-path for
10090 a leim-list.el file too. This assures of loading leim-list.el
10091 that is created at Emacs installation time even if a user have his
10092 own leim-list.el.
10093
100942000-08-17 Miles Bader <miles@gnu.org>
10095
10096 * hi-lock.el (hi-yellow, hi-pink, hi-green, hi-blue): Force the
10097 foreground color to black if the background is dark.
10098
100992000-08-16 Stefan Monnier <monnier@cs.yale.edu>
10100
10101 * loadhist.el (unload-feature): Typo.
10102
10103 * finder.el (finder-compile-keywords):
10104 * cus-dep.el (custom-make-dependencies): Add local-variable settings
10105 to the generated file.
10106
10107 * mail/mh-e.el (mh-make-local-vars):
10108 Replace make-variable-buffer-local with make-local-variable.
10109
10110 * play/landmark.el:
10111 * options.el (Edit-options-{set,toggle,t,nil}):
10112 * mail/mailabbrev.el (mail-abbrevs-mode):
10113 * textmodes/tex-mode.el (tex-expand-files):
10114 * textmodes/outline.el (outline-minor-mode): Don't quote lambda.
10115
10116 * term/bg-mouse.el (bg-mouse-report): screen-height -> frame-height.
10117
10118 * emacs-lisp/ewoc.el (ewoc-locate): Default POS to (point).
10119 (ewoc-goto-prev, ewoc-goto-next): Remove arg POS.
10120 Allow going past the last element.
10121 * pcvs.el (cvs-mode-previous-line, cvs-mode-next-line, cvs-mode-mark)
10122 (cvs-mode-unmark-up, cvs-get-marked): Update calls to ewoc.
10123 (cvs-mouse-toggle-mark): Don't move point.
10124 (cvs-revert-if-needed): Avoid re-eval of local variables and modes.
10125
10126 * progmodes/compile.el (grep): Provide a default set of files.
10127 (next-error): Docstring fix.
10128 (compilation-find-file): Avoid find-file (fails in a dedicated window).
10129
10130 * emacs-lisp/easy-mmode.el (define-minor-mode):
10131 Use `symbol-value' to keep the byte-compiler quiet.
10132
10133 * diff-mode.el (diff-mode-map): Bind diff-apply-hunk.
10134 (diff-find-source-location): New fun, extracted from diff-goto-source.
10135 (diff-goto-source): Use it.
10136 (diff-next-complex-hunk, diff-filter-lines): New function.
10137 (diff-apply-hunk): New command.
10138
10139 * smerge-mode.el (smerge-mode-menu): Doc fix.
10140
10141 * msb.el (msb-mode): Define it in terms of define-minor-mode.
10142
101432000-08-16 Dave Love <fx@gnu.org>
10144
10145 * windmove.el (windmove) <defgroup>: Add :version.
10146
10147 * net/goto-addr.el: Don't require browse-url. Require thingatpt.
10148 (goto-address-fontify-p, goto-address-highlight-p)
10149 (goto-address-url-face, goto-address-url-mouse-face)
10150 (goto-address-mail-face, goto-address-mail-mouse-face): Doc fix.
10151 (goto-address-url-regexp): Use thing-at-point-url-regexp.
10152 (goto-address-fontify, goto-address-at-mouse): Simplify,
10153 (goto-address-at-point): browse-url-url-at-point,
10154 goto-address-find-address-at-point can return nil.
10155 (goto-address-find-address-at-point): Return nil on failure.
10156
10157 * align.el (align) <defgroup>: Add :version.
10158
10159 * calculator.el (calculator): Add :version.
10160 (calculator): Use two lines for calculator window if `modeline'
10161 face is boxed.
10162
10163 * play/5x5.el: Doc fixes.
10164 (5x5) <defgroup>: Add :version.
10165
10166 * play/fortune.el (fortune) <defgroup>: Add :version.
10167 (fortune-append): Fix error message.
10168 (fortune-from-region): Doc fix.
10169
10170 * play/pong.el (pong): Doc fix.
10171
10172 * play/morse.el: Keywords, commentary, autoloads.
10173
101742000-08-16 Eli Zaretskii <eliz@is.elta.co.il>
10175
10176 * desktop.el (desktop-save): Don't look at symbol-value of a
10177 member of minor-mode-alist, unless it is boundp.
10178
101792000-08-16 Sam Steingold <sds@gnu.org>
10180
10181 * buff-menu.el (list-buffers-noselect): Use `dolist' instead Of
10182 `while'; use `with-current-buffer' instead of `save-excursion'.
10183 Removed unnecessary kludges now that "*Buffer List*" is excluded.
10184
101852000-08-16 Kenichi Handa <handa@etl.go.jp>
10186
10187 * international/ccl.el (declare-ccl-program): Docstring modified.
10188 (ccl-execute-with-args): Likewise.
10189
101902000-08-16 Miles Bader <miles@gnu.org>
10191
10192 * progmodes/sql.el: Add compatibility definition of
10193 comint-line-beginning-position.
10194
101952000-08-15 Gerd Moellmann <gerd@gnu.org>
10196
10197 * buff-menu.el (list-buffers-noselect): Set `buffer' as well as
10198 'buffer-menu' property.
10199 (Buffer-menu-buffer): Use `buffer' property if `buffer-name'
10200 fails.
10201 (Buffer-menu-execute): When deleting, test `(and buf (buffer-name
10202 buf))', instead of `(Buffer-menu-buffer nil)', to see if buffer
10203 wasn't killed.
10204
10205 * buff-menu.el (list-buffers-noselect): Don't display the
10206 *Buffer List* buffer.
10207
10208 * font-lock.el: Require jit-lock to prevent a very late
10209 `Loading jit-lock' message.
10210
10211 * emacs-lisp/cust-print.el, emacs-lisp/cl-specs.el
10212 * emacs-lisp/edebug.el, progmodes/hideif.el: Change authors'
10213 mail address.
10214
102152000-08-15 Miles Bader <miles@gnu.org>
10216
10217 * textmodes/ispell.el (ispell-graphic-p): New constant.
10218 (ispell-choices-win-default-height, ispell-help): Use
10219 `ispell-graphic-p' instead of `xemacsp'.
10220
102212000-08-15 Dave Love <fx@gnu.org>
10222
10223 * simple.el: Autoload widget-convert when compiling.
10224 (mail-user-agent): Doc fix.
10225
10226 * help.el (function-called-at-point, variable-at-point): Use
10227 with-syntax-table.
10228 (help-manyarg-func-alist): Add insert-and-inherit.
10229
10230 * thingatpt.el (thing-at-point-url-regexp): Prepend `\<'.
10231
10232 * delsel.el (delsel-unload-hook): New function.
10233
10234 * find-file.el: Doc fixes. Move provide to end.
10235 (ff) <defgroup>: Add :link.
10236 (ff-goto-click): Deleted.
10237 (ff-mouse-find-other-file, ff-mouse-find-other-file-other-window):
10238 Use mouse-set-point.
10239
10240 * textmodes/tildify.el: Doc fixes.
10241 (tildify) <defgroup>: Add:version.
10242
10243 * progmodes/glasses.el (glasses) <defgroup>: Add :version.
10244 (glasses-custom-set): Use set-default, not set.
10245 (minor-mode-alist): Propertize the lighter.
10246 (glasses-mode): Provide optional arg.
10247
10248 * progmodes/cwarn.el (cwarn) <defgroup>: Add :version, :link.
10249 (global-cwarn-mode): Don't make it a user option. Unquote lambda.
10250 (cwarn-font-lock-feature-keywords-alist): Don't make it a user
10251 option. Provide :type.
10252 (cwarn-configuration): Provide :type.
10253 (cwarn-mode): Doc fix.
10254
10255 * add-log.el (change-log-merge): Doc fix.
10256 (change-log-redate): New command.
10257
10258 * net/browse-url.el (browse-url-filename-alist): Add a clause for
10259 Doze and Dog.
10260 (browse-url): Use dolist, not mapcar.
10261 (browse-url-at-point): Check for null url.
10262 (browse-url-event-buffer, browse-url-event-point): Functions
10263 deleted.
10264 (browse-url-at-mouse, browse-url-netscape): Simplify.
10265
10266 * msb.el (msb--few-menus, msb--very-many-menus): Use current Gnus
10267 modes.
10268 (msb--init-file-alist, msb--aggregate-alist, msb--add-separators):
10269 Fix previous change to mapcan.
10270 (msb--init-file-alist, msb--add-separators)
10271 (msb--make-keymap-menu): Simplify.
10272 (msb--choose-file-menu): Use copy-sequence.
10273 (msb-mode-map): Add title to keymap.
10274 (msb-unload-hook): New function.
10275
10276 * bs.el: Fix indentation.
10277 (bs) <defgroup>: Add :links.
10278 (bs-show): Doc fix.
10279 (bs-apply-sort-faces): Don't use window-system.
10280 (bs-mode-font-lock-keywords): Avoid testing for XEmacs.
10281
102822000-08-15 Eli Zaretskii <eliz@is.elta.co.il>
10283
10284 * calendar/timeclock.el (timeclock-file): Run .timelog through
10285 convert-standard-filename.
10286
102872000-08-14 Gerd Moellmann <gerd@gnu.org>
10288
10289 * emacs-lisp/authors.el: New file.
10290
10291 * paren.el (show-paren-priority): New user option.
10292 (show-paren-function): Set overlay priorities to
10293 show-paren-priority.
10294
102952000-08-14 Miles Bader <miles@gnu.org>
10296
10297 * comint.el (comint-bol): Use `forward-line 0' instead of calling
10298 beginning-of-line with inhibit-field-text-motion bound.
10299
103002000-08-14 Gerd Moellmann <gerd@gnu.org>
10301
10302 * calendar/timeclock.el: New file.
10303
103042000-08-14 David Ponce <david@dponce.com>
10305
10306 * recentf.el (recent-dialog-mode-map): Bind down-mouse-1 to
10307 `widget-button-click'. so that one can use left mouse button to
10308 click on dialog buttons.
10309
103102000-08-14 Emmanuel Briot <briot@gnat.com>
10311
10312 * xml.el (xml-parse-tag, xml-parse-attlist): Do not downcase
10313 identifiers, since XML is case sensitive
10314
103152000-08-12 Miles Bader <miles@gnu.org>
10316
10317 * comint.el (comint-output-filter): Don't bother frobbing
10318 window-start, it doesn't seem to be necessary.
10319
10320 * comint.el (comint-send-string, comint-send-region): Make into
10321 real functions. Snapshot the prompt before sending.
10322
103232000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
10324
10325 * info.el (Info-find-emacs-command-nodes): Rewrite to use
10326 technique similar to Info-index, instead of relying on specific
10327 names of relevant Index nodes.
10328 (Info-goto-emacs-command-node): Bind Info-history to nil when
10329 going to the first node found by Info-find-emacs-command-nodes.
10330
103312000-08-11 Eli Zaretskii <eliz@is.elta.co.il>
10332
10333 * menu-bar.el (menu-bar-help-menu): Add a :help string.
10334
103352000-08-10 Miles Bader <miles@gnu.org>
10336
10337 * comint.el (comint-output-filter): Doc fixes & misc code cleanup.
10338
103392000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
10340
10341 * info.el (Info-file-list-for-emacs): More elements for the
10342 autotype, vip, ebrowse, cl, idlwave, reftex, widget, pcl-cvs,
10343 and woman manuals.
10344
103452000-08-10 Miles Bader <miles@lsi.nec.co.jp>
10346
10347 * comint.el (comint-send-input): Make the newline boundary overlay
10348 rear-nonsticky. Use `insert' instead of `insert-before-markers'.
10349 (comint-output-filter): Use `insert' instead of
10350 `insert-before-markers'. Extend comint-last-output-overlay when
10351 necessary since we can't rely on insert-before-markers to do it.
10352 * gud.el (gud-filter): Use `with-current-buffer' instead of
10353 save-excursion when inserting the output, so that point gets
10354 updated correctly; the old method relied on a rather dodgy
10355 side-effect of comint-output-filter to avoid the effect of
10356 save-excursion.
10357
103582000-08-10 Eli Zaretskii <eliz@is.elta.co.il>
10359
10360 * files.el (recover-file): Call insert-directory instead of
10361 invoking `ls' directly.
10362
103632000-08-10 Miles Bader <miles@gnu.org>
10364
10365 * comint.el (comint-highlight-prompt, comint-highlight-prompt-face)
10366 (comint-last-prompt-overlay): New variables.
10367 (comint-output-filter): Implement prompt highlighting.
10368 (comint-snapshot-last-prompt): New function.
10369 (comint-send-input): Snapshot the last prompt.
10370 Use comint-highlight-input-face.
10371 (comint-highlight-input-face): Renamed from `comint-highlight-face'.
10372 Use defface instead of defcustom.
10373 (send-invisible, comint-send-eof): Snapshot the last prompt.
10374 (comint-delchar-or-maybe-eof): Use comint-send-eof.
10375 (comint-mode): Make `comint-last-prompt-overlay' buffer-local.
10376
103772000-08-09 Stefan Monnier <monnier@cs.yale.edu>
10378
10379 * emacs-lisp/regexp-opt.el (make-bool-vector): Remove.
10380 (regexp-opt-group): Use a list of chars for `letters'.
10381 (regexp-opt-charset): `chars' is now a list of chars.
10382 Use a char-table rather than a vector so it works for multibyte chars.
10383
10384 * pcvs.el (cvs-menu): Don't move point. Use popup-menu.
10385 Set cvs-minor-current-files to the selected fileinfo.
10386 (cvs-get-marked): Accept fileinfos in cvs-minor-current-files.
10387 (cvs-mode-insert): Manually macroexpand `ignore-errors'.
10388
103892000-08-09 Eli Zaretskii <eliz@is.elta.co.il>
10390
10391 * files.el (insert-directory): Don't call access-file on
10392 directories on DOS and Windows.
10393
103942000-08-09 Kenichi Handa <handa@etl.go.jp>
10395
10396 * international/ccl.el (ccl-embed-data): Make ccl-program-vector
10397 longer if necessary.
10398 (ccl-embed-code): Call ccl-embed-data to store CODE in
10399 ccl-program-vector.
10400
104012000-08-09 Miles Bader <miles@gnu.org>
10402
10403 * comint.el (comint-output-filter): Properly handle the case where
10404 the text surrounded by comint-last-output-overlay was deleted.
10405
104062000-08-08 Gerd Moellmann <gerd@gnu.org>
10407
10408 * info.el (Info-insert-dir): Use Info-additional-directory-list if
10409 non-nil.
10410 (Info-file-list-for-emacs): Remove "info" from the list because
10411 that leads to trying to use the documentation from file `info'
10412 in various situations where it isn't appropriate, for instance
10413 C-h C-k C-h i.
10414
10415 * ffap.el (ffap-read-file-or-url-internal): Handle case that
10416 DIR and/or STRING are nil.
10417
10418 * progmodes/compile.el (compilation-setup): Make variable
10419 compilation-error-screen-columns buffer-local, as some comment
10420 in the code suggests it should be.
10421
10422 * files.el (auto-mode-interpreter-regexp): New variable.
10423 (set-auto-mode): Use it.
10424
10425 * indent.el (indent-for-tab-command): Doc fix.
10426
10427 * mouse-sel.el (mouse-sel-mode): Doc fix.
10428
10429 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Handle `#N='
10430 labels.
10431
10432 * help.el (print-help-return-message): When
10433 display-buffer-reuse-frames is set, let the help window been quit,
10434 instead of deleting it, which might delete a reused frame.
10435
104362000-08-08 Eli Zaretskii <eliz@is.elta.co.il>
10437
10438 * dired-aux.el (dired-do-create-files): On DOS/Windows, allow to
10439 rename a directory to a name that differs only by its letter case.
10440
104412000-08-08 Kenichi Handa <handa@etl.go.jp>
10442
10443 * international/quail.el (quail-define-rules): Handle Quail decode
10444 map correctly. Add code for supporting annotations.
10445 (quail-install-decode-map): New function.
10446 (quail-defrule-internal): New optional arguments decode-map and
10447 props.
10448 (quail-advice): New function.
10449
104502000-08-07 Sam Steingold <sds@gnu.org>
10451
10452 * emacs-lisp/cl-indent.el (toplevel): Indent `defclass',
10453 `defconst', `define-condition', `with-slots'.
10454 * font-lock.el (lisp-font-lock-keywords-2): Added `with-' and `do-'.
10455
104562000-08-03 Miles Bader <miles@gnu.org>
10457
10458 * comint.el (comint-use-prompt-regexp-instead-of-fields):
10459 New variable.
10460 (comint-prompt-regexp, comint-get-old-input): Document dependence on
10461 comint-use-prompt-regexp-instead-of-fields.
10462 (comint-send-input): Add `input' field property to stuff we send to
10463 the process, if comint-use-prompt-regexp-instead-of-fields is nil.
10464 (comint-output-filter): Add `output' field property to process
10465 output, if comint-use-prompt-regexp-instead-of-fields is nil.
10466 (comint-replace-by-expanded-history)
10467 (comint-get-old-input-default, comint-show-output)
10468 (comint-backward-matching-input, comint-forward-matching-input)
10469 (comint-next-prompt, comint-previous-prompt): Use field
10470 properties if comint-use-prompt-regexp-instead-of-fields is nil.
10471 (comint-line-beginning-position): New function.
10472 (comint-bol): Use comint-line-beginning-position. Make ARG optional.
10473 (comint-replace-by-expanded-history-before-point): Use
10474 comint-line-beginning-position and line-end-position.
10475 (comint-last-output-overlay): New variable.
10476 (comint-mode): Make `comint-last-output-overlay' buffer-local.
10477
10478 * shell.el (shell-prompt-pattern): Doc change.
10479 (shell-backward-command): Use line-beginning-position.
10480
10481 * gud.el (gud-gdb-complete-command): Use
10482 comint-line-beginning-position.
10483
10484 * ielm.el (ielm-indent-line): Detect a "prompt" line by seeing if
10485 comint-bol doesn't actually go to the beginning of the line.
10486
10487 * hippie-exp.el (try-expand-line): Only use comint-prompt-regexp
10488 if comint-use-prompt-regexp-instead-of-fields is non-nil.
10489 (try-expand-line-all-buffers): Likewise.
10490
10491 * progmodes/sql.el (sql-magic-go): Use comint-bol instead of
10492 explicitly matching comint-prompt-regexp.
10493 (sql-copy-column): Use comint-line-beginning-position instead of
10494 explicitly matching comint-prompt-regexp.
10495
10496 * progmodes/octave-inf.el (inferior-octave-complete): Use
10497 comint-line-beginning-position.
10498
10499 * progmodes/inf-lisp.el (inferior-lisp-prompt): Doc change.
10500
10501 * progmodes/idlw-shell.el (idlwave-shell-send-command): When
10502 looking for a prompt, use `forward-line 0' instead of
10503 `beginning-of-line', to avoid getting caught by an input field.
10504
105052000-08-07 Gerd Moellmann <gerd@gnu.org>
10506
10507 * files.el (shell-quote-wildcard-pattern): Make sure to return
10508 PATTERN, in the Unix case.
10509
105102000-08-07 Eli Zaretskii <eliz@is.elta.co.il>
10511
10512 * play/zone.el (zone): Discard any pending input before running
10513 the randomly-chosen pgm.
10514
105152000-08-07 Kenichi Handa <handa@etl.go.jp>
10516
10517 * emacs-lisp/bytecomp.el (byte-compile-fix-header): Fix the way of
10518 checking the existence of any multibyte characters.
10519
105202000-08-06 Gerd Moellmann <gerd@gnu.org>
10521
10522 * help.el (describe-mode): Test minor-mode symbol for being
10523 bound before testing its value for being nil.
10524
10525 * pcvs-util.el, cvs-status.el, pcvs.el: Use `nth' instead of
10526 `first', `second', and `third'.
10527
10528 * emacs-lisp/cl.el (third...tenth): Undo change of 2000-08-05.
10529 (second): Make it an alias for `cadr'.
10530
105312000-08-06 Eli Zaretskii <eliz@is.elta.co.il>
10532
10533 * bs.el (bs-apply-sort-faces): Don't use window-system, since all
10534 types of display support faces now.
10535
105362000-08-05 Gerd Moellmann <gerd@gnu.org>
10537
10538 * pcvs.el (require): Require `cl' during compilation, only.
10539
10540 * emacs-lisp/cl.el (first, ..., tenth): Make them macros.
10541 (toplevel): Remove `remq' and `remove' from autoloads.
10542 (cl-fake-autoloads): New variable. If set, arrange for an error
10543 when CL functions etc. are autoloaded.
10544
105452000-08-04 Eli Zaretskii <eliz@is.elta.co.il>
10546
10547 * play/zone.el (zone, zone-pgm-stress): Don't use window-system.
10548
10549 * hi-lock.el (hi-lock-unface-buffer): If a menu of regexps is
10550 popped up, but the user clicks outside the menu, return an empty
10551 regexp (that causes unhighlight-regexp to have no effect).
10552
10553 * menu-bar.el (menu-bar-games-menu): Add Zone.
10554
10555 * hi-lock.el (toplevel): Require font-lock.
10556
105572000-08-03 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10558
10559 * progmodes/ebnf2ps.el: Get around a bug on skip-chars-forward.
10560 (ebnf-8-bit-chars): New var for bug fix.
10561 (ebnf-string): Bug fix.
10562
105632000-08-03 Sam Steingold <sds@gnu.org>
10564
10565 * pcvs.el (cvs-do-commit): Use `buffer-substring-no-properties'
10566 instead of `buffer-string'.
10567 (require 'cl): Always, not just when compiling.
10568 `ignore-errors' in `interactive', `list*', `defun*' &c make this
10569 necessary.
10570
105712000-08-03 Eli Zaretskii <eliz@is.elta.co.il>
10572
10573 * international/mule-cmds.el (select-safe-coding-system): Make
10574 the message text about selecting a safe coding system more clear.
10575
105762000-08-02 Gerd Moellmann <gerd@gnu.org>
10577
10578 * hi-lock.el: New file.
10579
10580 * play/zone.el: New file.
10581
10582 * replace.el (occur): Set tab-width in the *Occur* buffer to the
10583 value of tab-width in the original buffer. Choose a line number
10584 format that's a multiple of the original buffer's tab width, so
10585 that lines appear right.
10586
10587 * textmodes/ispell.el (ispell): New function, replacing an alias.
10588 Spell-check active region if in transient-mark-mode and mark
10589 is active; otherwise spell-check buffer.
10590
105912000-08-02 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10592
10593 * ps-mule.el: Fix a customization problem on
10594 ps-mule-font-info-database-default.
10595
105962000-08-02 Eli Zaretskii <eliz@is.elta.co.il>
10597
10598 * progmodes/ebrowse.el (ebrowse-tree-mode-map): Use
10599 display-mouse-p instead of window-system.
10600 (ebrowse-member-mode-map): Ditto.
10601
106022000-08-01 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10603
10604 * progmodes/ebnf2ps.el: Update ps-print functions call.
10605 Indentation fix. Doc fix.
10606 (ebnf-version): New version number (3.2).
10607 (ebnf-format-color, ebnf-begin-job): Code fix.
10608
106092000-08-01 Eli Zaretskii <eliz@is.elta.co.il>
10610
10611 * net/net-utils.el (nslookup-font-lock-keywords): Don't condition
10612 font lock support on window-system.
10613 (ftp-font-lock-keywords, smbclient-font-lock-keywords): Likewise.
10614
10615 * textmodes/ispell.el (ispell-highlight-spelling-error): Use
10616 display-color-p, if fboundp, instead of window-system.
10617
106182000-07-31 Eli Zaretskii <eliz@is.elta.co.il>
10619
10620 * calendar/appt.el (appt-disp-window): Use display-multi-frame-p
10621 instead of window-system.
10622
10623 * wid-edit.el (widget-choose): Use display-mouse-p instead of
10624 window-system.
10625 (widget-choice-mouse-down-action): Use display-popup-menus-p
10626 instead of window-system.
10627
10628 * strokes.el (strokes-file): Run the file name through
10629 convert-standard-filename.
10630 (strokes-mode): Call display-mouse-p instead of looking at
10631 window-system. Change the error message accordingly.
10632
10633 * progmodes/cpp.el (toplevel): Support faces on tty's.
10634
10635 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X)
10636 (lm-plot-square, lm-init-display): Don't use window-system.
10637
10638 * play/gomoku.el (gomoku-font-lock-O-face, gomoku-font-lock-X-face)
10639 (gomoku-plot-square, gomoku-init-display): Don't use window-system.
10640
10641 * mail/rmail.el (rmail-start-mail): Use display-multi-frame-p
10642 instead of looking at window-system.
10643
106442000-07-30 Gerd Moellmann <gerd@gnu.org>
10645
10646 * iswitchb.el (iswitchb-entryfn-p): Test this-command instead
10647 of testing if iswitchb-prepost-hooks is bound, because the
10648 latter will always be true when invoking a recursive minibuffer
10649 from an active Iswitchb buffer.
10650
106512000-07-30 Eli Zaretskii <eliz@is.elta.co.il>
10652
10653 * files.el (shell-quote-wildcard-pattern): New function.
10654 (insert-directory): Call it. Only prepend "\" to command on Unix
10655 and GNU/Linux systems.
10656
106572000-07-30 Gerd Moellmann <gerd@gnu.org>
10658
10659 * eshell/esh-groups.el: Change custom :link file names
10660 from `eshell.info' to `eshell'.
10661
106622000-07-30 Francis Wright <fjw@maths.qmw.ac.uk>
10663
10664 * dired.el (dired-build-subdir-alist): Expand subdirectory names
10665 correctly in recursive ange-ftp listings.
10666
106672000-07-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
10668
10669 * ps-print.el: Fix bug 1: if ps-font-size-internal,
10670 ps-header-font-size-internal and
10671 ps-header-title-font-size-internal variables are not set,
10672 ps-nb-pages and ps-line-lengths-internal crashes. Fix bug 2: if
10673 face text property is (foreground-color . COLOR) or
10674 `(background-color . COLOR)', ps-print crashes. Doc fix.
10675 (ps-print-version): New version number (5.2.4).
10676 (ps-plot-region): Code fix.
10677 (ps-nb-pages, ps-line-lengths-internal): Bug fix 1.
10678 (ps-face-attribute-list, ps-face-attributes, ps-face-background):
10679 Bug fix 2.
10680
106812000-07-30 Milan Zamazal <pdm@freesoft.cz>
10682
10683 * glasses.el (glasses-make-readable): Fix uncapitalization of
10684 identifiers like `myXMLDocument'.
10685
106862000-07-28 Karl Fogel <kfogel@red-bean.com>
10687
10688 * mail/mail-hist.el (mail-hist-previous-input)
10689 (mail-hist-next-input): Do the obvious code factorization.
10690 (mail-hist-retrieve-and-insert): New func, contains common
10691 code of above two.
10692 If inserting a message body, leave point at top.
10693
106942000-07-28 Sam Steingold <sds@gnu.org>
10695
10696 * net/ange-ftp.el (ange-ftp-verify-visited-file-modtime):
10697 Use `<=', not `<' to compare times!
10698 (ange-ftp-ls): Remove.
10699
107002000-07-27 Gerd Moellmann <gerd@gnu.org>
10701
10702 * play/cookie1.el: Add explanation of how to make cookie.el
10703 compatible with strfile(1) to comment.
10704
10705 * subr.el (remove, remq): New functions.
10706
10707 * midnight.el (clean-buffer-list-kill-never-regexps): Correctly
10708 escape `*' in regexps.
10709 (midnight-find): Reverse order of arguments in the funcall of
10710 TEST.
10711
10712 * bindings.el (completion-ignored-extensions): Add `.la', `.lo',
10713 and `.class'.
10714
10715 * play/meese.el: Add Commentary section.
10716
107172000-07-27 Alex Schroeder <alex@gnu.org>
10718
10719 * sql.el (sql-ms): Added autoload cookie.
10720 (sql-ingres, sql-solid, sql-mysql, sql-informix, sql-sybase)
10721 (sql-oracle): Ditto.
10722 (sql-help): Doc change.
10723
10724 (sql-mode-oracle-font-lock-keywords): Added PL/SQL keywords, data
10725 types and exceptions.
10726
107272000-07-27 Alex Schroeder <alex@gnu.org>
10728
10729 * sql.el (sql-placeholder-history): New variable.
10730 (sql-query-placeholders-and-send): New function that will query
10731 the user and replace placeholders with user input.
10732 (sql-oracle): If running on NT, set comint-input-sender to
10733 sql-query-placeholders-and-send.
10734
10735 (sql-stop): If in the SQLi buffer, insert stop notification, else
10736 present it as a message.
10737
107382000-07-27 Alex Schroeder <alex@gnu.org>
10739
10740 * sql.el (sql-input-ring-separator): Doc change.
10741 (sql-input-ring-file-name): Doc change.
10742 (sql-interactive-mode): Use `sql-input-ring-separator' and
10743 `sql-input-ring-file-name' to set the comint-mode equivalents
10744 without making them local variables.
10745 (sql-stop): Don't bind `sql-input-ring-separator' and
10746 `sql-input-ring-file-name' dynamically to their comint-mode
10747 equivalents.
10748
107492000-07-27 Kenichi Handa <handa@etl.go.jp>
10750
10751 * international/mule.el (register-char-codings): New function.
10752 (make-coding-system): Handle `safe-chars' specification in the arg
10753 PROPERTY.
10754
10755 * international/mule-cmds.el
10756 (find-coding-systems-region-subset-p): This function deleted.
10757 (sort-coding-systems-predicate): New variable.
10758 (sort-coding-systems): New function.
10759 (find-coding-systems-region): Use
10760 find-coding-systems-region-internal.
10761 (find-coding-systems-string): Use find-coding-systems-region.
10762 (find-coding-systems-for-charsets): Check
10763 char-coding-system-table.
10764 (select-safe-coding-system-accept-default-p): New variable.
10765 (select-safe-coding-system): Mostly rewritten. New argument
10766 ACCEPT-DEFAULT-P.
10767 (select-message-coding-system): Call select-safe-coding-system
10768 with ACCEPT-DEFAULT-P arg.
10769 (reset-language-environment): Reset default-sendmail-coding-system
10770 to the default value iso-latin-1.
10771 (set-language-environment): Don't set the obsolete variable
10772 charset-origin-alist.
10773
10774 * international/codepage.el (cp-coding-system-for-codepage-1):
10775 Give `safe-chars' property to make-coding-system.
10776
10777 * mail/sendmail.el (sendmail-send-it): Improve the way to avoid
10778 calling select-message-coding-system twice.
10779
10780 * language/cyrillic.el (cyrillic-koi8): Use `safe-chars' property
10781 instead of `safe-charsets'.
10782 (cyrillic-alternativnyj): Likewise.
10783 (ccl-encode-alternativnyj): Don't check the charset
10784 cyrillic-iso8859-5.
10785
107862000-07-27 Kenichi Handa <handa@etl.go.jp>
10787
10788 * composite.el (compose-chars-after): Preserve match data.
10789
107902000-07-26 Sam Steingold <sds@gnu.org>
10791
10792 * net/ange-ftp.el (ange-ftp-file-newer-than-file-p): New function.
10793 (ange-ftp-real-file-newer-than-file-p): New function.
10794 (ange-ftp-verify-visited-file-modtime): Use `float-time'.
10795 (ange-ftp-dot-to-slash): Removed (use `subst-char-in-string').
10796
10797 * tooltip.el (tooltip-float-time): Removed (use `float-time').
10798 * midnight.el (midnight-float-time): Ditto.
10799
108002000-07-26 Andreas Schwab <schwab@suse.de>
10801
10802 * files.el (normal-backup-enable-predicate): Correct
10803 interpretation of the return value of compare-strings.
10804
108052000-07-26 Gerd Moellmann <gerd@gnu.org>
10806
10807 * isearch.el (isearch-resume): New function.
10808 (isearch-done): Add something to command-history to resume
10809 the search.
10810 (isearch-yank-line, isearch-yank-word): Use
10811 buffer-substring-no-properties instead of buffer-substring.
10812
10813 * textmodes/flyspell.el (flyspell-mouse-map): Use `map' instead
10814 of flyspell-mouse-map.
10815
10816 * progmodes/make-mode.el (makefile-mode-abbrev-table): Remove
10817 duplicate definition.
10818 (makefile-mode): Remove duplicate setting of local-abbrev-table.
10819
10820 * progmodes/m4-mode.el (m4-mode-abbrev-table): New variable.
10821 (m4-mode): Set local-abbrev-table to m4-mode-abbrev-table.
10822
108232000-07-25 Sam Steingold <sds@gnu.org>
10824
10825 * net/ange-ftp.el: Get modtime over the net.
10826 (ange-ftp-file-modtime): New function.
10827 (ange-ftp-write-region, ange-ftp-insert-file-contents)
10828 (ange-ftp-file-attributes, ange-ftp-verify-visited-file-modtime):
10829 Use it.
10830 (ange-ftp-dot-to-slash): New function.
10831 (ange-ftp-fix-name-for-vms): Use it.
10832
10833 * midnight.el (midnight-buffer-display-time): Use
10834 `with-current-buffer'.
10835
108362000-07-25 Gerd Moellmann <gerd@gnu.org>
10837
10838 * find-dired.el: Update copyright notice.
10839 (find-dired): Offer to kill a running `find'.
10840
10841 * enriched.el (enriched-face-ans): For a `foreground-color'
10842 property, return '(("x-color" COLOR))' so that COLOR will be
10843 output as a parameter of the x-color annotation. Likewise for the
10844 `background-color' property. In the case of normal face
10845 properties, don't return annotations for unspecified foreground
10846 and background face attributes.
10847
108482000-07-25 Kenichi Handa <handa@etl.go.jp>
10849
10850 * language/japan-util.el (japanese-katakana-region): Fix handling
10851 HANKAKU argument.
10852
108532000-07-25 Miles Bader <miles@gnu.org>
10854
10855 * simple.el (line-move): Pass INHIBIT-CAPTURE-PROPERTY argument to
10856 constrain-to-field. Pass nil ESCAPE-FROM-EDGE argument to
10857 constrain-to-field.
10858
108592000-07-24 Andrew Innes <andrewi@gnu.org>
10860
10861 * timer.el (timer-activate-when-idle): Add optional parameter
10862 DONT-WAIT. Update docstring.
10863 (run-with-idle-timer): Specify extra parameter to
10864 timer-activate-when-idle, so that timer will be activated
10865 immediately if Emacs is already idle.
10866
10867 * w32-fns.el (w32-using-nt): Fix docstring.
10868
108692000-07-24 Dave Love <fx@gnu.org>
10870
10871 * mouse.el (popup-menu): Set last-command-event.
10872 (mouse-major-mode-menu-prefix): Declare.
10873
108742000-07-24 Gerd Moellmann <gerd@gnu.org>
10875
10876 * textmodes/flyspell.el: Update to author's version 1.5d.
10877
10878 * progmodes/hideshow.el: Update copyright notice.
10879
10880 * vcursor.el: Set maintainer to FSF, since author cannot
10881 be reached.
10882
108832000-07-24 Eli Zaretskii <eliz@is.elta.co.il>
10884
10885 * info.el (Info-goto-emacs-key-command-node): Leave a space after
10886 the prompt.
10887
10888 * mouse.el (popup-menu): Run the keymap through indirect-function,
10889 in case it was defined with define-prefix-key. If the menu is a
10890 list of keymaps, look up the binding of user's choice in each one
10891 of the keymaps.
10892 (mouse-popup-menubar): If the global and local menu-bar keymaps
10893 don't have a prompt string, create one and insert it into the
10894 keymap. Don't barf if current-local-map returns nil.
10895
108962000-07-24 Francis Wright <fjw@maths.qmw.ac.uk>
10897
10898 * dired.el (dired-sort-R-check): Added to allow recursive listing
10899 to be undone.
10900 (dired-sort-other): Use it.
10901
109022000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10903
10904 * Release of cc-mode 5.27
10905
109062000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10907
10908 * cc-engine.el (c-looking-at-inexpr-block): Replaced a call to
10909 c-beginning-of-statement-1 that caused a bad case of recursion
10910 which could consume a lot of CPU in large classes in languages
10911 that have in-expression classes (i.e. Java and Pike).
10912
10913 * cc-engine.el (c-guess-basic-syntax): Check for in-expression
10914 statements before top level constructs (i.e. case 6 is moved
10915 before case 5 and is now case 4) to catch in-expression
10916 classes in top level expressions correctly.
10917
109182000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10919
10920 * cc-engine.el (c-guess-basic-syntax): Less naive handling of
10921 objc-method-intro. Case 4 removed and case 5I added.
10922
10923 * cc-langs.el (c-append-paragraph-start): New variable used by
10924 c-common-init to get paragraph-start correct.
10925 * cc-langs.el (c-common-init): Use c-append-paragraph-start to
10926 initialize paragraph-start to make it correct both with and
10927 without the javadoc special case.
10928
10929 * cc-mode.el (java-mode): Use c-append-paragraph-start to
10930 initialize paragraph-start for javadoc markup.
10931
10932 * cc-vars.el (c-style-variables-are-local-p): Incompatible
10933 change by defaulting this to t. It's motivated by the
10934 confusing behavior that otherwise arise from the style system
10935 when editing both java and non-java files at the same time
10936 (see the comments about style setting in c-common-init).
10937
109382000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10939
10940 * cc-cmds.el (c-indent-new-comment-line): Added a kludge
10941 similar to the one in c-fill-paragraph to check the fill
10942 prefix from the adaptive fill function for sanity.
10943
109442000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10945
10946 * cc-defs.el (c-end-of-defun-1): Fixed forward scanning into
10947 defun block.
10948
a30eb617
DL
109492000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10950
10951 * cc-align.el (c-lineup-multi-inher): Handle lines with
10952 leading comma nicely. Extended to handle member initializers
10953 too.
10954
10955 * cc-engine.el: (c-beginning-of-inheritance-list,
10956 c-guess-basic-syntax): Fixed recognition of inheritance lists
10957 when the lines begins with a comma.
10958
a30eb617
DL
10959 * cc-vars.el (c-offsets-alist): Changed default for
10960 member-init-cont to c-lineup-multi-inher since it now handles
10961 member initializers and indents better for leading commas.
10962
109632000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10964
10965 * cc-cmds.el (c-electric-brace): Fixed some bugs in the state
10966 handling that caused class open lines to be recognized as
10967 statement-conts in some cases.
10968
10969 * cc-cmds.el (c-indent-new-comment-line): Keep the fill prefix
10970 guessed by the adaptive fill function unless point is on the
10971 first line of a block comment.
10972
10973 * cc-engine.el (c-forward-syntactic-ws): Fixed an infloop bug
10974 when the buffer ends with a macro continuation char.
10975
10976 * cc-engine.el (c-guess-basic-syntax): Added support for
10977 function definitions as statements in Pike. The first
10978 statement in a lambda block is now labeled defun-block-intro
10979 instead of statement-block-intro.
10980
10981 * cc-engine.el (c-narrow-out-enclosing-class): Whack the state
10982 so that the class surrounding point is selected, not the one
10983 innermost in the state.
10984
10985 * cc-engine.el (c-guess-basic-syntax): Fixed bug in
10986 recognition of switch labels having hanging multiline
10987 statements.
10988
10989 * cc-engine.el (c-beginning-of-member-init-list): Broke out
10990 some code in c-guess-basic-syntax to a separate function.
10991 * cc-engine.el (c-just-after-func-arglist-p): Fixed
10992 recognition of member inits with multiple line arglists.
10993 * cc-engine.el (c-guess-basic-syntax): New case 5B.3 to detect
10994 member-init-cont when the commas are in funny places.
10995
109962000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
10997
10998 * cc-defs.el (c-auto-newline): Removed this macro since it's
10999 not used anymore.
11000
11001 * cc-engine.el (c-looking-at-bos): New helper function.
11002 * cc-engine.el (c-looking-at-inexpr-block): More tests to tell
11003 inexpr and toplevel classes apart in Pike.
11004
11005 * cc-engine.el (c-guess-basic-syntax): Fixed bogus recognition
11006 of case 9A.
11007
11008 * cc-langs.el, cc-mode.el (c-Pike-inexpr-class-key): New
11009 constant, since "class" can introduce an in-expression class
11010 in Pike nowadays.
11011
110122000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11013
11014 * cc-align.el (c-gnu-impose-minimum): Don't impose minimum
11015 indentation on cpp-macro lines.
11016
11017 * cc-engine.el (c-guess-basic-syntax): Made the cpp-macro
11018 a syntax modifier like comment-intro, to make it possible to
11019 get syntactic indentation for preprocessor directives. It's
11020 incompatible wrt to lineup functions on cpp-macro, but it has
11021 no observable effect in the 99.9% common case where cpp-macro
11022 is set to -1000.
11023
110242000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11025
11026 * cc-engine.el (c-guess-basic-syntax): Fixed bug with missed
11027 member-init-cont when the preceding arglist is several lines.
11028
110292000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11030
11031 * cc-styles.el (c-style-alist): The basic offset for the BSD
11032 style corrected to 8.
11033
110342000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11035
11036 * cc-styles.el (c-style-alist): Adjusted the indentation of
11037 brace list openers in the gnu style.
11038
110392000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11040
11041 * cc-cmds.el (c-indent-command): Obey c-syntactic-indentation.
11042
11043 * cc-cmds.el (c-electric-brace, c-electric-slash,
11044 c-electric-star, c-electric-semi&comma, c-electric-colon,
11045 c-electric-lt-gt, c-electric-paren): Don't reindent old lines
11046 when c-syntactic-indentation is nil.
11047
11048 * cc-engine.el (c-beginning-of-statement-1): Fixed bug where
11049 we were left at comments preceding the first statement when
11050 reaching the beginning of the buffer.
11051
11052 * cc-vars.el (c-syntactic-indentation): New variable to turn
11053 off all syntactic indentation.
11054
110552000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11056
11057 * cc-cmds.el (c-fill-paragraph): Keep one or two spaces
11058 between the text and the block comment ender when it hangs,
11059 depending on how many there are before the fill.
11060
110612000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11062
11063 * cc-engine.el (c-beginning-of-closest-statement): New helper
11064 function to go back to the closest preceding statement start,
11065 which could be inside a conditional statement.
11066 * cc-engine.el (c-guess-basic-syntax): Use
11067 c-beginning-of-closest-statement in cases 10B.2, 17B and 17C.
11068
11069 * cc-engine.el (c-guess-basic-syntax): Better handling of
11070 arglist-intro, arglist-cont-nonempty and arglist-close when
11071 the arglist is nested inside parens. Cases 7A, 7C and 7F
11072 changed.
11073
11074 * cc-langs.el (c-Java-javadoc-paragraph-start): Brought
11075 up-to-date with javadoc 1.2.
11076
110772000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11078
11079 * cc-engine.el (c-beginning-of-statement-1): Fixed handling of
11080 multiline Pike type decls.
11081
110822000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11083
11084 * cc-cmds.el (c-indent-new-comment-line): Always break
11085 multiline comments in multiline mode, regardless of
11086 comment-multi-line.
11087
110882000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11089
11090 * cc-engine.el (c-guess-basic-syntax): Fixed bug with
11091 fully::qualified::names in C++ member init lists. Preamble in
11092 case 5D changed.
11093
110942000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11095
11096 * cc-langs.el (c-common-init): Handling of obsolete variables
11097 moved to c-initialize-cc-mode. More compatible style override
11098 when using global style variables.
11099 * cc-mode.el (c-initialize-cc-mode): Handling of obsolete
11100 variables moved here.
11101
a30eb617
DL
11102 * cc-styles.el (c-make-styles-buffer-local): Flag style
11103 variable localness in c-style-variables-are-local-p to make
11104 the compatibility measure in c-common-init work well.
11105
11106 * cc-styles.el (c-set-style-1): c-special-indent-hook can no
11107 longer contain set-from-style.
11108 * cc-styles.el (c-initialize-builtin-style): Don't check for
11109 set-from-style on c-special-indent-hook.
11110 * cc-styles.el (c-copy-tree): Obsolete. The standard function
11111 copy-alist is sufficient now.
11112
11113 * cc-styles.el (c-set-style, c-set-style-1,
11114 c-get-style-variables): Fixes to variable initialization so
11115 that duplicate entries in styles have the same effect
11116 regardless of DONT-OVERRIDE.
11117
11118 * cc-styles.el (c-set-style-2): Fixed bug where the
11119 initialization of inheriting styles failed when the
11120 dont-override flag is set.
11121
11122 * cc-vars.el (c-special-indent-hook): Don't use set-from-style
11123 on this.
11124
111252000-07-24 Martin Stjernholm <bug-cc-mode@gnu.org>
11126
11127 * cc-defs.el (c-forward-comment): Removed the workaround
11128 introduced in 5.38 since it had worse side-effects. If a line
11129 contains the string "//\"", it regarded the // as a comment
11130 start since the \ temporarily doesn't have escape syntax.
11131
111322000-07-17 Emmanuel Briot <briot@act-europe.fr>
11133
11134 * ada-mode.el Got rid of all byte-compiler warnings on Emacs Load
11135 ada-xref.el before ada-prj.el, so that the Project menu is created
11136 when ada-prj tries to add to it.
11137 (ada-activate-keys-for-case): Suppress the characters that are not
11138 part of the Ada syntax. Better compatibility with else-mode
11139 (ada-adjust-case-interactive): When auto-casing is not active,
11140 correctly insert newlines (used to insert only ^M). Prevent the
11141 syntax table from being changed in case of an error
11142 (or '_' becomes part of a word and some commands are confused).
11143 Do nothing if ada-auto-case is nil.
11144 (ada-after-keyword-p): Ignore keywords that are also attributes
11145 (ada-batch-reformat): Update usage comment
11146 (ada-call-from-contextual-menu): New function
11147 (ada-case-read-exceptions): Reinitialize the casing exception list
11148 first to nil first, so that the casing exception file can be
11149 shared.
11150 (ada-check-defun-name): Handles "configure" keyword for gnatdist
11151 files.
11152 (ada-compile-goto-error): Fix regexp used to detect a file:line
11153 anywhere in the error message
11154 (ada-contextual-menu-last-point): New variable
11155 (ada-create-keymap): If the variable delete-key-deletes-forward is
11156 t on XEmacs, it means that DEL should delete one character
11157 forward.
11158 (ada-create-menu): Use :included instead of :visible for XEmacs.
11159 New submenu "Options".
11160 (ada-end-stmt-re): Correctly indent "select ... then abort"
11161 statements.
11162 (ada-fill-comment-paragraph): Correctly delete all leading '--'
11163 even if they don't match ada-fill-comment-prefix Fix handling of
11164 paragraphs on the first or last line of a file.
11165 (ada-format-paramlist): Fix handling of default parameter values.
11166 (ada-get-body-name): New function.
11167 (ada-get-current-indent): Optimized by searchling directly for an
11168 existing generic part or a statement outside of it. Handle
11169 ada-indent-align-comments when indenting comments Replaced some
11170 regexps by testing directly the next character. This results in a
11171 huge speedup on some files. New indentation scheme for renames
11172 statements. Stop looking for the 'while' or 'for' associated with
11173 a 'loop' at the first semicolon encountered. A "return" can also
11174 match an anonymous access subprogram declaration.
11175 (ada-get-indent-noindent): Ignore strings and comments when
11176 looking for the keywords "record" and "private".
11177 (ada-goto-matching-decl-start): When matching "if", make sure we
11178 are not in fact seeing "end if". Ignore "when" statements except
11179 when initial keyword was "begin". Fix handling of nested
11180 procedures. Add a recursive call to this function to skip over
11181 other 'end' statmts. Fix indentation for "when .. => begin"
11182 (ada-in-open-paren-p): Fix indentation for complex boolean
11183 expressions, where 'and then', 'or else' and parenthesis
11184 statements are mixed up.
11185 (ada-in-paramlist-p): Skip comments while searching for the
11186 beginning Fix handling of operator declarations.
11187 (ada-indent-align-comments): New variable
11188 (ada-indent-current): Change the syntax table only in the
11189 protected section, so that we are sure it is restored correctly.
11190 (ada-indent-on-previous-lines): Use ada-use-indent and
11191 ada-with-indent Correctly indent "select ... then"
11192 (ada-indent-region): Slight speedup.
11193 (ada-indent-renames): New variable.
11194 (ada-last-which-function-subprog, ada-last-which-function-line):
11195 New variables
11196 (ada-looking-at-semi-private): Correctly indent the 'private'
11197 keyword when it is the first word in a package declaration.
11198 (ada-loose-case-word): Stop searching if at the end of the buffer.
11199 (ada-loose-case-word, ada-capitalize-word): Recase the whole word
11200 even if point is not initially at the end of the word.
11201 (ada-matching-decl-start-re): Add "when".
11202 (ada-mode): Add support for abbrev-mode, outline-mode and
11203 which-func-mode Override the old find-file.el entry in
11204 ff-special-constructs since it is using the obsolete
11205 ada-spec-suffix variable
11206 (ada-no-auto-case): New function
11207 (ada-scan-paramlist): When parsing the argument type, accept
11208 spaces (as in "X 'Class", generated by Rational Rose).
11209 (ada-other-file-name): No longer loads the other file.
11210 (ada-popup-menu): Save and restore the current buffer and cursor
11211 position before and after displaying the menu.
11212 (ada-search-ignore-complex-boolean): New function.
11213 (ada-uncomment-region): Emacs21 already knows how to delete
11214 comments not starting in the first column.
11215 (ada-use-indent): New variable
11216 (ada-which-function): New function.
11217 (ada-with-indent): New variable
11218 (ada-xemacs): evaluate it at compile time too, so that ada-mode.el
11219 can be batch-compiled from the command line.
11220
11221 * ada-xref.el: Got rid of all byte-compiler warnings on Emacs.
11222 Add to the menu when the file is loaded, not in ada-mode-hook.
11223 Add -toolbar to the default ddd command Switches moved from
11224 ada-prj-default-comp-cmd and ada-prj-default-make-cmd to
11225 ada-prj-default-comp-opt
11226 (ada-add-ada-menu): Remove the map and name parameters Add the Ada
11227 Reference Manual to the menu
11228 (ada-check-current): rewritten as a call to ada-compile-current
11229 (ada-compile): Removed.
11230 (ada-compile-application, ada-compile-current, ada-check-current):
11231 Set the compilation-search-path so that compile.el automatically
11232 finds the sources in src_dir. Automatic scrollong of the
11233 compilation buffer. C-uC-cC-c asks for confirmation before
11234 compiling
11235 (ada-compile-current): New parameter, prj-field
11236 (ada-complete-identifier): Load the .ali file before doing
11237 processing
11238 (ada-find-ali-file-in-dir): prepend build_dir to obj_dir to
11239 conform to gnatmake's behavior.
11240 (ada-find-file-in-dir): New function
11241 (ada-find-references): Set the environment variables for gnatfind
11242 (ada-find-src-file-in-dir): New function.
11243 (ada-first-non-nil): Removed
11244 (ada-gdb-application): Add support for jdb, the java debugger.
11245 (ada-get-ada-file-name): Load the original-file first if not done
11246 yet.
11247 (ada-get-all-references): Handles the new ali syntax (parent types
11248 are found between <>).
11249 (ada-initialize-runtime-library): New function
11250 (ada-mode-hook): Always load a project file when a file is opened,
11251 so that the casing exceptions are correctly read.
11252 (ada-operator-re): Add all missing operators ("abs", "rem", "**").
11253 (ada-parse-prj-file): Use find-file-noselect instead of find-file
11254 to open the project file, since the latter does not work with
11255 speedbar Get default values before loading the prj file, or the
11256 default executable file name is wrong. Use the absolute value of
11257 src_dir to initialize ada-search-directories and
11258 compilation-search-path,... Add the standard runtime library to
11259 the search path for find-file.
11260 (ada-prj-default-debugger): Was missing an opening '{'
11261 (ada-prj-default-bind-opt, ada-prj-default-link-opt): New
11262 variables.
11263 (ada-prj-default-gnatmake-opt): New variable
11264 (ada-prj-find-prj-file): Handles non-file buffers For non-Ada
11265 buffers, the project file is the default one Save the windows
11266 configuration before displaying the menu.
11267 (ada-prj-src-dir, ada-prj-obj-dir, ada-prj-comp-opt,...): Removed
11268 (ada-read-identifier): Fix xrefs on operators (for "mod", "and",
11269 ...) regexp-quote identifiers names to support operators +,
11270 -,... in regexps.
11271 (ada-remote): New function.
11272 (ada-run-application): Erase the output buffer before starting the
11273 run Support remote execution of the application. Use
11274 call-process, or the arguments are incorrectly parsed
11275 (ada-set-default-project-file): Reread the content of the active
11276 project file, not the one from the current buffer When a project
11277 file is set as the default project, all directories are
11278 automatically associated with it.
11279 (ada-set-environment): New function
11280 (ada-treat-cmd-string): New special variable ${current}
11281 (ada-treat-cmd-string): Revised. The substitution is now done for
11282 any ${...} substring
11283 (ada-xref-current): If no body was found, compiles the spec
11284 instead. Setup ADA_{SOURCE,OBJECTS}_PATH before running the
11285 compiler to get rid of command line length limitations.
11286 (ada-xref-get-project-field): New function
11287 (ada-xref-project-files): New variable
11288 (ada-xref-runtime-library-specs-path)
11289 (ada-xref-runtime-library-ali-path): New variables
11290 (ada-xref-set-default-prj-values): Default run command now does a
11291 cd to the build directory. New field: main_unit Provide a default
11292 file name even if the current buffer has no prj file.
11293
11294 * ada-prj.el:
11295 Rewritten to show a tabbed-dialog.
11296 (ada-prj-add-ada-menu): Remove the map and name parameters.
11297 (ada-prj-display-page, ada-prj-field, ada-prj-initialize-values):
11298 New function
11299 (ada-prj-load-directory, ada-prj-subdirs-of): New functions
11300 (ada-prj-load-from-file): New function
11301 (ada-prj-save): Always save fields that depend on the current buffer
11302 (ada-prj-show-value): New function
11303
11304 * ada-stmt.el (ada-stmt-add-to-ada-menu): Hide the menu if not in
11305 Ada mode. This will allow us to display the Ada menu in any buffer
11306 we want (for project items).
11307 (ada-header-tmpl): Use ada-fill-comment-prefix to put the correct
11308 number of spaces in the header.
11309
113102000-07-24 Dave Love <fx@gnu.org>
11311
11312 * ediff-init.el (ediff-region-help-echo): Bind face-help.
11313
113142000-07-23 Noah Friedman <friedman@splode.com>
11315
11316 * type-break.el (type-break): perform autosave.
11317 Suggested by Stephen Gildea <gildea@intouchsys.com>.
11318 (type-break-do-query): Cancel query schedule while performing
11319 actual query, to avoid possibility of a second query being made
11320 while first one is already in progress.
11321 (type-break-time-stamp-format): New variable.
11322 (type-break-time-stamp): New function.
11323 (type-break-time-warning): Use it.
11324 (type-break-keystroke-warning): Use it.
11325 (type-break-noninteractive-query): Use it.
11326
11327 * emacs-lisp/eldoc.el (eldoc-minor-mode-string): Add autoload
11328 cookie.
11329 Use add-minor-mode to set minor-mode-alist, if available.
11330 (eldoc-echo-area-use-multiline-p): New user option.
11331 (eldoc-echo-area-multiline-supported-p): New variable.
11332 (eldoc-docstring-format-sym-doc): Use them.
11333 (eldoc-mode): If not using idle timers, append to local post and
11334 pre command hooks. Suggested by David Byers <davby@ida.liu.se>.
11335 (eldoc-display-message-no-interference-p): Don't interfere with
11336 edebug.
11337 Add autoload cookie for eldoc-mode minor-mode-alist initialization.
11338 (eldoc-function-arglist): New function.
11339 (eldoc-function-argstring): Use it.
11340
11341 * menu-bar.el (menu-bar-files-menu [recover-session]): Make sure
11342 auto save directory exists before calling directory-files.
11343
113442000-07-23 Dave Love <fx@gnu.org>
11345
11346 * international/iso-transl.el (iso-transl-char-map): Fix ^e, ^i,
11347 ^o, ^u.
11348
113492000-07-21 Dave Love <fx@gnu.org>
11350
11351 * ediff-init.el (ediff-region-help-echo): Modify to use overlay
11352 now passed to the function. It now works properly.
11353
11354 * smerge-mode.el (smerge-mode-menu): Fill it out.
11355
113562000-07-20 Gerd Moellmann <gerd@gnu.org>
11357
11358 * info-look.el (info-lookup): If *info* is shown in another frame
11359 on the same display, select that frame, instead of switching to
11360 the Info buffer in another window of the selected frame.
11361
11362 * simple.el (universal-argument-map): Bind numeric keypad keys
11363 kp-0 to kp-9 and kp-subtract.
11364 (digit-argument): Handle these keys.
11365
113662000-07-20 Dave Love <fx@gnu.org>
11367
11368 * net/goto-addr.el (goto-address-fontify): Don't bother with
11369 buffer-modified and read-only stuff -- irrelevant with overlays.
11370 Put an extra property on the overlays and use it to clean up in
11371 case goto-address is re-run.
11372
113732000-07-19 Richard M. Stallman <rms@gnu.org>
11374
11375 * timer.el (run-with-idle-timer): Doc fix.
11376
11377 * mail/mail-utils.el (mail-strip-quoted-names):
11378 Handle case where <...> appears inside "...".
11379 Use replace-match to edit the string more simply.
11380 (rmail-dont-reply-to): Cope with an unmatched ".
11381
113822000-07-19 Dave Love <fx@gnu.org>
11383
11384 * ediff-init.el (ediff-region-help-echo): Partially fix for Emacs
11385 implementation.
11386
11387 * mouse.el (popup-menu): Allow a list of keymaps for menu arg.
11388 (mouse-popup-menubar, mouse-popup-menubar-stuff): New functions.
11389 (global-map): Bind c-down-mouse-3 to mouse-popup-menubar-stuff.
11390
113912000-07-19 Gerd Moellmann <gerd@gnu.org>
11392
11393 * textmodes/refer.el: Correct maintainer's email address.
11394
11395 * progmodes/hideif.el: Correct author's email address.
11396 Fix typo in comment.
11397
11398 * xml.el: New file.
11399
11400 * mail/mailheader.el: Correct author's mail address.
11401
11402 * gnus/parse-time.el: Correct author's mail address.
11403
114042000-07-19 Colin Walters <walters@cis.ohio-state.edu>
11405
11406 * comint.el (comint-highlight-input, comint-highlight-face):
11407 New user options.
11408 (comint-input-ring-file-name): Change custom type.
11409 (comint-mode-map): Bind mouse-2.
11410 (comint-insert-clicked-input): New function.
11411 (comint-send-input): Handle input highlighting.
11412
114132000-07-18 Stefan Monnier <monnier@cs.yale.edu>
11414
11415 * mouse.el (popup-menu): New function.
11416 (mouse-major-mode-menu): Use it.
11417
114182000-07-18 Dave Love <fx@gnu.org>
11419
11420 * bindings.el (mode-line-mule-info, mode-line-modified): help-echo
11421 improvements.
11422
114232000-07-18 Gerd Moellmann <gerd@gnu.org>
11424
11425 * faces.el (face-font-selection-order)
11426 (face-font-family-alternatives): Add custom type.
11427
114282000-07-18 Dave Love <fx@gnu.org>
11429
11430 * cus-edit.el (custom-variable-reset-saved)
11431 (custom-variable-reset-standard): Remove unused bindings.
11432
11433 * rect.el (open-rectangle-line): Remove unused let.
11434
11435 * hl-line.el (hl-line-highlight): Check hl-line-mode.
11436
114372000-07-18 Gerd Moellmann <gerd@gnu.org>
11438
11439 * cdl.el: Fix `Maintainer' keyword.
11440
11441 * play/pong.el: Add author's email address.
11442
114432000-07-17 Sam Steingold <sds@gnu.org>
11444
11445 * files.el (insert-directory): Call `split-string' instead of
11446 re-implementing it.
11447
114482000-07-18 Gerd Moellmann <gerd@gnu.org>
11449
11450 * mail/vms-pmail.el: Change maintainer to FSF.
11451
11452 * net/goto-addr.el: Change maintainer to FSF.
11453
11454 * info.el (Info-title-face-alist): Removed.
11455
114562000-07-18 David Ponce <david@dponce.com>
11457
11458 * recentf.el (recentf-open-files): New command that works like
11459 `recentf-open-more-files', but shows the whole list of files (not just
11460 those omitted from the menu). Useful if you don't use a menu-bar!
11461 (recentf-open-more-files) Modified to use `recentf-open-files'.
11462
11463 (recentf-open-files, recentf-open-more-files)
11464 (recentf-edit-list): Dialogs use `recentf-dialog-mode'
11465
11466 (recentf-dialog-mode): New mode for dialogs. You can now just type
11467 "q" to cancel the dialogs.
11468
114692000-07-18 David Ponce <david@dponce.com>
11470
11471 * recentf.el: This is a major update of recentf.el. It adds new
11472 features to better organize the recentf menu and "More..." buffer.
11473
11474 Using new provided menu filtering functions you can now organize the
11475 recent files list:
11476
11477 - by major modes
11478 - by directories
11479 - by user defined rules
11480
11481 Finally, with the new `recentf-filter-changer' customizable filter you
11482 can define a ring of filters and dynamically (via the menu) cycle on
11483 each menu organization in the ring (a la msb).
11484
114852000-07-18 Eli Zaretskii <eliz@is.elta.co.il>
11486
11487 * eshell/eshell.el (eshell): Replace links to eshell.info with
11488 links to eshell, to avoid problems on systems where the manual is
11489 installed as `eshell'.
11490 * eshell/esh-cmd.el (eshell-cmd): Ditto.
11491 * eshell/em-smart.el (eshell-smart): Ditto.
11492 * eshell/em-banner.el (eshell-banner): Ditto.
11493 * eshell/em-alias.el (eshell-alias, eshell-bad-command-tolerance): Ditto.
11494
11495 * eshell/em-unix.el (eshell-shuffle-files): Don't disable
11496 same-file check in the MS-DOS version (it does support inodes).
11497
11498 * eshell/em-alias.el (eshell-maybe-replace-by-alias): Doc fix.
11499
11500 * eshell/eshell.el (eshell-directory-name):
11501 Run default directory name through convert-standard-filename.
11502
115032000-07-18 Kenichi Handa <handa@etl.go.jp>
11504
11505 * international/mule-cmds.el (select-safe-coding-system):
11506 Fix typo in the comment.
11507
11508 * language/european.el (compound-text):
11509 Force katakana-jisx0201 to be designated to G1.
11510
11511 * international/mule-conf.el (oldjis-newjis-jisroman-ascii):
11512 Don't translate some national variant characters of latin-jisx0201.
11513 (x-ctext): Force katakana-jisx0201 to be designated to G1.
11514
11515 * international/kkc.el (kkc-after-update-conversion-functions):
11516 New variable.
11517 (kkc-update-conversion): Run functions in it at the tail.
11518
115192000-07-16 John Wiegley <johnw@gnu.org>
11520
11521 * lisp/align.el (align-newline-and-indent):
11522 Adding new function. for auto-aligning blocks of code on RET.
11523 (align-region): Fixed badly formatted minibuffer message.
11524
115252000-07-17 Kenichi Handa <handa@etl.go.jp>
11526
11527 * international/kkc.el (kkc-show-conversion-list-count): Customize it.
11528 (kkc-region): Update kkc-next-count and kkc-prev-count here. Show
11529 the conversion list at first if appropriate.
11530 (kkc-next): Don't update kkc-next-count here.
11531 (kkc-prev): Don't update kkc-prev-count here.
11532 (kkc-show-conversion-list-update): Fix setting up of conversion
11533 list message.
11534
115352000-07-16 Stefan Monnier <monnier@cs.yale.edu>
11536
11537 * mouse.el (mouse-major-mode-menu-1): Get the submenu with lookup-key.
11538
115392000-07-16 Dave Love <fx@gnu.org>
11540
11541 * cus-edit.el (custom-buffer-create-internal): Use a help-echo
11542 function to be more specific.
11543
11544 * wid-edit.el (widget-specify-field, widget-specify-button): Allow
11545 non-string help-echo.
11546 (widget-types-convert-widget): Defsubst it.
11547 (widget-echo-help): Try to cope with a help-echo function of two
11548 possible sorts.
11549
115502000-07-15 Jason Rumney <jasonr@gnu.org>
11551
11552 * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
11553 Declare as obsolete.
11554
11555 * term/w32-win.el: Make FONTNAME arg to set-fontset-font a cons.
11556
115572000-07-14 Gerd Moellmann <gerd@gnu.org>
11558
11559 * hilit-chg.el: Fix typo.
11560
115612000-07-14 Dave Love <fx@gnu.org>
11562
11563 * info.el (Info-mode-menu): Fix use of :help, :enable.
11564
115652000-07-14 Stefan Monnier <monnier@cs.yale.edu>
11566
11567 * emacs-lisp/easymenu.el (easy-menu-convert-item-1): Intern the label.
11568
115692000-07-13 Dave Love <fx@gnu.org>
11570
11571 * emacs-lisp/easymenu.el: Doc fixes.
11572 (easy-menu-remove): Defalias to ignore.
11573
11574 * textmodes/reftex-cite.el (reftex-bibtex-selection-callback):
11575 Call throw correctly.
11576
115772000-07-13 Gerd Moellmann <gerd@gnu.org>
11578
11579 * faces.el (frame-background-mode): Doc fix.
11580
11581 * simple.el (eval-expression-print-length): Change custom type to
11582 allow entering nil as value.
11583
115842000-07-13 Dave Love <fx@gnu.org>
11585
11586 * progmodes/fortran.el (fortran-imenu-generic-expression):
11587 Change definition layout.
11588 (fortran-mode-menu): Reinstate customize entries.
11589
11590 * cus-edit.el (custom-group-menu-create, customize-menu-create):
11591 Use :filter, per old XEmacs code.
11592
115932000-07-12 Gerd Moellmann <gerd@gnu.org>
11594
11595 * term.el (term-send-raw-meta): Strip modifiers from the keyboard
11596 event when deciding what to send to the terminal.
11597
115982000-07-12 Dave Love <fx@gnu.org>
11599
11600 * cus-start.el: Add optional version as 4th element of specs and
11601 use it for several things new in v21. Remove load-path. Fix type
11602 of line-number-display-limit.
11603
116042000-07-11 Dave Love <fx@gnu.org>
11605
11606 * progmodes/fortran.el: Don't require easymenu.
11607 Use repeat counts in various regexps.
11608 (fortran-mode-syntax-table): Defvar directly.
11609 (fortran-font-lock-keywords-1, fortran-font-lock-keywords-2)
11610 (fortran-font-lock-keywords-3, fortran-font-lock-syntactic-keywords):
11611 Use defvar, not defconst.
11612 (fortran-mode-map): Change locals in `let'. Use `fortran-auto-fill'.
11613 (fortran-mode): Set fortran-comment-line-start-skip,
11614 fortran-comment-line-start-skip, dabbrev-case-fold-search.
11615 (fortran-comment-indent): Use defsubst.
11616 (fortran-indent-comment, fortran-indent-to-column, fortran-break-line):
11617 Use fortran-comment-indent, not fortran-comment-indent-function.
11618 (fortran-comment-region, fortran-electric-line-number): Simplify.
11619 (fortran-auto-fill): New function.
11620 (fortran-do-auto-fill): Deleted.
11621 (fortran-find-comment-start-skip):
11622 Check for non-null comment-start-skip.
11623 (fortran-auto-fill-mode, fortran-fill-statement):
11624 Use fortran-auto-fill.
11625 (fortran-fill): Use fortran-auto-fill. Check for null
11626 comment-start-skip. Simplify final clause and use end-of-line finally.
11627
11628 * widget.el (widget-plist-member): New alias.
11629
116302000-07-11 Eli Zaretskii <eliz@is.elta.co.il>
11631
11632 * eshell/esh-module.el (toplevel): Reference
11633 byte-compile-current-file only if it is bound.
11634
116352000-07-10 Gerd Moellmann <gerd@gnu.org>
11636
11637 * dired.el: Don't require `dired-aux'.
11638
116392000-07-10 Miles Bader <miles@lsi.nec.co.jp>
11640
11641 * dired-aux.el (dired-show-file-type): New function.
11642 * dired.el (dired-mode-map): Bind `w' to dired-show-file-type.
11643 (dired-show-file-type): Add autoload.
11644
116452000-07-10 Kenichi Handa <handa@etl.go.jp>
11646
11647 * international/mule-diag.el (describe-font): Adjusted for the
11648 change of fontset-info.
11649 (print-fontset): Likewise.
11650
116512000-07-09 Stefan Monnier <monnier@cs.yale.edu>
11652
11653 * mouse.el (mouse-drag-region): Use functionp rather than fboundp.
11654
116552000-07-07 Gerd Moellmann <gerd@gnu.org>
11656
11657 * bindings.el: Bind `[delete]' to delete-char.
11658
11659 * dired.el (dired-find-alternate-file): New function.
11660 (dired-mode-map): Bind `a' to dired-find-alternate-file.
11661 (toplevel): Require dired-aux when compiling.
11662 (dired-buffers): Move defvar within file to avoid compiler warning.
11663
11664 * info.el (Info-last-search): Variable removed.
11665 (Info-search-history): New variable.
11666 (Info-search): New Info-search-history.
11667
11668 * battery.el, info-look.el: Change author's mail address.
11669
116702000-07-07 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
11671
11672 * mail/rmail.el (rmail-clear-headers): Don't throw an error
11673 if rmail-ignored-headers is nil.
11674 (rmail-retry-failure): Bind rmail-ignored-headers and
11675 rmail-displayed-headers to nil.
11676
116772000-07-06 Gerd Moellmann <gerd@gnu.org>
11678
11679 * lpr.el (lpr-page-header-switches): Add `-h' switch.
11680 (print-region-1): Don't hard code `-h' here.
11681
11682 * Makefile.in (TAGS-LISP): Don't use `$(lispsource)'.
11683
116842000-07-01 Francesco Potorti` <pot@gnu.org>
11685
11686 * rmail.el (mail-unsent-separator): Changed "the" to "\\w+", as
11687 exim can use "your message" instead of "the message".
11688
116892000-07-06 Stefan Monnier <monnier@cs.yale.edu>
11690
11691 * facemenu.el: Docstrings fixes.
11692 (facemenu-get-face): Don't use internal-find-face.
11693 (facemenu-iterate): Rename arg to match the docstring.
11694
11695 * newcomment.el (uncomment-region): Be more careful when skipping
11696 backwards over `=' not to bump into BOBP.
11697
116982000-07-05 Michael Kifer <kifer@cs.sunysb.edu>
11699
11700 * ediff-diff.el (ediff-wordify): Use syntax table.
11701 * ediff-init.el (ediff-has-face-support-p): Use
11702 ediff-color-display-p.
11703 (ediff-color-display-p): Use display-color-p, changed to defun
11704 from defsubst.
11705 Got rid of special cases for NeXT and OS/2.
11706 * ediff-wind.el (ediff-setup-control-frame): Set proper modeline
11707 face.
11708
117092000-07-05 Stefan Monnier <monnier@cs.yale.edu>
11710
11711 * emacs-lisp/lucid.el: Require CL.
11712 (copy-tree, remprop): Remove, it's provided by CL.
11713 (map-keymap): Define in terms of cl-map-keymap.
11714 (extent-property, set-extent-end-glyph): New functions.
11715
11716 * emacs-lisp/cl-extra.el (cl-map-keymap): Handle char-tables.
11717
117182000-07-05 Gerd Moellmann <gerd@gnu.org>
11719
11720 * Makefile.in (DONTCOMPILE): Add comment that the name may
11721 not be changed without changing the make-dist script.
11722
11723 * emacs-lisp/cl-extra.el (cl-old-mapc): Removed; don't defalias mapc.
11724 (cl-mapc): Use mapc instead of cl-old-mapc.
11725
117262000-07-05 Andrew Innes <andrewi@gnu.org>
11727
11728 * makefile.nt: Add support for `bootstrap' and related targets.
11729
117302000-07-05 Stefan Monnier <monnier@cs.yale.edu>
11731
11732 * emacs-lisp/easymenu.el (easy-menu-define): Docstring fix.
11733 (easy-menu-do-define): Use `menu-item' format.
11734 Handle case where easy-menu-create-menu returns a symbol.
11735 Manually call the potential top-level filter in the function binding.
11736 (easy-menu-filter-return): New arg NAME.
11737 Convert to a keymap if MENU is an XEmacs menu.
11738 (easy-menu-convert-item-1): New. Extracted from easy-menu-do-add-item.
11739 (easy-menu-converted-items-table, easy-menu-convert-item):
11740 New var and fun to memoize easy-menu-convert-item-1.
11741 (easy-menu-do-add-item): Use it.
11742 (easy-menu-create-menu): Use easy-menu-convert-item.
11743 Wrap easy-menu-filter-return around any :filter specification.
11744 Don't convert the menu if a filter was specified.
11745 Tell easy-menu-make-symbol not to check for MENU being an expression.
11746 (easy-menu-make-symbol): New arg NOEXP.
11747
117482000-07-05 Gerd Moellmann <gerd@gnu.org>
11749
11750 * emacs-lisp/lisp-mode.el (eval-defun-2): Remove parameter
11751 EVAL-DEFUN-ARG-INTERNAL; always print to minibuffer.
11752 (eval-defun): If called with prefix arg, instrument code for
11753 Edebug.
11754
11755 * emacs-lisp/edebug.el (edebug-eval-defun): Make doc string
11756 similar to that of eval-defun.
11757
117582000-07-04 Dave Love <fx@gnu.org>
11759
11760 * hl-line.el (hl-line-overlay): Make it permanent-local.
11761
11762 * calendar/todo-mode.el: Replaced with a working version, based on
11763 1998-01-12T11:43:22Z!os10000@seidel-space.de tidied up.
11764
117652000-07-03 Miles Bader <miles@lsi.nec.co.jp>
11766
11767 * paths.el (prune-directory-list): New function.
11768 (Info-default-directory-list): Rewritten to more methodically
11769 enumerate a big list of possible info directories (based on the
11770 list used by the standalone info reader).
11771
11772 * info.el (info-initialize): Use prune-directory-list to remove
11773 non-existent directories from Info-directory-list.
11774
11775 * paths.el (Info-default-directory-list): Try a list of possible
11776 info-directories instead of a single one. Add the possible
11777 info directory "/usr/share/info".
11778
11779 * woman.el (woman-man.conf-path): Explicitly include the debian
11780 man-db config file "/etc/manpath.config".
11781 (woman-parse-man.conf): Also handle MANDATORY_MANPATH entries, as
11782 are present in `manpath.config'.
11783 (woman-manpath): Include "/usr/share/man".
11784
117852000-07-03 Gerd Moellmann <gerd@gnu.org>
11786
11787 * frame.el (blink-cursor-mode): Don't hide cursor initially.
11788
11789 * startup.el (command-line): Initialize blink-cursor based
11790 on window-system.
11791
11792 * frame.el (blink-cursor): Default to nil if not running under
11793 a window-system.
11794
11795 * faces.el (face-spec-set): Ignore invalid attributes like 20.x.
11796 (face-x-resources): Remove duplicate entry for :font.
11797
11798 * textmodes/refer.el (refer-find-entry-internal): Use some-window
11799 instead of cycling through windows with next-window.
11800
11801 * term/sup-mouse.el (sup-pos-to-window): Use some-window instead
11802 of cycling through windows with next-window.
11803
11804 * term/bg-mouse.el (bg-window-from-x-y): Use some-window instead
11805 of cycling through windows with next-window.
11806
11807 * emacs-lisp/edebug.el (edebug-window-live-p, edebug-window-list)
11808 (edebug-get-displayed-buffer-points): Use walk-windows/some-window
11809 instead of cycling through windows with next-window.
11810
11811 * calendar/appt.el (appt-select-lowest-window): Use walk-windows
11812 instead of cycling through windows with next-window.
11813
11814 * dabbrev.el (dabbrev--find-expansion): Use walk-windows instead
11815 of cycling through windows with next-window.
11816
11817 * terminal.el (te-process-output): Use walk-windows instead of
11818 cycling through windows with next-window.
11819
11820 * server.el (server-switch-buffer): Use some-window instead of
11821 cycling through windows with next-window.
11822
11823 * window.el (some-window): New function.
11824 (walk-windows): Remove reference to walk-windows-start.
11825
11826 * hilit19.el (hilit-lookup-face-create): Don't set face colors to nil.
11827
118282000-07-03 Richard Stallman <rms@gnu.org>
11829
11830 * window.el (walk-windows): Guarantee termination by keeping a list
11831 of all the windows already handled.
11832
118332000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
11834
11835 * mouse.el (mouse-show-mark, mouse-save-then-kill): Don't use
11836 window-system.
11837
11838 * man.el (Man-notify-when-ready): Don't use window-system. If
11839 Man-notify-method is newframe, and the display is not
11840 multi-frame, select the frame created for the man page.
11841 (Man-init-defvars): Doc fix.
11842
118432000-06-28 Gerd Moellmann <gerd@gnu.org>
11844
11845 * faces.el (region): Change background color for light background.
11846
11847 * ediff-wind.el (ediff-setup-control-frame): Remove :box
11848 attribute from mode-line face of Ediff control frame.
11849
11850 * replace.el (query-replace-map): Bind `e' like `E'.
11851
118522000-06-28 Eli Zaretskii <eliz@is.elta.co.il>
11853
11854 * menu-bar.el (menu-bar-edit-menu) <mark-whole-buffer>:
11855 Change name to "Select All".
11856
11857 * dos-fns.el (convert-standard-filename): Fix last change.
11858
118592000-06-27 Gerd Moellmann <gerd@gnu.org>
11860
11861 * help.el (describe-variable): Don't insert a second `'s' in front
11862 of the string `value is shown below'. Since the syntax-table is
11863 set to emacs-lisp-mode-syntax-table, forward-sexp skips over
11864 an existing `'s', so that this won't be deleted.
11865
11866 * pcmpl-cvs.el, pcmpl-gnu.el, pcmpl-linux.el, pcmpl-rpm.el:
11867 * pcmpl-unix.el: New files.
11868
118692000-06-26 Stefan Monnier <monnier@cs.yale.edu>
11870
11871 * wid-edit.el (widget-member): Use the new plist-member.
11872
118732000-06-26 Gerd Moellmann <gerd@gnu.org>
11874
11875 * replace.el (perform-replace): Undo change of 2000-04-04.
11876 Instead, move backward 1 character at the end of the loop when
11877 necessary.
11878
11879 * faces.el (fringe): Change face for different backgrounds.
11880
11881 * eshell/esh-module.el (toplevel): Load defgroup's differently;
11882 patch from John.
11883
11884 * eshell/*.el: Change spelling of the Free Software Foundation.
11885
11886 * eshell/esh-toggle.el: Removed.
11887
11888 * Makefile.in (DONTCOMPILE): Add eshell/esh-group.el.
11889
11890 * menu-bar.el (menu-bar-tools-menu): Call read-mail-command
11891 interactively.
11892
118932000-06-26 Alex Schroeder <alex@gnu.org>
11894
11895 * sql.el (sql-interactive-mode-map): Use `kbd' in calls to
11896 `define-key'; instead of checking `(emacs-version)' check for
11897 `set-keymap-parent' and `set-keymap-name' directly. Add entries
11898 for `;' and `o' which might be electric.
11899
11900 (sql-electric-stuff): New user option.
11901 (sql-magic-go): New function which uses `sql-electric-stuff'.
11902 (sql-magic-semicolon): New function which uses
11903 `sql-electric-stuff'.
11904
11905 (sql-accumulate-and-indent): Insert newline if `comint-accumulate'
11906 is not fboundp.
11907
11908 (sql-oracle-options): New variable.
11909 (sql-oracle): Use it.
11910
11911 (sql-imenu-generic-expression): Doc change.
11912 (sql-find-sqli-buffer): Make sure the default-value of sql-buffer
11913 is used.
11914
11915 (sql-informix): Added command line parameter "-" to force
11916 sql-informix-program to use stdout.
11917
119182000-06-25 Eli Zaretskii <eliz@is.elta.co.il>
11919
11920 * international/codepage.el (cp-coding-system-for-codepage-1): Doc fix.
11921 (cp864-decode-table): Doc fix.
11922 (cp720-decode-table): New variable, supports the Arabic OEM
11923 codepage used by Windows.
11924 (cp737-decode-table): New, Greek OEM codepage used by Windows.
11925
119262000-06-23 Dave Love <fx@gnu.org>
11927
11928 * font-lock.el (font-lock-support-mode) <defgroup>: Add :version.
11929 (font-lock-fontify-anchored-keywords): Use
11930 line-beginning-position.
11931 (global-font-lock-mode): Use mapc.
11932
119332000-06-23 Stefan Monnier <monnier@cs.yale.edu>
11934
11935 * eshell/esh-module.el: Require CL when compiling.
11936
119372000-06-23 Gerd Moellmann <gerd@gnu.org>
11938
11939 * comint.el (comint-substitute-in-file-name): Call replace-match
11940 with second and third arg t.
11941
11942 * cus-edit.el (custom-button-face, custom-button-pressed-face):
11943 Specify foreground color.
11944
11945 * faces.el (tool-bar, mode-line, header-line): Specify foreground
11946 color.
11947
11948 * Makefile.in (DONTCOMPILE): Add eshell/esh-maint.el.
11949
11950 * eshell/esh-cmd.el (eshell-rewrite-for-command): Use cdr and
11951 cddr instead of cdddr.
11952
11953 * eshell/esh-util.el (eshell-sublist): Use eshell-copy-list
11954 instead of copy-list.
11955
11956 * eshell/esh-mode.el (eshell-mode): Use eshell-copy-list instead
11957 of copy-list.
11958
11959 * subdirs.el: Add eshell subdirectory.
11960
11961 * eshell: New subdirectory containing the Eshell package.
11962
11963 * pcomplete.el: New file.
11964
119652000-06-23 Paul Eggert <eggert@twinsun.com>
11966
11967 * mail/mailpost.el (post-mail-send-it): Make sure file has
11968 proper permissions from birth.
11969
11970 * files.el (basic-save-buffer-2): When temporarily setting
11971 file modes, set them to current modes plus 0200, not to 0777.
11972
11973 * emerge.el (emerge-make-temp-file): Make sure file has proper
11974 permissions from birth.
11975
119762000-06-22 Eli Zaretskii <eliz@is.elta.co.il>
11977
11978 * files.el (make-backup-file-name-1): On DOS/Windows, run the
11979 backup file name through convert-standard-filename.
11980
11981 * dos-fns.el (convert-standard-filename): Convert leading
11982 directories as well. When long file names are supported, convert
11983 characters that are invalid in Windows file names.
11984
119852000-06-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11986
11987 * ps-print.el: Fix bug: if ^L is the very first buffer character,
11988 ps-print crashes. New feature: page selection for printing. Create
11989 raw-text-unix coding system for XEmacs. Doc fix.
11990 (ps-print-version): New version number (5.2.3).
11991 (ps-plot-region): Bug fix.
11992 (ps-setup, ps-init-output-queue, ps-output, ps-begin-job, ps-end-file)
11993 (ps-header-sheet, ps-generate, ps-end-job): Code fix.
11994 (ps-restore-selected-pages, ps-selected-pages, ps-print-page-p): New
11995 funs.
11996 (ps-selected-pages, ps-last-selected-pages, ps-first-page)
11997 (ps-last-page): New vars.
11998
119992000-06-21 Gerd Moellmann <gerd@gnu.org>
12000
12001 * progmodes/sh-script.el (sh-while-getopts): Fix handling of
12002 empty option string.
12003
120042000-06-21 Eli Zaretskii <eliz@is.elta.co.il>
12005
12006 * man.el (man): Doc fix.
12007
120082000-06-21 Kenichi Handa <handa@etl.go.jp>
12009
12010 * international/mule-cmds.el (set-language-info-alist): Docstring
12011 fixed.
12012
120132000-06-20 Gerd Moellmann <gerd@gnu.org>
12014
12015 * version.el (emacs-version): Use ISO date format.
12016
12017 * emulation/pc-select.el (pc-selection-mode): Bind `M-\d'
12018 instead of `M-backspace'.
12019
12020 * simple.el (turn-off-auto-fill): New function.
12021
120222000-06-20 Stefan Monnier <monnier@cs.yale.edu>
12023
12024 * jit-lock.el (with-buffer-prepared-for-jit-lock):
12025 Renamed from with-buffer-prepared-for-font-lock and use
12026 inhibit-modification-hooks rather than setting *-change-functions.
12027 Update all functions to use the new name.
12028 (jit-lock-first-unfontify-pos): New semantics (and doc).
12029 (jit-lock-mode): Make non-interactive.
12030 Don't automatically turn on font-lock.
12031 Set jit-lock-first-unfontify-pos to indicate deferred-contextual mode.
12032 Always use jit-lock-after-change.
12033 Remove and restore font-lock-after-change-function.
12034 (turn-on-jit-lock, jit-lock-after-fontify-buffer)
12035 (jit-lock-after-unfontify-buffer): Remove.
12036 (jit-lock-stealth-fontify):
12037 Reset jit-lock-first-unfontify-pos to point-max rather than to nil.
12038 (jit-lock-after-change): Set the `fontified' text-prop to nil.
12039
120402000-06-20 Sam Steingold <sds@gnu.org>
12041
12042 * emacs-lisp/cl-indent.el (toplevel): Indent
12043 `print-unreadable-object' properly. Untabify.
12044
120452000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
12046
12047 * textmodes/reftex.el (reftex-find-citation-regexp-format):
12048 Support for bibentry.
12049 (reftex-compile-variables): Fixed problem with end of section-re.
12050
12051 * texmodes/reftex-dcr.el (reftex-view-crossref,
12052 reftex-view-crossref-from-bibtex):
12053 Deal with changed `reftex-find-citation-regexp-format'.
12054 (reftex-view-regexp-match, reftex-view-crossref-from-bibtex):
12055 Replaced `remprop' with `put'.
12056 (reftex-view-crossref, reftex-view-crossref-when-idle):
12057 Support for bibentry.
12058
12059 * textmodes/reftex-vars.el (reftex-cite-format-builtin):
12060 New entry for bibentry package.
12061
12062 * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
12063 Regexp also matches "\nobibliography".
12064
12065 * textmodes/reftex-global.el (reftex-renumber-simple-labels):
12066 Call `reftex-ensure-write-access' before doing anything.
12067 (reftex-ensure-write-access): New function.
12068
120692000-06-14 Carsten Dominik <dominik@strw.leidenuniv.nl>
12070
12071 * progmodes/idlwave.el: File re-installed (update to version 4.2)
12072
12073 * progmodes/idlw-shell.el: File re-installed (update to version 4.2)
12074
12075 * progmodes/idlw-rinfo.el: File re-installed (update to version 4.2)
12076
12077 * progmodes/idlw-toolbar.el: File re-installed (update to version 4.2)
12078
12079
120802000-06-20 Dave Love <fx@gnu.org>
12081
12082 * faces.el (frame-background-mode): Use set-default, not set, in
12083 setter.
12084 (frame-update-faces, frame-update-face-colors): Define with
12085 defalias.
12086
12087 * enriched.el (enriched-decode-foreground)
12088 (enriched-decode-background): Don't use internal-find-face.
12089
12090 * apropos.el: Doc fixes.
12091
12092 * cus-edit.el (customize-changed-options): Check arg.
12093 (customize-version-lessp): Don't require decimal point.
12094
12095 * custom.el (defcustom, defgroup): Doc fix.
12096
12097 * newcomment.el (comment) <defgroup>: Add :version.
12098 (comment-multi-line): Doc fix.
12099
12100 * emulation/mlsupport.el (define-hooked-local-abbrev,
12101 define-hooked-global-abbrev): Fix, using define-abbrev.
12102
121032000-06-19 Gerd Moellmann <gerd@gnu.org>
12104
12105 * menu-bar.el (menu-bar-edit-menu): Add menu item for marking
12106 the whole buffer.
12107
121082000-06-19 Dave Love <fx@gnu.org>
12109
12110 * menu-bar.el (menu-bar-options-save): New function.
12111 (menu-bar-options-menu): Use it.
12112 (menu-bar-options-menu) <toggle-global-lazy-font-lock-mode>:
12113 Simplify.
12114
121152000-06-19 Andreas Schwab <schwab@suse.de>
12116
12117 * progmodes/etags.el (tags-query-replace): Put new parameters
12118 START and END at the end, for backward compatibility.
12119
121202000-06-19 Kenichi Handa <handa@etl.go.jp>
12121
12122 * international/codepage.el:
12123 (cp-coding-system-for-codepage-1): Delete special codes for
12124 generating xxx-dos coding system because now a CCL based coding
12125 system can handle EOL conversion by default.
12126
12127 * international/mule.el (make-coding-system): Generate subsidiary
12128 coding systems for EOL handling variants even for a CCL based
12129 coding system.
12130
121312000-06-19 Kenichi Handa <handa@etl.go.jp>
12132
12133 * international/isearch-x.el (isearch-minibuffer-input-method)
12134 (isearch-minibuffer-input-method-function): These variables
12135 deleted.
12136 (isearch-with-input-method): Don't use the above variables.
12137 (isearch-process-search-multibyte-characters): Likewise. Call
12138 read-string with the arg INHERIT-INPUT-METHOD t.
12139
121402000-06-17 Stefan Monnier <monnier@cs.yale.edu>
12141
12142 * font-lock.el (font-lock-after-fontify-buffer)
12143 (font-lock-after-unfontify-buffer): No need to call back to jit-lock.
12144
12145 * jit-lock.el (jit-lock-mode): Force jit-refontify when turned on.
12146 Use consistent make-local-variable style for font-lock-fontified.
12147 (jit-lock-fontify-buffer):
12148 Don't bother checking for font-lock-mode and jit-lock-mode.
12149
12150 * time.el: Remove trailing ^M that prevent CVS-merging.
12151
121522000-06-16 Gerd Moellmann <gerd@gnu.org>
12153
12154 * Makefile.in (distclean): New target.
12155
121562000-06-16 Stefan Monnier <monnier@cs.yale.edu>
12157
12158 * Makefile.in (srcdir): Define for update-subdirs.
12159
121602000-06-16 Gerd Moellmann <gerd@gnu.org>
12161
12162 * find-lisp.el: New file.
12163
121642000-06-16 Andrew Innes <andrewi@gnu.org>
12165
12166 * time.el (display-time-mail-function): New variable, to allow
12167 external packages to indicate when new mail is available.
12168 (display-time-update): Use it.
12169
121702000-06-16 Kenichi Handa <handa@etl.go.jp>
12171
12172 * international/mule.el (mule-version): Change version name to
12173 SAKAKI. AOI has already been used by Meadow.
12174
12175 * international/quail.el (quail-show-guidance-buf): To find the
12176 bottom window (but minibuffer), pay attention to the height of
12177 minibuffer.
12178
121792000-06-15 Eli Zaretskii <eliz@is.elta.co.il>
12180
12181 * arc-mode.el (archive-mode-map): Use the new menu-item format for
12182 menu-bar menus. Add help strings. Don't remove the Edit menu
12183 from the menu bar, as the menu bar has enough space now.
12184
12185 * Makefile.in (SHELL): Make sure /bin/sh is used.
12186
12187 * woman.el (woman-man-buffer): Fix bold and underlined CJK
12188 characters, which use series of two ^H characters instead of one.
12189
121902000-06-15 Gerd Moellmann <gerd@gnu.org>
12191
12192 * info.el (Info-find-in-tag-table-1, Info-find-in-tag-table)
12193 (Info-find-node-in-buffer-1, Info-find-node-in-buffer): New
12194 functions.
12195 (Info-find-node-2): Try a case-sensitive search first, then
12196 do a case-insensitive search.
12197
12198 * menu-bar.el (menu-bar-help-menu): Add menu item for non-English
12199 tutorials.
12200
12201 * complete.el (PC-env-vars-alist): New variable.
12202 (PC-complete-as-file-name): New function.
12203 (partial-completion-mode): Initialize PC-env-vars-alist from
12204 process-environment.
12205 (PC-do-completion): Handle completion of env vars.
12206
12207 * info.el (Info-set-mode-line): Show file name in mode line,
12208 use `*Info*' instead of `Info:'.
12209
12210 * startup.el (command-line-1): Change copyright messages to year
12211 2000.
12212
122132000-06-15 Dave Love <fx@gnu.org>
12214
12215 * net/goto-addr.el (goto-address-fontify): Use keymap property,
12216 not local-map.
12217
122182000-06-15 Kenichi Handa <handa@etl.go.jp>
12219
12220 * international/mule.el (set-buffer-file-coding-system): Almost
12221 rewritten to handle `undecided' as no-op.
12222
122232000-06-14 Gerd Moellmann <gerd@gnu.org>
12224
12225 * Makefile.in: New file.
12226
12227 * Makefile: Removed.
12228
12229 * net/goto-addr.el (goto-address): Don't bind C-c RET locally.
12230 (goto-address-highlight-keymap): Bind C-c RET.
12231
122322000-06-14 Kenichi Handa <handa@etl.go.jp>
12233
12234 * mail/sendmail.el (sendmail-send-it): The temporary buffer
12235 inherits buffer-file-coding-system of the current buffer.
12236
12237 * tar-mode.el (tar-extract): For goto-char, use (point-min), not
12238 0. Give correct argument to set-auto-coding-function.
12239 (tar-expunge): For goto-char, use (point-min), not 0.
12240 (tar-clear-modification-flags): For goto-char, use (point-min), not 1.
12241 (tar-subfile-save-buffer): Likewize.
12242
12243 * international/mule.el
12244 (after-insert-file-set-buffer-file-coding-system): Call
12245 set-buffer-file-coding-system with the arg FORCE t.
12246
122472000-06-13 Gerd Moellmann <gerd@gnu.org>
12248
12249 * mail/sendmail.el (mail-specify-envelope-from): Initialize to
12250 nil. Contemporary sendmails issue an X-Authentication-Warning if
12251 the sender is set with `-f'.
12252
122532000-06-13 Dave Love <fx@gnu.org>
12254
12255 * help.el (describe-function-1): Kluge around cases of functions
12256 fset to subrs whose doc doesn't match their symbol-name.
12257
12258 * image.el (insert-image): Default STRING to a space.
12259
12260 * info.el Doc fixes.
12261 (Info-build-node-completions): Match Ref tags.
12262
122632000-06-13 Eli Zaretskii <eliz@is.elta.co.il>
12264
12265 * frame.el (display-multi-frame-p, display-multi-font-p): New
12266 defaliases for display-graphic-p.
12267
12268 * hl-line.el: Fixed a typo in commentary.
12269
122702000-06-13 Kenichi Handa <handa@etl.go.jp>
12271
12272 * language/tibet-util.el (tibetan-tibetan-to-transcription): Typo
12273 fixed.
12274
122752000-06-12 Dave Love <fx@gnu.org>
12276
12277 * image.el (insert-image): Save a little consing.
12278
122792000-06-12 Kenichi Handa <handa@etl.go.jp>
12280
12281 * language/tibet-util.el: Convert all tibetan-1-column characters
12282 to the corresponding tibetan characters.
12283 (tibetan-add-components): Delete code for the special treatment of
12284 'a chung.
12285
12286 * language/tibetan.el (tibetan-composable-pattern): Fix previous
12287 change.
12288 (tibetan-vowel-transcription-alist): More rules added.
12289 (tibetan-composite-vowel-alist): New variable.
12290 (tibetan-precomposition-rule-alist): More rules added.
12291
122922000-06-12 Stefan Monnier <monnier@cs.yale.edu>
12293
12294 * startup.el (command-line): Only call menu-bar-mode if interactive.
12295
12296 * thingatpt.el (toplevel symbol-properties):
12297 * textmodes/makeinfo.el (makeinfo-compile):
12298 * progmodes/make-mode.el (makefile-pickup-filenames-as-targets):
12299 * progmodes/hideif.el (hif-compress-define-list)
12300 (hide-ifdef-use-define-alist):
12301 * net/ange-ftp.el (ange-ftp-vms-delete-file-entry)
12302 (ange-ftp-vms-add-file-entry):
12303 * menu-bar.el (menu-bar-update-buffers, menu-bar-update-buffers):
12304 * man.el (Man-build-man-command):
12305 * mail/rnewspost.el (news-reply-header-hook):
12306 * info.el (Info-insert-dir):
12307 * emulation/mlconvert.el (backward-word, forward-word, setq):
12308 * emacs-lisp/gulp.el (gulp-send-requests):
12309 * emacs-lisp/byte-opt.el (byte-compile-log-lap-1)
12310 (byte-optimize-inline-handler, byte-optimize-form-code-walker)
12311 (byte-optimize-apply, end of file):
12312 * emacs-lisp/advice.el (ad-advice-class-completion-table)
12313 (ad-make-freeze-definition):
12314 * startup.el (command-line, command-line-1): Don't quote lambdas.
12315
12316 * pcvs.el (cvs-parse-process): Don't blindly refresh all cookies.
12317 (cvs-cleanup-removed): New function.
12318 (cvs-cleanup-functions): New var.
12319 (cvs-cleanup-collection): Use cvs-cleanup-functions to allow the user
12320 some flexibility in specifying additional entries to auto-cleanup.
12321 (cvs-quickdir): New function.
12322 (cvs-mode-insert): Use cvs-fileinfo-from-entries.
12323 (cvs-mode-imerge): Use smerge-ediff rather than vc-resolve-conflicts.
12324 (cvs-mode-find-file): Check that we are on a filename or dirname
12325 when invoked through a mouse-click.
12326 (cvs-full-path): Remove.
12327 (cvs-dired-action): Re-introduced.
12328 (cvs-dired-noselect): Use it.
12329 (vc-post-command-functions): use this new hook if available.
12330
12331 * pcvs-info.el (cvs-fi-up-to-date-face, cvs-fi-unknown-face): New vars.
12332 (cvs-status-map): Don't inherit from cvs-mode-map anymore.
12333 (cvs-filename-map, cvs-dirname-map): Remove.
12334 (cvs-default-action): Remove.
12335 (cvs-add-face): Use `keymap' rather than `local-map' property, and only
12336 if the arg is really a keymap.
12337 (cvs-fileinfo-pp): Don't use any special map for file and dir names.
12338 Don't hardcode the mapping from state (aka type) to face, but check
12339 the var cvs-fi-<type>-face instead.
12340 (cvs-fileinfo-from-entries): New function.
12341
12342 * pcvs-defs.el (cvs-default-ignore-marks, cvs-diff-ignore-marks):
12343 Docstring fix.
12344 (cvs-find-file-and-jump): Change default to be safer.
12345 (cvs-mode-diff-map): Define it as a function as well.
12346 (cvs-mode-map): Refer to the function variant of cvs-mode-diff-map.
12347 Bind mouse-2 in this global map rather than with text-properties.
12348
12349 * pcvs-parse.el (cvs-parse-table): Look for conflict markers in the
12350 file to resolve the ambiguity between C(conflict) and C(need-merge).
12351
123522000-06-12 Kenichi Handa <handa@etl.go.jp>
12353
12354 * international/mule.el (set-buffer-file-coding-system): If
12355 CODING-SYSTEM is nil, set buffer-file-coding-system to nil
12356 unconditionally.
12357
123582000-06-12 Dave Love <fx@gnu.org>
12359
12360 * wid-edit.el (widget-specify-button): Really suppress the face if
12361 required.
12362
123632000-06-11 Gerd Moellmann <gerd@gnu.org>
12364
12365 * term/x-win.el (x-colors): Add colors from recent rgb.txt.
12366
123672000-06-11 Stefan Monnier <monnier@cs.yale.edu>
12368
12369 * imenu.el (imenu-generic-expression): Docstring fix.
12370
12371 * composite.el (composition-function-table): Move the `put'
12372 below the autoload cookie so we can load the file before loaddefs.
12373
12374 * avoid.el (mouse-avoidance-random-shape): Don't quote lambda.
12375
12376 * emacs-lisp/autoload.el (make-autoload): Use `cond'.
12377 Handle easy-mmode-define-global-mode.
12378 For complex macros like define-minor-mode that can generate
12379 several autoload entries, try to autoload entries in the
12380 macroexpanded code.
12381
12382 * emacs-lisp/easy-mmode.el (define-minor-mode):
12383 If KEYMAP is a symbol, just use it.
12384 Use byte-compile-current-file and load-file-name to infer the
12385 proper :require to pass to defcustom.
12386 Wrap the hook var into `progn' so as not to autoload it.
12387 Add a :autoload-end cookie.
12388 Be more careful about the evaluation of KEYMAP.
12389 (easy-mmode-define-global-mode): Add a :autoload-end cookie.
12390 (define-derived-mode): Move define-abbrev-table outside of defvar.
12391
123922000-06-10 Stefan Monnier <monnier@cs.yale.edu>
12393
12394 * Makefile (EMACSOPT): Remove --no-init-file (implied by -batch).
12395 (autoloads): Explicitly load `autoload' to bootstrap without loaddefs.
12396 (backup-compiled-files): Ignore errors during `tar'.
12397 (bootstrap): Make autoloads before elc files.
12398
123992000-06-10 Kenichi Handa <handa@etl.go.jp>
12400
12401 * international/mule.el (set-buffer-file-coding-system): If one of
12402 undecided-XXX is specified, change only EOL conversion.
12403
12404 * international/mule-conf.el (unix): New alias for the coding
12405 system undecided-unix.
12406
124072000-06-09 Dave Love <fx@gnu.org>
12408
12409 * tar-mode.el (tar-copy): Supply MUSTBENEW arg to write-region.
12410
12411 * progmodes/executable.el: Byte compile dynamic.
12412 (executable-insert): Change custom type.
12413 (executable-find): Add autoload cookie.
12414 (executable-make-buffer-file-executable-if-script-p): New
12415 function. After Noah Friedman.
12416
12417 * files.el (after-save-hook): Customize, with
12418 executable-make-buffer-file-executable-if-script-p as an option.
12419
124202000-06-09 Kenichi Handa <handa@etl.go.jp>
12421
12422 * ps-mule.el (ps-mule-font-info-database-bdf): Prefer the font
12423 "tib24p-mule.bdf" for Tibetan.
12424
12425 * composite.el (decompose-composite-char): Declare it as obsolete.
12426
12427 * man.el (Man-fontify-manpage): Pay attention to underline and
12428 overstrike pattern for CJK characters (e.g. __^H^H and X^H^HX).
12429
124302000-06-08 Gerd Moellmann <gerd@gnu.org>
12431
12432 * thingatpt.el (forward-thing): Use functionp instead of fboundp.
12433 Set maintainer to FSF since author isn't reachable.
12434
124352000-06-08 Dave Love <fx@gnu.org>
12436
12437 * international/mule-cmds.el (select-safe-coding-system): If
12438 DEFAULT-CODING-SYSTEM is not specified, also check the most
12439 preferred coding-system if buffer-file-coding-system is
12440 `undecided'. From Handa.
12441
124422000-06-08 Kenichi Handa <handa@etl.go.jp>
12443
12444 * international/mule.el
12445 (after-insert-file-set-buffer-file-coding-system): If the buffer
12446 size is greater than INSERTED, judget that we are not visiting.
12447
124482000-06-07 Rajesh Vaidheeswarran <rv@gnu.org>
12449
12450 * whitespace.el (defgroup whitespace): Comment out `:version'.
12451 XEmacs 20.4 has problems defining the group with this present.
12452 We'll have this commented out till get resolve the problem.
12453
124542000-06-07 John Wiegley <johnw@gnu.org>
12455
12456 * align.el (align-dq-string-modes, align-sq-string-modes)
12457 (align-open-comment-modes): Add pyhton-mode.
12458 (align-rules-list): Use get-text-property instead of
12459 text-properties-at.
12460 (align-rules-list): Add python-assignment.
12461 (align-rules-list): Change perl-comma-delimiter to
12462 basic-comma-delimiter. Use if for Perl modes and python-mode.
12463 (align-rules-list): Add python-chain-logic and
12464 basic-line-continuation.
12465
124662000-06-07 Jari Aalto <jari.aalto@poboxes.com>
12467
12468 * apropos.el (apropos-mode-hook): New user variable.
12469 (apropos-mode): Run apropos-mode-hook.
12470
124712000-06-07 David Ponce <david@dponce.com>
12472
12473 * recentf.el: Fixed recentf-edit-list and recentf-open-more-files
12474 commands. Require `wid-edit' at run-time.
12475
124762000-06-07 David Ponce <david@dponce.com>
12477
12478 * recentf.el: Added some "Commentary".
12479 (recentf-open-more-files, recentf-edit-list): Minor changes to
12480 move the point at the top of the file list. This behaviour is
12481 consistent with the menu one when the list contains a lot of
12482 files.
12483 (recentf-cleanup): Now displays the number of items removed from
12484 the list.
12485 (recentf-relative-filter) New menu filter to show filenames
12486 relative to `default-directory'.
12487
124882000-06-07 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12489
12490 * ps-print.el: XEmacs compatibility. Doc fix. Can select page size
12491 with/without giving an error if PostScript printer doesn't have this
12492 kind of page size. Zebra Stripe continues or restarts on next page.
12493 Manual/automatic paper feeding. Switch or not the header.
12494 (ps-print-version): New version number (5.2.2).
12495 (ps-windows-system): Include emx as a Windows system.
12496 (ps-setup, ps-begin-file, ps-color-values, ps-screen-to-bit-face)
12497 (ps-generate-postscript-with-faces, ps-generate-postscript-with-faces)
12498 (ps-background-text): Code fix.
12499 (ps-error-handler-message, ps-user-defined-prologue)
12500 (ps-print-prologue-header, ps-printer-name)
12501 (ps-print-control-characters, ps-n-up-filling, ps-zebra-color)
12502 (ps-line-number-step, ps-spool-config, ps-default-fg, ps-default-bg)
12503 (ps-use-face-background): Customization fix.
12504 (ps-n-up-database): Data fix.
12505 (ps-warn-paper-type, ps-zebra-stripe-follow, ps-manual-feed)
12506 (ps-switch-header): New vars.
12507 (ps-xemacs-color-name, ps-face-foreground-name)
12508 (ps-face-background-name, ps-boolean-constant): New funs.
12509
125102000-06-07 Dave Love <fx@gnu.org>
12511
12512 * allout.el: New version from Manheimer.
12513
125142000-06-07 Kenichi Handa <handa@etl.go.jp>
12515
12516 * textmodes/fill.el (fill-find-break-point): Check the validity of
12517 charset.
12518
125192000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
12520
12521 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
12522 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
12523 Call display-color-p and display-mouse-p instead of looking at
12524 window-system.
12525
125262000-06-06 Dave Love <fx@gnu.org>
12527
12528 * image.el (find-image): Doc fix. Return nil if image not found.
12529 (put-image, insert-image): Make STRING arg optional.
12530
125312000-06-06 Kenichi Handa <handa@etl.go.jp>
12532
12533 * language/vietnamese.el: Remove eval-when-compile.
12534 (viet-viscii-nonascii-translation-table): Define it as a
12535 translation table made from viet-viscii-decode-table.
12536 (viet-viscii-encode-table): Define it as a translation table made
12537 from the reverse map of above.
12538 (viet-vscii-nonascii-translation-table): Define it as a
12539 translation table made from viet-vscii-decode-table.
12540 (viet-vscii-encode-table): Define it as a translation table made
12541 from the reverse map of above.
12542 (ccl-decode-viscii): Use translate-character.
12543 (ccl-encode-viscii, ccl-encode-viscii-font)
12544 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
12545 Likewize.
12546
12547 * language/cyrillic.el: Remove eval-when-compile.
12548 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
12549 translation table made from cyrillic-koi8-r-decode-table.
12550 (cyrillic-koi8-r-encode-table): Define it as a translation table
12551 made from the reverse map of above.
12552 (ccl-decode-koi8): Use translate-character.
12553 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
12554 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
12555 a translation table made from cyrillic-alternativnyj-decode-table.
12556 (cyrillic-alternativnyj-encode-table): Define it as a translation
12557 table made from the reverse map of above.
12558 (ccl-decode-alternativnyj): Use translate-character.
12559 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
12560 Likewize
12561
12562 * international/mule-diag.el (non-iso-charset-alist): Specify
12563 translation table symbol instead of translation table itself.
12564 (list-block-of-chars): CHARSET may be a translation table symbol.
12565
12566 * international/mule.el (make-coding-system): If CODING-SYSTEM
12567 already exists, override it.
12568
12569 * international/fontset.el: Use family `proportional' for Tibetan
12570 fonts.
12571
12572 * international/ccl.el (ccl-compile-translate-character): Don't
12573 check if Rrr has property translation-table.
12574 (ccl-compile-map-multiple): Modified to avoid compiler warning.
12575
125762000-06-05 Gerd Moellmann <gerd@gnu.org>
12577
12578 * info.el: Bind case-fold-search to t when searching in case
12579 a user sets it to nil in a hook.
12580
125812000-06-05 Stefan Monnier <monnier@cs.yale.edu>
12582
12583 * autoarg.el (autoarg-mode, autoarg-kp-mode):
12584 * hl-line.el (hl-line-mode): Use the new :global key argument.
12585
12586 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
12587 (tar-clip-time-string): Prepend a space.
12588 (tar-grind-file-mode): Construct a string rather than modifying one.
12589 (tar-header-block-summarize): Fix docstring.
12590 Use `format' rather than an error-prone set of copy-loops.
12591
12592 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
12593 (diff-goto-source, diff-unified->context, diff-context->unified)
12594 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
12595 understand the format output by the `-p' argument to diff.
12596
12597 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
12598 (sh-re-done): Use defconst.
12599 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
12600 (sh-help-string-for-variable, sh-guess-basic-offset):
12601 Don't quote lambdas.
12602 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
12603 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
12604
12605 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
12606 (mh-letter-mode): Derive from text-mode.
12607 This implicitly means that it now calls kill-all-local-variables.
12608 Also remove the Emacs-18 compatibility code.
12609
12610 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
12611 Make use of symbol-property doc-string-elt.
12612 Use memq rather than a sequence of eq.
12613 (doc-string-elt): Fix the wrong or missing previously unused values.
12614 (autoload-print-form): New function extracted from
12615 generate-file-autoloads to allow recursion when handling progn
12616 so that defvar's and defun's docstrings are properly printed.
12617 (generate-file-autoloads): Use it.
12618
12619 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
12620 Use find-file-hooks in the minor-mode function.
12621 Be careful not to loop indefinitely in the post-command-hook function.
12622
126232000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
12624
12625 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
12626 tty's.
12627 * ediff-diff.el (ediff-exec-process): Use --binary for fine
12628 differences whenever appropriate.
12629 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
12630 * viper.el (find-file, find-file-other-window): Get viper to do
12631 wildcards.
12632
126332000-06-04 Stefan Monnier <monnier@cs.yale.edu>
12634
12635 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
12636 (jit-lock-fontify-buffer): New function for JIT refontification.
12637 (jit-lock-mode): Fix docstring.
12638 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
12639 Remove jit-lock-after-change from the _local_ hook.
12640 (jit-lock-function-1): Fix docstring.
12641
12642 * info.el (Info-on-current-buffer): Initialize info.
12643
12644 * newcomment.el (comment-indent): Ignore comment-indent-hook.
12645
12646 * progmodes/tcl.el (tcl-indent-for-comment):
12647 Ignore comment-indent-hook.
12648
12649 * emacs-lisp/easy-mmode.el: Require CL during compilation.
12650 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
12651 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
12652 and improve to use the lighter to guess the capitalization.
12653 (define-minor-mode): Inline code from easy-mmode-define-toggle.
12654 Add keyword arguments to specify global-ness or the custom group.
12655 Add local-map and help-echo properties to the lighter.
12656 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
12657 (easy-mmode-define-global-mode): New macro.
12658
126592000-06-02 Dave Love <fx@gnu.org>
12660
12661 * wid-edit.el: byte-compile-dynamic since we typically don't use
12662 all the widgets. Don't require cl or widget. Remove
12663 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
12664 (widget-read-event): Removed. Callers changed to use read-event.
12665 (widget-button-release-event-p): Renamed from
12666 button-release-event-p.
12667 (widget-field-add-space, widget-field-use-before-change):
12668 Uncustomize.
12669 (widget-specify-field): Use keymap property, not local-map.
12670 (widget-specify-button): Obey :suppress-face.
12671 (widget-specify-insert): Use modern backquote syntax.
12672 (widget-image-directory): Renamed from widget-glyph-directory.
12673 (widget-image-enable): Renamed from widget-glyph-enable.
12674 (widget-image-find): Replaces widget-glyph-find.
12675 (widget-button-pressed-face): Move defvar.
12676 (widget-image-insert): Replaces widget-glyph-insert.
12677 (widget-convert): Use keywordp.
12678 (widget-leave-text, widget-children-value-delete): Use mapc.
12679 (widget-keymap): Remove XEmacs stuff.
12680 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
12681 (widget-button-click): Don't set point at the click, but re-centre
12682 if we scroll out of window. Rewritten for images v. glyphs &c.
12683 (widget-tabable-at): Use POS arg, not point.
12684 (widget-beginning-of-line, widget-end-of-line)
12685 (widget-item-value-create, widget-sublist, widget-princ-to-string)
12686 (widget-sexp-prompt-value, widget-echo-help): Simplify.
12687 (widget-default-create): Use widget-image-insert; some rewriting.
12688 (widget-visibility-value-create)
12689 (widget-push-button-value-create, widget-toggle-value-create): Use
12690 widget-image-insert.
12691 (checkbox): Create on and off images dynamically.
12692 (documentation-link): Change :help-echo.
12693 (widget-documentation-link-echo-help): Remove.
12694
126952000-06-02 Stefan Monnier <monnier@cs.yale.edu>
12696
12697 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
12698
12699 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
12700 (easy-mmode-define-toggle, define-minor-mode): Use it.
12701 (easy-mmode-define-keymap): Docstring fix.
12702 (define-derived-mode): Default PARENT to fundamental-mode.
12703 Add the derived-mode-parent symbol-property.
12704 (easy-mmode-derived-mode-p): New function.
12705
127062000-06-02 Dave Love <fx@gnu.org>
12707
12708 * files.el (convert-standard-filename): Doc fix.
12709 (normal-backup-enable-predicate): New function.
12710 (backup-enable-predicate): Use it to replace the lambda form.
12711
12712 * calendar/todo-mode.el: [This needs more work on the outline
12713 stuff.] Doc fixes.
12714 (todo) <defgroup>: Add :version.
12715 (todo-add-category): Don't use pushnew.
12716 (todo-cmd-raise): Fix typo.
12717 (todo-top-priorities): Change temp buffer name.
12718 (todo-category-alist): Avoid redundant lambda.
12719 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
12720 Use outline-next-heading.
12721
12722 * autoarg.el: Rewritten to use define-minor-mode.
12723 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
12724 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
12725
127262000-06-02 Kenichi Handa <handa@etl.go.jp>
12727
12728 * isearch.el (isearch-other-meta-char): Fix previous change.
12729
127302000-06-01 Stefan Monnier <monnier@cs.yale.edu>
12731
12732 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
12733 (log-edit-done): Only add the comment to the ring if it's different
12734 from the last comment entered.
12735
12736 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
12737
127382000-06-01 Dave Love <fx@gnu.org>
12739
12740 * hl-line.el: Rewritten using define-minor-mode.
12741
12742 * help.el (describe-function-1): Distinguish special form from
12743 builtin function. Sanity-check presence of arglist for builtins.
12744
127452000-06-01 Kenichi Handa <handa@etl.go.jp>
12746
12747 * international/characters.el: Fix syntax/category setting of
12748 Tibetan characters.
12749
12750 * language/tibet-util.el (tibetan-add-components): Fixes for new
12751 encoding of Tibetan characters.
12752 (tibetan-decompose-precomposition-alist): New variable.
12753 (tibetan-decompose-region): Convert precomposed characters to
12754 non-precomposed characters.
12755 (tibetan-decompose-string): Likewise.
12756 (tibetan-composition-function): Fix args to
12757 thibetan-compose-string.
12758
12759 * language/tibetan.el (tibetan-composable-pattern): More
12760 characters included.
12761 (tibetan-consonant-transcription-alist): Rule for "R" added.
12762 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
12763 "+R" added.
12764 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
12765
12766 * language/lao-util.el (lao-composition-function): Fix args to
12767 compose-string.
12768
12769 * language/thai-util.el (thai-composition-function): Fix args to
12770 compose-string.
12771
12772 * isearch.el (isearch-update): Set disable-point-adjustment to t
12773 to prevent the point moving to the end of a composition when a
12774 part of a composition is searched.
12775 (isearch-other-meta-char): If the key invoking this command can be
12776 mapped by function-key-map to a printing char, call
12777 isearch-process-search-char directly.
12778
127792000-06-01 Stefan Monnier <monnier@cs.yale.edu>
12780
12781 * emacs-lisp/bytecomp.el:
12782 * frame.el:
12783 * international/mule-cmds.el:
12784 * international/mule-util.el:
12785 * international/mule.el:
12786 * mouse.el:
12787 * subr.el:
12788 * faces.el: Update calls to make-obsolete with a WHEN argument.
12789
12790 * byte-run.el (make-obsolete, make-obsolete-variable):
12791 Add an optional WHEN argument and change the format of the
12792 symbol-property information.
12793 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
12794 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
12795 new obsolete-symbol-property format and print WHEN if it is provided.
12796
127972000-05-31 Dave Love <fx@gnu.org>
12798
12799 * loadhist.el (loadhist-hook-functions): Remove
12800 before-change-function, after-change-function.
12801 (unload-feature): Deal with symbols which are both bound and
12802 fbound.
12803
12804 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
12805 before-change-function, after-change-function.
12806
12807 * simple.el (newline): Don't bind before-change-function,
12808 after-change-function.
12809
128102000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
12811
12812 * whitespace.el (whitespace-rescan-timer-time): Update interval
12813 set to 600 seconds (10 minutes) instead of 60 seconds since
12814 a large number of whitespace buffers causes emacs to `freeze'
12815 for a considerable amount of time.
12816
12817 * whitespace.el: Updated email address
12818
128192000-05-31 Dave Love <fx@gnu.org>
12820
12821 * add-log.el (change-log-font-lock-keywords) <function>: Add
12822 pattern for function of change.
12823 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
12824 acknowledgements patterns.
12825
128262000-05-31 Kenichi Handa <handa@etl.go.jp>
12827
12828 * isearch.el (isearch-printing-char): If keyboard coding system is
12829 being used, call isearch-process-search-multibyte-characters.
12830
12831 * international/isearch-x.el: Mostly rewritten.
12832
12833 * international/quail.el (quail-start-conversion): Don't include
12834 unhandled events in the returned events, but set them in
12835 unread-command-events. Exit if all inputs are deleted.
12836
128372000-05-30 Jason Rumney <jasonr@gnu.org>
12838
12839 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
12840
12841 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
12842 Reenable code to create initial fontsets.
12843 Use set-fontset-font in place of put-charset-property.
12844
128452000-05-30 Gerd Moellmann <gerd@gnu.org>
12846
12847 * progmodes/perl-mode.el (perl-indent-line): When looking for a
12848 label, ensure that the first colon isn't followed by another.
12849
12850 * paths.el (Info-default-directory-list): Doc fix.
12851
12852 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
12853 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
12854 send a query containing USER only, not USER@HOST.
12855
12856 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
12857 and rmail-msgend to compute the restriction at the end, instead of
12858 computing it.
12859
128602000-05-29 Gerd Moellmann <gerd@gnu.org>
12861
12862 * dabbrev.el (dabbrev-expand): Don't display messages in the
12863 echo area if the minibuffer window is active.
12864
12865 * jit-lock.el (jit-lock-mode): Add after change function to
12866 local hook.
12867
128682000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
12869
12870 * antlr-mode.el: New commands: hide/unhide actions,
12871 upcase/downcase literals.
12872 (antlr-tiny-action-length): New user option.
12873 (antlr-hide-actions): New command. Suggested by
12874 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
12875 (antlr-mode-map): New binding [C-c C-v].
12876 (antlr-mode-menu): New entries.
12877 (antlr-downcase-literals): New command.
12878 (antlr-upcase-literals): Ditto.
12879
12880 * antlr-mode.el: Minor changes: indendation, mode-name.
12881 (antlr-indent-line): Indent cpp directive at column 0.
12882 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
12883
12884 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
12885 (antlr-font-lock-additional-keywords): Workaround for intentional
12886 bug in XEmacs version of font-lock.
12887 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
12888 be used by a smarter version of `buffers-menu-grouping-function'.
12889
128902000-05-29 Gerd Moellmann <gerd@gnu.org>
12891
12892 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
12893 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
12894
128952000-05-29 Kenichi Handa <handa@etl.go.jp>
12896
12897 * international/encoded-kb.el
12898 (encoded-kbd-iso2022-designation-map): Pay attention to that
12899 charset-iso-final-char return -1 for eight-bit-control and
12900 eight-bit-graphic.
12901
129022000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
12903
12904 * speedbar.el (speedbar-use-images, speedbar-update-flag)
12905 (speedbar-easymenu-definition-base): Use display-graphic-p where
12906 available, instead of window-system.
12907
129082000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
12909
12910 * international/codepage.el (cp-coding-system-for-codepage-1): Add
12911 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
12912 coding systems.
12913
129142000-05-26 Dave Love <fx@gnu.org>
12915
12916 * disp-table.el (standard-display-underline): Don't use
12917 internal-find-face.
12918
12919 * mail/reporter.el: Maintainer change. Doc fixes.
12920 (reporter-version): Deleted.
12921
12922 * emacs-lisp/elp.el: Maintainer change.
12923 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
12924
129252000-05-26 Stefan Monnier <monnier@cs.yale.edu>
12926
12927 * add-log.el (add-change-log-entry): Merge the current entry with the
12928 previous one if the previous one is empty.
12929
129302000-05-26 Dave Love <fx@gnu.org>
12931
12932 * loadhist.el (unload-feature): Fix interactive spec [from
12933 lijnzaad@ebi.ac.uk].
12934
12935 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
12936 subr-arity to check primitives.
12937 (byte-compile-flush-pending, byte-compile-file-form-progn)
12938 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
12939 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
12940 mapcar.
12941
129422000-05-26 Kenichi Handa <handa@etl.go.jp>
12943
12944 * international/fontset.el: Set family names of non-latin charsets
12945 in default fontset to "*".
12946
12947 * international/mule-diag.el (print-fontset): Combine family part
12948 and registry part of the fontname by "-*-" instead of "-".
12949
12950 * international/mule-cmds.el (encode-coding-char): Make strings
12951 multibyte before calling encode-coding-string.
12952
129532000-05-25 Stefan Monnier <monnier@cs.yale.edu>
12954
12955 * derived.el: Fix keywords.
12956 (define-derived-mode): Only define if needed.
12957
12958 * simple.el (fill-comment, comment-column, comment-start)
12959 (comment-start-skip, comment-end, comment-indent-function)
12960 (block-comment-start, block-comment-end, indent-for-comment)
12961 (set-comment-column, kill-comment, comment-padding, comment-region)
12962 (comment-multi-line, indent-new-comment-line): Remove.
12963
12964 * bindings.el (esc-map): Change ; to comment-dwim and use the new
12965 function names for comment operations.
12966
12967 * newcomment.el: Add abundant autoload cookies.
12968 (comment-style): Don't depend on runtime data at compile-time.
12969 (comment-indent-hook): Remove.
12970 (comment-indent): Check if comment-indent-hook is bound.
12971 (comment-region): Docstring fix.
12972
129732000-05-25 Dave Love <fx@gnu.org>
12974
12975 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
12976 byte-code-function-p.
12977
12978 * mail/rmailsum.el: Add provide.
12979
12980 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
12981
12982 * smerge-mode.el (smerge-diff-switches): Don't use list* in
12983 defcustom.
12984
129852000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
12986
12987 * ediff-diff.el (ediff-exec-process): delete --binary option from
12988 non-buffer ediff jobs.
12989
129902000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
12991
12992 * hilit-chg.el (highlight-changes-mode): Ask about color or
12993 grayscale support, not about window-system.
12994
12995 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
12996 window-system.
12997 (ffap-highlight): Always default to t.
12998
12999 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
13000 display-popup-menus-p instead of looking at window-system.
13001
13002 * disp-table.el (standard-display-g1, standard-display-graphic):
13003 Only refuse to use string glyphs on X and MS-Windows.
13004
13005 * avoid.el: Remove window-system from commentary, suggest to use
13006 display-*-p instead.
13007
13008 * apropos.el (apropos-print): Use display-mouse-p instead of
13009 window-system.
13010
130112000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
13012
13013 * international/codepage.el (cp-decoding-vector-for-codepage):
13014 Fill up unsupported characters with their own codes. From Kenichi
13015 Handa.
13016
130172000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
13018
13019 * international/mule-diag.el (describe-char-after): Use
13020 display-graphic-p instead of window-system, so that this function
13021 works on MS-DOS.
13022
130232000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
13024
13025 * international/codepage.el (cp-make-coding-systems-for-codepage):
13026 Remove the eight-bit-graphic and eight-bit-control charsets from
13027 the list of charsets which we convert into `?'.
13028
130292000-05-25 Kenichi Handa <handa@etl.go.jp>
13030
13031 * international/mule-conf.el: Specify CHARSET-ID explicitely for
13032 private charsets.
13033 (mule-unicode-0100-24ff, japanese-jisx0213-1,
13034 japanese-jisx0213-2): New charsets.
13035
13036 * international/fontset.el: Setup default fontset for new charsets.
13037
130382000-05-24 Dave Love <fx@gnu.org>
13039
13040 * info.el (Info-find-node-2): Restructure [following "Vadim
13041 S. Solomin" <sovs@uic.nnov.ru>].
13042
13043 * icomplete.el: Fix header for Finder.
13044
130452000-05-24 Eric M. Ludlam <zappo@ultranet.com>
13046
13047 * rmailout.el (rmail-output-to-rmail-file): Added optional param
13048 STAY.
13049
13050 * rmail.el (rmail-automatic-folder-directives): New user variable.
13051 (rmail-show-message): Add call to `rmail-auto-file' during
13052 display.
13053 (rmail-auto-file): New function.
13054
130552000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
13056
13057 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
13058 account.
13059 (ediff-test-utility,ediff-diff-mandatory-option)
13060 (ediff-reset-diff-options): Utilities for proper initialization of
13061 ediff-diff-options and ediff-diff3-options on Windows.
13062
13063 * ediff-init.el (ediff-merge-filename-prefix): New customizable
13064 variable.
13065
13066 * ediff-mult.el (ediff-filegroup-action): Use
13067 ediff-merge-filename-prefix.
13068
130692000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
13070
13071 * viper-ex.el (ex-write): Set selective display to nil.
13072
130732000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
13074
13075 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
13076 aliases for hebrew-iso-8bit.
13077
130782000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
13079
13080 * woman.el: New version from Francis J. Wright
13081 <F.J.Wright@Maths.QMW.ac.uk>.
13082 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
13083 names in environment variables regardless of the path separator.
13084 (woman-topic-all-completions-1): Don't call file-name-directory-p
13085 on all files, since woman-file-regexp already filters out any
13086 directories.
13087
130882000-05-24 Kenichi Handa <handa@etl.go.jp>
13089
13090 * international/quail.el (quail-start-translation): Don't change
13091 modified-p of the current buffer.
13092 (quail-start-conversion): Likewise.
13093
13094 * international/kkc.el (kkc-region): Don't change modified-p of
13095 the current buffer.
13096
13097 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
13098 conform to RFC1468.
13099 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
13100
131012000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
13102
13103 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
13104 (speedbar-insert-button): Invisible text property fix.
13105 (speedbar-directory-plus): Renamed from speedbar-directory-+
13106 (speedbar-directory-minus): Renamed from speedbar-directory--
13107 (speedbar-page-plus): Renamed from speedbar-file-+
13108 (speedbar-page-minus): Renamed from speedbar-file--
13109 (speedbar-page): Renamed from speedbar-file-
13110 (speedbar-tag): Renamed from speedbar-tag-
13111 (speedbar-tag-plus): Renamed from speedbar-tag-+
13112 (speedbar-tag-minus): Renamed from speedbar-tag--
13113 (speedbar-expand-image-button-alist): Use above renames.
13114
13115 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
13116 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
13117 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
13118 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
13119 * sb-pg.xpm: Renamed from sb-file.xpm
13120 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
13121 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
13122
131232000-05-24 Kenichi Handa <handa@etl.go.jp>
13124
13125 * international/quail.el (quail-show-guidance-buf): Set
13126 current-input-method of the guidance buffer to the name of the
13127 curren input method.
13128
131292000-05-23 Stefan Monnier <monnier@cs.yale.edu>
13130
13131 * progmodes/compile.el (compile-internal): Style typo.
13132
13133 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
13134 quote vars and functions in the docstring.
13135
13136 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
13137
13138 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
13139 Don't quote lambdas.
13140
13141 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
13142
131432000-05-23 Gerd Moellmann <gerd@gnu.org>
13144
13145 * startup.el (command-line): Determine source file of compiled
13146 user init file differently. Warn if compiled user init file
13147 is older than its source file.
13148
13149 * ffap.el (ffap-url-regexp): Add `https'.
13150
131512000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
13152
13153 * files.el (make-backup-file-name-1): Replace slashes with `!'
13154 rather than `|' (which is not allowed on Windows). Replace the
13155 drive letters with a string "drive_X".
13156
131572000-05-23 Gerd Moellmann <gerd@gnu.org>
13158
13159 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
13160
13161 * files.el (interpreter-mode-alist): Add `bash2'.
13162
131632000-05-22 Dave Love <fx@gnu.org>
13164
13165 * loadhist.el (feature-symbols, file-provides, file-requires): Use
13166 mapc.
13167 (feature-file): Avoid calling symbol-name. Doc fix.
13168 (file-set-intersect, file-dependents): Use dolist, not mapcar.
13169 (loadhist-hook-functions): Add mouse-position-function.
13170 (unload-feature): Change uses of mapcar.
13171
13172 * files.el (parse-colon-path): Doc fix.
13173 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
13174 (set-auto-mode): Use mapc.
13175
13176 * complete.el (PC-look-for-include-file): Use :alnum: character
13177 class.
13178 (partial-completion-mode): Add autoload cookie.
13179
131802000-05-22 Sam Steingold <sds@gnu.org>
13181
13182 * info.el (Info-fontify-node): Fixed the call to
13183 `add-text-properties' (bug introduced on 2000-05-18).
13184
131852000-05-22 Dave Love <fx@gnu.org>
13186
13187 * bindings.el: Remove debug-ignored-errors set in other files.
13188
13189 * progmodes/etags.el: Add to debug-ignored-errors.
13190 (visit-tags-table-buffer): Clear out buffers holding old tables
13191 when making a new list.
13192 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
13193 mapc.
13194
13195 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
13196 quote keywords.
13197 (cmpl-string-case-type): Use character classes.
13198
13199 * comint.el:
13200 * textmodes/ispell.el:
13201 * imenu.el:
13202 * mail/mh-e.el:
13203 * progmodes/compile.el: Add to debug-ignored-errors.
13204
13205 * dabbrev.el: Add to debug-ignored-errors.
13206 (dabbrev-completion): Use mapc.
13207
132082000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
13209
13210 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
13211 (woman-mapcan, woman-parse-man.conf)
13212 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
13213 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
13214 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
13215 path syntax better.
13216 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
13217 (woman-manpath): Call woman-parse-man.conf.
13218 (woman-emulation): New defcustom, defaults to nroff.
13219 (woman-font-support): New defconst.
13220 (woman-use-symbol-font): New defcustom.
13221 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
13222 "Emulation".
13223 Many functions: Doc fix.
13224
132252000-05-22 Kenichi Handa <handa@etl.go.jp>
13226
13227 * international/quail.el (quail-simple-translation-keymap): Map
13228 128..255 to quail-self-insert-command.
13229 (quail-keyboard-layout-alist): Add definition for "pc102-de".
13230
132312000-05-22 Stefan Monnier <monnier@cs.yale.edu>
13232
13233 * help.el (help-manyarg-func-alist): Typo.
13234
13235 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
13236 intervals which makes it heaps simpler.
13237
13238 * newcomment.el (comment-region-internal): Go back to BEG after quoting
13239 the nested comment markers.
13240
13241 * subr.el (remove-hook): Don't turn the hook's value into a list.
13242
132432000-05-21 Dave Love <fx@gnu.org>
13244
13245 * edmacro.el (edmacro-parse-keys): Return vector if any elements
13246 are invalid characters.
13247
13248 * international/mule-util.el (detect-coding-with-priority): Use
13249 mapc. Remove redundant lambda.
13250
13251 * international/mule-diag.el (list-non-iso-charset-chars)
13252 (describe-fontset): Remove redundant lambda.
13253
13254 * emulation/crisp.el (brief-mode): New alias.
13255
13256 * emacs-lisp/ring.el (ring-elements): New function.
13257
13258 * emacs-lisp/easymenu.el (easy-menu-create-menu)
13259 (easy-menu-do-add-item): Use keywordp.
13260
13261 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
13262
13263 * replace.el: Doc and error message fixes.
13264 (replace-highlight): Use facep, not internal-find-face.
13265
132662000-05-20 Stefan Monnier <monnier@cs.yale.edu>
13267
13268 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
13269
13270 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
13271 (log-edit-insert-changelog): Drop `:' as well.
13272
13273 * log-view.el: Fix file description.
13274 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
13275 available.
13276 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
13277 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
13278
13279 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
13280 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
13281 Print a status message if the toggle is called interactively.
13282 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
13283 for global minor modes and use `defcustom' for them.
13284 Use add-minor-mode.
13285 (easy-mmode-define-derived-mode): Remove.
13286 (define-derived-mode): Fancier default docstring.
13287 (easy-mmode-define-navigation): Signal an error rather than (ding).
13288
13289 * newcomment.el (comment-styles): New `box-multi'.
13290 (comment-normalize-vars): Better default for comment-continue to
13291 avoid whitespace-only continuations.
13292 (comment-search-forward): Always move even in the no-syntax case.
13293 (comment-padright): Only obey N if it's only obeyed for padleft.
13294 (comment-make-extra-lines): Better handling of empty continuations.
13295 Use `=' for the filler if comment-start has only one character.
13296 (uncomment-region): Try handling the special `=' filler.
13297 (comment-region): Allow LINES even if MULTI is nil.
13298 (comment-box): Choose box style based on comment-style.
13299
133002000-05-20 Kenichi Handa <handa@etl.go.jp>
13301
13302 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
13303 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
13304
133052000-05-20 Kenichi HANDA <handa@etl.go.jp>
13306
13307 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
13308 and insert, not subst-char-in-region.
13309
13310 * international/mule-diag.el (list-character-sets-1): Handle
13311 charsets eight-bit-control and eight-bit-graphic.
13312 (list-iso-charset-chars): Likewise.
13313 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
13314 charactes as is. Use indent-to to align characters.
13315
13316 * international/mule-cmds.el (find-multibyte-characters): Never
13317 exclude charsets eight-bit-control and eight-bit-graphic.
13318
133192000-05-19 Stefan Monnier <monnier@cs.yale.edu>
13320
13321 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
13322 Don't quote lambdas.
13323
13324 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
13325
133262000-05-19 Gerd Moellmann <gerd@gnu.org>
13327
13328 * gud.el (gud-jdb-directories): Doc fix.
13329
133302000-05-19 Stefan Monnier <monnier@cs.yale.edu>
13331
13332 * newcomment.el: New file.
13333
133342000-05-19 Gerd Moellmann <gerd@gnu.org>
13335
13336 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
13337
133382000-05-18 Andreas Schwab <schwab@suse.de>
13339
13340 * dired.el (dired-between-files): Also skip lines beginning with
13341 `used'.
13342
133432000-05-18 Gerd Moellmann <gerd@gnu.org>
13344
13345 * msb.el (msb-menu-cond): Add choice `user'.
13346
133472000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13348
13349 * ps-print.el: Compatibility, customization and doc fix.
13350 (ps-printer-name-option): Replace defconst by defvar.
13351 (ps-postscript-code-directory): XEmacs compatibility.
13352 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
13353 fix.
13354 (ps-user-defined-prologue, ps-print-prologue-header)
13355 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
13356 compatibility and code fix.
13357 (ps-print-background-image, ps-print-background-text):
13358 Customization fix.
13359 (ps-line-number-start, ps-n-up-on): New vars.
13360
133612000-05-18 Espen Skoglund <esk@ira.uka.de>
13362
13363 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
13364 the indent-comment function to just return the appropriate indent.
13365
133662000-05-18 Eric M. Ludlam <zappo@ultranet.com>
13367
13368 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
13369 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
13370 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
13371
133722000-05-18 Dave Love <fx@gnu.org>
13373
13374 * info.el (Info-fontify-node): Add intangible property as well as
13375 invisible.
13376
13377 * calendar/appt.el (appt-make-list): Match all lines of entry.
13378 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
13379
133802000-05-18 Kenichi Handa <handa@etl.go.jp>
13381
13382 * international/mule-diag.el (describe-char-after): Call
13383 internal-char-font, not char-font. If internal-char-font returns
13384 nil, display "-- none --".
13385
133862000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
13387
13388 * image.el (image-type-available-p): Don't reference image-types
13389 if it isn't bound.
13390
133912000-05-17 Stefan Monnier <monnier@cs.yale.edu>
13392
13393 * autoarg.el (autoarg-mode): Typo in the :set argument.
13394
133952000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
13396
13397 * startup.el (command-line-1): Don't signal an error if the
13398 directory for auto-save-list files does not yet exist.
13399
134002000-05-17 Kenichi Handa <handa@etl.go.jp>
13401
13402 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
13403
134042000-05-16 Stefan Monnier <monnier@cs.yale.edu>
13405
13406 * subr.el (remove-hook): `setq' hook-value, not `set'.
13407
134082000-05-16 Sam Steingold <sds@gnu.org>
13409
13410 * info.el (debug-ignored-errors): More errors to ignore.
13411
134122000-05-16 Dave Love <fx@gnu.org>
13413
13414 * cus-edit.el: Don't require cl or easymenu.
13415 (custom-variable-prompt): Test standard-value property, not
13416 user-variable-p.
13417
134182000-05-16 Sam Steingold <sds@gnu.org>
13419
13420 * subr.el (add-hook): `setq' hook-value, not `set'.
13421
134222000-05-16 Gerd Moellmann <gerd@gnu.org>
13423
13424 * startup.el (command-line-1): Mention the FAQ in the startup
13425 message.
13426
13427 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
13428
13429 * progmodes/compile.el (compilation-parse-errors): Collect
13430 `nomessage' regexps last.
13431
13432 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
13433
13434 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
13435 to the function name.
13436
134372000-05-15 Dave Love <fx@gnu.org>
13438
13439 * speedbar.el (speedbar-recenter): Typo.
13440 (speedbar-expand-line): Make arg optional.
13441 (speedbar-mode): Avoid a compiler warning.
13442
134432000-05-15 Gerd Moellmann <gerd@gnu.org>
13444
13445 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
13446 user-specified option string is empty.
13447
13448 * mouse.el (mouse-yank-at-click): Doc fix.
13449
134502000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
13451
13452 * term/internal.el (IT-character-translations): More updates of
13453 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
13454 documents.
13455
134562000-05-15 Gerd Moellmann <gerd@gnu.org>
13457
13458 * env.el (getenv): New function, interactively callable.
13459 (setenv, getenv): Remove autoload cookies.
13460
13461 * loadup.el: Load `env'.
13462
13463 * progmodes/f90.el: Change author's mail address.
13464
134652000-05-14 Dave Love <fx@gnu.org>
13466
13467 * mail/rmail.el (rmail-show-message-hook): Customize and offer
13468 goto-addr as an option.
13469
13470 * help.el (help-xref-stack): Doc fix.
13471 (help-xref-following): New variable.
13472 (help-make-xrefs): Use it.
13473 (help-xref-go-back): Use position information from stack element.
13474 (help-follow): Make position in stack element a pair. Use
13475 help-xref-following.
13476
13477 * autoarg.el: New file.
13478
13479 * faces.el: Declare more functions obsolete.
13480
13481 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
13482 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
13483 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
13484 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
13485 Remove all the setup-...-environment functions.
13486
134872000-05-13 Eric M. Ludlam <zappo@ultranet.com>
13488
13489 * speedbar.el: Updated the commentary section. xemacs20p now uses
13490 >= when detecting. Require `defimage' safely.
13491 (speedbar-easymenu-definition-base): Add toggle for images.
13492 (speedbar-easymenu-definition-special): Add flush cache & expand.
13493 (speedbar-visiting-tag-hook): Set new defaults. Added options.
13494 (speedbar-reconfigure-keymaps-hook): New variable.
13495 (speedbar-frame-parameters): Updated documentation.
13496 (speedbar-use-imenu-flag): Updated custom tag
13497 (speedbar-dynamic-tags-function-list): New variable.
13498 (speedbar-tag-hierarchy-method): Updated doc & custom.
13499 (speedbar-indentation-width, speedbar-indentation-width) New
13500 variables.
13501 (speedbar-hide-button-brackets-flag): Customizable.
13502 (speedbar-vc-indicator): Doc update.
13503 (speedbar-ignored-path-expressions): Updated default value.
13504 (speedbar-supported-extension-expressions): Updated default value.
13505 (speedbar-syntax-table): Remove {} paren status.
13506 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
13507 as "+". Added overlay aliases.
13508 (speedbar-mode): Use `speedbar-mode-line-update' instead of
13509 `force-mode-line-update'.
13510 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
13511 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
13512 `mouse-set-point'
13513 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
13514 (speedbar-item-info-tag-helper): Revamped to handle a wider range
13515 of arbitrary text, and new helper functions.
13516 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
13517 filename finder.
13518 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
13519 (speedbar-directory-buttons): Update path search/expansion.
13520 (speedbar-make-tag-line): Pay attention to
13521 `speedbar-indentation-width'. Use more care w/ invisible
13522 properties.
13523 (speedbar-change-expand-button-char): Call
13524 `speedbar-insert-image-button-maybe'.
13525 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
13526 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
13527 (speedbar-trim-words-tag-hierarchy)
13528 (speedbar-simple-group-tag-hierarchy): New functions
13529 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
13530 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
13531 functions.
13532 (speedbar-mouse-set-point): New function
13533 (speedbar-power-click): Updated documentation.
13534 (speedbar-line-token, speedbar-goto-this-file): Handle more types
13535 of tag prefix text.
13536 (speedbar-expand-line, speedbar-contract-line): Make more robust
13537 to strange text.
13538 (speedbar-expand-line): Takes universal argument to flush the
13539 cache.
13540 (speedbar-flush-expand-line): New function.
13541 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
13542 Use new generator insertion method.
13543 (speedbar-fetch-dynamic-tags): New function.
13544 (speedbar-fetch-dynamic-imenu): Removed code now handled in
13545 `speedbar-fetch-dynamic-imenu'.
13546 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
13547 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
13548 "Revert Buffer" menu items.
13549 (speedbar-buffer-buttons-engine): Be smarter when creating a
13550 filename tag (for expansion purposes.).
13551 (speedbar-highlight-one-tag-line,
13552 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
13553 (speedbar-recenter): New functions.
13554 (defimage-speedbar): Image loading abstraction.
13555 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
13556 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
13557 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
13558 (speedbar-tag-type, speedbar-tag-mail): New images.
13559 (speedbar-expand-image-button-alist): New variable.
13560 (speedbar-insert-image-button-maybe): Insert an image over some
13561 buttons.
13562
135632000-05-13 Kenichi Handa <handa@etl.go.jp>
13564
13565 * international/mule-cmds.el (encode-coding-char): An ASCII
13566 character is always encodable.
13567
13568 * international/mule-conf.el: Add more information in descriptions
13569 of character sets.
13570
13571 * international/mule-diag.el (describe-char-after): New function.
13572 (describe-font-internal): Adjusted for the change of font-info.
13573 (describe-font): Likewise.
13574 (print-fontset): Rewritten for the new fontset implementation.
13575 (describe-fontset): Include fontset alias names in completion.
13576 (list-fontsets): Adjusted for the change of print-fontset.
13577
13578 * simple.el (what-cursor-position): If DETAIL is non-nil, call
13579 describe-char-after instead of displaying the detail in the echo
13580 area.
13581 (syntax-code-table): Format changed.
13582 (string-to-syntax): Adjusted for the above change.
13583
135842000-05-12 Stefan Monnier <monnier@cs.yale.edu>
13585
13586 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
13587
135882000-05-12 Dave Love <fx@gnu.org>
13589
13590 * calendar/todo-mode.el: Remove some compatibility stuff and CL
13591 dependence. Use line-{beginning,end}-position, not
13592 point-at{b,e}ol. Some doc fixes.
13593 (todo-position): New function. Fix callers of position to use it.
13594 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
13595
135962000-05-12 Gerd Moellmann <gerd@gnu.org>
13597
13598 * time.el (display-time-mail-icon): Use `:ascent center'.
13599
13600 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
13601 handling FTP security extensions.
13602
136032000-05-11 Dave Love <fx@gnu.org>
13604
13605 * calendar/todo-mode.el: New file.
13606
136072000-05-11 Gerd Moellmann <gerd@gnu.org>
13608
13609 * comint.el (comint-read-input-ring): Move reference to
13610 comint-input-ring-size outside of the save-excursion. It was
13611 causing the default value to be the only one ever seen.
13612
13613 * font-lock.el: Update copyright. Remove Simon Marshall's email
13614 address on request from him.
13615
13616 * subr.el (substitute-key-definition): Add comment describing
13617 the meaning of PREFIX.
13618
136192000-05-10 Stefan Monnier <monnier@cs.yale.edu>
13620
13621 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
13622
13623 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
13624 (add-minor-mode): Don't make the variable buffer-local and add a
13625 reference to define-minor-mode in the docstring.
13626
13627 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
13628 HEADER/FOOTER and fix bug with trailing empty directory.
13629 (cvs-append-to-ignore): Use vc-editable-p if available.
13630 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
13631 (vc-do-command): Tweak advice to handle the new VC.
13632
13633 * log-view.el (log-view-goto-rev): New function for the new VC.
13634 (log-view-minor-wrap): Use mark-active.
13635
13636 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
13637 (log-edit-changelog-full-paragraphs): New var.
13638 (log-edit-insert-changelog): Remove a lonely leading `* file'.
13639 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
13640 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
13641 (log-edit-changelog-ours-p, log-edit-changelog-entries)
13642 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
13643 Replace the `cvs' prefix with `log-edit'.
13644
13645 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
13646
13647 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
13648 (diff-font-lock-defaults): Explicitly turn off multiline.
13649 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
13650 (diff-ediff-patch): Fix call to ediff-patch-file.
13651 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
13652 Handle comments.
13653
13654 * frame.el (automatic-hscrolling): Typo.
13655
13656 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
13657
136582000-05-09 Sam Steingold <sds@goems.com>
13659
13660 * apropos.el (apropos-print): use `describe-face' instead of
13661 `customize-face-other-window'.
13662
136632000-05-09 Dave Love <fx@gnu.org>
13664
13665 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
13666
13667 * help.el (describe-variable): Have customize button pop the
13668 help-xref stack when invoked.
13669 (help-xref-symbol-regexp): Add `face'.
13670 (help-make-xrefs): Check for quoted face names and adapt regexp
13671 submatch numbers to cope.
13672 (help-xref-interned): Maybe insert face doc too. Separate
13673 sections with a line of hyphens.
13674
13675 * faces.el: Some doc fixes. Declare some functions obsolete.
13676 (describe-face): Add customize button. Return the help
13677 text. Fix prompt.
13678
136792000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
13680
13681 * term/internal.el (IT-character-translations): Fix last change.
13682
136832000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
13684
13685 * woman.el: New file
13686 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
13687
136882000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
13689
13690 * term/internal.el (IT-character-translations): Update ASCII
13691 simulations for greek-iso8859-7, add latin-iso8859-14 and
13692 latin-iso8859-15.
13693
13694 * international/mule-cmds.el (set-language-info-alist): Call
13695 define-prefix-command with 3 arguments, to make the map suitable
13696 for a menu.
13697
136982000-05-07 Dave Love <fx@gnu.org>
13699
13700 * time.el: Small doc fixes from Pavel Jan\e,Am\e(Bk ml.
13701
137022000-05-05 Dave Love <fx@gnu.org>
13703
13704 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
13705 list in doc string. Don't quote keyword symbols.
13706 * emacs-lisp/cl.el: Likewise
13707 * emacs-lisp/cl-seq.el: Likewise
13708
137092000-05-05 Gerd Moellmann <gerd@gnu.org>
13710
13711 * abbrev.el (abbrev-mode): Make ARG optional.
13712
137132000-05-04 Gerd Moellmann <gerd@gnu.org>
13714
13715 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
13716
13717 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
13718
13719 * subr.el (substitute-key-definition): Clarify documentation.
13720
137212000-05-04 Milan Zamazal <pdm@freesoft.cz>
13722
13723 * glasses.el (glasses-convert-to-unreadable): Use
13724 `glasses-separator' instead of the hard-wired "_".
13725 (glasses-mode): Call `glasses-make-unreadable' only in a single
13726 place.
13727
137282000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
13729
13730 * term/internal.el (cjk-codepages-alist): Add associations for
13731 Chinese and Korean codepages. Remove FIXME comment.
13732
137332000-05-03 Dave Love <fx@gnu.org>
13734
13735 * time.el (display-time-mail-face, display-time-use-mail-icon):
13736 New option.
13737 (display-time-mail-icon): New variable.
13738 (display-time-string-forms): Use the above. Fix the local-map.
13739
137402000-05-03 Gerd Moellmann <gerd@gnu.org>
13741
13742 * replace.el (query-replace-map): Add binding for `E'.
13743 (query-replace-help): Extend help text.
13744 (perform-replace): Allow editing the replacement string.
13745
13746 * make-mode.el (makefile-mode-abbrev-table): New variable.
13747 (makefile-mode): Set local abbrev table to
13748 makefile-mode-abbrev-table.
13749 (makefile-font-lock-keywords): Fontify includes and conditionals.
13750
13751 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
13752 set TOGGLE's value.
13753
13754 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
13755 mail-interactive-insert-alias.
13756 (mail-abbrev-complete-alias): New command.
13757 (mail-mode-map): Bind it to `M-TAB'.
13758
137592000-05-03 Kenichi Handa <handa@etl.go.jp>
13760
13761 * language/lao-util.el (lao-compose-region): New function.
13762
137632000-05-02 Gerd Moellmann <gerd@gnu.org>
13764
13765 * files.el (recover-session): Make directories as necessary
13766 if they don't exist yet.
13767
13768 * calendar/cal-french.el
13769 (french-calendar-multibyte-special-days-array)
13770 (french-calendar-special-days-array): Change French text.
13771 (calendar-french-date-string): Change output.
13772 (calendar-goto-french-date): Likewise.
13773
137742000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
13775
13776 * wid-edit.el (widget-default-active): Obey `:always-active'.
13777 (widget-documentation-string-value-create): Set `:always-active'.
13778
137792000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
13780
13781 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
13782 default prefix to `~/_emacs.d/auto-save.list/_s'.
13783 (normal-top-level): Create the directory for auto-save files, if
13784 it doesn't already exist (in the ms-dos case only).
13785
137862000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
13787
13788 * international/mule-cmds.el (set-language-environment): Don't
13789 concat an integer (dos-codepage), use format instead.
13790
137912000-05-02 Dave Love <fx@gnu.org>
13792
13793 * help.el (help-xref-on-pp): Check for constant symbols.
13794
137952000-04-29 Gerd Moellmann <gerd@gnu.org>
13796
13797 * startup.el (normal-top-level): Put a condition-case around
13798 the code loading subdirs.el.
13799
138002000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13801
13802 * ps-print.el: Upside-down and face background color printing,
13803 line number step, doc fix.
13804 (ps-print-version): New version number (5.2).
13805 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
13806 (ps-face-attribute-list, ps-plot-with-face): Code fix.
13807 (ps-spool-config): Var fix.
13808 (ps-printer-name-option): Const fix.
13809 (ps-print-upside-down, ps-use-face-background)
13810 (ps-line-number-step): New vars.
13811 (ps-window-system, ps-lp-system): New consts.
13812 (ps-face-background): New fun.
13813
138142000-04-28 Richard Stallman <rms@gnu.org>
13815
13816 * files.el (make-auto-save-file-name):
13817 Apply auto-save-file-name-transforms to visited file name
13818 before generating auto save file name.
13819 (auto-save-file-name-transforms): New variable.
13820
13821 * files.el (backup-enable-predicate):
13822 Correctly test for a file under a temporary directory.
13823
138242000-04-28 Gerd Moellmann <gerd@gnu.org>
13825
13826 * subr.el (add-minor-mode): Rewritten.
13827
138282000-04-28 Kenichi Handa <handa@etl.go.jp>
13829
13830 * mail/sendmail.el (sendmail-send-it): Set
13831 buffer-file-coding-system to the selected coding system for MIME
13832 header.
13833
138342000-04-27 Gerd Moellmann <gerd@gnu.org>
13835
13836 * dired.el (dired-move-to-filename-regexp): Allow format where
13837 YYYY is followed by two spaces.
13838
13839 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
13840 in the second character class of the regexp.
13841
13842 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
13843 mh-etc, too.
13844
13845 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
13846 nil.
13847
13848 * subr.el (add-minor-mode): Use `set' instead of `setq'.
13849
13850 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
13851 argument.
13852
138532000-04-27 Sen Nagata <sen@eccosys.com>
13854
13855 * emacs-lisp/crm.el (crm-completion-table): New variable.
13856 (crm-collection-fn, crm-test-completion)
13857 (completing-read-multiple): Use it.
13858
138592000-04-27 Dave Love <fx@gnu.org>
13860
13861 * help.el (locate-library): Use mapc.
13862 (help-manyarg-func-alist): Add call-process-region.
13863
138642000-04-26 Gerd Moellmann <gerd@gnu.org>
13865
13866 * subr.el (add-minor-mode): Make argument MAP optional.
13867
13868 * desktop.el (desktop-save): Save list of minor modes.
13869 (desktop-create-buffer): Restore minor modes.
13870 (desktop-minor-mode-table): New user-option.
13871
13872 * subr.el (add-minor-mode): New function.
13873
13874 * image.el (find-image): New function.
13875 (defimage): Rewritten to find image at load time.
13876
13877 * startup.el (normal-top-level-add-to-load-path): Handle
13878 case that the default directory is not in load-path.
13879
13880 * help.el: Old patch from Stefan Monnier.
13881 (help-xref-on-pp): New function.
13882 (describe-variable): Use it to display xrefs in a symbol's value.
13883
138842000-04-26 Stefan Monnier <monnier@cs.yale.edu>
13885
13886 * cus-edit.el (custom-face): Fix parenthesis.
13887
138882000-04-26 Kenichi Handa <handa@etl.go.jp>
13889
13890 * mail/rmail.el (rmail-expunge): When there are no deleted
13891 messages, do nothing.
13892
138932000-04-26 Dave Love <fx@gnu.org>
13894
13895 * international/mule-cmds.el (locale-translation-file-name):
13896 Defvar to nil.
13897 (set-locale-environment): Set it here (at runtime).
13898
138992000-04-25 Gerd Moellmann <gerd@gnu.org>
13900
13901 * replace.el (perform-replace): Add parameters START and END. Use
13902 them instead of the check for a region in Transient Mark mode.
13903 (query-replace-read-args): Return two more list elements for the
13904 start and end of the region in Transient Mark mode.
13905 (query-replace, query-replace-regexp, query-replace-regexp-eval)
13906 (map-query-replace-regexp, replace-string, replace-regexp): Add
13907 optional last arguments START and END and pass them to
13908 perform-replace.
13909
13910 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
13911 form with additional arguments for perform-replace.
13912
13913 * progmodes/etags.el (tags-query-replace): Add parameters START
13914 and END. Construct a form with additional arguments for
13915 perform-replace.
13916
13917 * simple.el (shell-command): Set default directory for "*Shell
13918 Command Output" buffer.
13919
13920 * language/european.el (iso-latin-4): Fix typo.
13921
13922 * emacs-lisp/crm.el: New file.
13923
139242000-04-24 Dave Love <fx@gnu.org>
13925
13926 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
13927 (Custom-reset-saved, Custom-reset-standard)
13928 (custom-group-value-create, custom-group-set, custom-group-save)
13929 (custom-group-reset-current, custom-group-reset-saved)
13930 (custom-group-reset-standard): Use mapc.
13931 (custom-buffer-create-internal): Disable undo when creating items.
13932 Use mapc.
13933 (custom-face): Avoid redundant lambda.
13934
139352000-04-24 Gerd Moellmann <gerd@gnu.org>
13936
13937 * startup.el (auto-save-list-file-prefix): Set default to
13938 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
13939
139402000-04-24 Sam Steingold <sds@gnu.org>
13941
13942 * time-stamp.el (time-stamp-string-preprocess): Always convert
13943 `field-result' to a string.
13944
139452000-04-24 Gerd Moellmann <gerd@gnu.org>
13946
13947 * frame.el (scrolling): New group.
13948 (automatic-hscrolling): New user-option.
13949
13950 * startup.el (command-line-x-option-alist): Add `-lsp' and
13951 `--line-spacing'.
13952
139532000-04-19 Dave Love <fx@gnu.org>
13954
13955 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
13956 (cl-mapc): Rename from mapc. Fix the funcall.
13957
139582000-04-19 Gerd Moellmann <gerd@gnu.org>
13959
13960 * simple.el (clone-indirect-buffer-other-window): New command.
13961 (clone-indirect-buffer): Add optional arg NORECROD.
13962 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
13963
13964 * help.el (resize-temp-buffer-window): Use count-screen-lines.
13965
13966 * window.el (count-screen-lines): New function.
13967 (shrink-window-if-larger-than-buffer): Use count-screen-lines
13968 instead of window-buffer-height.
13969
13970 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
13971 non-existing variable comint-input-sentinel.
13972 (inferior-lisp-args-to-list): Removed.
13973 (inferior-lisp): Use split-string instead of
13974 inferior-lisp-args-to-list.
13975
13976 * hexl.el (hexl-insert-hex-string): New command.
13977
13978 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
13979 instead of concat.
13980
139812000-04-18 Gerd Moellmann <gerd@gnu.org>
13982
13983 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
13984 at the start of an existing but empty folder.
13985
139862000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13987
13988 * ps-mule.el: Customization fix, doc fix.
13989 (ps-multibyte-buffer): Customization fix.
13990
139912000-04-17 Richard M. Stallman <rms@gnu.org>
13992
13993 * subr.el (read-passwd): Use read-char-exclusive.
13994
139952000-04-17 Gerd Moellmann <gerd@gnu.org>
13996
13997 * textmodes/texinfo.el (texinfo-insert-@email)
13998 (texinfo-insert-@emph, texinfo-insert-@quotation)
13999 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
14000 (texinfo-mode-map): Add key bindings for them.
14001
14002 * files.el (basic-save-buffer-2): Use a template with `$'
14003 instead of `#' for VMS.
14004
14005 * simple.el (clone-indirect-buffer): New function.
14006
140072000-04-16 Stephen Eglen <stephen@gnu.org>
14008
14009 * iswitchb.el (iswitchb-case): New function. If the user input
14010 contains any upper-case characters, the search is made
14011 case-sensitive.
14012
140132000-04-17 Stefan Monnier <monnier@cs.yale.edu>
14014
14015 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
14016 comment-end.
14017 (texinfo-font-lock-syntactic-keywords): New var.
14018 (texinfo-font-lock-keywords): Remove comment regexp.
14019 (texinfo-insert-block): New function.
14020 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
14021 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
14022 and font-lock-defaults. Use regexp-opt for outline-regexp.
14023 (texinfo-environments): New var.
14024 (texinfo-environment-regexp): Use regexp-opt and
14025 texinfo-environments.
14026
14027 * textmodes/ispell.el (ispell-menu-map-needed): Check that
14028 ispell-process is bound since this might be eval'd before ispell
14029 is loaded.
14030 (ispell-message): Use a tiny bit less magic and a bit more hard
14031 data to figure out what kind of sc-cite-regexp to use.
14032
14033 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
14034
14035 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
14036 (insert-cyclic-diary-entry): Unquote the lambda.
14037
14038 * gud.el (gud-jdb-build-source-files-list): Fix typo.
14039
14040 * files.el (backup-enable-predicate): Unquote the lambda.
14041
14042 * cus-edit.el (custom-face, face): Unquote the lambda.
14043
140442000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14045
14046 * ps-print.el: Check for line-beginning-position definition.
14047
14048 * ps-print.el: Fix counting lines in a region.
14049 (ps-print-version): New version number (5.1.5).
14050 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
14051 (ps-printing-region): Fun code fix.
14052
140532000-04-15 Gerd Moellmann <gerd@gnu.org>
14054
14055 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
14056 to file-directory-p.
14057
140582000-04-14 Gerd Moellmann <gerd@gnu.org>
14059
14060 * gud.el (gud-jdb-build-source-files-list): Check that directory
14061 exists before calling directory-files.
14062
140632000-04-13 Dave Love <fx@gnu.org>
14064
14065 * emacs-lisp/trace.el: Change maintainer. Use new backquote
14066 syntax.
14067
14068 * emacs-lisp/cl-specs.el: Remove when, unless.
14069
14070 * emacs-lisp/cl-extra.el: Don't quote keywords.
14071 (cl-old-mapc): New variable.
14072 (mapc): Use it.
14073 (cl-map-intervals): Use with-current-buffer. Don't check for
14074 next-property-change.
14075 (cl-map-overlays): Use with-current-buffer.
14076 (cl-expt): Remove.
14077 (copy-tree, remprop): Define unconditionally.
14078
14079 * emacs-lisp/cl-compat.el (keywordp): Remove.
14080
14081 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
14082 to use keywordp.
14083 (edebug-spec): Enable keywordp.
14084
14085 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
14086 string-lessp.
14087
14088 * cus-start.el: Use keywordp.
14089
140902000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
14091
14092 * diary-lib.el (include-other-diary-files): Fix the fix of
14093 2000-02-18 by doing a save-excursion.
14094
140952000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14096
14097 * ps-print.el: Customization fix, doc fix.
14098 (ps-print-version): New version number (5.1.4).
14099 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
14100 (ps-print-preprint): Adjust code.
14101 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
14102 (ps-print-prologue-header, ps-print-control-characters)
14103 (ps-spool-config): Customization fix.
14104
141052000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
14106
14107 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
14108 converted to the new menu-item format, names silightly changed,
14109 help strings added.
14110
14111 Support for spelling without async subprocesses:
14112
14113 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
14114 (ispell-session-buffer): New variables.
14115 (ispell-start-process, ispell-process-status,
14116 ispell-accept-output, ispell-send-string): New functions, for
14117 Ispell invocation when async subprocesses aren't supported.
14118 (ispell-word, ispell-pdict-save, ispell-command-loop,
14119 ispell-process-line, ispell-buffer-local-parsing): Replace calls
14120 to process-send-string with calls to ispell-send-string, and
14121 accept-process-output with ispell-accept-output.
14122 (ispell-init-process): Call ispell-process-status instead of
14123 process-status with.
14124 (ispell-init-process): Call ispell-start-process. Call
14125 ispell-accept-output and ispell-send-string. Don't call
14126 process-kill-without-query and kill-process if they are unbound.
14127 (ispell-async-processp): New function.
14128
141292000-04-12 Dave Love <fx@gnu.org>
14130
14131 * info.el: Add debug-ignored-errors.
14132 (Info-mode-menu): Add some items.
14133 (Info-directory): Add autoload cookie.
14134
14135 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
14136 Modify `truncate-lines'. Make `describe-language-environment'
14137 always visible and add help. Modify `describe-key' help. Invoke
14138 Info-directory from `info'. New entry `emacs-manual'.
14139
141402000-04-10 Gerd Moellmann <gerd@gnu.org>
14141
14142 * progmodes/ebrowse.el (ebrowse-tree-mode): Use
14143 propertized-buffer-identification.
14144 (ebrowse-update-member-buffer-mode-line): Likewise.
14145 (ebrowse--mode-strings): Removed.
14146 (ebrowse--mode-line-props): Removed.
14147
14148 * files.el (auto-mode-alist): Add `EBROWSE'.
14149
14150 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
14151 space before testing for end of buffer.
14152 (ebrowse-load): Removed.
14153 (ebrowse-revert-tree-buffer-from-file): Rewritten.
14154 (ebrowse-create-tree-buffer): Rewritten.
14155 (ebrowse-tree-mode): Read tree from buffer.
14156
14157 * progmodes/ebrowse-ffh.el: Removed.
14158
141592000-04-10 Kenichi Handa <handa@etl.go.jp>
14160
14161 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
14162
141632000-04-10 Gerd Moellmann <gerd@gnu.org>
14164
14165 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
14166 at the wrong place.
14167
141682000-04-09 Dave Love <fx@gnu.org>
14169
14170 * files.el (backup-enable-predicate): Use
14171 temporary-file-directory, small-temporary-file-directory.
14172 (make-backup-file-name-function, backup-directory-alist): New
14173 variables.
14174 (make-backup-file-name-1): New function.
14175 (make-backup-file-name): Use it.
14176 (find-backup-file-name): Likewise. Use format for clarity, not
14177 concat.
14178 (file-newest-backup): Use make-backup-file-name.
14179
141802000-04-09 Gerd Moellmann <gerd@gnu.org>
14181
14182 * progmodes/ebrowse-ffh.el: New file.
14183
14184 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn): Moved
14185 to ebrowse-ffh.el.
14186 (ebrowse-load): Add autoload.
14187
14188 * finder.el (finder-commentary): Add autoload cookie.
14189
14190 * mail/rfc2368.el: Correct author's email address.
14191
14192 * progmodes/ebrowse.el: New file.
14193
14194 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
14195 item help string.
14196 (easy-menu-do-add-item): Ditto.
14197 (easy-menu-define): Extend doc string.
14198
14199 * jit-lock.el (with-buffer-unmodified): Use
14200 restore-buffer-modified-p.
14201 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
14202 (jit-lock-function, jit-lock-stealth-fontify): Don't use
14203 with-buffer-unmodified.
14204
142052000-04-08 Dave Love <fx@gnu.org>
14206
14207 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
14208 unless, when.
14209
142102000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
14211
14212 * viper-util.el (viper-put-on-search-overlay): New subroutine.
14213 (viper-flash-search-pattern): No operation when using Emacs
14214 doesn't support face.
14215 Use `viper-put-on-search-overlay'.
14216
142172000-04-04 Gerd Moellmann <gerd@gnu.org>
14218
14219 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
14220 like C-r.
14221
14222 * progmodes/make-mode.el: Some doc fixes.
14223 (makefile-mode-abbrev-table): New variable.
14224 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
14225 (makefile-font-lock-keywords): Fontify includes and conditionals.
14226 (toplevel): Require `dabbrev' and `add-log' when compiling.
14227
14228 * replace.el (perform-replace): Don't move forward one char
14229 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
14230 to do that because it leaves point 1 position after the last
14231 replacement, after everything has been replaced.
14232
14233 * jit-lock.el (with-buffer-unmodified): New macro.
14234 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
14235 modified state.
14236 (jit-lock-function-1): Extracted from jit-lock-function; not
14237 preserving buffer's modified state.
14238 (jit-lock-function, jit-lock-stealth-fontify): Call
14239 jit-lock-function-1.
14240
14241 * mail/rfc2368.el: Remove supernumerary copyright line.
14242
142432000-04-04 Milan Zamazal <pdm@freesoft.cz>
14244
14245 * glasses.el: Provide facilities for inserting space before left
14246 parentheses and uncapitalization of identifiers.
14247 (glasses-mode): Try to remove old overlays in all cases.
14248
142492000-04-03 Gerd Moellmann <gerd@gnu.org>
14250
14251 * progmodes/compile.el (compile-internal): Display the compilation
14252 buffer in a different frame, if it's already displayed there.
14253
14254 * mail/rfc2368.el: New file.
14255
14256 * simple.el (sendmail-user-agent-compose): Recognize a `body'
14257 header and insert its value as mail body.
14258
14259 * subr.el (member-ignore-case): New function.
14260
14261 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
14262 (dabbrev--find-expansion): Ignore buffers matching a regexp
14263 from dabbrev-ignored-regexps.
14264
14265 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
14266 to extensions handled by gzip.
14267
142682000-04-03 Richard M. Stallman <rms@gnu.org>
14269
14270 * files.el (insert-directory): List the total free space
14271 along with the used space.
14272
14273 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
14274 line is followed by one that matches CITATION-REGEXP, end the
14275 paragraph.
14276
142772000-04-03 Markus Rost <rost@delysid.gnu.org>
14278
14279 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
14280 (rmail-make-basic-summary-line): Use that option.
14281
142822000-04-03 Kenichi Handa <handa@etl.go.jp>
14283
14284 * international/mule-cmds.el (encoded-string-description):
14285 Rewritten. Try pretty description for ISO 2022 escape sequences
14286 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
14287 for hexadecimal format.
14288
142892000-04-01 Dave Love <fx@gnu.org>
14290
14291 * cpp.el: Change customization group to `c' from `C'.
14292
14293 * vcursor.el (vcursor-move): Use display-color-p.
14294
14295 * international/mule-util.el: Provide mule-utils.
14296 (string-to-sequence): Simplify and speed up.
14297
14298 * international/mule.el (make-coding-system): Purecopy doc-string.
14299
14300 * international/mule-cmds.el: Various menu changes.
14301 (describe-specified-language-support): Handle `Default'.
14302 (set-language-info): Purecopy `info'.
14303
143042000-03-31 Andrew Innes <andrewi@gnu.org>
14305
14306 * vc.el (vc-backend-diff): Return the correct status if we had to
14307 retry the rcsdiff command without the --brief option.
14308
143092000-03-31 Dave Love <fx@gnu.org>
14310
14311 * help.el (help-manyarg-func-alist): Correct several omissions.
14312
14313 * add-log.el: Don't require cl, fortran.
14314 (add-log-current-defun-function): Doc fix.
14315 (change-log-version-number-regexp-list): Remove SCCS part. Doc
14316 fix.
14317 (change-log-version-rcs): Function deleted.
14318 (change-log-version-number-search): Doc fix. Use
14319 vc-workfile-version. Avoid CL dolist.
14320 (add-change-log-entry): Just call add-log-current-defun to get
14321 defun. Simplify somewhat.
14322 (change-log-get-method-definition-1): Likewise.
14323 (add-log-current-defun): Return nil if calling
14324 add-log-current-defun-function does so. Move Fortran stuff to
14325 fortran.el. Return string without properties.
14326
14327 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
14328 and :alpha: char classes.
14329
14330 * mail/supercite.el: Defvar curline when compiling.
14331 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
14332 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
14333 rather than a-zA-Z0-9 to allow non-ASCII characters.
14334
143352000-03-31 Gerd Moellmann <gerd@gnu.org>
14336
14337 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
14338
14339 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
14340 Re-enable new code.
14341
14342 * lpr.el (print-region-1): Use -d to specify printer name for
14343 systems `usg-unix-v*, `dgux', `hpux', `irix'.
14344
143452000-03-31 Dave Love <fx@gnu.org>
14346
14347 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Look
14348 for function definition in symbol's function value slot first
14349 instead of first consulting byte-compile-function-environment.
14350
143512000-03-31 Kenichi Handa <handa@etl.go.jp>
14352
14353 * language/european.el ("Polish"): New language environment.
14354 (setup-polish-environment): New function.
14355
143562000-03-30 Gerd Moellmann <gerd@gnu.org>
14357
14358 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
14359 Disable new code.
14360
14361 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
14362 trying to `load' the symbol of an autoload instead of the file
14363 recorded in the autoload. Fix error messages.
14364
143652000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14366
14367 * ps-print.el: PostScript programming fix for ghostview, doc fix.
14368 (ps-print-version): New version number (5.1.3).
14369 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
14370 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
14371 (ps-generate-postscript-with-faces): Code fix.
14372 (ps-color-values): XEmacs compatibility.
14373 (ps-print-background-image, ps-print-background-text, ps-printer-name)
14374 (ps-default-fg, ps-default-bg): Adjust customization.
14375 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
14376 (ps-color-scale): Renaming old ps-color-value fun.
14377 (ps-print-headers): Replace ps-print-header group to avoid conflict
14378 with ps-print-header variable.
14379 (ps-print-miscellany): New group.
14380 (ps-format-color, ps-rgb-color): New funs.
14381 (ps-default-foreground): New var.
14382 (ps-printer-name-option): New const.
14383
143842000-03-30 Peter Breton <pbreton@ne.mediaone.net>
14385
14386 * net/net-utils.el:
14387 (network-connection-host, network-connection-service): New variables
14388 (network-connection-mode): New mode, derived from comint-mode
14389 (network-connection-mode-setup): New function, saves host and
14390 service information in local variables.
14391
14392 * lisp/locate.el:
14393 (locate-word-at-point): Added this function
14394 (locate): Default to using locate-word-at-point as input
14395 Run dired-mode-hook
14396
143972000-03-29 Dave Love <fx@gnu.org>
14398
14399 * calendar/appt.el: Doc fixes.
14400 (appt-check): Convert min-to-app to a string before passing to
14401 appt-disp-window-function or concat.
14402 (appt-delete-window): Remove test for frame-root-window.
14403 (appt-select-lowest-window, appt-convert-time): Simplify.
14404
14405 * emacs-lisp/bytecomp.el: Doc fixes.
14406 (byte-compile-file-form-autoload): Update
14407 byte-compile-function-environment.
14408
144092000-03-29 Andreas Schwab <schwab@suse.de>
14410
14411 * emacs-lisp/autoload.el: Also print defsubst doc string
14412 specially.
14413
14414 * dired.el (dired-insert-directory): If dired-free-space-program
14415 failed just delete its output.
14416
144172000-03-29 Dave Love <fx@gnu.org>
14418
14419 * international/iso-cvt.el: Move provide to end. Doc fixes.
14420 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
14421 (iso-iso2sgml, iso-sgml2iso): New functions.
14422 (iso-cvt-define-menu): Fix some entries and use backquote for
14423 clarity.
14424
14425 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
14426
144272000-03-28 Gerd Moellmann <gerd@gnu.org>
14428
14429 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
14430 ISO-DATE. If non-nil, return date in ISO 8601 format.
14431
144322000-03-26 Stefan Monnier <monnier@cs.yale.edu>
14433
14434 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
14435 if it ever becomes used.
14436 (log-edit-mode-hook): Default to vc-log-mode-hook.
14437 (log-edit-mode): Fix the docstring.
14438
14439 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
14440 the code.
14441
144422000-03-26 Dave Love <fx@gnu.org>
14443
14444 * net/browse-url.el (browse-url): Re-fix case of
14445 browse-url-browser-function being an alist.
14446 (browse-url): Add :link to defgroup.
14447
14448 * files.el: Doc fixes.
14449 (file-truename): Include `[' in wildcard characters.
14450 (automount-dir-prefix): Customize.
14451 (find-file-wildcards): Add :version.
14452 (find-file-noselect): Simplify a mapcar call.
14453
14454 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
14455 compatible with inf-lisp version.
14456 (eval-defun-1): Fix custom-declare-variable case.
14457
144582000-03-25 Stefan Monnier <monnier@cs.yale.edu>
14459
14460 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
14461
144622000-03-24 Gerd Moellmann <gerd@gnu.org>
14463
14464 * Makefile (COMPILE_FIRST): New macro.
14465 (compile-files): Compile files from COMPILE_FIRST first.
14466
14467 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new
14468 code.
14469
14470 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
14471 matching open parenthesis in column 0 to defun-prompt-regexp
14472 only if open-paren-in-column-0-is-defun-start is set.
14473
14474 * sun-curs.el: Require CL at compile-time only.
14475
14476 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
14477 instead of copy-list which is a function from CL.
14478 (msb--choose-menu, msb--mode-menu-cond)
14479 (msb--create-buffer-menu-2): Use dolist instead of mapc.
14480 (msb--init-file-alist): Use mapcar instead of mapcan.
14481 (msb--aggregate-alist): Use mapcar instead of mapcan. Fix
14482 `(' in column 0 in doc string.
14483 (msb--add-separators): Use mapcar instead of mapcan.
14484
14485 * cus-dep.el: Require CL at compile-time only.
14486
144872000-03-24 Stefan Monnier <monnier@cs.yale.edu>
14488
14489 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
14490 (byte-compile-warnings): New warning `noruntime'.
14491 (byte-compile-constants, byte-compile-variables): Fix docstring.
14492 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
14493 execute `eval-whenc-compile's body.
14494 (byte-compile-unresolved-functions): Fix docstring.
14495 (byte-compile-eval): New function.
14496 (byte-compile-callargs-warn): Check if the function will be available
14497 at runtime (via property `byte-compile-noruntime').
14498 (byte-compile-print-syms): New function.
14499 (byte-compile-warn-about-unresolved-functions): Also warn about
14500 `noruntime' functions (and use `byte-compile-print-syms').
14501 (byte-compile-file): Capitalize the message.
14502
145032000-03-24 Gerd Moellmann <gerd@gnu.org>
14504
14505 * mail/rmail.el (rmail-confirm-expunge): New user-option.
14506 (rmail-expunge): Ask for confirmation depending on the setting
14507 of rmail-confirm-expunge.
14508
145092000-03-23 Gerd Moellmann <gerd@gnu.org>
14510
14511 * Makefile (bootstrap-clean): If $(emacs) exists, build
14512 loaddefs.el first. A loaddefs.el that's not up-to-date might
14513 cause a bootstrap failure because things don't autoload as
14514 expected.
14515
145162000-03-23 Dave Love <fx@gnu.org>
14517
14518 * net/browse-url.el: Restore previous use of
14519 browse-url-maybe-new-window.
14520
145212000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14522
14523 * ps-print.el: Skip banner page fix.
14524 (ps-print-version): New version number (5.1.2).
14525 (ps-begin-file, ps-end-file, ps-generate): Code fix.
14526
145272000-03-23 Dave Pearson <davep@davep.org>
14528
14529 * net/quickurl.el Changed the type of parameter passed to the
14530 function defined by `quickurl-format-function'. Before only the
14531 text of the URL was passed. Now the whole URL structure is passed
14532 and the function is responsible for extracting the parts it
14533 requires. Changed the default of `quickurl-format-function'
14534 accordingly.
14535 (quickurl-insert): Changed the `funcall' of
14536 `quickurl-format-function' to match the above change.
14537 (quickurl-list-insert): Changed the `url' case so that it makes
14538 use of `quickurl-format-function', previous to this the format was
14539 hard wired.
14540
145412000-03-22 Gerd Moellmann <gerd@gnu.org>
14542
14543 * startup.el: Change some spellings for the X Window System.
14544
145452000-03-22 Stefan Monnier <monnier@cs.yale.edu>
14546
14547 * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean
14548 up the code and the regexp and make sure the cursor is temporarily
14549 moved to the suspicious line while querying the user.
14550
145512000-03-22 Jason Rumney <jasonr@gnu.org>
14552
14553 * w32-fns.el (w32-charset-info-alist): Initialize.
14554
145552000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14556
14557 * ps-print.el: N-up last page fix.
14558 (ps-print-version): New version number (5.1.1).
14559 (ps-end-file, ps-end-job, ps-generate): Code fix.
14560
145612000-03-21 Stefan Monnier <monnier@cs.yale.edu>
14562
14563 * files.el (find-file-run-dired): Update docstring.
14564 (find-directory-functions): New hook.
14565 (find-file-noselect): Run find-directory-functions rather than
14566 calling dired directly.
14567
14568 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
14569
14570 * pcvs.el: Add a minimal leading commentary.
14571 (cvs-make-cvs-buffer): Change the header part by removing the startup
14572 message and adding a `Module' entry. Also replace the FOOTER and
14573 HEADER special fileinfos with the new support in ewoc for updating
14574 its own footer and header.
14575 (cvs-update-header): Update to use the header/footer of the ewoc.
14576 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
14577 (cvs-is-within-p): New function.
14578 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
14579 to only examine some subset of the buffers.
14580
14581 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
14582 `format' instead of our own ad-hoc functions.
14583 Remove HEADER and FOOTER cases, now handled in the EWOC.
14584 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
14585
14586 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
14587 output to avoid scaring the user.
14588 (cvs-parse-table): Catch message for non-up-to-date commits.
14589
14590 * pcvs-defs.el (cvs-startup-message): Remove.
14591 (cvs-global-menu): New autoloaded menu.
14592
14593 * pcvs-util.el (cvs-string-fill): Remove.
14594
14595 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
14596 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
14597 PP part of it and also make it work for footers and headers.
14598 (ewoc-create): Drop POS and BUFFER arguments.
14599 Use the DLL's dummy node to store the end-of-footer position.
14600 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
14601 (ewoc-refresh): Remove unused `header' variable.
14602 (ewoc-(get|set)-hf): New functions.
14603
14604 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
14605 log-view-*-(message|file) and use easy-mmode-define-navigation.
14606 (log-view-message-re): Match SCCS format as well.
14607 And match the revision line rather than the dashed separator line.
14608 (log-view-mode): Use the new define-derived-mode.
14609 (log-view-current-tag): Fill in with an actual implementation.
14610
14611 * cvs-status.el (cvs-status-(prev|next)): Rename from
14612 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
14613 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
14614 to let the output "breathe" a little more (more readable).
14615 (cvs-status-mode): Use the new define-derived-mode.
14616
14617 * smerge-mode.el (smerge-auto-leave): New function and variable.
14618 (smerge-basic-map): Rename from smerge-basic-keymap.
14619 Change the bindings for smerge-diff-*.
14620 (smerge-*-map): Use easy-mmode-defmap.
14621 (smerge-(next|prev)): Use easy-mmode-define-navigation.
14622 (smerge-keep-*): Use smerge-auto-leave.
14623
146242000-03-21 Jason Rumney <jasonr@gnu.org>
14625
14626 * cus-edit.el (custom-button-face): Use 3D look for w32.
14627 (custom-button-pressed-face): Likewise.
14628
146292000-03-21 Gerd Moellmann <gerd@gnu.org>
14630
14631 * progmodes/etags.el (tags-case-fold-search): New user-option.
14632 (tags-loop-eval): New function. Bind case-fold-search around eval
14633 depending on the value of tags-case-fold-search.
14634 (tags-loop-continue): Use tags-loop-eval.
14635 (find-tag-in-order): Bind case-fold-search depending on the value
14636 of tags-case-fold-search.
14637
146382000-03-21 Stefan Monnier <monnier@cs.yale.edu>
14639
14640 * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'.
14641 (diff-end-of-hunk): Return the end position for use in
14642 `easy-mmode-define-navigation'.
14643 (diff-recenter): Remove.
14644 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
14645 of `easy-mmode-define-navigation'.
14646 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
14647 previous renaming) and fix to use new names.
14648 (diff-merge-strings): Use \n as separator: simpler, faster.
14649 (diff-mode): Use `define-derived-mode'.
14650
14651 * derived.el (define-derived-mode): Don't autoload anymore.
14652 Prefer the macro-only version provided by easy-mmode.el.
14653
14654 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
14655 `easy-mmode-define-derived-mode'.
14656 Use `combine-run-hooks'.
14657 (easy-mmode-define-navigation): New macro.
14658
14659 * subr.el (combine-run-hooks): New function.
14660
146612000-03-21 Kenichi HANDA <handa@etl.go.jp>
14662
14663 * term/x-win.el: Fontsets related initialization is simplified.
14664
14665 * international/mule-diag.el (describe-font): Don't refer to
14666 global-fontset-alist, instead call font-list.
14667 (describe-fontset, list-fontsets, mule-diag): Likewise.
14668 (print-fontset): Adjusted for the change of fontset
14669 implementation.
14670
14671 * international/fontset.el (x-charset-registries): Variable
14672 removed, instead the corresponding data is stored in the default
14673 fontset.
14674 (register-alternate-fontnames): Function removed.
14675 (resolved-ascii-font): Variable removed.
14676 (x-compose-font-name): Ignore the second argument REDOCE.
14677 (x-complement-fontset-spec): Complement only an ASCII font and
14678 element for those charsets than can use that ASCII font.
14679 (generate-fontset-menu): Don't refer to global-fontset-alist,
14680 instead call fontset-list.
14681 (uninstantiated-fontset-alist): Variable removed.
14682 (x-style-funcs-alist): Likewise.
14683 (fontset-default-styles): Likewise.
14684 (x-modify-font-name): Function removed.
14685 (create-fontset-from-fontset-spec): Ignore the argument
14686 STYLE-VARIANT.
14687 (create-fontset-from-ascii-font): Docsting adjusted for the above
14688 change.
14689 (instantiate-fontset, resolve-fontset-name): Functions removed.
14690 (fontset-list): Now implemented by C code.
14691
14692 * faces.el (read-face-font): Fix TABLE arg to completing-read.
14693 (describe-face): Include `font' attribute in the description.
14694
146952000-03-21 Kenichi Handa <handa@etl.go.jp>
14696
14697 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
14698
146992000-03-20 Gerd Moellmann <gerd@gnu.org>
14700
14701 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
14702 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
14703 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
14704
14705 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
14706 about behavior of set-buffer-modified-p wrt redisplay.
14707
147082000-03-19 Richard M. Stallman <rms@gnu.org>
14709
14710 * view.el (view-mode-disable): Kill local binding of view-read-only.
14711
147122000-03-18 Gerd Moellmann <gerd@gnu.org>
14713
14714 * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
14715 is a string, convert it to a syntax cell using string-to-syntax.
14716
14717 * simple.el (syntax-code-table, syntax-flag-table): New variables.
14718 (string-to-syntax): New function.
14719
14720 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
14721 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
14722 try to use passive ftp mode.
14723
147242000-03-17 Gerd Moellmann <gerd@gnu.org>
14725
14726 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
14727
14728 * simple.el (append-to-buffer): Update point of windows after
14729 insertion.
14730
14731 * abbrev.el (inverse-add-abbrev): Identify word by first moving
14732 forward then moving backward. Reindent.
14733
14734 * frame.el (other-frame): Call x-focus-frame only if
14735 focus-follows-mouse is off.
14736
147372000-03-17 Dave Love <fx@gnu.org>
14738
14739 * pcvs-util.el (cvs-strings->string): Rename
14740 replace-regexps-in-string.
14741
147422000-03-17 Stefan Monnier <monnier@cs.yale.edu>
14743
14744 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
14745 regexp for labels cannot span several lines.
14746
14747 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
14748 `(setq :<key> ':<key>)' to the macro expansion.
14749
147502000-03-16 Dave Love <fx@gnu.org>
14751
14752 * progmodes/f90.el (f90): Put custom group under `languages', not
14753 `fortran'.
14754 (f90-mode-hook): Customize.
14755 (f90-mode): Set add-log-current-defun-function.
14756 (f90-current-defun): New function.
14757
147582000-03-16 Gerd Moellmann <gerd@gnu.org>
14759
14760 * cus-edit.el (custom-variable-tag-face): Handle case that
14761 default face's height is not a number.
14762 (custom-face-tag-face, custom-group-tag-face-1)
14763 (custom-group-tag-face): Ditto.
14764 (custom-group-tag-face-1): Add :group.
14765
14766 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
14767
147682000-03-15 Gerd Moellmann <gerd@gnu.org>
14769
14770 * pcvs-defs.el (toplevel): Remove autoload cookie for form
14771 requiring easymenu.
14772
147732000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
14774
14775 * ps-print.el: PostScript user-defined prologue, PostScript error
14776 handler, doc fix.
14777 (ps-print-version): New version number (5.1).
14778 (ps-user-defined-prologue, ps-error-handler-message)
14779 (ps-print-prologue-0, ps-error-handler-alist): New vars.
14780 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
14781 (ps-insert-string): New function.
14782
147832000-03-15 Kenichi Handa <handa@etl.go.jp>
14784
14785 * international/ccl.el (ccl-compile-expression): Don't generate
14786 invalid self-assignment code.
14787
147882000-03-14 Dave Love <fx@gnu.org>
14789
14790 * subr.el (replace-regexp-in-string): Renamed from
14791 replace-regexps-in-string. Doc fix.
14792
147932000-03-12 Dave Love <fx@gnu.org>
14794
14795 * cus-edit.el: Doc fixes.
14796 (customize-set-variable, customize-save-variable): Rename args for
14797 doc.
14798 (custom-variable-tag-face, custom-face-tag-face)
14799 (custom-group-tag-face-1, custom-group-tag-face): Modify from
14800 style which user identify as hyperlink.
14801 (hook): Don't add undefined functions to the hook.
14802 (debug-ignored-errors): Transfer message from bindings.el.
14803
148042000-03-12 Gerd Moellmann <gerd@gnu.org>
14805
14806 * recentf.el (recentf-keep-non-readable-files-p): Remove
14807 double/nested definition.
14808
148092000-03-12 Dave Love <fx@gnu.org>
14810
14811 * facemenu.el (facemenu-get-face): Use display-color-p.
14812 * enriched.el (enriched-decode-foreground): Likewise.
14813 (enriched-decode-background): Likewise.
14814 * isearch.el (isearch-highlight): Likewise.
14815 * info-look.el (info-lookup): Likewise.
14816 * simple.el (completion-setup-function): Likewise.
14817
14818 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
14819 :options.
14820
14821 * bindings.el (mode-line-format): Fix line-number and
14822 column-number items. Add help-echo for the background.
14823 (mode-line-mule-info): Modify help-echo.
14824
14825 * avoid.el (mouse-avoidance-mode): Add autoload cookie to defcustom.
14826
14827 * files.el (load-file): Allow completion to .elc.
14828
14829 * man.el: Doc fixes.
14830 (Man-init-defvars): Use display-color-p to set fontification.
14831
14832 * play/hanoi.el (hanoi-internal): Don't use oddp.
14833
148342000-03-12 Gerd Moellmann <gerd@gnu.org>
14835
14836 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
14837
14838 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
14839
148402000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
14841
14842 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
14843 Fix comment.
14844
148452000-03-10 Stefan Monnier <monnier@cs.yale.edu>
14846
14847 * font-lock.el (font-lock-keywords): Fix the doc now that
14848 regexp-opt-depth is unnecessary.
14849 (save-buffer-state): Set an edebug spec.
14850 (font-lock-fontify-anchored-keywords): Properly handle the case when
14851 the matcher goes past the limit.
14852
14853 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
14854 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
14855
14856 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
14857 dll.el and cookie.el (from Elib) with heavy renaming and other
14858 massaging.
14859
14860 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
14861 Autoload the functions used.
14862 (easy-mmode-define-syntax): Fix CL typo.
14863 (easy-mmode-define-derived-mode): Improve the docstring generation.
14864
148652000-03-10 Gerd Moellmann <gerd@gnu.org>
14866
14867 * textmodes/texinfo.el (texinfo-version): Variable and function
14868 removed.
14869
148702000-03-09 Stefan Monnier <monnier@cs.yale.edu>
14871
14872 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
14873 allow more flexibility.
14874 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New
14875 fns.
14876 (easy-mmode-defmap, easy-mmode-defsyntax)
14877 (easy-mmode-define-derived-mode): New macros.
14878
148792000-03-09 Didier Verna <didier@xemacs.org>
14880
14881 * rect.el (replace-rectangle): New function.
14882
148832000-03-09 Dave Love <fx@gnu.org>
14884
14885 * progmodes/fortran.el (fortran-comment-line-start): Define as
14886 "C".
14887 (fortran-comment-line-start-skip): Don't match cpp stuff.
14888 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
14889 (fortran-mode-map): Remove over-eager custom-menu-create for now.
14890 (fortran-mode): Don't set fortran-comment-line-start-skip,
14891 fortran-comment-line-start here. Set comment-start,
14892 add-log-current-defun.
14893 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
14894 (fortran-current-defun): New function.
14895
148962000-03-09 Gerd Moellmann <gerd@gnu.org>
14897
14898 * emacs-lisp/re-builder.el: New file.
14899
14900 * mouse.el (mouse-drag-region): Don't run up-event handler
14901 if hscroll has changed.
14902
14903 * octave-mod.el (octave-font-lock-keywords): To font-lock the
14904 builtin operators, use `font-lock-builtin-face' for Emacs and
14905 `font-lock-preprocessor-face' otherwise.
14906
14907 * font-lock.el (lisp-font-lock-keywords-1): Highlight
14908 `(defun (setf foo)' differently.
14909
149102000-03-08 Stefan Monnier <monnier@cs.yale.edu>
14911
14912 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
14913 (regexp-opt): Update comment and adapt the code the new meaning of
14914 the `paren' argument of regex-opt-group for shy-groups.
14915 (regexp-opt-depth): Handle shy groups as well as backslashed
14916 backslashes.
14917 (regexp-opt-group): Turn the leading comment into a docstring.
14918 Allow `paren' to be a string (the string to use to open a group).
14919 Remove open-presuf and close-presuf. Instead of checking for `all
14920 one-char' and then later on check for `several one-char', handle
14921 both cases close together. Also apply a more generic algorithm
14922 for suffixes (the mirror image of the algorithm used for
14923 prefixes). Use shy-groups. Use nreverse rather than reverse.
14924 (regexp-opt-try-suffix): Removed.
14925
14926 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
14927 from comint-mode-map, so we can just inherit from it. Also, move
14928 the initialization into the `defvar' since there's no docstring
14929 anyway and it's fairly short.
14930 (inferior-scheme-mode): Define it as derived-mode: the code is
14931 shorter and this way we inherit from comint-mode-map rather than
14932 copying it.
14933
14934 * subr.el (replace-regexps-in-string): Properly handle the case
14935 where we match an empty string.
14936
14937 * comint.el (comint-exec-1): Add the current-dir to the exec-path
14938 when the command has a directory component (such as "./testml").
14939 Also fix a typo in the comment.
14940
149412000-03-08 Gerd Moellmann <gerd@gnu.org>
14942
14943 * Makefile (compile-files): Compile files one by one because
14944 that's the only way to ensure a clean compilation environment for
14945 each individual file.
14946
14947 * frame.el (other-frame): Call x-focus-frame.
14948
149492000-03-07 Dave Love <fx@gnu.org>
14950
14951 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
14952 :require to defcustom.
14953
14954 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
14955 lists.
14956
14957 * files.el (auto-mode-alist): Add configure.in.
14958
14959 * progmodes/autoconf.el: New file.
14960
149612000-03-07 Gerd Moellmann <gerd@gnu.org>
14962
14963 * mail/mh-e.el: Change maintainer to `none'.
14964
14965 * recentf.el (recentf-keep-non-readable-files-p): Quote args
14966 to remove-hook and add-hook.
14967
149682000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
14969
14970 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
14971 it as the default.
14972 (mail-send): Test mail-send-nonascii also for the new `mime' value.
14973 (sendmail-send-it): Conditionally add MIME headers specifying the
14974 used character set.
14975
149762000-03-07 Dave Love <fx@gnu.org>
14977
14978 * winner.el: Fix keywords, autoload cookies. Split
14979 eval-when-compile form to avoid compilation failure.
14980
149812000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
14982
14983 * international/mule.el: Modify comment about coding system
14984 property `coding-category'.
14985 (make-coding-system): New argument EOL-TYPE. Pay attention to
14986 coding-category property of PROPERTIES.
14987
14988 * international/mule-conf.el (coding-category-utf-8,
14989 coding-category-utf-16-be, coding-category-utf-16-le): New coding
14990 categories. Include them in the argument for set-coding-priority.
14991
14992 * international/mule-cmds.el (reset-language-environment): Include
14993 coding-category-utf-8, coding-category-utf-16-be, and
14994 coding-category-utf-16-le in the argument for set-coding-priority.
14995 (reset-language-environment): Initialize coding-category-utf-8,
14996 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
14997
149982000-03-06 Karl Fogel <kfogel@red-bean.com>
14999
15000 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
15001 code abstracted out of `bookmark-jump-noselect'. Now tries info
15002 extensions as well as compression extensions.
15003 (bookmark-jump-noselect): Use above new func.
15004
150052000-03-03 Gerd Moellmann <gerd@gnu.org>
15006
15007 * strokes.el: Change maintainer's mail address.
15008
150092000-03-03 Kenichi Handa <handa@etl.go.jp>
15010
15011 * international/mule-diag.el (list-character-sets): Make help-echo
15012 string by substitute-command-keys.
15013 (list-character-sets): Likewise.
15014 (sort-listed-character-sets): Call help-setup-xref.
15015
150162000-03-02 Gerd Moellmann <gerd@gnu.org>
15017
15018 * time.el (display-time-mail-file): Add `none' to the list of
15019 choices.
15020
150212000-03-01 Dave Love <fx@gnu.org>
15022
15023 * help.el (help-xref-go-back): Don't try to set position.
15024
15025 * international/mule-diag.el (list-character-sets): Call
15026 help-setup-xref. Add help-echo to xrefs.
15027 (list-character-sets-1): Add help-echo to xrefs.
15028
150292000-03-02 Gerd Moellmann <gerd@gnu.org>
15030
15031 * frame.el (blink-cursor-mode): Switch cursor on when turning
15032 the mode off.
15033
15034 * add-log.el (add-log-current-defun): Add support for
15035 Autoconf mode.
15036
15037 * mail/rmail.el (rmail-quit-hook): New variable.
15038
150392000-03-01 Dave Love <fx@gnu.org>
15040
15041 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
15042
15043 * help.el (help-xref-button): Add help-echo arg.
15044 (describe-function-1, describe-variable, help-make-xrefs): Use it.
15045
15046 * faces.el (list-faces-display): Supply help-echo with
15047 help-make-xrefs.
15048
15049 * facemenu.el (list-text-properties-at): Set help-xref-stack to
15050 nil.
15051
150522000-03-01 Gerd Moellmann <gerd@gnu.org>
15053
15054 * image.el (defimage): Look for image files in load-path.
15055
15056 * frame.el (busy-cursor-delay-seconds): Change type to
15057 `number'.
15058
150592000-03-01 David Ponce <david.ponce@wanadoo.fr>
15060
15061 * recentf.el (recentf): Added version tag to the defgroup of
15062 recentf.
15063
150642000-03-01 David Ponce <david.ponce@wanadoo.fr>
15065
15066 * recentf.el (recentf-cleanup): Changed to remove excluded file
15067 too.
15068 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
15069 action to select/unselect a file.
15070 (recentf-edit-list): Code cleanup and improvement.
15071 (recentf-open-more-files-action): `recentf-open-more-files' button
15072 widget action to open a file.
15073 (recentf-open-more-files): No more use standard completion but
15074 widgets.
15075 (recentf-more-collection): Deleted.
15076 (recentf-more-history): Deleted.
15077 (recentf-setup-more-completion): Deleted.
15078
150792000-03-01 David Ponce <david.ponce@wanadoo.fr>
15080
15081 * recentf.el (recentf-mode): No more needs that Emacs is running
15082 under a window-system.
15083
150841999-03-01 David Ponce <david.ponce@wanadoo.fr>
15085
15086 * recentf.el (recentf-edit-list): New command to edit the recent
15087 list which allow the user to remove files.
15088 (recentf-edit-selected-items): New global variable, used by
15089 `recentf-edit-list' to hold the list of files to be removed from
15090 the recent list.
15091 (recentf-make-menu-items): Updated to display a "Edit list..."
15092 menu item. Minor code cleanup.
15093
150941999-03-01 David Ponce <david.ponce@wanadoo.fr>
15095
15096 * recentf.el (recentf-open-more-files): New command to open files
15097 that are not displayed in the menu.
15098 (recentf-more-collection): New global variable holding the set of
15099 permissible completions used by `recentf-open-more-files'.
15100 (recentf-more-history): New global variable holding the history list
15101 used by `recentf-open-more-files' completion.
15102 (recentf-setup-more-completion): New function to setup completion for
15103 `recentf-open-more-files'.
15104 (recentf-make-menu-items): Updated to display a "More..." menu item.
15105
151061999-03-01 David Ponce <david.ponce@wanadoo.fr>
15107
15108 * recentf.el (recentf-menu-action): Doc fixed.
15109
151101999-03-01 David Ponce <david.ponce@wanadoo.fr>
15111
15112 * recentf.el (recentf-menu-filter): Doc updated.
15113 (recentf-update-menu-hook): Allow menu filters to force menu update.
15114 (recentf-make-menu-items): New menu filter handling.
15115 (recentf-make-menu-item): New helper function.
15116 (recentf-menu-elements): New menu handling function.
15117 (recentf-sort-ascending): Updated to new menu filter handling.
15118 (recentf-sort-descending): Updated to new menu filter handling.
15119 (recentf-sort-basenames-ascending): New menu filter function.
15120 (recentf-sort-basenames-descending): New menu filter function.
15121 (recentf-show-basenames): New menu filter function.
15122 (recentf-show-basenames-ascending): New menu filter function.
15123 (recentf-show-basenames-descending): New menu filter function.
15124
151252000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
15126
15127 * diary-lib.el (list-diary-entries): Don't try to go forward at
15128 the end of the buffer.
15129
151302000-02-29 Kenichi Handa <handa@etl.go.jp>
15131
15132 * international/mule-diag.el (list-character-sets): Completely
15133 rewritten.
15134 (sort-listed-character-sets): New function.
15135 (list-character-sets-1): Completely rewritten.
15136 (list-character-sets-2): New function.
15137 (non-iso-charset-alist): New variable.
15138 (decode-codepage-char): New function.
15139 (charset-history): New variable.
15140 (read-charset) (list-block-of-chars)
15141 (list-iso-charset-chars)
15142 (list-non-iso-charset-chars)
15143 (list-charset-chars): New functions.
15144 (mule-diag): Call list-character-sets-2, not
15145 list-character-sets-2.
15146 (dump-charsets): Likewise.
15147
151482000-02-29 Gerd Moellmann <gerd@gnu.org>
15149
15150 * dired-x.el (dired-filename-at-point): Add `@' to valid
15151 file name characters.
15152 (dired-filename-at-point): Handle ange-ftp file names.
15153
15154 * frame.el (frame-notice-user-settings): Use assq-delete-all
15155 instead of assoc-delete-all.
15156 (frame-notice-user-settings): Ditto.
15157
15158 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
15159 Don't copy alist.
15160
151612000-02-28 Eli Barzilay <eli@cs.cornell.edu>
15162
15163 * calculator.el (calculator-use-menu): New option.
15164 (calculator-initial-bindings): Changed some bindings to work as
15165 macros.
15166 (calculator-forced-input): Removed.
15167 (calculator-restart-other-mode): New variable.
15168 (calculator-mode-map): Set up menu.
15169
151702000-02-28 Jari Aalto <jari.aalto@poboxes.com>
15171
15172 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
15173 tags.
15174
151752000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
15176
15177 * viper-cmd.el (viper-envelop-ESC-key): added the option to
15178 translate all ESC key sequences.
15179 (viper-goto-mark-subr): restore markers for files for which
15180 they were saved.
15181 * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
15182 * viper-util.el (viper-set-replace-overlay-glyphs,
15183 viper-set-replace-overlay): always check if the replacement
15184 overlay is live.
15185 * viper.el (viper-vi-state-mode-list): added major modes.
15186 * ediff-wind.el: minor comment changes.
15187 * ediff.el: copyright notice date fix.
15188
151892000-02-27 Jason Rumney <jasonr@gnu.org>
15190
15191 * faces.el (face-font-family-alternatives): Add arial to helv.
15192 (mode-line, header-line, tool-bar): Same default as x for w32.
15193 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
15194 face-font-family-alternatives from working.
15195 * term/w32-win.el (mouse-set-font): Do not build fontset from
15196 chosen font.
15197
151982000-02-25 Sam Steingold <sds@goems.com>
15199
15200 * emacs-lisp/cl-indent.el (toplevel): Indent `pprint-logical-block'
15201 properly.
15202
152032000-02-25 Richard M. Stallman <rms@gnu.org>
15204
15205 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
15206
152072000-02-25 Gerd Moellmann <gerd@gnu.org>
15208
15209 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
15210 writable.
15211
15212 * frame.el (busy-cursor-delay-seconds): New option.
15213
152142000-02-24 Gerd Moellmann <gerd@gnu.org>
15215
15216 * frame.el (show-cursor-in-non-selected-windows): New option.
15217
152182000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
15219
15220 * diary-lib.el (include-other-diary-files): Undo the selective
15221 display in any included file and don't kill it.
15222
152232000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
15224
15225 * dired.el (dired-mode-map): Don't remove "Edit" from the menu
15226 bar. Menu items converted to (menu-item format, help strings
15227 added.
15228 [downcase, upcase]: Don't enable on MS-DOS.
15229 [symlink, symlinks]: Don't show if make-symbolic-link is not
15230 bound.
15231 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
15232
152332000-02-23 Dave Love <fx@gnu.org>
15234
15235 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
15236 (backward-kill-word): Revert addition of * to interactive spec --
15237 it's a feature.
15238
15239 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
15240 (backward-kill-sentence, kill-sentence): Likewise.
15241
15242 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
15243 scratch buffer name.
15244 (gud-format-command): Use int-to-string in ?l case. Simplify
15245 slightly.
15246
15247 * term/w32-win.el (internal-face-interactive): Update prompt for
15248 new read-face-name.
15249
15250 * mail/footnote.el (footnote): Add :version to defgroup.
15251 (footnote-section-tag-regexp): Customize.
15252 (footnote-start-tag, footnote-end-tag): New option.
15253 (footnote-latin-regexp): New variable.
15254 (Footnote-latin): New function.
15255 (footnote-style-alist): Add element for latin style.
15256 (footnote-style): Moved.
15257 (Footnote-goto-footnote): Use eq to test arg.
15258
15259 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
15260
15261 * emacs-lisp/byte-opt.el: Change old backquote syntax.
15262 (byte-compile-trueconstp): Include keywords.
15263 (byte-optimize-quote, byte-optimize-lapcode): Use
15264 byte-compile-const-symbol-p.
15265 (byte-optimize-char-before): New optimization.
15266
15267 * emacs-lisp/bytecomp.el: Change old backquote syntax.
15268 (byte-compile-const-symbol-p): New function.
15269 (byte-compile-constp, byte-compile-out-toplevel)
15270 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
15271 Use it.
15272
15273 * subr.el (define-key-after): Default AFTER to t. Doc fix.
15274
152752000-02-23 Kenichi Handa <handa@etl.go.jp>
15276
15277 * international/encoded-kb.el: Be sure to update minor-mode-alist
15278 and minor-mode-map-alist.
15279 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
15280 codes SS2 and SS3 correctly.
15281 (encoded-kbd-self-insert-ccl): New function.
15282 (encoded-kbd-setup-keymap): New function.
15283 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
15284 by calling encoded-kbd-setup-keymap.
15285
15286 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
15287 characters.
15288 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
15289 locally.
15290
152912000-02-22 Dave Love <fx@gnu.org>
15292
15293 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
15294 (lisp-mode-map, lisp-interaction-mode-map): Define all inside
15295 defvar.
15296 (lisp-mode-syntax-table): Set up for #|...|# comments.
15297 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
15298 classes. Match `defface'.
15299 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
15300 (eval-defun-1): Fix for defcustom.
15301 (lisp-indent-region): Doc fix.
15302
15303 * subr.el (when, unless, split-string): Doc fix.
15304 (read-passwd): Move call of clear-this-command-keys to the right
15305 place.
15306 (replace-regexps-in-string): New function.
15307
153082000-02-22 Gerd Moellmann <gerd@gnu.org>
15309
15310 * help.el (describe-variable): Set syntax table to
15311 emacs-lisp-mode-syntax-table when moving forward over the
15312 symbol's name.
15313
153142000-02-22 Dave Love <fx@gnu.org>
15315
15316 * xt-mouse.el: Doc fixes.
15317 (xterm-mouse-position-function): New function, replacing advice of
15318 mouse-position.
15319 (xterm-mouse-mode): Use it. Don't turn on under a window system.
15320
15321 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
15322
153232000-02-21 Gerd Moellmann <gerd@gnu.org>
15324
15325 * format.el (format-annotate-single-property-change): Handle
15326 properties.with dotted-list values.
15327 (format-proper-list-p): New function.
15328
15329 * enriched.el (enriched-face-ans): Handle '(foreground-color
15330 . COLOR) and (background-color . COLOR).
15331
153322000-02-20 Dave Love <fx@gnu.org>
15333
15334 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
15335 and assignments to it.
15336 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
15337 current local map.
15338 (make-flyspell-overlay): Use it.
15339 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
15340
15341 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
15342 (lm-get-header-re): Defun, not defsubst.
15343 (lm-get-package-name): Defun, not defsubst. Simplify.
15344 (lm-version): Doc fix. Simplify.
15345 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
15346 (lm-crack-address, lm-last-modified-date, lm-commentary)
15347 (lm-verify, lm-synopsis): Simplify.
15348 (lm-report-bug): Require emacsbug. Use compose-mail.
15349
153502000-02-20 Gerd Moellmann <gerd@gnu.org>
15351
15352 * dired.el (dired-mode): Call propertized-buffer-identification
15353 to set mode-line-buffer-identification to something having
15354 the right text properties.
15355
15356 * bindings.el (propertized-buffer-identification): New function.
15357
153582000-02-20 Dave Love <fx@gnu.org>
15359
15360 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
15361 check for t-mouse too.
15362
15363 * cus-start.el: Make echo-keystrokes `number'.
15364
153652000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
15366
15367 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
15368 Don't call ring-empty-p unless tags-location-ring is bound.
15369 From Noah Friedman <friedman@splode.com>.
15370
153712000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
15372
15373 * progmodes/hideshow.el (hs-flag-region): No longer use
15374 `intangible' overlay property.
15375
15376 (hs-toggle-hiding): New command.
15377 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
15378
15379 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
15380 Fix omission bug: Run `hs-minor-mode-hook' for both activation
15381 and deactivation.
15382
153832000-02-18 Gerd Moellmann <gerd@gnu.org>
15384
15385 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
15386
153872000-02-17 Gerd Moellmann <gerd@gnu.org>
15388
15389 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
15390
15391 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
15392 of `*' to handle `(* ... *)' comments.
15393
153942000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
15395
15396 * faces.el (list-faces-display): Use display-mouse-p instead of
15397 window-system.
15398
15399 * menu-bar.el (global-map): Menu-bar items converted to the new
15400 format (menu-item..., rearranged for better CUA compliance, and
15401 their names changed for better clarity. Help strings added.
15402
15403 * international/mule-cmds.el (mule-menu-keymap)
15404 (describe-language-environment-map, set-coding-system-map)
15405 (setup-language-environment-map): Convert to new (menu-item...
15406 form, add help strings. Change names of menu items for better
15407 clarity. "Mule" menu-bar item removed (it's now in the "Options"
15408 submenu).
15409
154102000-02-17 Gerd Moellmann <gerd@gnu.org>
15411
15412 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
15413 within the code.
15414
154152000-02-16 Dave Love <fx@gnu.org>
15416
15417 * faces.el: Don't require custom. Add more specific :groups to
15418 various deffaces.
15419 (set-face-attribute): Purecopy args.
15420 (read-face-name): Default to name at point and use it in prompt.
15421 Remove colon from arg in all callers.
15422 (list-faces-display): Hyperlink to face descriptions and customize
15423 buffers.
15424
154252000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
15426
15427 * wid-edit.el (widget-match-inline): An atom never matches a
15428 list.
15429
154302000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15431
15432 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
15433 at ':' characters by call to split-string.
15434
154352000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15436
15437 * textmodes/bibtex.el: Added RCS version identification.
15438
154392000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15440
15441 * textmodes/bibtex.el: Some temporary comments removed.
15442 (bibtex-field-name, bibtex-entry-type): Made the relationship
15443 explicit.
15444 (bibtex-field-const): Allow capital letters.
15445 (bibtex-start-of-string): Deleted because unused.
15446
15447 * textmodes/bibtex.el: Unified some nomenclature. We no longer
15448 use the term 'reference' to describe a bibtex entry as a whole.
15449 Further, reference keys are no longer called 'labels'.
15450 (bibtex-keys): Renamed to bibtex-reference-keys.
15451 (bibtex-reformat-previous-labels): Renamed to
15452 bibtex-reformat-previous-reference-keys.
15453 (bibtex-reference-type): Renamed to bibtex-entry-type.
15454 (bibtex-reference-head): Renamed to bibtex-entry-head.
15455 (bibtex-reference-maybe-empty-head): Renamed to
15456 bibtex-entry-maybe-empty-head.
15457 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
15458 (bibtex-search-reference): Renamed to bibtex-search-entry.
15459 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
15460 bibtex-enclosing-entry-maybe-empty-head.
15461 (bibtex-entry-field-alist, bibtex-entry-head,
15462 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
15463 bibtex-map-entries, bibtex-search-entry,
15464 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
15465 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
15466 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
15467 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
15468 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
15469 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
15470 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
15471
154722000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15473
15474 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
15475 comment.
15476 (bibtex-format-field-delimiters): New function, functionality
15477 extracted from bibtex-format-entry.
15478 (bibtex-autokey-get-yearfield-digits): New function, functionality
15479 extracted from bibtex-autokey-get-yearfield.
15480
15481 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
15482 entries in order to avoid stack overflow in the regexp matcher if
15483 field contents become large.
15484 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
15485 bibtex-field-string-part-not-braced,
15486 bibtex-field-string-part-no-inner-braces,
15487 bibtex-field-string-part-1-inner-brace,
15488 bibtex-field-string-part-2-inner-braces,
15489 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
15490 bibtex-field-string-quoted, bibtex-field-string,
15491 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
15492 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
15493 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
15494 as parsing is now performed by the following functions.
15495 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
15496 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
15497 bibtex-parse-field-string, bibtex-search-forward-field-string,
15498 bibtex-parse-association, bibtex-field-name-for-parsing,
15499 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
15500 bibtex-search-forward-field, bibtex-search-backward-field,
15501 bibtex-start-of-field, bibtex-end-of-field,
15502 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
15503 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
15504 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
15505 bibtex-parse-string, bibtex-search-forward-string,
15506 bibtex-search-backward-string, bibtex-start-of-string,
15507 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
15508 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
15509 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
15510 entries. Instead of reporting the results of the parsing by
15511 match-beginning or match-end, these functions return data structures
15512 that hold the corresponding positions.
15513 (bibtex-enclosing-field): Changed to also report field boundaries by
15514 return values rather than by match-beginning or match-end. The
15515 following functions have been adapted to use the new parsing
15516 functions.
15517 (bibtex-skip-to-valid-entry, bibtex-search-reference,
15518 bibtex-enclosing-field, bibtex-format-entry,
15519 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
15520 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
15521 bibtex-print-help-message, bibtex-end-of-entry,
15522 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
15523 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
15524 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
15525 method for parsing.
15526 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
15527 bibtex-map-entries, bibtex-flash-head,
15528 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
15529 bibtex-autokey-change, bibtex-autokey-get-namefield,
15530 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
15531 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
15532 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
15533 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
15534 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
15535 order to make the new binding of case-fold-search immediately
15536 visible.
15537
155382000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15539
15540 * textmodes/bibtex.el: Copyright notice is up to date.
15541 Added constant 'bibtex-maintainer-salutation.
15542
15543 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
15544 than make-temp-name, use match-string-no-properties and eliminate
15545 a quadratic behavior when building bibtex-strings.
15546
15547 * bibtex.el (bibtex-reference-key): Accept string entries whose
15548 reference key contains upper case letters.
15549
155502000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15551
15552 * bibtex.el (bibtex-reference-head): Allow entries to start with
15553 a new line.
15554
155552000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15556
15557 * bibtex.el: Hiding of entry bodies is not longer provided by
15558 bibtex.el directly. Instead the hideshow package can be used.
15559 Added a special bibtex entry to hs-special-modes-alist.
15560 (bibtex-hs-forward-sexp): Added for hideshow.el.
15561
155622000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15563
15564 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
15565 at ':' characters by call to split-string.
15566
155672000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15568
15569 * textmodes/bibtex.el: Added RCS version identification.
15570
155712000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15572
15573 * textmodes/bibtex.el: Some temporary comments removed.
15574 (bibtex-field-name, bibtex-entry-type): Made the relationship
15575 explicit.
15576 (bibtex-field-const): Allow capital letters.
15577 (bibtex-start-of-string): Deleted because unused.
15578
15579 * textmodes/bibtex.el: Unified some nomenclature. We no longer
15580 use the term 'reference' to describe a bibtex entry as a whole.
15581 Further, reference keys are no longer called 'labels'.
15582 (bibtex-keys): Renamed to bibtex-reference-keys.
15583 (bibtex-reformat-previous-labels): Renamed to
15584 bibtex-reformat-previous-reference-keys.
15585 (bibtex-reference-type): Renamed to bibtex-entry-type.
15586 (bibtex-reference-head): Renamed to bibtex-entry-head.
15587 (bibtex-reference-maybe-empty-head): Renamed to
15588 bibtex-entry-maybe-empty-head.
15589 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
15590 (bibtex-search-reference): Renamed to bibtex-search-entry.
15591 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
15592 bibtex-enclosing-entry-maybe-empty-head.
15593 (bibtex-entry-field-alist, bibtex-entry-head,
15594 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
15595 bibtex-map-entries, bibtex-search-entry,
15596 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
15597 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
15598 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
15599 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
15600 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
15601 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
15602 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
15603
156042000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15605
15606 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
15607 comment.
15608 (bibtex-format-field-delimiters): New function, functionality
15609 extracted from bibtex-format-entry.
15610 (bibtex-autokey-get-yearfield-digits): New function, functionality
15611 extracted from bibtex-autokey-get-yearfield.
15612
15613 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
15614 entries in order to avoid stack overflow in the regexp matcher if
15615 field contents become large.
15616 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
15617 bibtex-field-string-part-not-braced,
15618 bibtex-field-string-part-no-inner-braces,
15619 bibtex-field-string-part-1-inner-brace,
15620 bibtex-field-string-part-2-inner-braces,
15621 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
15622 bibtex-field-string-quoted, bibtex-field-string,
15623 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
15624 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
15625 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
15626 as parsing is now performed by the following functions.
15627 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
15628 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
15629 bibtex-parse-field-string, bibtex-search-forward-field-string,
15630 bibtex-parse-association, bibtex-field-name-for-parsing,
15631 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
15632 bibtex-search-forward-field, bibtex-search-backward-field,
15633 bibtex-start-of-field, bibtex-end-of-field,
15634 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
15635 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
15636 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
15637 bibtex-parse-string, bibtex-search-forward-string,
15638 bibtex-search-backward-string, bibtex-start-of-string,
15639 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
15640 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
15641 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
15642 entries. Instead of reporting the results of the parsing by
15643 match-beginning or match-end, these functions return data structures
15644 that hold the corresponding positions.
15645 (bibtex-enclosing-field): Changed to also report field boundaries by
15646 return values rather than by match-beginning or match-end. The
15647 following functions have been adapted to use the new parsing
15648 functions.
15649 (bibtex-skip-to-valid-entry, bibtex-search-reference,
15650 bibtex-enclosing-field, bibtex-format-entry,
15651 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
15652 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
15653 bibtex-print-help-message, bibtex-end-of-entry,
15654 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
15655 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
15656 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
15657 method for parsing.
15658 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
15659 bibtex-map-entries, bibtex-flash-head,
15660 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
15661 bibtex-autokey-change, bibtex-autokey-get-namefield,
15662 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
15663 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
15664 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
15665 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
15666 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
15667 order to make the new binding of case-fold-search immediately
15668 visible.
15669
156702000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15671
15672 * textmodes/bibtex.el: Copyright notice is up to date.
15673 Added constant 'bibtex-maintainer-salutation.
15674
15675 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
15676 than make-temp-name, use match-string-no-properties and eliminate
15677 a quadratic behavior when building bibtex-strings.
15678
15679 * bibtex.el (bibtex-reference-key): Accept string entries whose
15680 reference key contains upper case letters.
15681
156822000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15683
15684 * bibtex.el (bibtex-reference-head): Allow entries to start with
15685 a new line.
15686
156872000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15688
15689 * bibtex.el: Hiding of entry bodies is not longer provided by
15690 bibtex.el directly. Instead the hideshow package can be used.
15691 Added a special bibtex entry to hs-special-modes-alist.
15692 (bibtex-hs-forward-sexp): Added for hideshow.el.
15693
156942000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
15695
15696 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
15697 proceedings entry type (for cross referencing). Thanks to Wagner
15698 Toledo Correa for the suggestion.
15699
15700 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
15701
157022000-02-14 Kenichi Handa <handa@etl.go.jp>
15703
15704 * international/characters.el: Setup case table for Vietnamese.
15705
157062000-02-12 Gerd Moellmann <gerd@gnu.org>
15707
15708 * uniquify.el (toplevel): Require CL at compile time.
15709 (uniquify-push): Removed.
15710
15711 * shadowfile.el (shadow-when): Removed.
15712
15713 * tempo.el (tempo-dolist, tempo-mapc): Removed.
15714 (tempo-process-and-insert-string): Use dolist instead of
15715 tempo-dolist.
15716
15717 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
15718 regexp for paragraph-start.
15719
15720 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
15721 commas as well.
15722
157232000-02-10 Dave Love <fx@gnu.org>
15724
15725 * wid-edit.el: (widgets) [defgroup]: Remove url link.
15726 (widget-color-choice-list, widget-color-history, widget-mouse-help):
15727 Deleted.
15728 (widget-specify-field, widget-specify-button): Don't use
15729 widget-mouse-help as help-echo property.
15730 (default): Use #'ignore for :validate and :mouse-down-action.
15731 (checkbox): Add help-echo.
15732 (widget-sexp-validate): Rewritten to clarify error messages.
15733 (character): Use char-valid-p in :match function.
15734 (widget-color-complete): Use facemenu-color-alist.
15735 (widget-color-action): Use facemenu-read-color.
15736
15737 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
15738 set up `caar' &c that we now have.
15739
157402000-02-09 Ray Blaak <blaak@gnu.org>
15741
15742 * delphi.el: Make resourcestring a declaration region, like const
15743 and var.
15744
157452000-02-09 Dave Love <fx@gnu.org>
15746
15747 * bindings.el (mode-line-input-method-map): New variable.
15748 (mode-line-mule-info): Use it; fix last change.
15749 (mode-line-mode-menu): Move definition.
15750 (mode-line-mouse-sensitive-p): Deleted.
15751 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
15752 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
15753 level.
15754
15755 * startup.el (command-line-1): Don't call
15756 make-mode-line-mouse-sensitive.
15757
157582000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
15759
15760 * mail/rmail.el (rmail-retry-failure): Use
15761 rmail-beginning-of-message before rmail-toggle-header, because the
15762 former toggles headers.
15763
157642000-02-06 Stefan Monnier <monnier@cs.yale.edu>
15765
15766 * diff-mode.el (diff-kill-junk): New interactive function.
15767 (diff-reverse-direction): Use delete-and-extract-region.
15768 (diff-post-command-hook): Restrict the area so that the hook also works
15769 outside of any diff hunk. This is necessary for the minor-mode.
15770 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
15771 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
15772
15773 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
15774 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
15775 so that it can be used more easily in <foo>-mode-hook. Also make sure
15776 to avoid duplicate entries.
15777 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
15778 (font-lock-remove-keywords): Just as was done for `add', allow it to
15779 work even if font-lock-mode is nil. Also make sure we don't modify
15780 any pre-existing list by forcing a copy-sequence. Finally rename
15781 `major-mode' to `mode'.
15782 (font-lock-fontify-syntactic-anchored-keywords)
15783 (font-lock-fontify-anchored-keywords)
15784 (font-lock-fontify-keywords-region): Use line-end-position.
15785 Don't make `font-lock-multiline' local (it's now done in
15786 font-lock-set-defaults).
15787 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
15788 move the `font-lock-fontified' creation to inside the `unless'.
15789
157902000-02-06 Andrew Innes <andrewi@gnu.org>
15791
15792 * term/w32-win.el (x-handle-args): Comment out call to message,
15793 which occurs before window system is initialized.
15794
15795 * makefile.nt: Add support for recompiling lisp code.
15796
157972000-02-04 Dave Love <fx@gnu.org>
15798
15799 * bindings.el (mode-line-mule-info): Fix/extend last change.
15800
15801 * completion.el: Replace completion-dolist with dolist.
15802
15803 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
15804 dotimes.
15805
158062000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
15807
15808 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
15809 environment names before they go into the section regexp.
15810
15811 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
15812 char class in regexp.
15813
15814 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
15815 `case-fold-search' to nil.
15816
15817 * progmodes/idlwave.el (idlwave-template): Respect
15818 `idlwave-abbrev-change-case'.
15819 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
15820 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
15821 idlwave-while): respect `idlwave-reserved-word-upcase'.
15822 (idlwave-rw-case): New function.
15823 (idlwave-statement-match): Fixed problem with assignment regexp.
15824 (idlwave-font-lock-keywords): Improved regexp for keyword
15825 parameters.
15826 (idlwave-surround): New argument LENGTH to support padding of
15827 operators longer than 1 char.
15828
15829 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
15830 idlwave-shell-expression-overlay. Implemented printing of
15831 expressions on higher levels of the calling stack.
15832 (idlwave-shell-display-level-in-calling-stack): Restore stack
15833 level.
15834 (idlwave-retrieve-expression-from-level): New function.
15835 (idlwave-shell-last-calling-stack): Variable removed.
15836 (idlwave-shell-reset): Argument action reversed (`visible' to
15837 `hidden'). Also remove stop-line overlay.
15838 (idlwave-shell-calling-stack-routine): New variable.
15839 (idlwave-shell-parse-stack-and-display): Messages now display
15840 negative level numbers.
15841 (idlwave-shell-mode): Set `modeline-format'.
15842 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
15843 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
15844 21.
15845 (idlwave-shell-print-expression-function): New option.
15846
15847 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
15848 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
15849 `tool-bar' instead of `toolbar'.
15850
158512000-02-02 Dave Love <fx@gnu.org>
15852
15853 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
15854 emacs-lisp-mode-hook. Don't check for defalias being defined.
15855
15856 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
15857 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
15858 the new builtins directly.
15859
15860 * whitespace.el (whitespace): Add :version to defgroup.
15861
15862 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
15863 Doc fix.
15864
15865 * thingatpt.el (sexp-at-point, symbol-at-point)
15866 (number-at-point, list-at-point): Add autoload cookie.
15867
15868 * recentf.el (recentf): Add :version to defgroup.
15869
15870 * quickurl.el (quickurl): Add :version to defgroup.
15871
15872 * elide-head.el (elide-head): Use point-marker more.
15873
15874 * bs.el (bs): Add :version to defgroup.
15875
15876 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
15877
15878 * progmodes/delphi.el (delphi): Add :version to defgroup.
15879
158802000-02-02 Gerd Moellmann <gerd@gnu.org>
15881
15882 * ange-ftp.el (ange-ftp-write-region): Handle case that
15883 succeeding process operation sets a different coding system.
15884
15885 * calculator.el: New file.
15886
158872000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
15888
15889 * frame.el (frames-on-display-list, framep-on-display): New
15890 functions.
15891 (display-mouse-p, display-popup-menus-p, display-graphic-p)
15892 (display-selections-p, display-screens, display-pixel-width)
15893 (display-pixel-height, display-mm-width, display-mm-height)
15894 (display-backing-store, display-save-under, display-planes)
15895 (display-color-cells, display-visual-class): New functions.
15896
15897 * term/tty-colors.el (tty-color-gray-shades): New function.
15898
15899 * faces.el (display-color-p): Use framep-on-display.
15900 (display-grayscale-p): New function.
15901
159022000-01-31 Dave Love <fx@gnu.org>
15903
15904 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
15905 (create-fontset-from-x-resource): Don't concat integers.
15906
159072000-01-31 Inge Frick <inge@nada.kth.se>
15908
15909 * view.el: Some changes in documentation. Removed some trailing
15910 whitespace. Changed some parameter names to agree with
15911 documentation.
15912 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
15913 window is not deleted. Modifies change 1998-04-26.
15914
159152000-01-31 Gerd Moellmann <gerd@gnu.org>
15916
15917 * windmove.el: New file.
15918
15919 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
15920 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
15921 progmodes/ebnf-yac.el: Update copyright and license info.
15922
15923 * jit-lock.el (jit-lock-function): Widen before calculating end
15924 position.
15925 (jit-lock-stealth-chunk-start): Rewritten.
15926
15927 * info.el (Info-title-face-alist): Removed.
15928 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
15929 faces.
15930 (Info-fontify-node): Use these faces.
15931
159322000-01-30 Gerd Moellmann <gerd@gnu.org>
15933
15934 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
15935 (cl-macro-list1): Recognize `&allow-other-keys' instead of
15936 `&allow-other-keywords'.
15937
15938 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
15939 the list of directories scanned heuristically.
15940
15941 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
15942 exist.
15943
159442000-01-30 Jason Rumney <jasonr@gnu.org>
15945
15946 * w32-fns.el: Define w32-tty-standard-colors.
15947
15948 * startup.el (command-line): Use w32-tty-standard-colors when in
15949 w32 console mode.
15950
159512000-01-30 Dave Love <fx@gnu.org>
15952
15953 * jka-compr.el (jka-compr-load): Fix up load-history.
15954
15955 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
15956
15957 * emacs-lisp/cl-macs.el: Revert previous change.
15958
159592000-01-29 Dave Love <fx@gnu.org>
15960
15961 * facemenu.el: Purecopy various strings.
15962
15963 * timezone.el (timezone-fix-time): Window against 69 for two-digit
15964 years. Deal with three-digit years.
15965
15966 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
15967 defconst, purecopy.
15968 (help-back-label): Purecopy it.
15969
159702000-01-18 Gerd Moellmann <gerd@gnu.org>
15971
15972 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
15973 variable. If non-nil, order the buffer list according to the
15974 currently selected frame.
15975 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
15976 non-nil, pass the selected frame to function buffer-list.
15977
159782000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
15979
15980 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
15981
159822000-01-28 Dave Love <fx@gnu.org>
15983
15984 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
15985
15986 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
15987 Don't use lisp-indent-hook property.
15988 (cl-abs): Remove.
15989
15990 * subr.el: Move out indent and edebug specs for when and unless.
15991
15992 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
15993 when, unless.
15994
15995 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
15996 unless, when.
15997
159982000-01-28 Gerd Moellmann <gerd@gnu.org>
15999
16000 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
16001 `collecting' as synonym for `collect'.
16002
16003 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
16004 for the case it contains spaces.
16005
16006 * simple.el (what-cursor-position): Change formatting of
16007 messages.
16008
16009 * frame.el (delete-other-frames): New function.
16010 (toplevel): Bind it to C-x 5 1.
16011
16012 * sort.el (sort-numeric-base): New option.
16013 (sort-numeric-fields): If number starts with `0' or `0[xX[',
16014 interpret it as octal or hexadecimal. Use sort-numeric-base
16015 as default base.
16016
16017 * progmodes/glasses.el: New file.
16018
160192000-01-27 Gerd Moellmann <gerd@gnu.org>
16020
16021 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
16022 userids differently.
16023
16024 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
16025 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
16026 progmodes/ebnf-yac.el: New files.
16027
160282000-01-26 Dave Love <fx@gnu.org>
16029
16030 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
16031 on a function with an empty body. [From Eric Ludlam.]
16032
160332000-01-25 Andre Spiegel <spiegel@gnu.org>
16034
16035 * vc.el (vc-version-diff): Make sure file name is expanded.
16036
160372000-01-25 Gerd Moellmann <gerd@gnu.org>
16038
16039 * scroll-bar.el (scroll-bar-timer): Variable removed.
16040 (scroll-bar-toolkit-scroll): Don't use a timer.
16041
160422000-01-25 Kenichi Handa <handa@etl.go.jp>
16043
16044 * language/thai-util.el (thai-composition-function): Delete
16045 superfluous `a'.
16046
160472000-01-24 Dave Love <fx@gnu.org>
16048
16049 * fortran.el (fortran-mode): Use beginning-of-defun-function,
16050 end-of-defun-function.
16051
16052 * font-lock.el (turn-on-font-lock): Don't depend on window-system
16053 &c.
16054
160552000-01-22 Jason Rumney <jasonr@gnu.org>
16056
16057 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
16058 conflicts with new face support.
16059
160602000-01-22 Richard M. Stallman <rms@gnu.org>
16061
16062 * replace.el (query-replace): Rename last arg to DELIMITED.
16063 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
16064 (query-replace-regexp): Likewise.
16065
160662000-01-20 Richard M. Stallman <rms@gnu.org>
16067
16068 * subr.el (with-syntax-table): Use make-symbol, not gensym.
16069
16070 * emacs-lisp/lisp.el (beginning-of-defun-function):
16071 Variable renamed from beginning-of-defun.
16072 Do not call make-variable-buffer-local.
16073 (beginning-of-defun-raw): Use new variable name; doc fix.
16074 (beginning-of-defun): Doc fix.
16075 (end-of-defun-function): Variable renamed from end-of-defun.
16076 Do not call make-variable-buffer-local.
16077 (end-of-defun): Use new variable name; doc fix.
16078
16079 * subr.el (dolist, dotimes): Copied from cl-macs.el
16080 and made to work.
16081
16082 * mail/undigest.el (rmail-digest-end-regexps):
16083 Variable replaces rmail-digest-end-regexp.
16084 Allows multiple regexps for detecting the end line.
16085 (undigestify-rmail-message): Corresponding changes.
16086
160872000-01-19 Dave Love <fx@gnu.org>
16088
16089 * files.el (user-init-file): Don't declare here -- is primitive.
16090
16091 * startup.el (command-line): Check for compiled user-init-file and
16092 set to uncompiled version if necessary.
16093
160942000-01-18 Gerd Moellmann <gerd@gnu.org>
16095
16096 * mail/undigest.el (rmail-digest-end-regexp): New user option.
16097 (undigestify-rmail-message): Use it.
16098
16099 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
16100
161012000-01-17 Gerd Moellmann <gerd@gnu.org>
16102
16103 * tmm.el (tmm-goto-completions): Adapt to prompt being part
16104 of mini-buffer.
16105
161062000-01-14 Gerd Moellmann <gerd@gnu.org>
16107
16108 * emacs-lisp/copyright.el (copyright-update): Removed the
16109 requirement for a trailing space from `copyright-regexp', to
16110 support copyrights with owner specified on a separate line..
16111
16112 * align.el: New file.
16113
16114 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
16115
16116 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
16117
161182000-01-13 Dave Love <fx@gnu.org>
16119
16120 * ph.el: Removed. (Obsoleted by EUDC.)
16121
161222000-01-13 Gerd Moellmann <gerd@gnu.org>
16123
16124 * net/eudc.el (toplevel): Remove autoloaded code installing
16125 menu with easymenu, because that causes build problems.
16126
16127 * frame.el (frame-notice-user-settings): New variable.
16128 (frame-notice-user-settings): Don't modify frame parameters
16129 if called a second time.
16130
161312000-01-13 Richard M. Stallman <rms@gnu.org>
16132
16133 * frame.el (frame-notice-user-settings):
16134 Notice default-frame-parameters even for non-window frames.
16135
161362000-01-13 Gerd Moellmann <gerd@gnu.org>
16137
16138 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
16139 for Emacs.
16140 (eudc-bob-can-display-inline-images): Extend for Emacs.
16141 (eudc-bob-toggle-inline-display): Ditto.
16142 (eudc-bob-display-jpeg): Ditto.
16143
161442000-01-12 Gerd Moellmann <gerd@gnu.org>
16145
16146 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
16147 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
16148 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
16149
16150 * add-log.el (add-change-log-entry): Fix error trying an `(insert
16151 nil)'.
16152
16153 * subdirs.el: Add `net' directory.
16154
16155 * net: New directory.
16156
16157 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
16158 eval-last-sexp. Don't bind debug-on-error here.
16159 (eval-last-sexp): New function. Bind debug-on-error if
16160 eval-expression-debug-on-error is non-nil.
16161 (eval-defun-2, eval-defun): Likewise.
16162
16163 * simple.el (eval-expression): Don't bind debug-on-error if
16164 eval-expression-debug-on-error is nil. Detect changed
16165 debug-on-error, and propagate new value to global binding, if
16166 eval-expression-debug-on-error is non-nil,
16167 (eval-expression-debug-on-error): Change doc string.
16168
161692000-01-11 Richard M. Stallman <rms@gnu.org>
16170
16171 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
16172
16173 * emacs-lisp/lisp-mode.el (with-syntax-table):
16174 Set up lisp-indent-function property.
16175
16176 * subr.el (with-syntax-table): Moved from simple.el.
16177
16178 * simple.el (with-syntax-table): Moved to subr.el.
16179
161802000-01-11 Gerd Moellmann <gerd@gnu.org>
16181
16182 * tmm.el (tmm-shortcut): Delete region after prompt instead
16183 of erasing buffer.
16184
16185 * textmodes/fill.el (fill-common-string-prefix): New function.
16186 (fill-context-prefix): Use the longest common prefix of first
16187 and second line fill prefix, if there is one.
16188
161892000-01-11 Richard M. Stallman <rms@gnu.org>
16190
16191 * array.el (array-mode): Don't use make-variable-buffer-local.
16192 Use make-local-variable for `truncate-lines'.
16193
161942000-01-11 Jari Aalto <jari.aalto@poboxes.com>
16195
16196 * add-log.el (add-log-current-defun): Handle user-defined
16197 add-log-current-function returning nil,
16198
16199 * add-log.el (add-change-log-entry): Insert version number
16200 if having found a current function
16201
16202 * add-log.el (add-log-current-defun): Call
16203 `add-log-current-defun-function'. Try matches at level 0 and
16204 level 1. Strip whitespace from defun found.
16205
162062000-01-10 John Wiegley <johnw@gnu.org>
16207
16208 * allout.el (isearch-done/outline-provisions): Added `edit'
16209 argument to correspond with the current definition of
16210 `isearch-done'.
16211
162122000-01-10 Dave Love <fx@gnu.org>
16213
16214 * elide-head.el (elide-head): Use point-marker, not point.
16215
162162000-01-10 Gerd Moellmann <gerd@gnu.org>
16217
16218 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
16219 before and after the year 2000.
16220
16221 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
16222 Add ispell- prefix.
16223
162242000-01-10 Ken Stevens <k.stevens@ieee.org>
16225
16226 * ispell.el: Only define dictionaries in menus when they exist.
16227 (version18p): New variable.
16228 (version20p): New variable.
16229 (xemacsp): New variable.
16230 (ispell-choices-win-default-height): Fix for XEmacs visibility.
16231 (ispell-dictionary-alist1): Added Brasileiro dictionary.
16232 (ispell-dictionary-alist6): Russian command lines no longer accept
16233 run-together words.
16234 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
16235 (ispell-dictionary-alist): Add koi8-r to customize definition.
16236 (check-ispell-version): Added documentation string. Returns
16237 library path when called non-interactively.
16238 (ispell-menu-map-needed): Uses new variables.
16239 (ispell-library-path): New variable.
16240 (ispell-decode-string): XEmacs fix for bogus variable bindings.
16241 (ispell-word): Improved documentation string. Test for valid
16242 character mappings. Correctly check typed in word changes that can
16243 result in single words split into multiple words. Returns
16244 replacement word.
16245 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
16246 replace in recursive query replace mode. Help message for
16247 recursive edit mode.
16248 (ispell-show-choices): Protect against bad framepop bindings.
16249 (ispell-help): Fix to work with XEmacs.
16250 (ispell-highlight-spelling-error): Use new variables.
16251 (ispell-overlay-window): Fix to work with XEmacs.
16252 (ispell-parse-output): Passed and returns location information
16253 tracking spelling corrections. Doesn't recheck same word on
16254 current line.
16255 (ispell-init-process): Protect against bogus XEmacs variable binding.
16256 Fix call to single argument in sleep-for. Use new variables.
16257 (ispell-region): Passed and returns location information tracking
16258 spelling corrections. Doesn't check same word on current line.
16259 Improved documentation string. Doesn't resend a line already
16260 checked to the ispell process - fixes bug in LaTeX parsing.
16261 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
16262 (ispell-skip-region): No longer skips <TT> in SGML.
16263 (ispell-process-line): Tracks location information with spelling
16264 corrections. Added documentation string. Accounts for words
16265 already accepted on this line. Don't allow query-replace on line
16266 starting with math characters. Doesn't resend a line already sent
16267 to ispell process. Fixes alignment error bug.
16268
162692000-01-10 Richard M. Stallman <rms@gnu.org>
16270
16271 * dired-x.el (dired-guess-shell-alist-default):
16272 Suggest xloadimage, which is free, not xv, which isn't.
16273
16274 * ange-ftp.el (ange-ftp-file-name-nondirectory):
16275 Don't ever include the host name or user name in the value.
16276
162772000-01-09 Gerd Moellmann <gerd@gnu.org>
16278
16279 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
16280 of a real newline.
16281
162822000-01-09 Stephen Eglen <stephen@gnu.org>
16283
16284 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
16285 for .png files.
16286
162872000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
16288
16289 * cus-edit.el (custom-hook-convert-widget): Fix comment.
16290
162912000-01-09 Gerd Moellmann <gerd@gnu.org>
16292
16293 * progmodes/cperl-mode.el: Replace ^F with ^L.
16294
16295 * sendmail.el (toplevel): Provide `sendmail' when compiling
16296 before `require'ing rmail and mailalias to prevent infinite
16297 recursion.
16298
162992000-01-08 Dave Love <fx@gnu.org>
16300
16301 * emacs-lisp/backquote.el: Remove inappropriate customization
16302 (allowing custom.el to use backquote).
16303
163042000-01-07 Dave Love <fx@gnu.org>
16305
16306 * add-log.el (add-log-debugging): Deleted.
16307 (add-change-log-entry): Treat a backup FILE-NAME as its parent
16308 file. Remove debugging code.
16309 (change-log-get-method-definition, change-log-name): Add doc.
16310 (change-log-sortable-date-at): New function.
16311 (change-log-merge): New command.
16312
16313 * time.el (display-time-string-forms): Make the Mail string active.
16314 (display-time-update): Provide help-echo for load average.
16315
16316 * bindings.el (make-mode-line-mouse2-map): New function.
16317 (mode-line-modified): Use it and simplify.
16318 (mode-line-mule-info): Provide help-echo info.
16319 (minor-mode-alist): Activate the strings.
16320 (make-mode-line-mouse-sensitive): Simplify for
16321 mode-line-buffer-identification.
16322
163232000-01-07 Gerd Moellmann <gerd@gnu.org>
16324
16325 * play/pong.el: New file.
16326
163272000-01-06 Dave Love <fx@gnu.org>
16328
16329 * array.el: Assorted cleanups for compiler warnings, doc strings,
16330 `array-' prefix for symbols.
16331
163322000-01-05 Dave Love <fx@gnu.org>
16333
16334 * textmodes/outline.el (outline-mode-menu-bar-map): Add
16335 outline-headers-as-kill.
16336 (outline-mode): Define imenu-generic-expression.
16337 (outline-headers-as-kill): New command.
16338
16339 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
16340 from paragraph-start.
16341 (paragraph-indent-minor-mode): New command.
16342
16343 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
16344 M-C-e, M-C-h, C-j, C-xnd, TAB.
16345 (fortran-mode): Set beginning-of-defun, end-of-defun.
16346 (fortran-column-ruler): Simplify.
16347 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
16348 (fortran-with-subprogram-narrowing): Likewise.
16349 (fortran-indent-subprogram): Call mark-defun.
16350 (fortran-check-for-matching-do): Change narrowing.
16351
16352 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
16353 (cl-lucid-hash-tag): Delete.
16354 (cl-hash-table-p): Correct test for native table.
16355 (cl-hash-table-count): Use hash-table-count.
16356
16357 * browse-url.el (browse-url): Fix case of
16358 browse-url-browser-function being an alist.
16359
163602000-01-05 Carsten Dominik <cd@gnu.org>
16361
16362 * textmodes/reftex-vars.el (reftex-parse-file-extension)
16363 (reftex-index-phrase-file-extension): New options.
16364
16365 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
16366 Use new option `reftex-index-phrase-file-extension'.
16367
16368 * textmodes/reftex.el (reftex-access-parse-file): Use new option
16369 `reftex-parse-file-extension'.
16370
163712000-01-05 Dave Love <fx@gnu.org>
16372
16373 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
16374 (beginning-of-defun-raw): Use it.
16375 (end-of-defun): New variable.
16376 (end-of-defun): Use it.
16377 (check-parens): New command.
16378
163792000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
16380
16381 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
16382 (hs-show-block): Don't use `mapcar' when not accumulating.
16383
16384 Fix buglet in local variables initialization.
16385
163862000-01-05 Andreas Schwab <schwab@suse.de>
16387
16388 * hscroll.el (hscroll): Doc fix.
16389
163902000-01-05 Carsten Dominik <cd@gnu.org>
16391
16392 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
16393 idlw-toolbar.
16394
16395 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
16396 file idlw-rinfo.el.
16397 (idlwave-customize): load must read file idlw-shell.el.
16398 (idlwave-create-customize-menu): load must read file idlw-shell.el.
16399
164002000-01-05 Carsten Dominik <dominik@astro.uva.nl>
16401
16402 * progmodes/idlw-shell.el: Also provide idlwave-shell
16403 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
16404 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
16405
16406 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
16407 both reftex-dcr and reftex-vcr.
16408
16409 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
16410
164112000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
16412
16413 * ps-print.el: PostScript code now is in separate files, doc fix.
16414 (ps-print-version): New version number (5.0.3).
16415 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
16416 local.
16417 (ps-spool-config): Initialization fix.
16418 (ps-print-prologue-1, ps-print-prologue-2)
16419 (ps-print-duplex-feature): PostScript code moved to separated file.
16420 (ps-background-image): Little code reformating.
16421 (ps-begin-file, ps-begin-job): Fix code.
16422 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
16423 (ps-prologue-file): New fun.
16424
164252000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
16426
16427 * ps-vars.el: Eliminated.
16428
16429 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
16430 `;;;###autoload'.
16431
16432 * ps-print.el: ps-vars eliminated, doc fix.
16433 (ps-print-version): New version number (5.0.2).
16434 (ps-spool-config): Initialization fix.
16435 (ps-print-customize): New fun.
16436
164372000-01-04 Gerd Moellmann <gerd@gnu.org>
16438
16439 * autorevert.el (auto-revert-mode): Return value of
16440 auto-revert-mode.
16441
164422000-01-04 Dave Love <fx@gnu.org>
16443
16444 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
16445 menu items.
16446
164472000-01-03 Dave Love <fx@gnu.org>
16448
16449 * elide-head.el (elide-head) [defgroup]: Add :version.
16450
16451 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
16452 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
16453 `cl-hash-table-p', not `hash-table-p'.
16454 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
16455
164562000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
16457
16458 * faces.el (face-read-integer, read-face-attribute)
16459 (color-defined-p, color-values): unspecified-{f,b}g are now
16460 strings.
16461
164622000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
16463
16464 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
16465 at comment end, and re-insert them after filling.
16466
164672000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
16468
16469 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
16470 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
16471 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
16472
164732000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
16474
16475 * term/x-win.el (xw-defined-colors): Call color-supported-p,
16476 the new name of face-color-supported-p.
16477
16478 * term/w32-win.el (xw-defined-colors): Likewise.
16479
164802000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
16481
16482 * simple.el (completion-setup-function): Count completion-size
16483 from minibuffer-prompt-end, not from point-min.
16484
164852000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
16486
16487 * faces.el (read-face-attribute, defined-colors, color-defined-p):
16488 Pass the frame to tty-color-* functions.
16489 (display-color-p, frame-set-background-mode): Pass the frame to
16490 tty-display-color-p.
16491
16492 * term/tty-colors.el (tty-defined-color-alist): Renamed from
16493 tty-color-alist.
16494 (tty-color-alist, tty-modify-color-alist): New functions.
16495 (tty-color-define, tty-color-clear, tty-color-approximate)
16496 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
16497 an optional parameter FRAME.
16498
164992000-01-01 Gerd Moellmann <gerd@gnu.org>
16500
16501 * image.el (create-image, defimage): Don't assume image data is a
16502 string.
16503
16504 * image.el (defimage): Handle specifications containing :data
16505 instead of :file.
16506 (image-type-from-data): New function.
16507 (image-type-from-file-header): Use it.
16508 (create-image): Add parameter DATA-P.
16509
16510See ChangeLog.8 for earlier changes.
16511
16512;; Local Variables:
16513;; coding: iso-2022-7bit
16514;; End: