]> code.delx.au - gnu-emacs/blob - lisp/ChangeLog
*** empty log message ***
[gnu-emacs] / lisp / ChangeLog
1 2000-06-07 Kenichi Handa <handa@etl.go.jp>
2
3 * textmodes/fill.el (fill-find-break-point): Check the validity of
4 charset.
5
6 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
7
8 * bookmark.el (bookmark-insert-location, bookmark-bmenu-list)
9 (bookmark-bmenu-show-filenames, bookmark-bmenu-hide-filenames):
10 Call display-color-p and display-mouse-p instead of looking at
11 window-system.
12
13 2000-06-06 Dave Love <fx@gnu.org>
14
15 * image.el (find-image): Doc fix. Return nil if image not found.
16 (put-image, insert-image): Make STRING arg optional.
17
18 2000-06-06 Kenichi Handa <handa@etl.go.jp>
19
20 * language/vietnamese.el: Remove eval-when-compile.
21 (viet-viscii-nonascii-translation-table): Define it as a
22 translation table made from viet-viscii-decode-table.
23 (viet-viscii-encode-table): Define it as a translation table made
24 from the reverse map of above.
25 (viet-vscii-nonascii-translation-table): Define it as a
26 translation table made from viet-vscii-decode-table.
27 (viet-vscii-encode-table): Define it as a translation table made
28 from the reverse map of above.
29 (ccl-decode-viscii): Use translate-character.
30 (ccl-encode-viscii, ccl-encode-viscii-font)
31 (ccl-decode-vscii, ccl-encode-vscii, ccl-encode-vscii-font):
32 Likewize.
33
34 * language/cyrillic.el: Remove eval-when-compile.
35 (cyrillic-koi8-r-nonascii-translation-table): Define it as a
36 translation table made from cyrillic-koi8-r-decode-table.
37 (cyrillic-koi8-r-encode-table): Define it as a translation table
38 made from the reverse map of above.
39 (ccl-decode-koi8): Use translate-character.
40 (ccl-encode-koi8, ccl-encode-koi8-font): Likewize
41 (cyrillic-alternativnyj-nonascii-translation-table): Define it as
42 a translation table made from cyrillic-alternativnyj-decode-table.
43 (cyrillic-alternativnyj-encode-table): Define it as a translation
44 table made from the reverse map of above.
45 (ccl-decode-alternativnyj): Use translate-character.
46 (ccl-encode-alternativnyj, ccl-encode-alternativnyj-font):
47 Likewize
48
49 * international/mule-diag.el (non-iso-charset-alist): Specify
50 translation table symbol instead of translation table itself.
51 (list-block-of-chars): CHARSET may be a translation table symbol.
52
53 * international/mule.el (make-coding-system): If CODING-SYSTEM
54 already exists, override it.
55
56 * international/fontset.el: Use family `proportional' for Tibetan
57 fonts.
58
59 * international/ccl.el (ccl-compile-translate-character): Don't
60 check if Rrr has property translation-table.
61 (ccl-compile-map-multiple): Modified to avoid compiler warning.
62
63 2000-06-05 Gerd Moellmann <gerd@gnu.org>
64
65 * info.el: Bind case-fold-search to t when searching in case
66 a user sets it to nil in a hook.
67
68 2000-06-05 Stefan Monnier <monnier@cs.yale.edu>
69
70 * autoarg.el (autoarg-mode, autoarg-kp-mode):
71 * hl-line.el (hl-line-mode): Use the new :global key argument.
72
73 * tar-mode.el (tar-header-block-recompute-checksum): Remove.
74 (tar-clip-time-string): Prepend a space.
75 (tar-grind-file-mode): Construct a string rather than modifying one.
76 (tar-header-block-summarize): Fix docstring.
77 Use `format' rather than an error-prone set of copy-loops.
78
79 * diff-mode.el (diff-font-lock-keywords, diff-hunk-header-re)
80 (diff-goto-source, diff-unified->context, diff-context->unified)
81 (diff-reverse-direction, diff-fixup-modifs): Fix the regexps to
82 understand the format output by the `-p' argument to diff.
83
84 * progmodes/sh-script.el (sh-symbol-list, sh-number-or-symbol-list)
85 (sh-re-done): Use defconst.
86 (sh-indent-supported-here, sh-electric-rparen-needed-here): Add defvar.
87 (sh-help-string-for-variable, sh-guess-basic-offset):
88 Don't quote lambdas.
89 (sh-electric-rparen, sh-electric-hash, sh-search-word): Docstring typo.
90 (sh-regexp-for-done, sh-kw-alist, sh-kw): Moved to before their use.
91
92 * mail/mh-comp.el (mh-send-sub): Check mh-etc is bound before using it.
93 (mh-letter-mode): Derive from text-mode.
94 This implicitly means that it now calls kill-all-local-variables.
95 Also remove the Emacs-18 compatibility code.
96
97 * emacs-lisp/autoload.el (make-autoload): Simplify docstring.
98 Make use of symbol-property doc-string-elt.
99 Use memq rather than a sequence of eq.
100 (doc-string-elt): Fix the wrong or missing previously unused values.
101 (autoload-print-form): New function extracted from
102 generate-file-autoloads to allow recursion when handling progn
103 so that defvar's and defun's docstrings are properly printed.
104 (generate-file-autoloads): Use it.
105
106 * emacs-lisp/easy-mmode.el (easy-mmode-define-global-mode): Autoload.
107 Use find-file-hooks in the minor-mode function.
108 Be careful not to loop indefinitely in the post-command-hook function.
109
110 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
111
112 * ediff-init.el (ediff-has-face-support-p): Make it paint faces on
113 tty's.
114 * ediff-diff.el (ediff-exec-process): Use --binary for fine
115 differences whenever appropriate.
116 * viper-cmd.el (viper-smart-suffix-list): Rearranged list members.
117 * viper.el (find-file, find-file-other-window): Get viper to do
118 wildcards.
119
120 2000-06-04 Stefan Monnier <monnier@cs.yale.edu>
121
122 * jit-lock.el (jit-lock-saved-fontify-buffer-function): New var.
123 (jit-lock-fontify-buffer): New function for JIT refontification.
124 (jit-lock-mode): Fix docstring.
125 Use jit-lock-fontify-buffer for font-lock-fontify-buffer-function.
126 Remove jit-lock-after-change from the _local_ hook.
127 (jit-lock-function-1): Fix docstring.
128
129 * info.el (Info-on-current-buffer): Initialize info.
130
131 * newcomment.el (comment-indent): Ignore comment-indent-hook.
132
133 * progmodes/tcl.el (tcl-indent-for-comment):
134 Ignore comment-indent-hook.
135
136 * emacs-lisp/easy-mmode.el: Require CL during compilation.
137 (easy-mmode-define-toggle): Remove (inline into define-minor-mode).
138 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
139 and improve to use the lighter to guess the capitalization.
140 (define-minor-mode): Inline code from easy-mmode-define-toggle.
141 Add keyword arguments to specify global-ness or the custom group.
142 Add local-map and help-echo properties to the lighter.
143 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
144 (easy-mmode-define-global-mode): New macro.
145
146 2000-06-02 Dave Love <fx@gnu.org>
147
148 * wid-edit.el: byte-compile-dynamic since we typically don't use
149 all the widgets. Don't require cl or widget. Remove
150 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
151 (widget-read-event): Removed. Callers changed to use read-event.
152 (widget-button-release-event-p): Renamed from
153 button-release-event-p.
154 (widget-field-add-space, widget-field-use-before-change):
155 Uncustomize.
156 (widget-specify-field): Use keymap property, not local-map.
157 (widget-specify-button): Obey :suppress-face.
158 (widget-specify-insert): Use modern backquote syntax.
159 (widget-image-directory): Renamed from widget-glyph-directory.
160 (widget-image-enable): Renamed from widget-glyph-enable.
161 (widget-image-find): Replaces widget-glyph-find.
162 (widget-button-pressed-face): Move defvar.
163 (widget-image-insert): Replaces widget-glyph-insert.
164 (widget-convert): Use keywordp.
165 (widget-leave-text, widget-children-value-delete): Use mapc.
166 (widget-keymap): Remove XEmacs stuff.
167 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
168 (widget-button-click): Don't set point at the click, but re-centre
169 if we scroll out of window. Rewritten for images v. glyphs &c.
170 (widget-tabable-at): Use POS arg, not point.
171 (widget-beginning-of-line, widget-end-of-line)
172 (widget-item-value-create, widget-sublist, widget-princ-to-string)
173 (widget-sexp-prompt-value, widget-echo-help): Simplify.
174 (widget-default-create): Use widget-image-insert; some rewriting.
175 (widget-visibility-value-create)
176 (widget-push-button-value-create, widget-toggle-value-create): Use
177 widget-image-insert.
178 (checkbox): Create on and off images dynamically.
179 (documentation-link): Change :help-echo.
180 (widget-documentation-link-echo-help): Remove.
181
182 2000-06-02 Stefan Monnier <monnier@cs.yale.edu>
183
184 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
185
186 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
187 (easy-mmode-define-toggle, define-minor-mode): Use it.
188 (easy-mmode-define-keymap): Docstring fix.
189 (define-derived-mode): Default PARENT to fundamental-mode.
190 Add the derived-mode-parent symbol-property.
191 (easy-mmode-derived-mode-p): New function.
192
193 2000-06-02 Dave Love <fx@gnu.org>
194
195 * files.el (convert-standard-filename): Doc fix.
196 (normal-backup-enable-predicate): New function.
197 (backup-enable-predicate): Use it to replace the lambda form.
198
199 * calendar/todo-mode.el: [This needs more work on the outline
200 stuff.] Doc fixes.
201 (todo) <defgroup>: Add :version.
202 (todo-add-category): Don't use pushnew.
203 (todo-cmd-raise): Fix typo.
204 (todo-top-priorities): Change temp buffer name.
205 (todo-category-alist): Avoid redundant lambda.
206 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
207 Use outline-next-heading.
208
209 * autoarg.el: Rewritten to use define-minor-mode.
210 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
211 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
212
213 2000-06-02 Kenichi Handa <handa@etl.go.jp>
214
215 * isearch.el (isearch-other-meta-char): Fix previous change.
216
217 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
218
219 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
220 (log-edit-done): Only add the comment to the ring if it's different
221 from the last comment entered.
222
223 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
224
225 2000-06-01 Dave Love <fx@gnu.org>
226
227 * hl-line.el: Rewritten using define-minor-mode.
228
229 * help.el (describe-function-1): Distinguish special form from
230 builtin function. Sanity-check presence of arglist for builtins.
231
232 2000-06-01 Kenichi Handa <handa@etl.go.jp>
233
234 * international/characters.el: Fix syntax/category setting of
235 Tibetan characters.
236
237 * language/tibet-util.el (tibetan-add-components): Fixes for new
238 encoding of Tibetan characters.
239 (tibetan-decompose-precomposition-alist): New variable.
240 (tibetan-decompose-region): Convert precomposed characters to
241 non-precomposed characters.
242 (tibetan-decompose-string): Likewise.
243 (tibetan-composition-function): Fix args to
244 thibetan-compose-string.
245
246 * language/tibetan.el (tibetan-composable-pattern): More
247 characters included.
248 (tibetan-consonant-transcription-alist): Rule for "R" added.
249 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
250 "+R" added.
251 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
252
253 * language/lao-util.el (lao-composition-function): Fix args to
254 compose-string.
255
256 * language/thai-util.el (thai-composition-function): Fix args to
257 compose-string.
258
259 * isearch.el (isearch-update): Set disable-point-adjustment to t
260 to prevent the point moving to the end of a composition when a
261 part of a composition is searched.
262 (isearch-other-meta-char): If the key invoking this command can be
263 mapped by function-key-map to a printing char, call
264 isearch-process-search-char directly.
265
266 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
267
268 * emacs-lisp/bytecomp.el:
269 * frame.el:
270 * international/mule-cmds.el:
271 * international/mule-util.el:
272 * international/mule.el:
273 * mouse.el:
274 * subr.el:
275 * faces.el: Update calls to make-obsolete with a WHEN argument.
276
277 * byte-run.el (make-obsolete, make-obsolete-variable):
278 Add an optional WHEN argument and change the format of the
279 symbol-property information.
280 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
281 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
282 new obsolete-symbol-property format and print WHEN if it is provided.
283
284 2000-05-31 Dave Love <fx@gnu.org>
285
286 * loadhist.el (loadhist-hook-functions): Remove
287 before-change-function, after-change-function.
288 (unload-feature): Deal with symbols which are both bound and
289 fbound.
290
291 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
292 before-change-function, after-change-function.
293
294 * simple.el (newline): Don't bind before-change-function,
295 after-change-function.
296
297 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
298
299 * whitespace.el (whitespace-rescan-timer-time): Update interval
300 set to 600 seconds (10 minutes) instead of 60 seconds since
301 a large number of whitespace buffers causes emacs to `freeze'
302 for a considerable amount of time.
303
304 * whitespace.el: Updated e-mail address
305
306 2000-05-31 Dave Love <fx@gnu.org>
307
308 * add-log.el (change-log-font-lock-keywords) <function>: Add
309 pattern for function of change.
310 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
311 acknowledgements patterns.
312
313 2000-05-31 Kenichi Handa <handa@etl.go.jp>
314
315 * isearch.el (isearch-printing-char): If keyboard coding system is
316 being used, call isearch-process-search-multibyte-characters.
317
318 * international/isearch-x.el: Mostly rewritten.
319
320 * international/quail.el (quail-start-conversion): Don't include
321 unhandled events in the returned events, but set them in
322 unread-command-events. Exit if all inputs are deleted.
323
324 2000-05-30 Jason Rumney <jasonr@gnu.org>
325
326 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
327
328 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
329 Reenable code to create initial fontsets.
330 Use set-fontset-font in place of put-charset-property.
331
332 2000-05-30 Gerd Moellmann <gerd@gnu.org>
333
334 * progmodes/perl-mode.el (perl-indent-line): When looking for a
335 label, ensure that the first colon isn't followed by another.
336
337 * paths.el (Info-default-directory-list): Doc fix.
338
339 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
340 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
341 send a query containing USER only, not USER@HOST.
342
343 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
344 and rmail-msgend to compute the restriction at the end, instead of
345 computing it.
346
347 2000-05-29 Gerd Moellmann <gerd@gnu.org>
348
349 * dabbrev.el (dabbrev-expand): Don't display messages in the
350 echo area if the minibuffer window is active.
351
352 * jit-lock.el (jit-lock-mode): Add after change function to
353 local hook.
354
355 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
356
357 * antlr-mode.el: New commands: hide/unhide actions,
358 upcase/downcase literals.
359 (antlr-tiny-action-length): New user option.
360 (antlr-hide-actions): New command. Suggested by
361 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
362 (antlr-mode-map): New binding [C-c C-v].
363 (antlr-mode-menu): New entries.
364 (antlr-downcase-literals): New command.
365 (antlr-upcase-literals): Ditto.
366
367 * antlr-mode.el: Minor changes: indendation, mode-name.
368 (antlr-indent-line): Indent cpp directive at column 0.
369 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
370
371 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
372 (antlr-font-lock-additional-keywords): Workaround for intentional
373 bug in XEmacs version of font-lock.
374 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
375 be used by a smarter version of `buffers-menu-grouping-function'.
376
377 2000-05-29 Gerd Moellmann <gerd@gnu.org>
378
379 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
380 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
381
382 2000-05-29 Kenichi Handa <handa@etl.go.jp>
383
384 * international/encoded-kb.el
385 (encoded-kbd-iso2022-designation-map): Pay attention to that
386 charset-iso-final-char return -1 for eight-bit-control and
387 eight-bit-graphic.
388
389 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
390
391 * speedbar.el (speedbar-use-images, speedbar-update-flag)
392 (speedbar-easymenu-definition-base): Use display-graphic-p where
393 available, instead of window-system.
394
395 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
396
397 * international/codepage.el (cp-coding-system-for-codepage-1): Add
398 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
399 coding systems.
400
401 2000-05-26 Dave Love <fx@gnu.org>
402
403 * disp-table.el (standard-display-underline): Don't use
404 internal-find-face.
405
406 * mail/reporter.el: Maintainer change. Doc fixes.
407 (reporter-version): Deleted.
408
409 * emacs-lisp/elp.el: Maintainer change.
410 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
411
412 2000-05-26 Stefan Monnier <monnier@cs.yale.edu>
413
414 * add-log.el (add-change-log-entry): Merge the current entry with the
415 previous one if the previous one is empty.
416
417 2000-05-26 Dave Love <fx@gnu.org>
418
419 * loadhist.el (unload-feature): Fix interactive spec [from
420 lijnzaad@ebi.ac.uk].
421
422 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
423 subr-arity to check primitives.
424 (byte-compile-flush-pending, byte-compile-file-form-progn)
425 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
426 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
427 mapcar.
428
429 2000-05-26 Kenichi Handa <handa@etl.go.jp>
430
431 * international/fontset.el: Set family names of non-latin charsets
432 in default fontset to "*".
433
434 * international/mule-diag.el (print-fontset): Combine family part
435 and registry part of the fontname by "-*-" instead of "-".
436
437 * international/mule-cmds.el (encode-coding-char): Make strings
438 multibyte before calling encode-coding-string.
439
440 2000-05-25 Stefan Monnier <monnier@cs.yale.edu>
441
442 * derived.el: Fix keywords.
443 (define-derived-mode): Only define if needed.
444
445 * simple.el (fill-comment, comment-column, comment-start)
446 (comment-start-skip, comment-end, comment-indent-function)
447 (block-comment-start, block-comment-end, indent-for-comment)
448 (set-comment-column, kill-comment, comment-padding, comment-region)
449 (comment-multi-line, indent-new-comment-line): Remove.
450
451 * bindings.el (esc-map): Change ; to comment-dwim and use the new
452 function names for comment operations.
453
454 * newcomment.el: Add abundant autoload cookies.
455 (comment-style): Don't depend on runtime data at compile-time.
456 (comment-indent-hook): Remove.
457 (comment-indent): Check if comment-indent-hook is bound.
458 (comment-region): Docstring fix.
459
460 2000-05-25 Dave Love <fx@gnu.org>
461
462 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
463 byte-code-function-p.
464
465 * mail/rmailsum.el: Add provide.
466
467 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
468
469 * smerge-mode.el (smerge-diff-switches): Don't use list* in
470 defcustom.
471
472 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
473
474 * ediff-diff.el (ediff-exec-process): delete --binary option from
475 non-buffer ediff jobs.
476
477 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
478
479 * hilit-chg.el (highlight-changes-mode): Ask about color or
480 grayscale support, not about window-system.
481
482 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
483 window-system.
484 (ffap-highlight): Always default to t.
485
486 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
487 display-popup-menus-p instead of looking at window-system.
488
489 * disp-table.el (standard-display-g1, standard-display-graphic):
490 Only refuse to use string glyphs on X and MS-Windows.
491
492 * avoid.el: Remove window-system from commentary, suggest to use
493 display-*-p instead.
494
495 * apropos.el (apropos-print): Use display-mouse-p instead of
496 window-system.
497
498 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
499
500 * international/codepage.el (cp-decoding-vector-for-codepage):
501 Fill up unsupported characters with their own codes. From Kenichi
502 Handa.
503
504 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
505
506 * international/mule-diag.el (describe-char-after): Use
507 display-graphic-p instead of window-system, so that this function
508 works on MS-DOS.
509
510 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
511
512 * international/codepage.el (cp-make-coding-systems-for-codepage):
513 Remove the eight-bit-graphic and eight-bit-control charsets from
514 the list of charsets which we convert into `?'.
515
516 2000-05-25 Kenichi Handa <handa@etl.go.jp>
517
518 * international/mule-conf.el: Specify CHARSET-ID explicitely for
519 private charsets.
520 (mule-unicode-0100-24ff, japanese-jisx0213-1,
521 japanese-jisx0213-2): New charsets.
522
523 * international/fontset.el: Setup default fontset for new charsets.
524
525 2000-05-24 Dave Love <fx@gnu.org>
526
527 * info.el (Info-find-node-2): Restructure [following "Vadim
528 S. Solomin" <sovs@uic.nnov.ru>].
529
530 * icomplete.el: Fix header for Finder.
531
532 2000-05-24 Eric M. Ludlam <zappo@ultranet.com>
533
534 * rmailout.el (rmail-output-to-rmail-file): Added optional param
535 STAY.
536
537 * rmail.el (rmail-automatic-folder-directives): New user variable.
538 (rmail-show-message): Add call to `rmail-auto-file' during
539 display.
540 (rmail-auto-file): New function.
541
542 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
543
544 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
545 account.
546 (ediff-test-utility,ediff-diff-mandatory-option)
547 (ediff-reset-diff-options): Utilities for proper initialization of
548 ediff-diff-options and ediff-diff3-options on Windows.
549
550 * ediff-init.el (ediff-merge-filename-prefix): New customizable
551 variable.
552
553 * ediff-mult.el (ediff-filegroup-action): Use
554 ediff-merge-filename-prefix.
555
556 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
557
558 * viper-ex.el (ex-write): Set selective display to nil.
559
560 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
561
562 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
563 aliases for hebrew-iso-8bit.
564
565 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
566
567 * woman.el: New version from Francis J. Wright
568 <F.J.Wright@Maths.QMW.ac.uk>.
569 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
570 names in environment variables regardless of the path separator.
571 (woman-topic-all-completions-1): Don't call file-name-directory-p
572 on all files, since woman-file-regexp already filters out any
573 directories.
574
575 2000-05-24 Kenichi Handa <handa@etl.go.jp>
576
577 * international/quail.el (quail-start-translation): Don't change
578 modified-p of the current buffer.
579 (quail-start-conversion): Likewise.
580
581 * international/kkc.el (kkc-region): Don't change modified-p of
582 the current buffer.
583
584 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
585 conform to RFC1468.
586 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
587
588 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
589
590 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
591 (speedbar-insert-button): Invisible text property fix.
592 (speedbar-directory-plus): Renamed from speedbar-directory-+
593 (speedbar-directory-minus): Renamed from speedbar-directory--
594 (speedbar-page-plus): Renamed from speedbar-file-+
595 (speedbar-page-minus): Renamed from speedbar-file--
596 (speedbar-page): Renamed from speedbar-file-
597 (speedbar-tag): Renamed from speedbar-tag-
598 (speedbar-tag-plus): Renamed from speedbar-tag-+
599 (speedbar-tag-minus): Renamed from speedbar-tag--
600 (speedbar-expand-image-button-alist): Use above renames.
601
602 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
603 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
604 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
605 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
606 * sb-pg.xpm: Renamed from sb-file.xpm
607 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
608 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
609
610 2000-05-24 Kenichi Handa <handa@etl.go.jp>
611
612 * international/quail.el (quail-show-guidance-buf): Set
613 current-input-method of the guidance buffer to the name of the
614 curren input method.
615
616 2000-05-23 Stefan Monnier <monnier@cs.yale.edu>
617
618 * progmodes/compile.el (compile-internal): Style typo.
619
620 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
621 quote vars and functions in the docstring.
622
623 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
624
625 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
626 Don't quote lambdas.
627
628 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
629
630 2000-05-23 Gerd Moellmann <gerd@gnu.org>
631
632 * startup.el (command-line): Determine source file of compiled
633 user init file differently. Warn if compiled user init file
634 is older than its source file.
635
636 * ffap.el (ffap-url-regexp): Add `https'.
637
638 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
639
640 * files.el (make-backup-file-name-1): Replace slashes with `!'
641 rather than `|' (which is not allowed on Windows). Replace the
642 drive letters with a string "drive_X".
643
644 2000-05-23 Gerd Moellmann <gerd@gnu.org>
645
646 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
647
648 * files.el (interpreter-mode-alist): Add `bash2'.
649
650 2000-05-22 Dave Love <fx@gnu.org>
651
652 * loadhist.el (feature-symbols, file-provides, file-requires): Use
653 mapc.
654 (feature-file): Avoid calling symbol-name. Doc fix.
655 (file-set-intersect, file-dependents): Use dolist, not mapcar.
656 (loadhist-hook-functions): Add mouse-position-function.
657 (unload-feature): Change uses of mapcar.
658
659 * files.el (parse-colon-path): Doc fix.
660 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
661 (set-auto-mode): Use mapc.
662
663 * complete.el (PC-look-for-include-file): Use :alnum: character
664 class.
665 (partial-completion-mode): Add autoload cookie.
666
667 2000-05-22 Sam Steingold <sds@gnu.org>
668
669 * info.el (Info-fontify-node): Fixed the call to
670 `add-text-properties' (bug introduced on 2000-05-18).
671
672 2000-05-22 Dave Love <fx@gnu.org>
673
674 * bindings.el: Remove debug-ignored-errors set in other files.
675
676 * progmodes/etags.el: Add to debug-ignored-errors.
677 (visit-tags-table-buffer): Clear out buffers holding old tables
678 when making a new list.
679 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
680 mapc.
681
682 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
683 quote keywords.
684 (cmpl-string-case-type): Use character classes.
685
686 * comint.el:
687 * textmodes/ispell.el:
688 * imenu.el:
689 * mail/mh-e.el:
690 * progmodes/compile.el: Add to debug-ignored-errors.
691
692 * dabbrev.el: Add to debug-ignored-errors.
693 (dabbrev-completion): Use mapc.
694
695 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
696
697 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
698 (woman-mapcan, woman-parse-man.conf)
699 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
700 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
701 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
702 path syntax better.
703 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
704 (woman-manpath): Call woman-parse-man.conf.
705 (woman-emulation): New defcustom, defaults to nroff.
706 (woman-font-support): New defconst.
707 (woman-use-symbol-font): New defcustom.
708 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
709 "Emulation".
710 Many functions: Doc fix.
711
712 2000-05-22 Kenichi Handa <handa@etl.go.jp>
713
714 * international/quail.el (quail-simple-translation-keymap): Map
715 128..255 to quail-self-insert-command.
716 (quail-keyboard-layout-alist): Add definition for "pc102-de".
717
718 2000-05-22 Stefan Monnier <monnier@cs.yale.edu>
719
720 * help.el (help-manyarg-func-alist): Typo.
721
722 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
723 intervals which makes it heaps simpler.
724
725 * newcomment.el (comment-region-internal): Go back to BEG after quoting
726 the nested comment markers.
727
728 * subr.el (remove-hook): Don't turn the hook's value into a list.
729
730 2000-05-21 Dave Love <fx@gnu.org>
731
732 * edmacro.el (edmacro-parse-keys): Return vector if any elements
733 are invalid characters.
734
735 * international/mule-util.el (detect-coding-with-priority): Use
736 mapc. Remove redundant lambda.
737
738 * international/mule-diag.el (list-non-iso-charset-chars)
739 (describe-fontset): Remove redundant lambda.
740
741 * emulation/crisp.el (brief-mode): New alias.
742
743 * emacs-lisp/ring.el (ring-elements): New function.
744
745 * emacs-lisp/easymenu.el (easy-menu-create-menu)
746 (easy-menu-do-add-item): Use keywordp.
747
748 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
749
750 * replace.el: Doc and error message fixes.
751 (replace-highlight): Use facep, not internal-find-face.
752
753 2000-05-20 Stefan Monnier <monnier@cs.yale.edu>
754
755 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
756
757 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
758 (log-edit-insert-changelog): Drop `:' as well.
759
760 * log-view.el: Fix file description.
761 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
762 available.
763 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
764 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
765
766 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
767 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
768 Print a status message if the toggle is called interactively.
769 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
770 for global minor modes and use `defcustom' for them.
771 Use add-minor-mode.
772 (easy-mmode-define-derived-mode): Remove.
773 (define-derived-mode): Fancier default docstring.
774 (easy-mmode-define-navigation): Signal an error rather than (ding).
775
776 * newcomment.el (comment-styles): New `box-multi'.
777 (comment-normalize-vars): Better default for comment-continue to
778 avoid whitespace-only continuations.
779 (comment-search-forward): Always move even in the no-syntax case.
780 (comment-padright): Only obey N if it's only obeyed for padleft.
781 (comment-make-extra-lines): Better handling of empty continuations.
782 Use `=' for the filler if comment-start has only one character.
783 (uncomment-region): Try handling the special `=' filler.
784 (comment-region): Allow LINES even if MULTI is nil.
785 (comment-box): Choose box style based on comment-style.
786
787 2000-05-20 Kenichi Handa <handa@etl.go.jp>
788
789 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
790 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
791
792 2000-05-20 Kenichi HANDA <handa@etl.go.jp>
793
794 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
795 and insert, not subst-char-in-region.
796
797 * international/mule-diag.el (list-character-sets-1): Handle
798 charsets eight-bit-control and eight-bit-graphic.
799 (list-iso-charset-chars): Likewise.
800 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
801 charactes as is. Use indent-to to align characters.
802
803 * international/mule-cmds.el (find-multibyte-characters): Never
804 exclude charsets eight-bit-control and eight-bit-graphic.
805
806 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
807
808 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
809 Don't quote lambdas.
810
811 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
812
813 2000-05-19 Gerd Moellmann <gerd@gnu.org>
814
815 * gud.el (gud-jdb-directories): Doc fix.
816
817 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
818
819 * newcomment.el: New file.
820
821 2000-05-19 Gerd Moellmann <gerd@gnu.org>
822
823 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
824
825 2000-05-18 Andreas Schwab <schwab@suse.de>
826
827 * dired.el (dired-between-files): Also skip lines beginning with
828 `used'.
829
830 2000-05-18 Gerd Moellmann <gerd@gnu.org>
831
832 * msb.el (msb-menu-cond): Add choice `user'.
833
834 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
835
836 * ps-print.el: Compatibility, customization and doc fix.
837 (ps-printer-name-option): Replace defconst by defvar.
838 (ps-postscript-code-directory): XEmacs compatibility.
839 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
840 fix.
841 (ps-user-defined-prologue, ps-print-prologue-header)
842 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
843 compatibility and code fix.
844 (ps-print-background-image, ps-print-background-text):
845 Customization fix.
846 (ps-line-number-start, ps-n-up-on): New vars.
847
848 2000-05-18 Espen Skoglund <esk@ira.uka.de>
849
850 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
851 the indent-comment function to just return the appropriate indent.
852
853 2000-05-18 Eric M. Ludlam <zappo@ultranet.com>
854
855 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
856 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
857 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
858
859 2000-05-18 Dave Love <fx@gnu.org>
860
861 * info.el (Info-fontify-node): Add intangible property as well as
862 invisible.
863
864 * calendar/appt.el (appt-make-list): Match all lines of entry.
865 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
866
867 2000-05-18 Kenichi Handa <handa@etl.go.jp>
868
869 * international/mule-diag.el (describe-char-after): Call
870 internal-char-font, not char-font. If internal-char-font returns
871 nil, display "-- none --".
872
873 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
874
875 * image.el (image-type-available-p): Don't reference image-types
876 if it isn't bound.
877
878 2000-05-17 Stefan Monnier <monnier@cs.yale.edu>
879
880 * autoarg.el (autoarg-mode): Typo in the :set argument.
881
882 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
883
884 * startup.el (command-line-1): Don't signal an error if the
885 directory for auto-save-list files does not yet exist.
886
887 2000-05-17 Kenichi Handa <handa@etl.go.jp>
888
889 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
890
891 2000-05-16 Stefan Monnier <monnier@cs.yale.edu>
892
893 * subr.el (remove-hook): `setq' hook-value, not `set'.
894
895 2000-05-16 Sam Steingold <sds@gnu.org>
896
897 * info.el (debug-ignored-errors): More errors to ignore.
898
899 2000-05-16 Dave Love <fx@gnu.org>
900
901 * cus-edit.el: Don't require cl or easymenu.
902 (custom-variable-prompt): Test standard-value property, not
903 user-variable-p.
904
905 2000-05-16 Sam Steingold <sds@gnu.org>
906
907 * subr.el (add-hook): `setq' hook-value, not `set'.
908
909 2000-05-16 Gerd Moellmann <gerd@gnu.org>
910
911 * startup.el (command-line-1): Mention the FAQ in the startup
912 message.
913
914 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
915
916 * progmodes/compile.el (compilation-parse-errors): Collect
917 `nomessage' regexps last.
918
919 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
920
921 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
922 to the function name.
923
924 2000-05-15 Dave Love <fx@gnu.org>
925
926 * speedbar.el (speedbar-recenter): Typo.
927 (speedbar-expand-line): Make arg optional.
928 (speedbar-mode): Avoid a compiler warning.
929
930 2000-05-15 Gerd Moellmann <gerd@gnu.org>
931
932 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
933 user-specified option string is empty.
934
935 * mouse.el (mouse-yank-at-click): Doc fix.
936
937 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
938
939 * term/internal.el (IT-character-translations): More updates of
940 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
941 documents.
942
943 2000-05-15 Gerd Moellmann <gerd@gnu.org>
944
945 * env.el (getenv): New function, interactively callable.
946 (setenv, getenv): Remove autoload cookies.
947
948 * loadup.el: Load `env'.
949
950 * progmodes/f90.el: Change author's mail address.
951
952 2000-05-14 Dave Love <fx@gnu.org>
953
954 * mail/rmail.el (rmail-show-message-hook): Customize and offer
955 goto-addr as an option.
956
957 * help.el (help-xref-stack): Doc fix.
958 (help-xref-following): New variable.
959 (help-make-xrefs): Use it.
960 (help-xref-go-back): Use position information from stack element.
961 (help-follow): Make position in stack element a pair. Use
962 help-xref-following.
963
964 * autoarg.el: New file.
965
966 * faces.el: Declare more functions obsolete.
967
968 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
969 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
970 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
971 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
972 Remove all the setup-...-environment functions.
973
974 2000-05-13 Eric M. Ludlam <zappo@ultranet.com>
975
976 * speedbar.el: Updated the commentary section. xemacs20p now uses
977 >= when detecting. Require `defimage' safely.
978 (speedbar-easymenu-definition-base): Add toggle for images.
979 (speedbar-easymenu-definition-special): Add flush cache & expand.
980 (speedbar-visiting-tag-hook): Set new defaults. Added options.
981 (speedbar-reconfigure-keymaps-hook): New variable.
982 (speedbar-frame-parameters): Updated documentation.
983 (speedbar-use-imenu-flag): Updated custom tag
984 (speedbar-dynamic-tags-function-list): New variable.
985 (speedbar-tag-hierarchy-method): Updated doc & custom.
986 (speedbar-indentation-width, speedbar-indentation-width) New
987 variables.
988 (speedbar-hide-button-brackets-flag): Customizable.
989 (speedbar-vc-indicator): Doc update.
990 (speedbar-ignored-path-expressions): Updated default value.
991 (speedbar-supported-extension-expressions): Updated default value.
992 (speedbar-syntax-table): Remove {} paren status.
993 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
994 as "+". Added overlay aliases.
995 (speedbar-mode): Use `speedbar-mode-line-update' instead of
996 `force-mode-line-update'.
997 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
998 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
999 `mouse-set-point'
1000 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
1001 (speedbar-item-info-tag-helper): Revamped to handle a wider range
1002 of arbitrary text, and new helper functions.
1003 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
1004 filename finder.
1005 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
1006 (speedbar-directory-buttons): Update path search/expansion.
1007 (speedbar-make-tag-line): Pay attention to
1008 `speedbar-indentation-width'. Use more care w/ invisible
1009 properties.
1010 (speedbar-change-expand-button-char): Call
1011 `speedbar-insert-image-button-maybe'.
1012 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
1013 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
1014 (speedbar-trim-words-tag-hierarchy)
1015 (speedbar-simple-group-tag-hierarchy): New functions
1016 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
1017 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
1018 functions.
1019 (speedbar-mouse-set-point): New function
1020 (speedbar-power-click): Updated documentation.
1021 (speedbar-line-token, speedbar-goto-this-file): Handle more types
1022 of tag prefix text.
1023 (speedbar-expand-line, speedbar-contract-line): Make more robust
1024 to strange text.
1025 (speedbar-expand-line): Takes universal argument to flush the
1026 cache.
1027 (speedbar-flush-expand-line): New function.
1028 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
1029 Use new generator insertion method.
1030 (speedbar-fetch-dynamic-tags): New function.
1031 (speedbar-fetch-dynamic-imenu): Removed code now handled in
1032 `speedbar-fetch-dynamic-imenu'.
1033 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
1034 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
1035 "Revert Buffer" menu items.
1036 (speedbar-buffer-buttons-engine): Be smarter when creating a
1037 filename tag (for expansion purposes.).
1038 (speedbar-highlight-one-tag-line,
1039 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
1040 (speedbar-recenter): New functions.
1041 (defimage-speedbar): Image loading abstraction.
1042 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
1043 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
1044 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
1045 (speedbar-tag-type, speedbar-tag-mail): New images.
1046 (speedbar-expand-image-button-alist): New variable.
1047 (speedbar-insert-image-button-maybe): Insert an image over some
1048 buttons.
1049
1050 2000-05-13 Kenichi Handa <handa@etl.go.jp>
1051
1052 * international/mule-cmds.el (encode-coding-char): An ASCII
1053 character is always encodable.
1054
1055 * international/mule-conf.el: Add more information in descriptions
1056 of character sets.
1057
1058 * international/mule-diag.el (describe-char-after): New function.
1059 (describe-font-internal): Adjusted for the change of font-info.
1060 (describe-font): Likewise.
1061 (print-fontset): Rewritten for the new fontset implementation.
1062 (describe-fontset): Include fontset alias names in completion.
1063 (list-fontsets): Adjusted for the change of print-fontset.
1064
1065 * simple.el (what-cursor-position): If DETAIL is non-nil, call
1066 describe-char-after instead of displaying the detail in the echo
1067 area.
1068 (syntax-code-table): Format changed.
1069 (string-to-syntax): Adjusted for the above change.
1070
1071 2000-05-12 Stefan Monnier <monnier@cs.yale.edu>
1072
1073 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
1074
1075 2000-05-12 Dave Love <fx@gnu.org>
1076
1077 * calendar/todo-mode.el: Remove some compatibility stuff and CL
1078 dependence. Use line-{beginning,end}-position, not
1079 point-at{b,e}ol. Some doc fixes.
1080 (todo-position): New function. Fix callers of position to use it.
1081 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
1082
1083 2000-05-12 Gerd Moellmann <gerd@gnu.org>
1084
1085 * time.el (display-time-mail-icon): Use `:ascent center'.
1086
1087 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
1088 handling FTP security extensions.
1089
1090 2000-05-11 Dave Love <fx@gnu.org>
1091
1092 * calendar/todo-mode.el: New file.
1093
1094 2000-05-11 Gerd Moellmann <gerd@gnu.org>
1095
1096 * comint.el (comint-read-input-ring): Move reference to
1097 comint-input-ring-size outside of the save-excursion. It was
1098 causing the default value to be the only one ever seen.
1099
1100 * font-lock.el: Update copyright. Remove Simon Marshall's email
1101 address on request from him.
1102
1103 * subr.el (substitute-key-definition): Add comment describing
1104 the meaning of PREFIX.
1105
1106 2000-05-10 Stefan Monnier <monnier@cs.yale.edu>
1107
1108 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
1109
1110 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
1111 (add-minor-mode): Don't make the variable buffer-local and add a
1112 reference to define-minor-mode in the docstring.
1113
1114 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
1115 HEADER/FOOTER and fix bug with trailing empty directory.
1116 (cvs-append-to-ignore): Use vc-editable-p if available.
1117 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
1118 (vc-do-command): Tweak advice to handle the new VC.
1119
1120 * log-view.el (log-view-goto-rev): New function for the new VC.
1121 (log-view-minor-wrap): Use mark-active.
1122
1123 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
1124 (log-edit-changelog-full-paragraphs): New var.
1125 (log-edit-insert-changelog): Remove a lonely leading `* file'.
1126 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
1127 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
1128 (log-edit-changelog-ours-p, log-edit-changelog-entries)
1129 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
1130 Replace the `cvs' prefix with `log-edit'.
1131
1132 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
1133
1134 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
1135 (diff-font-lock-defaults): Explicitly turn off multiline.
1136 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
1137 (diff-ediff-patch): Fix call to ediff-patch-file.
1138 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
1139 Handle comments.
1140
1141 * frame.el (automatic-hscrolling): Typo.
1142
1143 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
1144
1145 2000-05-09 Sam Steingold <sds@goems.com>
1146
1147 * apropos.el (apropos-print): use `describe-face' instead of
1148 `customize-face-other-window'.
1149
1150 2000-05-09 Dave Love <fx@gnu.org>
1151
1152 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
1153
1154 * help.el (describe-variable): Have customize button pop the
1155 help-xref stack when invoked.
1156 (help-xref-symbol-regexp): Add `face'.
1157 (help-make-xrefs): Check for quoted face names and adapt regexp
1158 submatch numbers to cope.
1159 (help-xref-interned): Maybe insert face doc too. Separate
1160 sections with a line of hyphens.
1161
1162 * faces.el: Some doc fixes. Declare some functions obsolete.
1163 (describe-face): Add customize button. Return the help
1164 text. Fix prompt.
1165
1166 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
1167
1168 * term/internal.el (IT-character-translations): Fix last change.
1169
1170 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
1171
1172 * woman.el: New file
1173 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
1174
1175 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
1176
1177 * term/internal.el (IT-character-translations): Update ASCII
1178 simulations for greek-iso8859-7, add latin-iso8859-14 and
1179 latin-iso8859-15.
1180
1181 * international/mule-cmds.el (set-language-info-alist): Call
1182 define-prefix-command with 3 arguments, to make the map suitable
1183 for a menu.
1184
1185 2000-05-07 Dave Love <fx@gnu.org>
1186
1187 * time.el: Small doc fixes from Pavel Janík ml..
1188
1189 2000-05-05 Dave Love <fx@gnu.org>
1190
1191 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
1192 list in doc string. Don't quote keyword symbols.
1193 * emacs-lisp/cl.el: Likewise
1194 * emacs-lisp/cl-seq.el: Likewise
1195
1196 2000-05-05 Gerd Moellmann <gerd@gnu.org>
1197
1198 * abbrev.el (abbrev-mode): Make ARG optional.
1199
1200 2000-05-04 Gerd Moellmann <gerd@gnu.org>
1201
1202 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
1203
1204 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
1205
1206 * subr.el (substitute-key-definition): Clarify documentation.
1207
1208 2000-05-04 Milan Zamazal <pdm@freesoft.cz>
1209
1210 * glasses.el (glasses-convert-to-unreadable): Use
1211 `glasses-separator' instead of the hard-wired "_".
1212 (glasses-mode): Call `glasses-make-unreadable' only in a single
1213 place.
1214
1215 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
1216
1217 * term/internal.el (cjk-codepages-alist): Add associations for
1218 Chinese and Korean codepages. Remove FIXME comment.
1219
1220 2000-05-03 Dave Love <fx@gnu.org>
1221
1222 * time.el (display-time-mail-face, display-time-use-mail-icon):
1223 New option.
1224 (display-time-mail-icon): New variable.
1225 (display-time-string-forms): Use the above. Fix the local-map.
1226
1227 2000-05-03 Gerd Moellmann <gerd@gnu.org>
1228
1229 * replace.el (query-replace-map): Add binding for `E'.
1230 (query-replace-help): Extend help text.
1231 (perform-replace): Allow editing the replacement string.
1232
1233 * make-mode.el (makefile-mode-abbrev-table): New variable.
1234 (makefile-mode): Set local abbrev table to
1235 makefile-mode-abbrev-table.
1236 (makefile-font-lock-keywords): Fontify includes and conditionals.
1237
1238 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
1239 set TOGGLE's value.
1240
1241 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
1242 mail-interactive-insert-alias.
1243 (mail-abbrev-complete-alias): New command.
1244 (mail-mode-map): Bind it to `M-TAB'.
1245
1246 2000-05-03 Kenichi Handa <handa@etl.go.jp>
1247
1248 * language/lao-util.el (lao-compose-region): New function.
1249
1250 2000-05-02 Gerd Moellmann <gerd@gnu.org>
1251
1252 * files.el (recover-session): Make directories as necessary
1253 if they don't exist yet.
1254
1255 * calendar/cal-french.el
1256 (french-calendar-multibyte-special-days-array)
1257 (french-calendar-special-days-array): Change French text.
1258 (calendar-french-date-string): Change output.
1259 (calendar-goto-french-date): Likewise.
1260
1261 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
1262
1263 * wid-edit.el (widget-default-active): Obey `:always-active'.
1264 (widget-documentation-string-value-create): Set `:always-active'.
1265
1266 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
1267
1268 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
1269 default prefix to `~/_emacs.d/auto-save.list/_s'.
1270 (normal-top-level): Create the directory for auto-save files, if
1271 it doesn't already exist (in the ms-dos case only).
1272
1273 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
1274
1275 * international/mule-cmds.el (set-language-environment): Don't
1276 concat an integer (dos-codepage), use format instead.
1277
1278 2000-05-02 Dave Love <fx@gnu.org>
1279
1280 * help.el (help-xref-on-pp): Check for constant symbols.
1281
1282 2000-04-29 Gerd Moellmann <gerd@gnu.org>
1283
1284 * startup.el (normal-top-level): Put a condition-case around
1285 the code loading subdirs.el.
1286
1287 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1288
1289 * ps-print.el: Upside-down and face background color printing,
1290 line number step, doc fix.
1291 (ps-print-version): New version number (5.2).
1292 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
1293 (ps-face-attribute-list, ps-plot-with-face): Code fix.
1294 (ps-spool-config): Var fix.
1295 (ps-printer-name-option): Const fix.
1296 (ps-print-upside-down, ps-use-face-background)
1297 (ps-line-number-step): New vars.
1298 (ps-window-system, ps-lp-system): New consts.
1299 (ps-face-background): New fun.
1300
1301 2000-04-28 Richard Stallman <rms@gnu.org>
1302
1303 * files.el (make-auto-save-file-name):
1304 Apply auto-save-file-name-transforms to visited file name
1305 before generating auto save file name.
1306 (auto-save-file-name-transforms): New variable.
1307
1308 * files.el (backup-enable-predicate):
1309 Correctly test for a file under a temporary directory.
1310
1311 2000-04-28 Gerd Moellmann <gerd@gnu.org>
1312
1313 * subr.el (add-minor-mode): Rewritten.
1314
1315 2000-04-28 Kenichi Handa <handa@etl.go.jp>
1316
1317 * mail/sendmail.el (sendmail-send-it): Set
1318 buffer-file-coding-system to the selected coding system for MIME
1319 header.
1320
1321 2000-04-27 Gerd Moellmann <gerd@gnu.org>
1322
1323 * dired.el (dired-move-to-filename-regexp): Allow format where
1324 YYYY is followed by two spaces.
1325
1326 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
1327 in the second character class of the regexp.
1328
1329 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
1330 mh-etc, too.
1331
1332 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
1333 nil.
1334
1335 * subr.el (add-minor-mode): Use `set' instead of `setq'.
1336
1337 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
1338 argument.
1339
1340 2000-04-27 Sen Nagata <sen@eccosys.com>
1341
1342 * emacs-lisp/crm.el (crm-completion-table): New variable.
1343 (crm-collection-fn, crm-test-completion)
1344 (completing-read-multiple): Use it.
1345
1346 2000-04-27 Dave Love <fx@gnu.org>
1347
1348 * help.el (locate-library): Use mapc.
1349 (help-manyarg-func-alist): Add call-process-region.
1350
1351 2000-04-26 Gerd Moellmann <gerd@gnu.org>
1352
1353 * subr.el (add-minor-mode): Make argument MAP optional.
1354
1355 * desktop.el (desktop-save): Save list of minor modes.
1356 (desktop-create-buffer): Restore minor modes.
1357 (desktop-minor-mode-table): New user-option.
1358
1359 * subr.el (add-minor-mode): New function.
1360
1361 * image.el (find-image): New function.
1362 (defimage): Rewritten to find image at load time.
1363
1364 * startup.el (normal-top-level-add-to-load-path): Handle
1365 case that the default directory is not in load-path.
1366
1367 * help.el: Old patch from Stefan Monnier.
1368 (help-xref-on-pp): New function.
1369 (describe-variable): Use it to display xrefs in a symbol's value.
1370
1371 2000-04-26 Stefan Monnier <monnier@cs.yale.edu>
1372
1373 * cus-edit.el (custom-face): Fix parenthesis.
1374
1375 2000-04-26 Kenichi Handa <handa@etl.go.jp>
1376
1377 * mail/rmail.el (rmail-expunge): When there are no deleted
1378 messages, do nothing.
1379
1380 2000-04-26 Dave Love <fx@gnu.org>
1381
1382 * international/mule-cmds.el (locale-translation-file-name):
1383 Defvar to nil.
1384 (set-locale-environment): Set it here (at runtime).
1385
1386 2000-04-25 Gerd Moellmann <gerd@gnu.org>
1387
1388 * replace.el (perform-replace): Add parameters START and END. Use
1389 them instead of the check for a region in Transient Mark mode.
1390 (query-replace-read-args): Return two more list elements for the
1391 start and end of the region in Transient Mark mode.
1392 (query-replace, query-replace-regexp, query-replace-regexp-eval)
1393 (map-query-replace-regexp, replace-string, replace-regexp): Add
1394 optional last arguments START and END and pass them to
1395 perform-replace.
1396
1397 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
1398 form with additional arguments for perform-replace.
1399
1400 * progmodes/etags.el (tags-query-replace): Add parameters START
1401 and END. Construct a form with additional arguments for
1402 perform-replace.
1403
1404 * simple.el (shell-command): Set default directory for "*Shell
1405 Command Output" buffer.
1406
1407 * language/european.el (iso-latin-4): Fix typo.
1408
1409 * emacs-lisp/crm.el: New file.
1410
1411 2000-04-24 Dave Love <fx@gnu.org>
1412
1413 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
1414 (Custom-reset-saved, Custom-reset-standard)
1415 (custom-group-value-create, custom-group-set, custom-group-save)
1416 (custom-group-reset-current, custom-group-reset-saved)
1417 (custom-group-reset-standard): Use mapc.
1418 (custom-buffer-create-internal): Disable undo when creating items.
1419 Use mapc.
1420 (custom-face): Avoid redundant lambda.
1421
1422 2000-04-24 Gerd Moellmann <gerd@gnu.org>
1423
1424 * startup.el (auto-save-list-file-prefix): Set default to
1425 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
1426
1427 2000-04-24 Sam Steingold <sds@gnu.org>
1428
1429 * time-stamp.el (time-stamp-string-preprocess): Always convert
1430 `field-result' to a string.
1431
1432 2000-04-24 Gerd Moellmann <gerd@gnu.org>
1433
1434 * frame.el (scrolling): New group.
1435 (automatic-hscrolling): New user-option.
1436
1437 * startup.el (command-line-x-option-alist): Add `-lsp' and
1438 `--line-spacing'.
1439
1440 2000-04-19 Dave Love <fx@gnu.org>
1441
1442 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
1443 (cl-mapc): Rename from mapc. Fix the funcall.
1444
1445 2000-04-19 Gerd Moellmann <gerd@gnu.org>
1446
1447 * simple.el (clone-indirect-buffer-other-window): New command.
1448 (clone-indirect-buffer): Add optional arg NORECROD.
1449 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
1450
1451 * help.el (resize-temp-buffer-window): Use count-screen-lines.
1452
1453 * window.el (count-screen-lines): New function.
1454 (shrink-window-if-larger-than-buffer): Use count-screen-lines
1455 instead of window-buffer-height.
1456
1457 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
1458 non-existing variable comint-input-sentinel.
1459 (inferior-lisp-args-to-list): Removed.
1460 (inferior-lisp): Use split-string instead of
1461 inferior-lisp-args-to-list.
1462
1463 * hexl.el (hexl-insert-hex-string): New command.
1464
1465 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
1466 instead of concat.
1467
1468 2000-04-18 Gerd Moellmann <gerd@gnu.org>
1469
1470 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
1471 at the start of an existing but empty folder.
1472
1473 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1474
1475 * ps-mule.el: Customization fix, doc fix.
1476 (ps-multibyte-buffer): Customization fix.
1477
1478 2000-04-17 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1479
1480 * subr.el (read-passwd): Use read-char-exclusive.
1481
1482 2000-04-17 Gerd Moellmann <gerd@gnu.org>
1483
1484 * textmodes/texinfo.el (texinfo-insert-@email)
1485 (texinfo-insert-@emph, texinfo-insert-@quotation)
1486 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
1487 (texinfo-mode-map): Add key bindings for them.
1488
1489 * files.el (basic-save-buffer-2): Use a template with `$'
1490 instead of `#' for VMS.
1491
1492 * simple.el (clone-indirect-buffer): New function.
1493
1494 2000-04-16 Stephen Eglen <stephen@gnu.org>
1495
1496 * iswitchb.el (iswitchb-case): New function. If the user input
1497 contains any upper-case characters, the search is made
1498 case-sensitive.
1499
1500 2000-04-17 Stefan Monnier <monnier@cs.yale.edu>
1501
1502 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
1503 comment-end.
1504 (texinfo-font-lock-syntactic-keywords): New var.
1505 (texinfo-font-lock-keywords): Remove comment regexp.
1506 (texinfo-insert-block): New function.
1507 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
1508 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
1509 and font-lock-defaults. Use regexp-opt for outline-regexp.
1510 (texinfo-environments): New var.
1511 (texinfo-environment-regexp): Use regexp-opt and
1512 texinfo-environments.
1513
1514 * textmodes/ispell.el (ispell-menu-map-needed): Check that
1515 ispell-process is bound since this might be eval'd before ispell
1516 is loaded.
1517 (ispell-message): Use a tiny bit less magic and a bit more hard
1518 data to figure out what kind of sc-cite-regexp to use.
1519
1520 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
1521
1522 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
1523 (insert-cyclic-diary-entry): Unquote the lambda.
1524
1525 * gud.el (gud-jdb-build-source-files-list): Fix typo.
1526
1527 * files.el (backup-enable-predicate): Unquote the lambda.
1528
1529 * cus-edit.el (custom-face, face): Unquote the lambda.
1530
1531 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1532
1533 * ps-print.el: Check for line-beginning-position definition.
1534
1535 * ps-print.el: Fix counting lines in a region.
1536 (ps-print-version): New version number (5.1.5).
1537 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
1538 (ps-printing-region): Fun code fix.
1539
1540 2000-04-15 Gerd Moellmann <gerd@gnu.org>
1541
1542 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
1543 to file-directory-p.
1544
1545 2000-04-14 Gerd Moellmann <gerd@gnu.org>
1546
1547 * gud.el (gud-jdb-build-source-files-list): Check that directory
1548 exists before calling directory-files.
1549
1550 2000-04-13 Dave Love <fx@gnu.org>
1551
1552 * emacs-lisp/trace.el: Change maintainer. Use new backquote
1553 syntax.
1554
1555 * emacs-lisp/cl-specs.el: Remove when, unless.
1556
1557 * emacs-lisp/cl-extra.el: Don't quote keywords.
1558 (cl-old-mapc): New variable.
1559 (mapc): Use it.
1560 (cl-map-intervals): Use with-current-buffer. Don't check for
1561 next-property-change.
1562 (cl-map-overlays): Use with-current-buffer.
1563 (cl-expt): Remove.
1564 (copy-tree, remprop): Define unconditionally.
1565
1566 * emacs-lisp/cl-compat.el (keywordp): Remove.
1567
1568 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
1569 to use keywordp.
1570 (edebug-spec): Enable keywordp.
1571
1572 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
1573 string-lessp.
1574
1575 * cus-start.el: Use keywordp.
1576
1577 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
1578
1579 * diary-lib.el (include-other-diary-files): Fix the fix of
1580 2000-02-18 by doing a save-excursion.
1581
1582 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1583
1584 * ps-print.el: Customization fix, doc fix.
1585 (ps-print-version): New version number (5.1.4).
1586 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
1587 (ps-print-preprint): Adjust code.
1588 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
1589 (ps-print-prologue-header, ps-print-control-characters)
1590 (ps-spool-config): Customization fix.
1591
1592 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
1593
1594 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
1595 converted to the new menu-item format, names silightly changed,
1596 help strings added.
1597
1598 Support for spelling without async subprocesses:
1599
1600 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
1601 (ispell-session-buffer): New variables.
1602 (ispell-start-process, ispell-process-status,
1603 ispell-accept-output, ispell-send-string): New functions, for
1604 Ispell invocation when async subprocesses aren't supported.
1605 (ispell-word, ispell-pdict-save, ispell-command-loop,
1606 ispell-process-line, ispell-buffer-local-parsing): Replace calls
1607 to process-send-string with calls to ispell-send-string, and
1608 accept-process-output with ispell-accept-output.
1609 (ispell-init-process): Call ispell-process-status instead of
1610 process-status with.
1611 (ispell-init-process): Call ispell-start-process. Call
1612 ispell-accept-output and ispell-send-string. Don't call
1613 process-kill-without-query and kill-process if they are unbound.
1614 (ispell-async-processp): New function.
1615
1616 2000-04-12 Dave Love <fx@gnu.org>
1617
1618 * info.el: Add debug-ignored-errors.
1619 (Info-mode-menu): Add some items.
1620 (Info-directory): Add autoload cookie.
1621
1622 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
1623 Modify `truncate-lines'. Make `describe-language-environment'
1624 always visible and add help. Modify `describe-key' help. Invoke
1625 Info-directory from `info'. New entry `emacs-manual'.
1626
1627 2000-04-10 Gerd Moellmann <gerd@gnu.org>
1628
1629 * progmodes/ebrowse.el (ebrowse-tree-mode): Use
1630 propertized-buffer-identification.
1631 (ebrowse-update-member-buffer-mode-line): Likewise.
1632 (ebrowse--mode-strings): Removed.
1633 (ebrowse--mode-line-props): Removed.
1634
1635 * files.el (auto-mode-alist): Add `EBROWSE'.
1636
1637 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
1638 space before testing for end of buffer.
1639 (ebrowse-load): Removed.
1640 (ebrowse-revert-tree-buffer-from-file): Rewritten.
1641 (ebrowse-create-tree-buffer): Rewritten.
1642 (ebrowse-tree-mode): Read tree from buffer.
1643
1644 * progmodes/ebrowse-ffh.el: Removed.
1645
1646 2000-04-10 Kenichi Handa <handa@etl.go.jp>
1647
1648 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
1649
1650 2000-04-10 Gerd Moellmann <gerd@gnu.org>
1651
1652 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
1653 at the wrong place.
1654
1655 2000-04-09 Dave Love <fx@gnu.org>
1656
1657 * files.el (backup-enable-predicate): Use
1658 temporary-file-directory, small-temporary-file-directory.
1659 (make-backup-file-name-function, backup-directory-alist): New
1660 variables.
1661 (make-backup-file-name-1): New function.
1662 (make-backup-file-name): Use it.
1663 (find-backup-file-name): Likewise. Use format for clarity, not
1664 concat.
1665 (file-newest-backup): Use make-backup-file-name.
1666
1667 2000-04-09 Gerd Moellmann <gerd@gnu.org>
1668
1669 * progmodes/ebrowse-ffh.el: New file.
1670
1671 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn): Moved
1672 to ebrowse-ffh.el.
1673 (ebrowse-load): Add autoload.
1674
1675 * finder.el (finder-commentary): Add autoload cookie.
1676
1677 * mail/rfc2368.el: Correct author's email address.
1678
1679 * progmodes/ebrowse.el: New file.
1680
1681 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
1682 item help string.
1683 (easy-menu-do-add-item): Ditto.
1684 (easy-menu-define): Extend doc string.
1685
1686 * jit-lock.el (with-buffer-unmodified): Use
1687 restore-buffer-modified-p.
1688 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
1689 (jit-lock-function, jit-lock-stealth-fontify): Don't use
1690 with-buffer-unmodified.
1691
1692 2000-04-08 Dave Love <fx@gnu.org>
1693
1694 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
1695 unless, when.
1696
1697 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
1698
1699 * viper-util.el (viper-put-on-search-overlay): New subroutine.
1700 (viper-flash-search-pattern): No operation when using Emacs
1701 doesn't support face.
1702 Use `viper-put-on-search-overlay'.
1703
1704 2000-04-04 Gerd Moellmann <gerd@gnu.org>
1705
1706 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
1707 like C-r.
1708
1709 * progmodes/make-mode.el: Some doc fixes.
1710 (makefile-mode-abbrev-table): New variable.
1711 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
1712 (makefile-font-lock-keywords): Fontify includes and conditionals.
1713 (toplevel): Require `dabbrev' and `add-log' when compiling.
1714
1715 * replace.el (perform-replace): Don't move forward one char
1716 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
1717 to do that because it leaves point 1 position after the last
1718 replacement, after everything has been replaced.
1719
1720 * jit-lock.el (with-buffer-unmodified): New macro.
1721 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
1722 modified state.
1723 (jit-lock-function-1): Extracted from jit-lock-function; not
1724 preserving buffer's modified state.
1725 (jit-lock-function, jit-lock-stealth-fontify): Call
1726 jit-lock-function-1.
1727
1728 * mail/rfc2368.el: Remove supernumerary copyright line.
1729
1730 2000-04-04 Milan Zamazal <pdm@freesoft.cz>
1731
1732 * glasses.el: Provide facilities for inserting space before left
1733 parentheses and uncapitalization of identifiers.
1734 (glasses-mode): Try to remove old overlays in all cases.
1735
1736 2000-04-03 Gerd Moellmann <gerd@gnu.org>
1737
1738 * progmodes/compile.el (compile-internal): Display the compilation
1739 buffer in a different frame, if it's already displayed there.
1740
1741 * mail/rfc2368.el: New file.
1742
1743 * simple.el (sendmail-user-agent-compose): Recognize a `body'
1744 header and insert its value as mail body.
1745
1746 * subr.el (member-ignore-case): New function.
1747
1748 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
1749 (dabbrev--find-expansion): Ignore buffers matching a regexp
1750 from dabbrev-ignored-regexps.
1751
1752 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
1753 to extensions handled by gzip.
1754
1755 2000-04-03 Richard M. Stallman <rms@gnu.org>
1756
1757 * files.el (insert-directory): List the total free space
1758 along with the used space.
1759
1760 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
1761 line is followed by one that matches CITATION-REGEXP, end the
1762 paragraph.
1763
1764 2000-04-03 Markus Rost <rost@delysid.gnu.org>
1765
1766 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
1767 (rmail-make-basic-summary-line): Use that option.
1768
1769 2000-04-03 Kenichi Handa <handa@etl.go.jp>
1770
1771 * international/mule-cmds.el (encoded-string-description):
1772 Rewritten. Try pretty description for ISO 2022 escape sequences
1773 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
1774 for hexadecimal format.
1775
1776 2000-04-01 Dave Love <fx@gnu.org>
1777
1778 * cpp.el: Change customization group to `c' from `C'.
1779
1780 * vcursor.el (vcursor-move): Use display-color-p.
1781
1782 * international/mule-util.el: Provide mule-utils.
1783 (string-to-sequence): Simplify and speed up.
1784
1785 * international/mule.el (make-coding-system): Purecopy doc-string.
1786
1787 * international/mule-cmds.el: Various menu changes.
1788 (describe-specified-language-support): Handle `Default'.
1789 (set-language-info): Purecopy `info'.
1790
1791 2000-03-31 Andrew Innes <andrewi@gnu.org>
1792
1793 * vc.el (vc-backend-diff): Return the correct status if we had to
1794 retry the rcsdiff command without the --brief option.
1795
1796 2000-03-31 Dave Love <fx@gnu.org>
1797
1798 * help.el (help-manyarg-func-alist): Correct several omissions.
1799
1800 * add-log.el: Don't require cl, fortran.
1801 (add-log-current-defun-function): Doc fix.
1802 (change-log-version-number-regexp-list): Remove SCCS part. Doc
1803 fix.
1804 (change-log-version-rcs): Function deleted.
1805 (change-log-version-number-search): Doc fix. Use
1806 vc-workfile-version. Avoid CL dolist.
1807 (add-change-log-entry): Just call add-log-current-defun to get
1808 defun. Simplify somewhat.
1809 (change-log-get-method-definition-1): Likewise.
1810 (add-log-current-defun): Return nil if calling
1811 add-log-current-defun-function does so. Move Fortran stuff to
1812 fortran.el. Return string without properties.
1813
1814 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
1815 and :alpha: char classes.
1816
1817 * mail/supercite.el: Defvar curline when compiling.
1818 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
1819 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
1820 rather than a-zA-Z0-9 to allow non-ASCII characters.
1821
1822 2000-03-31 Gerd Moellmann <gerd@gnu.org>
1823
1824 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
1825
1826 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
1827 Re-enable new code.
1828
1829 * lpr.el (print-region-1): Use -d to specify printer name for
1830 systems `usg-unix-v*, `dgux', `hpux', `irix'.
1831
1832 2000-03-31 Dave Love <fx@gnu.org>
1833
1834 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Look
1835 for function definition in symbol's function value slot first
1836 instead of first consulting byte-compile-function-environment.
1837
1838 2000-03-31 Kenichi Handa <handa@etl.go.jp>
1839
1840 * language/european.el ("Polish"): New language environment.
1841 (setup-polish-environment): New function.
1842
1843 2000-03-30 Gerd Moellmann <gerd@gnu.org>
1844
1845 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
1846 Disable new code.
1847
1848 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
1849 trying to `load' the symbol of an autoload instead of the file
1850 recorded in the autoload. Fix error messages.
1851
1852 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1853
1854 * ps-print.el: PostScript programming fix for ghostview, doc fix.
1855 (ps-print-version): New version number (5.1.3).
1856 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
1857 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
1858 (ps-generate-postscript-with-faces): Code fix.
1859 (ps-color-values): XEmacs compatibility.
1860 (ps-print-background-image, ps-print-background-text, ps-printer-name)
1861 (ps-default-fg, ps-default-bg): Adjust customization.
1862 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
1863 (ps-color-scale): Renaming old ps-color-value fun.
1864 (ps-print-headers): Replace ps-print-header group to avoid conflict
1865 with ps-print-header variable.
1866 (ps-print-miscellany): New group.
1867 (ps-format-color, ps-rgb-color): New funs.
1868 (ps-default-foreground): New var.
1869 (ps-printer-name-option): New const.
1870
1871 2000-03-30 Peter Breton <pbreton@ne.mediaone.net>
1872
1873 * net/net-utils.el:
1874 (network-connection-host, network-connection-service): New variables
1875 (network-connection-mode): New mode, derived from comint-mode
1876 (network-connection-mode-setup): New function, saves host and
1877 service information in local variables.
1878
1879 * lisp/locate.el:
1880 (locate-word-at-point): Added this function
1881 (locate): Default to using locate-word-at-point as input
1882 Run dired-mode-hook
1883
1884 2000-03-29 Dave Love <fx@gnu.org>
1885
1886 * calendar/appt.el: Doc fixes.
1887 (appt-check): Convert min-to-app to a string before passing to
1888 appt-disp-window-function or concat.
1889 (appt-delete-window): Remove test for frame-root-window.
1890 (appt-select-lowest-window, appt-convert-time): Simplify.
1891
1892 * emacs-lisp/bytecomp.el: Doc fixes.
1893 (byte-compile-file-form-autoload): Update
1894 byte-compile-function-environment.
1895
1896 2000-03-29 Andreas Schwab <schwab@suse.de>
1897
1898 * emacs-lisp/autoload.el: Also print defsubst doc string
1899 specially.
1900
1901 * dired.el (dired-insert-directory): If dired-free-space-program
1902 failed just delete its output.
1903
1904 2000-03-29 Dave Love <fx@gnu.org>
1905
1906 * international/iso-cvt.el: Move provide to end. Doc fixes.
1907 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
1908 (iso-iso2sgml, iso-sgml2iso): New functions.
1909 (iso-cvt-define-menu): Fix some entries and use backquote for
1910 clarity.
1911
1912 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
1913
1914 2000-03-28 Gerd Moellmann <gerd@gnu.org>
1915
1916 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
1917 ISO-DATE. If non-nil, return date in ISO 8601 format.
1918
1919 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
1920
1921 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
1922 if it ever becomes used.
1923 (log-edit-mode-hook): Default to vc-log-mode-hook.
1924 (log-edit-mode): Fix the docstring.
1925
1926 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
1927 the code.
1928
1929 2000-03-26 Dave Love <fx@gnu.org>
1930
1931 * net/browse-url.el (browse-url): Re-fix case of
1932 browse-url-browser-function being an alist.
1933 (browse-url): Add :link to defgroup.
1934
1935 * files.el: Doc fixes.
1936 (file-truename): Include `[' in wildcard characters.
1937 (automount-dir-prefix): Customize.
1938 (find-file-wildcards): Add :version.
1939 (find-file-noselect): Simplify a mapcar call.
1940
1941 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
1942 compatible with inf-lisp version.
1943 (eval-defun-1): Fix custom-declare-variable case.
1944
1945 2000-03-25 Stefan Monnier <monnier@cs.yale.edu>
1946
1947 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
1948
1949 2000-03-24 Gerd Moellmann <gerd@gnu.org>
1950
1951 * Makefile (COMPILE_FIRST): New macro.
1952 (compile-files): Compile files from COMPILE_FIRST first.
1953
1954 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new
1955 code.
1956
1957 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
1958 matching open parenthesis in column 0 to defun-prompt-regexp
1959 only if open-paren-in-column-0-is-defun-start is set.
1960
1961 * sun-curs.el: Require CL at compile-time only.
1962
1963 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
1964 instead of copy-list which is a function from CL.
1965 (msb--choose-menu, msb--mode-menu-cond)
1966 (msb--create-buffer-menu-2): Use dolist instead of mapc.
1967 (msb--init-file-alist): Use mapcar instead of mapcan.
1968 (msb--aggregate-alist): Use mapcar instead of mapcan. Fix
1969 `(' in column 0 in doc string.
1970 (msb--add-separators): Use mapcar instead of mapcan.
1971
1972 * cus-dep.el: Require CL at compile-time only.
1973
1974 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
1975
1976 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
1977 (byte-compile-warnings): New warning `noruntime'.
1978 (byte-compile-constants, byte-compile-variables): Fix docstring.
1979 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
1980 execute `eval-whenc-compile's body.
1981 (byte-compile-unresolved-functions): Fix docstring.
1982 (byte-compile-eval): New function.
1983 (byte-compile-callargs-warn): Check if the function will be available
1984 at runtime (via property `byte-compile-noruntime').
1985 (byte-compile-print-syms): New function.
1986 (byte-compile-warn-about-unresolved-functions): Also warn about
1987 `noruntime' functions (and use `byte-compile-print-syms').
1988 (byte-compile-file): Capitalize the message.
1989
1990 2000-03-24 Gerd Moellmann <gerd@gnu.org>
1991
1992 * mail/rmail.el (rmail-confirm-expunge): New user-option.
1993 (rmail-expunge): Ask for confirmation depending on the setting
1994 of rmail-confirm-expunge.
1995
1996 2000-03-23 Gerd Moellmann <gerd@gnu.org>
1997
1998 * Makefile (bootstrap-clean): If $(emacs) exists, build
1999 loaddefs.el first. A loaddefs.el that's not up-to-date might
2000 cause a bootstrap failure because things don't autoload as
2001 expected.
2002
2003 2000-03-23 Dave Love <fx@gnu.org>
2004
2005 * net/browse-url.el: Restore previous use of
2006 browse-url-maybe-new-window.
2007
2008 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2009
2010 * ps-print.el: Skip banner page fix.
2011 (ps-print-version): New version number (5.1.2).
2012 (ps-begin-file, ps-end-file, ps-generate): Code fix.
2013
2014 2000-03-23 Dave Pearson <davep@davep.org>
2015
2016 * net/quickurl.el Changed the type of parameter passed to the
2017 function defined by `quickurl-format-function'. Before only the
2018 text of the URL was passed. Now the whole URL structure is passed
2019 and the function is responsible for extracting the parts it
2020 requires. Changed the default of `quickurl-format-function'
2021 accordingly.
2022 (quickurl-insert): Changed the `funcall' of
2023 `quickurl-format-function' to match the above change.
2024 (quickurl-list-insert): Changed the `url' case so that it makes
2025 use of `quickurl-format-function', previous to this the format was
2026 hard wired.
2027
2028 2000-03-22 Gerd Moellmann <gerd@gnu.org>
2029
2030 * startup.el: Change some spellings for the X Window System.
2031
2032 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
2033
2034 * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean
2035 up the code and the regexp and make sure the cursor is temporarily
2036 moved to the suspicious line while querying the user.
2037
2038 2000-03-22 Jason Rumney <jasonr@gnu.org>
2039
2040 * w32-fns.el (w32-charset-info-alist): Initialize.
2041
2042 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2043
2044 * ps-print.el: N-up last page fix.
2045 (ps-print-version): New version number (5.1.1).
2046 (ps-end-file, ps-end-job, ps-generate): Code fix.
2047
2048 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
2049
2050 * files.el (find-file-run-dired): Update docstring.
2051 (find-directory-functions): New hook.
2052 (find-file-noselect): Run find-directory-functions rather than
2053 calling dired directly.
2054
2055 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
2056
2057 * pcvs.el: Add a minimal leading commentary.
2058 (cvs-make-cvs-buffer): Change the header part by removing the startup
2059 message and adding a `Module' entry. Also replace the FOOTER and
2060 HEADER special fileinfos with the new support in ewoc for updating
2061 its own footer and header.
2062 (cvs-update-header): Update to use the header/footer of the ewoc.
2063 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
2064 (cvs-is-within-p): New function.
2065 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
2066 to only examine some subset of the buffers.
2067
2068 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
2069 `format' instead of our own ad-hoc functions.
2070 Remove HEADER and FOOTER cases, now handled in the EWOC.
2071 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
2072
2073 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
2074 output to avoid scaring the user.
2075 (cvs-parse-table): Catch message for non-up-to-date commits.
2076
2077 * pcvs-defs.el (cvs-startup-message): Remove.
2078 (cvs-global-menu): New autoloaded menu.
2079
2080 * pcvs-util.el (cvs-string-fill): Remove.
2081
2082 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
2083 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
2084 PP part of it and also make it work for footers and headers.
2085 (ewoc-create): Drop POS and BUFFER arguments.
2086 Use the DLL's dummy node to store the end-of-footer position.
2087 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
2088 (ewoc-refresh): Remove unused `header' variable.
2089 (ewoc-(get|set)-hf): New functions.
2090
2091 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
2092 log-view-*-(message|file) and use easy-mmode-define-navigation.
2093 (log-view-message-re): Match SCCS format as well.
2094 And match the revision line rather than the dashed separator line.
2095 (log-view-mode): Use the new define-derived-mode.
2096 (log-view-current-tag): Fill in with an actual implementation.
2097
2098 * cvs-status.el (cvs-status-(prev|next)): Rename from
2099 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
2100 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
2101 to let the output "breathe" a little more (more readable).
2102 (cvs-status-mode): Use the new define-derived-mode.
2103
2104 * smerge-mode.el (smerge-auto-leave): New function and variable.
2105 (smerge-basic-map): Rename from smerge-basic-keymap.
2106 Change the bindings for smerge-diff-*.
2107 (smerge-*-map): Use easy-mmode-defmap.
2108 (smerge-(next|prev)): Use easy-mmode-define-navigation.
2109 (smerge-keep-*): Use smerge-auto-leave.
2110
2111 2000-03-21 Jason Rumney <jasonr@gnu.org>
2112
2113 * cus-edit.el (custom-button-face): Use 3D look for w32.
2114 (custom-button-pressed-face): Likewise.
2115
2116 2000-03-21 Gerd Moellmann <gerd@gnu.org>
2117
2118 * progmodes/etags.el (tags-case-fold-search): New user-option.
2119 (tags-loop-eval): New function. Bind case-fold-search around eval
2120 depending on the value of tags-case-fold-search.
2121 (tags-loop-continue): Use tags-loop-eval.
2122 (find-tag-in-order): Bind case-fold-search depending on the value
2123 of tags-case-fold-search.
2124
2125 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
2126
2127 * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'.
2128 (diff-end-of-hunk): Return the end position for use in
2129 `easy-mmode-define-navigation'.
2130 (diff-recenter): Remove.
2131 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
2132 of `easy-mmode-define-navigation'.
2133 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
2134 previous renaming) and fix to use new names.
2135 (diff-merge-strings): Use \n as separator: simpler, faster.
2136 (diff-mode): Use `define-derived-mode'.
2137
2138 * derived.el (define-derived-mode): Don't autoload anymore.
2139 Prefer the macro-only version provided by easy-mmode.el.
2140
2141 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
2142 `easy-mmode-define-derived-mode'.
2143 Use `combine-run-hooks'.
2144 (easy-mmode-define-navigation): New macro.
2145
2146 * subr.el (combine-run-hooks): New function.
2147
2148 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
2149
2150 * term/x-win.el: Fontsets related initialization is simplified.
2151
2152 * international/mule-diag.el (describe-font): Don't refer to
2153 global-fontset-alist, instead call font-list.
2154 (describe-fontset, list-fontsets, mule-diag): Likewise.
2155 (print-fontset): Adjusted for the change of fontset
2156 implementation.
2157
2158 * international/fontset.el (x-charset-registries): Variable
2159 removed, instead the corresponding data is stored in the default
2160 fontset.
2161 (register-alternate-fontnames): Function removed.
2162 (resolved-ascii-font): Variable removed.
2163 (x-compose-font-name): Ignore the second argument REDOCE.
2164 (x-complement-fontset-spec): Complement only an ASCII font and
2165 element for those charsets than can use that ASCII font.
2166 (generate-fontset-menu): Don't refer to global-fontset-alist,
2167 instead call fontset-list.
2168 (uninstantiated-fontset-alist): Variable removed.
2169 (x-style-funcs-alist): Likewise.
2170 (fontset-default-styles): Likewise.
2171 (x-modify-font-name): Function removed.
2172 (create-fontset-from-fontset-spec): Ignore the argument
2173 STYLE-VARIANT.
2174 (create-fontset-from-ascii-font): Docsting adjusted for the above
2175 change.
2176 (instantiate-fontset, resolve-fontset-name): Functions removed.
2177 (fontset-list): Now implemented by C code.
2178
2179 * faces.el (read-face-font): Fix TABLE arg to completing-read.
2180 (describe-face): Include `font' attribute in the description.
2181
2182 2000-03-21 Kenichi Handa <handa@etl.go.jp>
2183
2184 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
2185
2186 2000-03-20 Gerd Moellmann <gerd@gnu.org>
2187
2188 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
2189 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
2190 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
2191
2192 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
2193 about behavior of set-buffer-modified-p wrt redisplay.
2194
2195 2000-03-19 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2196
2197 * view.el (view-mode-disable): Kill local binding of view-read-only.
2198
2199 2000-03-18 Gerd Moellmann <gerd@gnu.org>
2200
2201 * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
2202 is a string, convert it to a syntax cell using string-to-syntax.
2203
2204 * simple.el (syntax-code-table, syntax-flag-table): New variables.
2205 (string-to-syntax): New function.
2206
2207 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
2208 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
2209 try to use passive ftp mode.
2210
2211 2000-03-17 Gerd Moellmann <gerd@gnu.org>
2212
2213 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
2214
2215 * simple.el (append-to-buffer): Update point of windows after
2216 insertion.
2217
2218 * abbrev.el (inverse-add-abbrev): Identify word by first moving
2219 forward then moving backward. Reindent.
2220
2221 * frame.el (other-frame): Call x-focus-frame only if
2222 focus-follows-mouse is off.
2223
2224 2000-03-17 Dave Love <fx@gnu.org>
2225
2226 * pcvs-util.el (cvs-strings->string): Rename
2227 replace-regexps-in-string.
2228
2229 2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
2230
2231 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
2232 regexp for labels cannot span several lines.
2233
2234 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
2235 `(setq :<key> ':<key>)' to the macro expansion.
2236
2237 2000-03-16 Dave Love <fx@gnu.org>
2238
2239 * progmodes/f90.el (f90): Put custom group under `languages', not
2240 `fortran'.
2241 (f90-mode-hook): Customize.
2242 (f90-mode): Set add-log-current-defun-function.
2243 (f90-current-defun): New function.
2244
2245 2000-03-16 Gerd Moellmann <gerd@gnu.org>
2246
2247 * cus-edit.el (custom-variable-tag-face): Handle case that
2248 default face's height is not a number.
2249 (custom-face-tag-face, custom-group-tag-face-1)
2250 (custom-group-tag-face): Ditto.
2251 (custom-group-tag-face-1): Add :group.
2252
2253 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
2254
2255 2000-03-15 Gerd Moellmann <gerd@gnu.org>
2256
2257 * pcvs-defs.el (toplevel): Remove autoload cookie for form
2258 requiring easymenu.
2259
2260 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2261
2262 * ps-print.el: PostScript user-defined prologue, PostScript error
2263 handler, doc fix.
2264 (ps-print-version): New version number (5.1).
2265 (ps-user-defined-prologue, ps-error-handler-message)
2266 (ps-print-prologue-0, ps-error-handler-alist): New vars.
2267 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
2268 (ps-insert-string): New function.
2269
2270 2000-03-15 Kenichi Handa <handa@etl.go.jp>
2271
2272 * international/ccl.el (ccl-compile-expression): Don't generate
2273 invalid self-assignment code.
2274
2275 2000-03-14 Dave Love <fx@gnu.org>
2276
2277 * subr.el (replace-regexp-in-string): Renamed from
2278 replace-regexps-in-string. Doc fix.
2279
2280 2000-03-12 Dave Love <fx@gnu.org>
2281
2282 * cus-edit.el: Doc fixes.
2283 (customize-set-variable, customize-save-variable): Rename args for
2284 doc.
2285 (custom-variable-tag-face, custom-face-tag-face)
2286 (custom-group-tag-face-1, custom-group-tag-face): Modify from
2287 style which user identify as hyperlink.
2288 (hook): Don't add undefined functions to the hook.
2289 (debug-ignored-errors): Transfer message from bindings.el.
2290
2291 2000-03-12 Gerd Moellmann <gerd@gnu.org>
2292
2293 * recentf.el (recentf-keep-non-readable-files-p): Remove
2294 double/nested definition.
2295
2296 2000-03-12 Dave Love <fx@gnu.org>
2297
2298 * facemenu.el (facemenu-get-face): Use display-color-p.
2299 * enriched.el (enriched-decode-foreground): Likewise.
2300 (enriched-decode-background): Likewise.
2301 * isearch.el (isearch-highlight): Likewise.
2302 * info-look.el (info-lookup): Likewise.
2303 * simple.el (completion-setup-function): Likewise.
2304
2305 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
2306 :options.
2307
2308 * bindings.el (mode-line-format): Fix line-number and
2309 column-number items. Add help-echo for the background.
2310 (mode-line-mule-info): Modify help-echo.
2311
2312 * avoid.el (mouse-avoidance-mode): Add autoload cookie to
2313 defcustom.
2314
2315 * files.el (load-file): Allow completion to .elc.
2316
2317 * man.el: Doc fixes.
2318 (Man-init-defvars): Use display-color-p to set fontification.
2319
2320 * play/hanoi.el (hanoi-internal): Don't use oddp.
2321
2322 2000-03-12 Gerd Moellmann <gerd@gnu.org>
2323
2324 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
2325
2326 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
2327
2328 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
2329
2330 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
2331 Fix comment.
2332
2333 2000-03-10 Stefan Monnier <monnier@cs.yale.edu>
2334
2335 * font-lock.el (font-lock-keywords): Fix the doc now that
2336 regexp-opt-depth is unnecessary.
2337 (save-buffer-state): Set an edebug spec.
2338 (font-lock-fontify-anchored-keywords): Properly handle the case when
2339 the matcher goes past the limit.
2340
2341 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
2342 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
2343
2344 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
2345 dll.el and cookie.el (from Elib) with heavy renaming and other
2346 massaging.
2347
2348 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
2349 Autoload the functions used.
2350 (easy-mmode-define-syntax): Fix CL typo.
2351 (easy-mmode-define-derived-mode): Improve the docstring generation.
2352
2353 2000-03-10 Gerd Moellmann <gerd@gnu.org>
2354
2355 * textmodes/texinfo.el (texinfo-version): Variable and function
2356 removed.
2357
2358 2000-03-09 Stefan Monnier <monnier@cs.yale.edu>
2359
2360 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
2361 allow more flexibility.
2362 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New
2363 fns.
2364 (easy-mmode-defmap, easy-mmode-defsyntax)
2365 (easy-mmode-define-derived-mode): New macros.
2366
2367 2000-03-09 Didier Verna <didier@xemacs.org>
2368
2369 * rect.el (replace-rectangle): New function.
2370
2371 2000-03-09 Dave Love <fx@gnu.org>
2372
2373 * progmodes/fortran.el (fortran-comment-line-start): Define as
2374 "C".
2375 (fortran-comment-line-start-skip): Don't match cpp stuff.
2376 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
2377 (fortran-mode-map): Remove over-eager custom-menu-create for now.
2378 (fortran-mode): Don't set fortran-comment-line-start-skip,
2379 fortran-comment-line-start here. Set comment-start,
2380 add-log-current-defun.
2381 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
2382 (fortran-current-defun): New function.
2383
2384 2000-03-09 Gerd Moellmann <gerd@gnu.org>
2385
2386 * emacs-lisp/re-builder.el: New file.
2387
2388 * mouse.el (mouse-drag-region): Don't run up-event handler
2389 if hscroll has changed.
2390
2391 * octave-mod.el (octave-font-lock-keywords): To font-lock the
2392 builtin operators, use `font-lock-builtin-face' for Emacs and
2393 `font-lock-preprocessor-face' otherwise.
2394
2395 * font-lock.el (lisp-font-lock-keywords-1): Highlight
2396 `(defun (setf foo)' differently.
2397
2398 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
2399
2400 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
2401 (regexp-opt): Update comment and adapt the code the new meaning of
2402 the `paren' argument of regex-opt-group for shy-groups.
2403 (regexp-opt-depth): Handle shy groups as well as backslashed
2404 backslashes.
2405 (regexp-opt-group): Turn the leading comment into a docstring.
2406 Allow `paren' to be a string (the string to use to open a group).
2407 Remove open-presuf and close-presuf. Instead of checking for `all
2408 one-char' and then later on check for `several one-char', handle
2409 both cases close together. Also apply a more generic algorithm
2410 for suffixes (the mirror image of the algorithm used for
2411 prefixes). Use shy-groups. Use nreverse rather than reverse.
2412 (regexp-opt-try-suffix): Removed.
2413
2414 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
2415 from comint-mode-map, so we can just inherit from it. Also, move
2416 the initialization into the `defvar' since there's no docstring
2417 anyway and it's fairly short.
2418 (inferior-scheme-mode): Define it as derived-mode: the code is
2419 shorter and this way we inherit from comint-mode-map rather than
2420 copying it.
2421
2422 * subr.el (replace-regexps-in-string): Properly handle the case
2423 where we match an empty string.
2424
2425 * comint.el (comint-exec-1): Add the current-dir to the exec-path
2426 when the command has a directory component (such as "./testml").
2427 Also fix a typo in the comment.
2428
2429 2000-03-08 Gerd Moellmann <gerd@gnu.org>
2430
2431 * Makefile (compile-files): Compile files one by one because
2432 that's the only way to ensure a clean compilation environment for
2433 each individual file.
2434
2435 * frame.el (other-frame): Call x-focus-frame.
2436
2437 2000-03-07 Dave Love <fx@gnu.org>
2438
2439 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
2440 :require to defcustom.
2441
2442 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
2443 lists.
2444
2445 * files.el (auto-mode-alist): Add configure.in.
2446
2447 * progmodes/autoconf.el: New file.
2448
2449 2000-03-07 Gerd Moellmann <gerd@gnu.org>
2450
2451 * mail/mh-e.el: Change maintainer to `none'.
2452
2453 * recentf.el (recentf-keep-non-readable-files-p): Quote args
2454 to remove-hook and add-hook.
2455
2456 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
2457
2458 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
2459 it as the default.
2460 (mail-send): Test mail-send-nonascii also for the new `mime' value.
2461 (sendmail-send-it): Conditionally add MIME headers specifying the
2462 used character set.
2463
2464 2000-03-07 Dave Love <fx@gnu.org>
2465
2466 * winner.el: Fix keywords, autoload cookies. Split
2467 eval-when-compile form to avoid compilation failure.
2468
2469 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
2470
2471 * international/mule.el: Modify comment about coding system
2472 property `coding-category'.
2473 (make-coding-system): New argument EOL-TYPE. Pay attention to
2474 coding-category property of PROPERTIES.
2475
2476 * international/mule-conf.el (coding-category-utf-8,
2477 coding-category-utf-16-be, coding-category-utf-16-le): New coding
2478 categories. Include them in the argument for set-coding-priority.
2479
2480 * international/mule-cmds.el (reset-language-environment): Include
2481 coding-category-utf-8, coding-category-utf-16-be, and
2482 coding-category-utf-16-le in the argument for set-coding-priority.
2483 (reset-language-environment): Initialize coding-category-utf-8,
2484 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
2485
2486 2000-03-06 Karl Fogel <kfogel@red-bean.com>
2487
2488 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
2489 code abstracted out of `bookmark-jump-noselect'. Now tries info
2490 extensions as well as compression extensions.
2491 (bookmark-jump-noselect): Use above new func.
2492
2493 2000-03-03 Gerd Moellmann <gerd@gnu.org>
2494
2495 * strokes.el: Change maintainer's mail address.
2496
2497 2000-03-03 Kenichi Handa <handa@etl.go.jp>
2498
2499 * international/mule-diag.el (list-character-sets): Make help-echo
2500 string by substitute-command-keys.
2501 (list-character-sets): Likewise.
2502 (sort-listed-character-sets): Call help-setup-xref.
2503
2504 2000-03-02 Gerd Moellmann <gerd@gnu.org>
2505
2506 * time.el (display-time-mail-file): Add `none' to the list of
2507 choices.
2508
2509 2000-03-01 Dave Love <fx@gnu.org>
2510
2511 * help.el (help-xref-go-back): Don't try to set position.
2512
2513 * international/mule-diag.el (list-character-sets): Call
2514 help-setup-xref. Add help-echo to xrefs.
2515 (list-character-sets-1): Add help-echo to xrefs.
2516
2517 2000-03-02 Gerd Moellmann <gerd@gnu.org>
2518
2519 * frame.el (blink-cursor-mode): Switch cursor on when turning
2520 the mode off.
2521
2522 * add-log.el (add-log-current-defun): Add support for
2523 Autoconf mode.
2524
2525 * mail/rmail.el (rmail-quit-hook): New variable.
2526
2527 2000-03-01 Dave Love <fx@gnu.org>
2528
2529 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
2530
2531 * help.el (help-xref-button): Add help-echo arg.
2532 (describe-function-1, describe-variable, help-make-xrefs): Use it.
2533
2534 * faces.el (list-faces-display): Supply help-echo with
2535 help-make-xrefs.
2536
2537 * facemenu.el (list-text-properties-at): Set help-xref-stack to
2538 nil.
2539
2540 2000-03-01 Gerd Moellmann <gerd@gnu.org>
2541
2542 * image.el (defimage): Look for image files in load-path.
2543
2544 * frame.el (busy-cursor-delay-seconds): Change type to
2545 `number'.
2546
2547 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
2548
2549 * recentf.el (recentf): Added version tag to the defgroup of
2550 recentf.
2551
2552 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
2553
2554 * recentf.el (recentf-cleanup): Changed to remove excluded file
2555 too.
2556 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
2557 action to select/unselect a file.
2558 (recentf-edit-list): Code cleanup and improvement.
2559 (recentf-open-more-files-action): `recentf-open-more-files' button
2560 widget action to open a file.
2561 (recentf-open-more-files): No more use standard completion but
2562 widgets.
2563 (recentf-more-collection): Deleted.
2564 (recentf-more-history): Deleted.
2565 (recentf-setup-more-completion): Deleted.
2566
2567 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
2568
2569 * recentf.el (recentf-mode): No more needs that Emacs is running
2570 under a window-system.
2571
2572 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
2573
2574 * recentf.el (recentf-edit-list): New command to edit the recent
2575 list which allow the user to remove files.
2576 (recentf-edit-selected-items): New global variable, used by
2577 `recentf-edit-list' to hold the list of files to be removed from
2578 the recent list.
2579 (recentf-make-menu-items): Updated to display a "Edit list..."
2580 menu item. Minor code cleanup.
2581
2582 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
2583
2584 * recentf.el (recentf-open-more-files): New command to open files
2585 that are not displayed in the menu.
2586 (recentf-more-collection): New global variable holding the set of
2587 permissible completions used by `recentf-open-more-files'.
2588 (recentf-more-history): New global variable holding the history list
2589 used by `recentf-open-more-files' completion.
2590 (recentf-setup-more-completion): New function to setup completion for
2591 `recentf-open-more-files'.
2592 (recentf-make-menu-items): Updated to display a "More..." menu item.
2593
2594 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
2595
2596 * recentf.el (recentf-menu-action): Doc fixed.
2597
2598 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
2599
2600 * recentf.el (recentf-menu-filter): Doc updated.
2601 (recentf-update-menu-hook): Allow menu filters to force menu update.
2602 (recentf-make-menu-items): New menu filter handling.
2603 (recentf-make-menu-item): New helper function.
2604 (recentf-menu-elements): New menu handling function.
2605 (recentf-sort-ascending): Updated to new menu filter handling.
2606 (recentf-sort-descending): Updated to new menu filter handling.
2607 (recentf-sort-basenames-ascending): New menu filter function.
2608 (recentf-sort-basenames-descending): New menu filter function.
2609 (recentf-show-basenames): New menu filter function.
2610 (recentf-show-basenames-ascending): New menu filter function.
2611 (recentf-show-basenames-descending): New menu filter function.
2612
2613 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
2614
2615 * diary-lib.el (list-diary-entries): Don't try to go forward at
2616 the end of the buffer.
2617
2618 2000-02-29 Kenichi Handa <handa@etl.go.jp>
2619
2620 * international/mule-diag.el (list-character-sets): Completely
2621 rewritten.
2622 (sort-listed-character-sets): New function.
2623 (list-character-sets-1): Completely rewritten.
2624 (list-character-sets-2): New function.
2625 (non-iso-charset-alist): New variable.
2626 (decode-codepage-char): New function.
2627 (charset-history): New variable.
2628 (read-charset) (list-block-of-chars)
2629 (list-iso-charset-chars)
2630 (list-non-iso-charset-chars)
2631 (list-charset-chars): New functions.
2632 (mule-diag): Call list-character-sets-2, not
2633 list-character-sets-2.
2634 (dump-charsets): Likewise.
2635
2636 2000-02-29 Gerd Moellmann <gerd@gnu.org>
2637
2638 * dired-x.el (dired-filename-at-point): Add `@' to valid
2639 file name characters.
2640 (dired-filename-at-point): Handle ange-ftp file names.
2641
2642 * frame.el (frame-notice-user-settings): Use assq-delete-all
2643 instead of assoc-delete-all.
2644 (frame-notice-user-settings): Ditto.
2645
2646 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
2647 Don't copy alist.
2648
2649 2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
2650
2651 * calculator.el (calculator-use-menu): New option.
2652 (calculator-initial-bindings): Changed some bindings to work as
2653 macros.
2654 (calculator-forced-input): Removed.
2655 (calculator-restart-other-mode): New variable.
2656 (calculator-mode-map): Set up menu.
2657
2658 2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
2659
2660 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
2661 tags.
2662
2663 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
2664
2665 * viper-cmd.el (viper-envelop-ESC-key): added the option to
2666 translate all ESC key sequences.
2667 (viper-goto-mark-subr): restore markers for files for which
2668 they were saved.
2669 * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
2670 * viper-util.el (viper-set-replace-overlay-glyphs,
2671 viper-set-replace-overlay): always check if the replacement
2672 overlay is live.
2673 * viper.el (viper-vi-state-mode-list): added major modes.
2674 * ediff-wind.el: minor comment changes.
2675 * ediff.el: copyright notice date fix.
2676
2677 2000-02-27 Jason Rumney <jasonr@gnu.org>
2678
2679 * faces.el (face-font-family-alternatives): Add arial to helv.
2680 (mode-line, header-line, tool-bar): Same default as x for w32.
2681 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
2682 face-font-family-alternatives from working.
2683 * term/w32-win.el (mouse-set-font): Do not build fontset from
2684 chosen font.
2685
2686 2000-02-25 Sam Steingold <sds@goems.com>
2687
2688 * emacs-lisp/cl-indent.el (toplvel): Indent `pprint-logical-block'
2689 properly.
2690
2691 2000-02-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2692
2693 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
2694
2695 2000-02-25 Gerd Moellmann <gerd@gnu.org>
2696
2697 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
2698 writable.
2699
2700 * frame.el (busy-cursor-delay-seconds): New option.
2701
2702 2000-02-24 Gerd Moellmann <gerd@gnu.org>
2703
2704 * frame.el (show-cursor-in-non-selected-windows): New option.
2705
2706 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
2707
2708 * diary-lib.el (include-other-diary-files): Undo the selective
2709 display in any included file and don't kill it.
2710
2711 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
2712
2713 * dired.el (dired-mode-map): Don't remove "Edit" from the menu
2714 bar. Menu items converted to (menu-item format, help strings
2715 added.
2716 [downcase, upcase]: Don't enable on MS-DOS.
2717 [symlink, symlinks]: Don't show if make-symbolic-link is not
2718 bound.
2719 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
2720
2721 2000-02-23 Dave Love <fx@gnu.org>
2722
2723 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
2724 (backward-kill-word): Revert addition of * to interactive spec --
2725 it's a feature.
2726
2727 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
2728 (backward-kill-sentence, kill-sentence): Likewise.
2729
2730 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
2731 scratch buffer name.
2732 (gud-format-command): Use int-to-string in ?l case. Simplify
2733 slightly.
2734
2735 * term/w32-win.el (internal-face-interactive): Update prompt for
2736 new read-face-name.
2737
2738 * mail/footnote.el (footnote): Add :version to defgroup.
2739 (footnote-section-tag-regexp): Customize.
2740 (footnote-start-tag, footnote-end-tag): New option.
2741 (footnote-latin-regexp): New variable.
2742 (Footnote-latin): New function.
2743 (footnote-style-alist): Add element for latin style.
2744 (footnote-style): Moved.
2745 (Footnote-goto-footnote): Use eq to test arg.
2746
2747 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
2748
2749 * emacs-lisp/byte-opt.el: Change old backquote syntax.
2750 (byte-compile-trueconstp): Include keywords.
2751 (byte-optimize-quote, byte-optimize-lapcode): Use
2752 byte-compile-const-symbol-p.
2753 (byte-optimize-char-before): New optimization.
2754
2755 * emacs-lisp/bytecomp.el: Change old backquote syntax.
2756 (byte-compile-const-symbol-p): New function.
2757 (byte-compile-constp, byte-compile-out-toplevel)
2758 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
2759 Use it.
2760
2761 * subr.el (define-key-after): Default AFTER to t. Doc fix.
2762
2763 2000-02-23 Kenichi Handa <handa@etl.go.jp>
2764
2765 * international/encoded-kb.el: Be sure to update minor-mode-alist
2766 and minor-mode-map-alist.
2767 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
2768 codes SS2 and SS3 correctly.
2769 (encoded-kbd-self-insert-ccl): New function.
2770 (encoded-kbd-setup-keymap): New function.
2771 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
2772 by calling encoded-kbd-setup-keymap.
2773
2774 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
2775 characters.
2776 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
2777 locally.
2778
2779 2000-02-22 Dave Love <fx@gnu.org>
2780
2781 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
2782 (lisp-mode-map, lisp-interaction-mode-map): Define all inside
2783 defvar.
2784 (lisp-mode-syntax-table): Set up for #|...|# comments.
2785 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
2786 classes. Match `defface'.
2787 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
2788 (eval-defun-1): Fix for defcustom.
2789 (lisp-indent-region): Doc fix.
2790
2791 * subr.el (when, unless, split-string): Doc fix.
2792 (read-passwd): Move call of clear-this-command-keys to the right
2793 place.
2794 (replace-regexps-in-string): New function.
2795
2796 2000-02-22 Gerd Moellmann <gerd@gnu.org>
2797
2798 * help.el (describe-variable): Set syntax table to
2799 emacs-lisp-mode-syntax-table when moving forward over the
2800 symbol's name.
2801
2802 2000-02-22 Dave Love <fx@gnu.org>
2803
2804 * xt-mouse.el: Doc fixes.
2805 (xterm-mouse-position-function): New function, replacing advice of
2806 mouse-position.
2807 (xterm-mouse-mode): Use it. Don't turn on under a window system.
2808
2809 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
2810
2811 2000-02-21 Gerd Moellmann <gerd@gnu.org>
2812
2813 * format.el (format-annotate-single-property-change): Handle
2814 properties.with dotted-list values.
2815 (format-proper-list-p): New function.
2816
2817 * enriched.el (enriched-face-ans): Handle '(foreground-color
2818 . COLOR) and (background-color . COLOR).
2819
2820 2000-02-20 Dave Love <fx@gnu.org>
2821
2822 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
2823 and assignments to it.
2824 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
2825 current local map.
2826 (make-flyspell-overlay): Use it.
2827 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
2828
2829 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
2830 (lm-get-header-re): Defun, not defsubst.
2831 (lm-get-package-name): Defun, not defsubst. Simplify.
2832 (lm-version): Doc fix. Simplify.
2833 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
2834 (lm-crack-address, lm-last-modified-date, lm-commentary)
2835 (lm-verify, lm-synopsis): Simplify.
2836 (lm-report-bug): Require emacsbug. Use compose-mail.
2837
2838 2000-02-20 Gerd Moellmann <gerd@gnu.org>
2839
2840 * dired.el (dired-mode): Call propertized-buffer-identification
2841 to set mode-line-buffer-identification to something having
2842 the right text properties.
2843
2844 * bindings.el (propertized-buffer-identification): New function.
2845
2846 2000-02-20 Dave Love <fx@gnu.org>
2847
2848 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
2849 check for t-mouse too.
2850
2851 * cus-start.el: Make echo-keystrokes `number'.
2852
2853 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
2854
2855 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
2856 Don't call ring-empty-p unless tags-location-ring is bound.
2857 From Noah Friedman <friedman@splode.com>.
2858
2859 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
2860
2861 * progmodes/hideshow.el (hs-flag-region): No longer use
2862 `intangible' overlay property.
2863
2864 (hs-toggle-hiding): New command.
2865 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
2866
2867 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
2868 Fix omission bug: Run `hs-minor-mode-hook' for both activation
2869 and deactivation.
2870
2871 2000-02-18 Gerd Moellmann <gerd@gnu.org>
2872
2873 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
2874
2875 2000-02-17 Gerd Moellmann <gerd@gnu.org>
2876
2877 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
2878
2879 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
2880 of `*' to handle `(* ... *)' comments.
2881
2882 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
2883
2884 * faces.el (list-faces-display): Use display-mouse-p instead of
2885 window-system.
2886
2887 * menu-bar.el (global-map): Menu-bar items converted to the new
2888 format (menu-item..., rearranged for better CUA compliance, and
2889 their names changed for better clarity. Help strings added.
2890
2891 * international/mule-cmds.el (mule-menu-keymap)
2892 (describe-language-environment-map, set-coding-system-map)
2893 (setup-language-environment-map): Convert to new (menu-item...
2894 form, add help strings. Change names of menu items for better
2895 clarity. "Mule" menu-bar item removed (it's now in the "Options"
2896 submenu).
2897
2898 2000-02-17 Gerd Moellmann <gerd@gnu.org>
2899
2900 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
2901 within the code.
2902
2903 2000-02-16 Dave Love <fx@gnu.org>
2904
2905 * faces.el: Don't require custom. Add more specific :groups to
2906 various deffaces.
2907 (set-face-attribute): Purecopy args.
2908 (read-face-name): Default to name at point and use it in prompt.
2909 Remove colon from arg in all callers.
2910 (list-faces-display): Hyperlink to face descriptions and customize
2911 buffers.
2912
2913 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
2914
2915 * wid-edit.el (widget-match-inline): An atom never matches a
2916 list.
2917
2918 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2919
2920 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
2921 at ':' characters by call to split-string.
2922
2923 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2924
2925 * textmodes/bibtex.el: Added RCS version identification.
2926
2927 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2928
2929 * textmodes/bibtex.el: Some temporary comments removed.
2930 (bibtex-field-name, bibtex-entry-type): Made the relationship
2931 explicit.
2932 (bibtex-field-const): Allow capital letters.
2933 (bibtex-start-of-string): Deleted because unused.
2934
2935 * textmodes/bibtex.el: Unified some nomenclature. We no longer
2936 use the term 'reference' to describe a bibtex entry as a whole.
2937 Further, reference keys are no longer called 'labels'.
2938 (bibtex-keys): Renamed to bibtex-reference-keys.
2939 (bibtex-reformat-previous-labels): Renamed to
2940 bibtex-reformat-previous-reference-keys.
2941 (bibtex-reference-type): Renamed to bibtex-entry-type.
2942 (bibtex-reference-head): Renamed to bibtex-entry-head.
2943 (bibtex-reference-maybe-empty-head): Renamed to
2944 bibtex-entry-maybe-empty-head.
2945 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
2946 (bibtex-search-reference): Renamed to bibtex-search-entry.
2947 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
2948 bibtex-enclosing-entry-maybe-empty-head.
2949 (bibtex-entry-field-alist, bibtex-entry-head,
2950 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
2951 bibtex-map-entries, bibtex-search-entry,
2952 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
2953 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
2954 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
2955 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
2956 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
2957 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
2958 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
2959
2960 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2961
2962 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
2963 comment.
2964 (bibtex-format-field-delimiters): New function, functionality
2965 extracted from bibtex-format-entry.
2966 (bibtex-autokey-get-yearfield-digits): New function, functionality
2967 extracted from bibtex-autokey-get-yearfield.
2968
2969 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
2970 entries in order to avoid stack overflow in the regexp matcher if
2971 field contents become large.
2972 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
2973 bibtex-field-string-part-not-braced,
2974 bibtex-field-string-part-no-inner-braces,
2975 bibtex-field-string-part-1-inner-brace,
2976 bibtex-field-string-part-2-inner-braces,
2977 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
2978 bibtex-field-string-quoted, bibtex-field-string,
2979 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
2980 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
2981 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
2982 as parsing is now performed by the following functions.
2983 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
2984 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
2985 bibtex-parse-field-string, bibtex-search-forward-field-string,
2986 bibtex-parse-association, bibtex-field-name-for-parsing,
2987 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
2988 bibtex-search-forward-field, bibtex-search-backward-field,
2989 bibtex-start-of-field, bibtex-end-of-field,
2990 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
2991 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
2992 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
2993 bibtex-parse-string, bibtex-search-forward-string,
2994 bibtex-search-backward-string, bibtex-start-of-string,
2995 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
2996 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
2997 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
2998 entries. Instead of reporting the results of the parsing by
2999 match-beginning or match-end, these functions return data structures
3000 that hold the corresponding positions.
3001 (bibtex-enclosing-field): Changed to also report field boundaries by
3002 return values rather than by match-beginning or match-end. The
3003 following functions have been adapted to use the new parsing
3004 functions.
3005 (bibtex-skip-to-valid-entry, bibtex-search-reference,
3006 bibtex-enclosing-field, bibtex-format-entry,
3007 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
3008 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
3009 bibtex-print-help-message, bibtex-end-of-entry,
3010 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
3011 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
3012 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
3013 method for parsing.
3014 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
3015 bibtex-map-entries, bibtex-flash-head,
3016 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
3017 bibtex-autokey-change, bibtex-autokey-get-namefield,
3018 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
3019 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
3020 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
3021 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
3022 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
3023 order to make the new binding of case-fold-search immediately
3024 visible.
3025
3026 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3027
3028 * textmodes/bibtex.el: Copyright notice is up to date.
3029 Added constant 'bibtex-maintainer-salutation.
3030
3031 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
3032 than make-temp-name, use match-string-no-properties and eliminate
3033 a quadratic behavior when building bibtex-strings.
3034
3035 * bibtex.el (bibtex-reference-key): Accept string entries whose
3036 reference key contains upper case letters.
3037
3038 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3039
3040 * bibtex.el (bibtex-reference-head): Allow entries to start with
3041 a new line.
3042
3043 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3044
3045 * bibtex.el: Hiding of entry bodies is not longer provided by
3046 bibtex.el directly. Instead the hideshow package can be used.
3047 Added a special bibtex entry to hs-special-modes-alist.
3048 (bibtex-hs-forward-sexp): Added for hideshow.el.
3049
3050 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3051
3052 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
3053 at ':' characters by call to split-string.
3054
3055 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3056
3057 * textmodes/bibtex.el: Added RCS version identification.
3058
3059 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3060
3061 * textmodes/bibtex.el: Some temporary comments removed.
3062 (bibtex-field-name, bibtex-entry-type): Made the relationship
3063 explicit.
3064 (bibtex-field-const): Allow capital letters.
3065 (bibtex-start-of-string): Deleted because unused.
3066
3067 * textmodes/bibtex.el: Unified some nomenclature. We no longer
3068 use the term 'reference' to describe a bibtex entry as a whole.
3069 Further, reference keys are no longer called 'labels'.
3070 (bibtex-keys): Renamed to bibtex-reference-keys.
3071 (bibtex-reformat-previous-labels): Renamed to
3072 bibtex-reformat-previous-reference-keys.
3073 (bibtex-reference-type): Renamed to bibtex-entry-type.
3074 (bibtex-reference-head): Renamed to bibtex-entry-head.
3075 (bibtex-reference-maybe-empty-head): Renamed to
3076 bibtex-entry-maybe-empty-head.
3077 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
3078 (bibtex-search-reference): Renamed to bibtex-search-entry.
3079 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
3080 bibtex-enclosing-entry-maybe-empty-head.
3081 (bibtex-entry-field-alist, bibtex-entry-head,
3082 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
3083 bibtex-map-entries, bibtex-search-entry,
3084 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
3085 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
3086 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
3087 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
3088 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
3089 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
3090 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
3091
3092 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3093
3094 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
3095 comment.
3096 (bibtex-format-field-delimiters): New function, functionality
3097 extracted from bibtex-format-entry.
3098 (bibtex-autokey-get-yearfield-digits): New function, functionality
3099 extracted from bibtex-autokey-get-yearfield.
3100
3101 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
3102 entries in order to avoid stack overflow in the regexp matcher if
3103 field contents become large.
3104 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
3105 bibtex-field-string-part-not-braced,
3106 bibtex-field-string-part-no-inner-braces,
3107 bibtex-field-string-part-1-inner-brace,
3108 bibtex-field-string-part-2-inner-braces,
3109 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
3110 bibtex-field-string-quoted, bibtex-field-string,
3111 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
3112 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
3113 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
3114 as parsing is now performed by the following functions.
3115 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
3116 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
3117 bibtex-parse-field-string, bibtex-search-forward-field-string,
3118 bibtex-parse-association, bibtex-field-name-for-parsing,
3119 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
3120 bibtex-search-forward-field, bibtex-search-backward-field,
3121 bibtex-start-of-field, bibtex-end-of-field,
3122 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
3123 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
3124 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
3125 bibtex-parse-string, bibtex-search-forward-string,
3126 bibtex-search-backward-string, bibtex-start-of-string,
3127 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
3128 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
3129 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
3130 entries. Instead of reporting the results of the parsing by
3131 match-beginning or match-end, these functions return data structures
3132 that hold the corresponding positions.
3133 (bibtex-enclosing-field): Changed to also report field boundaries by
3134 return values rather than by match-beginning or match-end. The
3135 following functions have been adapted to use the new parsing
3136 functions.
3137 (bibtex-skip-to-valid-entry, bibtex-search-reference,
3138 bibtex-enclosing-field, bibtex-format-entry,
3139 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
3140 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
3141 bibtex-print-help-message, bibtex-end-of-entry,
3142 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
3143 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
3144 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
3145 method for parsing.
3146 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
3147 bibtex-map-entries, bibtex-flash-head,
3148 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
3149 bibtex-autokey-change, bibtex-autokey-get-namefield,
3150 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
3151 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
3152 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
3153 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
3154 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
3155 order to make the new binding of case-fold-search immediately
3156 visible.
3157
3158 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3159
3160 * textmodes/bibtex.el: Copyright notice is up to date.
3161 Added constant 'bibtex-maintainer-salutation.
3162
3163 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
3164 than make-temp-name, use match-string-no-properties and eliminate
3165 a quadratic behavior when building bibtex-strings.
3166
3167 * bibtex.el (bibtex-reference-key): Accept string entries whose
3168 reference key contains upper case letters.
3169
3170 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3171
3172 * bibtex.el (bibtex-reference-head): Allow entries to start with
3173 a new line.
3174
3175 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3176
3177 * bibtex.el: Hiding of entry bodies is not longer provided by
3178 bibtex.el directly. Instead the hideshow package can be used.
3179 Added a special bibtex entry to hs-special-modes-alist.
3180 (bibtex-hs-forward-sexp): Added for hideshow.el.
3181
3182 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3183
3184 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
3185 proceedings entry type (for cross referencing). Thanks to Wagner
3186 Toledo Correa for the suggestion.
3187
3188 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
3189
3190 2000-02-14 Kenichi Handa <handa@etl.go.jp>
3191
3192 * international/characters.el: Setup case table for Vietnamese.
3193
3194 2000-02-12 Gerd Moellmann <gerd@gnu.org>
3195
3196 * uniquify.el (toplevel): Require CL at compile time.
3197 (uniquify-push): Removed.
3198
3199 * shadowfile.el (shadow-when): Removed.
3200
3201 * tempo.el (tempo-dolist, tempo-mapc): Removed.
3202 (tempo-process-and-insert-string): Use dolist instead of
3203 tempo-dolist.
3204
3205 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
3206 regexp for paragraph-start.
3207
3208 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
3209 commas as well.
3210
3211 2000-02-10 Dave Love <fx@gnu.org>
3212
3213 * wid-edit.el: (widgets) [defgroup]: Remove url link.
3214 (widget-color-choice-list, widget-color-history, widget-mouse-help):
3215 Deleted.
3216 (widget-specify-field, widget-specify-button): Don't use
3217 widget-mouse-help as help-echo property.
3218 (default): Use #'ignore for :validate and :mouse-down-action.
3219 (checkbox): Add help-echo.
3220 (widget-sexp-validate): Rewritten to clarify error messages.
3221 (character): Use char-valid-p in :match function.
3222 (widget-color-complete): Use facemenu-color-alist.
3223 (widget-color-action): Use facemenu-read-color.
3224
3225 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
3226 set up `caar' &c that we now have.
3227
3228 2000-02-09 Ray Blaak <blaak@gnu.org>
3229
3230 * delphi.el: Make resourcestring a declaration region, like const
3231 and var.
3232
3233 2000-02-09 Dave Love <fx@gnu.org>
3234
3235 * bindings.el (mode-line-input-method-map): New variable.
3236 (mode-line-mule-info): Use it; fix last change.
3237 (mode-line-mode-menu): Move definition.
3238 (mode-line-mouse-sensitive-p): Deleted.
3239 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
3240 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
3241 level.
3242
3243 * startup.el (command-line-1): Don't call
3244 make-mode-line-mouse-sensitive.
3245
3246 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
3247
3248 * mail/rmail.el (rmail-retry-failure): Use
3249 rmail-beginning-of-message before rmail-toggle-header, because the
3250 former toggles headers.
3251
3252 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
3253
3254 * diff-mode.el (diff-kill-junk): New interactive function.
3255 (diff-reverse-direction): Use delete-and-extract-region.
3256 (diff-post-command-hook): Restrict the area so that the hook also works
3257 outside of any diff hunk. This is necessary for the minor-mode.
3258 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
3259 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
3260
3261 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
3262 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
3263 so that it can be used more easily in <foo>-mode-hook. Also make sure
3264 to avoid duplicate entries.
3265 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
3266 (font-lock-remove-keywords): Just as was done for `add', allow it to
3267 work even if font-lock-mode is nil. Also make sure we don't modify
3268 any pre-existing list by forcing a copy-sequence. Finally rename
3269 `major-mode' to `mode'.
3270 (font-lock-fontify-syntactic-anchored-keywords)
3271 (font-lock-fontify-anchored-keywords)
3272 (font-lock-fontify-keywords-region): Use line-end-position.
3273 Don't make `font-lock-multiline' local (it's now done in
3274 font-lock-set-defaults).
3275 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
3276 move the `font-lock-fontified' creation to inside the `unless'.
3277
3278 2000-02-06 Andrew Innes <andrewi@gnu.org>
3279
3280 * term/w32-win.el (x-handle-args): Comment out call to message,
3281 which occurs before window system is initialized.
3282
3283 * makefile.nt: Add support for recompiling lisp code.
3284
3285 2000-02-04 Dave Love <fx@gnu.org>
3286
3287 * bindings.el (mode-line-mule-info): Fix/extend last change.
3288
3289 * completion.el: Replace completion-dolist with dolist.
3290
3291 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
3292 dotimes.
3293
3294 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
3295
3296 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
3297 environment names before they go into the section regexp.
3298
3299 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
3300 char class in regexp.
3301
3302 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
3303 `case-fold-search' to nil.
3304
3305 * progmodes/idlwave.el (idlwave-template): Respect
3306 `idlwave-abbrev-change-case'.
3307 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
3308 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
3309 idlwave-while): respect `idlwave-reserved-word-upcase'.
3310 (idlwave-rw-case): New function.
3311 (idlwave-statement-match): Fixed problem with assignment regexp.
3312 (idlwave-font-lock-keywords): Improved regexp for keyword
3313 parameters.
3314 (idlwave-surround): New argument LENGTH to support padding of
3315 operators longer than 1 char.
3316
3317 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
3318 idlwave-shell-expression-overlay. Implemented printing of
3319 expressions on higher levels of the calling stack.
3320 (idlwave-shell-display-level-in-calling-stack): Restore stack
3321 level.
3322 (idlwave-retrieve-expression-from-level): New function.
3323 (idlwave-shell-last-calling-stack): Variable removed.
3324 (idlwave-shell-reset): Argument action reversed (`visible' to
3325 `hidden'). Also remove stop-line overlay.
3326 (idlwave-shell-calling-stack-routine): New variable.
3327 (idlwave-shell-parse-stack-and-display): Messages now display
3328 negative level numbers.
3329 (idlwave-shell-mode): Set `modeline-format'.
3330 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
3331 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
3332 21.
3333 (idlwave-shell-print-expression-function): New option.
3334
3335 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
3336 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
3337 `tool-bar' instead of `toolbar'.
3338
3339 2000-02-02 Dave Love <fx@gnu.org>
3340
3341 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
3342 emacs-lisp-mode-hook. Don't check for defalias being defined.
3343
3344 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
3345 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
3346 the new builtins directly.
3347
3348 * whitespace.el (whitespace): Add :version to defgroup.
3349
3350 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
3351 Doc fix.
3352
3353 * thingatpt.el (sexp-at-point, symbol-at-point)
3354 (number-at-point, list-at-point): Add autoload cookie.
3355
3356 * recentf.el (recentf): Add :version to defgroup.
3357
3358 * quickurl.el (quickurl): Add :version to defgroup.
3359
3360 * elide-head.el (elide-head): Use point-marker more.
3361
3362 * bs.el (bs): Add :version to defgroup.
3363
3364 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
3365
3366 * progmodes/delphi.el (delphi): Add :version to defgroup.
3367
3368 2000-02-02 Gerd Moellmann <gerd@gnu.org>
3369
3370 * ange-ftp.el (ange-ftp-write-region): Handle case that
3371 succeeding process operation sets a different coding system.
3372
3373 * calculator.el: New file.
3374
3375 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
3376
3377 * frame.el (frames-on-display-list, framep-on-display): New
3378 functions.
3379 (display-mouse-p, display-popup-menus-p, display-graphic-p)
3380 (display-selections-p, display-screens, display-pixel-width)
3381 (display-pixel-height, display-mm-width, display-mm-height)
3382 (display-backing-store, display-save-under, display-planes)
3383 (display-color-cells, display-visual-class): New functions.
3384
3385 * term/tty-colors.el (tty-color-gray-shades): New function.
3386
3387 * faces.el (display-color-p): Use framep-on-display.
3388 (display-grayscale-p): New function.
3389
3390 2000-01-31 Dave Love <fx@gnu.org>
3391
3392 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
3393 (create-fontset-from-x-resource): Don't concat integers.
3394
3395 2000-01-31 Inge Frick <inge@nada.kth.se>
3396
3397 * view.el: Some changes in documentation. Removed some trailing
3398 whitespace. Changed some parameter names to agree with
3399 documentation.
3400 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
3401 window is not deleted. Modifies change 1998-04-26.
3402
3403 2000-01-31 Gerd Moellmann <gerd@gnu.org>
3404
3405 * windmove.el: New file.
3406
3407 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
3408 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
3409 progmodes/ebnf-yac.el: Update copyright and license info.
3410
3411 * jit-lock.el (jit-lock-function): Widen before calculating end
3412 position.
3413 (jit-lock-stealth-chunk-start): Rewritten.
3414
3415 * info.el (Info-title-face-alist): Removed.
3416 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
3417 faces.
3418 (Info-fontify-node): Use these faces.
3419
3420 2000-01-30 Gerd Moellmann <gerd@gnu.org>
3421
3422 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
3423 (cl-macro-list1): Recognize `&allow-other-keys' instead of
3424 `&allow-other-keywords'.
3425
3426 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
3427 the list of directories scanned heuristically.
3428
3429 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
3430 exist.
3431
3432 2000-01-30 Jason Rumney <jasonr@gnu.org>
3433
3434 * w32-fns.el: Define w32-tty-standard-colors.
3435
3436 * startup.el (command-line): Use w32-tty-standard-colors when in
3437 w32 console mode.
3438
3439 2000-01-30 Dave Love <fx@gnu.org>
3440
3441 * jka-compr.el (jka-compr-load): Fix up load-history.
3442
3443 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
3444
3445 * emacs-lisp/cl-macs.el: Revert previous change.
3446
3447 2000-01-29 Dave Love <fx@gnu.org>
3448
3449 * facemenu.el: Purecopy various strings.
3450
3451 * timezone.el (timezone-fix-time): Window against 69 for two-digit
3452 years. Deal with three-digit years.
3453
3454 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
3455 defconst, purecopy.
3456 (help-back-label): Purecopy it.
3457
3458 2000-01-18 Gerd Moellmann <gerd@gnu.org>
3459
3460 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
3461 variable. If non-nil, order the buffer list according to the
3462 currently selected frame.
3463 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
3464 non-nil, pass the selected frame to function buffer-list.
3465
3466 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3467
3468 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
3469
3470 2000-01-28 Dave Love <fx@gnu.org>
3471
3472 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
3473
3474 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
3475 Don't use lisp-indent-hook property.
3476 (cl-abs): Remove.
3477
3478 * subr.el: Move out indent and edebug specs for when and unless.
3479
3480 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
3481 when, unless.
3482
3483 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
3484 unless, when.
3485
3486 2000-01-28 Gerd Moellmann <gerd@gnu.org>
3487
3488 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
3489 `collecting' as synonym for `collect'.
3490
3491 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
3492 for the case it contains spaces.
3493
3494 * simple.el (what-cursor-position): Change formatting of
3495 messages.
3496
3497 * frame.el (delete-other-frames): New function.
3498 (toplevel): Bind it to C-x 5 1.
3499
3500 * sort.el (sort-numeric-base): New option.
3501 (sort-numeric-fields): If number starts with `0' or `0[xX[',
3502 interpret it as octal or hexadecimal. Use sort-numeric-base
3503 as default base.
3504
3505 * progmodes/glasses.el: New file.
3506
3507 2000-01-27 Gerd Moellmann <gerd@gnu.org>
3508
3509 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
3510 userids differently.
3511
3512 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
3513 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
3514 progmodes/ebnf-yac.el: New files.
3515
3516 2000-01-26 Dave Love <fx@gnu.org>
3517
3518 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
3519 on a function with an empty body. [From Eric Ludlam.]
3520
3521 2000-01-25 Andre Spiegel <spiegel@gnu.org>
3522
3523 * vc.el (vc-version-diff): Make sure file name is expanded.
3524
3525 2000-01-25 Gerd Moellmann <gerd@gnu.org>
3526
3527 * scroll-bar.el (scroll-bar-timer): Variable removed.
3528 (scroll-bar-toolkit-scroll): Don't use a timer.
3529
3530 2000-01-25 Kenichi Handa <handa@etl.go.jp>
3531
3532 * language/thai-util.el (thai-composition-function): Delete
3533 superfluous `a'.
3534
3535 2000-01-24 Dave Love <fx@gnu.org>
3536
3537 * fortran.el (fortran-mode): Use beginning-of-defun-function,
3538 end-of-defun-function.
3539
3540 * font-lock.el (turn-on-font-lock): Don't depend on window-system
3541 &c.
3542
3543 2000-01-22 Jason Rumney <jasonr@gnu.org>
3544
3545 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
3546 conflicts with new face support.
3547
3548 2000-01-22 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3549
3550 * replace.el (query-replace): Rename last arg to DELIMITED.
3551 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
3552 (query-replace-regexp): Likewise.
3553
3554 2000-01-20 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3555
3556 * subr.el (with-syntax-table): Use make-symbol, not gensym.
3557
3558 * emacs-lisp/lisp.el (beginning-of-defun-function):
3559 Variable renamed from beginning-of-defun.
3560 Do not call make-variable-buffer-local.
3561 (beginning-of-defun-raw): Use new variable name; doc fix.
3562 (beginning-of-defun): Doc fix.
3563 (end-of-defun-function): Variable renamed from end-of-defun.
3564 Do not call make-variable-buffer-local.
3565 (end-of-defun): Use new variable name; doc fix.
3566
3567 * subr.el (dolist, dotimes): Copied from cl-macs.el
3568 and made to work.
3569
3570 * mail/undigest.el (rmail-digest-end-regexps):
3571 Variable replaces rmail-digest-end-regexp.
3572 Allows multiple regexps for detecting the end line.
3573 (undigestify-rmail-message): Corresponding changes.
3574
3575 2000-01-19 Dave Love <fx@gnu.org>
3576
3577 * files.el (user-init-file): Don't declare here -- is primitive.
3578
3579 * startup.el (command-line): Check for compiled user-init-file and
3580 set to uncompiled version if necessary.
3581
3582 2000-01-18 Gerd Moellmann <gerd@gnu.org>
3583
3584 * mail/undigest.el (rmail-digest-end-regexp): New user option.
3585 (undigestify-rmail-message): Use it.
3586
3587 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
3588
3589 2000-01-17 Gerd Moellmann <gerd@gnu.org>
3590
3591 * tmm.el (tmm-goto-completions): Adapt to prompt being part
3592 of mini-buffer.
3593
3594 2000-01-14 Gerd Moellmann <gerd@gnu.org>
3595
3596 * emacs-lisp/copyright.el (copyright-update): Removed the
3597 requirement for a trailing space from `copyright-regexp', to
3598 support copyrights with owner specified on a separate line..
3599
3600 * align.el: New file.
3601
3602 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
3603
3604 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
3605
3606 2000-01-13 Dave Love <fx@gnu.org>
3607
3608 * ph.el: Removed. (Obsoleted by EUDC.)
3609
3610 2000-01-13 Gerd Moellmann <gerd@gnu.org>
3611
3612 * net/eudc.el (toplevel): Remove autoloaded code installing
3613 menu with easymenu, because that causes build problems.
3614
3615 * frame.el (frame-notice-user-settings): New variable.
3616 (frame-notice-user-settings): Don't modify frame parameters
3617 if called a second time.
3618
3619 2000-01-13 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3620
3621 * frame.el (frame-notice-user-settings):
3622 Notice default-frame-parameters even for non-window frames.
3623
3624 2000-01-13 Gerd Moellmann <gerd@gnu.org>
3625
3626 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
3627 for Emacs.
3628 (eudc-bob-can-display-inline-images): Extend for Emacs.
3629 (eudc-bob-toggle-inline-display): Ditto.
3630 (eudc-bob-display-jpeg): Ditto.
3631
3632 2000-01-12 Gerd Moellmann <gerd@gnu.org>
3633
3634 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
3635 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
3636 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
3637
3638 * add-log.el (add-change-log-entry): Fix error trying an `(insert
3639 nil)'.
3640
3641 * subdirs.el: Add `net' directory.
3642
3643 * net: New directory.
3644
3645 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
3646 eval-last-sexp. Don't bind debug-on-error here.
3647 (eval-last-sexp): New function. Bind debug-on-error if
3648 eval-expression-debug-on-error is non-nil.
3649 (eval-defun-2, eval-defun): Likewise.
3650
3651 * simple.el (eval-expression): Don't bind debug-on-error if
3652 eval-expression-debug-on-error is nil. Detect changed
3653 debug-on-error, and propagate new value to global binding, if
3654 eval-expression-debug-on-error is non-nil,
3655 (eval-expression-debug-on-error): Change doc string.
3656
3657 2000-01-11 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3658
3659 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
3660
3661 * emacs-lisp/lisp-mode.el (with-syntax-table):
3662 Set up lisp-indent-function property.
3663
3664 * subr.el (with-syntax-table): Moved from simple.el.
3665
3666 * simple.el (with-syntax-table): Moved to subr.el.
3667
3668 2000-01-11 Gerd Moellmann <gerd@gnu.org>
3669
3670 * tmm.el (tmm-shortcut): Delete region after prompt instead
3671 of erasing buffer.
3672
3673 * textmodes/fill.el (fill-common-string-prefix): New function.
3674 (fill-context-prefix): Use the longest common prefix of first
3675 and second line fill prefix, if there is one.
3676
3677 2000-01-11 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3678
3679 * array.el (array-mode): Don't use make-variable-buffer-local.
3680 Use make-local-variable for `truncate-lines'.
3681
3682 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
3683
3684 * add-log.el (add-log-current-defun): Handle user-defined
3685 add-log-current-function returning nil,
3686
3687 * add-log.el (add-change-log-entry): Insert version number
3688 if having found a current function
3689
3690 * add-log.el (add-log-current-defun): Call
3691 `add-log-current-defun-function'. Try matches at level 0 and
3692 level 1. Strip whitespace from defun found.
3693
3694 2000-01-10 John Wiegley <johnw@gnu.org>
3695
3696 * allout.el (isearch-done/outline-provisions): Added `edit'
3697 argument to correspond with the current definition of
3698 `isearch-done'.
3699
3700 2000-01-10 Dave Love <fx@gnu.org>
3701
3702 * elide-head.el (elide-head): Use point-marker, not point.
3703
3704 2000-01-10 Gerd Moellmann <gerd@gnu.org>
3705
3706 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
3707 before and after the year 2000.
3708
3709 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
3710 Add ispell- prefix.
3711
3712 2000-01-10 Ken Stevens <k.stevens@ieee.org>
3713
3714 * ispell.el: Only define dictionaries in menus when they exist.
3715 (version18p): New variable.
3716 (version20p): New variable.
3717 (xemacsp): New variable.
3718 (ispell-choices-win-default-height): Fix for XEmacs visibility.
3719 (ispell-dictionary-alist1): Added Brasileiro dictionary.
3720 (ispell-dictionary-alist6): Russian command lines no longer accept
3721 run-together words.
3722 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
3723 (ispell-dictionary-alist): Add koi8-r to customize definition.
3724 (check-ispell-version): Added documentation string. Returns
3725 library path when called non-interactively.
3726 (ispell-menu-map-needed): Uses new variables.
3727 (ispell-library-path): New variable.
3728 (ispell-decode-string): XEmacs fix for bogus variable bindings.
3729 (ispell-word): Improved documentation string. Test for valid
3730 character mappings. Correctly check typed in word changes that can
3731 result in single words split into multiple words. Returns
3732 replacement word.
3733 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
3734 replace in recursive query replace mode. Help message for
3735 recursive edit mode.
3736 (ispell-show-choices): Protect against bad framepop bindings.
3737 (ispell-help): Fix to work with XEmacs.
3738 (ispell-highlight-spelling-error): Use new variables.
3739 (ispell-overlay-window): Fix to work with XEmacs.
3740 (ispell-parse-output): Passed and returns location information
3741 tracking spelling corrections. Doesn't recheck same word on
3742 current line.
3743 (ispell-init-process): Protect against bogus XEmacs variable binding.
3744 Fix call to single argument in sleep-for. Use new variables.
3745 (ispell-region): Passed and returns location information tracking
3746 spelling corrections. Doesn't check same word on current line.
3747 Improved documentation string. Doesn't resend a line already
3748 checked to the ispell process - fixes bug in LaTeX parsing.
3749 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
3750 (ispell-skip-region): No longer skips <TT> in SGML.
3751 (ispell-process-line): Tracks location information with spelling
3752 corrections. Added documentation string. Accounts for words
3753 already accepted on this line. Don't allow query-replace on line
3754 starting with math characters. Doesn't resend a line already sent
3755 to ispell process. Fixes alignment error bug.
3756
3757 2000-01-10 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3758
3759 * dired-x.el (dired-guess-shell-alist-default):
3760 Suggest xloadimage, which is free, not xv, which isn't.
3761
3762 * ange-ftp.el (ange-ftp-file-name-nondirectory):
3763 Don't ever include the host name or user name in the value.
3764
3765 2000-01-09 Gerd Moellmann <gerd@gnu.org>
3766
3767 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
3768 of a real newline.
3769
3770 2000-01-09 Stephen Eglen <stephen@gnu.org>
3771
3772 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
3773 for .png files.
3774
3775 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
3776
3777 * cus-edit.el (custom-hook-convert-widget): Fix comment.
3778
3779 2000-01-09 Gerd Moellmann <gerd@gnu.org>
3780
3781 * progmodes/cperl-mode.el: Replace ^F with ^L.
3782
3783 * sendmail.el (toplevel): Provide `sendmail' when compiling
3784 before `require'ing rmail and mailalias to prevent infinite
3785 recursion.
3786
3787 2000-01-08 Dave Love <fx@gnu.org>
3788
3789 * emacs-lisp/backquote.el: Remove inappropriate customization
3790 (allowing custom.el to use backquote).
3791
3792 2000-01-07 Dave Love <fx@gnu.org>
3793
3794 * add-log.el (add-log-debugging): Deleted.
3795 (add-change-log-entry): Treat a backup FILE-NAME as its parent
3796 file. Remove debugging code.
3797 (change-log-get-method-definition, change-log-name): Add doc.
3798 (change-log-sortable-date-at): New function.
3799 (change-log-merge): New command.
3800
3801 * time.el (display-time-string-forms): Make the Mail string active.
3802 (display-time-update): Provide help-echo for load average.
3803
3804 * bindings.el (make-mode-line-mouse2-map): New function.
3805 (mode-line-modified): Use it and simplify.
3806 (mode-line-mule-info): Provide help-echo info.
3807 (minor-mode-alist): Activate the strings.
3808 (make-mode-line-mouse-sensitive): Simplify for
3809 mode-line-buffer-identification.
3810
3811 2000-01-07 Gerd Moellmann <gerd@gnu.org>
3812
3813 * play/pong.el: New file.
3814
3815 2000-01-06 Dave Love <fx@gnu.org>
3816
3817 * array.el: Assorted cleanups for compiler warnings, doc strings,
3818 `array-' prefix for symbols.
3819
3820 2000-01-05 Dave Love <fx@gnu.org>
3821
3822 * textmodes/outline.el (outline-mode-menu-bar-map): Add
3823 outline-headers-as-kill.
3824 (outline-mode): Define imenu-generic-expression.
3825 (outline-headers-as-kill): New command.
3826
3827 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
3828 from paragraph-start.
3829 (paragraph-indent-minor-mode): New command.
3830
3831 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
3832 M-C-e, M-C-h, C-j, C-xnd, TAB.
3833 (fortran-mode): Set beginning-of-defun, end-of-defun.
3834 (fortran-column-ruler): Simplify.
3835 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
3836 (fortran-with-subprogram-narrowing): Likewise.
3837 (fortran-indent-subprogram): Call mark-defun.
3838 (fortran-check-for-matching-do): Change narrowing.
3839
3840 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
3841 (cl-lucid-hash-tag): Delete.
3842 (cl-hash-table-p): Correct test for native table.
3843 (cl-hash-table-count): Use hash-table-count.
3844
3845 * browse-url.el (browse-url): Fix case of
3846 browse-url-browser-function being an alist.
3847
3848 2000-01-05 Carsten Dominik <cd@gnu.org>
3849
3850 * textmodes/reftex-vars.el (reftex-parse-file-extension)
3851 (reftex-index-phrase-file-extension): New options.
3852
3853 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
3854 Use new option `reftex-index-phrase-file-extension'.
3855
3856 * textmodes/reftex.el (reftex-access-parse-file): Use new option
3857 `reftex-parse-file-extension'.
3858
3859 2000-01-05 Dave Love <fx@gnu.org>
3860
3861 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
3862 (beginning-of-defun-raw): Use it.
3863 (end-of-defun): New variable.
3864 (end-of-defun): Use it.
3865 (check-parens): New command.
3866
3867 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
3868
3869 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
3870 (hs-show-block): Don't use `mapcar' when not accumulating.
3871
3872 Fix buglet in local variables initialization.
3873
3874 2000-01-05 Andreas Schwab <schwab@suse.de>
3875
3876 * hscroll.el (hscroll): Doc fix.
3877
3878 2000-01-05 Carsten Dominik <cd@gnu.org>
3879
3880 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
3881 idlw-toolbar.
3882
3883 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
3884 file idlw-rinfo.el.
3885 (idlwave-customize): load must read file idlw-shell.el.
3886 (idlwave-create-customize-menu): load must read file idlw-shell.el.
3887
3888 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
3889
3890 * progmodes/idlw-shell.el: Also provide idlwave-shell
3891 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
3892 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
3893
3894 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
3895 both reftex-dcr and reftex-vcr.
3896
3897 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
3898
3899 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3900
3901 * ps-print.el: PostScript code now is in separate files, doc fix.
3902 (ps-print-version): New version number (5.0.3).
3903 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
3904 local.
3905 (ps-spool-config): Initialization fix.
3906 (ps-print-prologue-1, ps-print-prologue-2)
3907 (ps-print-duplex-feature): PostScript code moved to separated file.
3908 (ps-background-image): Little code reformating.
3909 (ps-begin-file, ps-begin-job): Fix code.
3910 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
3911 (ps-prologue-file): New fun.
3912
3913 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3914
3915 * ps-vars.el: Eliminated.
3916
3917 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
3918 `;;;###autoload'.
3919
3920 * ps-print.el: ps-vars eliminated, doc fix.
3921 (ps-print-version): New version number (5.0.2).
3922 (ps-spool-config): Initialization fix.
3923 (ps-print-customize): New fun.
3924
3925 2000-01-04 Gerd Moellmann <gerd@gnu.org>
3926
3927 * autorevert.el (auto-revert-mode): Return value of
3928 auto-revert-mode.
3929
3930 2000-01-04 Dave Love <fx@gnu.org>
3931
3932 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
3933 menu items.
3934
3935 2000-01-03 Dave Love <fx@gnu.org>
3936
3937 * elide-head.el (elide-head) [defgroup]: Add :version.
3938
3939 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
3940 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
3941 `cl-hash-table-p', not `hash-table-p'.
3942 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
3943
3944 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
3945
3946 * faces.el (face-read-integer, read-face-attribute)
3947 (color-defined-p, color-values): unspecified-{f,b}g are now
3948 strings.
3949
3950 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
3951
3952 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
3953 at comment end, and re-insert them after filling.
3954
3955 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
3956
3957 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
3958 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
3959 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
3960
3961 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
3962
3963 * term/x-win.el (xw-defined-colors): Call color-supported-p,
3964 the new name of face-color-supported-p.
3965
3966 * term/w32-win.el (xw-defined-colors): Likewise.
3967
3968 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
3969
3970 * simple.el (completion-setup-function): Count completion-size
3971 from minibuffer-prompt-end, not from point-min.
3972
3973 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
3974
3975 * faces.el (read-face-attribute, defined-colors, color-defined-p):
3976 Pass the frame to tty-color-* functions.
3977 (display-color-p, frame-set-background-mode): Pass the frame to
3978 tty-display-color-p.
3979
3980 * term/tty-colors.el (tty-defined-color-alist): Renamed from
3981 tty-color-alist.
3982 (tty-color-alist, tty-modify-color-alist): New functions.
3983 (tty-color-define, tty-color-clear, tty-color-approximate)
3984 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
3985 an optional parameter FRAME.
3986
3987 2000-01-01 Gerd Moellmann <gerd@gnu.org>
3988
3989 * image.el (create-image, defimage): Don't assume image data is a
3990 string.
3991
3992 * image.el (defimage): Handle specifications containing :data
3993 instead of :file.
3994 (image-type-from-data): New function.
3995 (image-type-from-file-header): Use it.
3996 (create-image): Add parameter DATA-P.
3997
3998 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3999
4000 * echistory.el (electric-command-history): Call Command-history-setup
4001 and command-history-mode using their new conventions.
4002
4003 * chistory.el (Command-history-setup): Don't switch buffers. Take
4004 no args, and do not set major-mode, mode-name or the local map.
4005 (command-history-mode): New function, does some of those things
4006 Command-history-setup used to do.
4007 (list-command-history): Call command-history-mode, not
4008 Command-history-setup.
4009 (command-history): Renamed from command-history-mode.
4010
4011 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4012
4013 * arc-mode.el (archive-mode-map): Bind q to quit-window.
4014
4015 1999-12-31 William M. Perry <wmperry@aventail.com>
4016
4017 * image.el (defimage): Images with the `:data' keyword should be
4018 considered valid as well.
4019
4020 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4021
4022 * dired.el (dired-get-filename): Don't call file-name-absolute-p
4023 with FILE if FILE is nil.
4024
4025 1999-12-30 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4026
4027 * simple.el (choose-completion-string): In minibuffer,
4028 do not delete the prompt string.
4029
4030 1999-12-30 Gerd Moellmann <gerd@gnu.org>
4031
4032 * bindings.el (make-mode-line-mouse-sensitive): Copy keymap
4033 assigned to mode-line-mode-menu because bindings.el is dumped with
4034 Emacs, and thus the lists used for menu-item definition will be
4035 copied to pure space. Emacs' menu code (parse_menu_item) doesn't
4036 like pure menu item definitions.
4037
4038 * expand.el (expand-abbrev-hook): Return t if expansion was
4039 done, nil otherwise.
4040
4041 1999-12-29 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4042
4043 * tar-mode.el (tar-mode-map): Bind q to quit-window, not tar-quit.
4044 (tar-quit): Function deleted.
4045
4046 1999-12-29 Thien-Thi Nguyen <ttn@delysid.gnu.org>
4047
4048 * progmodes/hideshow.el (hs-minor-mode-menu): Fix omission bug;
4049 was used but not declared.
4050
4051 (hs-discard-overlays, hs-isearch-show, hs-isearch-show-temporary,
4052 hs-find-block-beginning): Add or modify docstrings.
4053
4054 (hs-isearch-show): Rewrite.
4055
4056 1999-12-28 Gerd Moellmann <gerd@gnu.org>
4057
4058 * icomplete.el (icomplete-exhibit): Adapt to prompt in buffer.
4059
4060 * progmodes/cc-cmds.el (c-fill-paragraph): Don't delete white
4061 space in front of a C-style comment end.
4062
4063 1999-12-28 Eli Zaretskii <eliz@is.elta.co.il>
4064
4065 * startup.el (command-line-1): Make mode line mouse-sensitive for
4066 the MS-DOS version as well.
4067
4068 1999-12-28 Gerd Moellmann <gerd@gnu.org>
4069
4070 * bs.el: New file.
4071
4072 1999-12-28 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4073
4074 * textmodes/ispell.el (ispell-process-line):
4075 Add local var line-offset to adjust for the change
4076 in positions within the line, due to previous replacements.
4077
4078 1999-12-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4079
4080 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
4081 Doc fixes.
4082
4083 1999-12-27 Gerd Moellmann <gerd@gnu.org>
4084
4085 * add-log.el (change-log-version-number-regexp-list)
4086 (change-log-version-info-enabled): Change :version to 21.1.
4087 (toplevel): Require CL when compiling.
4088
4089 1999-12-27 Jari Aalto <jari.aalto@poboxes.com>
4090
4091 * add-log.el (change-log-version-number-regexp-list): Added tag
4092 :version 20.6
4093 (change-log-version-info-enabled): Added tag :version 20.6
4094
4095 1999-12-27 Jari Aalto <jari.aalto@poboxes.com>
4096
4097 * add-log.el: More general version number search with
4098 user-configurable regexp list.
4099 (change-log-version-number-regexp-list): New user variable.
4100 (change-log-find-version): Rewritten. Use user-configurable
4101 version numbering regexp list
4102 change-log-version-number-regexp-list.
4103 (change-log-find-version): Renamed to
4104 change-log-version-number-search
4105 (add-log-file-name-function): New.
4106 (change-log-search-vc-number): Added END paramaeter. Added doc
4107 string to function.
4108 (change-log-version-rcs): Renamed. Was
4109 change-log-search-vc-number.
4110
4111 1999-12-26 Thien-Thi Nguyen <ttn@delysid.gnu.org>
4112
4113 * progmodes/compile.el (compilation-goto-locus): Delete hideshow
4114 overlays if they interfere.
4115 (compilation-find-file): Make intangible overlays tangible.
4116
4117 * progmodes/hideshow.el: Generally, synch w/ maintainer
4118 version 5.9.
4119
4120 (hs-show-hidden-short-form): Delete var; hard-code uses as `t'.
4121
4122 (hs-minor-mode-hook): Don't initialize.
4123
4124 (hs-special-modes-alist): Rewrite value and docstring.
4125
4126 (hs-minor-mode-prefix): Delete unused var.
4127
4128 (hs-block-start-mdata-select): New var, buffer local.
4129
4130 (hs-headline): New var.
4131
4132 (hs-match-data, hs-forward-sexp): New funcs.
4133
4134 (hs-hide-comment-region): New func.
4135
4136 (hs-discard-overlays, hs-flag-region, hs-hide-block-at-point,
4137 hs-safety-is-job-n, hs-hide-initial-comment-block,
4138 hs-inside-comment-p, hs-grok-mode-type, hs-find-block-beginning,
4139 hs-hide-level-recursive, hs-life-goes-on, hs-already-hidden-p,
4140 hs-c-like-adjust-block-beginning, hs-hide-all, hs-show-all,
4141 hs-hide-block, hs-show-block, hs-show-region, hs-hide-level,
4142 hs-mouse-toggle-hiding, hs-minor-mode): Rewrite.
4143
4144 (hs-isearch-show): Renamed from `hs-isearch-open-invisible'.
4145 (hs-isearch-show-temporary): New funcs.
4146
4147 (hs-show-block-at-point, java-hs-forward-sexp): Delete funcs.
4148
4149 (hs-hide-all, hs-mouse-toggle-hiding): Don't autoload.
4150
4151 When constructing menu, use `[(shift button2)]' notation.
4152
4153 1999-12-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4154
4155 * jka-compr.el (jka-compr-info-file-magic-bytes): New function.
4156 (jka-compr-compression-info-list): Add new elt to each vector.
4157 (jka-compr-write-region): Don't compress the data if it is
4158 already compressed.
4159
4160 * jka-compr.el (jka-compr-really-do-compress): New variable.
4161 (jka-compr-insert-file-contents): Set jka-compr-really-do-compress
4162 if visiting.
4163 (jka-compr-write-region): Set jka-compr-really-do-compress
4164 if visiting. Test it when deciding to compress.
4165
4166 1999-12-22 Gerd Moellmann <gerd@gnu.org>
4167
4168 * progmodes/sh-script.el (sh-mode): Don't call sh-set-shell
4169 with third argument t.
4170
4171 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
4172
4173 * antlr-mode.el: Version 1.2 is released.
4174 (antlr): This package has a web page.
4175
4176 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
4177
4178 * antlr-mode.el: Menu/keymap additions for commenting/uncommenting
4179 regions. Suggested by Dale Davis <Dale_Davis@securify.com>.
4180 (antlr-mode-map): New binding [C-c C-c].
4181 (antlr-mode-menu): New entries.
4182
4183 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
4184
4185 * antlr-mode.el: Respect Emacs conventions.
4186 ((require 'cl)): Only use during compilation.
4187 (antlr-language-for-option): New function to avoid using `find'.
4188 (antlr-mode): Use it.
4189 (antlr-with-syntax-table): Define new instead using XEmacs' one.
4190 (antlr-imenu-create-index-function): Change accordingly.
4191 (antlr-inside-rule-p): Ditto.
4192 (antlr-end-of-rule): Ditto.
4193 (antlr-end-of-body): Ditto.
4194 (antlr-beginning-of-rule): Ditto.
4195 (antlr-indent-line): Ditto.
4196
4197 1999-11-21 Christoph Wedler <Christoph.Wedler@sap.com>
4198
4199 * antlr-mode.el: Really use `antlr-tab-offset-alist'.
4200 (antlr-set-tabs): Don't use hard-coded values.
4201
4202 * antlr-mode.el: Minor navigation changes. Not perfect, but this
4203 won't be possible without a huge time penalty.
4204 (antlr-skip-exception-part): Be more specific.
4205 (antlr-skip-file-prelude): Don't skip action prelude of next rule.
4206 Renamed from `antlr-skip-grammar-header'.
4207 (antlr-next-rule): Change accordingly.
4208 (antlr-end-of-body): Ditto. Better error message.
4209 (antlr-beginning-of-body): Better error message.
4210 (antlr-imenu-create-index-function): Skip rule action prelude.
4211
4212 * antlr-mode.el: Minor syntax highlighting changes.
4213 (antlr-font-lock-default-face): Deletia.
4214 (antlr-font-lock-tokendef-face): Changed color.
4215 (antlr-font-lock-tokenref-face): Changed color.
4216 (antlr-font-lock-literal-face): Changed color.
4217 (antlr-font-lock-additional-keywords): Minor changes.
4218
4219 1999-12-20 Carsten Dominik <cd@gnu.org>
4220
4221 * progmodes/idlwave.el: New file.
4222
4223 * progmodes/idlwave-rinfo.el: New file.
4224
4225 * progmodes/idlwave-shell.el: New file.
4226
4227 * progmodes/idlwave-toolbar.el: New file.
4228
4229 * files.el (auto-mode-alist): idlwave-mode default for .pro files.
4230
4231 1999-12-21 Gerd Moellmann <gerd@gnu.org>
4232
4233 * progmodes/cwarn.el: New file.
4234
4235 1999-12-19 Gerd Moellmann <gerd@gnu.org>
4236
4237 * bindings.el (completion-ignored-extensions): Add .pdf.
4238
4239 1999-12-19 Eli Zaretskii <eliz@is.elta.co.il>
4240
4241 * version.el: Put the version info into binary on MS-DOS as well.
4242
4243 1999-12-19 Gerd Moellmann <gerd@gnu.org>
4244
4245 * emacs-lisp/debug.el (debugger-continue): Don't continue if
4246 debugger-may-continue is nil.
4247
4248 1999-12-18 Dave Love <fx@gnu.org>
4249
4250 * emacs-lisp/cl-macs.el: Remove conditional definition of
4251 eval-when-compile. Don't specify abs, expt, gethash,
4252 hash-table-count, hash-table-p as side-effect-free here.
4253 (cl-emacs-type): Don't declare.
4254 (cl-compile-time-init): Remove Emacs 18 compiler patch.
4255 (cl-parse-loop-clause): Remove compatibility code.
4256
4257 * emacs-lisp/byte-opt.el: Don't put optimization info on `eql'.
4258 (side-effect-free-fns): Add gethash, hash-table-count.
4259 (side-effect-and-error-free-fns): Add hash-table-p.
4260
4261 * emacs-lisp/cl.el: Remove Emacs 18 compatibility code. Prepend
4262 `cl-' to autoload names for some hash functions. Don't autoload
4263 eval-when-compile. Don't provide mini-cl.
4264 (cl-emacs-type): Remove.
4265 (cl-map-extents): Remove compatibility code.
4266
4267 * emacs-lisp/float.el: Bind free variables.
4268
4269 * emacs-lisp/bytecomp.el (byte-compile-constp): Include keywords.
4270
4271 1999-12-16 Gerd Moellmann <gerd@gnu.org>
4272
4273 * bindings.el (completion-ignored-extensions): Add .tfm.
4274
4275 1999-12-16 Dave Love <fx@gnu.org>
4276
4277 * faces.el (set-face-attribute): Purecopy the attributes set.
4278
4279 * custom.el (custom-declare-variable): Purecopy value.
4280
4281 * emacs-lisp/bytecomp.el (byte-compile-bound-variables): Doc fix.
4282 (byte-extrude-byte-code-vectors): Use remprop.
4283 (byte-compile-lambda): Check that arg is a lambda.
4284
4285 1999-11-16 Anders Lindgren <AndersL@andersl.com>
4286
4287 * font-lock.el: System for adding and removing keywords.
4288 Both local (previously added keyword) and global keywords
4289 can be removed.
4290 (font-lock-remove-keywords): New user-level function.
4291 (font-lock-update-removed-keyword-alist): New internal function.
4292 (font-lock-removed-keywords-alist): New variable.
4293 (font-lock-add-keywords): Updates `font-lock-removed-keywords-alist'.
4294 Empty `font-lock-keywords-alist' when `append' is `set' to avoid
4295 growing datastructures.
4296 (font-lock-set-defaults): Removes keywords stored in
4297 `font-lock-removed-keywords-alist' after local keywords added.
4298
4299 1999-12-16 Anders Lindgren <andersl@andersl.com>
4300
4301 * font-lock.el (c-keywords, c++-keywords): Better "case" support for
4302 complex constant expressions, e.g. "case 1<<A_BIT_NO:".
4303
4304 * font-lock.el (c-keywords): Only highlight preprocessor
4305 directives when spelled correctly.
4306
4307 * font-lock.el (font-lock-match-c++-structor-declaration,
4308 c++-keywords): Fontify constructors and destructors with function
4309 face inside C++ class declarations.
4310
4311 1999-12-16 Gerd Moellmann <gerd@gnu.org>
4312
4313 * progmodes/sh-script.el (sh-mode): If there is no #!-line, use
4314 the shell from sh-shell-file.
4315
4316 * font-lock.el (java-keywords): Add Javadoc tags as of JDK 1.2.1.
4317
4318 1999-12-16 Eli Zaretskii <eliz@is.elta.co.il>
4319
4320 * ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
4321 if one of the files specified cannot be accessed by
4322 file-attributes. Do not strip any leading directories from the
4323 file names, to behave more like `ls' does.
4324
4325 * dired.el (dired-get-filename): Handle absolute file names.
4326 (dired-readin-insert): If argument is a cons, don't print
4327 "wildcard" on the ``total'' line.
4328
4329 1999-12-15 Eli Zaretskii <eliz@is.elta.co.il>
4330
4331 * faces.el (face-read-integer, read-face-attribute)
4332 (color-defined-p, color-values): Allow color values unspecified-fg
4333 and unspecified-bg, handle them as unspecified.
4334
4335 1999-12-15 Carsten Dominik <dominik@astro.uva.nl>
4336
4337 * textmodes/reftex.el: (reftex-compile-variables): respect new
4338 structure of `reftex-index-macro'
4339 (reftex-compile-variables): Use the changed structure of
4340 `reftex-label-alist'.
4341
4342 * textmodes/reftex-vars.el (reftex-index-math-format,
4343 (reftex-toc-max-level): New option.
4344 reftex-index-phrases-search-whole-words,
4345 reftex-index-phrases-case-fold-search,
4346 reftex-index-phrases-skip-indexed-matches,
4347 reftex-index-phrases-wrap-long-lines,
4348 reftex-index-phrases-sort-prefers-entry,
4349 reftex-index-phrases-sort-in-blocks): New options.
4350 (reftex-index-macros): Option structure changed.
4351 (reftex-index-macros-builtin): Added `repeat' item to each entry.
4352 (reftex-label-alist): Additional item in each entry to specify if
4353 the environment should be listed in the TOC.
4354 (eval-when-compile (require 'cl)) added.
4355
4356 * textmodes/reftex-index.el (reftex-index-selection-or-word): No
4357 longer deals with "repeat".
4358 (reftex-index): "repeat property in `reftex-index-macro-alist' is
4359 now used.
4360 (reftex-index-phrases-comment-regexp,
4361 reftex-index-phrases-macrodef-regexp,
4362 reftex-index-phrases-phrase-regexp1,
4363 reftex-index-phrases-phrase-regexp2,
4364 reftex-index-phrases-phrase-regexp12, reftex-index-phrases-help):
4365 New constants.
4366 (reftex-index-phrases-macro-data, reftex-index-phrases-files,
4367 reftex-index-phrases-font-lock-keywords,
4368 reftex-index-phrases-font-lock-defaults, reftex-index-phrases-map,
4369 reftex-index-phrases-restrict-file): New variables.
4370 (reftex-index-phrase-selection-or-word,
4371 reftex-index-visit-phrases-buffer,
4372 reftex-index-initialize-phrases-buffer,
4373 reftex-index-phrases-save-and-return, reftex-index-phrases-mode,
4374 reftex-index-next-phrase, reftex-index-this-phrase,
4375 reftex-index-all-phrases, reftex-index-region-phrases,
4376 reftex-index-phrases-parse-header,
4377 reftex-index-phrases-toggle-restricted, reftex-index-new-phrase,
4378 reftex-index-find-next-conflict-phrase, reftex-index-phrases-info,
4379 reftex-index-phrases-set-macro-key, reftex-index-sort-phrases,
4380 reftex-compare-phrase-lines, reftex-index-make-phrase-regexp,
4381 reftex-index-simplify-phrase, reftex-index-phrases-find-dup-re,
4382 reftex-index-make-replace-string,
4383 reftex-query-index-phrase-globally, reftex-query-index-phrase,
4384 reftex-index-phrase-match-is-indexed,
4385 reftex-index-phrases-fixup-line,
4386 reftex-index-phrases-replace-space,
4387 reftex-index-select-phrases-macro): New functions.
4388 (reftex-index-globalize, reftex-index-globally): functions removed
4389 (eval-when-compile (require 'cl)) added.
4390
4391 * textmodes/reftex-toc.el (reftex-toc-mode): Create new indicator
4392 for max level.
4393 (reftex-toc-max-level-indicator): New variable.
4394 (reftex-toc-max-level): New command.
4395 (reftex-toc-map): New keybinding `t'.
4396 (reftex-toc-help): Constant updated.
4397 (eval-when-compile (require 'cl)) added.
4398
4399 * textmodes/reftex-ref.el (reftex-offer-label-menu): Prefix to
4400 `t' command key can change `reftex-toc-max-level'
4401 (eval-when-compile (require 'cl)) added.
4402
4403 * textmode/reftex-sel (reftex-insert-docstruct): Respect
4404 `reftex-toc-max-level'
4405 (eval-when-compile (require 'cl)) added.
4406
4407 * textmodes/reftex-auc.el (eval-when-compile (require 'cl))
4408 added.
4409
4410 * textmodes/reftex-vcr.el (eval-when-compile (require 'cl))
4411 added.
4412
4413 * textmodes/reftex-cite.el (reftex-citep, reftex-citet): New
4414 commands.
4415 (reftex-citation, reftex-do-citation,
4416 reftex-figure-out-cite-format): Additional argument FORMAT-KEY to
4417 preselect a citation format.
4418 (eval-when-compile (require 'cl)) added.
4419
4420 * textmodes/reftex-parse.el (reftex-context-substring): Optional
4421 parameter to-end
4422 (reftex-section-info): Deal with environment matches.
4423 (eval-when-compile (require 'cl)) added.
4424
4425 * reftex-global.el (eval-when-compile (require 'cl)) added.
4426
4427 1999-12-15 Kenichi Handa <handa@etl.go.jp>
4428
4429 The following changes are for the new composition mechanism. We
4430 have deleted `composition' charset and composite characters,
4431 instead introduced a special text property `composition'.
4432
4433 * composite.el: New file.
4434
4435 * ps-mule.el: Define encode-composition-rule and find-composition
4436 for Emacs 20.4 and the earlier versions.
4437 (ps-mule-init-external-library): Just require a feature for
4438 external libraries.
4439 (ps-mule-prologue): Postscript code modified for new composition.
4440 (ps-mule-find-wrappoint): New arg COMPOSITION.
4441 (ps-mule-plot-string): Delete code for composite characaters.
4442 (ps-mule-plot-composition): New funcion.
4443 (ps-mule-prepare-font-for-components): New function.
4444 (ps-mule-plot-components): New function.
4445 (ps-mule-composition-prologue-generated): Renamed from
4446 ps-mule-cmpchar-prologue-generated.
4447 (ps-mule-composition-prologue): New named from
4448 ps-mule-cmpchar-prologue. Modified for new composition.
4449 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
4450 ps-mule-prepare-cmpchar-font): Deleted.
4451 (ps-mule-string-encoding): New arg NO-SETFONT.
4452 (ps-mule-bitmap-prologue): In Postscript code of BuildGlyphCommon,
4453 check Composing, not Cmpchar
4454 (ps-mule-initialize): Set ps-mule-composition-prologue-generated
4455 to nil.
4456 (ps-mule-begin-job): Check existence of new composition.
4457
4458 * ps-print.el (ps-plot-region): Handle new composition.
4459
4460 * simple.el (what-cursor-position): Show "(composed)" if the
4461 character is composed.
4462
4463 * international/characters.el: Fix cateogries of Lao symbols.
4464
4465 * international/fontset.el (vertical-centering-font-regexp): New
4466 variable.
4467
4468 * international/mule.el (mule-version): Updated to 5.0 (AOI).
4469 (mule-version-date): Updated to 1999.12.7.
4470 (with-category-table): New macro.
4471
4472 * international/mule-cmds.el (encode-coding-char): Don't check
4473 composite character.
4474
4475 * international/mule-conf.el (iso-2022-7bit, iso-2022-7bit-ss2
4476 iso-2022-7bit-lock, iso-2022-7bit-lock-ss2, iso-2022-8bit-ss2,
4477 x-ctext): Give `composition' property t.
4478
4479 * international/mule-util.el (set-nested-alist): Set BRANCHES (if
4480 non-nil) at the tail of ALIST.
4481 (compose-region, decompose-region, decompse-string,
4482 reference-point-alist, compose-chars): Moved to composite.el.
4483 (compose-chars-component, compose-chars-rule,
4484 decompose-composite-char): Deleted.
4485
4486 * international/quail.el (quail-install-map): New optional arg
4487 NAME.
4488 (quail-get-translation): If DEF is a symbol but not a function,
4489 ignore it.
4490 (quail-start-translation): Put a key sequence undefined in the
4491 translation keymap in unread-command-events, not generated-events.
4492 Return parameterized event (compose-last-chars N) if the input
4493 characters should be composed.
4494 (quail-map-definition): If DEF is t, treat it as nil.
4495 (quail-delete-last-char): Delete the quail region.
4496 (quail-show-translations): Don't show list of translations if the
4497 quail package is deterministic.
4498 (quail-completion-max-depth): New variable.
4499 (quail-completion-1): Pay attention to the above variable. Fix
4500 for the case that a translation is a function.
4501 (quail-map-from-table, quail-map-from-table-1,
4502 quail-map-from-table-2): New functions.
4503 (quail-lookup-map-and-concat): New function
4504
4505 * language/devan-util.el: Mostly rewritten.
4506
4507 * language/lao.el: Register lao-composition-function in
4508 composition-function-table.
4509
4510 * language/lao-util.el: Mostly rewritten.
4511
4512 * language/thai.el: Register thai-composition-function in
4513 composition-function-table.
4514 (thai-tis620): Delete `pre-write-conversion' property.
4515
4516 * language/thai-util.el: (thai-category-table): Make it by
4517 make-category-table.
4518 (thai-composition-pattern): New variable.
4519 (thai-compose-region, thai-compose-string): Use
4520 with-category-table.
4521 (thai-post-read-conversion): Just call thai-compose-region.
4522 (thai-pre-write-conversion): Deleted.
4523 (thai-composition-function): New funciton.
4524
4525 * language/tibet-util.el: Most functions rewritten.
4526 (tibetan-char-p): Renamed from tibetan-char-examin.
4527 (tibetan-composable-examin) (tibetan-complete-char-examin)
4528 (tibetan-vertical-stacking) (tibetan-composition): Deleted.
4529 (tibetan-add-components): New function.
4530 (tibetan-composition-function): New function.
4531
4532 * language/tibetan.el: Register tibetan-composition-function in
4533 composition-function-table.
4534 (tibetan-composable-pattern): New variable.
4535 (tibetan-subjoined-transcription-alist): Change key "R" to "+R".
4536 (tibetan-precomposition-rule-alist): Move punctuations to
4537 tibetan-punctuation-transcription-alist and
4538 tibetan-obsolete-glyphs.
4539 (tibetan-punctuation-transcription-alist): New variable.
4540 (tibetan-obsolete-glyphs): New variable.
4541 (tibetan-regexp): Improve the initialization code.
4542
4543 * textmodes/fill.el (fill-find-break-point): Delete codes for
4544 composite characters.
4545 (fill-region-as-paragraph): Likewise.
4546
4547 1999-12-14 Gerd Moellmann <gerd@gnu.org>
4548
4549 * international/mule-cmds.el (default-input-method): Specify
4550 that it should be set after current-language-environment.
4551
4552 * custom.el (custom-handle-keyword): Add :set-after.
4553 (custom-add-dependencies): New function.
4554 (custom-set-variables): Take dependencies between args into
4555 account.
4556
4557 * battery.el (battery): Doc fix.
4558
4559 1999-12-12 Gerd Moellmann <gerd@gnu.org>
4560
4561 * progmodes/cc-make.el: Removed.
4562
4563 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4564
4565 * Release of cc-mode 5.26
4566
4567 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4568
4569 * cc-cmds.el (c-forward-conditional): Handle an arbitrary
4570 target depth. Optionally count #else lines as clause limits,
4571 as suggested by don provan <provan@lucent.com>. #elif
4572 handling fixed.
4573
4574 * cc-cmds.el (c-up-conditional-with-else, c-down-conditional)
4575 (c-down-conditional-with-else): New commands that uses the
4576 added functionality in `c-forward-conditional'.
4577
4578 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4579
4580 * cc-align.el (c-lineup-comment): Preserve the alignment with
4581 a comment on the previous line instead of preserving the
4582 comment-column.
4583
4584 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4585
4586 * Fixes to IDL mode after input from Eric Eide
4587 <eeide@cs.utah.edu>:
4588 * cc-engine.el (c-beginning-of-statement-1): Allow
4589 `c-conditional-key' to be nil, for the benefit of IDL mode.
4590 * cc-engine.el (c-guess-basic-syntax): Ditto.
4591 cc-langs.el (C-IDL-class-key): Fixed. Don't match `class'
4592 but do match CORBA 2.3 `valuetype'.
4593 * cc-langs.el (c-IDL-access-key): New defconst. Should be nil
4594 for IDL.
4595 * cc-langs.el (c-IDL-conditional-key): New defconst. Should
4596 be nil for IDL.
4597 * cc-langs.el (c-IDL-comment-start-regexp): New defconst.
4598 Like C++.
4599 * cc-mode.el (idl-mode): Use new `c-IDL-*' defconsts. Also,
4600 set `c-method-key' and `c-baseclass-key' to nil.
4601
4602 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4603
4604 * cc-menus.el (cc-imenu-c++-generic-expression): Match classes
4605 with nonhanging open braces.
4606
4607 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4608
4609 * cc-align.el: Added docstrings to all lineup functions.
4610
4611 * cc-align.el (c-lineup-java-throws): Handle a hanging throws
4612 keyword.
4613
4614 * cc-align.el (c-lineup-C-comments): Handle free form text
4615 comments. Use c-comment-prefix-regexp and comment-start-skip
4616 instead of hardcoded regexps.
4617
4618 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4619
4620 * cc-cmds.el (c-beginning-of-defun, c-end-of-defun): Fixed eob
4621 behavior and return value as documented.
4622
4623 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4624
4625 * Changes for new style variable init system:
4626 * cc-langs.el (c-common-init): Dito.
4627 * cc-styles.el: c-offsets-alist moved to cc-vars.el since it's
4628 now customizable.
4629 * cc-vars.el: Style variables may now take a value
4630 'set-from-style to make them take their value from the style
4631 system. This value is now the default on all these variables.
4632 * cc-vars.el (c-valid-offset): New function to verify a
4633 syntactic symbol offset setting.
4634 * cc-vars.el (c-offsets-alist): Variable moved from
4635 cc-styles.el since it's now customizable in a similar way to
4636 the other style variables.
4637 * cc-vars.el (c-old-style-variable-behavior): New variable to
4638 revert to the old style init behavior.
4639
4640 * cc-vars.el (c-file-style, c-file-offsets): Made always
4641 buffer local.
4642
4643 * cc-menus.el (cc-imenu-c++-generic-expression): Don't match
4644 the throws clause that might follow the function prototype in
4645 C++.
4646
4647 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4648
4649 * cc-defs.el (c-beginning-of-macro): Fixed bug where point
4650 could move forward for macros that doesn't start in column 0.
4651
4652 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4653
4654 * cc-align.el (c-indent-multi-line-block,
4655 c-lineup-whitesmith-in-block): Two new lineup functions for
4656 use in whitesmith style.
4657
4658 * cc-styles.el (c-style-alist): More fixes to whitesmith
4659 style. It should now handle all different braces uniformly in
4660 both hanging and non-hanging cases.
4661
4662 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4663
4664 * cc-cmds.el (c-indent-exp): Use a marker to save point to
4665 make it stay in the same position relative to the surrounding
4666 text.
4667
4668 * cc-cmds.el (c-fill-paragraph): Force the line comment prefix
4669 when adaptive-fill-mode doesn't manage to get it correct.
4670
4671 * cc-menus.el (cc-imenu-java-generic-expression): Handle types
4672 with dotted notation, e.g. foo.bar.Gnu.
4673
4674 * cc-mode.el (c-initialize-cc-mode): Wrap all function calls
4675 within unwind-protect (previously only some were wrapped so it
4676 would be possible to register mode initialization when full
4677 initialization did not finish).
4678
4679 * cc-styles.el (c-style-alist): Corrected the brace placement
4680 in the whitesmith style. Thanks to Sean Luke
4681 <seanl@cs.umd.edu>. Also extended the bsd and whitesmith
4682 styles with consistent brace placement for all constructs.
4683
4684 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4685
4686 * cc-cmds.el (c-context-line-break): Continue C++ comments too
4687 when point is in the middle of them.
4688
4689 * cc-cmds.el: Line breaking and paragraph filling code
4690 rewritten:
4691 (c-guess-fill-prefix): New function that uses various
4692 heuristics to guess the comment prefix.
4693 (c-fill-paragraph): Rewritten to use `c-guess-fill-prefix'.
4694 It now assumes adaptive filling is active to preserve the line
4695 prefix inside comments.
4696 (c-indent-new-comment-line): Replacement for the now
4697 obsolete `c-comment-line-break-function' that uses
4698 `c-guess-fill-prefix' when appropriate. It now observes the
4699 setting of `comment-multi-line', which has effect in C-style
4700 block comments.
4701
4702 * cc-cmds.el (c-context-line-break): New function intended to
4703 be put on RET. It's essentially `newline-and-indent', but
4704 continues C block comments with the appropriate line prefix.
4705
4706 * cc-cmds.el (c-do-auto-fill): New function put on
4707 `normal-auto-fill-function' to implement the
4708 `c-ignore-auto-fill' variable.
4709
4710 * cc-cmds.el (c-beginning-of-statement): Use
4711 `c-comment-prefix-regexp' to avoid ending up inside the
4712 comment prefix. Better handling of comment starters and
4713 enders. Catch comments better when traversing code. Stop at
4714 preprocessor directives.
4715
4716 * cc-defs.el (c-forward-comment): New subst to hide platform
4717 dependent quirks in `forward-comment'.
4718
4719 * cc-engine.el (c-literal-limits): Added NOT-IN-DELIMITER
4720 argument.
4721 (c-literal-limits-fast): Implemented NEAR and NOT-IN-DELIMITER
4722 arguments. Activate this function by default when
4723 `parse-partial-sexp' supports it (currently Emacs 20.x).
4724
4725 * cc-engine.el (c-guess-basic-syntax): Anchor the `c' syntax
4726 on the comment opener to make constants usable as lineup
4727 arguments.
4728
4729 * cc-align.el (c-lineup-C-comments): Fixes to handle the
4730 changed anchor position in the `c' syntactic symbol. Handle
4731 more than stars in the comment prefix; use the new variable
4732 `c-comment-prefix-regexp'. Don't indent text not preceded by
4733 a comment prefix to the right of the comment opener if it's
4734 long.
4735
4736 * cc-langs.el: Fixes to mode initialization for new line
4737 breaking and paragraph filling method. Adaptive fill mode is
4738 now activated at startup instead of deactivated. The
4739 variables used for adaptive filling and paragraph movement are
4740 also changed to incorporate the value of
4741 `c-comment-prefix-regexp'. `substitute-key-definition' is
4742 used to override some functions in the global map instead of
4743 overriding their default bindings.
4744
4745 * cc-mode.el (java-mode): Modify `paragraph-start' for the
4746 javadoc markup at mode init.
4747
4748 * cc-mode.el (c-setup-filladapt): A new convenience function
4749 to configure Kyle E. Jones' Filladapt mode for CC Mode. This
4750 function is intended to be used explicitly by the end user
4751 only.
4752
4753 * cc-vars.el (c-comment-prefix-regexp): New variable used to
4754 recognize the comment fill prefix inside comments.
4755 (c-block-comment-prefix): New name for
4756 `c-comment-contiuation-stars', which is now obsolete. It's
4757 generalized to handle any character sequence.
4758 (c-ignore-auto-fill): New variable used to selectively disable
4759 Auto Fill mode in specific contexts.
4760
4761 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4762
4763 * cc-cmds.el (c-comment-indent): Leave at least one space
4764 between the comment and the last nonblank character in the
4765 case where we look at the indentation of the comment on the
4766 previous line (case 4).
4767
4768 * cc-engine.el (c-beginning-of-statement-1): Added ``' to the
4769 list of characters that may start a statement (it's a sort of
4770 prefix operator in Pike, and isn't used at all in any of the
4771 other languages).
4772
4773 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4774
4775 * cc-engine.el (c-guess-basic-syntax): Report brace list opens
4776 inside continued statements as statement-cont instead of
4777 brace-list-open. The reason is that one normally adjusts
4778 brace-list-open for brace lists as top-level constructs, and
4779 brace lists inside statements is a completely different
4780 context. Case 10B.2 changed. Also changed (the somewhat
4781 esoteric) case 9A to cope with this.
4782
4783 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4784
4785 * cc-cmds.el (c-electric-brace): Added electric handling of
4786 the open brace for brace-elseif-brace.
4787
4788 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4789
4790 * cc-defs.el (c-with-syntax-table): New macro to easily switch
4791 syntax tables temporarily.
4792
4793 * cc-engine.el (c-guess-basic-syntax): Handle template and
4794 member init argument lists split over several lines. Case 5D
4795 changed.
4796
4797 * cc-langs.el (c-Java-javadoc-paragraph-start): Added new tag
4798 @throws introduced in Javadoc 1.2.
4799
4800 * cc-menus.el (cc-imenu-java-generic-expression): Applied
4801 patch from RMS to avoid infinite backtracking.
4802
4803 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4804
4805 * cc-align.el (c-lineup-arglist): Handle "arglists" surrounded
4806 by [ ].
4807
4808 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4809
4810 * cc-align.el (c-lineup-dont-change): Compensate properly for
4811 the column in langelem.
4812
4813 * cc-engine.el (c-syntactic-information-on-region): New
4814 function to help debugging the syntactic analysis.
4815
4816 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4817
4818 * cc-align.el (c-lineup-template-args): Handle nested template
4819 arglists.
4820
4821 * cc-langs.el (c++-template-syntax-table): New syntax table
4822 that makes `<' and `>' parenthesis characters, which is useful
4823 to switch to temporarily when analyzing template arglists.
4824
4825 * cc-styles.el: Changed default alignment of labels in the
4826 java style to conform to the examples in the Java Language
4827 Specification.
4828
4829 * cc-styles.el (c-offsets-alist): Use `c-lineup-template-args'
4830 by default.
4831
4832 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4833
4834 * cc-engine.el (c-guess-basic-syntax): Pike allows a comma
4835 immediately before the closing paren in an arglist, so don't
4836 check that in Pike mode. Case 7A changed.
4837
4838 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4839
4840 * cc-cmds.el (c-indent-region): Fixed bug where comment-only
4841 lines were ignored under certain conditions.
4842
4843 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4844
4845 * cc-align.el (c-lineup-template-args): New function for
4846 aligning continued template argument lists.
4847
4848 * cc-engine.el (c-guess-basic-syntax): Fix for member init
4849 lists containing function arglists split over several lines.
4850 Case 5D.1 changed.
4851
4852 * cc-engine.el (c-guess-basic-syntax): Fixed bug where
4853 template-args-cont didn't get recognized when the first
4854 arglist opener line doesn't contain a template argument. New
4855 case 5K.
4856
4857 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4858
4859 * cc-defs.el (c-point): Changed from subst to macro for
4860 efficiency.
4861 (c-beginning-of-defun-1, c-end-of-defun-1): New
4862 beginning-of-defun/end-of-defun wrappers separated from
4863 c-point.
4864
4865 * cc-menus.el (imenu-generic-expression,
4866 imenu-case-fold-search, imenu-progress-message): Dummy
4867 definitions to avoid compiler warnings if imenu can't be
4868 loaded.
4869 * cc-menus.el (cc-imenu-init): New function called at mode
4870 init.
4871 * cc-mode.el (c-mode, c++-mode, objc-mode, java-mode): Moved
4872 imenu initializations to cc-imenu-init.
4873
4874 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4875
4876 * cc-engine.el (c-guess-basic-syntax): Slightly better check
4877 for lambda-intro-cont in Pike mode. Case 6 changed.
4878
4879 * cc-engine.el (c-looking-at-inexpr-block): Fixed bug where
4880 anything following "new Foo()" was considered an anonymous
4881 class body in Java mode.
4882
4883 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
4884
4885 * cc-cmds.el (c-comment-line-break-function): When breaking in
4886 a string, don't insert a new line.
4887
4888 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
4889
4890 * cc-engine.el (c-at-toplevel-p): New interface function which
4891 returns information useful to add-on authors. It tells you
4892 whether you're at a toplevel statement or not.
4893
4894 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
4895
4896 * cc-cmds.el (c-comment-line-break-function): It is possible
4897 that forward-line does not land us at the bol, say if we're on
4898 the last line in a file. In that case, do a
4899 back-to-indentation instead of a forward-comment -1.
4900
4901 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4902
4903 * cc-engine.el (c-beginning-of-statement-1): Don't catch
4904 "default:" as normal label in case 4.
4905
4906 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4907
4908 * cc-engine.el (c-guess-basic-syntax): Use c-bitfield-key to
4909 recognize continued bitfield declarations. Case 5D.1 changed.
4910 * cc-langs.el: New variable c-bitfield-key.
4911 * cc-mode.el: New variable c-bitfield-key.
4912
4913 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4914
4915 * cc-engine.el (c-inside-bracelist-p): Tighter test for Java
4916 anonymous array expressions (i.e. "new Foo[] {.. bracelist
4917 ..}").
4918
4919 1999-12-12 Dave Love <fx@gnu.org>
4920
4921 * mail/footnote.el: Require cl when compiling. Don't autoload
4922 keymap and minor-mode-alist stuff. Don't set zmacs-region-stays.
4923 (footnote-insert-text-marker, Footnote-insert-pointer-marker):
4924 Avoid `acons'.
4925 (footnote-mode-line-string, Footnote-add-footnote): Remove
4926 autoload cookie.
4927
4928 1999-12-12 Richard Sharman <rsharman@pobox.com>
4929
4930 * sh-script.el: Fix for when font-lock mode is active.
4931 (sh-font-lock-unfontify-region-function): New function.
4932
4933 1999-12-12 Eli Zaretskii <eliz@is.elta.co.il>
4934
4935 * menu-bar.el (menu-bar-edit-menu): Define the Spell submenu even
4936 if start-process is not bound, since Ispell now supports such
4937 platforms as well.
4938
4939 1999-12-12 Gerd Moellmann <gerd@gnu.org>
4940
4941 * mail/rmailsum.el (rmail-summary-mode-map): Bind RET to
4942 rmail-summary-goto-msg.
4943
4944 * files.el (after-find-file): Fix previous change.
4945
4946 1999-12-11 Dave Love <fx@gnu.org>
4947
4948 * help.el (where-is): Use `commandp' as predicate for
4949 `completing-read'
4950
4951 1999-12-10 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4952
4953 * cus-edit.el (custom-save-delete): Delete all occurrences,
4954 leave point where the first occurrence was.
4955 (custom-save-faces): Insert a newline at the end of the comment.
4956 Avoid a double newline there.
4957 If final closeparen is at bol, put a space before it.
4958 (custom-save-variables): Likewise.
4959 (custom-file): Doc fix.
4960
4961 1999-12-10 Gerd Moellmann <gerd@gnu.org>
4962
4963 * dos-w32.el (file-name-buffer-file-type-alist): Add `$' at end of
4964 regexp matching image and audio files.
4965
4966 1999-12-09 Dave Love <fx@gnu.org>
4967
4968 * mail/footnote.el: New file.
4969
4970 1999-12-09 Gerd Moellmann <gerd@gnu.org>
4971
4972 * files.el (after-find-file): Use auto-save-visited-file-name if
4973 set.
4974
4975 * mail/feedmail.el (feedmail-find-eoh): Take
4976 feedmail-queue-alternative-mail-header-separator into account.
4977
4978 1999-12-09 Stefan Monnier <monnier@cs.yale.edu>
4979
4980 * smerge-mode.el: New file.
4981
4982 * font-lock.el (font-lock-multiline): New variable.
4983 (font-lock-add-keywords): Rename `major-mode' into `mode'.
4984 (font-lock-remove-keywords): Added a dummy `mode' argument for
4985 potential future support.
4986 (font-lock-fontify-anchored-keywords,
4987 (font-lock-fontify-keywords-region): Only handle multiline strings
4988 if necessary (avoids a pathological behavior in (f.ex) diff-mode).
4989
4990 1999-12-08 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4991
4992 * bookmark.el (bookmark-bmenu-mode-map): Bind RET like f.
4993
4994 * dired-aux.el (dired-insert-subdir): Add autoload cookie.
4995
4996 1999-12-07 Dave Love <fx@gnu.org>
4997
4998 * help.el (view-emacs-problems): New command, bound to C-h P.
4999
5000 * menu-bar.el (menu-bar-manuals-menu): Add view-emacs-problems.
5001
5002 1999-12-07 Stefan Monnier <monnier@cs.yale.edu>
5003
5004 * diff-mode.el (diff-mode-shared-map): Fset'd and doc change.
5005 (diff-minor-mode, diff-minor-mode-prefix, diff-minor-mode-map):
5006 New code to support the minor mode version.
5007 (diff-recenter): New function.
5008 (diff-next-hunk, diff-next-file): Use it.
5009 (diff-remembered-files-alist): New var.
5010 (diff-merge-strings): New function.
5011 (diff-find-file-name): Make it smarter and use the user's input more.
5012 (diff-mode): Cosmetic changes.
5013
5014 * files.el (save-some-buffers): Turn EXITING into the more general
5015 PRED argument to allow specifying a subset of buffers.
5016
5017 * simple.el (kill-region): Use the new `delete-and-extract-region'
5018 rather than the undo log (which is incorrect with *-change-functions).
5019
5020 * font-lock.el (font-lock-default-fontify-region): Fix subtle
5021 off-by-one problem that could force re-fontifying the whole buffer.
5022 (font-lock-remove-keywords): New function.
5023 (font-lock-add-keywords): Use the new function to ensure idempotence.
5024
5025 1999-12-06 Michael Kifer <kifer@cs.sunysb.edu>
5026
5027 * viper-cmd.el (viper-minibuffer-standard-hook,
5028 viper-minibuffer-real-start): Mew functions.
5029 (viper-read-string-with-history,viper-file-add-suffix,
5030 viper-trim-replace-chars-to-delete-if-necessary): Adapt to the
5031 change in the status of the minibuffer prompt.
5032
5033 1999-12-06 Gerd Moellmann <gerd@gnu.org>
5034
5035 * comint.el (comint-redirect-results-list)
5036 (comint-redirect-results-list-from-process): Remove interactive
5037 spec.
5038
5039 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
5040
5041 * info.el (info-node, info-menu-5, info-xref): Define colors for
5042 Info faces if the display supports them.
5043
5044 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
5045
5046 Changes for automatic remapping of X colors on terminal frames:
5047
5048 * term/pc-win.el (msdos-setup-initial-frame): New function, run by
5049 term-setup-hook. Call msdos-remember-default-colors and
5050 msdos-handle-reverse-video.
5051 (msdos-face-setup): Parts of code moved to
5052 msdos-setup-initial-frame.
5053 (msdos-handle-reverse-video): New function, modeled after
5054 x-handle-reverse-video.
5055 (make-msdos-frame): Don't use initial-frame-alist and
5056 default-frame-alist. Call msdos-handle-reverse-video.
5057 (msdos-color-aliases): Remove.
5058 (msdos-color-translate, msdos-approximate-color): Remove.
5059 (msdos-color-values): Use 16-bit RGB values. RGB values updated
5060 for better approximation of X colors.
5061 (msdos-face-setup): Call tty-color-clear. Remove code that sets
5062 up tty-color-alist (it is now on startup.el).
5063 (x-display-color-p, x-color-defined-p, x-color-values,
5064 x-defined-colors, face-color-supported-p, face-color-gray-p):
5065 Remove.
5066
5067 * facemenu.el (facemenu-read-color, list-colors-display): Use
5068 defined-colors for all frame types.
5069 (facemenu-color-equal): Use color-values for all frame types.
5070
5071 * faces.el (read-face-attribute): For :foreground and :background
5072 attributes and frames on character terminals, translate the color
5073 to the closest supported one before looking it up in the list of
5074 valid values.
5075 (face-valid-attribute-values): Call defined-colors for all types
5076 of frames.
5077 (defined-colors, color-defined-p, color-values, display-color-p):
5078 New finctions.
5079 (x-defined-colors, x-color-defined-p, x-color-values,
5080 x-display-color-p): Aliases for the above.
5081
5082 * startup.el (command-line): Register terminal colors for frame
5083 types other than x and w32, but only if the terminal supports
5084 colors. Call tty-color-define instead of face-register-tty-color.
5085
5086 * term/x-win.el (xw-defined-colors): Renamed from
5087 x-defined-colors.
5088 * term/w32-win.el (xw-defined-colors): Likewise.
5089
5090 * term/tty-colors.el: New file.
5091 * loadup.el: Load term/tty-colors.
5092
5093 1999-12-06 Dave Love <fx@gnu.org>
5094
5095 * ffap.el: Autoload the ffap alias directly.
5096
5097 1999-12-06 Inge Frick <inge@nada.kth.se>
5098
5099 * dired-aux.el (dired-do-shell-command): Changed documentation.
5100 (dired-shell-stuff-it): A `?' in COMMAND has now the same
5101 meaning as `*'.
5102
5103 1999-12-06 Gerd Moellmann <gerd@gnu.org>
5104
5105 * simple.el (insert-buffer): Doc fix.
5106
5107 * apropos.el (apropos-mode): Add autoload cookie.
5108
5109 1999-12-06 Sam Steingold <sds@goems.com>
5110
5111 * progmodes/etags.el (etags-tags-completion-table): Modified the
5112 regexp to allow for the CL symbols starting with `+*'.
5113 (tags-completion-table): Doc fix (it's an obarray, not an alist).
5114 (tags-completion-table, tags-recognize-empty-tags-table): Remove
5115 `function' quoting lambda.
5116 (tags-with-face): New macro.
5117 (list-tags, tags-apropos): Use it.
5118 (tags-apropos-additional-actions): New user option.
5119 (etags-tags-apropos-additional): Use it.
5120 (tags-apropos): Call etags-tags-apropos-additional.
5121 (tags-apropos-verbose): New user option.
5122 (etags-tags-apropos): Use it.
5123 (visit-tags-table-buffer, next-file): Use `unless'.
5124 (recognize-empty-tags-table): Renamed to
5125 tags-recognize-empty-tags-table.
5126 (complete-tag): Call tags-complete-tag bypassing try-completion.
5127
5128 1999-12-06 Kenichi Handa <handa@etl.go.jp>
5129
5130 * international/mule.el (set-buffer-file-coding-system): Docstring
5131 modified.
5132
5133 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
5134
5135 * textmodes/bibtex.el (bibtex-hs-forward-sexp): Added to support
5136 using the hideshow package.
5137 (hs-special-modes-alist): Added entry for bibtex to allow the use
5138 of the hideshow package.
5139 (bibtex-hide-entry-bodies): Deleted as hiding of entry bodies is
5140 not longer provided by bibtex.el directly. Instead the hideshow
5141 package should be used.
5142 (bibtex-mode-map, bibtex-edit-menu, bibtex-mode): Delete
5143 references to bibtex-hide-entry-bodies.
5144
5145 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
5146
5147 * textmodes/bibtex.el: Copyright notice is up to date. Moved
5148 maintainer information closer to the beginning of the bibtex.el
5149 file.
5150 (bibtex-maintainer-salutation): New constant.
5151 (bibtex-version): New constant.
5152 (bibtex-submit-bug-report): Use bibtex-version and
5153 bibtex-maintainer-salutation.
5154 (bibtex-entry-field-alist): Made booktitle field optional for
5155 @inproceedings entries when crossreferenced.
5156 (bibtex-entry-field-alist): Added booktitle field to proceedings
5157 entry type (for cross referencing). Thanks to Wagner Toledo Correa
5158 for the suggestion.
5159 (bibtex-string-file-path): Fixed typo.
5160
5161 1999-12-05 Carsten Dominik <dominik@strw.leidenuniv.nl>
5162
5163 * textmodes/bibtex.el (bibtex-mode-map): Reserved the key `C-c &'
5164 for reftex.el.
5165 (bibtex-edit-menu): Added `reftex-view-crossref-from-bibtex'
5166 to menu.
5167
5168 1999-12-04 Dave Love <fx@gnu.org>
5169
5170 * delsel.el: Revert previous change -- region is significant to
5171 skeleton.
5172
5173 1999-12-04 Michael Kifer <kifer@cs.sunysb.edu>
5174
5175 * viper-cmd.el (viper-change-state): Use
5176 viper-ESC-moves-cursor-back to decide whether to move the cursor
5177 back.
5178
5179 1999-12-03 Kenichi Handa <handa@mule.m17n.org>
5180
5181 * international/mule-util.el (truncate-string-to-width): Docsting
5182 fixed.
5183
5184 1999-12-02 Stefan Monnier <monnier@cs.yale.edu>
5185
5186 * emacs-lisp/lisp-mnt.el (lm-header-multiline): Fix spurious
5187 use of `cond'.
5188 (lm-with-file): Move all the find-file...kill-buffer stuff into
5189 this macro. Make it use `find-file-noselect' and make it kill
5190 the buffer only if it wasn't already displayed somewhere.
5191 (lm-summary, lm-authors, lm-maintainer, lm-creation-date)
5192 (lm-last-modified-date, lm-version, lm-keywords, lm-adapted-by)
5193 (lm-commentary, lm-verify, lm-synopsis): Use lm-with-file.
5194 (lm-commentary): Fix to handle the case when the change log is
5195 at the end of the file.
5196
5197 1999-12-02 Kenichi Handa <handa@etl.go.jp>
5198
5199 * international/mule.el (charsetp): Fix typo in docstring.
5200
5201 * international/mule-diag.el (list-coding-categories): Fix typo;
5202 automatic -> autoload.
5203
5204 1999-12-02 Gerd Moellmann <gerd@gnu.org>
5205
5206 * vc.el (vc-update-change-log): Look for rcs2log under
5207 exec-directory.
5208
5209 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Change
5210 outline-regexp, add outline-level.
5211 (lisp-outline-level): New.
5212
5213 * calendar/appt.el (appt-convert-time): Handle "12:MMam",
5214 remove extraneous string-match.
5215
5216 * finder.el (finder-commentary): Activate Finder mode.
5217
5218 1999-12-01 Anders Lindgren <andersl@andersl.com>
5219
5220 * autorevert.el (auto-revert-buffers): Auto-revert mode was turned
5221 off when reverting buffers that contained mode specifiers.
5222 `revert-buffer' is now called with non-nil PRESERVE-MODES
5223 argument.
5224
5225 1999-12-01 Dave Love <fx@gnu.org>
5226
5227 * delsel.el: Grok skeleton-pair-insert-maybe.
5228
5229 1999-11-30 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5230
5231 * progmodes/cperl-mode.el (cperl-under-as-char):
5232 Use nil as default.
5233
5234 1999-11-30 Gerd Moellmann <gerd@gnu.org>
5235
5236 * speedbar.el (toplevel): Remove compatibility code for Emacs
5237 versions without custom.el.
5238
5239 1999-11-30 Dave Love <fx@gnu.org>
5240
5241 * progmodes/fortran.el (fortran-strip-sequence-nos): New command.
5242
5243 * autoinsert.el: Minor doc fixes.
5244 (auto-insert): Return nil.
5245
5246 * faces.el (set-face-documentation): Purecopy STRING.
5247
5248 1999-11-29 Dave Love <fx@gnu.org>
5249
5250 * derived.el: Doc fixes, remove old backquote syntax.
5251
5252 * cus-edit.el (custom-save-variables, custom-save-faces): Write a
5253 comment warning about editing.
5254
5255 * help.el (help-mode-hook): Define.
5256
5257 1999-11-29 Gerd Moellmann <gerd@gnu.org>
5258
5259 * emacs-lisp/edebug.el (edebug-make-enter-wrapper): Correct
5260 invalid translation of old-style backquote syntax to new syntax.
5261
5262 1999-11-28 Eli Zaretskii <eliz@is.elta.co.il>
5263
5264 * Makefile (DONTCOMPILE): Add term/internal.el.
5265
5266 1999-11-26 Dave Love <fx@gnu.org>
5267
5268 * comint.el: Fix last change.
5269
5270 * emacs-lisp/advice.el: Fix last change.
5271
5272 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5273
5274 * cus-edit.el (Custom-reset-standard): Doc fix.
5275 (custom-variable-reset-standard): Doc fix.
5276 (custom-face-reset-standard): Doc fix.
5277 (custom-face-menu): "Reset to Standard" => "Erase Customization".
5278 (custom-variable-menu): Likewise.
5279 (custom-reset-menu): Likewise.
5280 (custom-buffer-create-internal): Likewise.
5281
5282 1999-11-26 Dave Love <fx@gnu.org>
5283
5284 * progmodes/make-mode.el (makefile-mode-hook): Customize.
5285
5286 * font-lock.el: Doc fixes.
5287
5288 * menu-bar.el (menu-bar-mode): Customize.
5289
5290 * cus-start.el: Add use-dialog-box.
5291
5292 * add-log.el (change-log-mode-hook): Customize.
5293 (add-log-current-defun): Use
5294 fortran-{beginning,end}-of-subprogram.
5295
5296 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5297
5298 * emacs-lisp/advice.el: Many doc fixes.
5299
5300 * comint.el (comint-preoutput-filter-functions): Doc fix.
5301
5302 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5303
5304 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
5305 Improve messages for capitalization of arg names,
5306 for flag variables, for t and nil, for imperatives.
5307 Call them imperatives rather than infinitives sans "to".
5308 (checkdoc-common-verbs-wrong-voice): Add "moves".
5309 (checkdoc-message-text-engine): Improve messages for y-or-n-p.
5310
5311 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
5312 Don't convert comments from 3-semicolon to 2-semicolon.
5313 That is a matter of style.
5314 (checkdoc-triple-semi-comment-check-flag): Variable deleted.
5315 (checkdoc-comments): Don't bind that variable.
5316
5317 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5318
5319 * files.el (write-file-hooks): Doc fix.
5320
5321 1999-11-26 Gerd Moellmann <gerd@gnu.org>
5322
5323 * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='.
5324
5325 1999-11-25 Dave Love <fx@gnu.org>
5326
5327 * hippie-exp.el: Require comint when compiling.
5328 (hippie-expand): Add :links.
5329 (hippie-expand-try-functions-list): Customize.
5330
5331 1999-11-24 Michael Kifer <kifer@cs.sunysb.edu>
5332
5333 * viper*el: Replaced old-style backquotes.
5334
5335 * ediff*el: Replaced old-style backquotes.
5336
5337 * ediff-merge
5338 (ediff-looks-like-combined-merge,ediff-get-combined-region):
5339 Changed to support the new format for ediff-combination-pattern.
5340
5341 * ediff-diff (ediff-set-fine-overlays-in-one-buffer):
5342 Changed to support the new format for ediff-combination-pattern.
5343
5344 1999-11-24 Dave Love <fx@gnu.org>
5345
5346 * custom.el (custom-declare-group): Purecopy DOC.
5347 (custom-handle-keyword): Purecopy VALUE.
5348 (custom-add-link): Purecopy WIDGET.
5349 (custom-add-version): Purecopy VERSION.
5350 (custom-add-load): Purecopy LOAD.
5351
5352 * cus-face.el (custom-declare-face): Purecopy DOC.
5353
5354 * info.el:
5355 (Info-build-node-completions, Info-search, Info-follow-reference)
5356 (Info-complete-menu-item, Info-menu, Info-index, Info-get-token)
5357 (Info-find-emacs-command-nodes): Avoid properties on matched text
5358 which may appear in minibuffer.
5359
5360 1999-11-24 Gerd Moellmann <gerd@gnu.org>
5361
5362 * locate.el (locate-with-filter): Doc fix.
5363
5364 1999-11-24 Alex Schroeder <alex@gnu.org>
5365
5366 * sql.el (sql-find-sqli-buffer): New function.
5367 (sql-set-sqli-buffer-generally): New function.
5368 (sql-set-sqli-buffer): Better checking of new-buffer.
5369 (sql-copy-column): Add comma after INTO clause, too.
5370
5371 1999-11-24 Alex Schroeder <alex@gnu.org>
5372
5373 * sql.el (sql-imenu-generic-expression): New, used to set
5374 imenu-generic-expression.
5375
5376 * sql.el (sql-mode): Use ?_ and ?. instead of 95 and 46 when
5377 setting font-lock-defaults' SYNTAX-ALIST. Set
5378 imenu-generic-expression, imenu-case-fold-search, and
5379 imenu-syntax-alist.
5380
5381 * sql.el (sql-interactive-mode): Use ?_ and ?. instead of 95
5382 and 46 when setting font-lock-defaults' SYNTAX-ALIST.
5383
5384 1999-11-23 Andrew Innes <andrewi@gnu.org>
5385
5386 * w32-win.el (w32-drag-n-drop): Load files in current window, if
5387 drop coords aren't over a specific window.
5388
5389 1999-11-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5390
5391 * ps-print.el: Define mule funs without checking if mule package is
5392 loaded.
5393 (ps-print-version): New version number (5.0.1).
5394 (ps-header-dirpart): Now uses abbreviate-file-name.
5395
5396 1999-11-23 Dave Love <fx@gnu.org>
5397
5398 * progmodes/fortran.el (fortran-comment-line-start): Renamed from
5399 comment-line-start.
5400 (fortran-comment-line-start-skip): Renamed from
5401 comment-line-start-skip.
5402 (fortran-mode-map): Use renamed functions. Add manual and custom
5403 entries to menu.
5404 (fortran-mode-hook): Customize.
5405 (fortran-comment-indent-function): Renamed from
5406 fortran-comment-hook.
5407 (delete-horizontal-regexp): Function deleted.
5408 (fortran-electric-line-number): Simplified.
5409 (fortran-beginning-of-subprogram): Renamed from
5410 beginning-of-fortran-subprogram.
5411 (fortran-end-of-subprogram): Renamed from
5412 end-of-fortran-subprogram.
5413 (fortran-mark-subprogram): Renamed from mark-fortran-subprogram.
5414 (fortran-previous-statement, fortran-next-statement): Simplified.
5415 (fortran-blink-match): New function.
5416 (fortran-blink-matching-if, fortran-blink-matching-do): Use it.
5417 (fortran-indent-to-column): Don't use delete-horizontal-regexp.
5418 (fortran-find-comment-start-skip, fortran-is-in-string-p): Use
5419 line-end-position.
5420 (fortran-fill): No longer interactive. Simplified.
5421 (fortran-break-line): Simplified.
5422 (fortran-analyze-file-format): Use char-after, not looking-at.
5423
5424 * emacs-lisp/find-func.el (find-function-regexp): Use
5425 `define-minor-mode' after easy-menu change.
5426
5427 1999-11-23 Gerd Moellmann <gerd@gnu.org>
5428
5429 * comint.el: Add redirection.from active comint buffers into
5430 another buffer. Written by Peter Breton.
5431
5432 1999-11-23 Stefan Monnier <monnier@cs.yale.edu>
5433
5434 * emacs-lisp/autoload.el (make-autoload): Recognize the new
5435 `define-minor-mode'.
5436 (define-minor-mode): Specify `doc-string-elt'.
5437
5438 * emacs-lisp/easy-mmode.el: Changed maintainer.
5439 (easy-mmode-define-toggle): New BODY arg; Never append `-mode';
5440 Use defcustom for the hooks; Improve the auto-generated docstrings.
5441 (easy-mmode-define-minor-mode): Renamed `define-minor-mode'.
5442 (define-minor-mode): Add BODY arg; Only declare the keymap if
5443 provided; Improve the auto-generated docstrings.
5444
5445 1999-11-22 Gerd Moellmann <gerd@gnu.org>
5446
5447 * textmodes/text-mode.el (text-mode): Construct paragraph-start so
5448 that the leading `^' is at the start. This is necessary because
5449 paragraphs.el tries to remove anchors, but can find them only if
5450 they are the first character.
5451
5452 * progmodes/antlr-mode.el: New file.
5453
5454 * calendar/calendar.el: Fix autoload for
5455 calendar-absolute-from-astro. Add autoload for
5456 calendar-print-astro-day-number.
5457
5458 1999-11-21 Anders Lindgren <andersl@andersl.com>
5459
5460 * follow.el: Use modern backquote syntax. Minor comment update.
5461
5462 1999-11-21 Gerd Moellmann <gerd@gnu.org>
5463
5464 * simple.el (with-syntax-table): Don't switch buffers.
5465
5466 * emacs-lisp/edebug.el, emacs-lisp/cust-print.el,
5467 progmodes/hideif.el: Use new backquote syntax.
5468
5469 1999-11-21 Ken Manheimer <klm@python.org>
5470
5471 * icomplete.el (icomplete-completions): Use an explicit variable
5472 `icomplete-prospects-length', obviating the need to use an
5473 apparently faulty throw/catch arrangement.
5474
5475 1999-11-21 Eli Zaretskii <eliz@is.elta.co.il>
5476
5477 * term/internal.el (IT-display-table-setup): Don't overstep
5478 character code 255.
5479
5480 1999-11-20 Kenichi Handa <handa@mule.m17n.org>
5481
5482 * ps-mule.el (ps-mule-font-info-database-bdf): Default BDF font
5483 for the charset chinese-sisheng is 7bit encoding, not 8bit.
5484
5485 1999-11-19 Stefan Monnier <monnier@cs.yale.edu>
5486
5487 * scroll-bar.el (scroll-bar-toolkit-scroll): Add handling of the
5488 `ratio' event for Xaw and Xaw3d(without arrows) scrollbars.
5489
5490 * files.el (auto-mode-alist): Add patterns for diff-mode.
5491
5492 * complete.el (PC-do-complete-and-exit): Use minibuffer-prompt-end
5493 to detect an empty prompt.
5494
5495 1999-11-18 Dave Love <fx@gnu.org>
5496
5497 * simple.el (input-mode-8-bit): Fix the customization.
5498
5499 1999-11-18 Gerd Moellmann <gerd@gnu.org>
5500
5501 * international/iso-acc.el (iso-languages): Add more
5502 characters for Portuguese.
5503
5504 * speedbar.el: Clean up comment at the start of the file.
5505 Remove RCS id.
5506
5507 * progmodes/compile.el (compilation-parse-errors): Use
5508 compilation-buffer-p instead of testing major-mode.
5509
5510 1999-11-18 Dave Pearson <davep@hagbard.demon.co.uk>
5511
5512 * quickurl.el Added defcustom of quickurl-completion-ignore-case.
5513 (quickurl-ask): completion-ignore-case is set to the value of
5514 quickurl-completion-ignore-case for the duration of the call to
5515 completing-read.
5516
5517 1999-11-18 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5518
5519 * mail/rmailedit.el (rmail-cease-edit): Run rmail-mode-hook.
5520
5521 1999-11-18 Kenichi Handa <handa@etl.go.jp>
5522
5523 * ps-vars.el: Renamed from ps-print-def.el. Provide ps-vars
5524 instead of ps-print-def.
5525
5526 * ps-print.el: Require ps-vars instead of ps-print-def.
5527
5528 * ps-mule.el: Require ps-vars instead of ps-print-def.
5529
5530 1999-11-17 Gerd Moellmann <gerd@gnu.org>
5531
5532 * simple.el (with-syntax-table): Save buffer explicitly instead of
5533 using save-excursion.
5534
5535 1999-11-16 Gerd Moellmann <gerd@gnu.org>
5536
5537 * mail/supercite.el: New maintainer.
5538
5539 1999-11-16 Reto Zimmermann <reto@synopsys.com>
5540
5541 * progmodes/vhdl-mode.el: Use new backquote syntax.
5542
5543 1999-11-16 Gerd Moellmann <gerd@gnu.org>
5544
5545 * simple.el (with-syntax-table): New.
5546
5547 1999-11-15 Sam Steingold <sds@ksp.com>
5548
5549 * dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
5550
5551 1999-02-22 Sam Steingold <sds@goems.com>
5552
5553 * goto-addr.el (goto-address-at-mouse,
5554 goto-address-find-address-at-point): Use compose-mail.
5555 (goto-address-mail-method): Removed variable.
5556 (goto-address-send-using-mh-e, goto-address-send-using-mhe,
5557 goto-address-send-using-mail): Removed functions.
5558
5559 1998-11-03 Sam Steingold <sds@goems.com>
5560
5561 * simple.el (backward-delete-char-untabify):
5562 backward-delete-char-untabify-method can be `all' now - to delete
5563 hungrily including newlines.
5564
5565 1999-11-15 Sam Steingold <sds@ksp.com>
5566
5567 * mail/rnews.el, mail/mh-utils.el: Use the new backquote syntax.
5568
5569 1999-11-15 Dave Love <fx@gnu.org>
5570
5571 * cus-edit.el (customize-face, customize-face-other-window):
5572 Require match from completing-read.
5573 (custom-buffer-done-function): Default to custom-bury-buffer, not
5574 bury-buffer.
5575
5576 1999-11-15 Gerd Moellmann <gerd@gnu.org>
5577
5578 * mail/rmail.el, iswitchb.el, hippie-exp.el,
5579 progmodes/cperl-mode.el: Use new backquote syntax.
5580
5581 1998-09-14 Michael Ernst <mernst@alum.mit.edu>
5582
5583 * uniquify.el: Use new backquote syntax.
5584
5585 1999-11-14 Markus Rost <rost@ias.edu>
5586
5587 * ispell.el (ispell-dictionary-alist): Fix type by adding koi8-r
5588 as in ispell-local-dictionary-alist.
5589
5590 1999-11-14 Alex Schroeder <alex@gnu.org>
5591
5592 * ansi-color.el (ansi-color-apply): Updated regexps to include
5593 highlighted face.
5594
5595 1999-01-14 Johan Vromans <jvromans@squirrel.nl>
5596
5597 * forms.el (forms--make-format-elt-using-text-properties):
5598 Treat `intangible' differently.
5599
5600 * forms.el: Use new backquote syntax.
5601
5602 1999-11-13 Gerd Moellmann <gerd@gnu.org>
5603
5604 * textmodes/scribe.el (scribe-mode): Doc-fix.
5605
5606 1999-11-13 Peter Breton <pbreton@ne.mediaone.net>
5607
5608 * net-utils.el (run-network-program, net-utils-run-program): Use
5609 the new backquote syntax.
5610 (smbclient-program, smbclient-program-options)
5611 (smbclient-prompt-regexp, smbclient-font-lock-keywords): New
5612 variables
5613 (smbclient, smbclient-list-shares): New functions
5614
5615 1999-11-12 Sam Steingold <sds@ksp.com>
5616
5617 * emulation/viper-init.el (viper-deflocalvar, viper-loop)
5618 (viper-buffer-live-p, viper-kbd-buf-alist, viper-kbd-buf-pair)
5619 (viper-kbd-buf-definition, viper-kbd-mode-alist)
5620 (viper-kbd-mode-pair, viper-kbd-mode-definition)
5621 (viper-kbd-global-pair, viper-kbd-global-definition):
5622 Use the new backquote syntax.
5623
5624 * emulation/viper-cmd.el (viper-test-com-defun)
5625 (viper-prefix-arg-value, viper-prefix-arg-com):
5626 Use the new backquote syntax.
5627
5628 * emacs-lisp/debug.el (debugger-env-macro):
5629 Use the new backquote syntax.
5630
5631 * emacs-lisp/easymenu.el (easy-menu-make-symbol):
5632 Use the new backquote syntax.
5633
5634 * calendar/calendar.el (calendar-remove-frame-by-deleting):
5635 New user variable.
5636 (calendar-hide-window): Use it.
5637 (increment-calendar-month, calendar-for-loop, calendar-sum):
5638 Use the new backquote syntax.
5639
5640 1999-11-12 Andrew Innes <andrewi@gnu.org>
5641
5642 * select.el (x-set-selection): Call buffer-substring, not
5643 substring. Also fix docstring
5644
5645 1999-11-12 Peter Kleiweg <kleiweg@let.rug.nl>
5646
5647 * progmodes/ps-mode.el (ps-mode-submit-bug-report): Added list
5648 of customizable variables to bug report message. Added
5649 system-type to package name in bug report.
5650
5651 1999-11-12 Gerd Moellmann <gerd@gnu.org>
5652
5653 * buff-menu.el (list-buffers-noselect): Use abbreviate-file-name
5654 to display file names.
5655
5656 1999-11-11 Gerd Moellmann <gerd@gnu.org>
5657
5658 * mwheel.el: Fix copyright notice, don't require 'cl at run time.
5659
5660 * isearch.el: Add lazy-highlighting feature.
5661
5662 1999-11-10 Peter Kleiweg <kleiweg@let.rug.nl>
5663
5664 * progmodes/ps-mode.el (ps-mode-maintainer-address): New
5665 constant.
5666 (ps-mode-submit-bug-report): New function. Entry added to menu.
5667
5668 1999-11-10 William M. Perry <wmperry@aventail.com>
5669
5670 * mwheel.el: New file to support the new style wheeled mice.
5671
5672 1999-11-10 Gerd Moellmann <gerd@gnu.org>
5673
5674 * startup.el (initial-scratch-message): Add ";;" to the front of
5675 lines in the message.
5676
5677 * files.el (file-local-copy): Remove optional BUFFER argument
5678 because that's not used by anything.
5679
5680 * mail/mh-comp.el (mh-smail-batch): If TO is nil, use "" as
5681 to-address.
5682
5683 1999-11-08 Markus Rost <rost@ias.edu>
5684
5685 * wid-edit.el (widget-button-click): Wrap with save-excursion
5686 to restore track-mouse in the correct buffer.
5687
5688 1999-11-08 Gerd Moellmann <gerd@gnu.org>
5689
5690 * mail/mh-e.el: Changed maintainer to billcurtis@hotmail.com.
5691
5692 1999-11-08 Peter Kleiweg <kleiweg@let.rug.nl>
5693
5694 * progmodes/ps-mode.el (ps-mode-print-function): Changed default
5695 lpr-command to "lp" for some system-types. (copied from lpr.el
5696 Emacs version 20.2.1).
5697
5698 1999-11-04 Markus Rost <rost@ias.edu>
5699
5700 * simple.el (comment-region): Strip off white space at end of
5701 comment-start.
5702
5703 1999-11-04 Gerd Moellmann <gerd@gnu.org>
5704
5705 * faces.el (secondary-selection): Fix wrong color name.
5706
5707 1999-11-04 John Tobey <jtobey@epsilondev.com>
5708
5709 * gud.el (gud-perldb-massage-args): Handle the case "perl -e 0",
5710 the default when invoking perldb in a non-Perl buffer, and other
5711 cases involving -e or --.
5712
5713 1999-11-04 Gerd Moellmann <gerd@gnu.org>
5714
5715 * simple.el (previous-matching-history-element)
5716 (next-history-element): Use delete-field instead of erase-field.
5717
5718 * isearch.el (isearch-ring-advance-edit, isearch-complete-edit):
5719 Use delete-field instead of erase-field.
5720
5721 * faces.el (secondary-selection): Change background to yellow.
5722
5723 * complete.el (PC-do-completion): Use minibuffer-prompt-end to
5724 find the start of the text. Use field-string to read the user
5725 input.
5726
5727 1999-11-03 Gerd Moellmann <gerd@gnu.org>
5728
5729 * faces.el (make-face-bold, make-face-unbold, make-face-italic)
5730 (make-face-unitalic, make-face-bold-italic): Add NOERROR argument
5731 for compatibility with old face implementation.
5732
5733 * isearch.el (isearch-complete-edit, isearch-ring-advance-edit):
5734 Use erase-field instead of erase-buffer.
5735
5736 * frame.el (blink-cursor-mode, blink-cursor-end): Use
5737 internal-show-cursor with new interface.
5738 (blink-cursor-timer-function): New.
5739 (blink-cursor-start): Use blink-cursor-timer-function.
5740
5741 1999-11-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
5742
5743 * calendar.el (redraw-calendar): Move to nearest date before
5744 redrawing.
5745
5746 * diary-lib.el (simple-diary-display): Reset modeline even if
5747 there are no diary entries since the diary buffer may be displayed.
5748
5749 1999-11-03 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5750
5751 * emacs-lisp/debug.el (debug): If noninteractive, display the
5752 backtrace using `message', then exit Emacs.
5753 (debugger-batch-max-lines): New variable.
5754 (debugger-setup-buffer): New subroutine, broken out of `debug'.
5755 Change the messages put at the start, to say that the debugger
5756 was entered.
5757
5758 1999-11-02 Sam Steingold <sds@ksp.com>
5759
5760 * progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
5761
5762 1999-11-01 John Tobey <jtobey@epsilondev.com>
5763
5764 * gud.el: (gud-perldb-massage-args): Massage correctly in the
5765 presence of perl switches other than "-e".
5766
5767 1999-11-01 Markus Rost <rost@ias.edu>
5768
5769 * dired-x.el (dired-smart-shell-command): Use
5770 shell-command-history as in shell-command.
5771
5772 1999-11-01 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5773
5774 * userlock.el (ask-user-about-lock): Doc fix.
5775
5776 * frame.el: Doc fixes.
5777
5778 1999-11-01 Gerd Moellmann <gerd@gnu.org>
5779
5780 * frame.el (blink-cursor-mode): Call internal-show-cursor instead
5781 of show-cursor.
5782 (blink-cursor-start, blink-cursor-end): Ditto.
5783
5784 * textmodes/tex-mode.el (tex-default-mode): Changed to latex-mode.
5785
5786 1999-11-01 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5787
5788 * window.el (walk-windows): If ALL-FRAMES is a frame,
5789 start on that frame. Use save-selected-window.
5790
5791 1999-11-01 Gerd Moellmann <gerd@gnu.org>
5792
5793 * simple.el (end-of-buffer): Use window-end to find the window end
5794 instead of vertical-motion because this handles variable-height
5795 lines correctly.
5796
5797 1999-11-01 Michael Kifer <kifer@cs.sunysb.edu>
5798
5799 * ediff.el: Version change.
5800
5801 * ediff-util.el (ediff-cleanup-mess): Fixed the case of dead windows.
5802 make sure you are in a good frame before deleting other
5803 windows.
5804 (ediff-file-checked-in-p): Don't consider CVS
5805 files checked in.
5806 (ediff-make-temp-file,ediff-make-empty-tmp-file): Make sure you
5807 are writing to a newly created empty file.
5808
5809 * ediff-mult.el (ediff-show-session-group-hook): New default.
5810
5811 * ediff-vers.el (ediff-pcl-cvs-view-revision):
5812 First cd to the file directory. reportedly works
5813 better with remote files.
5814
5815 * ediff-vers.el (ediff-pcl-cvs-internal, ediff-pcl-cvs-merge-internal):
5816 Use file-name-nondirectory when passing files to CVS.
5817
5818 * ediff-diff.el (ediff-cmp-options): New variable.
5819 (ediff-same-file-contents): Use ediff-cmp-options.
5820
5821 * ediff-ptch.el (ediff-prompt-for-patch-buffer,
5822 ediff-get-patch-buffer): Use current buffer if it appears to be a
5823 patch.
5824
5825 * viper-keym.el: Fixed calls to viper-ex, change key C-c g to C-c
5826 C-g
5827
5828 * viper-util.el (viper-nontrivial-find-file-function): Deleted.
5829 (viper-glob-unix-files, viper-glob-mswindows-files): New functions.
5830 (viper-save-cursor-color,viper-restore-cursor-color):
5831 Improved cursor color handling.
5832 (viper-get-saved-cursor-color-in-replace-mode,
5833 viper-get-saved-cursor-color-in-insert-mode): New functions for
5834 better cursor color handling.
5835
5836 * viper-ex.el (ex-read,ex-edit):
5837 Fixes for correct interpretation of #,%.
5838 (viper-ex): Now works correctly when called from other functions.
5839 (viper-glob-function): New variable.
5840 (viper-ex): Save excursion before doing :global.
5841
5842 * viper-mous.el (viper-counting-clicks-p): Bug fixes.
5843
5844 * viper-cmd.el (viper-post-command-sentinel,
5845 viper-insert-state-post-command-sentinel,
5846 viper-insert-state-pre-command-sentinel): Takes better care of
5847 cursor colors.
5848
5849 * viper.el: Version change.
5850
5851 1999-10-31 Rajesh Vaidheeswarran <rv@dsmit.com>
5852
5853 * whitespace.el (whitespace-update-modeline): Bugfix to ensure
5854 that the modeline display was updated *only* when
5855 `whitespace-display-in-modeline' was set, not otherwise.
5856
5857 1999-10-30 Gerd Moellmann <gerd@gnu.org>
5858
5859 * textmodes/sgml-mode.el (sgml-char-names): Change "half" to
5860 "frac12".
5861
5862 * emacs-lisp/advice.el (ad-activate-on): Make it an alias for
5863 ad-activate.
5864
5865 1999-10-30 Rajesh Vaidheeswarran <rv@dsmit.com>
5866
5867 * whitespace.el: Test for existence of `defcustom' and `defgroup'
5868 using fboundp instead of assuming that these are not present in
5869 particular flavors of emacs.
5870 (whitespace-version): Update to 2.8
5871 (whitespace-display-in-modeline): Add custom variable to control
5872 displaying the whitespace errors on the modeline based on
5873 suggestion from <klaus.berndl@sdm.de>
5874 (whitespace-buffer): Now returns `t' if unclean and `nil' if
5875 clean, to enable using as a hook function, as suggested by Puneet
5876 Goel <puneet@computer.org>
5877 (whitespace-buffer): Fix a subtle bug that cleaned up only if
5878 quiet was not set, even with whitespace-auto-cleanup set.
5879 (whitespace-mode-line): Now uses less modeline real estate and
5880 shows whitespaces as W:<x>!<y> where <x> is any type of whitespace
5881 which is present in the file, and <y> is any type of whitespace
5882 whose check has been suppressed by setting
5883 `whitespace-check-<whitespace-type>' to nil.
5884 (whitespace-unchecked-whitespaces): New function to return the
5885 list of whitespaces for whom checks have been suppressed.
5886 (whitespace-display-unchecked-whitespaces): Renamed to
5887 `whitespace-update-modeline' to reflect its functionality.
5888
5889 1999-10-30 Gerd Moellmann <gerd@gnu.org>
5890
5891 * progmodes/compile.el (compilation-error-regexp-alist):
5892 Undo previous change.
5893
5894 1999-10-28 Dave Love <fx@gnu.org>
5895
5896 * help.el (help-follow): Make arg optional again and really
5897 default to point.
5898
5899 1999-10-28 Gerd Moellmann <gerd@gnu.org>
5900
5901 * paths.el (rmail-file-name): Make it an option.
5902
5903 * progmodes/ada-mode.el, progmodes/ada-prj.el,
5904 progmodes/ada-stmt.el, progmodes/ada-xref.el: Doc-string and
5905 comment fixes.
5906
5907 * progmodes/compile.el (compilation-error-regexp-alist): Recognize
5908 MIPS Pro 7.3 compiler error message syntax.
5909
5910 1999-10-27 Dave Love <fx@gnu.org>
5911
5912 * progmodes/compile.el: Checkdoc-inspired fixes.
5913
5914 1999-10-27 Gerd Moellmann <gerd@gnu.org>
5915
5916 * lpr.el (print-buffer): Doc-string fix.
5917
5918 1999-10-27 Dave Love <fx@gnu.org>
5919
5920 * emacs-lisp/advice.el: Doc fixes.
5921 (ad-lemacs-p): Removed.
5922 (advice): Add :link to defgroup.
5923
5924 1999-10-27 Kenichi Handa <handa@etl.go.jp>
5925
5926 * ange-ftp.el (ange-ftp-insert-file-contents): Don't change
5927 last-coding-system-used by the call of ange-ftp-set-ascii-mode.
5928
5929 1999-10-24 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5930
5931 * window.el (walk-windows): If ALL-FRAMES is a frame,
5932 start on that frame. Use save-selected-window.
5933
5934 1999-10-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5935
5936 * emacs-lisp/advice.el (ad-activate-internal): Renamed from
5937 ad-activate. All callers changed, including those in data.c.
5938 (ad-activate-internal-off): Renamed from ad-activate-off.
5939 All uses changed.
5940 (ad-activate): Renamed from ad-activate-on. All uses changed.
5941 (ad-start-advice, ad-stop-advice, ad-recover-normality):
5942 Alter the definition of ad-activate-internal, not ad-activate.
5943
5944 1999-10-26 Gerd Moellmann <gerd@gnu.org>
5945
5946 * startup.el (command-line-1): Add support for command line
5947 arguments `file' and `execute'. Fix handling of `visit'.
5948
5949 1999-10-26 Kenichi Handa <handa@etl.go.jp>
5950
5951 * international/mule-cmds.el (read-input-method-name): Handle the
5952 case that the arg DEFAULT is symbol.
5953
5954 * international/mule-diag.el (mule-diag): Handle the case that
5955 default-input-method is symbol.
5956
5957 1999-10-26 Gerd Moellmann <gerd@gnu.org>
5958
5959 * textmodes/tildify.el: New file.
5960
5961 1999-10-25 Sam Steingold <sds@ksp.com>
5962
5963 * Makefile (compile-files): Fixed the "tr" strings.
5964 (EMACS): Set to ../src/emacs.
5965
5966 1999-10-25 Gerd Moellmann <gerd@gnu.org>
5967
5968 * info.el (Info-build-node-completions): Add '("*") to the
5969 completion list.
5970
5971 1999-10-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5972
5973 * frame.el (auto-raise-mode): When enabling the mode,
5974 immediately raise the selected frame.
5975
5976 * indent.el (indent-region): Doc fix.
5977
5978 * comint.el (comint-output-filter): Make the Comint buffer current
5979 for the comint-preoutput-filter-functions.
5980
5981 * mail/reporter.el: Doc fix.
5982
5983 1999-10-24 Stephen Eglen <stephen@gnu.org>
5984
5985 * progmodes/octave-mod.el (octave-auto-indent): Remove :version so
5986 that Octave lisp files can also run under XEmacs 20.
5987 (require 'custom) added so that files can run under Emacs 19.34.
5988
5989 * iswitchb.el (iswitchb-default-keybindings): No need to use
5990 read-kbd-macro in keybindings.
5991
5992 1999-10-23 Dave Love <fx@gnu.org>
5993
5994 * elide-head.el: New file.
5995
5996 1999-10-23 Gerd Moellmann <gerd@gnu.org>
5997
5998 * Makefile (compile-files, backup-compiled-files): New targets.
5999 (bootstrap, bootstrap-clean): Ditto.
6000
6001 1999-10-22 Paul Eggert <eggert@twinsun.com>
6002
6003 * international/mule-cmds.c (locale-language-names):
6004 Use Latin-1 (not Latin-3) for Afrikaans, Galician.
6005 Use Latin-5 (not Cyrillic-ISO) for Byelorussian, Bulgarian,
6006 Macedonian, Russian, Ukrainian, Serbian (Cyrillic alphabet).
6007 Use Latin-8 for Welsh.
6008 Use Latin-1 for English if "en" is explicitly specified.
6009 Use Latin-1 for Scots Gaelic, Tagalog.
6010 Use Latin-1 (not Latin-4) for Greenlandic.
6011 Use Latin-1 (not Latin-2) for Albanian.
6012 (locale-preferred-coding-systems, locale-language-names):
6013 Remove generic ISO 8859 locales; locale-charset-language-names now
6014 does this.
6015 (locale-charset-language-names): New variable.
6016 (set-locale-environment): Use language name specified by
6017 locale-charset-language-names if its charsets disagree with the
6018 language name specified by locale-language-names.
6019
6020 1999-10-22 Dave Love <fx@gnu.org>
6021
6022 * make-mode.el: Minor doc fixes.
6023
6024 * latin-9.el: Avoid non-ASCII characters to prevent loadup failure.
6025
6026 1999-10-21 Dave Love <fx@gnu.org>
6027
6028 * loadup.el: Add latin-8, latin-9.
6029
6030 1999-10-20 Paul Eggert <eggert@twinsun.com>
6031
6032 * disp-table.el (standard-display-european): Remove undocumented
6033 arg AUTO; no longer used by startup.el. Do not attempt to treat
6034 all non-English language environments as coding system names.
6035 Instead, use the downcased language environment name as a coding
6036 system name if it is one; otherwise, use latin-1.
6037
6038 1999-10-20 Gerd Moellmann <gerd@gnu.org>
6039
6040 * dired.el (dired-move-to-filename-regexp): Fix long comment lines
6041 that were split so that part of the comment appeared as Lisp code.
6042
6043 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6044
6045 * ps-bdf.el: Doc fix.
6046
6047 * ps-print-def.el: New file: common definitions for all parts of
6048 ps-print.
6049 (ps-multibyte-buffer): Moved from ps-mule.
6050
6051 * ps-mule.el: File dependence fix.
6052 (ps-multibyte-buffer): Moved to ps-print-def.
6053
6054 * ps-print.el: Doc fix, better customization.
6055 (ps-print-region-function, ps-number-of-columns, ps-spool-tumble)
6056 (ps-print-color-p, ps-printing-region-p, ps-n-up-database)
6057 (ps-end-file): Doc fix.
6058 (ps-setup, ps-begin-file): Fun fix.
6059 (postscript): New group.
6060 (ps-zebra-gray, ps-banner-page-when-duplexing): New vars.
6061 (ps-print-prologue-1): Adjust PostScript programming.
6062 (ps-print): Adjust group hierarchy.
6063 (ps-print-n-up, ps-print-zebra, ps-print-background,
6064 ps-print-printer)
6065 (ps-print-page): New subgroups.
6066 (ps-print-prologue-header, ps-printer-name, ps-lpr-command)
6067 (ps-lpr-switches, ps-page-dimensions-database, ps-paper-type)
6068 (ps-landscape-mode, ps-print-control-characters, ps-n-up-printing)
6069 (ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling, ps-zebra-stripes)
6070 (ps-zebra-stripe-height, ps-print-background-image)
6071 (ps-print-background-text, ps-spool-config): Adjust customization.
6072 (dos-ps-printer): Definition eliminated.
6073
6074 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6075
6076 * ps-mule.el: Doc fix, define functions properly if mule package is
6077 loaded or not.
6078 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Define properly if
6079 mule package is loaded or not.
6080
6081 * ps-print.el: Doc fix, n-up printing.
6082 (ps-print-version): New version number (5.0).
6083 (ps-page-dimensions-database): Added document media.
6084 (ps-n-up-printing, ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling)
6085 (ps-page-order, ps-printing-region-p): New vars.
6086 (ps-n-up-printing, ps-n-up-filling, ps-header-sheet, ps-end-job): New
6087 funs.
6088 (ps-page-dimensions-get-media, ps-n-up-landscape, ps-n-up-lines)
6089 (ps-n-up-columns, ps-n-up-missing, ps-n-up-xcolumn, ps-n-up-ycolumn)
6090 (ps-n-up-xline, ps-n-up-yline, ps-n-up-repeat, ps-n-up-end)
6091 (ps-n-up-xstart, ps-n-up-ystart): New macros.
6092 (ps-print-begin-sheet-hook): New hook.
6093 (ps-boundingbox-re, ps-n-up-database, ps-n-up-filling-database): New
6094 const.
6095 (ps-setup, ps-begin-file, ps-get-buffer-name, ps-begin-job)
6096 (ps-end-file, ps-dummy-page, ps-generate): Fix funs.
6097 (ps-print-prologue-1): Adjust PostScript programming for n-up printing.
6098 (ps-count-lines): Changed to defun.
6099 (ps-header-page): Changed to defsubst, fix fun.
6100 (ps-printing-region): Doc fix, adjust programming code.
6101 (ps-output-boolean, ps-background-pages, ps-background-text)
6102 (ps-background-image, ps-background, ps-get-boundingbox): Adjust
6103 programming code.
6104
6105 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
6106
6107 * ps-print.el: Doc fix, duplex and setpagedevice configuration.
6108 (ps-print-version): New version number (4.2).
6109 (ps-spool-config, ps-spool-tumble): New vars.
6110 (ps-print-prologue-1): Changed to defconst, adjust PostScript
6111 programming, new PostScript procedure to handle errors.
6112 (ps-print-prologue-2): Changed to defconst.
6113 (ps-print-duplex-feature): New const: duplex and tumble setting.
6114 (ps-setup, ps-begin-file): Fix funs.
6115 (ps-boolean-capitalized): New fun.
6116
6117 1999-10-19 Stefan Monnier <monnier@cs.yale.edu>
6118
6119 * Makefile (dontcompilefiles): Obsoleted.
6120 (DONTCOMPILE): Added emacs-lisp/cl-specs.el.
6121 (EL): Unused.
6122 (temacs): Removed (unused).
6123 (cus-load.el, finder-inf.el, loaddefs.el): New targets to build a dummy
6124 version of the file (necessary for the update to work properly).
6125 (autoloads): Force the use of `pwd`/loaddefs.el.
6126 (updates); Redefined in terms of other targets to reduce redundancy.
6127 (.el.elc): New default rule, just in case you want it.
6128 (compile): Use a single invocation of Emacs.
6129 (bootstrap-compile); Unneeded.
6130 (autoloads-with-other-emacs): Unneeded now that autoloads is fixed.
6131
6132 1999-10-19 Dave Love <fx@gnu.org>
6133
6134 * emacs-lisp/eval-reg.el: Removed -- not now needed by edebug.
6135
6136 1999-10-19 Sam Steingold <sds@ksp.com>
6137
6138 * map-ynp.el (map-y-or-n-p): Remove extraneous `not' to
6139 comply with the comment.
6140
6141 1999-10-19 Gerd Moellmann <gerd@gnu.org>
6142
6143 * autorevert.el (auto-revert-mode): Make auto-revert-mode
6144 permanent-local.
6145
6146 1999-10-19 Peter Kleiweg <kleiweg@let.rug.nl>
6147
6148 * progmodes/ps-mode.el (ps-mode-print-function): Fix default
6149 value: \"lpr\" changed to "lpr"
6150 (ps-mode-version): New constant
6151 (ps-mode-show-version): New function, added key in ps-mode-map
6152 (ps-run-messages): Removed
6153 (ps-run-font-lock-keywords-2): New defcustom variable replacing
6154 ps-run-messages. These keywords now include the value of
6155 ps-run-prompt, making its fontification customizable.
6156 (ps-run-init): Removed \\n from docstring, it is now added when
6157 the value is used
6158 (ps-run-font-lock-keywords-1): Added checking for initial ^ in
6159 ps-run-prompt
6160 (ps-mode): Added ps-run-font-lock-keywords-2 to list of
6161 customizable variables in doc-string (its equivalent
6162 ps-run-messages was missing in previous version of the doc-string)
6163 (ps-run-mode): Simplified assignment to font-lock-defaults, using
6164 symbols only
6165
6166 1999-10-19 Alex Schroeder <alex@gnu.org>
6167
6168 * ansi-color.el: Complete rewrite.
6169
6170 1999-10-19 Paul Eggert <eggert@twinsun.com>
6171
6172 Fix bootstrapping problems.
6173 Use the system locale to specify Emacs locale defaults.
6174
6175 * international/mule-cmds.el (global-map):
6176 Do not use backquote, because that makes a bootstrapping
6177 problem if you need to recompile all Lisp files using interpreted code.
6178 * international/mule.el (charset-id, charset-bytes,
6179 charset-dimension, charset-chars, charset-width,
6180 charset-direction, charset-iso-final-char,
6181 charset-iso-graphic-plane, charset-reverse-charset,
6182 charset-short-name, charset-long-name, charset-description,
6183 charset-plist): Likewise.
6184 * subr.el (save-match-data): Likewise.
6185
6186 * international/mule-cmds.el
6187 (set-display-table-and-terminal-coding-system): New function,
6188 containing code migrated out of set-language-environment.
6189 (set-language-environment, set-locale-environment): Use it.
6190 (locale-translation-file-name): Moved here from startup.el.
6191 (locale-language-names, locale-preferred-coding-systems):
6192 New vars.
6193 (locale-name-match, set-locale-environment): New functions.
6194
6195 * language/japan-util.el (setup-japanese-environment-internal):
6196 Prefer japanese-iso-8bit if the system-type is usg-unix-v.
6197
6198 * startup.el (iso-8859-n-locale-regexp): Remove.
6199 (locale-translation-file-name): Move to mule-cmds.el.
6200 (command-line): Move locale-stuff into set-locale-environment.
6201
6202 1999-10-18 Dave Love <fx@gnu.org>
6203
6204 * abbrev.el (add-abbrev, inverse-add-abbrev)
6205 (expand-region-abbrevs): Remove properties from buffer text.
6206
6207 1999-10-17 Gerd Moellmann <gerd@gnu.org>
6208
6209 * iswitchb.el (iswitchb-exhibit): Extract user-input only
6210 from the mini-buffer, without the prompt.
6211
6212 * simple.el (minibuffer-prompt-end): Return the position
6213 after the prompt, not the position of that last character
6214 of the prompt.
6215
6216 1999-10-17 Miles Bader <miles@gnu.org>
6217
6218 * simple.el: Doc fixes.
6219
6220 1999-10-17 Miles Bader <miles@gnu.org>
6221
6222 * simple.el (previous-matching-history-element, next-history-element):
6223 Change to work correctly even if the point is in the prompt.
6224 (choose-completion-string): Likewise.
6225 (minibuffer-prompt-width): New function (compatibility with old subr).
6226
6227 * textmodes/paragraphs.el (forward-sentence, forward-paragraph):
6228 When constraining the final position to the current field,
6229 don't use the ONLY-IN-LINE mode of constrain-to-field.
6230
6231 1999-10-17 Miles Bader <miles@gnu.org>
6232
6233 * simple.el (line-move): Supply new ESCAPE-FROM-EDGE argument to
6234 constrain-to-field.
6235 * textmodes/paragraphs.el (forward-sentence): Likewise.
6236
6237 1999-10-17 Miles Bader <miles@gnu.org>
6238
6239 * simple.el (line-move): Use constrain-to-field to avoid
6240 moving into a prompt.
6241 (previous-complete-history-element): Clarify doc string.
6242 (next-complete-history-element): Likewise.
6243 Use field-beginning instead of point-min.
6244 (next-matching-history-element): Use field-beginning and
6245 erase-field instead of point-min and erase-buffer.
6246 * textmodes/paragraphs.el
6247 (forward-paragraph, forward-sentence): Likewise.
6248 (backward-kill-paragraph, backward-kill-sentence): Remove code to
6249 constrain the kill to an field, as the movement commands now
6250 do this.
6251
6252 1999-10-17 Miles Bader <miles@gnu.org>
6253
6254 * simple.el (previous-matching-history-element): Get the
6255 minibuffer input with field-string instead of buffer-string.
6256 (choose-completion-string): Likewise.
6257 (next-history-element): Likewise.
6258 Erase the minibuffer input with erase-field, not erase-buffer.
6259 Use field-beginning to find the beginning of the input.
6260 * textmodes/paragraphs.el (backward-kill-sentence):
6261 Remove minibuffer-prompt hack.
6262 Constrain to any input field.
6263
6264 1999-10-17 Sam Steingold <sds@ksp.com>
6265
6266 * bindings.el (completion-ignored-extensions): Added ".sparcf"
6267 for CMUCL on sparc and ".ufsl" for LispWorks.
6268 (bound-and-true-p): Bugfix: free variable `v'.
6269
6270 1999-10-16 Dave Love <d.love@dl.ac.uk>
6271
6272 * emacs-lisp/edebug.el (edebug-install-read-eval-functions)
6273 (edebug-uninstall-read-eval-functions): Use load-read-function,
6274 avoiding elisp-eval.
6275
6276 1999-10-16 Sam Steingold <sds@ksp.com>
6277
6278 * emacs-lisp/cl-indent.el (common-lisp-indent-function): Use `eq'
6279 instead of `eql'.
6280
6281 1999-10-14 Stefan Monnier <monnier@cs.yale.edu>
6282
6283 * ange-ftp.el (ange-ftp-make-tmp-name, ange-ftp-del-tmp-name):
6284 * browse-url.el (browse-url-of-buffer, browse-url-delete-temp-file),
6285 (browse-url-temp-file-list, browse-url-delete-temp-file-list):
6286 * ediff-util.el (ediff-make-temp-file):
6287 * ediff-vers.el (ediff-pcl-cvs-view-revision):
6288 * emerge.el (emerge-make-temp-file):
6289 * jka-compr.el (jka-compr-make-temp-name, jka-compr-delete-temp-file):
6290 * vc.el (vc-update-change-log):
6291 * mail/mailpost.el (post-mail-send-it):
6292 * mail/metamail.el (metamail-region):
6293 * progmodes/cmacexp.el (c-macro-expansion):
6294 * textmodes/makeinfo.el (makeinfo-region): Use make-temp-file.
6295
6296 1999-10-15 Gerd Moellmann <gerd@gnu.org>
6297
6298 * smtpmail.el (smtpmail-via-smtp): Add support for
6299 automatically appending a domain to RCPT TO: addresses.
6300
6301 1999-10-14 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6302
6303 * dired.el (dired-insert-directory): Insert the amount of
6304 free space after the total size.
6305 (dired-free-space-program, dired-free-space-args): New variables.
6306
6307 1999-10-14 Karl Heuer <kwzh@gnu.org>
6308
6309 * mail/rmail.el (rmail-pop-password-error): Add new pattern.
6310
6311 1999-10-14 Dave Love <fx@gnu.org>
6312
6313 * international/characters.el:
6314 * international/fontset.el:
6315 * international/mule-conf.el: Add latin-iso8859-1[45].
6316
6317 * language/european.el: Add Latin-8, Latin-9. Modify some doc
6318 strings.
6319
6320 * startup.el (iso-8859-n-locale-regexp): Modify for Latin-[89].
6321 (command-line): Detect Latin-[89] locales.
6322
6323 1999-10-13 Stefan Monnier <monnier@cs.yale.edu>
6324
6325 * international/mule-cmds.el (select-safe-coding-system)
6326 (leim-list-header): Avoid the use of strings that start with backslash
6327 newline since lread.c:read1 has a hack to turn those strings into
6328 integer 0 during the loadup.el process.
6329
6330 * diff-mode.el (diff-find-file-name): Use `Index:' preferentially.
6331
6332 1999-10-13 Dave Love <fx@gnu.org>
6333
6334 * image.el (insert-image): Copy the image spec and add an
6335 intangible property.
6336
6337 1999-10-13 Stefan Monnier <monnier@cs.yale.edu>
6338
6339 * help.el (help-xref-interned): Make it also work on variable-only
6340 and function-only symbols.
6341 (help-make-xrefs): Take advantage of the new `help-xref-interned'.
6342 (help-follow): If the point under mouse is not highlighted, try
6343 `help-xref-interned' on the pointed-to symbol anyway.
6344
6345 * info.el (Info-on-current-buffer): New entry point.
6346 (Info-find-node): Split into two for Info-on-current-buffer to
6347 hook into it.
6348 (Info-current-file, Info-set-mode-line, Info-up):
6349 Info-current-file can now be t.
6350 (Info-clone-buffer-hook): Function for `clone-buffer'.
6351 (Info-goto-node, Info-menu, Info-mode-map, Info-mode):
6352 Make `clone-buffer' available in various ways to the user.
6353
6354 1999-10-12 Stefan Monnier <monnier@cs.yale.edu>
6355
6356 * simple.el (shell-command, shell-command-on-region): Use
6357 make-temp-file.
6358 (clone-buffer, clone-process, clone-buffer-hook): New functions.
6359
6360 * subr.el (with-current-buffer): Don't use backquotes to avoid
6361 bootstrapping problems.
6362
6363 * loadup.el (load-path): Add subdirs for bootstrapping.
6364 (docstrings): Ignore errors during bootstrapping.
6365 (args): New `bootstrap' argument (for use in place of `dump').
6366
6367 1999-10-12 Emmanuel Briot <briot@gnat.com>
6368
6369 * ada-stmt.el: Doc-string fixes.
6370
6371 1999-10-12 Gerd Moellmann <gerd@gnu.org>
6372
6373 * recentf.el: New file.
6374
6375 * ps-mode.el: New file.
6376
6377 * files.el (auto-mode-alist): Add ps-mode for .eps and .ps,
6378 case insensitive.
6379
6380 1999-10-12 Richard Sharman <rsharman@pobox.com>
6381
6382 * sh-script.el: Added support for indenting existing scripts.
6383 (sh-mode-map): Added new bindings.
6384 (sh-mode): Updated mode doc-string for new commands, added
6385 make-local-variable calls, initialize mode-specific variables.
6386 (sh-indent-line): Renamed to sh-basic-indent-line; sh-indent-line
6387 is now a different function.
6388 (sh-header-marker): Changed docstring.
6389 (sh-set-shell): Initialize mode-specific variables.
6390 (sh-case, sh-for, sh-if, sh-indexed-loop, sh-repeat, sh-select)
6391 (sh-tmp-file, sh-until, sh-until, sh-while, sh-while-getopts):
6392 Changed these define-skeleton calls to work with user-specified
6393 indentation settings.
6394 (sh-basic-indent-line, sh-blink, sh-calculate-indent)
6395 (sh-check-paren-in-case, sh-check-rule, sh-do-nothing)
6396 (sh-electric-hash, sh-electric-less, sh-electric-rparen)
6397 (sh-find-prev-matching, sh-find-prev-switch, sh-get-indent-info)
6398 (sh-get-indent-var-for-line, sh-get-kw, sh-get-word)
6399 (sh-goto-match-for-done, sh-goto-matching-case, sh-goto-matching-if)
6400 (sh-guess-basic-offset, sh-handle-after-case-label)
6401 (sh-handle-prev-case, sh-handle-prev-case-alt-end, sh-handle-prev-do)
6402 (sh-handle-prev-done, sh-handle-prev-else, sh-handle-prev-esac)
6403 (sh-handle-prev-fi, sh-handle-prev-if, sh-handle-prev-open)
6404 (sh-handle-prev-rc-case, sh-handle-prev-then, sh-handle-this-close)
6405 (sh-handle-this-do, sh-handle-this-done, sh-handle-this-else)
6406 (sh-handle-this-esac, sh-handle-this-fi, sh-handle-this-rc-case)
6407 (sh-handle-this-then, sh-help-string-for-variable)
6408 (sh-in-comment-or-string, sh-indent-line, sh-learn-buffer-indent)
6409 (sh-learn-line-indent, sh-load-style, sh-make-vars-local, sh-mark-init)
6410 (sh-mark-line, sh-mkword-regexpr, sh-mkword-regexp)
6411 (sh-must-be-shell-mode, sh-must-support-indent, sh-name-style)
6412 (sh-prev-line, sh-prev-stmt, sh-prev-thing, sh-read-variable)
6413 (sh-remove-our-text-properties, sh-rescan-buffer)
6414 (sh-reset-indent-vars-to-global-values, sh-safe-backward-sexp)
6415 (sh-safe-forward-sexp, sh-save-styles-to-buffer, sh-scan-buffer)
6416 (sh-scan-case, sh-search-word, sh-set-char-syntax)
6417 (sh-set-here-doc-region, sh-set-indent, sh-set-var-value)
6418 (sh-show-indent, sh-this-is-a-continuation, sh-var-value): New
6419 functions.
6420 (sh-debug, sh-electric-rparen-needed, sh-here-doc-syntax)
6421 (sh-indent-supported, sh-kw, sh-kw-alist, sh-kws-for-done)
6422 (sh-learned-buffer-hook, sh-make-vars-local, sh-regexp-for-done)
6423 (sh-special-keywords, sh-special-syntax, sh-st-punc, sh-styles-alist)
6424 (sh-var-list): New variables.
6425
6426 1999-10-12 Dave Pearson <davep@hagbard.demon.co.uk>
6427
6428 * quickurl.el (quickurl-list-insert): `count-lines' was returning
6429 a value one line to high if the cursor wasn't at the start of a
6430 line. A `beginning-of-line' is now performed before making the
6431 call to `count-lines'.
6432
6433 1999-10-11 Stefan Monnier <monnier@cs.yale.edu>
6434
6435 * diff-mode.el (vc-backend-diff): Get rid of the autoloaded advice.
6436
6437 1999-10-09 Stefan Monnier <monnier@cs.yale.edu>
6438
6439 * Makefile (setwins): Abstract out the command to find subdirectories
6440 and fix it to also ignore subdirectories of CVS (f.ex. CVS/Base).
6441 (custom-deps, finder-data, autoloads, update-subdirs, updates)
6442 (autoloads-with-other-emacs): Use it.
6443
6444 * diff-mode.el: New file. A mode for viewing/editing context diffs.
6445
6446 1999-10-09 Gerd Moellmann <gerd@gnu.org>
6447
6448 * Makefile (bootstrap-compile): New target. Compile Lisp
6449 files with ../src/temacs.
6450
6451 1999-10-08 Dave Love <fx@gnu.org>
6452
6453 * ange-ftp.el: Require dired when compiling.
6454 (ange-ftp-normal-login): Allow EFS-style port specification.
6455
6456 1999-10-08 Simon Marshall <simon@gnu.org>
6457
6458 * emacs-lisp/regexp-opt.el (regexp-opt-try-suffix): New function.
6459 (regexp-opt-group): Use it to get common suffixes in STRINGS.
6460 If STRINGS is nil, return "" rather than nil.
6461
6462 1999-10-08 Gerd Moellmann <gerd@gnu.org>
6463
6464 * Makefile (compile): Compile files one by one. Set load-path to
6465 current directory and subdirectories when compiling.
6466
6467 1999-10-08 Gerd Moellmann <gerd@gnu.org>
6468
6469 * Makefile (EMACSOPT, DONTCOMPILE, EL): New.
6470 (emacs): Use it everywhere instead of EMACS.
6471 (compile): New target. Compile all Lisp files from scratch.
6472 (recompile): New target. Recompile lisp directory.
6473 (autoloads-with-other-emacs): New target. Build loaddefs.el with
6474 an Emacs executable not built in the current directory tree.
6475
6476 1999-10-07 Peter Breton <pbreton@ne.mediaone.net>
6477
6478 * filecache.el (file-cache-completion-ignore-case): New variable,
6479 defaulting to the value of completion-ignore-case.
6480 (file-cache-minibuffer-complete): Use it.
6481 (file-cache-files-matching, file-cache-files-matching-internal):
6482 New functions.
6483
6484 1999-10-07 Emmanuel Briot <briot@gnat.com>
6485
6486 * ada-xref.el: New file
6487
6488 * ada-prj.el: New file
6489
6490 * ada-stmt.el (ada-stmt-add-to-ada-menu): New function
6491
6492 * ada-stmt.el (ada-subprogram-body): Correctly find the name of the
6493 subprogram being created.
6494
6495 * ada-mode.el (ada-get-indent-*, ada-indent-current, ada-goto-*,
6496 ada-indent-newline-indent): Rewritten to support the new indentation
6497 scheme
6498
6499 * ada-mode.el (ada-case-read-exceptions, ada-create-case-exceptions):
6500 New functions
6501
6502 * ada-mode.el (ada-fill-comment-paragraph): Add support for the
6503 justification parameter
6504
6505 * ada-mode.el (ada-make-body, ada-gen-treat-proc,
6506 ada-make-subprogram-body): Rewritten to benefit from the gnatstub
6507 external program
6508
6509 1999-10-07 Dave Love <fx@gnu.org>
6510
6511 * bindings.el (bound-and-true-p): New macro.
6512 (make-mode-line-mouse-sensitive): Don't require easymenu.
6513
6514 1999-10-07 Gerd Moellmann <gerd@gnu.org>
6515
6516 * custom.el (defface): Extend documentation for new values of
6517 `type'.
6518
6519 * faces.el (face-spec-set-match-display): Recognize `type' of
6520 `motif', `lucid', `x-toolkit'.
6521 (menu): New face.
6522
6523 1999-10-05 Dave Love <fx@gnu.org>
6524
6525 * files.el: Recognize temporary crontab files.
6526
6527 * info.el: Require jka-compr when compiling.
6528 (Info-suffix-list): Add bzip2 files (non-ms-dos only).
6529
6530 1999-10-04 Dave Love <fx@gnu.org>
6531
6532 * cus-start.el: Add x-stretch-cursor, indicate-empty-lines,
6533 scroll-up-aggressively, scroll-down-aggressively.
6534
6535 * time.el (display-time-mode): Add autoload cookie.
6536
6537 * rect.el (delete-extract-rectangle): Doc fix from verna.
6538
6539 * help-macro.el (three-step-help): Customize.
6540
6541 1999-10-04 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6542
6543 * hexl.el (hexlify-buffer): Move point in proper range
6544 if it is too large.
6545 (hexl-after-revert-hook): Update hexl-max-address.
6546 (hexl-address-to-marker): Doc fix.
6547
6548 1999-10-03 Dave Love <fx@gnu.org>
6549
6550 * image.el (defimage): Remove redundant code. Substitute file in
6551 image plist.
6552
6553 1999-10-02 Andre Spiegel <spiegel@inf.fu-berlin.de>
6554
6555 * vc.el (vc-backend-checkout): Use coding system 'no-conversion
6556 when doing with-temp-file.
6557
6558 1999-10-01 Dave Love <fx@gnu.org>
6559
6560 * cus-edit.el (custom-comment-create): Fill :from and :to slots.
6561
6562 * help.el: Require view when compiling.
6563 (view-emacs-FAQ): Use Info version.
6564
6565 1999-09-29 Ken'ichi Handa <handa@gnu.org>
6566
6567 * ps-mule.el (ps-mule-font-info-database-ps): Typo fixed
6568 (normat->normal). Use correct font names for Korean
6569 (Munhwa-Regular-KSC-EUC-H and Munhwa-Bold-KSC-EUC-H).
6570
6571 1999-09-29 Kenichi Handa <handa@etl.go.jp>
6572
6573 * language/cyrillic.el (cyrillic-koi8-r-decode-table): Map 8-bit
6574 code not used by KOI8 to the same 8-bit code instead of mapping to
6575 SPC.
6576 (cyrillic-alternativnyj-decode-table): Likewise.
6577
6578 1999-09-29 Alex Schroeder <alex@gnu.org>
6579
6580 * sql.el (sql-imenu-generic-expression): Aew, used to set
6581 imenu-generic-expression.
6582 (sql-mode): Use ?_ and ?. instead of 95 and 46 when setting
6583 font-lock-defaults' SYNTAX-ALIST. Set imenu-generic-expression,
6584 imenu-case-fold-search, and imenu-syntax-alist.
6585 (sql-interactive-mode): Use ?_ and ?. instead of 95 and 46 when
6586 setting font-lock-defaults' SYNTAX-ALIST.
6587
6588 1999-09-28 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6589
6590 * map-ynp.el (map-y-or-n-p): If we read -1, for end of keyboard
6591 macro, try again.
6592
6593 1999-09-28 Dave Love <fx@gnu.org>
6594
6595 * cus-edit.el (custom-comment): Change widget definition.
6596 (custom-comment-create, custom-comment-show)
6597 (custom-comment-invisible-p): Don't use :comment-overlay.
6598 (custom-comment-hide): New function.
6599 (custom-variable-set, custom-variable-save)
6600 (custom-variable-reset-standard, custom-face-set)
6601 (custom-face-save): Use it.
6602
6603 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6604
6605 * hexl.el (hexl-mode): Do nothing if already in hexl mode.
6606
6607 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6608
6609 * faces.el (region): Doc fix.
6610
6611 1999-09-27 Dave Love <fx@gnu.org>
6612
6613 * isearch.el (isearch): Add :links in defgroup.
6614 (isearch-mode-map): Bind mouse-2 to isearch-mouse-yank.
6615 (isearch-switch-frame-handler): Comment out (unused).
6616 (isearch-yank-x-selection, isearch-ring-advance-edit): Doc fix.
6617 (isearch-ring-retreat-edit): Doc fix.
6618 (isearch-mouse-yank): New command.
6619 (isearch-last-command-char): Removed. Callers changed to use
6620 last-command-char.
6621 (isearch-char-to-string): Removed. Callers changed to use
6622 char-to-string.
6623
6624 1999-09-26 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru>
6625
6626 * ispell.el (ispell-dictionary-alist-6): Don't use "-C"
6627 option for Russian.
6628
6629 1999-09-25 Gerd Moellmann <gerd@gnu.org>
6630
6631 * faces.el (face-differs-from-default-p): Compare face
6632 attributes individually.
6633
6634 * image.el (put-image, insert-image): Add string argument.
6635
6636 1999-09-24 Gerd Moellmann <gerd@gnu.org>
6637
6638 * ange-ftp.el (ange-ftp-date-regexp): Make it work for
6639 LANG=de_DE.iso88591 on HPUX 11.0.
6640
6641 * dired.el (dired-move-to-filename-regexp): Make it work
6642 for LANG=de_DE.iso88591 on HPUX 11.0.
6643
6644 1999-09-24 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6645
6646 * info.el (info-initialize): Don't test existence of ALTERNATIVE
6647 if we know for some other reason it should not be used.
6648
6649 * emacs-lisp/edebug.el (edebug-outside-current-prefix-arg):
6650 New variable.
6651 (edebug-recursive-edit): Save current-prefix-arg there,
6652 bind it, and set it back at the end.
6653 (edebug-outside-excursion): Restore and update the outside
6654 value of current-prefix-arg.
6655 (edebug-emacs-version-specific): Delete support for Epoch.
6656
6657 1999-09-24 Howard Melman <howard@silverstream.com>
6658
6659 * imenu.el (imenu-after-jump-hook): New variable.
6660 (imenu): Run menu-after-jump-hook.
6661 (imenu-name-lookup-function): New variable.
6662 * imenu.el (imenu--in-alist): Use those variables.
6663
6664 1999-09-24 Carsten Dominik <cd@gnu.org>
6665
6666 * textmodes/reftex-parse.el (reftex-parse-from-file): Scan for
6667 multiple thebibliography environments.
6668
6669 * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Fixed bug
6670 with recentering window.
6671 (reftex-extract-bib-entries-from-thebibliography,
6672 reftex-offer-bib-menu,reftex-bibtex-selection-callback): Deal
6673 with multiple thebibliography environments.
6674
6675 * textmodes/reftex-vars.el
6676 (reftex-section-levels): Function allowed as cdr.
6677 (reftex-max-section-depth) New option.
6678
6679 * textmodes/reftex-vcr.el (reftex-view-cr-cite): Deal
6680 with multiple thebibliography environments.
6681
6682 1999-09-23 Gerd Moellmann <gerd@gnu.org>
6683
6684 * iswitchb.el (iswitchb-complete): Use minibuffer-prompt-end
6685 instead of point-min in call to delete-region.
6686
6687 1999-09-22 Andre Spiegel <spiegel@inf.fu-berlin.de>
6688
6689 * vc.el (vc-backend-checkout): Use with-temp-file when checking
6690 out into arbitrary file names.
6691
6692 1999-09-19 Ken'ichi Handa <handa@gnu.org>
6693
6694 * language/european.el ("Turkish"): New language environment.
6695
6696 1999-09-19 Dave Love <fx@gnu.org>
6697
6698 * delim-col.el: New file.
6699
6700 1999-09-17 Richard Stallman <rms@gnu.org>
6701
6702 * files.el (after-find-file): When visiting a backup file,
6703 make it read-only.
6704
6705 * apropos.el (apropos-symbol-face): Non-nil even for ttys.
6706 (apropos-keybinding-face, apropos-label-face): Likewise.
6707 (apropos-property-face, apropos-match-face): Likewise.
6708 (apropos-label-properties): New variable.
6709 (apropos-print-doc): Use apropos-label-properties.
6710 (apropos-print): Set apropos-label-properties.
6711
6712 1999-09-15 Richard Stallman <rms@gnu.org>
6713
6714 * winner.el: Use aref instead of sref.
6715
6716 * whitespace.el (whitespace-mode, whitespace-mode-line): Add defvars.
6717
6718 1999-09-14 Gerd Moellmann <gerd@gnu.org>
6719
6720 * lisp-mode.el (eval-last-sexp): Use prin1 instead of print.
6721
6722 1999-09-14 Richard Stallman <rms@gnu.org>
6723
6724 * font-lock.el (lisp-font-lock-keywords-1): Recognize an autoload
6725 cookie, even if followed by a letter.
6726
6727 1999-09-14 Stephen Eglen <stephen@gnu.org>
6728
6729 * progmodes/octave-inf.el (inferior-octave-startup): Ensure -i and
6730 --no-line-editing are passed to Octave by including them here
6731 rather than storing them in inferior-octave-startup-args.
6732
6733 1999-09-14 Eli Zaretskii <eliz@gnu.org>
6734
6735 * textmodes/texinfo.el (texinfo-font-lock-keywords): Add uref,
6736 command, option, env and sc.
6737
6738 * subr.el (shell-quote-argument): Quote argument with double
6739 quotes for ms-dos.
6740
6741 1999-09-14 Richard Stallman <rms@gnu.org>
6742
6743 * simple.el (eval-expression-print-level): New variable.
6744 (eval-expression-print-length): New variable.
6745 (eval-expression-debug-on-error): New variable.
6746 (eval-expression): Bind print-level, print-length and
6747 debug-on-error from those vars.
6748
6749 * emacs-lisp/lisp-mode.el (eval-defun, eval-last-sexp):
6750 Bind print-level, print-length and debug-on-error.
6751
6752 1999-09-14 Inge Frick <inge@nada.kth.se>
6753
6754 * dired.el (dired-recursive-deletes): New custom variable.
6755 (dired-re-no-dot): New variable.
6756 (dired-delete-file): New function deletes files and directories
6757 recursively.
6758 (dired-internal-do-deletions): Use `dired-delete-file' to delete files.
6759
6760 * dired-aux.el (dired-recursive-copies): New custom variable.
6761 (dired-handle-overwrite): Broke a long line.
6762 (dired-copy-file): Call `dired-copy-file-recursive' instead of
6763 `copy-file'.
6764 (dired-copy-file-recursive): New function. Copy directories
6765 recursively.
6766 (dired-do-create-files): Added support for generalized directory
6767 target. How-to function may now return a function. New fluid
6768 variable `dired-one-file'.
6769 (dired-copy-how-to-fn): New variable.
6770 (dired-do-copy): Bind `dired-recursive-copies' to preserve it.
6771 Use dired-copy-how-to-fn as how-to argument to dired-do-create-files.
6772 (dired-do-copy-regexp): No recursive copies.
6773
6774 1999-09-14 Rajesh Vaidheeswarran <rv@dsmit.com>
6775
6776 * whitespace.el (whitespace-version): Update version to 2.4
6777
6778 * whitespace.el: Add customization variables to conditionally test
6779 any of the five whitespaces, per request from Rune Kleveland
6780 <runekl@math.uio.no> and Klaus Berndl <berndl@sdm.de>.
6781
6782 * whitespace.el (whitespace-spacetab-regexp): Fix doc string.
6783
6784 * whitespace.el (whitespace-modes): Add `change-log-mode' to the
6785 list of modes to be checked for bogus whitespaces.
6786
6787 * whitespace.el (whitespace-rescan-timer-time): Update
6788 documentation.
6789
6790 * whitespace.el (whitespace-display-unchecked-whitespaces):
6791 New function to update modeline with untested whitespaces.
6792
6793 * whitespace.el (whitespace-buffer): Test only whitespaces whose
6794 checking is turned on, and update modeline using the newly created
6795 `whitespace-display-unchecked-whitespaces'.
6796
6797 * whitespace.el (whitespace-cleanup): Cleanup only whitespaces
6798 whose checking is turned on, and update modeline using the newly
6799 created `whitespace-display-unchecked-whitespaces'.
6800
6801 * whitespace.el (whitespace-describe): Update documentation.
6802
6803 * whitespace.el (whitespace-tickle-timer): Test if
6804 `whitespace-rescan-timer-time' is non-zero before tickling timer.
6805
6806 1999-09-13 Dave Love <fx@gnu.org>
6807
6808 * hideif.el (hide-ifdef-mode): Add autoload cookie.
6809
6810 * checkdoc.el (checkdoc-display-status-buffer): Avoid Help mode
6811 for temp buffer.
6812 (checkdoc-this-string-valid): Don't assume default comment-start.
6813
6814 1999-09-13 Gerd Moellmann <gerd@gnu.org>
6815
6816 * rsz-mini.el: Remove code, keep the interface.
6817
6818 1999-09-13 Dave Love <fx@gnu.org>
6819
6820 * help.el (help-highlight-p): Doc fix.
6821
6822 * faces.el (mode-line, header-line, tool-bar): Add :version.
6823 (highlight, secondary-selection): Add :group.
6824 (trailing-whitespace): Add :group, :version.
6825
6826 * wid-edit.el: Remove some compatibility code and checks.
6827 (widget-specify-field, widget-specify-button): Don't use XEmacs
6828 properties.
6829 (widget-overlay-inactive): Change error message.
6830 (widget-button-pressed-face): New variable.
6831 (widget-button-click): Use it.
6832 (widget-documentation-link-add): Specify mouse and button faces.
6833 (widget-echo-help-mouse, widget-stop-mouse-tracking): Functions
6834 removed now the functionality is built in.
6835
6836 * cus-edit.el: Don't define-widget-keywords.
6837 (multimedia): New group.
6838 (custom-last): Function removed.
6839 (custom-quote): Add vectorp case, comment out characterp case.
6840 (custom-buffer-done-function, custom-raised-buttons): New option.
6841 (Custom-buffer-done): New function.
6842 (custom-buffer-create-internal): Obey custom-raised-buttons,
6843 Custom-buffer-done.
6844 (custom-button-face): Make it `released-button'.
6845 (custom-button-pressed-face): Make it `pressed-button'
6846 (custom-mode-map): Bind "q" to Custom-buffer-done.
6847 (custom-mode): Deal with raised/pressed buttons.
6848
6849 Changes from Didier Verna:
6850 (custom-prompt-variable): Optional third arg makes prompt for a
6851 comment string.
6852 (customize-set-value, customize-set-variable,
6853 customize-save-variable): Optional prefix makes function handle
6854 variable comments.
6855 (customize-customized, customize-saved, custom-variable-state-set)
6856 (custom-variable-set, custom-variable-save, custom-face-state-set)
6857 (custom-variable-reset-saved, custom-variable-reset-standard)
6858 (custom-face-set, custom-face-save, custom-face-reset-saved)
6859 (custom-face-reset-standard, customize-save-customized): Handle
6860 custom comments.
6861 (custom-comment-face, custom-comment-tag-face): New face.
6862 (custom-comment): New widget.
6863 (custom-comment-create, custom-comment-delete)
6864 (custom-comment-value-set, custom-comment-show)
6865 ()custom-comment-invisible-p): New functions.
6866 (custom-variable-value-create, custom-face-value-create): Create a
6867 comment field widget.
6868 (custom-variable-menu, custom-face-menu): New entry for custom
6869 comment.
6870 (custom-face-value-create): Remove compatibility code.
6871 (custom-save-variables, custom-save-faces): Possibly save custom
6872 comments.
6873
6874 * cus-face.el (custom-face-attributes): Simplify :underline,
6875 :overline, :inverse-video cases. Fix up :box case (probably needs
6876 more work).
6877
6878 Change from Didier Verna:
6879 (custom-set-faces): The arguments can now have a custom comment as
6880 fourth argument.
6881
6882 * custom.el: Don't define-widget-keywords.
6883 Change from Didier Verna:
6884 (custom-set-variables): The arguments can now have a
6885 custom comment as fifth element.
6886
6887 1999-09-13 Richard Stallman <rms@gnu.org>
6888
6889 * info.el (Info-find-node): Cope better if guesspos is too large.
6890
6891 1999-09-12 Gerd Moellmann <gerd@gnu.org>
6892
6893 * iswitchb.el (iswitchb-exhibit): Use buffer-string instead
6894 of buffer-substring because buffer-string doesn't copy the
6895 prompt.
6896
6897 * faces.el (mode-line): Replaces `modeline'.
6898 (toplevel): Make `modeline' an alias for `mode-line'.
6899
6900 1999-09-12 Gerd Moellmann <gerd@gnu.org>
6901
6902 * gs.el: Change `ghostscript' to `postscript' in comment.
6903
6904 1999-09-11 Rob Riepel <riepel@Stanford.EDU>
6905
6906 * emulation/tpu-edt.el (tpu-version): New version.
6907 (tpu-search-overlay, tpu-replace-overlay): New variables.
6908 (tpu-search-highlight, tpu-toggle-direction): New functions.
6909 (tpu-lm-replace): Set tpu-replace-overlay.
6910 (tpu-edt-on, tpu-edt-off): Add/remove tpu-search-highlight post
6911 command hook.
6912
6913 1999-09-11 Richard Stallman <rms@gnu.org>
6914
6915 * isearch.el (isearch-mode-map): Undo previous change.
6916
6917 * emacs-lisp/lisp-mode.el (eval-last-sexp): If after ?\LETTER,
6918 use all of that as the sexp.
6919
6920 * files.el (find-file-noselect): Catch errors in file-expand-wildcards,
6921 and use the initial argument as file name directly.
6922 Likewise if nothing matches.
6923
6924 1999-09-11 Ivar Rummelhoff <ivarru@math.uio.no>
6925
6926 * winner.el: Major changes. Avoid changing point and mark.
6927 Save configurations after they change, not before.
6928
6929 1999-09-10 Keisuke Nishida <kxn30@po.cwru.edu>
6930
6931 * emacs-lisp/bytecomp.el (byte-compile-output-docform):
6932 Bind print-continuous-numbering and print-number-table.
6933
6934 1999-09-10 Dave Love <fx@gnu.org>
6935
6936 * bindings.el (debug-ignored-errors): Restore BBDB stuff.
6937
6938 1999-09-09 Richard Stallman <rms@gnu.org>
6939
6940 * whitespace.el: Finish making it fit Emacs conventions.
6941 Add autoloads.
6942
6943 1999-09-09 Eli Zaretskii <eliz@is.elta.co.il>
6944
6945 * generic-x.el (bat-generic-mode): "::"-style comments don't
6946 need to begin with "-". Fix the font-lock definitions of ON/OFF
6947 after BREAK/VERIFY. Remove built-in commands like CALL and ECHO
6948 from the list of keywords. Add DO to the list of keywords.
6949
6950 1999-09-09 Dave Love <fx@gnu.org>
6951
6952 * emacs-lisp/byte-opt.el (byte-optimize-backward-char):
6953 (byte-optimize-backward-word): New optimizations.
6954 (side-effect-free-fns, side-effect-and-error-free-fns): Add
6955 entries.
6956
6957 1999-09-09 Gerd Moellmann <gerd@gnu.org>
6958
6959 * image.el (put-image): Remove optional buffer parameter.
6960
6961 * faces.el (face-italic-p): Return t only for values `italic'
6962 and `oblique'.
6963
6964 * mouse.el (mouse-drag-mode-line-1): Extension of former
6965 mouse-drag-mode-line that also drags the header line.
6966 (mouse-drag-mode-line): Call it.
6967 (mouse-drag-header-line): New.
6968 (toplevel): Bind down-mouse-1 on header lines to
6969 mouse-drage-header-line.
6970
6971 1999-09-08 Gerd Moellmann <gerd@gnu.org>
6972
6973 * bindings.el (mode-line-unbury-buffer): Use aref instead of sref.
6974 (make-mode-line-mouse-sensitive): Replace `top-line' by
6975 `header-line'.
6976
6977 1998-09-08 Michael Ernst <mernst@alum.mit.edu>
6978
6979 * help.el (describe-function-1): Don't return empty string for keymaps.
6980
6981 * fill.el (fill-region-as-paragraph, canonically-space-region):
6982 Respect colon-double-space at end of line.
6983
6984 1999-09-08 Stephen Gildea <gildea@alum.mit.edu>
6985
6986 * files.el (backup-by-copying-when-privileged-mismatch): New variable.
6987 (backup-buffer): Use it.
6988
6989 1999-09-08 Peter Breton <pbreton@ne.mediaone.net>
6990
6991 * generic-x.el (generic-define-unix-modes): Added new modes:
6992 inetd-conf-generic-mode, etc-services-generic-mode,
6993 etc-passwd-generic-mode. These are all defined for Unix by default.
6994 (apache-generic-mode): Use an imenu-generic-expression to list
6995 Configuration keywords.
6996 (samba-generic-mode): Use both ; and # as comment characters.
6997 (samba-generic-mode): Font-lock expressions now highlight name
6998 value pairs.
6999 (bat-generic-mode): Keywords are now case-insensitive through
7000 font-lock-defaults setting.
7001 (java-properties-generic-mode): Supports both ! and # as comment
7002 characters.
7003 (java-properties-generic-mode): Added an imenu-generic-expression
7004 (java-properties-generic-mode): Reworked to support the various
7005 different ways to separate name and value (viz, '=', ':' and
7006 whitespace).
7007 (show-tabs-generic-mode): Added this new generic-mode.
7008
7009 1999-09-08 Richard Stallman <rms@gnu.org>
7010
7011 * progmodes/inf-lisp.el: Moved from top directory.
7012
7013 * tar-mode.el (tar-header-block-tokenize):
7014 Use `when' instead of `and'. Fix some clobbered text.
7015
7016 * gud.el (gud-make-debug-menu): Make a child for the
7017 local menu, for its menu bar, and the debug menu.
7018 (gdb, sdb, dbx, xdb, perldb, pdb, jdb):
7019 Use the history in the simple way.
7020
7021 1999-09-07 Kenichi Handa <handa@etl.go.jp>
7022
7023 * language/korea-util.el (default-korean-keyboard): Initialize it
7024 according to the environment variable HANGUL_KEYBOARD_TYPE.
7025
7026 1999-09-07 Richard Stallman <rms@gnu.org>
7027
7028 * subr.el (make-temp-file): New function.
7029
7030 1999-09-07 Stefan Monnier <monnier@cs.yale.edu>
7031
7032 * font-lock.el (font-lock-multiline): New text property contains
7033 a boolean to indicate if the char is part of a multiline match.
7034 (font-lock-default-fontify-region): Extend the region appropriately
7035 for multiline keywords.
7036 (font-lock-default-unfontify-region): Also remove the new
7037 font-lock-multiline text property.
7038 (font-lock-fontify-anchored-keywords): Mark multiline anchored matches.
7039 (font-lock-fontify-keywords-region): Mark multiline regexp matches.
7040
7041 1999-09-07 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
7042
7043 * diary-lib.el (list-diary-entries): Make sure two-digit years
7044 have leading zeros.
7045
7046 1999-09-07 Gerd Moellmann <gerd@gnu.org>
7047
7048 * faces.el (face-set-after-frame-default): Initialize some
7049 attributes of some faces from frame parameters.
7050
7051 * faces.el (scroll-bar, border, cursor, mouse): New faces.
7052
7053 1999-09-07 Gerd Moellmann <gerd@gnu.org>
7054
7055 * faces.el (fringe): Replaces face `margin'.
7056
7057 1999-09-07 Dave Love <fx@gnu.org>
7058
7059 * tar-mode.el (tar-header-block-tokenize): Bind linkname.
7060
7061 1999-09-07 Richard Stallman <rms@gnu.org>
7062
7063 * subr.el (push): Doc fix.
7064
7065 1999-09-06 Richard Stallman <rms@gnu.org>
7066
7067 * vc.el (vc-annotate-display): Use < 69 not < 70
7068 to distinguish 20YY from 19YY.
7069
7070 * timezone.el (timezone-parse-date): Use < 69 not < 70
7071 to distinguish 20YY from 19YY.
7072
7073 * tar-mode.el (tar-extract): Don't assume buffer is visiting a file.
7074
7075 1999-09-07 Dave Pearson <davep@hagbard.demon.co.uk>
7076
7077 * quickurl.el: (quickurl-list-focused-line): Removed.
7078 (quickurl-list-insert): Now works out the focused line using
7079 `count-lines' instead of using `quickurl-list-focused-line'.
7080
7081 1999-09-06 Richard Stallman <rms@gnu.org>
7082
7083 * mail/rmail.el (rmail-retry-failure): Unconditionally move
7084 to beginning of message.
7085
7086 1999-09-06 Dave Love <fx@gnu.org>
7087
7088 * isearch.el (isearch-mode-map): Add mouse-2.
7089
7090 * mail/rmail.el (rmail-read-password): Deleted.
7091 (rmail-get-pop-password): Use read-password.
7092
7093 * quickurl.el: Don't conditionally define caddr.
7094 (quickurl-url-comment): Use nth, not caddr in function and
7095 defsetf.
7096
7097 1999-09-06 Richard Stallman <rms@gnu.org>
7098
7099 * auto-show.el: Doc fixes.
7100
7101 1999-09-06 Stephen Eglen <stephen@gnu.org>
7102
7103 * progmodes/octave-inf.el (inferior-octave-startup-args): Add
7104 --no-line-editing so that TABs in source files are not interpreted
7105 as completion requests.
7106
7107 1999-09-06 Gerd Moellmann <gerd@gnu.org>
7108
7109 * hscroll.el, auto-show.el: Remove all code, keep the public
7110 interface as no-ops.
7111
7112 * faces.el (face-bold-p): Don't return t if face has lighter
7113 weight than normal.
7114
7115 1999-09-06 Eli Zaretskii <eliz@gnu.org>
7116
7117 * startup.el (command-line): Make small-temporary-file-directory
7118 be nil except on ms-dos.
7119
7120 * files.el (small-temporary-file-directory): Ditto. Also doc fix.
7121
7122 * progmodes/sh-script.el (sh-tmp-file): For sh, use $TMPDIR if it
7123 is defined.
7124
7125 * dired.el (dired-re-dir, dired-re-sym): Don't match DOS drive
7126 letters with a colon after d or l.
7127
7128 1999-09-06 Dave Love <fx@gnu.org>
7129
7130 * emacs-lisp/byte-opt.el (byte-boolean-vars): Removed. (Now
7131 primitive.)
7132
7133 1999-09-05 Richard Stallman <rms@gnu.org>
7134
7135 * vc.el (vc-annotate-display): Treat 2-digit years under 70 as 20YY.
7136
7137 * textmodes/paragraphs.el (backward-kill-sentence):
7138 Don't test minibuffer-prompt-end here.
7139 (forward-sentence): Do handle it here.
7140 (backward-kill-paragraph): Don't test it here.
7141 (forward-paragraph): Handle it here.
7142
7143 * mouse.el (font-menu-add-default): Simplify code.
7144
7145 1999-09-05 Gerd Moellmann <gerd@gnu.org>
7146
7147 * faces.el (header-line): Renamed from `top-line'.
7148
7149 1999-09-05 Gerd Moellmann <gerd@gnu.org>
7150
7151 * faces.el (tool-bar): Change face `toolbar' to `tool-bar'.
7152
7153 1999-09-04 Richard Stallman <rms@gnu.org>
7154
7155 * whitespace.el: New file.
7156
7157 1999-09-04 Dave Love <fx@gnu.org>
7158
7159 * paths.el: Make some doc strings obey the make-docfile convention.
7160
7161 * bindings.el: Likewise.
7162 (debug-ignored-errors): Remove BBDB ones.
7163
7164 1999-09-03 Richard Stallman <rms@gnu.org>
7165
7166 * mail/mh-comp.el (mh-forward): Get new subject line from the original,
7167 not from the draft to forward.
7168
7169 * emacs-lisp/autoload.el (make-autoload): Handle defun* like defun.
7170
7171 1999-09-03 Dave Love <fx@gnu.org>
7172
7173 * double.el (double-mode): Customize the variable.
7174
7175 1999-09-03 Kenichi Handa <handa@etl.go.jp>
7176
7177 * international/characters.el: Delete duplicated code.
7178
7179 1999-09-02 Richard Stallman <rms@gnu.org>
7180
7181 * indent.el (indent-relative): Doc fix.
7182
7183 * quickurl.el (quickurl): Doc fix.
7184
7185 1999-09-02 Gerd Moellmann <gerd@gnu.org>
7186
7187 * faces.el (margin): Change background to "gray" for mono (this is
7188 drawn with a stipple pattern).
7189
7190 1999-09-02 Gerd Moellmann <gerd@gnu.org>
7191
7192 * simple.el (next-history-element): Use minibuffer-prompt-end once
7193 again. Remove test for minibuffer-prompt-in-buffer.
7194
7195 1999-09-02 Eli Zaretskii <eliz@gnu.org>
7196
7197 * files.el (small-temporary-file-directory): New variable.
7198
7199 * startup.el (command-line): Compute the value of
7200 small-temporary-file-directory.
7201
7202 * ediff-init.el (ediff-temp-file-prefix): Use
7203 small-temporary-file-directory if non-nil.
7204
7205 * vc.el (vc-update-change-log): Likewise.
7206
7207 * progmodes/cmacexp.el (c-macro-expansion): Likewise.
7208
7209 * simple.el (shell-command, shell-command-on-region): Use
7210 make-temp-name properly. Use small-temporary-file-directory if
7211 non-nil, otherwise temporary-file-directory, to generate temporary
7212 files.
7213
7214 * dos-w32.el (direct-print-region-helper): Use
7215 temporary-file-directory. (From Stefan Monnier.)
7216
7217 1999-09-02 Richard Stallman <rms@gnu.org>
7218
7219 * progmodes/asm-mode.el (asm-mode): Set comment-start properly
7220 from asm-comment-char.
7221 (asm-font-lock-keywords): Recognize instruction width suffixes.
7222
7223 1999-09-01 Richard Stallman <rms@gnu.org>
7224
7225 * play/fortune.el: New file.
7226
7227 1999-08-31 Dave Love <fx@gnu.org>
7228
7229 * help.el (help-make-xrefs): Don't lose on non-empty blank line
7230 after key table.
7231
7232 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add several w32 and
7233 redisplay variables.
7234
7235 * subr.el (push): Fix typo.
7236
7237 1999-08-30 Kevin Blake <kblake@ticnet.com>
7238
7239 * emacs-lisp/ring.el: Many doc fixes.
7240 (ring-size, ring-copy): New functions.
7241
7242 1999-08-29 Richard Stallman <rms@gnu.org>
7243
7244 * progmodes/etags.el (tags-loop-continue):
7245 After tags-loop-operate returns, force skip to next file.
7246
7247 * mail/mail-extr.el (mail-extr-all-letters-but-separators)
7248 (mail-extr-first-letters, mail-extr-last-letters):
7249 Use character classes [:alpha:] and [:alnum:].
7250
7251 * subr.el (push, pop): New macros.
7252
7253 * progmodes/compile.el (compilation-error-regexp-alist):
7254 New item for SGI IRIX MipsPro compilers.
7255
7256 * speedbar.el (speedbar-directory-buttons): Recognize
7257 device names when checking for file names.
7258
7259 * array.el (array-reconfigure-rows): Use generate-new-buffer.
7260
7261 * emacs-lisp/lisp-mode.el (eval-defun): Expand macros,
7262 and specially handle defvar inside their expansions.
7263 (eval-defun-1): New subroutine.
7264
7265 * progmodes/compile.el (compilation-error-regexp-alist):
7266 Fix the Perl -w entry to allow period after line number.
7267 Don't allow newlines in file name, but allow them after line number
7268 for Perl debugging traces.
7269
7270 * which-func.el (which-func-cleanup-function): New variable.
7271 (which-function): Call that function.
7272
7273 * emacs-lisp/find-func.el (find-function-regexp): Allow a ) or (
7274 to end a function name.
7275
7276 * informat.el (Info-tagify): Don't insert more than one newline
7277 before the tag table.
7278
7279 1999-08-29 Stefan Monnier <monnier@cs.yale.edu>
7280
7281 * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
7282 than make-temp-name, use match-string-no-properties, and eliminate
7283 a quadratic behavior when building bibtex-strings.
7284
7285 1999-08-29 Alex Schroeder <alex@gnu.org>
7286
7287 * comint.el (comint-input-ring-separator): New variable.
7288 (comint-read-input-ring): Doc change; use
7289 comint-input-ring-separator when reading file.
7290 (comint-write-input-ring): Use
7291 comint-input-ring-separator when writing file.
7292
7293 1999-08-29 Marc Girod <girod@shire.ntc.nokia.com>
7294
7295 * informat.el (Info-tagify): Start by widening.
7296 Match node headers that don't list the file name,
7297 and more kinds of page separations.
7298 Strip properties during tagification.
7299 Use start of node header line as tag's position.
7300 Fix the "done" message.
7301
7302 (Info-validate): Save and restore match data around narrowing down.
7303
7304 1999-08-28 Richard M. Stallman <rms@gnu.org>
7305
7306 * emacs-lisp/easy-mmode.el (easy-mmode-define-minor-mode):
7307 On repeated call, override previous values put into
7308 minor-mode-map-alist and minor-mode-alist.
7309
7310 1999-08-28 Michael Ernst <mernst@alum.mit.edu>
7311
7312 * dired-x.el (dired-guess-shell-alist-default): Support bzip2 format.
7313
7314 1999-08-27 Andreas Schwab <schwab@gnu.org>
7315
7316 * vc.el (vc-backend-merge-news): Fix regexp to also match P marker
7317 from cvs update.
7318
7319 1999-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
7320
7321 * calendar/calendar.el (calendar-move-hook): New hook.
7322
7323 * calendar/cal-move.el: Call the new hook in every movement function.
7324
7325 * calendar/calendar.el (calendar-goto-astro-day-number): Autoload
7326 the right function name.
7327
7328 1999-08-26 Stephen Gildea <gildea@alum.mit.edu>
7329
7330 * time-stamp.el: Put quote-backquote around all symbol names
7331 in doc strings, for mousing.
7332 (time-stamp): Support multi-line patterns.
7333 (time-stamp-inserts-lines): New variable.
7334 (time-stamp-count): New variable.
7335 (time-stamp-string-preprocess): Fixed bug where "%%a" becomes
7336 "Thu" instead of "%a".
7337
7338 1999-08-25 Gerd Moellmann <gerd@gnu.org>
7339
7340 * simple.el (kill-word): Undo previous change.
7341
7342 1999-08-25 Gerd Moellmann <gerd@gnu.org>
7343
7344 * jit-lock.el (jit-lock-function): Extend the fontified range
7345 to the beginning of the line containing the range start and
7346 the beginning of the line following the range end.
7347
7348 1999-08-24 Dave Love <fx@gnu.org>
7349
7350 * timezone.el: Move provide to end.
7351 (timezone-parse-date): Simplify somewhat. Assume 2-digit years
7352 <70 are 2000+.
7353 (timezone-parse-time): Simplify somewhat.
7354
7355 1999-08-24 Gerd Moellmann <gerd@gnu.org>
7356
7357 * faces.el (margin): Renamed from bitmap-area.
7358
7359 1999-08-24 Alex Schroeder <alex@gnu.org>
7360
7361 * sql.el: Doc changes.
7362 (sql-sybase): Use sql-server instead of sql-database.
7363
7364 1999-08-23 Dave Love <fx@gnu.org>
7365
7366 * rect.el: Add/fix various doc strings. Add `*' to all the
7367 interactive specs.
7368
7369 1999-08-21 Gerd Moellmann <gerd@gnu.org>
7370
7371 * jit-lock.el (jit-lock-function): Use line-beginning-position.
7372 Don't unwind-protect font-lock-fontify-region.
7373
7374 * paragraphs.el (backward-kill-paragraph): Don't move
7375 point into mini-buffer prompt.
7376 (backward-kill-sentence): Ditto.
7377
7378 * simple.el (next-history-element): Use minibuffer-prompt-end.
7379 Remove test for minibuffer-prompt-in-buffer.
7380 (kill-word): Don't move point into mini-buffer prompt.
7381
7382 1999-08-21 Dave Love <fx@gnu.org>
7383
7384 * Makefile: Exclude CVS dirs like RCS.
7385
7386 1999-08-19 Dave Love <fx@gnu.org>
7387
7388 * tooltip.el (tooltip-mode): Customize this, per convention.
7389 (tooltip-active): Option deleted.
7390
7391 * font-lock.el (global-font-lock-mode): Autoload. Add :initialize.
7392
7393 * hanoi.el, page-ext.el: Declare dynamic vars.
7394
7395 * term.el: Avoid ange-ftp related compilation warnings.
7396
7397 1999-08-18 Gerd Moellmann <gerd@gnu.org>
7398
7399 * font-lock.el (font-lock-support-mode): Make `jit-lock-mode'
7400 the default so that beginners can benefit from it without
7401 searching in manuals.
7402
7403 1999-08-18 Ray Blaak <blaak@gnu.org>
7404
7405 * progmodes/delphi.el: Consider assembly sections as blocks, to
7406 indent them better. Make auto-indent on newline optional.
7407
7408 1999-08-17 Gerd Moellmann <gerd@gnu.org>
7409
7410 * bindings.el (mode-line-modified): Look up key binding for C-x
7411 C-q. If it's bound call that binding, otherwise call
7412 toggle-read-only.
7413
7414 1999-08-17 Dave Love <fx@gnu.org>
7415
7416 * info.el (info): Doc fix.
7417
7418 * finder.el (finder-known-keywords): Add `multimedia'.
7419
7420 * apropos.el: Don't capitalize custom group name.
7421
7422 * info-look.el: Remove compatibility code.
7423 (info-lookup-guess-default*): DTRT for point at start of symbol.
7424 (info-complete): Don't lose with point not at end of symbol.
7425
7426 1999-08-16 Gerd Moellmann <gerd@gnu.org>
7427
7428 * term.el (toplevel): Make face `term-default' an empty face.
7429 The code relied on the fact that Emacs ignored invalid faces in
7430 face text properties in 20.4.
7431
7432 1999-08-16 Richard M. Stallman <rms@gnu.org>
7433
7434 * subr.el (point-at-eol, point-at-bol): New aliases.
7435
7436 * simple.el: Functions reordered.
7437
7438 * rect.el (delete-rectangle-line): Use line-end-position.
7439
7440 1999-08-16 Karl Heuer <kwzh@gnu.org>
7441
7442 * subr.el (assoc-ignore-case, assoc-ignore-representation): Moved
7443 here from simple.el.
7444
7445 1999-08-16 Dave Love <fx@gnu.org>
7446
7447 * mouse.el: Provide `mldrag' for compatibility.
7448 (mldrag-drag-mode-line, mldrag-drag-vertical-line): New aliases,
7449 marked obsolete.
7450
7451 * mldrag.el: Removed since the features are in mouse.el.
7452
7453 * jka-compr.el (auto-compression-mode): New variable for
7454 customization.
7455
7456 * bindings.el (mode-line-mule-info): Doc fix.
7457
7458 * msb.el (msb--choose-file-menu): Use `completion-ignore-case' in
7459 name comparisons.
7460
7461 * files.el (interpreter-mode-alist): Add make, guile, clisp.
7462 (find-file): Doc fix.
7463
7464 1999-08-16 Carsten Dominik <cd@gnu.org>
7465
7466 * textmodes/reftex.el: Most of the code moved to other files.
7467 * textmodes/reftex-auc.el: New file, split out from reftex.el
7468 * textmodes/reftex-cite.el: New file, split out from reftex.el
7469 * textmodes/reftex-global.el: New file, split out from reftex.el
7470 * textmodes/reftex-index.el: New file, split out from reftex.el
7471 * textmodes/reftex-parse.el: New file, split out from reftex.el
7472 * textmodes/reftex-ref.el: New file, split out from reftex.el
7473 * textmodes/reftex-sel.el: New file, split out from reftex.el
7474 * textmodes/reftex-toc.el: New file, split out from reftex.el
7475 * textmodes/reftex-vars.el: New file, split out from reftex.el
7476 * textmodes/reftex-vcr.el: New file, split out from reftex.el
7477
7478 1999-08-16 Carsten Dominik <cd@gnu.org>
7479
7480 * textmodes/reftex.el: (reftex-pop-to-bibtex-entry): Fixed
7481 conflict with pop-up-frames.
7482 (reftex-special-environment-parsers): New constant.
7483 (reftex-label-alist): car of an entry can also be a function.
7484 (reftex-what-special-env): Cew function.
7485 (reftex-label-location): Call `reftex-what-special-env'.
7486 (reftex-compile-variables): Check for symbol in
7487 `reftex-label-alist'.
7488 (reftex-what-environment): Fixed bug with stacked environments of
7489 same kind (e.g. enumerate).
7490 (reftex-process-string): Preserve default directory.
7491 (reftex-label-alist-builtin): Changed prefixes of endnote and
7492 footnote. Also the magic words.
7493 (reftex-reference): Interprete new option
7494 `reftex-fref-is-default'.
7495 (reftex-replace-prefix-escapes): Interprete new `%S' format.
7496 (reftex-toc-mouse-view-line): Command removed (had no binding).
7497 (reftex-everything-regexp): New function.
7498 (reftex-nearest-match): Made better.
7499 (reftex-toc-find-section): Use new version of
7500 `reftex-nearest-match'.
7501 (reftex-insert-docstruct): Adapted to work with the index stuff.
7502 (reftex-parse-from-file): Find index entries as well.
7503 (reftex-toc-toggle-index): New function
7504 (reftex-toc-map): `i' is now used to togle the index, File
7505 boundaries has been moved to `F'.
7506 (reftex-select-label-map): Toggling display of file boundaries is
7507 now on the `F' key, for consistency with `reftex-toc-map'.
7508 (reftex-erase-all-selection-and-index-buffers): Renamed from
7509 `reftex-erase-all-selection-buffer'. Now also kills the index
7510 buffers.
7511 (reftex-viewing-cross-references): Customization group renamed
7512 from reftex-viewing-cross-references-and-citations.
7513 (reftex-index-macro-regexp,
7514 reftex-find-index-entry-regexp-format): New variables
7515 (reftex-macros-with-index): New variable
7516 (reftex-add-index-macros): New function
7517 (reftex-renumber-simple-labels, reftex-translate): Allow for
7518 multiple labels in a single ref command.
7519 (reftex-index-support): New customization group
7520 (reftex-support-index, reftex-index-special-chars,
7521 reftex-index-macros, reftex-index-default-macro,
7522 reftex-index-default-tag, reftex-index-math-format,
7523 reftex-index-section-letters, reftex-index-include-context,
7524 reftex-index-follow-mode, reftex-index-header-face,
7525 reftex-index-section-face, reftex-index-tag-face,
7526 reftex-index-face): New options
7527 (reftex-index-map, reftex-index-menu, reftex-last-index-file,
7528 reftex-index-tag, reftex-index-return-marker,
7529 reftex-index-restriction-indicator, reftex-index-restriction-data,
7530 reftex-index-macro-regexp, reftex-index-level-re,
7531 reftex-index-key-end-re, reftex-find-index-entry-regexp-format,
7532 reftex-everything-regexp-no-index, reftex-index-re,
7533 reftex-macros-with-index, reftex-index-macro-alist): New variables
7534 (reftex-index-help, reftex-index-macros-builtin,
7535 reftex-key-to-index-macro-alist, reftex-query-index-macro-prompt,
7536 reftex-query-index-macro-help): New constants
7537 (reftex-index-selection-or-word, reftex-index,
7538 reftex-default-index, reftex-update-default-index,
7539 reftex-index-complete-tag, reftex-index-select-tag,
7540 reftex-index-complete-key, reftex-index-update-taglist,
7541 reftex-index-globally, reftex-index-mode, reftex-index-show-entry,
7542 reftex-display-index, reftex-insert-index,
7543 reftex-index-insert-new-letter, reftex-get-restriction,
7544 reftex-index-pre-command-hook, reftex-index-post-command-hook,
7545 reftex-index-show-help, reftex-index-next, reftex-index-previous,
7546 reftex-index-toggle-follow, reftex-index-toggle-context,
7547 reftex-index-view-entry, reftex-index-goto-entry-and-hide,
7548 reftex-index-goto-entry, reftex-index-mouse-goto-line-and-hide,
7549 reftex-index-quit, reftex-index-quit-and-kill,
7550 reftex-index-goto-toc, reftex-index-rescan, reftex-index-Rescan,
7551 reftex-index-revert, reftex-index-switch-index-tag,
7552 reftex-index-restrict-to-section, reftex-index-widen,
7553 reftex-index-restriction-forward,
7554 reftex-index-restriction-backward, reftex-index-visit-location,
7555 reftex-index-analyze-entry, reftex-index-globalize,
7556 reftex-index-edit, reftex-index-toggle-range-beginning,
7557 reftex-index-toggle-range-end, reftex-index-edit-key,
7558 reftex-index-edit-attribute, reftex-index-edit-visual,
7559 reftex-index-edit-part, reftex-index-level-down,
7560 reftex-index-level-up, reftex-index-kill, reftex-index-undo,
7561 reftex-index-change-entry, reftex-index-goto-letter,
7562 reftex-add-index-macros, reftex-ensure-index-support,
7563 reftex-index-info-safe, reftex-index-info): New functions.
7564
7565
7566 1999-08-15 Richard M. Stallman <rms@gnu.org>
7567
7568 * paren.el (show-paren-mode): Support making show-paren-mode
7569 a buffer-local variable. Don't check for a window system.
7570 (show-paren-function): Check whether show-paren-function is
7571 enabled in current buffer; do the right thing if not.
7572 Don't check for a window system.
7573 (show-paren-mode): Make it a user variable.
7574
7575 * add-log.el (add-log-current-defun): Exclude all trailing whitespace.
7576 Handle `enum' like `struct'.
7577
7578 * server.el (server-process-filter): If a client visits no buffers,
7579 close it immediately before recording it.
7580
7581 * mail/mail-utils.el (mail-unquote-printable): Make it autoload.
7582 Optimize by calling concat just once. Handle =\n sequence.
7583 (mail-unquote-printable-region): New command.
7584 (mail-quote-printable): Make it autoload.
7585
7586 1999-08-15 Karl Heuer <kwzh@gnu.org>
7587
7588 * progmodes/octave-mod.el (octave-maintainer-address): Use gnu.org.
7589
7590 1999-08-15 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
7591
7592 * lisp/texinfmt.el: Handle @ifnottex.
7593
7594 1999-08-15 Eli Zaretskii <eliz@gnu.org>
7595
7596 * frame.el (blink-cursor): Don't turn on cursor blinking for
7597 ms-dos.
7598
7599 * faces.el (face-valid-attribute-values): Look in
7600 x-bitmap-file-path only for x and w32 window systems.
7601
7602 * term/pc-win.el (x-list-fonts): Return "ms-dos", not "default".
7603 Do that if width is nil as well.
7604 (x-display-mm-height, x-display-mm-width): Update values.
7605 (x-colors): Compute the list from msdos-color-values.
7606 (x-select-enable-clipboard): Doc fix.
7607 (x-frob-font-weight, x-font-family-list): New functions.
7608
7609 1999-08-15 Toby Speight <Toby.Speight@streapadair.freeserve.co.uk>
7610
7611 * window.el (shrink-window-if-larger-than-buffer): Don't try to
7612 back up from beginning of buffer.
7613
7614 1999-08-13 Karl Heuer <kwzh@gnu.org>
7615
7616 * emacs-lisp/advice.el (ad-special-forms): Use track-mouse iff bound.
7617
7618 1999-08-13 Alakazam Petrofsky <Alakazam@Petrofsky.Berkeley.CA.US>
7619
7620 * play/hanoi.el: Mostly rewritten. Customized. To support an s2G
7621 doomsday clock, speed control is added and changes are made to
7622 allow large numbers of rings: rings now show the whole ring
7623 number, not just the last digit; consecutive rings are allowed to
7624 be the same size when necessary to fit all the rings in the
7625 window; and poles can be oriented horizontally. Face support is
7626 thrown in gratuitously.
7627 (hanoi): Changed default number of rings back to 3.
7628 (hanoi-unix, hanoi-unix-64): New commands
7629 (hanoi-horizontal-flag, hanoi-move-period, hanoi-use-faces,
7630 hanoi-pole-face, hanoi-base-face, hanoi-even-ring-face,
7631 hanoi-odd-ring-face): New variables.
7632 (hanoi-internal, hanoi-current-time-float, hanoi-put-face,
7633 hanoi-n, hanoi-insert-ring, hanoi-goto-char, hanoi-sit-for,
7634 hanoi-ring-to-pos, hanoi-pos-on-tower-p): New functions.
7635 (hanoi-0): Renamed from hanoi0, for symmetry with hanoi-n.
7636 (hanoi-topos, hanoi-draw-ring): Removed.
7637
7638 1999-08-12 Gerd Moellmann <gerd@gnu.org>
7639
7640 * faces.el (face-valid-attribute-values): Return an alist for
7641 families on ttys.
7642 (face-read-integer): Handle unspecified face attributes. Add
7643 completion for `unspecified'.
7644 (read-face-attribute): Handle unspecified font attributes.
7645 (face-valid-attribute-values): Add `unspecified' to lists so that
7646 it can be chosen via completion.
7647 (face-read-string): Don't recognize "none" as input.
7648
7649 1999-08-10 Dave Love <fx@gnu.org>
7650
7651 * sendmail.el (mail-specify-envelope-from): Fix quoting of doc
7652 string.
7653
7654 * sun-curs.el: Require sun-fns.
7655
7656 1999-08-10 Dave Love <fx@gnu.org>
7657
7658 * autorevert.el (auto-revert-mode): Add autoload cookie.
7659
7660 * hscroll.el, auto-show.el: Files deleted -- we have built-in
7661 hscroll.
7662
7663 * simple.el (hscroll-step, hscroll-point-visible)
7664 (hscroll-window-column): Remove now we have the mentioned real
7665 horizontal autoscrolling.
7666
7667 1999-08-10 Richard M. Stallman <rms@gnu.org>
7668
7669 * mail/sendmail.el (sendmail-send-it): Let mail-specify-envelope-from
7670 control use of -f option.
7671 (mail-specify-envelope-from): New variable.
7672 (mail-from-style): Doc fix.
7673
7674 * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): New fn.
7675 (easy-menu-get-map): New arg TO-MODIFY helps choose
7676 between local and global maps.
7677 (easy-menu-add-item): Pass TO-MODIFY arg to easy-menu-get-map.
7678 (easy-menu-change): Doc fix.
7679
7680 * info-look.el (info-lookup-guess-c-symbol): Use skip-syntax-backward.
7681 (info-lookup-guess-default): Simplified and cleaned up.
7682 (info-lookup-guess-default*): Preserve point.
7683
7684 * view.el (view-mode-disable): If buffer-read-only is nil,
7685 don't change it.
7686
7687 * files.el (after-find-file): Disable View mode if buffer is no
7688 longer read-only.
7689
7690 * view.el (view-mode-enable, view-mode-disable):
7691 Call force-mode-line-update.
7692
7693 1999-08-10 Karl Heuer <kwzh@gnu.org>
7694
7695 * language/european.el, emacs-lisp/byte-opt.el: Fix provide call.
7696 * array.el, play/landmark.el, international/latin-3.el: Likewise.
7697 * sun-curs.el, term/sun-mouse.el, progmodes/simula.el: Likewise.
7698
7699 1999-08-10 Alex Schroeder <asc@bsiag.com>
7700
7701 * ansi-color.el (ansi-color-to-text-properties): Added New state 5
7702 to prevent m-eating-bug.
7703
7704 1999-08-10 Eli Zaretskii <eliz@gnu.org>
7705
7706 * term/pc-win.el (msdos-bg-mode): Remove. Call
7707 frame-set-background-mode instead. All callers changed.
7708 (msdos-face-setup): Don't force color display parameter, it is set
7709 by frame-set-background-mode.
7710 (make-msdos-frame): Call x-handle-reverse-video and
7711 face-set-after-frame-default. Delete frame if creation failed.
7712
7713 * faces.el (face-set-after-frame-default): Don't call
7714 make-face-x-resource-internal for the pc window-system.
7715
7716 1999-08-10 Dave Love <fx@melange.gnu.org>
7717
7718 * emacs-lisp/advice.el (ad-make-single-advice-docstring): Treat
7719 case with no docstring specially.
7720
7721 1999-08-09 Eli Zaretskii <eliz@gnu.org>
7722
7723 * complete.el (PC-do-completion): If completing on file name,
7724 reproduce str by concatenating its directory and basename parts.
7725
7726 1999-08-07 Dave Love <fx@gnu.org>
7727
7728 * man.el (Man-softhyphen-to-minus): Revert previous change. Avoid
7729 unibyte to multibyte conversion of search-forward (from Handa),
7730 but avoid the replacement if the language is Latin-N.
7731
7732 1999-08-06 Richard Stallman <rms@gnu.org>
7733
7734 * emacs-lisp/eval-reg.el (elisp-eval-buffer): Handle all 5 args
7735 of eval-buffer.
7736
7737 * international/mule.el (load-with-code-conversion):
7738 Pass t to eval-buffer for DO-ALLOW-PRINT.
7739
7740 1999-08-06 Geoff Voelker <voelker@cs.washington.edu>
7741
7742 * ls-lisp.el (ls-lisp-delete-matching): List argument is now alist
7743 of filenames and attributes.
7744 (ls-lisp-insert-directory): Use directory-files-and-attributes
7745 for speed.
7746
7747 1999-08-05 Dave Love <fx@gnu.org>
7748
7749 * auto-show.el (auto-show-mode): Fix :set.
7750
7751 * widget.el (define-widget-keywords): Make dummy definition and
7752 comment-out its use.
7753
7754 1999-08-04 Richard Stallman <rms@gnu.org>
7755
7756 * progmodes/tcl.el: Customized.
7757
7758 * sql.el (sql-accumulate-and-indent): Instead of testing
7759 whether this is Emacs 20 before calling comint-accumulate,
7760 test whether comint-accumulate is defined.
7761
7762 1999-08-04 Dave Love <fx@gnu.org>
7763
7764 * sgml-mode.el: Require outline when compiling.
7765 (sgml-mode-hook, html-mode-hook): Customize.
7766 (sgml-validate-command): Fix :version.
7767 (html-autoview-mode): Doc fix.
7768
7769 * man.el (Man-softhyphen-to-minus): Fix for multibyte case, do
7770 nothing in Latin-N environment.
7771
7772 * info.el (Info-find-node): Call info-initialize here.
7773 (info): Not here.
7774 (Info-file-list-for-emacs): Add message, dired-x, c, viper.
7775
7776 1999-08-04 Richard Stallman <rms@gnu.org>
7777
7778 * ansi-color.el: New file.
7779
7780 1999-08-04 Stefan Monnier <monnier@cs.yale.edu>
7781
7782 * dired.el (dired-string-replace-match): Return `nil' when no match
7783 found with global search.
7784
7785 * ledit.el (ledit-zap-file, ledit-read-file, ledit-compile-file):
7786 * terminal.el (te-terminfo-directory):
7787 * mail/mailpost.el (post-mail-send-it):
7788 * mail/metamail.el (metamail-region):
7789 * progmodes/ada-mode.el (ada-tmp-directory):
7790 Use temporary-file-directory.
7791
7792 * progmodes/compile.el (compilation-parsing-end,compilation-setup)
7793 (compilation-filter, compilation-forget-errors)
7794 (compilation-parse-errors): Use a marker instead of an integer for
7795 `compilation-parsing-end'.
7796
7797 * progmodes/diff.el (diff-parse-differences):
7798 Use a marker instead of an integer for `compilation-parsing-end'.
7799 * textmodes/tex-mode.el (tex-compilation-parse-errors):
7800 Use a marker instead of an integer for `compilation-parsing-end'.
7801
7802 1999-08-03 Richard Stallman <rms@gnu.org>
7803
7804 * buff-menu.el (Buffer-menu-mode-map): Add V for Buffer-menu-View.
7805 (Buffer-menu-mode): Doc fix.
7806 (Buffer-menu-view): New command.
7807 (Buffer-menu-view-other-window): New command.
7808
7809 1999-08-03 Christopher J. Madsen <chris_madsen@geocities.com>
7810
7811 * replace.el (query-replace-regexp-eval)
7812 (replace-eval-replacement, replace-loop-through-replacements)
7813 (replace-match-string-symbols): New functions.
7814 (perform-replace): Allow REPLACEMENTS to be (FUNCTION . DATA).
7815 Use replace-loop-through-replacements.
7816
7817 1999-08-03 Dave Pearson <davep@hagbard.demon.co.uk>
7818
7819 * play/5x5.el (5x5-mode-map): Bind C-p, C-n, C-b, C-f.
7820 (5x5): Doc fix.
7821
7822 1999-08-03 Dave Love <fx@gnu.org>
7823
7824 * fortran.el (fortran-indent-new-line): Make it an alias
7825 for reindent-then-newline-and-indent.
7826
7827 1999-08-03 Didier Verna <verna@inf.enst.fr>
7828
7829 * rect.el: All functions rewritten, except when noted above
7830 their declaration. Below is a list of interface changes.
7831 (apply-on-rectangle): New function, mostly replaces
7832 `operate-on-rectangle'. All callers changed.
7833 (move-to-column-force): Pass new second argument to `move-to-column'.
7834 (kill-rectangle): Added optional prefix arg to fill lines.
7835 (delete-rectangle): Ditto.
7836 (delete-whitespace-rectangle): Ditto.
7837 (delete-extract-rectangle): Ditto.
7838 (open-rectangle): Ditto.
7839 (clear-rectangle): Ditto.
7840 (delete-whitespace-rectangle-line): New function.
7841 (delete-rectangle-line): Added third arg FILL.
7842 (delete-extract-rectangle-line): Ditto.
7843 (open-rectangle-line): Ditto.
7844 (clear-rectangle-line): Ditto.
7845
7846 1999-08-03 Ray Blaak <blaak@gnu.org>
7847
7848 * progmodes/delphi.el: New file.
7849
7850 1999-08-02 Richard Stallman <rms@gnu.org>
7851
7852 * textmodes/outline.el (outline-previous-heading): New function.
7853 (outline-up-heading-all): Use outline-previous-heading.
7854 (outline-next-heading): Delete definition inserted yesterday.
7855
7856 1999-08-01 Richard Stallman <rms@gnu.org>
7857
7858 * textmodes/outline.el (outline-next-heading): New function.
7859 (outline-up-heading-all): New function.
7860 (outline-font-lock-level): Using outline-up-heading-all.
7861 Tell outline-back-to-heading to accept invisible headings.
7862
7863 * simple.el (shell-command-on-region): EXIT-STATUS can be a string.
7864
7865 * mail/mh-utils.el (mh-find-path-run): New variable.
7866 (mh-find-path): Test and set that.
7867 Set mail-user-agent only the first time this function is run.
7868 (mail-user-agent): Defvar deleted.
7869
7870 * info.el (info-initialize): New function.
7871 (info): Call info-initialize.
7872 (Info-directory-list): Initialize to nil,
7873 so info-initialize will set it up for real.
7874
7875 1999-08-01 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
7876
7877 * calendar/calendar.el (european-date-diary-pattern): Fix pattern so it
7878 does not interpret a time as the year in a day-month entry.
7879
7880 * calendar/diary-lib.el: Change syntax table entry for colon in
7881 the diary as part of the european-date-diary-pattern fix.
7882
7883 1999-08-01 Eli Zaretskii <eliz@gnu.org>
7884
7885 * international/mule.el (set-auto-coding): Allow whitespace before
7886 and after the "variable: value" pair.
7887
7888 1999-07-30 Ken'ichi Handa <handa@gnu.org>
7889
7890 * mail/sendmail.el (sendmail-coding-system): Doc-string fixed.
7891 (default-sendmail-coding-system): Doc-string fixed.
7892
7893 1999-07-30 Dave Love <fx@gnu.org>
7894
7895 * subr.el (assoc-delete-all): New function, renamed from
7896 frame-delete-all.
7897
7898 * frame.el: Change comments to doc strings and other doc fixes.
7899 (frame-delete-all): Moved to subr.el as `assoc-delete-all'.
7900 Callers changed.
7901 (set-background-color, set-foreground-color, set-cursor-color)
7902 (set-mouse-color, set-border-color): Offer completion of colours.
7903 (cursor): Add :version to defgroup.
7904
7905 * facemenu.el (list-colors-display): Make it work on ttys.
7906 (facemenu-read-color): Likewise.
7907
7908 1999-07-30 Richard M. Stallman <rms@gnu.org>
7909
7910 * frame.el (frame-notice-user-settings): If background
7911 color has been changed, update background-mode from it,
7912 then update faces.
7913
7914 1999-07-30 Wolfgang Rupprecht <wolfgang@wsrcc.com>
7915
7916 * net-utils.el (finger): Don't do indirect fingering.
7917
7918 1999-07-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
7919
7920 * cal-tex.el (cal-tex-cursor-filofax-daily): Add possibility of
7921 rules. Add separator at end of holidays.
7922 (cal-tex-rules): New customizable variable.
7923 (cal-tex-latexify-list): Add optional parameter to put separator
7924 at end.
7925
7926 1999-07-30 Bill Richter <richter@steenrod.math.nwu.edu>
7927
7928 * textmodes/fill.el (fill-individual-paragraphs): Calculate new
7929 fill prefix on each line while looping to the end of paragraph.
7930 End paragraph if it's longer than the existing fill prefix.
7931
7932 * textmodes/fill.el (fill-context-prefix): Doc fix.
7933
7934 1999-07-30 Dave Love <fx@gnu.org>
7935
7936 * font-lock.el (jit-lock): Fix :load, add :version.
7937
7938 1999-07-30 Eli Zaretskii <eliz@gnu.org>
7939
7940 * term/pc-win.el (msdos-face-setup): Register standard colors in
7941 Vface_tty_color_alist.
7942 (face-color-supported-p, face_color_gray_p): New functions.
7943
7944 * loadup.el: Don't load scroll-bar unless x-toolkit-scroll-bars-p
7945 is bound.
7946
7947 * startup.el (command-line): Don't register default colors for
7948 MSDOS window-system.
7949
7950 1999-07-29 Dave Love <fx@gnu.org>
7951
7952 * f90.el (f90-mode-syntax-table): Change backslash to escape, not
7953 charquote.
7954
7955 * lisp-mode.el (eval-defun): Re-written to avoid
7956 capturing variables.
7957
7958 * picture.el (picture-beginning-of-line): Don't call
7959 hscroll-point-visible now we have real autoscrolling.
7960 (picture-end-of-line, picture-newline, picture-open-line):
7961 Likewise.
7962
7963 * international/latin-8.el: New file.
7964 * international/latin-9.el: New file.
7965
7966 1999-07-28 Dave Love <fx@gnu.org>
7967
7968 * mouse.el (x-fixed-font-alist): Add lucidasanstypewriter.
7969
7970 * msb.el: Require cl only when compiling.
7971 (msb--home-dir): Deleted.
7972 (msb--format-title): Use abbreviate-file-name.
7973 (msb--choose-file-menu): Simplify string comparison.
7974
7975 1999-07-28 Gerd Moellmann <gerd@gnu.org>
7976
7977 * faces.el (toolbar): Add face definition for mono displays.
7978
7979 1999-07-27 Richard M. Stallman <rms@gnu.org>
7980
7981 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
7982
7983 * frame.el (frame-initialize): When setting frame-initial-frame-alist,
7984 force copying of default-frame-alist.
7985
7986 1999-07-26 Ken'ichi Handa <handa@gnu.org>
7987
7988 * ps-mule.el (ps-mule-begin-job): Fix malformed regexp.
7989
7990 1999-07-26 Richard M. Stallman <rms@gnu.org>
7991
7992 * frame.el (set-mouse-color): If new color is nil,
7993 really respecify the current color.
7994
7995 1999-07-26 Gerd Moellmann <gerd@gnu.org>
7996
7997 * faces.el (bitmap-area): Change background of face `bitmap-area'
7998 to white for mono displays.
7999
8000 1999-07-26 Kenichi Handa <handa@etl.go.jp>
8001
8002 * international/ccl.el (ccl-embed-symbol): New function.
8003 (ccl-program-p): Deleted. Now it's implemented in C code.
8004 (ccl-compile-call): Use ccl-embed-symbol to embed a symbol.
8005 (ccl-compile-translate-character): Likewise.
8006 (ccl-compile-map-single): Likewise.
8007 (ccl-compile-multiple-map-function): Likewise.
8008 (declare-ccl-program): Doc-string modified.
8009 (check-ccl-program): Check compiled CCL code by ccl-program-p.
8010
8011 1999-07-25 Ken'ichi Handa <handa@etl.go.jp>
8012
8013 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
8014
8015 1999-07-25 Markus Rost <rost@gnu.org>
8016
8017 * cus-edit.el (custom-save-variables, custom-save-faces): Sort
8018 the entries to make custom-file more readable.
8019
8020 1999-07-25 Richard M. Stallman <rms@gnu.org>
8021
8022 * cus-edit.el (custom-save-delete): Avoid error for empty .emacs.
8023
8024 * emacs-lisp/edebug.el: Delete compatibility code.
8025 (edebug-next-token-class): If . is followed by a digit,
8026 return `symbol' for the token class.
8027
8028 * startup.el (command-line): If we don't find the user's init file,
8029 set user-init-file to nil.
8030
8031 1999-07-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8032
8033 * info-look.el (info-lookup-interactive-arguments): Add optional
8034 argument query for new choice of help mode.
8035 (info-lookup-symbol): Use it.
8036 (info-lookup-file): Ditto.
8037 (info-lookup): Don't switch to other window, if already in Info
8038 buffer.
8039
8040 1999-07-23 Dave Love <fx@gnu.org>
8041
8042 * fortran.el (fortran-mode-syntax-table): Change `\' to `\'
8043 syntax.
8044 (fortran-fontify-string, fortran-match-!-comment): Deleted.
8045 (fortran-font-lock-syntactic-keywords): New variable.
8046 (fortran-mode): Use it.
8047 (fortran-font-lock-keywords-1): Don't do comments.
8048 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Save
8049 match data.
8050
8051 * textmodes/sgml-mode.el (sgml-validate-command): Use nsgmls.
8052
8053 * msb.el (msb-menu-bar-update-buffers): Renamed from
8054 menu-bar-update-buffers.
8055 (msb-custom-set, msb--toggle-menu-type): Call
8056 msb-menu-bar-update-buffers.
8057 (msb-mode): Revise the hook setting.
8058
8059 * font-lock.el (turn-on-font-lock): Use tty-display-color-p.
8060
8061 1999-07-23 Gerd Moellmann <gerd@gnu.org>
8062
8063 * font-lock.el, help.el, simple.el: Re-integrate previously
8064 described changes that were lost due to errors while checking them
8065 in.
8066
8067 1999-07-23 Kevin Blake <kblake@ticnet.com>
8068
8069 * font-lock.el (lisp-font-lock-keywords-2): Fix regexp.
8070
8071 1999-07-23 Ken'ichi Handa <handa@etl.go.jp>
8072
8073 * international/encoded-kb.el
8074 (encoded-kbd-self-insert-iso2022-7bit): Don't insert the character
8075 but push it to unread-command-events.
8076 (encoded-kbd-self-insert-iso2022-8bit): Likewise.
8077 (encoded-kbd-self-insert-sjis): Likewise.
8078 (encoded-kbd-self-insert-big5): Likewise.
8079
8080 * textmodes/fill.el (fill-region-as-paragraph): Avoid backing up
8081 before left margin and fill-prefix by fill-find-break-point.
8082
8083 1999-07-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8084
8085 * info-look.el (info-lookup-setup-mode): Don't give up, if
8086 info-lookup-make-completions returns an error.
8087 (info-lookup-maybe-add-help :mode 'latex-mode): Use Info file
8088 name latex, not latex2e.
8089
8090 1999-07-21 Richard M. Stallman <rms@gnu.org>
8091
8092 * replace.el (perform-replace): Turn off case-fold-search
8093 if FROM-STRING argument has uppercase in it.
8094
8095 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8096
8097 * jit-lock.el (jit-lock-after-change): Do it only if jit-lock
8098 mode is on. Don't use end of changed text.
8099
8100 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8101
8102 * cl-extra.el (cl-make-hash-table): Renamed from make-hash-table.
8103 (cl-hash-table-p): Renamed from hash-table-p.
8104 (cl-hash-table-count): Renamed from hash-table-count.
8105 (maphash): Alias to cl-maphash removed.
8106 (gethash): Likewise.
8107 (puthash): Likewise.
8108 (remhash): Likewise.
8109 (clrhash): Likewise.
8110
8111 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8112
8113 * jit-lock.el (jit-lock-stealth-fontify): Don't call sit-for with
8114 third arg non-nil. See comment there why this isn't a good idea.
8115
8116 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8117
8118 * jit-lock.el (jit-lock-stealth-fontify): Use with-temp-message.
8119
8120 * jit-lock.el (jit-lock-stealth-fontify): Widen buffer, and call
8121 sit-for with 3rd arg non-nil to prevent redisplay.
8122
8123 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8124
8125 * image.el (image-type-from-file-header): If file doesn't
8126 have a directory part, add data-directory.
8127
8128 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8129
8130 * tooltip.el (tooltip-gud-tips-p): Set default to nil.
8131 (tooltip-activate-mouse-motions-if-enabled): Don't activate mouse
8132 motion handling when tooltip-gud-tips-p is nil.
8133
8134 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8135
8136 * tooltip.el (tooltip-mode): Don't use `plusp'.
8137 (tooltip-active): Use initial value of nil.
8138
8139 * jit-lock.el (jit-lock-mode): Don't use `plusp'.
8140
8141 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8142
8143 * bindings.el (make-mode-line-mouse-sensitive): Add key
8144 definitions for `top-line'.
8145
8146 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8147
8148 * faces.el (top-line): New face.
8149
8150 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8151
8152 * image.el (image-type-regexps): Add regexp for PS files.
8153
8154 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8155
8156 * faces.el (set-face-attribute): Fix wrong handling of frame
8157 begin equal to t.
8158
8159 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8160
8161 * image.el (image-type-regexps): Add PNG format.
8162
8163 1999-07-21 Dave Love <fx@gnu.org>
8164
8165 * bindings.el (mode-line-modified): New variable.
8166 (mode-line-mode-menu-1): Switch to appropriate window before
8167 showing menu.
8168
8169 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8170
8171 * faces.el (face-underline): Removed.
8172 (face-underline-color): Ditto.
8173
8174 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8175
8176 * faces.el (face-x-resources): Fix typo.
8177
8178 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8179
8180 * faces.el: Remove handling of `:relief', extend handling of
8181 `:box'.
8182 (frame-set-background-mode): Choose new defface specs after
8183 frame parameters have changed.
8184
8185 * cus-face.el: Ditto.
8186
8187 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8188
8189 * custom.el (defface): Extend documentation to include new
8190 face attributes.
8191
8192 * cus-face.el (custom-face-attributes): Add overline,
8193 strike-through, box.
8194
8195 * faces.el (face-valid-attribute-values): Handle overline,
8196 strike-through, box.
8197 (face-attribute-name-alist): Add pairs for new face attributes.
8198 (describe-face): Handle new face attributes.
8199
8200 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8201
8202 * faces.el (face-x-resources): Add overline, strike-through, box.
8203
8204 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8205
8206 * enriched.el (enriched-translations): Add `display' and
8207 "x-display".
8208 (enriched-handle-display-prop): New.
8209 (enriched-decode-display-prop): New.
8210
8211 * format.el (top-level): Give `display' property
8212 `format-list-atomic-p.
8213 (format-annotate-single-property-change): Test that property.
8214 If present, treat list property values like atoms.
8215
8216 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8217
8218 * cus-face.el (custom-face-attributes): Use `choice' everywhere
8219 so that "*" can be entered.
8220
8221 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8222
8223 * cus-face.el (custom-face-attributes): Don't use `#''.
8224
8225 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
8226
8227 * cus-face.el (custom-face-attributes): Return underline
8228 face attribute directly from the second lambda of underline.
8229
8230 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8231
8232 * jit-lock.el (jit-lock-stealth-verbose): Set to nil.
8233
8234 * frame.el (after-setting-font-hooks): New variable.
8235 (set-frame-font): Run those hooks.
8236
8237 * jit-lock.el (jit-lock-function): Use font-lock-fontify-region.
8238
8239 * faces.el (set-face-attribute): Fix doc string.
8240
8241 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8242
8243 * cus-face.el (custom-face-attributes): Accept color name.
8244
8245 * faces.el (face-underline-p): Accept unspecified underlining.
8246 (face-underline): Ditto. Fix doc string.
8247
8248 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
8249
8250 * faces.el (face-underline-color): New function.
8251
8252 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
8253
8254 * cus-face.el (custom-face-attributes): Support underline coloring.
8255 Added slot to choose a color.
8256
8257 * faces.el (face-underline): New function.
8258 (face-underline-p): Support underline coloring.
8259 Return nil only if the underline attribute is 'normal.
8260 (set-face-underline): New function.
8261 (face-valid-attribute-values): Support underline coloring.
8262
8263 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8264
8265 * image.el (insert-image): Use `display' instead of `glyph'
8266 as text property name.
8267 (put-image): Ditto.
8268 (image-type-from-file-header): Use insert-file-contents-literally.
8269
8270 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8271
8272 * easymenu.el (easy-menu-do-add-item): Don't use the empty
8273 string to indicate separators.
8274
8275 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8276
8277 * jit-lock.el (jit-lock-stealth-fontify): Bind message-log-max
8278 instead of message-log.
8279
8280 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8281
8282 * faces.el (bitmap-area): New face.
8283
8284 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8285
8286 * image.el (insert-image): New.
8287
8288 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8289
8290 * frame.el (blink-cursor): Set the symbol's value.
8291 (show-trailing-whitespace): Change group to font-lock.
8292
8293 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8294
8295 * jit-lock.el: New.
8296 * font-lock.el: Add jit-mode as new support mode.
8297
8298 * font-lock.el (font-lock-fontify-keywords-region): Stop when
8299 reaching end instead of letting re-search-forward signal an error.
8300 (demand-lock-mode): New.
8301 (font-lock-turn-on-thing-lock): Add demand-lock-mode.
8302 (font-lock-turn-off-thing-lock): Ditto.
8303 (font-lock-after-fontify-buffer): Ditto.
8304 (font-lock-after-unfontify-buffer): Ditto.
8305
8306 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8307
8308 * gs.el: New file.
8309
8310 * startup.el (command-line-1): Activate tooltip mode if
8311 interactive.
8312
8313 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8314
8315 * faces.el (toolbar): Grey default background.
8316 (modeline): Ditto.
8317
8318 * image.el (image-type-regexps): New.
8319 (image-type-from-file-header): New.
8320 (create-image): Call it.
8321
8322 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8323
8324 * image.el: New file.
8325
8326 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8327
8328 * bindings.el (mode-line-format): Replace `mode-name' with
8329 `(:eval mode-line-mode-name)'.
8330 (mode-line-mode-name): New.
8331 (make-mode-line-mouse-sensitive): Don't change default value
8332 of `mode-name'.
8333
8334 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8335
8336 * tooltip.el: New file.
8337
8338 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8339
8340 * bindings.el (make-mode-line-mouse-sensitive): Use down-mouse-3
8341 instead of mouse-3 to pop up menus.
8342 (mode-line-kill-buffer): Removed.
8343 (make-mode-line-mouse-sensitive): Pop mouse buffer menu over
8344 buffer name.
8345 (mode-line-buffer-menu-1): Removed.
8346
8347 * startup.el (command-line-1): Call make-mode-line-mouse-sensitive.
8348
8349 * bindings.el (mode-line-buffer-identification-keymap): New.
8350 (mode-line-buffer-menu-keymap): New.
8351 (mode-line-mode-menu-keymap): New.
8352 (mode-line-unbury-buffer): New.
8353 (mode-line-other-buffer): New.
8354 (mode-line-kill-buffer): New.
8355 (mode-line-buffer-menu-1): New.
8356 (mode-line-mode-menu-1): New.
8357 (make-mode-line-mouse-sensitive): New.
8358
8359 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8360
8361 * help.el (describe-key-briefly): Handle mode line strings
8362 with local-map properties.
8363 (describe-key): Ditto.
8364 (mode-line-key-binding): New.
8365
8366 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8367
8368 * scroll-bar.el (scroll-bar-timer): New.
8369 (scroll-bar-toolkit-scroll): Start and cancel scroll-bar-timer.
8370
8371 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8372
8373 * scroll-bar.el (scroll-bar-toolkit-scroll): Handle `top'
8374 and `bottom'.
8375
8376 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8377
8378 * scroll-bar.el (scroll-bar-toolkit-scroll): New.
8379 (global): Use different key bindings if using tookit scroll bars.
8380
8381 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8382
8383 * faces.el (modeline): Define mode line face with relief for
8384 class color, only.
8385 (toolbar): New face.
8386
8387 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8388
8389 * frame.el (frame-initialize): Set frame-creation-function to
8390 tty-create-frame-with-faces.
8391
8392 * faces.el (frame-set-background-mode): Make it work for
8393 window-system nil.
8394
8395 * faces.el (tty-create-frame-with-faces): New.
8396 (face-set-after-frame-default): Make it work for TTY frames.
8397
8398 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8399
8400 * faces.el (face-valid-attribute-values): Use tty-defined-colors.
8401 Return a list of one font family for TTYs. Don't return bitmap
8402 file paths for TTY frames.
8403
8404 * faces.el: Add face specs for tty displays to basic faces.
8405
8406 * font-lock.el (font-lock-comment-face): Add spec for color tty.
8407 (font-lock-string-face): Ditto.
8408 (font-lock-keyword-face): Ditto.
8409 (font-lock-builtin-face): Ditto.
8410 (font-lock-function-name-face): Ditto.
8411 (font-lock-variable-name-face): Ditto.
8412 (font-lock-type-face): Ditto.
8413 (font-lock-constant-face): Ditto.
8414 (font-lock-warning-face): Ditto.
8415
8416 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8417
8418 * startup.el (command-line): Register default tty colors.
8419
8420 * faces.el (face-spec-set-match-display): Recognize `type tty'.
8421
8422 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8423
8424 * faces.el (modeline): For X frames, use a modeline with relief.
8425
8426 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8427
8428 * faces.el (frame-update-faces): Copied from 20.2.
8429 (frame-update-face-colors): Ditto. Code removed that isn't
8430 applicable in the new face implementation.
8431
8432 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8433
8434 * frame.el (show-trailing-whitespace): New.
8435
8436 * faces.el (trailing-whitespace): New basic face.
8437
8438 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8439
8440 * cus-face.el (custom-facep): Always define as alias for facep.
8441
8442 * cus-face.el (custom-face-attributes): Use choice widgets.
8443 Remove :bold and :italic.
8444
8445 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8446
8447 * faces.el (face-charset-registries): Removed since fontset.el
8448 is no always loaded.
8449
8450 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8451
8452 * faces.el (internal-get-face): Added as obsolete function for
8453 compatibility.
8454
8455 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8456
8457 * frame.el (blink-cursor-end): Call show-cursor.
8458 (blink-cursor-mode): Ditto.
8459
8460 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8461
8462 * faces.el (face-spec-reset-face): Reset all attributes to
8463 `unspecified'.
8464 (face-spec-set): Use it.
8465
8466 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8467
8468 * faces.el (read-all-face-attributes): Bug fix.
8469 (face-read-integer): Allow nil default value.
8470 (face-valid-attribute-values): Use symbol names of attribute
8471 values for completion list.
8472
8473 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8474
8475 * faces.el (internal-find-face): Define for compatibility with
8476 20.2.
8477 (face-id): Likewise.
8478
8479 * faces.el (face-id): Return the ID of a realized face for ASCII.
8480
8481 * fontset.el (x-charset-registries): Removed. Now in faces.el.
8482 (x-complement-fontset-spec): Use face-charset-registries.
8483
8484 * faces.el (face-font-selection-order): Set font selection order
8485 from Lisp.
8486 (face-alternative-font-family-alist): Set alternative font
8487 families from Lisp.
8488
8489 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8490
8491 * faces.el (set-face-charset-registries): Set symbol value.
8492
8493 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8494
8495 * faces.el (face-set-after-frame-default): Call function
8496 internal-merge-in-global-face.
8497
8498 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8499
8500 * faces.el (face-list): Return symbols from face-global-alist.
8501
8502 * faces.el (face-list): Return a copy of the face name list so
8503 that it cannot be modified from outside (facemenu.el uses
8504 nreverse, for example).
8505
8506 * cus-face.el (custom-face-attributes): Add :bold and :italic
8507 for compatibility with old code.
8508
8509 * faces.el (set-face-attributes-from-resources): Additional
8510 frame parameter.
8511 (make-face-x-resource-internal): Set attributes from resources
8512 for a given frame or all frames.
8513
8514 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8515
8516 * faces.el (all-faces): Removed.
8517
8518 * custom.el (defface): Add new face attributes to function
8519 comment.
8520
8521 * font-lock.el (font-lock-comment-face): Use new face attribute
8522 names.
8523 (font-lock-string-face): Ditto.
8524 (font-lock-keyword-face): Ditto.
8525 (font-lock-builtin-face): Ditto.
8526 (font-lock-function-name-face): Ditto.
8527 (font-lock-variable-name-face): Ditto.
8528 (font-lock-type-face): Ditto.
8529 (font-lock-reference-face): Ditto.
8530 (font-lock-warning-face): Ditto.
8531 ((boundp 'font-lock-face-attributes)): Ditto.
8532
8533 * cus-face.el (custom-face-attributes): Use new face attributes.
8534
8535 * faces.el (set-face-attribute-from-resource): Initialize
8536 from resources only for X and W32.
8537
8538 * cus-face.el (custom-declare-face): Don't make frame-local
8539 faces.
8540
8541 * faces.el (describe-face): Use princ instead of insert.
8542
8543 * faces.el: Add XLFD manipulation functions from 20.2 again
8544 because fontset.el uses them.
8545 (face-set-after-frame-default): Add empty definition.
8546
8547 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8548
8549 * faces.el (make-face): Correct typo.
8550 (set-face-attribute-from-resource): Use let*.
8551 (face-underline-p): Correct typo.
8552 (face-inverse-video-p): Ditto.
8553 (set-face-stipple): Ditto.
8554 (face-read-string): Make completion-list optional parameter.
8555
8556 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8557
8558 * faces.el (face-charset-registries): Alist mapping charset
8559 symbols to registries and encoding.
8560
8561 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8562
8563 * frame.el (blink-cursor-mode): Use interactive spec "P".
8564
8565 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8566
8567 * frame.el (blink-cursor-mode): Function to toggle blinking cursor
8568 mode. The cursor of selected_window blinks if the mode is enabled.
8569
8570 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8571
8572 * simple.el (next-history-element): Set point to the end of the
8573 prompt if minibuffer-prompt-in-buffer.
8574
8575 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8576
8577 * faces.el (x-font-regexp): Add sub-expression parentheses for
8578 several font name components.
8579
8580 1999-07-21 Gerd Moellmann <gerd@acm.org>
8581
8582 * faces.el (set-face-relief): Use index 12 for relief.
8583 (face-fill-in): Set relief from data.
8584 (internal-make-face): Init relief to zero.
8585
8586 * faces.el (face-spec-set): Call modify-face with additional
8587 parameters for relief and fixed-p.
8588
8589 1999-07-21 Gerd Moellmann <gerd@acm.org>
8590
8591 * cus-face.el: ':fixed and ':relief added.
8592
8593 * faces.el (describe-face): Add fixed font attribute and relief.
8594 (face-attr-match-p): Ditto.
8595 (face-attr-construct): Ditto.
8596 (face-spec-set): Ditto.
8597
8598 1999-07-21 Gerd Moellmann <gerd@acm.org>
8599
8600 * faces.el (internal-make-face): Function to create a Lisp vector
8601 suitable for representing a face.
8602 (make-face): Use it instead of make-vector.
8603 (x-create-frame-with-faces): Use it instead of vector.
8604 (internal-facep): Increase vector size to 14.
8605 (internal-make-face): Ditto.
8606 (face-relief): Access relief thickness.
8607 (face-fixed-p): Access fixed font attribute.
8608 (set-face-fixed-p): Set fixed font attribute.
8609 (set-face-relief): Set relief attribute.
8610 (internal-face-interactive-int): Read int attribute of face.
8611 (modify-face): Add fixed-p and relief parameters.
8612 (copy-face): Handle fixed-p and relief.
8613 (face-equal): Compare fixed-p and relief.
8614 (face-differs-from-default-p): Ditto.
8615 (face-nontrivial-p): Add fixed-p and relief.
8616
8617 1999-07-21 Gerd Moellmann <gerd@acm.org>
8618
8619 * faces.el (eval-when-compile): Add set-face-shadow-thickness.
8620 (internal-facep): Increase vector size.
8621 (make-face): Ditto.
8622 (face-shadow-thickness): Added.
8623 (set-face-shadow-thickness): Added.
8624 (modify-face): Add optional shadow-thickness parameter.
8625 (make-face-x-resource-internal): Add shadows.
8626 (copy-face): Ditto.
8627 (face-equal): Ditto.
8628 (face-differs-from-default-p): Ditto.
8629 (face-nontrivial-p): Ditto.
8630 (face-attr-match-p): Ditto.
8631 (face-attr-construct): Ditto.
8632 (face-spec-set): Ditto.
8633 (face-fill-in): Ditto.
8634
8635 1999-07-21 Gerd Moellmann <gerd@acm.org>
8636
8637 * bench.el (bench-mark-split-window): New bench mark.
8638
8639 1999-07-21 Gerd Moellmann <gerd@acm.org>
8640
8641 * faces.el (set-face-font): Don't pass default font to
8642 x-resolve-font so that font will not have to be of the same
8643 size.
8644
8645 1999-07-20 Dave Love <fx@gnu.org>
8646
8647 * wid-edit.el (widget-use-overlay-change): Uncustomize and make it
8648 unconditionally t.
8649
8650 1999-07-20 Karl Heuer <kwzh@gnu.org>
8651
8652 * font-lock.el (c++-font-lock-extra-types): Add "type_info".
8653
8654 1999-07-20 Dave Love <fx@gnu.org>
8655
8656 * help.el (describe-variable): Fix test for customizability.
8657
8658 * simple.el (append-to-buffer, prepend-to-buffer, copy-to-buffer):
8659 Check for readonly buffer in interactive spec.
8660 (zap-to-char, kill-line, kill-region, comment-region, kill-word)
8661 (backward-kill-word): Add * to interactive spec.
8662
8663 * underline.el (underline-region, ununderline-region): Add * to
8664 interactive spec.
8665
8666 * fill.el (canonically-space-region, justify-current-line): Add *
8667 to interactive spec.
8668 (fill-region-as-paragraph, fill-paragraph, fill-region)
8669 (fill-nonuniform-paragraphs, fill-individual-paragraphs): Check
8670 readonly buffer in interactive spec.
8671
8672 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
8673 (backward-kill-sentence, kill-sentence): Add * to interactive
8674 spec.
8675
8676 1999-07-19 Richard M. Stallman <rms@gnu.org>
8677
8678 * dired-aux.el (dired-do-shell-command): Doc fix.
8679
8680 * shell.el (shell-unquote-argument): New function.
8681 (shell-directory-tracker): Use shell-unquote-argument.
8682 * comint.el (comint-arguments): Handle \ followed by space or tab.
8683
8684 1999-07-19 John Wiegley <jwiegley@borland.com>
8685
8686 * term.el (ansi-term-fg-faces-vector): Added support for ANSI
8687 color codes 39 and 49, which by the way lynx uses them seem to
8688 mean "foreground reset" and "background reset".
8689
8690 1999-07-19 Karl Heuer <kwzh@gnu.org>
8691
8692 * font-lock.el (c++-keywords): Add "typeid".
8693
8694 * term/w32-win.el (mouse-set-font): If user uses w32 dialog but
8695 selects no font, treat that as zero selections, not one.
8696
8697 1999-07-19 Dave Love <fx@gnu.org>
8698
8699 * info.el (Info-search): Don't lose with empty regexp.
8700
8701 * version.el: Cater for (free) `ident' program, not `which'.
8702
8703 * hl-line.el: New file.
8704
8705 * mouse.el (mouse-major-mode-menu): Default to menu-bar-edit-menu
8706 for modes which don't define menus.
8707
8708 1999-07-16 Richard M. Stallman <rms@gnu.org>
8709
8710 * webjump.el (webjump-sample-sites): Update some URLs.
8711
8712 1999-07-14 Richard Stallman <rms@gnu.org>
8713
8714 * Version 20.4 released.
8715
8716 1999-07-14 Andreas Schwab <schwab@gnu.org>
8717
8718 * compare-w.el (compare-windows): Try to find the next window in
8719 the current frame before looking at the other frames.
8720
8721 1998-07-12 Oleg S. Tihonov <ost@benetnash.ffke-campus.mipt.ru>
8722
8723 * language/cyrillic.el ("Cyrillic-KOI8", "Cyrillic-ALT"):
8724 Use cyrillic-jcuken as default input method.
8725
8726 1999-07-12 Richard Stallman <rms@gnu.org>
8727
8728 * progmodes/cc-engine.el (c-inside-bracelist-p): Tighter test for
8729 Java anonymous array expressions ("new Foo[] {.. bracelist ..}").
8730
8731 * ispell.el (ispell-dictionary-alist-6): Change charset for Russian.
8732 (ispell-local-dictionary-alist): Add koi8-r for character set.
8733
8734 * textmodes/flyspell.el (flyspell-get-word):
8735 Add special handling for when ispell-otherchars is empty.
8736
8737 1999-07-12 Espen Skoglund <espensk@stud.cs.uit.no>
8738
8739 * progmodes/pascal.el (pascal-beg-of-defun): More intuitive behavior
8740 when having nested functons.
8741 (pascal-indent-nested-functions) (pascal-indent-line)
8742 (pascal-calculate-indent) (pascal-get-lineup-indent): Support for
8743 indenting nested functions.
8744
8745 1999-07-09 Richard Stallman <rms@gnu.org>
8746
8747 * add-log.el (add-log-current-defun): Remove trailing `=' in C modes.
8748
8749 1999-07-08 Espen Skoglund <espensk@stud.cs.uit.no>
8750
8751 * pascal.el (pascal-calculate-indent): Fixed a bug occuring when
8752 the `end' keyword was in the very beginning of the buffer.
8753
8754 1999-07-08 Richard Stallman <rms@gnu.org>
8755
8756 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Doc fix.
8757
8758 * term.el (term-emulate-terminal): Avoid infinite loop
8759 in strange case where minibuffer window is selected but not active.
8760
8761 1999-07-07 Stephen Eglen <stephen@gnu.org>
8762
8763 * progmodes/octave-inf.el (inferior-octave-directory-tracker):
8764 Change regexp so that it doesn't match commands beginning with `cd'.
8765
8766 1999-07-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
8767
8768 * mail/rmail.el (mail-unsent-separator): Add a missing \\|.
8769
8770 1999-07-06 Richard Stallman <rms@gnu.org>
8771
8772 * hscroll.el (hscroll-minibuffer-hook): New function.
8773 (hscroll-global-mode): Add and remove that hook.
8774 Set hscroll-old-truncate-was-global's default value.
8775
8776 1999-07-05 Richard Stallman <rms@gnu.org>
8777
8778 * files.el (revert-buffer): Don't preserve point here.
8779 (revert-buffer-insert-file-contents-function): Doc fix.
8780
8781 * isearch.el (isearch-process-search-char): Write octal 200 correctly.
8782
8783 * startup.el (normal-top-level-add-subdirs-to-load-path): Avoid
8784 doing a `stat' when it isn't necessary because that can cause
8785 trouble when an NFS server is down.
8786
8787 1999-07-04 Richard Stallman <rms@gnu.org>
8788
8789 * hscroll.el (hscroll-window-maybe): Do nothing in the minibuffer.
8790
8791 1999-07-03 Richard Stallman <rms@gnu.org>
8792
8793 * isearch.el (isearch-quote-char): Call unibyte-char-to-multibyte
8794 for \200...\240 also.
8795 (isearch-printing-char): Use unibyte-char-to-multibyte.
8796
8797 1999-07-02 Richard Stallman <rms@gnu.org>
8798
8799 * frame.el (minibuffer-frame-alist): Use defcustom.
8800 (pop-up-frame-alist): Likewise.
8801 (initial-frame-alist): Specify * in the doc string.
8802
8803 * hscroll.el (hscroll-mode): Make it a permanent local.
8804 (hscroll-mode): Don't cancel the timer
8805 if HScroll mode is enabled in some other buffer.
8806
8807 * isearch.el (isearch-done): If search ends in middle of intangible
8808 text (due to text property), move on to the limit of that text.
8809
8810 1999-07-01 Andrew Innes <andrewi@gnu.org>
8811
8812 * man.el (Man-build-man-command): Use value of null-device,
8813 instead of hard-coding "/dev/null".
8814
8815 * dos-w32.el (untranslated-canonical-name): Avoid expanding
8816 ange-ftp file names, which might force ange-ftp to prompt for a
8817 password.
8818
8819 * ange-ftp.el (ange-ftp-load): Bind load-force-doc-strings to t,
8820 to prevent references to temp files.
8821
8822 1999-06-30 Richard Stallman <rms@gnu.org>
8823
8824 * progmodes/sh-script.el (sh-feature): If nothing is known
8825 about the given shell, use the values for `sh'.
8826
8827 1999-06-30 Andre Spiegel <spiegel@inf.fu-berlin.de>
8828
8829 * vc.el (vc-fetch-cvs-status): Use "-l" option for "cvs status",
8830 to make it non-recursive.
8831
8832 * vc-hooks.el (vc-find-cvs-master): Set case-fold-search correctly.
8833
8834 1999-06-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8835
8836 * auto-show.el (auto-show-mode): Fix Typo in :set.
8837
8838 1999-06-29 Richard M. Stallman <rms@gnu.org>
8839
8840 * progmodes/sh-script.el (sh-mode): When setting syntax
8841 table, default to the standard one.
8842
8843 1999-06-27 Richard M. Stallman <rms@gnu.org>
8844
8845 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
8846
8847 1999-06-27 Stefan Monnier <monnier@cs.yale.edu>
8848
8849 * textmodes/reftex.el (reftex-pop-to-bibtex-entry): Don't pop up
8850 a frame when `return' is requested (even if pop-up-frames = t)
8851 * textmodes/bibtex.el (bibtex-mode): `font-lock-mark-block-function'
8852 should only be set for the bibtex buffer.
8853
8854 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix.
8855
8856 * progmodes/compile.el: Deal with compilation-error-screen-columns
8857 being buffer-local.
8858
8859 1999-06-27 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
8860
8861 * comint.el (comint-password-prompt-regexp): Allow "(again)".
8862
8863 1999-06-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8864
8865 * cal-x.el (calendar-only-one-frame-setup): New function.
8866 * calendar.el (calendar): Call it if requested.
8867
8868 1999-06-24 Karl Heuer <kwzh@gnu.org>
8869
8870 * startup.el (iso-8859-n-locale-regexp): Doc fix.
8871
8872 1999-06-22 Richard M. Stallman <rms@gnu.org>
8873
8874 * mail/supercite.el (sc-emacs-features): Doc fix.
8875
8876 1999-06-22 Karl Heuer <kwzh@gnu.org>
8877
8878 * files.el (auto-mode-alist): Add pike-mode.
8879
8880 1999-06-20 Paul R. Eggert <eggert@twinsun.com>
8881
8882 * tar-mode.el (tar-header-block-tokenize): Don't assume that the
8883 last byte of a numeric field is a space or a NUL. Parse it as
8884 potentially part of the number. This is used by GNU tar
8885 1.12.64012 to handle larger values.
8886
8887 1999-06-20 Karl Heuer <kwzh@gnu.org>
8888
8889 * custom.el (custom-handle-keyword): Fix error message.
8890
8891 1999-06-18 Andrew Innes <andrewi@gnu.org>
8892
8893 * mail/smtpmail.el (smtpmail-send-it): Use
8894 convert-standard-filename to make file names for queued mail safe
8895 on Windows (`:' is invalid in file names on Windows).
8896
8897 1999-06-17 Kenichi Handa <handa@etl.go.jp>
8898
8899 * international/mule-cmds.el (describe-current-input-method):
8900 Current-input-method is string.
8901 (toggle-input-method): Docstring fixed.
8902
8903 * international/mule-diag.el
8904 (describe-current-coding-system-briefly): Fix format string.
8905
8906 * international/mule-util.el (coding-system-eol-type-mnemonic):
8907 Docstring modified. Return a string.
8908
8909 1999-06-17 Alex Schroeder <a.schroeder@bsiag.ch>
8910
8911 * sql.el (sql-input-ring-file-name): Doc fix.
8912
8913 1999-06-17 Richard M. Stallman <rms@gnu.org>
8914
8915 * calendar/cal-x.el (special-display-buffer-names):
8916 Don't put (get-file-buffer diary-file) on this list.
8917
8918 1999-06-17 Mark W Maimone <mwm@helios.jpl.nasa.gov>
8919
8920 * play/mpuz.el (mpuz-try-proposal): Fix message call.
8921 Don't penalize player for certain impossible guesses.
8922
8923 1999-06-16 Andrew Innes <andrewi@gnu.org>
8924
8925 * ls-lisp.el (ls-lisp-format-time): If timestamp is invalid,
8926 return the string "Unk 0 0000" so at least it appears to be a
8927 valid timestamp to `dired-move-to-filename-regexp'.
8928
8929 1999-06-15 Ken'ichi Handa <handa@gnu.org>
8930
8931 * ps-print.el (ps-control-character): Fix previous change.
8932
8933 1999-06-15 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8934
8935 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Avoid
8936 multiple output of the last message.
8937
8938 1999-06-14 Eli Zaretskii <eliz@gnu.org>
8939
8940 * term/internal.el (IT-display-table-setup): Do not remap \222 to
8941 the ASCII apostrophe, as most DOS codepages have some other glyph
8942 there.
8943
8944 1999-06-14 Ken'ichi Handa <handa@gnu.org>
8945
8946 * language/ethio-util.el (setup-ethiopic-environment-internal):
8947 Use quail-activate-hook instead of obsolete hook quail-mode-hook.
8948 (exit-ethiopic-environment): Likewize.
8949
8950 1999-06-12 Richard M. Stallman <rms@gnu.org>
8951
8952 * cus-start.el (scroll-preserve-screen-position): Fix typo in type.
8953
8954 1999-06-12 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8955
8956 * emulation/crisp.el (crisp-mode): (defcustom) Initialize with
8957 custom-initialize-default to avoid infinite loop.
8958 (crisp-mode): (defun) Call transient-mark-mode here, not when
8959 loading the file. Run crisp-mode-hook here, and run
8960 crisp-load-hook when loading the file.
8961
8962 * mail/rmailout.el (rmail-output-read-rmail-file-name): If in
8963 rmail-summary buffer, search for pattern in rmail-file.
8964
8965 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Fix typo.
8966
8967 * progmodes/cperl-mode.el (cperl-invalid-face): Fix custom type.
8968
8969 * ps-print.el (ps-printer-name): Fix custom type.
8970
8971 1999-06-12 Reto Zimmermann <reto@synopsys.com>
8972
8973 * progmodes/vhdl-mode.el (vhdl-port-copy): Fix parsing bug.
8974 (vhdl-port-paste-generic-map): Fix indentation bug.
8975 (vhdl-port-paste-port-map): Fix indentation bug.
8976 (vhdl-scan-file-contents): Make scanning case insensitive.
8977
8978 1999-06-11 Richard M. Stallman <rms@gnu.org>
8979
8980 * files.el (write-file): When buffer is not already visiting a file,
8981 don't put buffer name in the minibuffer, just make it the default.
8982 Also handle just directory as arg usefully in that case.
8983
8984 * simple.el (sendmail-user-agent-compose):
8985 Ignore case when inserting the rest of the "other" headers.
8986
8987 * help.el (help-for-help): Mention C-h C-i. Clear up C-h n.
8988
8989 * info-look.el (info-lookup-file, info-lookup-symbol): Doc fix.
8990 (info-lookup-interactive-arguments): Never insert the default
8991 into the minibuffer automatically.
8992
8993 * emacs-lisp/cl-extra.el (getf): Don't call get*.
8994
8995 1999-06-09 Richard M. Stallman <rms@gnu.org>
8996
8997 * simple.el (shell-command): Avoid printing "mark set" message.
8998
8999 1999-06-09 Dave Love <fx@gnu.org>
9000
9001 * progmodes/compile.el (compilation-error-regexp-alist): Allow
9002 digits in program name in first pattern.
9003
9004 1999-06-09 Andre Spiegel <spiegel@inf.fu-berlin.de>
9005
9006 * vc.el (vc-dired-mode): Don't match anything before the date in
9007 dired-move-to-filename-regexp.
9008
9009 1999-06-07 Ken'ichi Handa <handa@gnu.org>
9010
9011 * international/quail.el (quail-define-rules): Fix typo in
9012 docstring.
9013
9014 1999-06-05 Stephen Eglen <stephen@gnu.org>
9015
9016 * iswitchb.el (iswitchb-default-keybindings): Add
9017 iswitchb-minibuffer-setup to minibuffer-setup-hook here rather
9018 than when package is loaded.
9019
9020 1999-06-04 Richard M. Stallman <rms@gnu.org>
9021
9022 * startup.el (command-line): Don't set user-init-file directly;
9023 tell `load' to set it.
9024
9025 * ange-ftp.el (ange-ftp-shell-command): Handle error-buffer arg.
9026
9027 * simple.el (next-history-element):
9028 Handle minibuffer-text-before-history properly when reading sexps.
9029
9030 * disp-table.el (standard-display-european):
9031 For an interactive call by the user,
9032 don't set enable-multibyte-characters,
9033 and don't set the terminal coding system.
9034
9035 * textmodes/refbib.el: Don't print any messages or display
9036 a buffer when loading the library.
9037 (r2b-help): Doc fix.
9038 (r2b-help-message): Update the documentation.
9039 (r2b-load-quietly): Variable deleted.
9040 (r2b-convert-buffer): Doc fix.
9041
9042 1999-06-04 Dave Love <fx@gnu.org>
9043
9044 * help.el (help-xref-interned): Fix insertion of fdoc and revamp.
9045
9046 * auto-show.el: Don't change hooks on loading.
9047 (auto-show-mode): Autoload. Default to nil. Add :set &c.
9048 (auto-show-mode): Add to hooks here.
9049
9050 1999-06-04 Richard Sharman <rsharman@pobox.com>
9051
9052 * emacs-lisp/regexp-opt.el (regexp-opt-group): Avoid infinite
9053 recursion on bogus input.
9054
9055 1999-06-04 Eric M. Ludlam <zappo@ultranet.com>
9056
9057 * speedbar.el (speedbar-hack-buffer-menu): Fixed so if the user
9058 does not select a buffer from the buffers menu, then the attached
9059 frame is not switched to anything.
9060
9061 1999-06-03 Ken'ichi Handa <handa@gnu.org>
9062
9063 * language/vietnamese.el (ccl-encode-vscii): Typo fixed
9064 (viet-viscii-...->viet-vscii...).
9065
9066 * international/mule-conf.el (iso-2022-7bit-lock-ss2): Typo fixed.
9067
9068 1999-06-01 Dave Love <fx@gnu.org>
9069
9070 * progmodes/fortran.el: Add :link to defgroup.
9071 (fortran-blink-matching-if): Match ELSE statements too.
9072 (fortran-fill-statement, fortran-fill): Bind auto-fill-function so
9073 that filling is always done.
9074
9075 1999-05-31 Richard M. Stallman <rms@gnu.org>
9076
9077 * simple.el (append-next-kill): Use an arg to distinguish
9078 interactive calls from Lisp calls, rather than (interactive-p).
9079
9080 * international/iso-transl.el (iso-transl-language-alist):
9081 Interchange n and N.
9082
9083 1999-05-31 Dave Love <fx@gnu.org>
9084
9085 * msb.el Add to minor-mode-map-alist. Remove hook installation
9086 and keymap munging on load.
9087 (msb-mode): New option.
9088 (msb-files-by-directory, msb-sort-by-name, msb-sort-by-directory):
9089 Doc fix.
9090 (msb-mode-map): New variable.
9091 (msb-mode): New command.
9092
9093 1999-05-31 Dave Love <fx@gnu.org>
9094
9095 * ispell.el: (ispell-alternate-dictionary): Fix custom type.
9096 (ispell-complete-word-dict): Likewise.
9097
9098 1999-05-31 Eli Zaretskii <eliz@gnu.org>
9099
9100 * forms.el (forms-save-buffer): Call set-buffer-modified-p to
9101 force the data buffer to be saved, even if the data didn't
9102 change, in case the write filter was modified. Restore the
9103 current record after read-file-filter finishes.
9104
9105 1999-05-29 Karl Heuer <kwzh@gnu.org>
9106
9107 * ispell4.el: Obsolete; file deleted.
9108
9109 * textmodes/texinfmt.el (texinfo-format-direntry): Avoid blank line.
9110
9111 * font-lock.el (font-lock-apply-syntactic-highlight): Don't die if
9112 VALUE is a syntax table.
9113
9114 * emacs-lisp/cl.el (custom-print-functions): Add autoload cookie.
9115
9116 * simple.el (zap-to-char): Doc fix.
9117
9118 1999-05-27 Ken'ichi Handa <handa@gnu.org>
9119
9120 * isearch.el (isearch-quote-char): Don't assume character codes
9121 0200 - 0237 stand for characters in some single-byte character
9122 charset.
9123
9124 1999-05-27 Dave Love <fx@gnu.org>
9125
9126 * startup.el: (iso-8859-n-locale-regexp): Don't match 8859-15 &c.
9127
9128 1999-05-27 Andreas Schwab <schwab@gnu.org>
9129
9130 * dired-aux.el (dired-insert-subdir-doinsert): Check that the
9131 headerline does not exist already.
9132
9133 1999-05-26 Richard Stallman <rms@gnu.org>
9134
9135 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
9136 Avoid nested null-loops.
9137
9138 1999-05-26 Ken'ichi Handa <handa@gnu.org>
9139
9140 * international/characters.el: Typo fixed; prefered->preferred.
9141
9142 * international/mule-cmds.el (find-coding-systems-for-charsets):
9143 Typo fixed; prefered->preferred.
9144
9145 * map-ynp.el (map-y-or-n-p): Don't inherit the current input
9146 method in read-event.
9147
9148 * international/mule.el (charset-info): Doc-string fixed.
9149
9150 1999-05-25 Ken'ichi Handa <handa@gnu.org>
9151
9152 * mail/smtpmail.el (smtpmail-send-it): Bind
9153 smtpmail-code-conv-from properly.
9154 (smtpmail-send-data-1): If DATA is a multibyte string, encode it
9155 by smtpmail-code-conv-from.
9156
9157 1999-05-24 Richard Stallman <rms@gnu.org>
9158
9159 * emulation/crisp.el (crisp-submit-bug-report): Function deleted.
9160 Binding deleted also.
9161
9162 1999-05-24 Karl Heuer <kwzh@gnu.org>
9163
9164 * comint.el (comint-bol-or-process-mark): Doc fix.
9165
9166 1999-05-23 Dave Love <fx@gnu.org>
9167
9168 * emulation/crisp.el (crisp-mode-map): Don't inherit global-map.
9169 Enter it on minor-mode-map-alist.
9170 (crisp-mode): Re-named from `crsip-mode-enabled'. Users changed.
9171 Autoload. Add custom setter.
9172 (crisp-mark-line): Doc fix.
9173 (crisp-mode): Autoload. Re-write not to frob keymaps directly.
9174 (crisp-mode-hook): Define.
9175
9176 1999-05-23 Ken'ichi Handa <handa@gnu.org>
9177
9178 * files.el (recover-file): Recover buffer-file-coding-system.
9179
9180 1999-05-22 Richard Stallman <rms@gnu.org>
9181
9182 * vc.el (vc-dired-mode): Make the dired-move-to-filename-regexp
9183 regexp match the date, to avoid treating date as file size.
9184 Add YYYY S option to WESTERN/
9185
9186 * bookmark.el: Delete some XEmacs compatibility code.
9187 (bookmark-jump-noselect): Check vc-backend.
9188
9189 * subr.el (add-to-list): Doc fix.
9190
9191 1999-05-21 Stephen Eglen <stephen@gnu.org>
9192
9193 * diary-lib.el (diary-mail-entries): Use fancy-diary-buffer.
9194
9195 1999-05-18 Richard Stallman <rms@gnu.org>
9196
9197 * textmodes/texinfmt.el (texinfo-anchor): Don't delete a
9198 non-space after the @anchor command.
9199 (texinfo-format-var): Handle other nested constructs, using
9200 texinfo-parse-expanded-arg and texinfo-discard-command, not
9201 texinfo-parse-arg-discard.
9202
9203 * emacs-lisp/debug.el (debugger-outer-inhibit-redisplay): New variable.
9204 (debug): Bind and use debugger-outer-inhibit-redisplay.
9205 Bind inhibit-redisplay to nil.
9206 (debugger-env-macro): Treat inhibit-redisplay like other outside vars.
9207
9208 1999-05-17 Dave Love <fx@gnu.org>
9209
9210 * help.el (describe-function-1): Extra arg, interactive-p.
9211 (describe-key, describe-function): Use it.
9212
9213 1999-05-17 Karl Heuer <kwzh@gnu.org>
9214
9215 * ispell.el (ispell-local-dictionary-alist): Add autoload cookie.
9216
9217 1999-05-16 Dave Love <fx@gnu.org>
9218
9219 * cus-start.el (all): Delete selective-display. Add scroll-margin,
9220 scroll-preserve-screen-position, scroll-conservatively.
9221
9222 1999-05-16 Dave Love <fx@gnu.org>
9223
9224 * emacs-lisp/byte-opt.el (byte-optimize-plus): Fix 1-arg case.
9225
9226 1999-05-15 Reto Zimmermann <reto@Synopsys.COM>
9227
9228 * progmodes/vhdl-mode.el: Completely revised and massively extended.
9229
9230 1999-05-15 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
9231
9232 * progmodes/sh-script.el (sh-mode): Do not fail if buffer has no
9233 magic number and is not associated with a file.
9234
9235 1999-05-14 Richard M. Stallman <rms@gnu.org>
9236
9237 * files.el (find-file-noselect-1): Fix previous change.
9238
9239 1999-05-14 Simon Marshall <simon@gnu.org>
9240
9241 * fast-lock.el (fast-lock-cache-name): Fix test for `windows-nt'.
9242
9243 1999-05-13 Ken'ichi Handa <handa@gnu.org>
9244
9245 * international/mule-diag.el (mule-diag): Change MULE to Mule in
9246 docstring.
9247
9248 * international/mule-cmds.el: Change MULE to Mule in docstrings
9249 and menus.
9250
9251 1999-05-10 Kenichi HANDA <handa@etl.go.jp>
9252
9253 * ps-mule.el (ps-mule-prologue): Fix the definition of DefFontMule
9254 to correctly reflect the value of BaseLineOffset in
9255 RelativeCompose. Now the value of RelativeCompose is an array of
9256 low and high positions.
9257 (ps-mule-cmpchar-prologue): Adjust the definition of BC, EC, and
9258 RLC for the above change.
9259
9260 1995-05-11 Joel N. Weber II <devnull@melange.gnu.org>
9261
9262 * comint.el (comint-password-prompt-regexp): Modified to match the
9263 output of ksu and ssh-add.
9264
9265 1999-05-11 Kenichi HANDA <handa@etl.go.jp>
9266
9267 * language/korea-util.el (isearch-toggle-korean-input-method):
9268 Adjusted for the change of input method handling in isearch.el.
9269 (isearch-hangul-switch-symbol-ksc): Likewise.
9270 (isearch-hangul-switch-hanja): Likewise.
9271
9272 1999-05-10 Dave Love <fx@gnu.org>
9273
9274 * help.el (help-make-xrefs): Fix typo.
9275
9276 1999-05-10 Andreas Schwab <schwab@gnu.org>
9277
9278 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add
9279 unibyte-display-via-language-environment.
9280
9281 * help.el (help-make-xrefs): Handle more cases when looking for
9282 commands in a keymap description.
9283
9284 1999-05-10 Eli Zaretskii <eliz@gnu.org>
9285
9286 * loadup.el: For ms-dos systems, load ccl and codepage.
9287
9288 1999-05-09 Ken'ichi Handa <handa@gnu.org>
9289
9290 * ps-print.el (ps-control-character): Call
9291 ps-mule-prepare-ascii-font to setup ASCII fonts.
9292
9293 * ps-mule.el (ps-mule-begin-job): Redo this change "if
9294 ps-multibyte-buffer is nil, use
9295 ps-mule-font-info-database-default."
9296
9297 1999-05-08 Ken Stevens <k.stevens@ieee.org>
9298
9299 * ispell.el (ispell-local-dictionary-alist): New variable for
9300 customizing local dictionaries not accessable by everyone.
9301 (ispell-dictionary-alist): Loads `ispell-local-dictionary-alist'.
9302 (ispell-required-version): Changed format `(major minor
9303 revision)' to support general pattern matching.
9304 (ispell-tex-skip-alists): AMS Tex block comment and `\author'
9305 skip region commented out due to incorrect skip potential in std latex.
9306 (ispell-word): Removed `when' macro. Fixed bug of not restoring
9307 cursor point on small words for calls from `ispell-minor-mode'.
9308 (check-ispell-version): Tests and accepts versions major.minor
9309 and above, with adjustments for interactions in 3.1.0-3.1.11.
9310 (ispell-get-line): No longer skips ispell process special characters.
9311 (ispell-comments-and-strings): Removed `when' macro call.
9312 (ispell-minor-check): Requires ispell-word to restore cursor point.
9313 (ispell-buffer-local-parsing): Supports checking comments only.
9314
9315 1999-05-08 Karl Heuer <kwzh@gnu.org>
9316
9317 * comint.el (comint-password-prompt-regexp): Fix last change to be
9318 more specific.
9319
9320 1999-05-07 Richard M. Stallman <rms@gnu.org>
9321
9322 * subr.el (with-temp-message): Fix the other call to message
9323 to use %s.
9324
9325 1999-05-07 Michael Ernst <mernst@alum.mit.edu>
9326
9327 * gud.el (gud-format-command): "%F" means file sans extension.
9328 (jdb): Use %F, not %f, for gud-break.
9329
9330 1999-05-07 Joel N. Weber II <devnull@melange.gnu.org>
9331
9332 * comint.el (comint-password-prompt-regexp): Modified so that it
9333 matches the output of kinit.
9334
9335 1999-05-06 Greg Stark <gsstark@mit.edu>
9336
9337 * timezone.el (timezone-parse-date): Recognize new format used in
9338 internet cookies.
9339
9340 1999-05-04 Tudor Hulubei <tudor@cs.unh.edu>
9341
9342 * international/iso-acc.el (iso-languages): Add latin-2 cedillas.
9343
9344 1999-05-04 Andrew Innes <andrewi@gnu.org>
9345
9346 * time.el (display-time-update): Allow for wrap-around when
9347 checking against display-time-server-down-time.
9348
9349 1999-05-04 Ken'ichi Handa <handa@gnu.org>
9350
9351 * international/mule-diag.el (describe-coding-system): Fix English
9352 message.
9353
9354 1999-05-03 Jason Rumney <jasonr@altavista.net>
9355
9356 * term/w32-win.el: Change the x-charset-registry property for the
9357 Japanese charsets that are supported by Japanese Windows fonts.
9358
9359 1999-05-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
9360
9361 * diary-lib.el (diary-remind): Rewritten to behave sensibly for
9362 diary-block diary entries for which the reminders and the diary
9363 entries can overlap.
9364
9365 1999-05-02 Jason Rumney <jasonr@altavista.net>
9366
9367 * term/w32-win.el (mouse-set-font): Ensure constructed fontset
9368 matches the font selected in the dialog.
9369
9370 1999-05-02 Dave Love <fx@gnu.org>
9371
9372 * browse-url.el (browse-url-browser-function): Add :version.
9373
9374 * international/mule.el (auto-coding-alist): Add .tgz.
9375
9376 1999-05-2 Eli Zaretskii <eliz@is.elta.co.il>
9377
9378 * international/codepage.el (cp-coding-system-for-codepage-1):
9379 Make the magnification parameter for the -dos encoder be 2.
9380
9381 1999-05-2 Andrew Innes <andrewi@gnu.org>
9382
9383 * term/w32-win.el (w32-drag-n-drop): Select file in window where
9384 it is dropped, rather than current window.
9385
9386 * mail/smtpmail.el (smtpmail-deduce-address-list): Bind variables
9387 after switching buffer, as case-fold-search is a buffer local
9388 variable.
9389
9390 * w32-fns.el (convert-standard-filename): Only convert directory
9391 separators to backslash if the interactive shell is one of the
9392 standard Windows shells that has DOS semantics.
9393
9394 * ls-lisp.el (ls-lisp-format-time): Trap errors from
9395 format-time-string, and return a suitable string to indicate the
9396 timestamp was invalid.
9397
9398 * hexl.el (hexlify-command): Apply shell-quote-argument after
9399 expanding hexl-program in case exec-directory contains a space.
9400 (dehexlify-command): Ditto.
9401
9402 * dos-w32.el (file-name-buffer-file-type-alist): Remove various
9403 file extension regexps which aren't necessarily binary files.
9404 (direct-print-region-helper): Use subst-char-in-string instead of
9405 binding directory-sep-char to convert filenames to DOS syntax.
9406 (direct-print-region-use-command-dot-com): New variable.
9407 (direct-print-region-helper): Use it to control whether to invoked
9408 command.com to print on Windows 9x.
9409
9410 * browse-url.el (browse-url-browser-function): Default to
9411 browse-url-default-windows-browser on windows-nt.
9412 (browse-url-default-windows-browser): New function.
9413
9414 1999-04-30 Eli Zaretskii <eliz@is.elta.co.il>
9415
9416 * forms.el (forms-mode): Don't call forms-first-record or
9417 forms-last-record if the data file has zero records.
9418
9419 1999-04-29 Richard M. Stallman <rms@gnu.org>
9420
9421 * files.el (find-file-noselect-1): If buffer-file-name has changed
9422 after find-file-not-found-hooks runs, recompute the truename.
9423 And don't use FILENAME after that point.
9424
9425 1999-04-27 Dave Love <fx@gnu.org>
9426
9427 * paren.el (show-paren-mode)
9428 * which-func.el (which-func-mode-global)
9429 * type-break.el (type-break-mode)
9430 * time.el (display-time-mode)
9431 * rsz-mini.el (resize-minibuffer-mode)
9432 * mouse-sel.el (mouse-sel-mode)
9433 * icomplete.el (icomplete-mode)
9434 * hscroll.el (hscroll-global-mode)
9435 * help.el (temp-buffer-resize-mode)
9436 * font-lock.el (global-font-lock-mode)
9437 * delsel.el (delete-selection-mode)
9438 * avoid.el (mouse-avoidance-mode)
9439 * autoinsert.el (auto-insert-mode)
9440 * winner.el (winner-mode): Doc fix.
9441
9442 1999-04-26 Karl Heuer <kwzh@gnu.org>
9443
9444 * mail/rmail.el (rmail-next-same-subject): When searching, ignore
9445 the same whitespace that was ignored in choosing the subject string.
9446
9447 1999-04-26 Richard M. Stallman <rms@gnu.org>
9448
9449 * info.el (Info-find-node): Position properly after finding anchor.
9450
9451 * cus-start.el (all): Handle unibyte-display-via-language-environment.
9452
9453 * simple.el (indent-new-comment-line): Fix previous change.
9454
9455 * complete.el: Delete the wildcard expansion feature
9456 since that is now standard in find-file.
9457 (PC-try-load-many-files): Function deleted.
9458 (PC-after-load-many-files): Function deleted.
9459 (PC-many-files-list): Variable deleted.
9460 (PC-disable-wildcards): Variable deleted.
9461 (partial-completion-mode): Don't enable the wildcard feature.
9462
9463 * complete.el (PC-look-for-include-file): Don't set global variables
9464 `error', `buf' and `filename' here.
9465
9466 * mail/sendmail.el (mail-sent-via): Use copy-marker not make-marker.
9467
9468 1999-04-26 John Wiegley <johnw@oneworld.new-era.com>
9469
9470 * textmodes/outline.el (outline-regexp): Doc fix.
9471
9472 1999-04-26 John Wiegley <johnw@borland.com>
9473
9474 * progmodes/compile.el (compilation-error-regexp-alist): Recognize
9475 C++Builder 4.0 error message syntax.
9476
9477 1999-04-26 Mark Diekhans <markd@Grizzly.COM>
9478
9479 * progmodes/compile.el (grep-compute-defaults): If xargs -e isn't
9480 supported, use find -exec.
9481
9482 1999-04-26 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp>
9483
9484 * textmodes/texinfmt.el (texinfo-format-buffer): Bind
9485 coding-system-for-write, to avoid hanging when non-interactive.
9486
9487 1999-04-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
9488
9489 * textmodes/bibtex.el (bibtex-reference-head): Allow entries to
9490 start with a newline.
9491
9492 1999-04-13 Ken'ichi Handa <handa@gnu.org>
9493
9494 * international/mule-conf.el (x-ctext): New coding system.
9495
9496 1999-04-12 Richard M. Stallman <rms@gnu.org>
9497
9498 * international/mule-cmds.el (input-method-function):
9499 Add permanent-local property.
9500
9501 1999-04-12 Dave Love <fx@gnu.org>
9502
9503 * jka-compr.el (jka-compr-insert-file-contents): Fix previous
9504 change to use jka-compr-byte-compiler-base-file-name.
9505
9506 * supercite.el (sc-scan-info-alist): Revert last change.
9507 (sc-attrib-selection-list): Fix :type here instead.
9508
9509 1999-04-11 Eli Zaretskii <eliz@gnu.org>
9510
9511 * international/mule.el (auto-coding-alist-lookup): Include ms-dos
9512 in the list of case-insensitive filesystems.
9513
9514 1999-04-09 Kenichi Handa <handa@etl.go.jp>
9515
9516 * international/fontset.el (create-fontset-from-fontset-spec):
9517 Don't register duplicated alias fontset names.
9518
9519 1999-04-08 Richard Stallman <rms@gnu.org>
9520
9521 * international/mule.el (auto-coding-alist-lookup): New function.
9522 (set-auto-coding): Use auto-coding-alist-lookup.
9523
9524 * jka-compr.el (jka-compr-insert-file-contents):
9525 Use auto-coding-alist-lookup to check for files that
9526 should not have eol conversion, in the unibyte case.
9527
9528 1999-04-07 Dave Love <fx@gnu.org>
9529
9530 * help.el (describe-variable): Check custom-loads property as well
9531 as custom-type.
9532
9533 * abbrev.el (abbrev-mode): Customizing sets the default value.
9534
9535 1999-04-08 Andre Spiegel <spiegel@inf.fu-berlin.de>
9536
9537 * vc.el (vc-backend-revert): For CVS files that were made
9538 writeable with "cvs edit", call "cvs unedit" to undo that.
9539
9540 1999-04-08 Dave Love <fx@gnu.org>
9541
9542 * mail/supercite.el: (sc-attrib-selection-list): Fix custom type
9543 more.
9544 (sc-emacs-features): Recognize Emacs 20.
9545 (sc-read-string): Use history arg.
9546 (sc-scan-info-alist): Check for rtnvalue a cons.
9547
9548 1999-04-08 Kenichi HANDA <handa@etl.go.jp>
9549
9550 * gnus/gnus-mule.el (gnus-mule-message-send-mail-function): Find a
9551 coding system to encode the message by
9552 select-message-coding-system.
9553
9554 1999-04-07 Richard Stallman <rms@gnu.org>
9555
9556 * progmodes/sql.el (sql-send-paragraph): Delete duplicate definition.
9557
9558 * winner.el: Reorder definitions.
9559
9560 * mail/mh-utils.el (mh-find-progs): Try /etc/nmh and lib/nmh dirs.
9561
9562 * mail/rmail.el (rmail-decode-babyl-format):
9563 Undo previous change.
9564
9565 1999-04-06 Richard Stallman <rms@gnu.org>
9566
9567 * info.el (Info-find-node): Check for an anchor at the
9568 proper place, before reading an indirect file.
9569
9570 * imenu.el (imenu--mouse-menu): Use assq when searching in FINAL.
9571
9572 * jka-compr.el (jka-compr-insert-file-contents):
9573 Use raw-text-unix when we want no conversion.
9574
9575 1999-04-06 Thierry Emery <Thierry.Emery@nmu.alcatel.fr>
9576
9577 * timezone.el (timezone-parse-date): Corrected regexp for
9578 style (5) date format so that tenths of seconds are optional.
9579
9580 1999-04-05 Eli Zaretskii <eliz@gnu.org>
9581
9582 * term/internal.el (dos-cpNNN-setup): New function, with the guts
9583 of dos-codepage-setup.
9584 (cjk-codepages-alist): New variable, an alist of Far-Eastern
9585 codepages for which there's no need to set up cpNNN coding
9586 systems.
9587 (dos-codepage-setup): Support Far-Eastern DOS terminals.
9588
9589 1999-04-05 Richard Stallman <rms@gnu.org>
9590
9591 * mail/rmail.el (rmail-ignored-headers): Doc fix.
9592
9593 1999-04-02 Richard Stallman <rms@gnu.org>
9594
9595 * progmodes/compile.el (compilation-handle-exit): Do right thing
9596 if (car status) doesn't end in a newline.
9597
9598 1999-04-01 Dave Love <fx@gnu.org>
9599
9600 * progmodes/sql.el (SQL): Add defgroup :version.
9601
9602 1999-03-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
9603
9604 * emacs-lisp/bytecomp.el (byte-compile-file): Clear
9605 buffer-file-coding-system. If the coding system used is raw-text,
9606 etc., make the *Compiler Input* buffer unibyte.
9607
9608 * international/mule.el (find-new-buffer-file-coding-system): Doc fix.
9609
9610 * loadup.el: Don't write the fns-...el file if not dumping.
9611
9612 1999-03-31 Dave Love <fx@gnu.org>
9613
9614 * snmp-mode.el (snmp): Fix defgroup :version.
9615
9616 * hilit-chg.el (highlight-changes): Add defgroup :version.
9617
9618 1999-03-31 Andreas Schwab <schwab@gnu.org>
9619
9620 * gnus/gnus-sum.el (gnus-data-compute-positions): Move down after
9621 the gnus-save-hidden-threads macro.
9622
9623 1999-03-30 Per Abrahamsen <abraham@dina.kvl.dk>
9624
9625 * faces.el (face-set-after-frame-default): Obey the
9626 `customized-face' for new faces.
9627
9628 1999-03-30 Dave Love <fx@gnu.org>
9629
9630 * international/mule-cmds.el (current-language-environment): Doc fix.
9631 * abbrev.el (abbrev-mode): Doc fix.
9632 * autoinsert.el (auto-insert-mode): Doc fix.
9633 * complete.el (partial-completion-mode): Doc fix.
9634 * avoid.el (mouse-avoidance-mode): Doc fix.
9635 * delsel.el (delete-selection-mode): Doc fix.
9636 * font-lock.el (global-font-lock-mode): Doc fix.
9637 * help.el (temp-buffer-resize-mode): Doc fix.
9638 * hscroll.el (hscroll-global-mode): Doc fix.
9639 * icomplete.el (icomplete-mode): Doc fix.
9640 * mouse-sel.el (mouse-sel-mode): Doc fix.
9641 * paren.el (show-paren-mode): Doc fix.
9642 * rsz-mini.el (resize-minibuffer-mode): Doc fix.
9643 * time.el (display-time-mode): Doc fix.
9644 * type-break.el (type-break-mode): Doc fix.
9645 * which-func.el (which-func-mode-global): Doc fix.
9646 * winner.el (winner-mode): Doc fix.
9647
9648 1999-03-30 Michael Ernst <mernst@alum.mit.edu>
9649
9650 * wid-edit.el (widget-before-change): Signal text-read-only rather
9651 than an ordinary error.
9652
9653 1999-03-30 Richard M. Stallman <rms@gnu.org>
9654
9655 * repeat.el: Don't require advice.
9656 (repeat): Do function-indirection in check for kbd macro.
9657 In self-insert case, use the *last* char in INSERTION.
9658
9659 1999-03-30 Karl Heuer <kwzh@gnu.org>
9660
9661 * progmodes/cc-cmds.el (c-indent-command): Doc fix.
9662
9663 1999-03-29 Andreas Schwab <schwab@gnu.org>
9664
9665 * textmodes/tex-mode.el (tex-start-shell): Use add-hook for
9666 comint-input-filter-functions. Make variables related to shell
9667 directory tracking local.
9668
9669 1999-03-26 Andreas Schwab <schwab@gnu.org>
9670
9671 * emacs-lisp/debug.el (debug): Make *Backtrace* buffer writable.
9672
9673 * simple.el (shell-command-on-region): Cope with exit-status being
9674 nil, which happens if call-process-region was interrupted.
9675
9676 1999-03-26 Richard M. Stallman <rms@gnu.org>
9677
9678 * simple.el (indent-new-comment-line): Handle use at a point
9679 after a comment-end. Handle multiple comments.
9680
9681 * mail/rmail.el (rmail-decode-babyl-format):
9682 To prevent locking, bind buffer-file-name to nil.
9683
9684 1999-03-26 Karl Fogel <kfogel@red-bean.com>
9685
9686 * mail-hist.el (mail-hist-current-header-name): Don't make
9687 off-by-one-error when determining if in message body.
9688
9689 1999-03-25 Andrew Innes <andrewi@gnu.org>
9690
9691 * w32-fns.el (set-default-process-coding-system): Copied from
9692 dos-w32.el, but modified to use Unix line endings for process
9693 input, and to add a suitable entry to process-coding-system-alist
9694 for DOS shells.
9695
9696 * dos-fns.el (set-default-process-coding-system): Copied from
9697 dos-w32.el.
9698
9699 * dos-w32.el (set-default-process-coding-system): Move function to
9700 dos-fns.el; a different version is used in w32-fns.el.
9701
9702 1999-03-24 Dave Love <fx@gnu.org>
9703
9704 * info.el (Info-directory-list): Revert change to re-writing
9705 Info-default-directory-list, but put `alternative' first.
9706 (Info-insert-dir): Modify selecting the top dir file as a consequence.
9707
9708 1999-03-23 Simon Marshall <simon@gnu.org>
9709
9710 * font-lock.el (c-font-lock-keywords-2): Only fontify a label if it is
9711 on the line by itself.
9712 (java-font-lock-keywords-2): Likewise. Don't fontify a class name if
9713 it is not in a declarative context.
9714
9715 1999-03-22 Per Abrahamsen <abraham@dina.kvl.dk>
9716
9717 * cus-edit.el (custom-variable-prompt): Allow customization of
9718 autoloaded symbols.
9719
9720 1999-03-22 Kenichi HANDA <handa@etl.go.jp>
9721
9722 * simple.el (what-cursor-position): Don't cause error when point
9723 is at invalid multibyte sequence.
9724
9725 1999-03-21 Karl Heuer <kwzh@gnu.org>
9726
9727 * complete.el (partial-completion-mode): Doc fix.
9728
9729 1999-03-19 Richard M. Stallman <rms@gnu.org>
9730
9731 * progmodes/cplus-md.el (old-c++): Remove :group.
9732
9733 * progmodes/c-mode.el (old-c): Remove :group.
9734
9735 1999-03-18 Simon Marshall <simon@gnu.org>
9736
9737 * font-lock.el (c-font-lock-keywords-2): Added "complex" type.
9738 (java-font-lock-keywords-2): Added "strictfp" keyword.
9739
9740 1999-03-17 Jason Rumney <jasonr@altavista.net>
9741
9742 * w32-fns.el (set-w32-system-coding-system) New function.
9743 (w32-system-coding-system) Initialize to 'iso-latin-1.
9744
9745 1999-03-17 Eli Zaretskii <eliz@gnu.org>
9746
9747 * international/mule-cmds.el (set-language-environment): Fix
9748 previous change: don't use dos-codepage when unbound.
9749
9750 1999-03-17 Karl Heuer <kwzh@gnu.org>
9751
9752 * calendar/appt.el (appt-make-list): Fix previous change.
9753
9754 1999-03-16 Richard M. Stallman <rms@gnu.org>
9755
9756 * window.el (shrink-window-if-larger-than-buffer):
9757 Don't try to redisplay with the cursor at the end
9758 on its own line--that would force a scroll and spoil things.
9759
9760 1999-03-16 Eli Zaretskii <eliz@gnu.org>
9761
9762 * international/mule-cmds.el (set-language-environment): Don't use
9763 cpNNN-nonascii-translation-table if it is unbound.
9764
9765 * term/internal.el (dos-codepage-setup): Compute the unibyte
9766 syntax table and bind unibyte-display-via-language-environment
9767 here, rather than at top level, so that resetting to unibyte in
9768 .emacs works as expected.
9769
9770 1999-03-15 Simon Marshall <simon@gnu.org>
9771
9772 * font-lock.el (c-font-lock-keywords-2): Added "restrict" keyword.
9773
9774 1999-03-14 Milan Zamazal <pdm@pvt.net>
9775
9776 * abbrev.el (inverse-add-abbrev): Inherit the current input method.
9777
9778 1999-03-14 Kenichi Handa <handa@etl.go.jp>
9779
9780 * international/mule-util.el (detect-coding-with-priority):
9781 Restore the internal database.
9782
9783 1999-03-14 Stephen Eglen <stephen@gnu.org>
9784
9785 * mail/sendmail.el (sendmail-send-it): Fix typo in error string
9786 if mail-from-style has invalid value.
9787
9788 1999-03-12 Karl Heuer <kwzh@gnu.org>
9789
9790 * vc.el (vc-delete-logbuf-window): New var.
9791 (vc-finish-logentry): Use it.
9792
9793 1999-03-12 Richard M. Stallman <rms@gnu.org>
9794
9795 * startup.el (command-line-1): Improve startup msg.
9796
9797 1999-03-12 Eric M. Ludlam <zappo@ultranet.com>
9798
9799 * speedbar.el: Added commentary about stealthy functions.
9800 (speedbar-message) new function.
9801 (speedbar-y-or-n-p): New function
9802 (speedbar-with-attached-buffer) Moved macro before reference.
9803 Now uses `save-selected-window'.
9804 (speedbar-mouse-hscroll, speedbar-track-mouse, speedbar-refresh,
9805 speedbar-generic-item-info, speedbar-item-info-file-helper,
9806 speedbar-item-delete, speedbar-insert-generic-list,
9807 speedbar-timer-fn, speedbar-check-vc-this-line,
9808 speedbar-check-obj-this-line, speedbar-fetch-dynaic-etags,
9809 speedbar-buffers-item-info) Use speedbar-message.
9810 (speedbar-item-info) Limit `message-log-max'.
9811 (speedbar-item-load, speedbar-item-copy, speedbar-item-rename,
9812 speedbar-item-delete, speedbar-item-object-delete,
9813 speedbar-buffer-kill-buffer) Use speedbar-y-or-n-p.
9814
9815 1999-03-10 Kenichi Handa <handa@mulelab.etl.go.jp>
9816
9817 * server.el (server-start): Set coding system for the server
9818 process to raw-text.
9819 (server-process-filter): Decode file names if necessary.
9820
9821 1999-03-12 Dave Love <fx@gnu.org>
9822
9823 * textmodes/fill.el (sentence-end-double-space): Doc fix.
9824
9825 * textmodes/paragraphs.el (sentence-end): Doc fix.
9826
9827 1999-03-11 Karl Heuer <kwzh@gnu.org>
9828
9829 * comint.el (comint-password-prompt-regexp): Accept "login password:"
9830
9831 1999-03-09 Karl Heuer <kwzh@gnu.org>
9832
9833 * ispell.el (ispell-dictionary-alist-1): Shorten autoloaded line.
9834 (ispell-dictionary-alist-2): Likewise.
9835 (ispell-dictionary-alist-3, ispell-dictionary-alist-4): New vars.
9836 (ispell-dictionary-alist-5, ispell-dictionary-alist-6): New vars.
9837 (ispell-dictionary-alist): Build from six pieces, not just two.
9838
9839 * ps-bdf.el (bdf-directory-list): Doc fix.
9840
9841 * enriched.el (enriched-mode): Make var permanent-local.
9842
9843 1999-03-09 Dave Love <fx@gnu.org>
9844
9845 * textmodes/sgml-mode.el (html-mode): Use
9846 sentence-end-double-space when setting sentence-end.
9847
9848 1999-03-09 Ken'ichi Handa <handa@gnu.org>
9849
9850 * language/thai.el (tis-620): New alias coding system for thai-tis620.
9851
9852 1999-03-08 Felix Lee <flee@cygnus.com>
9853
9854 * textmodes/flyspell.el (flyspell-mode-on): Use change-major-mode-hook.
9855
9856 * textmodes/outline.el (outline-back-to-heading): Fix invisible-ok.
9857
9858 1999-03-08 Karl Heuer <kwzh@gnu.org>
9859
9860 * dired-aux.el (dired-do-copy-regexp): Doc fix.
9861 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
9862
9863 * dired.el (dired-do-copy-regexp): Doc fix.
9864 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
9865
9866 1999-03-08 Roger Breitenstein <roger.breitenstein@starfish.com>
9867
9868 * mail/smtpmail.el (smtpmail-do-bcc): Fix regexp.
9869
9870 1999-03-08 Jason Rumney <jasonr@altavista.net>
9871
9872 * international/codepage.el (cp1250-decode-table)
9873 (cp1251-decode-table, cp1253-decode-table)
9874 (cp1257-decode-table): New translation tables for MS Windows codepages.
9875 (cp-make-coding-systems-for-codepage): Accept 4 digit codepages.
9876
9877 1999-03-07 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp>
9878
9879 * textmodes/texinfmt.el (texinfo-append-refill): Check @c correctly.
9880
9881 1999-03-07 Eli Zaretskii <eliz@gnu.org>
9882
9883 * ps-bdf.el (bdf-directory-list): Different value for ms-dos.
9884
9885 * term/internal.el (top level): Display character 255 as 8bit as well.
9886
9887 1999-03-06 Dave Love <fx@gnu.org>
9888
9889 * progmodes/cc-cmds.el (c-outline-level): Bind
9890 buffer-invisibility-spec.
9891
9892 * progmodes/c-mode.el (c-outline-level): Likewise.
9893
9894 * progmodes/ada-mode.el (ada-outline-level): Likewise.
9895
9896 1999-03-05 Felix Lee <flee@cygnus.com>
9897
9898 * textmodes/outline.el (outline-get-last-sibling): Doc fix.
9899
9900 1999-03-05 Richard M. Stallman <rms@gnu.org>
9901
9902 * bindings.el (complete-symbol): Invert meaning of prefix arg.
9903
9904 1999-03-05 Andrew Innes <andrewi@gnu.org>
9905
9906 * w32-fns.el (convert-standard-filename): Convert directory
9907 separators to Windows format.
9908
9909 1999-03-05 Andreas Schwab <schwab@gnu.org>
9910
9911 * international/skkdic-cnv.el: Provide skkdic-cnv.
9912 (skkdic-convert): Emit code to require skkdic-cnv at compile time.
9913 (batch-skkdic-convert): Doc fix.
9914
9915 1999-03-04 Dave Love <fx@gnu.org>
9916
9917 * custom.el (custom-set-variables): Protect against setter errors.
9918
9919 1999-03-04 Eli Zaretskii <eliz@gnu.org>
9920
9921 * ls-lisp.el (ls-lisp-insert-directory): Protect the sum total of
9922 the file sizes from overflowing.
9923 (ls-lisp-format): If file size is a float, use %8.0f to print it.
9924 Under -s, print the size in blocks with %4.0f, in case they have
9925 a *really* huge file.
9926
9927 1999-03-03 Dave Love <fx@gnu.org>
9928
9929 * options.el (edit-options): Doc fix.
9930 (list-options): Don't lose with unbound symbols. Maintain
9931 Edit-options-mode.
9932
9933 1999-03-01 Dave Love <fx@gnu.org>
9934
9935 * mail/supercite.el (sc-attrib-selection-list): Fix custom type.
9936
9937 1999-02-28 Richard M. Stallman <rms@gnu.org>
9938
9939 * ispell.el (ispell-dictionary-alist-override): New variable.
9940 (ispell-dictionary-alist): Don't setq it,
9941 if ispell-dictionary-alist-override is set.
9942
9943 * simple.el (shell-command-default-error-buffer): Renamed from
9944 shell-command-on-region-default-error-buffer.
9945 (shell-command-on-region): Mention in echo area when there
9946 is some error output. Mention success or failure, too.
9947 Accumulate multiple error outputs
9948 going forward, with formfeed in between. Display the error buffer
9949 when we have put something in it.
9950 (shell-command): Add the ERROR-BUFFER argument feature.
9951
9952 1999-02-28 Karl Heuer <kwzh@gnu.org>
9953
9954 * mail/mh-utils.el (mh-lib): Doc fix.
9955 (mh-lib-progs, mh-nmh-p): New vars.
9956 (mh-find-progs): Set mh-lib-progs along with other vars.
9957 (mh-path-search): New arg FUNC-P; if specified, use that instead
9958 of mh-file-command-p.
9959 (mh-install, mh-exec-lib-cmd-output): Use mh-lib-progs.
9960
9961 * mail/mh-comp.el (mh-repl-formfile): New var.
9962 (mh-smail-batch): Don't ignore all arguments.
9963 (mh-reply): Do the right thing when using nmh.
9964
9965 1999-02-27 Kenichi Handa <handa@etl.go.jp>
9966
9967 * international/mule-cmds.el (select-safe-coding-system): Be sure
9968 to show a buffer being decoded.
9969
9970 1999-02-26 Ken'ichi Handa <handa@gnu.org>
9971
9972 * ps-bdf.el (bdf-directory-list): Initialize it to
9973 '("/usr/local/share/emacs/fonts/bdf").
9974
9975 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9976
9977 * ps-print.el: PostScript programming fix.
9978 (ps-print-prologue-1): Fix BeginDoc PostScript procedure (don't use
9979 setpagedevice operator).
9980
9981 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9982
9983 * ps-print.el: Doc fix, font size specifies landscape and portrait
9984 sizes.
9985 (ps-print-version): New version number (4.1.4).
9986 (ps-font-size, ps-header-font-size, ps-header-title-font-size):
9987 Specifies landscape and portrait sizes.
9988 (ps-setup, ps-print-quote, ps-line-lengths-internal, ps-nb-pages)
9989 (ps-get-page-dimensions, ps-begin-file, ps-begin-job, ps-generate): Fun
9990 fix.
9991 (ps-get-font-size): New fun.
9992 (ps-font-size-internal, ps-header-font-size-internal)
9993 (ps-header-title-font-size-internal): New vars.
9994
9995 * ps-mule.el: Change of ps-print font size variable name.
9996 (ps-mule-generate-font): Fun fix.
9997 (ps-mule-begin-job): Programming uniformization.
9998
9999 1999-02-25 Dave Love <fx@gnu.org>
10000
10001 * help.el (help-xref-info-regexp): Allow linebreaks and capital.
10002 (help-make-xrefs): Do Info case first.
10003
10004 * repeat.el: Don't require advice.
10005 (repeat-last-kill-command): Variable deleted.
10006
10007 1999-02-25 Richard Stallman <rms@gnu.org>
10008
10009 * simple.el (shell-command-on-region): Don't go into the REPLACE = t
10010 case just because the current buffer is the output buffer.
10011
10012 1999-02-25 Kenichi Handa <handa@etl.go.jp>
10013
10014 * simple.el (what-cursor-position): To show the character's
10015 encoding, use encoded-string-description instead of information
10016 of chaset-origin-alist.
10017
10018 * international/mule-cmds.el (iso-2022-control-alist): New variable.
10019 (encoded-code-description): New function.
10020 (encoded-string-description): New function.
10021 (encode-coding-char): New function.
10022
10023 1999-02-25 Andrew Innes <andrewi@gnu.org>
10024
10025 * startup.el (command-line) [windows-nt]: Fix typo in regexp
10026 checking for .emacs[.el[c]].
10027
10028 1999-02-24 Richard Stallman <rms@gnu.org>
10029
10030 * help.el (describe-function-1): Don't print a whole lambda-function.
10031
10032 1999-02-23 Ken'ichi Handa <handa@gnu.org>
10033
10034 * international/encoded-kb.el (encoded-kbd-handle-8bit): Allow
10035 inputting ?\240.
10036
10037 1999-02-23 Karl Heuer <kwzh@gnu.org>
10038
10039 * term/vt100.el (vt100-wide-mode): Use defvar, not defconst.
10040
10041 * midnight.el (clean-buffer-list-kill-regexps): Doc fix.
10042 (clean-buffer-list-kill-buffer-names): Doc fix.
10043
10044 * gud.el (gud-jdb-massage-args): Spelling fix.
10045
10046 1999-02-23 Richard M. Stallman <rms@gnu.org>
10047
10048 * subr.el (with-temp-message): Use %s so % in old msg won't fool us.
10049
10050 1999-02-22 Eli Zaretskii <eliz@gnu.org>
10051
10052 * arc-mode.el (archive-set-buffer-as-visiting-file): Save
10053 excursion while calling set-auto-coding-function.
10054
10055 * play/handwrite.el (handwrite): Require ps-print, and use
10056 ps-printer-name and ps-lpr-command. Call ps-print-region-function
10057 if it's defined, instead of forking ps-lpr-command unconditionally.
10058
10059 1999-02-22 Kenichi Handa <handa@etl.go.jp>
10060
10061 * international/codepage.el (cp-coding-system-for-codepage-1): Put
10062 charset-origin-alist property to a coding system for the codepage.
10063
10064 * international/mule.el: Modify comment for charset-origin-alist
10065 property of a coding system.
10066
10067 * simple.el (what-cursor-position): charset-origin-alist property
10068 of a coding system may be a translation table or a symbol of which
10069 `translation-table' property is a translation table.
10070
10071 1999-02-21 Richard Stallman <rms@gnu.org>
10072
10073 * textmodes/sgml-mode.el (html-tag-alist): Add /head and /body
10074 to the "html" template.
10075
10076 1999-02-21 Peter Breton <pbreton@ne.mediaone.net>
10077
10078 * dirtrack.el (dirtrack): Added docstring. Now returns input.
10079
10080 1999-02-18 Peter Breton <pbreton@ne.mediaone.net>
10081
10082 * dirtrack.el (dirtrack): Check for the prompt in the input string
10083 instead of the buffer.
10084
10085 1999-02-18 Alex Schroeder <a.schroeder@bsiag.ch>
10086
10087 * sql.el: Set version to 1.4.1. Changed mail address to
10088 alex@gnu.org. Mention the mailing list sql.el@gnu.org.
10089 (sql-input-ring-separator): Doc fix.
10090 (sql-mode-syntax-table): double-dash starts comments is defined as
10091 ". 56" instead of ". 12b" for XEmacs.
10092 (sql-stop, sql-interactive-mode): Doc fixes.
10093 (sql-postgres): Queries for database and server, not just one.
10094 (sql-set-sqli-buffer): sql-set-sqli-hook must be quoted.
10095
10096 * sql.el (sql-set-sqli-hook): A hook run when sql-buffer is
10097 changed. This is needed for master.el to work.
10098 (sql-set-sqli-buffer): Use the new hook.
10099
10100 * sql.el (sql-make-alternate-buffer-name): Function that sets
10101 sql-alternate-buffer-name.
10102 (sql-alternate-buffer-name): Possible name of SQLi buffers.
10103 (sql-interactive-mode): Set sql-alternate-buffer-name.
10104 (sql-rename-buffer): New command.
10105 (sql-interactive-mode-menu): Menu for SQLi buffers.
10106
10107 * sql.el (sql-interactive-mode): Doc fix. sql-input-ring-separator
10108 and sql-input-ring-file-name are used to temporarily set
10109 comint-input-ring-file-name and comint-input-ring-separator when
10110 reading and writing input history files.
10111
10112 (sql-stop): Use sql-input-ring-separator and sql-input-ring-file-name.
10113 (sql-input-ring-file-name): New variable with customization.
10114 (sql-input-ring-separator): New variable with customization.
10115 (sql-set-sqli-buffer): Renamed from sql-change-sqli-buffer.
10116 Callers changed.
10117 (sql-show-sqli-buffer): The message for "sql-buffer is not set"
10118 now includes the name of the current buffer.
10119
10120 (sql-mode): Set paragraph-separate and paragraph-start so that
10121 sql-send-paragraph sends the entire SQL statements, even if it
10122 contains indented lines.
10123
10124 1999-02-18 Dave Love <fx@gnu.org>
10125
10126 * format.el (format-encode-run-method, format-decode-run-method):
10127 Fix previous change.
10128
10129 1999-02-18 Ken'ichi Handa <handa@gnu.org>
10130
10131 * international/mule.el (coding-system-list): Moved here from
10132 mule-util.el to avoid autoloading mule-util by the call of
10133 select-safe-coding-system.
10134
10135 1999-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
10136
10137 * simple.el (turn-on-auto-fill): Mark it as an option for
10138 `text-mode-hook'.
10139
10140 1999-02-17 Richard Stallman <rms@gnu.org>
10141
10142 * emacs-lisp/easymenu.el (easy-menu-get-map):
10143 Don't crash if (current-local-map) is nil.
10144
10145 1999-02-17 Peter Breton <pbreton@ne.mediaone.net>
10146
10147 * filecache.el (file-cache-filter-regexps): Added .class.
10148
10149 1999-02-17 Ken'ichi Handa <handa@gnu.org>
10150
10151 * international/mule-util.el (decompose-region): Use
10152 insert-buffer-substring instead of insert-buffer to avoid putting
10153 mark.
10154
10155 1999-02-17 Andreas Schwab <schwab@gnu.org>
10156
10157 * calendar/cal-move.el (scroll-calendar-left): Don't set
10158 displayed-month and displayed-year here, let generate-calendar do
10159 it, after range checking.
10160
10161 1999-02-17 Simon Marshall <simon@gnu.org>
10162
10163 * progmodes/cc-engine.el (c-at-toplevel-p): New function.
10164
10165 * font-lock.el (c++-font-lock-keywords-3): Use it to distinguish
10166 correctly between an object declared via a constructor and a method.
10167 (font-lock-defaults-alist): Don't give `.' word syntax for Java.
10168 (java-font-lock-keywords-1): Fontify package names individually.
10169 (java-font-lock-extra-types): Ensure regexp matches capitalised only.
10170 (java-font-lock-keywords-2): Simplify type fontification.
10171 (java-font-lock-keywords-3): Likewise.
10172
10173 1999-02-17 Kenichi Handa <handa@etl.go.jp>
10174
10175 * language/japanese.el (iso-2022-jp-2): New coding system.
10176 ("Japanese"): Put iso-2022-jp-2 in coding-priority property.
10177
10178 1999-02-16 Dave Love <fx@gnu.org>
10179
10180 * help.el (describe-function-1): Accept non-symbols.
10181
10182 1999-02-16 Paul Eggert <eggert@twinsun.com>
10183
10184 * dired.el (dired-move-to-filename-regexp): Prepend .* so that we
10185 find the last match if there are multiple matches.
10186
10187 1999-02-16 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10188
10189 * tex-mode.el (tex-run-command, latex-run-command)
10190 (slitex-run-command, tex-command): Doc changes.
10191 (tex-start-options-string): Autoload it. Doc change. Provide
10192 a menu for customization. Allow nil. Quote backslashes only once.
10193 (tex-start-tex): Handle nil value of tex-start-options-string
10194 and apply shell-quote-argument to it.
10195
10196 1999-02-16 Eli Zaretskii <eliz@gnu.org>
10197
10198 * ls-lisp.el (ls-lisp-insert-directory): Call fceiling to round
10199 the size in blocks, since it can be a float.
10200 (ls-lisp-format): Likewise
10201
10202 1999-02-16 Ken'ichi Handa <handa@gnu.org>
10203
10204 * language/japanese.el (japanese-shift-jis): Add
10205 charset-origin-alist property.
10206
10207 1999-02-15 Richard Stallman <rms@gnu.org>
10208
10209 * progmodes/compile.el (compile-internal): Use save-selected-window.
10210
10211 * subr.el (momentary-string-display): Bind inhibit-read-only.
10212
10213 * speedbar.el (speedbar-item-info-tag-helper): Scan the whole line.
10214
10215 1999-02-15 Eli Zaretskii <eliz@is.elta.co.il>
10216
10217 * mail/rmail.el (rmail-show-message): If an unseen message has a
10218 Summary-line in its header, get past one more line before looking
10219 for the X-Coding-System header.
10220
10221 1999-02-15 Geoff Voelker <voelker@cs.washington.edu>
10222
10223 * makefile.nt (INSTALL): Copy the handful of uncompiled lisp files
10224 explicitly to accomodate Windows 9X lack of a useful copy program.
10225
10226 1999-02-15 Per Abrahamsen <abraham@dina.kvl.dk>
10227
10228 * wid-edit.el (widget-choice-value-create): Use `equal'
10229 instead of `eq'.
10230
10231 1999-02-14 Richard Stallman <rms@gnu.org>
10232
10233 * international/iso-transl.el:
10234 (iso-transl-ae): Renamed from iso-transl-e-slash.
10235 (iso-transl-a-ring): Renamed from iso-transl-a-slash.
10236 (iso-transl-AE): Renamed from iso-transl-E-slash.
10237 (iso-transl-A-ring): Renamed from iso-transl-A-slash.
10238 (iso-transl-char-map): Related changes.
10239
10240 * format.el (format-replace-strings): Fix value of TO in REVERSE case.
10241
10242 1999-02-13 Richard Stallman <rms@gnu.org>
10243
10244 * textmodes/texinfmt.el (texinfo-alias): New function.
10245 (texinfo-fold-nodename-case): Add defvar.
10246 (texinfo-format-node): Do case folding if specified.
10247
10248 * ffap.el (ffap-file-at-point): Test local file names
10249 immediately. Strip off line numbers.
10250
10251 1999-02-12 Alex Schroeder <a.schroeder@bsiag.ch>
10252
10253 * sql.el: Set version to 1.3.2
10254 (sql-solid-program): Added support for solid.
10255 (sql-help): Doc mentions sql-solid.
10256 (sql-solid): Entry function for Solid.
10257 (sql-buffer): Doc explains the use of the variable and how to
10258 change it.
10259 (sql-mode-menu): Included entries for sql-show-sqli-buffer and
10260 sql-change-sqli-buffer; sql-send-region and sql-send-buffer are
10261 disabled if sql-buffer doesn't have a process; sql-send-paragraph
10262 is new.
10263 (sql-show-sqli-buffer): New function to display the value of
10264 sql-buffer.
10265 (sql-change-sqli-buffer): New function to change sql-buffer.
10266 (sql-mode): Doc explains how to change sql-buffer.
10267 (sql-send-paragraph): New function to send a paragraph.
10268 (sql-mode-map): Added keybinding for sql-send-paragraph.
10269 (sql-mysql): Doc corrected.
10270 (sql-ms): Doc corrected.
10271
10272 * sql.el (sql-server): Doc fix.
10273 (sql-mysql): Added the use of sql-server to specify the host,
10274 sql-database now specifies database instead of host.
10275 (sql-mode-menu): Send... menu items are only active if sql-buffer
10276 is non-nil.
10277 (sql-help): Changed tag of entry functions a bit.
10278
10279 * sql.el: Added keywords from `finder-by-keyword'.
10280 (sql-mode): Made sql-buffer a local variable, changed the
10281 documentation: removed instructions to add *.sql files to
10282 auto-mode-alist, added documentation for having mutliple SQL
10283 buffers sending their stuff to different SQLi buffers, each
10284 running a different process.
10285 (sql-postgres): Quoted *SQL* in doc string.
10286 (sql-ms): Likewise.
10287 (sql-ingres): Likewise.
10288 (sql-ingres): Quoted *SQL* in doc string, added references to
10289 sql-user and sql-password used during login.
10290 (sql-sybase): Quoted *SQL* in doc string, added comma.
10291 (sql-oracle): Likewise.
10292 (sql-interactive-mode): Added extensive documentation for having
10293 mutliple SQL buffers sending their stuff to different SQLi
10294 buffers, each running a different process.
10295 (sql-buffer): Changed doc from *SQL* to SQLi.
10296 (sql-get-login): Doc fix.
10297
10298 1999-02-12 Ken'ichi Handa <handa@gnu.org>
10299
10300 * international/mule-conf.el (undecided): Set ascii in
10301 safe-charsets property.
10302
10303 1999-02-12 Richard Stallman <rms@gnu.org>
10304
10305 * textmodes/paragraphs.el (paragraph-separate): Doc fix.
10306
10307 1999-02-12 Ken'ichi Handa <handa@gnu.org>
10308
10309 * ps-mule.el (ps-mule-font-info-database-default): Set the initial
10310 value to ps-mule-font-info-database-latin.
10311
10312 1999-02-13 Kenichi HANDA <handa@etl.go.jp>
10313
10314 * ps-mule.el (ps-multibyte-buffer): Doc-string modified.
10315 (ps-mule-font-info-database-default): New variable.
10316 (ps-mule-begin-job): If ps-multibyte-buffer is nil, use
10317 ps-mule-font-info-database-default.
10318
10319 1999-02-12 Dave Love <fx@gnu.org>
10320
10321 * timezone.el (timezone-make-date-sortable)
10322 (timezone-make-date-arpa-standard): Doc fix.
10323
10324 1999-02-12 Ken'ichi Handa <handa@gnu.org>
10325
10326 * international/quail.el (quail-show-kbd-layout): Bind
10327 blink-matching-paren to nil.
10328
10329 * ps-mule.el (ps-mule-font-info-database-bdf): Fix ENCODING field
10330 for ASCII and Latin-1.
10331
10332 1999-02-12 Andreas Schwab <schwab@gnu.org>
10333
10334 * gud.el (jdb): Fix regexp for comint-prompt-regexp.
10335
10336 1999-02-12 Kenichi Handa <handa@etl.go.jp>
10337
10338 * international/mule-cmds.el (language-info-alist): Remove
10339 description about charset-origin-alist.
10340
10341 * international/mule.el: Comment added for a new coding system
10342 property `charset-origin-alit'.
10343 (make-translation-table): This variable deleted.
10344
10345 * language/chinese.el (chinese-big5): Add charset-origin-alist
10346 property.
10347 ("Chinese-CNS"): Remove charset-origin-alist property.
10348
10349 * language/cyrillic.el (cyrillic-koi8): Add charset-origin-alist
10350 property.
10351 (cyrillic-alternativnyj): Likewise.
10352 ("Cyrillic-KOI8"): Remove charset-origin-alist property.
10353 ("Cyrillic-ALT"): Likewise.
10354
10355 * language/vietnamese.el (vietnamese-viqr): Add
10356 charset-origin-alist property.
10357 ("Vietnamese"): Remove charset-origin-alist property.
10358
10359 * simple.el (what-cursor-position): Don't use the varialbe
10360 charset-origin-alist, but use charset-origin-alist property of
10361 buffer-file-coding-system to decide external character set code.
10362
10363 1999-02-10 Richard Stallman <rms@gnu.org>
10364
10365 * shadowfile.el: Don't turn on the mode when the file is loaded.
10366
10367 1999-02-09 Richard Stallman <rms@gnu.org>
10368
10369 * progmodes/compile.el (compile-auto-highlight): Customize.
10370
10371 * add-log.el (add-log-file-name-function): New variable.
10372 (add-change-log-entry): Call that function, if non-nil.
10373
10374 1999-02-09 Michael Ernst <mernst@alum.mit.edu>
10375
10376 * rmail.el (rmail-search): Track match with a marker, not an integer.
10377
10378 1999-02-08 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10379
10380 * progmodes/compile.el (compilation-setup): Set value of
10381 compilation-directory-stack as in compilation-forget-errors.
10382 (compile-reinitialize-errors): Bind buffer-undo-list and
10383 deactivate-mark.
10384 (compilation-forget-errors): Likewise.
10385
10386 1999-02-08 Jim Blandy <jimb@savonarola.red-bean.com>
10387
10388 * textmodes/texinfo.el (texinfo-environment-regexp): Add the
10389 def... constructs.
10390
10391 * texnfo-upd.el (texinfo-all-menus-update, texinfo-master-menu):
10392 Remove calls to sleep-for.
10393
10394 1999-02-08 Eli Zaretskii <eliz@gnu.org>
10395
10396 * international/codepage.el (cp-coding-system-for-codepage-1): On
10397 MS-DOS, use dos-unsupported-char-glyph for characters not
10398 supported by the codepage.
10399 (cp-make-coding-systems-for-codepage): Likewise.
10400
10401 1999-02-08 Andreas Schwab <schwab@gnu.org>
10402
10403 * international/mule-util.el (coding-system-list): Don't sort
10404 coding-system-list here.
10405
10406 * international/mule.el (coding-system-lessp): Moved here from
10407 mule-util.el
10408 (add-to-coding-system-list): New function.
10409 (make-subsidiary-coding-system, make-coding-system,
10410 define-coding-system-alias): Use it instead of setting
10411 coding-system-list directly.
10412
10413 1999-02-07 Dave Love <fx@gnu.org>
10414
10415 * calendar/appt.el (appt-make-list): Don't splice quotes and date
10416 onto message.
10417
10418 1999-02-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10419
10420 * imenu.el (imenu--last-menubar-index-alist): Add doc.
10421 (imenu-add-to-menubar): Reset imenu--last-menubar-index-alist.
10422
10423 1999-02-06 Richard Stallman <rms@gnu.org>
10424
10425 * language/european.el (setup-slovenian-environment): New function.
10426 ("Slovenian"): New language environment.
10427
10428 * progmodes/sql.el (sql-help): Doc fix.
10429 (sql-mysql): Doc fix.
10430
10431 1999-02-05 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10432
10433 * tex-mode.el: When compiling, require compare-w and skeleton
10434 to pacify the byte-compiler. Move the def's of the tex-commands
10435 together. Add a comment on kill-process vs. quit-process.
10436
10437 1999-02-05 Dave Love <fx@gnu.org>
10438
10439 * progmodes/compile.el (compile-mouse-goto-error): Don't lose with
10440 null markers.
10441 (compile-goto-error): Likewise.
10442
10443 1999-02-05 Stephen Gildea <gildea@alum.mit.edu>
10444
10445 * time-stamp.el (time-stamp-format): Format doc tighter.
10446 (time-stamp-line-limit): 0 searches the entire buffer (careful!).
10447 (time-stamp): Don't re-write the time stamp if it didn't change.
10448
10449 1999-02-05 Alex Schroeder <asc@bsiag.com>
10450
10451 * progmodes/sql.el: Changed version to 1.2.1.
10452 (sql-pop-to-buffer-after-send-region): Improved documentation.
10453 (sql-mysql-program): Added MySQL support.
10454 (sql-prompt-length): Made prompt-length configurable.
10455 (sql-mode-syntax-table): Made apostrophe (') be a string delimiter.
10456 (sql-help): Added MySQL support, changed documentation.
10457 (sql-send-region): A message is displayed if something is sent.
10458 (sql-mode): Added buffer-local comment-start.
10459 (sql-interactive-mode): Use sql-prompt-length to set left-margin.
10460 (sql-interactive-mode): Added buffer-local comment-start.
10461 (sql-oracle): Set sql-prompt-length.
10462 (sql-sybase): Set sql-prompt-length.
10463 (sql-mysql): Added MySQL support.
10464 (sql-ingres): Set sql-prompt-length.
10465 (sql-ms): Set sql-prompt-length.
10466 (sql-postgres): Set sql-prompt-length.
10467
10468 1999-02-04 Eli Zaretskii <eliz@gnu.org>
10469
10470 * term/internal.el (dos-codepage-setup): Set selection coding
10471 system to cpNNN-dos.
10472
10473 1999-02-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10474
10475 * international/characters.el: Let ethiopic use iso-2022-7bit.
10476
10477 1999-02-02 Dave Love <fx@gnu.org>
10478
10479 * progmodes/fortran.el (mark-fortran-subprogram): Activate mark here...
10480 (fortran-narrow-to-subprogram, fortran-indent-subprogram): ...not here.
10481
10482 1999-02-02 Karl Heuer <kwzh@gnu.org>
10483
10484 * terminal.el (terminal-emulator): Doc fix.
10485
10486 1999-02-02 Ken'ichi Handa <handa@gnu.org>
10487
10488 * international/mule-util.el (compose-chars): Doc-string
10489 modified. Correctly handle a composition character in ARGS.
10490
10491 1999-02-01 Richard Stallman <rms@gnu.org>
10492
10493 * progmodes/make-mode.el (makefile-imenu-generic-expression): New var.
10494 (makefile-menu-index-function): Function deleted.
10495 (makefile-mode): Use makefile-imenu-generic-expression.
10496
10497 1999-02-01 Geoff Voelker <voelker@cs.washington.edu>
10498
10499 * term/w32-win.el (w32-create-initial-fontsets): Back out previous
10500 change, invoke from before-init-hook.
10501
10502 1999-02-01 Dan Nicolaescu <done@ece.arizona.edu>
10503
10504 * subr.el (remove-from-invisibility-spec): Cope with the case when
10505 buffer-invisibility-spec is t.
10506
10507 1999-02-01 Ed Reingold <reingold@cs.uiuc.edu>
10508
10509 * calendar/calendar.el (calendar-mode-map): Fix bindings for
10510 appt-add and appt-delete.
10511
10512 1999-02-01 Eli Zaretskii <eliz@gnu.org>
10513
10514 * term/pc-win.el (msdos-approximate-color): New function.
10515 (msdos-color-translate): Call it to find a DOS color that best
10516 approximates an X-style "#NNNNNN" color specification.
10517
10518 1999-02-01 Ken'ichi Handa <handa@gnu.org>
10519
10520 * international/mule-util.el (compose-chars-component): Add
10521 autoload cookie.
10522
10523 1999-01-31 Ken'ichi Handa <handa@gnu.org>
10524
10525 * international/quail.el (quail-lookup-key): If cdr of MAP is a
10526 function, replace cdr of MAP by the return value of the function
10527 unconditionally.
10528
10529 1999-01-31 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10530
10531 * progmodes/compile.el (compilation-next-error-locus): Don't
10532 decrease argument FIND-AT-LEAST of compilation-next-error-locus.
10533
10534 1999-01-31 Eli Zaretskii <eliz@gnu.org>
10535
10536 * mail/rmail.el (rmail-mime-charset-pattern): Add optional TABs
10537 and NLs before "charset", and allow the charset name be in double
10538 quotes.
10539
10540 1999-01-31 Richard Stallman <rms@gnu.org>
10541
10542 * imenu.el (imenu-sort-function): Fix custom type.
10543
10544 1999-01-30 Richard Stallman <rms@gnu.org>
10545
10546 * speedbar.el (speedbar-line-token): Match {...} instead of [...].
10547 (speedbar-line-token): Likewise.
10548
10549 * play/gametree.el (gametree-default-score): Use defcustom.
10550 (gametree-score-regexp, gametree-score-closer): Likewise.
10551 (gametree-score-manual-flag, gametree-score-opener): Likewise.
10552
10553 1999-01-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10554
10555 * mail/rmail.el (rmail-decode-babyl-format): Avoid locking when
10556 decoding.
10557
10558 1999-01-29 Markus Rost <rost@gnu.org>
10559
10560 * tex-mode.el (tex-mode-map): Replace validate-tex-buffer by
10561 tex-validate-buffer.
10562 (plain-tex-mode, latex-mode, slitex-mode): Likewise.
10563 (tex-validate-buffer): Renamed from validate-tex-buffer. Works
10564 now with recent occur-mode.
10565 (tex-validate-region): Really walk through all Sexps.
10566 (tex-region): Bind shell-dirtrack-verbose.
10567 (tex-file, tex-bibtex-file): Likewise.
10568
10569 1999-01-29 Dave Love <fx@gnu.org>
10570
10571 * finder.el: (finder-commentary): Fix interactive spec. Try
10572 appending .el to file name.
10573 (finder-find-library, finder-commentary): Doc fixes.
10574
10575 1999-01-29 Andrew Innes <andrewi@gnu.org>
10576
10577 * mail/rmail.el (rmail-insert-inbox-text): Handle POP mailboxes
10578 where the userid contains directory separators.
10579
10580 1999-01-29 Dave Love <fx@gnu.org>
10581
10582 * emacs-lisp/lisp-mnt.el (lm-verify): Fix arg list.
10583 (lm-commentary): Doc fix.
10584
10585 1999-01-29 Andreas Schwab <schwab@gnu.org>
10586
10587 * files.el (file-expand-wildcards): Never consider `.' and `..' a
10588 wildcard match. Fix regexp that tests if dirpart contains
10589 wildcard characters.
10590
10591 1999-01-28 Richard Stallman <rms@gnu.org>
10592
10593 * font-lock.el (font-lock-default-unfontify-region):
10594 If not font-lock-syntactic-keywords, don't remove syntax-table prop.
10595
10596 1999-01-27 Jason Rumney <jasonr@altavista.net>
10597
10598 * term/w32-win.el (w32-standard-fontset-spec): Remove wildcard
10599 from FAMILY field.
10600 (w32-create-initial-fontsets): Do not use before-init-hook.
10601 (mouse-set-font): Document. Automatically create and use fontsets.
10602
10603 * dos-w32.el (direct-print-region-helper): Check for printer
10604 being t as well as a string.
10605
10606 1999-01-27 Kenichi Handa <handa@etl.go.jp>
10607
10608 * mail/rmail.el (rmail-decode-mime-charset): New variable.
10609 (rmail-mime-charset-pattern): New variable.
10610 (rmail-convert-to-babyl-format): Decode by MIME-charset if
10611 rmail-decode-mime-charset is non-nil.
10612
10613 1999-01-27 Ken'ichi Handa <handa@gnu.org>
10614
10615 * international/characters.el: Set category `q' for all characters
10616 in tibetan and tibetan-1-column.
10617
10618 1999-01-27 Andrew Innes <andrewi@gnu.org>
10619
10620 * frame.el (select-frame-by-name): Obey focus-follows-mouse.
10621 (select-frame-by-name) [windows-nt]: Use w32-focus-frame.
10622
10623 1999-01-27 Dave Love <fx@gnu.org>
10624
10625 * international/mule-cmds.el (current-language-environment):
10626 Provide :link, :type (choices) and appropriate :get.
10627
10628 1999-01-27 Eli Zaretskii <eliz@gnu.org>
10629
10630 * startup.el (command-line): Set default eol-mnemonic-* strings to
10631 display end-of-line format in mode line.
10632
10633 * cus-start.el (all): Add eol-mnemonic-* variables.
10634
10635 1999-01-26 Dave Love <fx@gnu.org>
10636
10637 * startup.el (command-line-1): Up-date copyright.
10638
10639 * paths.el (Info-default-directory-list): Use configdir twice.
10640
10641 * info.el (Info-directory-list): Don't set path-separator now
10642 we're not shipped with Texinfo. Simplify path definition.
10643 Substitute all occurrences of instdir in Info-default-directory-list.
10644
10645 1999-01-25 Richard Stallman <rms@gnu.org>
10646
10647 * startup.el (normal-top-level-add-subdirs-to-load-path):
10648 Record the inode numbers of the dirs processed, to avoid loop.
10649
10650 * textmodes/tex-mode.el (tex-run-command): Doc fix.
10651
10652 1999-01-25 Dave Love <fx@gnu.org>
10653
10654 * browse-url.el (browse-url-netscape-program): Doc addition.
10655
10656 * help.el (help-make-xrefs): Default info references to an `(emacs)'
10657 prefix.
10658
10659 * snmp-mode.el (snmpv2-mode, snmpv-mode): Add autoload cookies -- see
10660 auto-mode-alist.
10661
10662 1999-01-25 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10663
10664 * calendar/diary-lib.el (mark-diary-entries): Use
10665 assoc-ignore-case and do not capitalize when matching month and
10666 day names.
10667
10668 * calendar/calendar.el (calendar-read-date): Ditto.
10669
10670 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
10671 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
10672
10673 * calendar/cal-coptic.el (coptic-prompt-for-date): Ditto.
10674
10675 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
10676
10677 * calendar/cal-islam.el (calendar-goto-islamic-date)
10678 (mark-islamic-diary-entries): Ditto.
10679
10680 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
10681
10682 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
10683 (calendar-read-mayan-tzolkin-date): Ditto.
10684
10685 * calendar/cal-persia.el (persian-prompt-for-date): Ditto.
10686
10687 1999-01-22 Michael Ernst <mernst@alum.mit.edu>
10688
10689 * texnfo-upd.el (texinfo-make-menu): Make region-end a marker.
10690
10691 1999-01-25 Karl Heuer <kwzh@gnu.org>
10692
10693 * faces.el (list-faces-display): Multiline case of previous fix.
10694
10695 1999-01-25 Andreas Schwab <schwab@gnu.org>
10696
10697 * mail/mailalias.el (mail-complete-alist): Use alist as customize type.
10698
10699 1999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu>
10700
10701 * files.el (find-file): If find-file-noselect returns a list,
10702 do switch-to-buffer on each element.
10703 (find-file-other-window): Likewise for all but the first element.
10704 (find-file-other-frame): Same.
10705 (find-file-noselect): When we expand a wildcard, return a list
10706 of buffers.
10707
10708 1999-01-24 Eli Zaretskii <eliz@gnu.org>
10709
10710 * term/internal.el (dos-codepage-setup): Call prefer-coding-system
10711 to set the appropriate cpNNN-dos coding system as the
10712 highest-priority coding system.
10713
10714 1999-01-23 Ken'ichi Handa <handa@gnu.org>
10715
10716 * international/fontset.el (generate-fontset-menu): Return a
10717 sorted list by plain names of fontsets.
10718
10719 * international/mule-diag.el (list-fontsets): Sort fontsets by
10720 plain names.
10721
10722 * language/tibet-util.el (tibetan-vertical-stacking): If the arg
10723 FIRST is a composite character, decompose it at first.
10724
10725 1999-01-23 Dave Love <fx@gnu.org>
10726
10727 * format.el: Doc fixes.
10728 (format-encode-run-method): Have things happen in the right buffer.
10729 Deal with errors from method. Set coding-system-for-write.
10730 (format-decode-run-method): Have things happen in the right buffer.
10731 Deal with errors from method. Set coding-system-for-read.
10732 (format-alist): Use nil instead of unmatchable regexps.
10733
10734 * simple.el (shell-command-on-region): Return command's exit status.
10735
10736 1999-01-23 Eric Ludlam <zappo@gnu.org>
10737
10738 * speedbar.el (speedbar-item-info-file-helper): Add optional arg
10739 of the file whose info we want to display.
10740 (speedbar-easymenu-definition-trailer) Fix list issue w/ customize.
10741 (speedbar-add-mode-functions-list) Improve doc.
10742 (speedbar-line-token) New function.
10743 (speedbar-dired) Fix order of directories in -shown-directories.
10744 (speedbar-line-path): Default return is default-directory
10745 (speedbar-buffers-line-path): Return is dir name only.
10746 (speedbar-mode-functions-list): New variable.
10747 (speedbar-mouse-item-info): Rewrote to be a replaceable fn.
10748 (speedbar-item-info-file-helper, speedbar-item-info-tag-helper
10749 speedbar-files-item-info speedbar-buffers-item-info): New functions.
10750 (speedbar-fetch-replacement-function,speedbar-add-mode-functions-list):
10751 New functions.
10752 (speedbar-line-file): Broke out part that fetches file from a line.
10753 (speedbar-line-text): New function extracted from speedbar-line-file.
10754 (speedbar-line-path): Converted into a replaceable function.
10755 (speedbar-files-line-path, speedbar-buffers-line-path): New functions.
10756
10757 1999-01-23 Ken'ichi Handa <handa@gnu.org>
10758
10759 * international/fontset.el (create-fontset-from-x-resource): Make
10760 style variants.
10761
10762 1999-01-22 Dave Love <fx@gnu.org>
10763
10764 * paths.el (Info-default-directory-list): Put sysdir after start.
10765
10766 1999-01-22 Sam Steingold <sds@goems.com>
10767
10768 * midnight.el (clean-buffer-list): Do not kill a buffer if it has
10769 a process associated with it.
10770
10771 1999-01-22 Jason Rumney <jasonr@altavista.net>
10772
10773 * term/w32-win.el (w32-standard-fontset-spec): Simplified.
10774
10775 1999-01-22 Felix Lee <flee@cygnus.com>
10776
10777 * vc.el (vc-annotate-display): Delete old overlays. Fix check for
10778 major-mode.
10779 (vc-annotate-mode): Delete variable.
10780
10781 1999-01-22 Andrew Innes <andrewi@gnu.org>
10782
10783 * startup.el (command-line): [windows-nt]: Check for existence of
10784 .emacs file so as to notice .emacs.el or .emacs.elc and use them
10785 in preference to _emacs.
10786
10787 1999-01-22 Dave Love <fx@gnu.org>
10788
10789 * textmodes/texinfo.el (texinfo-font-lock-keywords): Match @ref.
10790
10791 1999-01-20 Richard Stallman <rms@gnu.org>
10792
10793 * files.el (find-file-noselect): Do wildcard processing only
10794 if new arg WILDCARDS is non-nil.
10795 (find-file, find-file-other-window): New arg WILDCARDS.
10796 Default it to non-nil if interactive.
10797 (find-file-other-frame): Likewise.
10798 (find-file-read-only): Likewise.
10799 (find-file-read-only-other-window): Likewise.
10800 (find-file-read-only-other-frame): Likewise.
10801
10802 * wid-edit.el (widget-alist-convert-option): Delete spurious comma.
10803 (widget-plist-convert-option): Delete spurious comma.
10804
10805 1999-01-19 Jason Rumney <jasonr@altavista.net>
10806
10807 * term/w32-win.el (w32-standard-fontspec-spec): Change
10808 iso8859-5 to koi8-r. Add iso8859-9.
10809
10810 1999-01-19 Dave Love <fx@gnu.org>
10811
10812 * browse-url.el (browse-url-maybe-new-window): Delete macro and
10813 its uses.
10814
10815 * progmodes/fortran.el (fortran-narrow-to-subprogram): Ensure mark
10816 is active.
10817 (fortran-indent-subprogram): Likewise.
10818
10819 1999-01-19 Dave Love <d.love@dl.ac.uk>
10820
10821 * paths.el (Info-default-directory-list): Perhaps add /usr/info.
10822
10823 1999-01-19 Richard Stallman <rms@psilocin.ai.mit.edu>
10824
10825 * wid-edit.el (alist): Use sexp as default key-type.
10826
10827 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10828
10829 * textmodes/tex-mode.el (tex-define-common-keys):
10830 Remove key binding of tex-feed-input.
10831 (tex-mode-map): Bind tex-feed-input here.
10832 (tex-start-shell): Use compilation-shell-minor-mode. Set
10833 comint-input-filter-functions before running tex-shell-hook.
10834 (tex-start-tex): Forget compilation errors.
10835 (tex-compilation-parse-errors): Rewritten to work also with
10836 compile-mouse-goto-error and compile-goto-error. Adjusted to
10837 change in tex-region.
10838 (tex-region): For the temp file use file-name without directory.
10839 (tex-file): Expand file name of tex-print-file.
10840
10841 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10842
10843 * emacs-lisp/edebug.el (with-temp-message): Add def-edebug-spec call.
10844
10845 1999-01-18 Espen Skoglund <espensk@stud.cs.uit.no>
10846
10847 * progmodes/pascal.el (pascal-calculate-indent): Code with an invalid
10848 beginning could cause Emacs to hang. Fixed.
10849
10850 1999-01-18 Ken'ichi Handa <handa@gnu.org>
10851
10852 * international/ccl.el (ccl-compile-translate-character): Handle
10853 the case that a tranlation table is CCL register correctly.
10854
10855 * international/mule-cmds.el (select-safe-coding-system):
10856 Hightlight at most 256 characters.
10857
10858 1999-01-18 Dave Love <fx@gnu.org>
10859
10860 * startup.el (command-line): If the init file changes operation to
10861 unibyte, make all buffers unibyte and re-set language environment.
10862
10863 * disp-table.el (standard-display-european): Make all existing
10864 buffers unibyte. Fix doc.
10865
10866 1999-01-17 Richard Stallman <rms@psilocin.ai.mit.edu>
10867
10868 * wid-edit.el (coding-system): Define this unconditionally.
10869
10870 * simple.el (shell-command-on-region-default-error-buffer): New var.
10871 (shell-command-on-region): Use that variable as interactive
10872 value of ERROR-BUFFER argument.
10873
10874 1999-01-17 Sam Steingold <sds@goems.com>
10875
10876 * mail/rmail.el (rmail-quit): Run `rmail-quit-hook'.
10877
10878 1999-01-17 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10879
10880 * progmodes/compile.el (compilation-goto-locus): If already in the
10881 compilation buffer's window, keep it in that window.
10882 (compile-mouse-goto-error): Add Doc. Don't play with windows.
10883 (compile-goto-error): Don't play with windows.
10884
10885 * textmodes/tex-mode.el (latex-run-command): Doc fix.
10886 (tex-command): Doc fix.
10887 (tex-compilation-parse-errors): Doc fix.
10888 (tex-generate-zap-file-name): Don't start the name with -.
10889 (tex-expand-files): Works now also with strings ending with ":".
10890
10891 1999-01-17 Ian T Zimmerman <itz@transbay.net>
10892
10893 Patch failed to install:
10894 * gametree.el: Document scoring functionality.
10895 (gametree-score-regexp): Add optional plus sign.
10896 (gametree-score-opener): Replace `:' with `=' as the former
10897 conflicts with gametree-half-ply-regexp.
10898 (gametree-transpose-following-leaves): Add.
10899 (gametree-insert-new-leaf): Make modifying commands barf in read
10900 only buffers.
10901 (gametree-break-line-here): Add a call to
10902 `gametree-transpose-following-leaves'. This maintains the
10903 necessary invariant that on each level all leaf children precede
10904 all nonleaf children. This has always been implied, but left to
10905 the user, and, unfortunately, undocumented.
10906
10907 1999-01-17 Per Abrahamsen <abraham@dina.kvl.dk>
10908
10909 * wid-edit.el (plist, alist): New widget types.
10910
10911 1999-01-17 Dave Love <fx@gnu.org>
10912
10913 * progmodes/fortran.el: Tidy up font-lock-keywords definitions and
10914 fix scope of condition-case therein.
10915
10916 1999-01-17 Andrew Innes <andrewi@gnu.org>
10917
10918 * dos-w32.el: (find-buffer-file-type-coding-system): Use
10919 default-buffer-file-coding-system when file doesn't exist (and
10920 isn't covered by a special case) instead of forcing undecided-dos
10921 against the user's wishes.
10922
10923 * dos-w32.el (direct-print-region-helper): New function based on
10924 direct-print-region-function; sends data to specified printer port
10925 without further translation. Recognize and handle specially the
10926 standard `print' and `nprint' programs, as well as `lpr' and
10927 similar programs. Only write directly to the printer port if no
10928 print program is specified. Work around a bug in Windows 9x
10929 affecting Win32 version of Emacs by invoking command.com to write
10930 to the printer port instead of writing directly.
10931 (direct-print-region-function): Use direct-print-region-helper to
10932 do most of the work.
10933 (direct-ps-print-region-function): New function; analogue of
10934 direct-print-region-function for ps-print.
10935 (ps-lpr-command): Comment out setq; leave as example usage.
10936 (ps-lpr-switches): Ditto.
10937
10938 * lpr.el: (printer-name): Update docstring about usage on MS-DOS
10939 and MS-Windows.
10940 (lpr-command) [ms-dos, windows-nt]: Initialize to empty string on
10941 DOS and Windows platforms, to indicate direct printing. Update
10942 the docstring accordingly.
10943
10944 * ps-print.el: (ps-printer-name): Update docstring about usage on
10945 MS-DOS and MS-Windows.
10946 (ps-lpr-command): Update docstring as for lpr-command.
10947 (ps-print-region-function): New variable.
10948 (ps-do-despool): Use it.
10949 (ps-do-despool) [ms-dos, windows-nt]: Remove special case code for
10950 DOS/Windows.
10951
10952 * subr.el (subst-char-in-string): New function.
10953
10954 1999-01-17 Eli Zaretskii <eliz@gnu.org>
10955
10956 * international/codepage.el (cp852-decode-table): Fill a nil entry.
10957
10958 * ps-bdf.el (bdf-cache-file): Use convert-standard-filename.
10959 (bdf-find-font-info): New function, looks for the first readable
10960 file from a list of alternatives.
10961 (bdf-get-bitmaps, bdf-generate-font): Call bdf-find-font-info
10962 instead of bdf-get-font-info.
10963 (bdf-generate-glyphs): If font-name is a cons cell, pass its car
10964 to ps-mule-generate-bitmap-glyph.
10965
10966 * ps-mule.el (ps-mule-font-info-database-bdf): Add alternative
10967 file names that avoid clashes in DOS 8+3 namespace. FONT-NAME can
10968 now be a list of alternative names.
10969 (ps-mule-generate-font): If FONT-NAME is a cons cell, use its car.
10970 (ps-mule-prepare-font): Likewise.
10971
10972 * international/codepage.el (cp855-decode-table,
10973 cp850-decode-table): Fill some nil entries.
10974
10975 1999-01-16 Dave Love <fx@gnu.org>
10976
10977 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Revert
10978 last change.
10979
10980 1999-01-15 Dave Love <fx@gnu.org>
10981
10982 * help.el (help-make-xrefs): Avoid infloop in keymap substitutions
10983 and change regexp for command names.
10984 (help-xref-go-back, function-called-at-point, symbol-file)
10985 (where-is): Doc fixes.
10986 (help-xref-go-back): Remove interactive spec.
10987 (describe-function-1): Fix message for alias. Buttomize alias
10988 name.
10989
10990 * simple.el (join-line): New alias.
10991
10992 1999-01-15 Johan Vromans <jvromans@squirrel.nl>
10993
10994 * forms.el: (forms--show-record): Convert integers to string
10995 expicitly since concat will no longer accept integers.
10996 (forms-print): Use local `total-nb-records' since
10997 `forms--total-records' will be inaccessible after buffer switching.
10998
10999 1998-01-14 Felix Lee <flee@cygnus.com>
11000
11001 * textmodes/flyspell.el (make-flyspell-overlay): Fix front stickiness.
11002
11003 1999-01-14 Richard Stallman <rms@psilocin.ai.mit.edu>
11004
11005 * emacs-lisp/easymenu.el (easy-menu-get-map): Fix bugs in prev change.
11006
11007 1999-01-14 Eli Zaretskii <eliz@gnu.org>
11008
11009 * international/codepage.el (cp850-decode-table): Fix previous change.
11010
11011 1999-01-14 Simon Marshall <simon@gnu.org>
11012
11013 * shell.el (shell-dirtrack-verbose): New custom variable.
11014 (shell-dirstack-message): Use it.
11015
11016 1999-01-14 Kenichi Handa <handa@etl.go.jp>
11017
11018 * international/mule-conf.el: Coding system alias `dos' for
11019 `undecided-dos', `mac' for `undecided-mac'.
11020
11021 * international/mule-cmds.el (describe-language-environment):
11022 Don't alter input-method-alist.
11023
11024 1999-01-13 Eli Zaretskii <eliz@gnu.org>
11025
11026 * international/codepage.el (cp850-decode-table): Replace nil
11027 entries with codes of similary looking glyphs. (Suggested by
11028 Jason Rumney <jasonr@altavista.net>.)
11029
11030 1999-01-13 Dave Love <fx@gnu.org>
11031
11032 * browse-url.el (browse-url-netscape): Fix ineffective "-noraise".
11033
11034 * emacs-lisp/find-func.el (find-function-on-key): Fix previous change.
11035
11036 1999-01-12 Karl Heuer <kwzh@gnu.org>
11037
11038 * files.el (auto-save-hook): Defvar this.
11039
11040 1999-01-12 Alex Schroeder <asc@bsiag.com>
11041
11042 * progmodes/sql.el (sql-mode-ansi-font-lock-keywords): Quote font-lock
11043 faces, eliminating the need to load font-lock before loading sql.
11044 (sql-mode-oracle-font-lock-keywords): Likewise.
11045 (sql-mode-postgres-font-lock-keywords): Likewise.
11046
11047 1999-01-11 Dave Love <fx@gnu.org>
11048
11049 * cus-start.el: Add inhibit-eol-conversion.
11050
11051 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Swap
11052 the values round.
11053
11054 1999-01-11 Richard Stallman <rms@psilocin.ai.mit.edu>
11055
11056 * help.el (help-mode-finish): Renamed from help-mode-maybe.
11057 Don't switch to Help mode here.
11058 (temp-buffer-setup-hook): Use help-mode-finish.
11059 (help-mode-setup): New function.
11060 (temp-buffer-setup-hook): Use help-mode-setup.
11061
11062 * progmodes/sql.el: New file.
11063
11064 * files.el (auto-mode-alist): Add sql-mode.
11065
11066 * faces.el (list-faces-display): Improve the formatting
11067 by computing the maximum length required for any face-name.
11068
11069 1999-01-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11070
11071 * progmodes/compile.el (compilation-shell-minor-mode): New function.
11072
11073 1999-01-10 Dan Nicolaescu <dann@ics.uci.edu>
11074
11075 * term.el (term_send_home): Change the string to
11076 be the same as the one emitted by xterm and consistent with the
11077 ones emitted by prior and next.
11078 (term_send_end): Likewise.
11079
11080 1999-01-10 Dave Love <fx@gnu.org>
11081
11082 * emacs-lisp/find-func.el (find-function-on-key): DTRT for mouse
11083 bindings.
11084
11085 1999-01-10 Eli Zaretskii <eliz@gnu.org>
11086
11087 * international/codepage.el (codepage-setup): Doc fix.
11088 (cp-decoding-vector-for-codepage): Likewise.
11089
11090 1999-01-10 Markus Rost <rost@gnu.org>
11091
11092 * cus-edit.el (custom-save-delete): First scan the custom-file.
11093
11094 1999-01-08 Richard Stallman <rms@psilocin.ai.mit.edu>
11095
11096 * international/iso-transl.el: Define a "function name" for
11097 each translation that isn't ASCII. Use these function names
11098 in iso-transl-char-map.
11099
11100 1999-01-08 Kenichi Handa <handa@etl.go.jp>
11101
11102 * international/mule-util.el (decompose-region): Do decomposition
11103 on temporary unibyte buffer.
11104
11105 * international/mule.el (make-char): Doc-string modified.
11106
11107 1999-01-07 Richard Stallman <rms@psilocin.ai.mit.edu>
11108
11109 * simple.el (comment-region): Delete spaces only if we
11110 deleted a comment starter.
11111
11112 1999-01-07 Dave Love <fx@gnu.org>
11113
11114 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
11115
11116 * emacs-lisp/edebug.el (edebug-eval-defun): Deal with defcustom
11117 like eval-defun does.
11118
11119 * dired.el (dired-mode-map): Fix duplicate [menu-bar regexp mark].
11120
11121 * generic.el: Re-write `(make-variable-buffer-local (defvar ...'
11122 constructions. Doc fixes.
11123 (generic-create-generic-function): Use defalias, not fset.
11124
11125 * find-func.el: More doc fixes.
11126
11127 1999-01-06 Stephen Eglen <stephen@gnu.org>
11128
11129 * files.el (save-buffers-kill-emacs): Show the list of current
11130 processes before prompting to kill them and exit.
11131
11132 1999-01-06 Dave Love <fx@gnu.org>
11133
11134 * emacs-lisp/find-func.el: Doc fixes.
11135 (find-function-regexp): Extend for define-generic-mode,
11136 define-derived-mode, easy-mmode-define-minor-mode.
11137
11138 1999-01-06 Dave Love <fx@gnu.org>
11139
11140 * progmodes/fortran.el (fortran-window-create): Account for scroll
11141 bar width.
11142
11143 * browse-url.el: Require (noerror) w3-auto when compiling.
11144 (browse-url-maybe-new-window): Make it a macro and revert last
11145 change to callers.
11146 (browse-url-w3): Require w3 for w3-fetch-other-window.
11147
11148 1999-01-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11149
11150 * browse-url.el (browse-url-w3): Give w3-fetch-other-window the
11151 argument.
11152
11153 1999-01-06 Simon Marshall <simon@gnu.org>
11154
11155 * subr.el (with-temp-message): Don't display MESSAGE if nil. Doc fix.
11156
11157 * font-lock.el (font-lock-default-fontify-buffer): When using
11158 with-temp-message, use nil rather than current-message.
11159
11160 * lazy-lock.el (lazy-lock-unstall):
11161 (lazy-lock-fontify-after-idle): When using with-temp-message, use nil
11162 rather than current-message.
11163
11164 * fast-lock.el (fast-lock-save-cache-1):
11165 (fast-lock-cache-data): When using with-temp-message, use nil rather
11166 than current-message.
11167
11168 1999-01-06 Eli Zaretskii <eliz@gnu.org>
11169
11170 * international/codepage.el (cp-coding-system-for-codepage-1): Add
11171 the valid-codes property.
11172
11173 * international/mule-cmds.el (prefer-coding-system): Call
11174 set-coding-priority, so that the internal array of priorities is
11175 also updated.
11176
11177 * international/mule-util.el:
11178 (coding-system-change-eol-conversion,
11179 coding-system-change-text-conversion): Don't define here.
11180
11181 * international/mule-cmds.el: Define them here. Remove the
11182 autoload cookies.
11183
11184 1999-01-06 Andreas Schwab <schwab@gnu.org>
11185
11186 * emacs-lisp/debug.el (debug): Leave recursive minibuffer enabled
11187 if it was enabled before.
11188
11189 * view.el (View-revert-buffer-scroll-page-forward): Bind
11190 view-scroll-auto-exit instead of obsolete view-mode-auto-exit.
11191
11192 * files.el (recover-session): Preserve point when inserting
11193 explanation.
11194
11195 1999-01-06 Richard Stallman <rms@psilocin.ai.mit.edu>
11196
11197 * cus-edit.el (custom-save-delete): Don't delete whitespace
11198 and comments before the sexp that is replaced.
11199
11200 1999-01-05 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
11201
11202 * calendar/diary-lib.el (diary-float): Better fix of end-of-year error.
11203
11204 1999-01-05 Andre Spiegel <spiegel@inf.fu-berlin.de>
11205
11206 * vc.el (vc-dired-hook): Use the original value of
11207 dired-move-to-filename-regexp on lines that have not been
11208 reformatted yet.
11209 (vc-dired-toggle-terse-mode): Tell vc-dired-hook whether the
11210 file lines have already been reformatted.
11211
11212 1999-01-05 Dave Love <fx@gnu.org>
11213
11214 * progmodes/f90.el (f90-mode): Make imenu-case-fold-search
11215 buffer-local.
11216
11217 1998-01-05 Torbjorn Einarsson <T.Einarsson@clab.ericsson.se>
11218
11219 * progmodes/f90.el: Change of regular expressions for type to
11220 correct highlighting and identation. Some small fixes for
11221 compatibility with XEmacs.
11222
11223 1999-01-05 Stephen Eglen <stephen@gnu.org>
11224
11225 * mspools.el (mspools-vm-system-mail): Provide an alternative
11226 value based on rmail-spool-directory if $MAIL is not defined.
11227
11228 1999-01-05 Carsten Dominik <dominik@strw.leidenuniv.nl>
11229
11230 * textmodes/reftex.el (reftex-section-levels): Allow negative levels.
11231 (reftex-section-info): Handle negative section levels.
11232 (reftex-view-crossref-extra): New option.
11233 (reftex-view-crossref): Generalized to work in more places.
11234 (reftex-find-citation-regexp-format, reftex-find-reference-format,
11235 reftex-macros-with-labels, reftex-global-search-marker): New variables.
11236 (reftex-view-cite-locations-from-bibtex): New command.
11237 (reftex-view-regexp-match, reftex-global-search,
11238 reftex-global-search-continue): New functions.
11239 (reftex-extract-bib-entries): No error for non-existing BibTeX
11240 file, just a message.
11241 (reftex-extract-bib-entries): Better error handling.
11242 (reftex-select-with-char): Use `*RefTeX Select*' for selection
11243 help and force it on current frame.
11244 (reftex-default-bibliography): New function.
11245 (reftex-access-parse-file): Check consistency after loading a
11246 parse file. When inconsistent, enfore rescan.
11247 (reftex-check-parse-consistency): New function.
11248 (easy-menu-define): Options section drastically shortened.
11249
11250 1999-01-05 Kenichi Handa <handa@etl.go.jp>
11251
11252 * language/thai-util.el (thai-compose-string): New function.
11253
11254 1999-01-04 Inge Frick <inge@nada.kth.se>
11255
11256 * easymenu.el (easy-menu-define): Doc fix.
11257 (easy-menu-create-menu): New keyword :included.
11258 (easy-menu-do-add-item): New keyword :included. SUFFIX may
11259 be an expression, not only a string. Simulate style `button'.
11260 Use easy-menu-define-key-intern instead of easy-menu-define-key.
11261 (easy-menu-define-key-intern): New function.
11262 (easy-menu-add-item): Understand value returned from
11263 easy-menu-item-present-p and easy-menu-remove-item.
11264 (easy-menu-return-item): New function.
11265 (easy-menu-item-present-p, easy-menu-remove-item): Use it.
11266
11267 1999-01-03 Richard Stallman <rms@psilocin.ai.mit.edu>
11268
11269 * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
11270 Use rmail-output-read-rmail-file-name to read the file name.
11271 Always call rmail-output-to-rmail-file noninteractively.
11272 When count > 1, do the loop here.
11273 Handle rmail-delete-after-output here.
11274 (rmail-summary-output): Similar changes.
11275
11276 * mail/rmailout.el: Provide `rmailout'.
11277 (rmail-output-read-rmail-file-name): New function.
11278 (rmail-output-to-rmail-file): Use that.
11279 (rmail-output-read-file-name): New function.
11280 (rmail-output): Use that.
11281
11282 * files.el (find-file-noselect): Let /: suppress wildcard matching.
11283 Error if wildcard matches no files.
11284
11285 1999-01-02 Richard Stallman <rms@psilocin.ai.mit.edu>
11286
11287 * menu-bar.el (clipboard-yank): Doc fix.
11288
11289 * info.el (Info-insert-dir): Chase symlinks for file-attributes.
11290
11291 1998-12-31 Markus Rost <rost@delysid.gnu.org>
11292
11293 * textmodes/page-ext.el (pages-copy-header-and-position): Fix typo.
11294
11295 1998-12-31 Andrew Innes <andrewi@harlequin.co.uk>
11296
11297 * rmail.el (rmail-encode-string): Make sure mask value is
11298 positive; (emacs-pid) returns a negative number on Windows 9x
11299 which causes odd behaviour.
11300
11301 1998-12-31 Eli Zaretskii <eliz@mescaline.gnu.org>
11302
11303 * cus-start.el: Don't warn about dos-* variables unless on MS-DOS,
11304 and about w32-* variables unless on Windows/NT.
11305
11306 1998-12-31 Boris Goldowsky <boris@alum.mit.edu>
11307
11308 * textmodes/sgml-mode.el (sgml-validate): Ask whether to save only
11309 if buffer is modified; ask about all modified buffers.
11310
11311 1998-12-30 Richard Stallman <rms@psilocin.ai.mit.edu>
11312
11313 * simple.el (what-cursor-position): Fix previous change.
11314
11315 1998-12-30 Richard Stallman <rms@sucrose.ai.mit.edu>
11316
11317 * mail/sendmail.el (mail-mode): Eliminate ambiguous match
11318 from paragraph-start.
11319
11320 1998-12-30 Eli Zaretskii <eliz@mescaline.gnu.org>
11321
11322 * international/mule-cmds.el (prefer-coding-system): If the
11323 argument requires specific EOL conversion type, make the default
11324 coding systems use that.
11325
11326 1998-12-30 Drew Csillag <drew_csillag@geocities.com>
11327
11328 * progmodes/m4-mode.el (m4-m4-region, m4-m4-buffer):
11329 Use shell-command-on-region.
11330 (m4-start-m4, m4-end-m4): Functions deleted.
11331
11332 1998-12-30 Michael Ernst <mernst@alum.mit.edu>
11333
11334 * vc.el (vc-backend-diff): Use `diff-switches-list' throughout.
11335
11336 1998-12-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11337
11338 * browse-url.el (browse-url-mail): Give argument SEND-ACTION
11339 to compose-mail in the correct places and as a list.
11340
11341 1998-12-29 Masatake Yamato <masata-y@tori.aist-nara.ac.jp>
11342
11343 * page-ext.el: Added mouse-selection feature for pages directory buffer.
11344 (pages-directory-map): Bind mouse-2
11345 (pages-copy-header-and-position): Put text property.
11346 (pages-directory-goto-with-mouse): New function.
11347
11348 1998-12-29 Eli Zaretskii <eliz@mescaline.gnu.org>
11349
11350 * international/codepage.el (cp-make-coding-systems-for-codepage):
11351 Doc fix.
11352 (cp-coding-system-for-codepage-1): Likewise.
11353
11354 1998-12-29 Kenichi Handa <handa@etl.go.jp>
11355
11356 * language/thai-util.el (thai-post-read-conversion): Handle Thai
11357 composition sequence correctly here instead of calling
11358 thai-compose-region.
11359
11360 * textmodes/fill.el (fill-region-as-paragraph): While deleting a
11361 newline in multibyte buffer, if previous or next character is a
11362 composite char, check the first component of the composite char.
11363
11364 1998-12-28 Andreas Schwab <schwab@delysid.gnu.org>
11365
11366 * emacs-lisp/advice.el (ad-special-forms): Add save-current-buffer
11367 and track-mouse.
11368
11369 1998-12-27 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11370
11371 * mail/sendmail.el (mail-yank-original): Remove text properties
11372 after insertion.
11373 (mail-yank-region): Barf if no mark is set in the message
11374 being replied to.
11375
11376 * help.el (function-called-at-point): First look for function at point.
11377
11378 1998-12-27 Richard Stallman <rms@psilocin.ai.mit.edu>
11379
11380 * edmacro.el (edit-kbd-macro): Recognize electric-view-lossage.
11381
11382 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu>
11383
11384 * simple.el (what-cursor-position): Print character encoding also.
11385
11386 1998-12-26 Dave Love <fx@gnu.org>
11387
11388 * textmodes/flyspell.el: If local-maps work, don't put
11389 flyspell-mode-map in minor-mode-map-alist; bind mouse-2 and M-TAB
11390 in flyspell-mouse-map (only).
11391 (flyspell-use-local-map): New variable.
11392 Use a different mouse-2 binding in that case,
11393 and don't add to minor-mode-map-alist.
11394 (make-flyspell-overlay, flyspell-correct-word):
11395 Test flyspell-use-local-map.
11396
11397 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu>
11398
11399 * files.el (file-expand-wildcards): Handle wildcards in directory name.
11400 Be careful about whether to return a relative file name,
11401 and if so, relative to what directory.
11402
11403 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu>
11404
11405 * emacs-lisp/easymenu.el (easy-menu-get-map):
11406 Change global map only if this menu exists in the global map already,
11407 and not in the local map.
11408 (easy-menu-do-add-item): Fix error message.
11409
11410 * foldout.el (foldout-inhibit-key-bindings):
11411 Avoid concatenating onto outline-minor-mode-prefix.
11412 Make a new keymap for that prefix, if it does not already have one.
11413
11414 1998-12-25 Ilya Zakharevich <ilya@math.ohio-state.edu>
11415
11416 * cperl-mode.el:
11417 Can use linear algorithm for indentation if Emacs supports it.
11418 (cperl-after-expr-p): It is BLOCK if we reach lim when backup sexp.
11419 (cperl-after-block-p): Likewise.
11420 (cperl-after-block-and-statement-beg): Likewise.
11421 (cperl-after-block-p): After END/BEGIN we are a block.
11422 (cperl-after-expr-p): Skip labels when checking
11423 (cperl-indent-region): Make a marker for END - text added/removed.
11424 Disable hooks during the call (how to call them later?).
11425 Now indents 820-line-long function in 6.5 sec (including
11426 syntaxification) the first time (when buffer has few
11427 properties), 7.1 sec the second time.
11428 (cperl-indent-region): Do not indent whitespace lines
11429 (cperl-style-alist)
11430 Include `cperl-merge-trailing-else' where the value is clear.
11431 (cperl-styles-entries): Likewise.
11432 (cperl-problems): Improvements to docs.
11433 (cperl-tips): Likewise.
11434 (cperl-non-problems): Likewise.
11435 (cperl-mode): Make lazy syntaxification possible.
11436 Loads pseudo-faces for the sake of `cperl-find-pods-heres' (for 19.30).
11437 `font-lock-unfontify-region-function' was set to a wrong function.
11438
11439 (cperl-find-pods-heres): Safe a position in buffer where it is safe to
11440 restart syntaxification. Changed so that -d ?foo? is a RE. Do
11441 not warn on `=cut' if doing a chunk only. 1 << 6 was OK,
11442 but 1<<6 was considered as HERE-doc.
11443 <file/glob> made into a string.
11444 Postpone addition of faces after syntactic step.
11445 Recognition of <FH> was wrong.
11446 Highlight `gem' in s///gem as a keyword. `qr' recognized.
11447 Knows that split// is null-RE.
11448 Highlights separators in 3-parts expressions as labels.
11449 <> was considered as a glob.
11450 Would err if the last line is `=head1'.
11451 $a-1 ? foo : bar; was a considered a regexp.
11452 `<< (' was considered a start of HERE-doc.
11453 mark qq[]-etc sections as syntax-type=string
11454 Was not processing sub protos after a comment ine.
11455 Was treating $a++ <= 5 as a glob.
11456 Tolerate unfinished REx at end-of-buffer.
11457 `unwind-protect' was left commented.
11458 / and ? after : start a REx.
11459
11460 (cperl-syntaxify-by-font-lock): Set to t, should be safe now.
11461 Better default, customizes to `message' too, off in text-mode.
11462
11463 (cperl-array-face): Renamed from `font-lock-emphasized-face',
11464 `defface'd.
11465 (cperl-hash-face): Renamed from `font-lock-other-emphasized-face'.
11466 `defface'd.
11467 (cperl-emacs-can-parse): New state variable.
11468 (cperl-indent-line): Corrected to use global state.
11469 (cperl-calculate-indent): Likewise.
11470 (cperl-fix-line-spacing): Likewise (not used yet).
11471 (cperl-calculate-indent): Did not consider `,' as
11472 continuation mark for statements.
11473 (cperl-calculate-indent): Avoid parse-data optimization at toplevel.
11474 Remove another parse-data optimization at toplevel: would
11475 indent correctly.
11476 Correct for labels when calculating indentation of continuations.
11477 Docstring updated.
11478 (cperl-choose-color): Converted to a function (to be
11479 compilable in text-mode).
11480 (cperl-dark-background): Disable without window-system.
11481 Do `defface' only if window-system.
11482 (cperl-fix-line-spacing): Sped up to bail out early.
11483 (x-color-defined-p): Was not compiling on XEmacs
11484 Was defmacro'ed with a tick. Remove another def.
11485 (cperl-clobber-lisp-bindings): If set, C-c variants are the old ones
11486 (cperl-unwind-to-safe): New function.
11487 (cperl-fontify-syntaxically): Use `cperl-unwind-to-safe' to start at reasonable position.
11488 (cperl-fontify-syntaxically): Unwinds start and end to go out of
11489 long strings (not very successful).
11490 (cperl-forward-re): Highlight the trailing / in s/foo// as string.
11491 Highlight the starting // in s//foo/ as function-name.
11492 Emit a meaningful error instead of a cryptic one for an
11493 uncomplete REx near end-of-buffer.
11494
11495 (cperl-electric-keyword): `qr' recognized.
11496 (cperl-electric-else): Likewise
11497 (cperl-to-comment-or-eol): Likewise
11498 (cperl-make-regexp-x): Likewise
11499 (cperl-init-faces): Likewise, and `lock' (as overridable?).
11500 Corrected to use new macros;
11501 `if' for copying `reference-face' to `constant-face' was backward.
11502 remove init `font-lock-other-emphasized-face',
11503 `font-lock-emphasized-face', `font-lock-keyword-face'.
11504 Interpolate `cperl-invalid-face'.
11505 (cperl-make-regexp-x): Misprint in a message.
11506 (cperl-syntaxify-unwind): New configuration variable
11507 (cperl-fontify-m-as-s): New configuration variable
11508 (cperl-electric-pod): Check for after-expr was performed
11509 inside of POD too.
11510 (cperl-backward-to-noncomment): Cetter treatment of PODs and HEREs.
11511 (cperl-clobber-mode-lists): New configuration variable.
11512 (cperl-not-bad-style-regexp): Updated.
11513 Init: `cperl-is-face' was busted.
11514 (cperl-make-face): New macros.
11515 (cperl-force-face): New macros.
11516 (font-lock-other-type-face): Done via `defface' too.
11517 (cperl-nonoverridable-face): New face. Renamed from
11518 `font-lock-other-type-face'.
11519 (cperl-init-faces-weak): Use `cperl-force-face'.
11520 (cperl-comment-indent): Commenting __END__ was not working.
11521 (cperl-indent-for-comment): Likewise.
11522 (cperl-write-tags): Correct for XEmacs's `visit-tags-table-buffer'.
11523 When removing old TAGS info was not relativizing filename.
11524 (cperl-tags-hier-init): Gross hack to pretend we work (are we?).
11525 Another try to work around XEmacs problems. Better progress messages.
11526 (toplevel): Require custom unprotected => failure on 19.28.
11527 (cperl-xemacs-p): Defined when compile too
11528 (cperl-find-tags): Was writing line/pos in a wrong order,
11529 pos off by 1 and not at beg-of-line.
11530 (cperl-etags-snarf-tag): New macro
11531 (cperl-etags-goto-tag-location): New macro
11532 (cperl-version): New variable. New menu entry
11533 random docstrings: References to "future" 20.3 removed.
11534 Menu was described as `CPerl' instead of `Perl'
11535 (perl-font-lock-keywords): Would not highlight `sub foo($$);'.
11536 (cperl-toggle-construct-fix): Was toggling to t instead of 1.
11537 (cperl-ps-print-init): Associate `cperl-array-face', `cperl-hash-face'
11538 Remove `font-lock-emphasized-face', `font-lock-other-emphasized-face',
11539 `font-lock-reference-face', `font-lock-keyword-face'.
11540 Use `eval-after-load'.
11541 Remove not-CPerl-related faces.
11542 (cperl-tips-faces): New variable and an entry into Mini-docs.
11543 (cperl-indent-exp): Was not processing else-blocks.
11544 (cperl-get-state): NOP line removed.
11545 (cperl-ps-print): New function and menu entry.
11546 (cperl-ps-print-face-properties): New configuration variable.
11547 (cperl-invalid-face): New configuration variable.
11548 (perl-font-lock-keywords): Highlight trailing whitespace
11549 (cperl-contract-levels): Documentation corrected.
11550 (cperl-contract-level): Likewise.
11551 (cperl-ps-extend-face-list): New macro.
11552 (cperl-invalid-face): Change to ''underline.
11553
11554 1998-12-25 Markus Rost <rost@delysid.gnu.org>
11555
11556 * mail/rmailout.el (rmail-output): Abbreviate name of default-file
11557 for read-file-name.
11558 (rmail-output-to-rmail-file): Likewise.
11559
11560 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu>
11561
11562 * emacs-lisp/easymenu.el (easy-menu-get-map):
11563 If MENU is nil, use global menu-bar map.
11564 (easy-menu-add-item, easy-menu-remove-item): Argument renamed.
11565 (easy-menu-item-present-p, easy-menu-get-map): Argument renamed.
11566
11567 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11568
11569 * ps-mule.el (ps-mule-begin-job): Programming uniformization.
11570
11571 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11572
11573 * ps-print.el (ps-print-version): New version number (4.1.3).
11574
11575 1998-12-21 Eli Zaretskii <eliz@mescaline.gnu.org>
11576
11577 * international/mule-cmds.el: Use make-sparse-keymap instead of
11578 define-prefix-key when defining MULE menu items.
11579
11580 * info.el (Info-node-at-bob-matching): New function.
11581 (Info-find-node, Info-build-node-completions): Call it.
11582
11583 1998-12-21 Andreas Schwab <schwab@delysid.gnu.org>
11584
11585 * help.el (describe-function-1): Say "keymap", not "Lisp macro",
11586 when this is an autoloaded keymap.
11587
11588 1998-12-20 Eli Zaretskii <eliz@mescaline.gnu.org>
11589
11590 * international/codepage.el (cp-coding-system-for-codepage-1):
11591 Create separate encoders and decoders, for DOS and Unix. Make the
11592 usual family of 3 coding systems, so that automatic detection of
11593 EOL type works.
11594 (cp-make-coding-systems-for-codepage): Don't intern DOS- and
11595 Unix-specific symbols here, and don't call
11596 cp-coding-system-for-codepage-1 twice. (Suggested by Ken'ichi
11597 Handa <handa@etl.go.jp>.)
11598
11599 * dos-vars.el (dos-codepage-setup-hook): New defcustom.
11600
11601 * term/internal.el (IT-character-translations): New variable, an
11602 alist used to display characters for which there's no glyphs in
11603 the current codepage.
11604 (IT-display-table-setup): New function, sets up the DOS terminal
11605 for a given codepage.
11606 (dos-codepage-setup): New function, sets up the MULE environment
11607 for the current value of dos-codepage.
11608 (top-level if): In the multibyte mode, turn on
11609 unibyte-display-via-language-environment. In the unibyte mode,
11610 set up the special syntax tables to map lower- to upper case and
11611 back.
11612
11613 1998-12-19 Eric Ludlam <zappo@delysid.gnu.org>
11614
11615 * speedbar.el: (speedbar-frame-parameters) Add : to custom prompt.
11616 (speedbar-frame-plist) Remove useless comments.
11617 (speedbar-frame-mode) Do not specify height if it is in the param list.
11618 Use default y position w/out changing it.
11619 If default x position is a list, keep, calculate the non-list X
11620 value when devining an initial position.
11621 (speedbar-this-file-in-vc) Fix SCCS to use s. not p. files.
11622 (speedbar-tag-group-name-minimum-length): New variable.
11623 (speedbar-frame-parameter): New compatibility function.
11624 (speedbar-frame-mode): Updated to use speedbar-frame-parameter.
11625 (speedbar-apply-one-tag-hierarchy-method): Fixed up taging sub
11626 groups to keep things in the right order, and to help with some
11627 naming conventions.
11628 (speedbar-create-tag-hierarchy): Enable buffer local version of
11629 `speedbar-tag-hierarchy-method' in the buffer we are tagging.
11630 (speedbar-line-path) Make DEPTH param optional. Devine it if absent.
11631 the case, derive it from the cursor location in speedbar.
11632
11633 1998-12-17 Eli Zaretskii <eliz@mescaline.gnu.org>
11634
11635 * international/mule-cmds.el (set-language-environment): On MS-DOS
11636 terminals, install DOS-specific nonascii-translation-table if the
11637 language info doesn't specify one. Pass the default eol-type to
11638 set-language-environment-coding-systems.
11639 (set-default-coding-systems): Copy the eol-type property for the
11640 new default values of {buffer-file,process}-coding-system from the
11641 old defaults.
11642 (set-language-environment-coding-systems): Accept an optional
11643 argument EOL-TYPE, and set the eol-type property of the default
11644 coding systems accordingly.
11645 (set-terminal-coding-system): Enable menu item on MS-DOS terminals.
11646 (set-keyboard-coding-system): Likewise.
11647 (set-default-coding-systems): Don't set
11648 default-terminal-coding-system on MS-DOS to anything but nil.
11649 (prefer-coding-system): Describe in the doc string that
11650 default-terminal-coding-system is not changed on MS-DOS.
11651 (set-language-environment): For MS-DOS, set standard syntax table
11652 and display table for all characters with code above 127.
11653 (standard-display-european-internal): For MS-DOS, pass all
11654 characters with code above 127 directly to the terminal, and don't
11655 remap characters 160 and 146 in the unibyte case.
11656
11657 * international/codepage.el: New file.
11658
11659 1998-12-16 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
11660
11661 * diary-lib.el (diary-float): Fix end-of-year error and typos in
11662 comments.
11663
11664 1998-12-16 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru>
11665
11666 * map-ynp.el (map-y-or-n-p): Ignore input methods.
11667
11668 * subr.el (read-passwd): Likewise.
11669
11670 1998-12-16 Eli Zaretskii <eliz@mescaline.gnu.org>
11671
11672 * info.el (Info-find-node): Add 1 to the position read from the
11673 tag table. Don't fail if the node delimiter ^_ is the first
11674 character in the file.
11675 (Info-insert-dir): Don't fail when the node delimiter ^_ is the
11676 first character in the file.
11677 (Info-read-subfile): Likewise.
11678 (Info-select-node): Likewise.
11679 (Info-build-node-completions): Likewise.
11680
11681 1998-12-16 Richard Stallman <rms@gnu.org>
11682
11683 * term/x-win.el (x-cut-buffer-or-selection-value):
11684 If clipboard is enabled, try it before PRIMARY selection.
11685
11686 1998-12-15 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
11687
11688 * international/iso-acc.el (iso-languages): For Portuguese ~c and ~C
11689 insert c-cedilla and C-cedilla respectively, like in latin-1.
11690
11691 1998-12-15 Eli Zaretskii <eliz@delysid.gnu.org>
11692
11693 * language/hebrew.el: Don't use sublists in the flags argument
11694 passed to make-coding-system.
11695
11696 1998-12-15 Kenichi Handa <handa@etl.go.jp>
11697
11698 * ps-mule.el (ps-mule-begin-job): Delete nil and unknown from a
11699 list of character sets found by find-charset-region.
11700
11701 * ps-mule.el: Always require ps-print. Move some function
11702 definitions for Emacs 20.2 and the earlier to ps-print.el.
11703 (ps-mule-find-wrappoint): Make it work also with Emacs 20.2.
11704
11705 * ps-print.el: Define several functions for Emacs 20.2 and the
11706 earlier version.
11707 (ps-printer-name): Check if printer-name is bound.
11708
11709 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11710
11711 * ps-mule.el: Programming uniformization and little code improvement.
11712 (ps-mule-prepare-font): Programming uniformization.
11713 (ps-mule-find-wrappoint, ps-mule-plot-rule-cmpchar)
11714 (ps-mule-string-encoding, ps-mule-begin-job): Little code improvement.
11715
11716 * ps-bdf.el: Programming uniformization and little code improvement.
11717 (bdf-search-and-read): New fun.
11718 (bdf-write-cache, bdf-initialize, bdf-info-absolute-path)
11719 (bdf-info-mod-time, bdf-info-size, bdf-info-font-bounding-box)
11720 (bdf-info-relative-compose, bdf-info-baseline-offset)
11721 (bdf-info-code-range, bdf-info-maxlen, bdf-info-offset-vector)
11722 (bdf-read-bitmap, bdf-get-bitmaps): Programming uniformization.
11723 (bdf-expand-file-name, bdf-file-newer-than-time, bdf-find-file)
11724 (bdf-read-cache, bdf-read-font-info, bdf-generate-glyphs): Little code
11725 improvement.
11726
11727 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11728
11729 * ps-print.el: (ps-print-version): New version number (4.1.2), doc fix
11730 and mule related code extraction. Autoload ps-mule funs.
11731
11732 * ps-mule.el: Doc fix. Require ps-print only when compiled.
11733 (ps-mule-prologue-generated): New fun.
11734 (ps-mule-plot-string): Add autoload cookie.
11735 (ps-mule-begin-job): Call ps-mule-prologue-generated.
11736
11737 1998-12-15 Kenichi Handa <handa@etl.go.jp>
11738
11739 * ps-bdf.el: Require ps-mule instead of ps-print.
11740 (bdf-directory-list): Add autoload cookie.
11741
11742 * ps-mule.el: New file. Mule related code extracted from
11743 ps-print.el. Require ps-print, provide ps-mule.
11744 (ps-multibyte-buffer): Add autoload cookie.
11745 (ps-mule-prepare-ascii-font): New fun.
11746 (ps-mule-set-ascii-font): New fun.
11747 (ps-mule-skip-same-charset): Fun deleted.
11748 (ps-mule-plot-string): Set ps-mule-current-charset.
11749 (ps-mule-initialize): Add autload cookie. Don't set
11750 ps-mule-font-info-database here.
11751 (ps-mule-begin-job): Renamed from ps-mule-begin. Update
11752 ps-mule-font-info-database and ps-control-or-escape-regexp.
11753 (ps-mule-begin-page): New fun.
11754
11755 * ps-print.el: Mule related code moved to ps-mule.el.
11756 (ps-begin-job): While setting ps-control-or-escape-regexp, don't
11757 check ps-mule-charset-list.
11758 (ps-begin-page): Don't set ps-mule-current-charset, instead call
11759 ps-mule-begin-page.
11760 (ps-basic-plot-string): Call ps-mule-prepare-ascii-font.
11761 (ps-plot-region): Don't set ps-mule-current-charset, instead call
11762 ps-mule-set-ascii-font. Don't call ps-mule-skip-same-charset,
11763 instead skip same charsets by itself.
11764 (ps-generate): Call ps-mule-initialize of needs-begin-file is
11765 non-nil. Call ps-mule-begin-job.
11766
11767 1998-12-15 Kenichi Handa <handa@etl.go.jp>
11768
11769 * ps-bdf.el: File name changed from bdf.el. Provide ps-bdf
11770 instead of bdf.
11771
11772 * ps-print.el (ps-mule-font-info-database): Doc-string modified.
11773 (ps-mule-external-libraries): New element FEATURE.
11774 (ps-mule-init-external-library): Ajusted for the above change.
11775 (ps-mule-generate-font): Likewise.
11776 (ps-mule-generate-glyphs): Likewise.
11777 (ps-mule-prepare-font): Likewise.
11778 (ps-mule-initialize): Likewise.
11779 (ps-begin-file): Superfluous tailing parenthesis deleted.
11780
11781 1998-12-15 Kenichi Handa <handa@etl.go.jp>
11782
11783 * international/fontset.el (x-decompose-font-name): If PATTERN
11784 doesn't have any wild cards, return a vector made from a name that
11785 is found by x-resolve-font-name found. Comments added.
11786
11787 * international/mule-cmds.el (find-coding-systems-for-charsets):
11788 Handle the case of unknown charset.
11789 (find-multibyte-characters): If invalid multibyte characters are
11790 found, return the corresponding strings instead of character
11791 codes.
11792 (find-multibyte-characters): Adjusted for the above change.
11793 (select-safe-coding-system): For a unibyte buffer, always returns
11794 DEFAULT-CODING-SYSTEM.
11795 (get-charset-property): Fix previous change. Make it a function.
11796 (put-charset-property): Make it a function.
11797
11798 * international/mule.el (make-coding-system): Set mime-charset
11799 property of *-with-esc coding system to nil.
11800
11801 * international/quail.el (quail-point-in-conversion-region): New
11802 function.
11803 (quail-conversion-backward-delete-char): When a key sequence is
11804 being translated, call quail-delete-last-char.
11805
11806 * language/devan-util.el
11807 (devanagari-reorder-glyphs-for-decomposition): Fix the way to
11808 handle devanagari-decomposition-rules.
11809
11810 1998-12-14 Andreas Schwab <schwab@delysid.gnu.org>
11811
11812 * textmodes/texinfo.el (texinfo-tex-buffer): Bind
11813 tex-start-options-string to empty string.
11814 (texinfo-tex-region): Use texinfo-tex-trailer as documented.
11815
11816 1998-12-14 Andrew Innes <andrewi@delysid.gnu.org>
11817
11818 * gnus/nntp.el (nntp-request-group): Undo previous change (4xx and
11819 5xx responses are already handled properly).
11820
11821 1998-12-13 Richard Stallman <rms@gnu.org>
11822
11823 * progmodes/compile.el (compilation-error-regexp-alist): Insist
11824 on a non-digit in the file name.
11825
11826 * simple.el (comment-region): Handle comment-padding
11827 separately for insertion and for deletion, in the right way for each.
11828
11829 1998-12-13 Felix Lee <flee@cygnus.com>
11830
11831 * progmodes/compile.el (compilation-error-regexp-alist): Fix
11832 regexp to match "ChangeLog:1:1998-12-09 ..."
11833
11834 1998-12-13 Eli Zaretskii <eliz@delysid.gnu.org>
11835
11836 * cus-start.el (dos-unsupported-char-glyph): Add.
11837
11838 1998-12-11 Dave Love <fx@gnu.org>
11839
11840 * progmodes/fortran.el (fortran-font-lock-keywords-3): Wrap
11841 forward-sexp in condition-case.
11842
11843 * emacs-lisp/find-func.el (find-function-search-for-symbol):
11844 Remove unnecessary test on `library' for explicit file name.
11845 Widen scope of save-match-data.
11846
11847 1998-12-10 Eli Zaretskii <eliz@delysid.gnu.org>
11848
11849 * international/mule.el (load-with-code-conversion): If the loaded
11850 file was inserted with no-conversion or raw-text coding system,
11851 make the buffer unibyte.
11852
11853 1998-12-09 Richard Stallman <rms@gnu.org>
11854
11855 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
11856 Get rid of nested loops.
11857
11858 * mouse.el (mouse-drag-vertical-line):
11859 If WHICH-SIDE is not `right', then scroll bars are on the left.
11860
11861 * loadhist.el (load-history-loaded): defvar moved to help.el.
11862
11863 * help.el (symbol-file-load-history-loaded): Variable renamed,
11864 and defvar moved from loadhist.el.
11865 (symbol-file): Renamed from describe-function-find-file.
11866 Load fns-VERSION.el here.
11867 (describe-variable, describe-function-1): Use symbol-file.
11868
11869 * textmodes/tex-mode.el (tex-generate-zap-file-name):
11870 Don't start the name with #.
11871
11872 * ispell.el: Take out the eval-when's.
11873
11874 1998-12-09 Peter Breton <pbreton@ne.mediaone.net>
11875
11876 * dirtrack.el (dirtrack-directory-change-hook): New hook.
11877 (dirtrack): Run it. Make debug message more verbose.
11878
11879 1998-12-09 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
11880
11881 * progmodes/octave-mod.el (octave-abbrev-start): Use the correct
11882 name of the abbrev table, and provide support for XEmacs.
11883 (octave-xemacs-p): New variable.
11884
11885 1998-12-09 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
11886
11887 * mail/sendmail.el (sendmail-send-it): Don't wait for sendmail to
11888 exit, when mail-interactive is nil.
11889
11890 1998-12-09 Changwoo Ryu <cwryu@adam.kaist.ac.kr>
11891
11892 * files.el (after-find-file): Message fix.
11893
11894 1998-12-09 Ken Stevens <stevens@kdstevens.com>
11895
11896 * ispell.el (ispell-kill-ispell): Don't send newline after EOF.
11897
11898 1998-12-09 Geoff Voelker <voelker@cs.washington.edu>
11899
11900 * ange-ftp.el (ange-ftp-expand-file-name) [windows-nt]: Handle
11901 filenames using backslashes.
11902
11903 1998-12-09 Dave Love <fx@gnu.org>
11904
11905 * browse-url.el (browse-url-mail): Call compose-mail-other-window
11906 with correct number of args.
11907 (browse-url-maybe-new-window): New arg. Callers changed.
11908
11909 * progmodes/fortran.el (fortran-check-end-prog-re): Allow trailing
11910 comment.
11911
11912 1998-12-08 Geoff Voelker <voelker@cs.washington.edu>
11913
11914 * makefile.nt (install) [COPY_LISP_SOURCE]: Fix end of conditional.
11915
11916 1998-12-08 Markus Rost <rost@delysid.gnu.org>
11917
11918 * vc.el (vc-rcs-release): Fix Type.
11919 (vc-sccs-release): Fix Type.
11920 (vc-cvs-release): Fix Type.
11921
11922 * mail/rmailsum.el (rmail-summary-output): Simplify. Make prefix
11923 arg work right.
11924
11925 * mail/rmailout.el (rmail-output-to-rmail-file): Avoid multiple
11926 output of last undeleted message.
11927
11928 1998-12-07 Geoff Voelker <voelker@cs.washington.edu>
11929
11930 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
11931 (buffer-undo-list) [windows-nt]: Use different relative path.
11932
11933 1998-12-07 Simon Marshall <simon@gnu.org>
11934
11935 * font-lock.el (java-font-lock-keywords-2): Wrap java-minor-types.
11936
11937 1998-12-05 Markus Rost <rost@delysid.gnu.org>
11938
11939 * xt-mouse.el (xterm-mouse-mode): Pacify the byte compiler.
11940
11941 * emacs-lisp/byte-opt.el: Require bytecomp for byte-goto-ops.
11942
11943 1998-12-04 Markus Rost <rost@delysid.gnu.org>
11944
11945 * info.el (Info-menu): Don't return error if point is between menu
11946 header and first menu item.
11947
11948 1998-12-04 Dave Love <fx@gnu.org>
11949
11950 * help.el (describe-function-1): Fix description for alias.
11951
11952 1998-12-03 Andreas Schwab <schwab@delysid.gnu.org>
11953
11954 * emacs-lisp/lisp-mnt.el (lm-summary): Strip off -*-
11955 specifications from summary line.
11956
11957 * rect.el (delete-whitespace-rectangle): Mark for autoload.
11958 (close-rectangle): Define alias only once in loaddefs.el.
11959
11960 1998-12-03 Eli Zaretskii <eliz@mescaline.gnu.org>
11961
11962 * term/internal.el: Remove code which sets up a special syntax
11963 table for non-ASCII characters.
11964
11965 1998-12-02 Andrew Innes <andrewi@delysid.gnu.org>
11966
11967 * dos-w32.el (direct-print-region-function): Try to ensure that
11968 printer-name is expanded to a file name on a local drive;
11969 sometimes printing a file loaded from a network volume fails.
11970 (direct-print-region-function): Add a function to
11971 write-region-annotate-functions to append a formfeed character to
11972 the region being printed, if the region doesn't end with a
11973 formfeed already. This avoids creating a second print job
11974 containing a blank page when print spooling is enabled on Windows.
11975
11976 1998-12-02 Dave Love <fx@gnu.org>
11977
11978 * help.el (help-make-xrefs): Use `info', not the non-autoloaded
11979 `Info-goto-node'.
11980
11981 1998-12-02 Richard Stallman <rms@gnu.org>
11982
11983 * help.el (temp-buffer-resize-mode): Doc fix.
11984
11985 * cus-edit.el (custom-save-delete): Save point before
11986 reading a sexp, rather than backing up.
11987
11988 * international/iso-transl.el: Fix previous change.
11989
11990 1998-12-02 Andre Spiegel <spiegel@inf.fu-berlin.de>
11991
11992 * vc.el (vc-dired-window-configuration, vc-ediff-windows,
11993 vc-ediff-result, vc-dired-switches, vc-dired-terse-mode):
11994 Added defvars to suppress compilation warnings.
11995
11996 1998-11-30 Ken Stevens <k.stevens@ieee.org>
11997
11998 * ispell.el: Improved and fixed customize for variables:
11999 ispell-highlight-p, ispell-check-comments, ispell-help-in-bufferp,
12000 ispell-dictionary-alist, ispell-skip-sgml.
12001 Improved and fixed comments in variables and messages for
12002 functions: ispell-help-in-bufferp, ispell-local-dictionary,
12003 ispell-menu-map, ispell-checking-message, ispell-parser,
12004 ispell-word, lookup-words, ispell-change-dictionary, ispell-region,
12005 ispell-begin-tex-skip-regexp, ispell-begin-skip-region,
12006 ispell-comments-and-strings, ispell-continue, ispell-complete-word,
12007 ispell-message-text-end, ispell-add-per-file-word-list.
12008 (ispell-dictionary-alist-1): (ispell-dictionary-alist2): A coding
12009 system is now required for all languages. Casechars improved for
12010 castellano, castellano8, and norsk dictionaries. Dictionary
12011 norsk7-tex added. Dictionary polish added.
12012 (ispell-dictionary-alist): Redefined at load-time to support
12013 dictionary changes.
12014 (ispell-menu-map): Redefined at load-time to support menu changes.
12015 (ispell-check-version): New alias for `check-ispell-version'.
12016 (ispell-parse-output): Fixed matching for ispell error messages.
12017 Correctly returns spelling suggestions in order generated by ispell
12018 process.
12019 (check-ispell-version): Ensure `case-fold-search' doesn't get
12020 redefined.
12021 (ispell-complete-word): Ensure `case-fold-search' doesn't get
12022 redefined. Fix bug that didn't respect case of word being completed.
12023 (ispell-init-process): Set process coding system to be compatible
12024 with emacs processes and the ispell process.
12025 (ispell-kill-ispell): Ensures ispell process has terminated before
12026 starting new process. This can otherwise confuse process filters
12027 and hang the ispell process.
12028 (ispell-begin-skip-region-regexp): (ispell-skip-region): Improved
12029 skipping support for sgml.
12030 (ispell-minor-check): Support sgml labels. Fix mapping ^M to \r
12031 which could cause `ispell-complete-word' to hang.
12032 (ispell-message): Improved message reference matching. Ensure
12033 `case-fold-search' doesn't get redefined.
12034 (ispell-buffer-local-parsing): Ensure `case-fold-search' doesn't
12035 get redefined. Fixed bug in returning to nroff mode from tex mode.
12036 (ispell-add-per-file-word-list): Ensure `case-fold-search' doesn't
12037 get redefined.
12038
12039 1998-11-30 Richard Stallman <rms@psilocin.ai.mit.edu>
12040
12041 * textmodes/flyspell.el (flyspell-check-word-p):
12042 Don't delay inside a kbd macro.
12043
12044 * subr.el (make-local-hook): Return the hook variable.
12045
12046 1998-11-30 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
12047
12048 * hscroll.el (hscroll-mode, hscroll-global-mode, hscroll-window-maybe):
12049 Use a timer instead of post-command-hook.
12050 (hscroll-timer): New variable.
12051
12052 1998-11-30 Dave Love <fx@gnu.org>
12053
12054 * help.el (help-xref-button): Do nothing if text already has the
12055 help-xref property.
12056 (describe-variable): Revert previous change to hyperlink to source.
12057
12058 1998-11-29 Richard Stallman <rms@psilocin.ai.mit.edu>
12059
12060 * bindings.el (features): Add `base64' to this list.
12061
12062 * loadhist.el (symbol-file): Doc fix.
12063
12064 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
12065
12066 * files.el (hack-one-local-variable): Cope with non-file buffers.
12067
12068 1998-11-28 Richard Stallman <rms@psilocin.ai.mit.edu>
12069
12070 * help.el (describe-mode): Put major mode first.
12071
12072 * calendar/appt.el (appt-disp-window): Use pop-to-buffer,
12073 to support special-display and same-window features.
12074
12075 1998-11-27 Richard Stallman <rms@psilocin.ai.mit.edu>
12076
12077 * simple.el (transpose-subr, transpose-subr-1): Rename variables
12078 bound in one function and used in the other.
12079 (transpose-subr-start1, transpose-subr-start2): Add defvars.
12080 (transpose-subr-end1, transpose-subr-end2): Add defvars.
12081
12082 1998-11-26 Richard Stallman <rms@psilocin.ai.mit.edu>
12083
12084 * autoinsert.el (auto-insert-alist): Use user-mail-address.
12085
12086 1998-11-26 Kenichi Handa <handa@etl.go.jp>
12087
12088 * international/ccl.el (ccl-dump-translate-character-const-tbl):
12089 Give format correct control string.
12090
12091 * international/mule.el (define-translation-table): Fix bug of
12092 setting incorrect translation-table-id. If the first element of
12093 ARGS is a translation table, just register it.
12094
12095 * language/chinese.el ("Chinese-BIG5"): Add charset-origin-alist
12096 property.
12097
12098 1998-11-24 Michael Ernst <mernst@alum.mit.edu>
12099
12100 * thingatpt.el (thing-at-point-url-at-point): Don't use current
12101 syntax table to determine what is whitespace.
12102
12103 1998-11-24 Richard Stallman <rms@psilocin.ai.mit.edu>
12104
12105 * frame.el (frame-parameter): Doc fix.
12106
12107 * textmodes/tex-mode.el (tex-feed-input): New function.
12108 (tex-define-common-keys): Add binding for C-c C-m.
12109
12110 1998-11-23 Dave Love <fx@gnu.org>
12111
12112 * progmodes/fortran.el: Various minor doc fixes.
12113 (fortran-font-lock-keywords-1): Add `d' to comment-chars.
12114 (fortran-with-subprogram-narrowing): New macro.
12115 (fortran-check-for-matching-do): Use it.
12116 (fortran-end-do): Use fortran-check-end-prog-re.
12117 (fortran-beginning-do, fortran-end-if, fortran-beginning-if)
12118 (fortran-calculate-indent, fortran-calculate-indent): Likewise.
12119
12120 1998-11-23 Simon Marshall <simon@gnu.org>
12121
12122 * font-lock.el (font-lock-defaults): Doc fix.
12123 (font-lock-default-fontify-buffer): Rewritten to use with-temp-message.
12124 (lisp-font-lock-keywords-2): Fontify with-temp-message as a keyword.
12125
12126 * lazy-lock.el (lazy-lock-unstall):
12127 (lazy-lock-fontify-after-idle): Rewritten to use with-temp-message.
12128
12129 * fast-lock.el (fast-lock-save-cache-1):
12130 (fast-lock-cache-data): Rewritten to use with-temp-message.
12131
12132 1998-11-22 Andrew Innes <andrewi@delysid.gnu.org>
12133
12134 * mail/rmail.el (rmail-set-message-counters-counter): Detect
12135 messages that have been added with DOS line endings and convert
12136 the line endings for such messages.
12137
12138 1998-11-22 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
12139
12140 * help.el: Add resizing of temporary buffers.
12141 (temp-buffer-resize-mode): New command and variable.
12142 (temp-buffer-max-height): New variable.
12143 (resize-temp-buffer-window): New function.
12144
12145 * window.el (window-buffer-height): New function, split from
12146 shrink-window-if-larger-than-buffer.
12147 (shrink-window-if-larger-than-buffer): Use window-buffer-height.
12148
12149 1998-11-22 Richard Stallman <rms@psilocin.ai.mit.edu>
12150
12151 * frame.el (initial-frame-alist): Add defcustom.
12152
12153 * shell.el (shell-prompt-pattern): Add defcustom.
12154
12155 1998-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12156
12157 * message.el (message-ignored-supersedes-headers): Remove
12158 NNTP-Posting-Date.
12159
12160 1998-11-21 Richard Stallman <rms@psilocin.ai.mit.edu>
12161
12162 * help.el (describe-mode): Don't avoid loop indirecting thru
12163 value of INDICATOR.
12164
12165 1998-11-20 Richard Stallman <rms@psilocin.ai.mit.edu>
12166
12167 * help.el (describe-variable): Allow any variable with a defcustom,
12168 even if it is not a user variable.
12169
12170 * mail/rmail.el (mail-unsent-separator): Additional alternative.
12171
12172 1998-11-20 Andrew Innes <andrewi@delysid.gnu.org>
12173
12174 * gnus/nntp.el (nntp-request-group): Allow for failures when
12175 requesting a new group.
12176
12177 1998-11-19 Richard Stallman <rms@psilocin.ai.mit.edu>
12178
12179 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Doc fix.
12180
12181 1998-11-19 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12182
12183 * emacs-lisp/find-func.el (find-function-regexp): Handle skeletons.
12184
12185 1998-11-19 Simon Marshall <simon@gnu.org>
12186
12187 * subr.el (with-temp-message): New macro.
12188
12189 * emacs-lisp/lisp-mode.el (with-temp-message):
12190 Add lisp-indent-function property.
12191
12192 1998-11-18 Dave Love <fx@gnu.org>
12193
12194 * progmodes/fortran.el (fortran-end-prog-re): Fix typo.
12195
12196 1998-11-18 Richard Stallman <rms@psilocin.ai.mit.edu>
12197
12198 * emacs-lisp/bytecomp.el (temp-buffer-show-hook):
12199 This is not obsolete.
12200
12201 1998-11-18 Kenichi Handa <handa@etl.go.jp>
12202
12203 * textmodes/picture.el: Make a new map by make-keymap.
12204 (picture-desired-column): New variable.
12205 (picture-update-desired-column): New function.
12206 (picture-beginning-of-line): Set picture-desired-column to 0.
12207 (picture-end-of-line): Set picture-desired-column to the current
12208 column.
12209 (picture-forward-column): Pay attention to multi-column character.
12210 (picture-backward-column): Likewise.
12211 (picture-move-down): Likewise.
12212 (picture-move-up): Likewise.
12213 (picture-movement-nw): With prefix arg, move twice columns.
12214 (picture-movement-ne): Likewise.
12215 (picture-movement-sw): Likewise.
12216 (picture-movement-se): Likewise.
12217 (picture-set-motion): Handle two-column movements.
12218 (picture-move): Call picture-move-down or picture-forward-column
12219 only when necessary.
12220 (picture-insert): Pay attention to picture-desired-column.
12221 (picture-self-insert): Likewise.
12222 (picture-clear-column): Pay attention to multi-column character.
12223 (picture-mode): Modify doc-string for two-column movement.
12224
12225 * rect.el (move-to-column-force): New function.
12226 (operate-on-rectangle): If coerce-tabs is non-nil, call
12227 move-to-column-force instead of move-to-column.
12228 (insert-rectangle): Call move-to-column-force instead of
12229 move-to-column.
12230 (open-rectangle-line): If begextra is not zero, call
12231 move-to-column-force.
12232
12233
12234 1998-11-16 Dave Love <fx@gnu.org>
12235
12236 * textmodes/sgml-mode.el Require skeleton when compiling.
12237 (sgml-font-lock-keywords-1): Accept single-letter tags.
12238 (v2): Defvar free variable.
12239
12240 1998-11-16 Sam Steingold <sds@goems.com>
12241
12242 * emacs-lisp/cl-indent.el: Indent `with-output-to-string' as a CL
12243 macro, not ELisp one.
12244
12245 1998-11-16 Kenichi Handa <handa@etl.go.jp>
12246
12247 * emacs-lisp/lisp-mode.el: Set syntaxes all non-word multibyte
12248 characters to symbol.
12249
12250 * language/japan-util.el (japanese-zenkaku-region): New optional
12251 arg KATAKANA-ONLY.
12252
12253 1998-11-16 Kenichi Handa <handa@etl.go.jp>
12254
12255 * international/mule.el
12256 (after-insert-file-set-buffer-file-coding-system): If the buffer
12257 is changed to unibyte, return inserted bytes.
12258
12259 * tar-mode.el (tar-header-block-tokenize): Decode codes of file
12260 and link names if necessary.
12261 (tar-header-block-summarize): Handle the case that file or link
12262 names are multibyte.
12263 (tar-summarize-buffer): At first set the current buffer unibyte,
12264 then if there are multibyte file names, change it to multibyte.
12265 (tar-mode): Get char position from tar-header-offset.
12266 (tar-extract): Avoid multibyte<->unibyte conversion in
12267 insert-buffer-subsring by setting both buffers unibyte
12268 temporarily.
12269 (tar-copy): Set the buffer unibyte while doing a work. Write
12270 without code conversion.
12271 (tar-expunge): Set the buffer unibyte while doing a work.
12272 (tar-alter-one-field): Likewise.
12273 (tar-clear-modification-flags): Compare byte position with
12274 tar-header-offset.
12275 (tar-subfile-save-buffer): Avoid multibyte<->unibyte conversion in
12276 insert-buffer-subsring by setting both buffers unibyte
12277 temporarily. Pay attention to multibyteness while updating the
12278 descriptor-line.
12279 (tar-mode-write-file): Write without code conversion.
12280
12281 1998-11-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12282
12283 * nngateway.el: Require cl.
12284
12285 1998-11-15 Dave Love <fx@gnu.org>
12286
12287 * progmodes/fortran.el: Fix previous change:
12288 (fortran-end-prog-re1): Changed.
12289 (fortran-check-end-prog-re): New function.
12290 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Use it.
12291
12292 1998-11-13 Tom Breton <tob@world.std.com>
12293
12294 * autoinsert.el (auto-insert-alist): Don't assume *.el is part of
12295 GNU Emacs.
12296
12297 1998-11-13 Carsten Dominik <cd@delysid.gnu.org>
12298
12299 * textmodes/reftex.el: (reftex-finding-files): Group documentation
12300 fixed.
12301 (reftex-toc-toggle-file-boundary,
12302 reftex-toc-toggle-labels,
12303 reftex-toc-toggle-context,reftex-find-start-point): New functions.
12304 (reftex-toc-include-labels, reftex-toc-include-context,
12305 reftex-toc-include-file-boundaries,
12306 reftex-toc-keep-other-windows): New options.
12307 (reftex-use-text-after-label-as-context): Option removed.
12308 (reftex-extract-bib-entries): Protect use in non-latex
12309 buffers.
12310 (reftex-toc-visit-location): Renamed from
12311 `reftex-toc-visit-line'.
12312 (reftex-latin1-to-ascii): Works now with and without Mule.
12313 (reftex-truncate): Removed special stuff for Emacs 20.2.
12314 (reftex-get-offset): Made more general.
12315 (reftex-show-label-location): Renamed from
12316 `reftex-select-label-callback'.
12317 (reftex-pop-to-label): Function removed (using
12318 `reftex-show-label-location' instead.
12319 (reftex-insert-docstruct): Renamed from
12320 `reftex-make-and-insert-label-list'. Function args changed.
12321 (reftex-toc): Now uses `reftex-insert-docstruct' and
12322 `reftex-find-start-point'.
12323 (reftex-select-item): Use `reftex-find-start-point'.
12324 (reftex-toc-visit-line): Can display labels and file
12325 boundaries.
12326 (reftex-TeX-master-file): `(TeX-master-file)' protected.
12327
12328 1998-11-12 Sam Steingold <sds@goems.com>
12329
12330 * browse-url.el (browse-url): Handle the case when
12331 `browse-url-browser-function' is a lambda list.
12332
12333 1998-11-12 Eli Zaretskii <eliz@mescaline.gnu.org>
12334
12335 * loadup.el (buffer-undo-list): For ms-dos, use fns.el without the
12336 version string.
12337 * loadhist.el (symbol-file): Likewise
12338
12339 1998-11-11 Richard Sharman <Richard_Sharman@Mitel.COM>
12340
12341 * ediff-init.el (ediff-even-diff-face-A): Fix stipple spelling.
12342
12343 1998-11-11 Sam Steingold <sds@goems.com>
12344
12345 * inf-lisp.el (switch-to-lisp): If no inferior lisp present, call
12346 `run-lisp' instead of signalling an error.
12347
12348 1998-11-11 Karl Heuer <kwzh@gnu.org>
12349
12350 * desktop.el (desktop-save, desktop-create-buffer): Undo 10-22 change.
12351
12352 1998-11-11 Richard Stallman <rms@gnu.org>
12353
12354 * vc-hooks.el (vc-toggle-read-only): Doc fix.
12355
12356 1998-11-11 Per Starback <starback@update.uu.se>
12357
12358 * ispell.el: (ispell-dictionary-alist-2): Removed svenska,
12359 renamed svenska8 to svenska, and fixed and extended CASECHARS
12360 for it.
12361
12362 1998-11-11 Andrew Innes <andrewi@delysid.gnu.org>
12363
12364 * ps-print.el (ps-print-prologue-1): Only use old LandscapeMode
12365 handling if setpagedevice is not available.
12366 (ps-begin-file): Fix typo.
12367
12368 1998-11-11 Kenichi Handa <handa@etl.go.jp>
12369
12370 * international/mule-util.el (compose-chars-component): Signal
12371 error if CH is a rule-based composition character.
12372 (compose-chars): Signal error if an already compsed character is
12373 going to be composed by rule-base.
12374
12375 * term/x-win.el: If a resolved ASCII font name doesn't conform to
12376 full XLFD, don't try to get information of WEIGHT and SLANT from
12377 that font name.
12378
12379 1998-11-10 Andrew Innes <andrewi@harlequin.co.uk>
12380
12381 * dos-w32.el (set-default-process-coding-system): Use function on
12382 before-init-hook to set default-process-coding-system based on
12383 enable-multibyte-characters.
12384
12385 * term/w32-win.el ([language-change]): For now ignore
12386 keyboard language-change events.
12387
12388 1998-11-10 Eli Zaretskii <eliz@delysid.gnu.org>
12389
12390 * ediff-util.el (ediff-make-temp-file): Run the prefix through
12391 convert-standard-file-name, but leave the results of
12392 make-temp-name unaltered. For MS-DOS, truncate the prefix to 2
12393 characters if the original name already exists, or has a special
12394 handler.
12395
12396 1998-11-10 Karl Heuer <kwzh@gnu.org>
12397
12398 * international/iso-insert.el: Delete autoload cookies.
12399
12400 * international/iso-transl.el: Add autoload cookies.
12401
12402 1998-11-10 Richard Stallman <rms@gnu.org>
12403
12404 * ispell.el (ispell-get-coding-system): Default to iso-latin-1.
12405 (ispell-process-line): Don't treat multibyte
12406
12407 1998-11-09 Andrew Innes <andrewi@harlequin.co.uk>
12408
12409 * ps-print.el (ps-print-prologue-1): In BeginDoc procedure, call
12410 setpagedevice to specify the page size if setpagedevice is
12411 available. This is necessary to select the correct paper tray on
12412 Level 2 printers with multiple paper sizes available.
12413
12414 (ps-begin-file): Cope with font names that contain spaces, and
12415 call BeginDoc in a BeginSetup/EndSetup block.
12416
12417 1998-11-08 Eli Zaretskii <eliz@mescaline.gnu.org>
12418
12419 * loadup.el (buffer-undo-list): Run fns-VERSION.el through
12420 convert-standard-filename.
12421
12422 * loadhist.el (symbol-file): Run fns-VERSION.el through
12423 convert-standard-filename.
12424
12425 1998-11-06 Richard Stallman <rms@gnu.org>
12426
12427 * textmodes/texinfmt.el (texinfo-format-scan):
12428 Detect the case of two @-commands in a row; process just the first.
12429 (texinfo-append-refill): If line has a @c, insert the @refill
12430 before it.
12431 (texinfo-format-refill): Return with point where the @refill was.
12432
12433 * files.el (hack-local-variables): Test local-enable-local-variables.
12434 (hack-local-variables-prop-line): Likewise.
12435 (set-auto-mode): Don't test local-enable-local-variables here.
12436 (enable-local-variables): Doc fix.
12437 (local-enable-local-variables): Doc fix.
12438 (normal-mode): Doc fix.
12439
12440 1998-11-06 Karl Heuer <kwzh@gnu.org>
12441
12442 * emacs-lisp/find-func.el (find-variable-noselect): Autoload.
12443
12444 1998-11-06 Richard Sharman <Richard_Sharman@Mitel.COM>
12445
12446 * simple.el (line-number-mode): Doc fix.
12447
12448 1998-11-06 Kenichi Handa <handa@etl.go.jp>
12449
12450 * international/fontset.el (create-fontset-from-fontset-spec):
12451 Give correct arg to `error'.
12452
12453 1998-11-06 Andreas Schwab <schwab@delysid.gnu.org>
12454
12455 * textmodes/sgml-mode.el (html-mode): Doc fix.
12456 (sgml-name-8bit-mode): Fix missing format character in message string.
12457
12458 1998-11-05 Karl Heuer <kwzh@gnu.org>
12459
12460 * mail/sendmail.el (sendmail-send-it): Check for failure.
12461
12462 1998-11-05 Richard Stallman <rms@gnu.org>
12463
12464 * man.el (Man-page-header-regexp): Alternate value for Solaris 2.6.
12465
12466 * rect.el (delete-whitespace-rectangle): close-rectangle renamed.
12467 (close-rectangle): Define as alias.
12468
12469 1998-11-05 Richard M. Heiberger <rmh@fisher.stat.temple.edu>
12470
12471 * textmodes/tex-mode.el (tex-start-shell): Track directory changes.
12472
12473 1998-11-05 Dave Love <fx@gnu.org>
12474
12475 * help.el (describe-variable): Don't quote link to source.
12476
12477 1998-11-04 Richard Stallman <rms@sucrose.ai.mit.edu>
12478
12479 * gud.el (gud-common-init): Use pop-to-buffer.
12480 (same-window-regexps): Add an element that matches all gud buffers.
12481
12482 1998-11-04 Jason Rumney <jasonr@altavista.net>
12483
12484 * term/w32-win.el (x-get-selection-value): Alias to
12485 x-cut-buffer-or-selection-value.
12486 (w32-standard-fontset-spec): New variable.
12487 (w32-create-initial-fontsets, mouse-set-font): Check whether
12488 new-fontset is available.
12489 (w32-use-w32-font-dialog): Enable use of set-variable.
12490
12491 1998-11-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
12492
12493 * vc.el (with-vc-file, edit-vc-file): New macros.
12494
12495 1998-11-04 Kenichi Handa <handa@etl.go.jp>
12496
12497 * international/quail.el (quail-show-guidance-buf): Call
12498 set-minibuffer-window to set minibuffer window of the current
12499 frame correctly.
12500
12501 1998-11-03 Theodore Jump <tjump@tertius.com>
12502
12503 * term/w32-win.el: Require fontset.
12504
12505 1998-11-03 Andrew Innes <andrewi@delysid.gnu.org>
12506
12507 * faces.el (set-face-font): Call resolve-fontset-name on w32.
12508 (set-face-font-auto): Ditto.
12509
12510 1998-11-03 Andreas Schwab <schwab@delysid.gnu.org>
12511
12512 * mouse.el (mouse-drag-region): Fix typo.
12513
12514 1998-11-02 Dave Love <fx@gnu.org>
12515
12516 * progmodes/fortran.el Fix for fontification of strings lost somehow:
12517 (fortran-fontify-string): New function.
12518 (fortran-font-lock-keywords-1): Use it.
12519
12520 1998-11-02 Markus Rost <rost@delysid.gnu.org>
12521
12522 * comint.el (comint-file-name-quote-list): Doc fix.
12523
12524 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu>
12525
12526 * loadup.el (buffer-undo-list): Write fns-VERSION.el into
12527 build directory, not source directory.
12528
12529 * mouse.el (mouse-drag-region): Fake up a mouse-motion event
12530 if we did not get one for the final move.
12531
12532 1998-11-01 Dave Love <fx@gnu.org>
12533
12534 * goto-addr.el (goto-address-at-point, goto-address-at-mouse):
12535 Don't funcall browse-url-browser-function.
12536
12537 * gnus/gnus-art.el (gnus-button-embedded-url, gnus-button-url):
12538 Don't funcall browse-url-browser-function.
12539
12540 * fortran.el (fortran-end-prog-re1): Fix the regexp.
12541
12542 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu>
12543
12544 * files.el (revert-buffer): Doc fix.
12545
12546 1998-10-31 Richard Stallman <rms@psilocin.ai.mit.edu>
12547
12548 * textmodes/tex-mode.el (tex-start-options-string):
12549 Quote the backslashes with more backslashes.
12550
12551 1998-10-31 Dave Love <fx@gnu.org>
12552
12553 * webjump.el (webjump-sample-sites): Fix Lisp archive site.
12554 (webjump): Don't funcall browse-url-browser-function.
12555
12556 1998-10-30 Kenichi Handa <handa@etl.go.jp>
12557
12558 * international/quail.el (quail-start-translation): Handle
12559 switching of the frame in read-key-sequence.
12560 (quail-start-conversion): Likewise.
12561 (quail-show-guidance-buf): Detach quail-guidance-buf from any
12562 windows before setting an appropriate window for it.
12563 (quail-hide-guidance-buf): Use window-minibuffer-p. Set
12564 quail-guidance-win to nil.
12565 (quail-update-guidance): If quail-guidance-buf is not in the
12566 selected frame, call quail-show-guidance-buf again.
12567
12568 1998-10-30 Espen Skoglund <espensk@stud.cs.uit.no>
12569
12570 * progmodes/pascal.el (pascal-mode):
12571 `blink-matching-paren-dont-ignore-comments' set to t.
12572
12573 1998-10-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12574
12575 * calendar/cal-menu.el (cal-menu-update): Fix menu wording.
12576
12577 1998-10-30 Dave Love <fx@gnu.org>
12578
12579 * vc.el (vc-backend-merge-news): Check for "P" output.
12580
12581 * help.el (describe-variable): Hyperlink the definition.
12582
12583 1998-10-30 Andreas Schwab <schwab@delysid.gnu.org>
12584
12585 * progmodes/sh-script.el (sh-canonicalize-shell): Fix regexp.
12586 (sh-set-shell): Likewise.
12587
12588 * gnus/nnweb.el: Don't require 'w3 and 'url unprotected.
12589
12590 * emacs-lisp/edebug.el (edebug-initial-mode): Fix customize type.
12591 (edebug-on-error): Fix customize type to match that of
12592 debug-on-error.
12593
12594 * emacs-lisp/eldoc.el (eldoc-argument-case): Fix customize type.
12595
12596 * emacs-lisp/lisp-mnt.el (lm-report-bug): Use
12597 report-emacs-bug-address instead of undefined bug-gnu-emacs.
12598
12599 * international/mule-cmds.el (select-message-coding-system): Doc
12600 fix.
12601
12602 * international/mule-diag.el (describe-coding-system): Describe
12603 all flags.
12604
12605 * mail/sendmail.el (sendmail-coding-system,
12606 default-sendmail-coding-system): Doc fix.
12607
12608 * simple.el (shell-command-on-region): Doc fix.
12609
12610 * loadup.el: Write fns-*.el in current directory instead of
12611 data-directory since no installation directory exists yet. Mark
12612 buffer unmodified afterwards.
12613
12614 * loadhist.el (symbol-file): Load fns-*.el from exec-directory
12615 instead of data-directory since it is architecture dependent.
12616 (load-history-loaded): Update doc string.
12617
12618 1998-10-29 Geoff Voelker <voelker@cs.washington.edu>
12619
12620 * ange-ftp.el (ange-ftp-canonicalize-filename): Do not use a UNC
12621 path as a default directory when canonicalizing names.
12622
12623 * w32-fns.el: Remove a dangling reference to a directory on the
12624 build machine.
12625
12626 1998-10-27 Richard Stallman <rms@psilocin.ai.mit.edu>
12627
12628 * progmodes/tcl-mode.el (tcl-font-lock-keywords): Added itcl and
12629 namespace related keywords such as `class', `body', `private',
12630 `variable', `namespace eval', etc.
12631 (tcl-imenu-generic-expression): Handle itcl body and class definitions.
12632 (tcl-mode): Added ":" as a word constituent to the syntax-alist of
12633 imenu and font-lock so that searches for \sw would find words
12634 containing colons.
12635
12636 * progmodes/etags.el (initialize-new-tags-table):
12637 Do not alter find-tag-marker-ring and tags-location-ring.
12638
12639 1998-10-27 Geoff Voelker <voelker@cs.washington.edu>
12640
12641 * term/w32-win.el: Require fontset.
12642 (w32-init-fontsets): New function (code from x-win.el).
12643
12644 1998-10-26 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12645
12646 * cal-x.el (diary-frame-parameters, calendar-frame-parameters,
12647 calendar-and-diary-frame-parameters): Add title parameter.
12648
12649 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu>
12650
12651 * completion.el (dynamic-completion-mode): New function to enable
12652 the mode. (Just loading the file now does not change anything.)
12653
12654 1998-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12655
12656 * ps-print.el: User option for multibyte buffer handling and doc fix.
12657 (ps-multibyte-buffer): New user option.
12658 (ps-setup): Print new user option.
12659 (ps-print-quote): New fun.
12660 (ps-color-p, ps-mule-font-info-database-latin): New var.
12661 (ps-default-color, ps-mule-font-info-database)
12662 (ps-mule-font-info-database-ps-bdf): Adjust initialization.
12663 (ps-mule-get-font-spec, ps-mule-begin, ps-begin-file)
12664 (ps-plot-with-face, ps-generate-postscript-with-faces, ps-generate):
12665 Little code improvement.
12666 (ps-mule-initialize): Initialize ps-mule-font-info-database.
12667 (ps-print-prologue-header, ps-font-family, ps-font-size)
12668 (ps-header-font-family, ps-header-font-size, ps-header-title-font-size)
12669 (ps-build-face-reference, ps-mule-font-info-database-bdf)
12670 (ps-mule-external-libraries, ps-mule-init-external-library)
12671 (ps-mule-prepare-font, ps-mule-find-wrappoint, ps-mule-plot-string):
12672 Doc fix.
12673 (ps-print-version): New version number (4.1.1) and doc fix.
12674 (ps-print-prologue-header): New user option.
12675 (ps-color-values, ps-xemacs-face-kind-p, ps-mapper, ps-extent-sorter):
12676 Conditional compilation for GNU Emacs and emacsens.
12677 (ps-generate-postscript-with-faces): Skip invisible text better.
12678 (ps-setup): Print new user option.
12679 (ps-print-preprint): Check if input file name exists and is unwritable.
12680 (ps-begin-file): Adjust PostScript prologue header for duplex printers
12681 and insert user PostScript prologue header comments.
12682 (ps-mule-encode-bit, ps-mule-string-ascii, ps-mule-string-encoding):
12683 New funs.
12684 (dos-ps-printer, lazy-lock-fontify-buffer): Eliminated.
12685 (ps-mule-prologue, ps-mule-cmpchar-prologue, ps-mule-bitmap-prologue):
12686 PostScript programming normalization.
12687 (ps-mule-encode-7bit, ps-mule-encode-8bit, ps-mule-generate-font)
12688 (ps-mule-generate-glyphs, ps-mule-prepare-font, ps-mule-plot-string)
12689 (ps-mule-skip-same-charset, ps-mule-plot-rule-cmpchar)
12690 (ps-mule-plot-cmpchar, ps-mule-prepare-cmpchar-font)
12691 (ps-mule-initialize, ps-mule-begin, ps-face-bold-p, ps-do-despool):
12692 Programming style normalization.
12693
12694 1998-10-26 Kenichi Handa <handa@etl.go.jp>
12695
12696 * ps-print.el: To make it work also on Emacs 20.2 and the earlier
12697 version, check the value of mule-version.
12698
12699 * international/mule-util.el (compose-region): Insert then delete
12700 to preserve markers.
12701 (decompose-region): Use search-forward for efficiency.
12702
12703 * language/chinese.el (pre-write-encode-hz): Cancel previous
12704 change, use generate-new-buffer instead of get-buffer-create.
12705 * language/devan-util.el
12706 (in-is13194-devanagari-pre-write-conversion): Likewise.
12707 * language/thai-util.el (thai-pre-write-conversion): Likewise.
12708 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
12709 * language/viet-util.el (viqr-pre-write-conversion): Likewise.
12710
12711 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu>
12712
12713 * mail/rmailsum.el (rmail-message-subject-p):
12714 Handle message whose header has not been reformatted.
12715
12716 * desktop.el (desktop-buffer-dired): Use dired-maybe-insert-subdir.
12717
12718 1998-10-25 Jason Rumney <jasonr@altavista.net>
12719
12720 * term/w32-win.el (w32-use-w32-font-dialog, w32-fixed-font-alist):
12721 New variables.
12722 (mouse-set-font): Use font menus instead of dialog according to
12723 w32-use-w32-font-dialog.
12724
12725 1998-10-21 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12726
12727 * calendar/calendar.el (calendar-day-name-array): Add doc string
12728 correctly!
12729 (calendar-month-name-array): Add doc string correctly!
12730
12731 1998-10-21 Richard Stallman <rms@psilocin.ai.mit.edu>
12732
12733 * net-utils.el (whois-get-tld): Rewrite not to use `do'.
12734
12735 1998-10-21 Markus Rost <rost@delysid.gnu.org>
12736
12737 * lisp/info.el (Info-next-menu-item): Stay on top of node.
12738
12739 * mail/rmailout.el (rmail-output): Insert newline only if necessary.
12740
12741 * mail/rmail.el (rmail-get-new-mail): Delete garbage in any case.
12742
12743 * menu-bar.el (menu-bar-options-menu): Add option for truncate-lines.
12744
12745 1998-10-21 Andreas Schwab <schwab@delysid.gnu.org>
12746
12747 * emacs-lisp/cl-specs.el (function-form): Fix spec for "function*".
12748
12749 1998-10-21 Karl Heuer <kwzh@gnu.org>
12750
12751 * emacs-lisp/profile.el (profile-timer-program): Var deleted.
12752 (profile-timer-process, profile-temp-result-, profile-time): Likewise.
12753 (profile-filter, profile-reset-timer): Functions deleted.
12754 (profile-check-zero-init-times, profile-get-time): Likewise.
12755 (profile-find-function, profile-quit): Likewise.
12756 (profile-distinct, profile-call-stack, profile-last-time): New vars.
12757 (profile-time-list, profile-init-list): Doc fix.
12758 (profile-functions): Simplify.
12759 (profile-print): Use float. Make output include space separators.
12760 (profile-add-time): New helper function.
12761 (profile-function-prolog): Renamed from profile-start-function.
12762 Handle profile-distinct.
12763 (profile-function-epilog): Renamed from profile-update-function.
12764 Handle profile-distinct.
12765 (profile-a-function): If the function to be profiled is an
12766 autoload form, load it. If it's lazy-loaded, fetch it.
12767 (profile-fix-fun): Simplify profiling wrapper, and unwind-protect it.
12768 (profile-restore-fun): Arg FUN is now a function symbol, as was
12769 documented, rather than a one-element list.
12770 (profile-finish): Call profile-restore-fun properly.
12771
12772 1998-10-21 Kenichi Handa <handa@etl.go.jp>
12773
12774 * international/characters.el: Setup charset property
12775 nospace-between-words.
12776
12777 * international/mule-cmds.el (get-charset-property): If CHARSET is
12778 composition, return nil.
12779 (put-charset-property): If CHARSET is composition, do nothing.
12780
12781 * language/chinese.el (pre-write-encode-hz): Use with-temp-buffer.
12782 * language/devan-util.el
12783 (in-is13194-devanagari-pre-write-conversion): Likewise.
12784 * language/thai-util.el (thai-pre-write-conversion): Likewise.
12785 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
12786 * language/viet-util.el (viqr-pre-write-conversion): Likewise.
12787
12788 * textmodes/fill.el (sentence-end-without-period): New variable.
12789 (canonically-space-region): Pay attention to
12790 sentence-end-without-period.
12791 (fill-find-break-point): The first argument CHARSET deleted.
12792 Caller changed.
12793 (fill-region-as-paragraph): Pay attention to charset property
12794 nospace-between-words and text property nospace-between-words.
12795
12796 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu>
12797
12798 * progmodes/sh-script.el (sh-font-lock-keywords): Don't crash for
12799 an unrecognized shell.
12800
12801 1998-10-20 Thien-Thi Nguyen <ttn@delysid.gnu.org>
12802
12803 * desktop.el (desktop-save): Include minor modes symbolically.
12804 (desktop-create-buffer): Turn on all minor modes in `mim'.
12805
12806 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu>
12807
12808 * progmodes/sh-script.el (sh-mode): Handle .spec and .mspec files.
12809 (sh-font-lock-keywords): Handle rpm and rpm2.
12810 (sh-ancestor-alist): Handle rpm.
12811
12812 * files.el (auto-mode-alist): Recognize .rpm files.
12813 Also .spec and .mspec files.
12814
12815 1998-10-20 Eli Zaretskii <eliz@mescaline.gnu.org>
12816
12817 * faces.el (frame-set-background-mode): Enable the function for
12818 MSDOS frames.
12819
12820 1998-10-20 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12821
12822 * calendar/calendar.el (calendar-day-name-array): Add doc string.
12823 (calendar-month-name-array): Add doc string.
12824
12825 1998-10-19 Richard Stallman <rms@psilocin.ai.mit.edu>
12826
12827 * simple.el (kill-ring-max): Increased to 60.
12828
12829 1998-10-17 Kenichi Handa <handa@etl.go.jp>
12830
12831 * international/characters.el: Setup auto-fill-chars.
12832
12833 * international/kinsoku.el (kinsoku): Check the variable
12834 enable-kinsoku.
12835
12836 * simple.el (do-auto-fill): Don't check kinsoku-enable here.
12837 Don't call kinsoku directly, intead call fill-find-break-point.
12838
12839 * textmodes/fill.el: Setup `fill-find-break-point-function'
12840 property to character sets which require `kinsoku' processing for
12841 filling.
12842 (fill-find-break-point): New function.
12843 (fill-region-as-paragraph): Don't check kinsoku-enable here.
12844 Don't call kinsoku directly, intead call fill-find-break-point.
12845
12846 1998-10-18 Richard Stallman <rms@psilocin.ai.mit.edu>
12847
12848 * faces.el (modify-face-read-string): Return (nil) for "none".
12849 (modify-face): Don't get error if (nil) is the argument.
12850 (face-try-color-list): Don't check whether nil is a valid color.
12851
12852 1998-10-17 Richard Stallman <rms@psilocin.ai.mit.edu>
12853
12854 * emacs-lisp/bytecomp.el (byte-recompile-directory):
12855 Print message about each directory, even in batch mode.
12856
12857 * gnus/nntp.el: Require `cl' before using nnoo-declare.
12858
12859 * ps-print.el (ps-mule-chars-in-string): No need to use sref.
12860 (ps-mule-string-char): No need to use sref.
12861 (ps-mule-next-index): No need to use sref.
12862
12863 * ange-ftp.el (ange-ftp-waiting-flag): defvar moved.
12864
12865 * files.el (revert-buffer-internal-hook): Add defvar.
12866
12867 * arc-mode.el (archive-mode): Locally set file-precious-flag.
12868
12869 * tar-mode.el (tar-mode): Locally set file-precious-flag.
12870
12871 1998-10-16 Markus Rost <rost@delysid.gnu.org>
12872
12873 * international/mule-cmds.el (default-input-method): Fix custom type.
12874
12875 * net-utils.el (whois-server-list): Fix customization type.
12876
12877 * shell.el (shell-input-autoexpand): Fix customization group.
12878
12879 1998-10-16 Richard Stallman <rms@psilocin.ai.mit.edu>
12880
12881 * repeat.el (repeat): Handle keyboard macros properly.
12882 Handle new prefix arg after self-insert command.
12883
12884 * repeat.el: Don't include cl even at compile time.
12885 (repeat): Avoid using `loop'.
12886
12887 * simple.el (shell-command-on-region): Doc fix.
12888 (next-history-element): Special error message if no default.
12889
12890 1998-10-15 Richard Stallman <rms@psilocin.ai.mit.edu>
12891
12892 * ps-print.el (ps-print-buffer): Doc fix.
12893 (ps-despool): Likewise.
12894
12895 * arc-mode.el (arc-mode): Provide arc-mode.
12896
12897 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu>
12898
12899 * ps-print.el (ps-print-buffer): Doc fix.
12900
12901 1998-10-14 Dave Love <fx@gnu.org>
12902
12903 * ange-ftp.el (ange-ftp-read-passwd): Function deleted.
12904 (ange-ftp-set-passwd): Use read-passwd, not ange-ftp-read-passwd.
12905 (ange-ftp-get-passwd, ange-ftp-set-account): Likewise.
12906
12907 * progmodes/fortran.el (fortran-mode-map): Change "Join
12908 Continuation Line" to "Join Line".
12909 (fortran-font-lock-keywords-1): Add "cycle", "exit".
12910
12911 1998-10-14 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
12912
12913 * progmodes/fortran.el (fortran-join-line): Use
12914 `delete-indentation' instead of issuing an error message if not on
12915 a continuation line. Provide for joining several lines using
12916 prefix arg.
12917
12918 1998-10-14 Eli Zaretskii <eliz@mescaline.gnu.org>
12919
12920 * term/pc-win.el (msdos-color-values): New variable.
12921 (x-color-values): New function, emulates its namesake from
12922 src/xfns.c.
12923 (msdos-bg-mode): Add all dark colors to those which return
12924 "dark".
12925
12926 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu>
12927
12928 * replace.el (keep-lines, flush-lines, how-many):
12929 Don't ignore case if arg has upper case letters.
12930
12931 1998-10-11 Reto Zimmermann <zimmi@iis.ee.ethz.ch>
12932
12933 * progmodes/vhdl-mode.el
12934 (vhdl-add-index-menu): Reverse order in imenu-generic-expression.
12935 (vhdl-template-assert, vhdl-block, vhdl-configuration-spec)
12936 (vhdl-elsif, vhdl-generate, vhdl-if, vhdl-map)
12937 (vhdl-selected-signal-assignment, vhdl-use, vhdl-while-loop)
12938 (vhdl-get-port, vhdl-get-generic): Replace (undo 0) by (undo).
12939 (vhdl-when): Fix indentation problem.
12940 (vhdl-outer-space): Add "_" to syntax table for expand-abbrev.
12941 (vhdl-get-port, vhdl-get-generic): Bug fix in template.
12942 (vhdl-hooked-abbrev): Bug fix in hooked abbrev.
12943
12944 1998-10-13 Geoff Voelker <voelker@cs.washington.edu>
12945
12946 * ls-lisp.el (ls-lisp-use-insert-directory-program): New variable.
12947 (ls-lisp-insert-directory): Renamed from insert-directory.
12948 (insert-directory): New function.
12949
12950 1998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu>
12951
12952 * simple.el (completion-fixup-function): Variable deleted.
12953 (completion-setup-function): Delete code for completion-fixup-function.
12954 * emacs-lisp/lisp.el (lisp-complete-symbol):
12955 Don't bind completion-fixup-function.
12956
12957 * files.el (find-file-wildcards): New option.
12958 (find-file-noselect): Handle wild cards, if enabled.
12959 (file-expand-wildcards): New function.
12960
12961 * simple.el (set-fill-column): Doc fix.
12962
12963 1998-10-13 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12964
12965 * mail/uce.el (uce-reply-to-uce): Bind case-fold-search.
12966
12967 1998-10-13 Andreas Schwab <schwab@mescaline.gnu.org>
12968
12969 * progmodes/hideif.el: (hide-ifdef-env, hif-outside-read-only):
12970 Move declaration before first use.
12971 (hif-parse-if-exp, hif-nexttoken, hif-expr, hif-term, hif-eq-expr,
12972 hif-math, hif-factor): Rename token to hif-token and token-list to
12973 hif-token-list.
12974 (hif-token, hif-token-list): Declare them.
12975 (hif-find-ifdef-block): Return cons of top and bottom point
12976 instead of setting dynamically bound variables.
12977 (hide-ifdef-block, show-ifdef-block): Use return value of
12978 hif-find-ifdef-block.
12979
12980 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu>
12981
12982 * subr.el (read-passwd): Use clear-this-command-keys.
12983
12984 * telnet.el (telnet-initial-filter): Use clear-this-command-keys.
12985
12986 * gnus/pop3.el (pop3-open-server): Bind coding-system-for-read
12987 and ...-for-write.
12988
12989 1998-10-12 Andrew Innes <andrewi@harlequin.co.uk>
12990
12991 * gnus/nntp.el (nntp-possibly-change-group): Allow for unexpected
12992 responses to GROUP command, since this may be called from a timer
12993 with quit inhibited.
12994
12995 1998-10-12 Kenichi Handa <handa@etl.go.jp>
12996
12997 * international/ccl.el (ccl-compile-if): If there's no false-cmds,
12998 set unconditional-jump to nil.
12999 (ccl-compile-read-multibyte-character): Return nil.
13000 (ccl-compile-write-multibyte-character): Likewise.
13001 (ccl-compile-translate-character): Likewise
13002 (ccl-compile-map-multiple): Likewise.
13003 (ccl-compile-map-single): Likewise.
13004
13005 * international/kinsoku.el: Add coding tag.
13006 (kinsoku-bol): Remove superfluous TAB in a string.
13007
13008 * international/mule-cmds.el (find-coding-systems-for-charsets):
13009 Delete `composition' (if any) from CHARSETS.
13010
13011 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu>
13012
13013 * international/mule-cmds.el (setup-specified-language-environment):
13014 Add apropos-inhibit property.
13015 (describe-specified-language-support): Likewise.
13016
13017 1998-10-11 Kenichi HANDA <handa@etl.go.jp>
13018
13019 * international/mule.el (make-coding-system): Create -with-esc
13020 variant coding system.
13021
13022 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu>
13023
13024 * progmodes/etags.el (tags-loop-revert-buffers): New variable.
13025 (next-file): Optionally offer to revert a file's buffer,
13026 if it has an existing buffer but the file has changed.
13027
13028 * info.el (Info-insert-dir): Detect and report problems
13029 in input files, such as "No Top node". Return with point
13030 at the beginning of the text.
13031 (Info-find-node): Reinsert the code to handle files
13032 with no tags table; it was deleted by mistake.
13033
13034 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu>
13035
13036 * textmodes/texnfo-upd.el (texinfo-make-menu): Don't let
13037 texinfo-find-higher-level-node repeatedly find the same node.
13038 (texinfo-find-higher-level-node): Doc fix.
13039
13040 1998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu>
13041
13042 * mail/smtpmail.el (smtpmail-send-data-1): Use encode-coding-string.
13043 (smtpmail-address-buffer): Add defvar.
13044 (smtpmail-recipient-address-list, smtpmail-read-point): Likewise.
13045
13046 * mail/feedmail.el (feedmail-queue-runner-is-active): Definition moved.
13047
13048 * ffap.el (ffap-machine-p-local): Fix editing error.
13049
13050 1998-10-09 Richard Stallman <rms@psilocin.ai.mit.edu>
13051
13052 * faces.el (frame-set-background-mode):
13053 Don't do anythung for text-only or MSDOS frame.
13054
13055 1998-10-08 Kenichi Handa <handa@etl.go.jp>
13056
13057 * international/quail.el (quail-defrule): New optional arg APPEND.
13058 (quail-defrule-internal): Fix bug of handling the argument APPEND.
13059
13060 1998-10-08 Richard Stallman <rms@psilocin.ai.mit.edu>
13061
13062 * gnus/pop3.el (pop3-open-server):
13063 Set process-coding-system-alist around open-network-stream.
13064
13065 1998-10-07 Richard Stallman <rms@psilocin.ai.mit.edu>
13066
13067 * files.el (save-buffer): Doc fix.
13068
13069 1998-10-07 Karl Heuer <kwzh@gnu.org>
13070
13071 * emacs-lisp/profile.el (profile-fix-fun): If already profiled,
13072 return DEF unchanged, not nil. Simplify.
13073
13074 1998-10-06 Geoff Voelker <voelker@cs.washington.edu>
13075
13076 * dos-w32.el (file-name-buffer-file-type-alist): Fix typo in regexp.
13077
13078 1998-10-06 Peter Breton <pbreton@ne.mediaone.net>
13079
13080 * generic.el (generic-mode-with-type): Added hooks for generic-modes.
13081
13082 * net-utils.el (ftp, nslookup): Require comint.
13083 (network-service-connection): Likewise.
13084 (whois-server-name): Defaults to whois.arin.net
13085 (whois-server-list, whois-server-tld, whois-guess-server): New var.
13086 (whois): Tries to guess the appropriate top-level domain server.
13087 (whois-get-tld): New function.
13088
13089 * dirtrack.el: Mentioned dirtrack-debug-toggle in the docs.
13090 (dirtrack-debug-toggle): Added this function.
13091
13092 1998-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
13093
13094 * files.el (find-file-noselect): Switch to the correct buffer
13095 before checking find-file-literally, and allow non-nil non-t
13096 rawfile params.
13097
13098 1998-10-06 Karl Heuer <kwzh@gnu.org>
13099
13100 * midnight.el (clean-buffer-list): Add autoload cookie.
13101
13102 * arc-mode.el (archive-mode-revert): Arg no-auto-save renamed from
13103 no-autosave.
13104 * tar-mode.el (tar-mode-revert): Likewise.
13105 * ediff-util.el (ediff-arrange-auto-save-in-merge-jobs): Renamed
13106 from ediff-arrange-autosave-in-merge-jobs. Callers changed.
13107 * gnus/message.el (message-auto-save-directory): Renamed from
13108 message-autosave-directory. All references changed.
13109
13110 1998-10-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
13111
13112 * mail/rmail.el (rmail-retry-failure): Allow blanks in boundary
13113 string. Expose mime stuff while searching.
13114
13115 1998-10-06 Richard Stallman <rms@gnu.org>
13116
13117 * emacs-lisp/lisp-mode.el (eval-defun): Return the evaluation result.
13118
13119 * replace.el (perform-replace): Position point properly
13120 before and after the recursive edit of C-r.
13121
13122 * progmodes/etags.el (tags-reset-tags-tables): Properly
13123 find the markers in the old rings that are being discarded.
13124
13125 1998-10-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
13126
13127 * apropos.el (apropos-print): Control invalid characters.
13128
13129 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
13130 Renamed from lm-font-lock-O-face, lm-font-lock-X-face to avoid
13131 confusing customize.
13132
13133 1998-10-06 Eli Zaretskii <eliz@mescaline.gnu.org>
13134
13135 * generic-x.el (bat-generic-mode): Fix regexps for keywords and
13136 built-in commands. Add more built-in commands and fix face names.
13137
13138 1998-10-05 Simon Marshall <simon@gnu.org>
13139
13140 * menu-bar.el (menu-bar-tools-menu): Added entry for Speedbar.
13141
13142 1998-10-04 Eric Ludlam <zappo@gnu.org>
13143
13144 * speedbar.el (speedbar-initial-expansion-list-name): Remove
13145 customization since it is not useful in this case.
13146 (speedbar-frame-mode): Check if cfx or cfy is a list, and make
13147 sure it gets evalled to a number. Also verify that set-frame-name
13148 fn exists before calling it.
13149
13150 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
13151 Protect a `forward-sexp' call which could fail, and improved regex
13152 for ie, and eg abbreviations.
13153
13154 1998-10-02 Noah Friedman <friedman@splode.com>
13155
13156 * rlogin.el (rlogin-send-Ctrl-C): Use process-send-string, not
13157 send-string.
13158 (rlogin-send-Ctrl-D): Here also.
13159 (rlogin-send-Ctrl-Z): Here also.
13160 (rlogin-send-Ctrl-backslash): Here also.
13161
13162 1998-10-02 Dave Love <fx@gnu.org>
13163
13164 * outline.el (hide-region-body): Bind
13165 outline-view-change-hook to nil while making repeated calls to
13166 outline-flag-region. Run it once at the end.
13167 (hide-other, hide-sublevels, show-children): Likewise.
13168
13169 * info-look.el: Remove duplicate scheme-mode entry.
13170 (info-lookup-make-completions): When looking for entries, check
13171 that `item' isn't null or "Menu".
13172
13173 1998-10-01 Karl Heuer <kwzh@gnu.org>
13174
13175 * net-utils.el: Don't require ffap.
13176 (net-utils-machine-at-point, net-utils-url-at-point): New functions.
13177 (ping, nslookup-host, finger, network-connection-to-service): Use them.
13178
13179 1998-09-30 Richard Stallman <rms@gnu.org>
13180
13181 * ispell.el (check-ispell-version): No need to bind default-major-mode.
13182
13183 * imenu.el (imenu--generic-function): Sort each submenu by position.
13184 (imenu--sort-by-position): New function.
13185
13186 * cus-edit.el (Custom-mode-menu): Fix info node name.
13187 (customize group): Fix info node name.
13188
13189 * mail/mailalias.el (build-mail-aliases): Don't allow
13190 a newline in the alias name. Don't define an alias
13191 if the definition would be empty.
13192
13193 * which-func.el (which-func-mode-global): Make :set function
13194 more reliable.
13195
13196 * custom.el (custom-set-variables): Load the requests first,
13197 then check the symbol's `set' function.
13198
13199 * ffap.el: Doc fixes.
13200
13201 1998-09-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
13202
13203 * gnus.el: (gnus-valid-select-methods): Fix type.
13204 * gnus-sum.el (gnus-summary-respool-default-method): Fix type.
13205 * gnus-score.el (gnus-orphan-score): Fix type.
13206 (gnus-score-default-header, gnus-score-default-type): Fix type.
13207 * gnus-art.el (gnus-article-x-face-too-ugly): Fix type.
13208 (gnus-saved-headers): Fix type.
13209
13210 * lisp/textmodes/fill.el (fill-individual-paragraphs-prefix):
13211 Avoid nil value of `two-lines-citation-part'.
13212
13213 1998-09-30 Roman Belenov <roman@nstl.nnov.ru>
13214
13215 * which-func.el (which-function): Handle case when
13216 (car imenu--index-alist) is nil.
13217
13218 1998-09-29 Dave Love <fx@gnu.org>
13219
13220 * jka-compr.el (jka-compr-compression-info-list): Remove "-c" from
13221 bzip2 args.
13222
13223 1998-09-29 Simon Marshall <simon@gnu.org>
13224
13225 * comint.el (comint-mode): Use make-local-hook for pre-command-hook and
13226 comint-exec-hook.
13227
13228 1998-09-29 Stephen Eglen <stephen@gnu.org>
13229
13230 * info-look.el: Add support for Octave.
13231
13232 1998-09-28 Carsten Dominik <cd@delysid.gnu.org>
13233
13234 * textmodes/reftex.el (reftex-finding-files): New customize group.
13235 (reftex-texpath-environment-variables,
13236 reftex-use-external-file-finders, reftex-external-file-finders,
13237 reftex-search-unrecursed-path-first): New options.
13238 (reftex-process-string, reftex-find-file-externally): New
13239 functions.
13240 (reftex-access-search-path): Execute shell commands to find the
13241 search path.
13242 (reftex-toggle-auto-view-crossref): When turning on, make sure
13243 `reftex-auto-view-crossref' becomes non-nil.
13244 (reftex-abbrev-regexp): Constant removed.
13245 (reftex-convert-string): Abbrev regexp calculated locally.
13246
13247 1998-09-28 Dave Love <fx@gnu.org>
13248
13249 * progmodes/fortran.el: Don't call regexp-opt when deriving
13250 font-lock patterns with keywords that aren't all literal.
13251
13252 1998-09-27 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
13253
13254 * octave-inf.el (inferior-octave-prompt): Also match prompts of
13255 the form `octave.bin:1>' which come from using precopiled binary
13256 versions.
13257
13258 1998-09-27 Richard Stallman <rms@psilocin.ai.mit.edu>
13259
13260 * help.el (help-for-help): Use %THIS-KEY%.
13261 (help-quit): Add doc.
13262
13263 * help-macro.el (make-help-screen): Keep HELP-TEXT
13264 in a separate function definition, not in the help command FNAME.
13265 Replace %THIS-KEY% with the key sequence that ran FNAME.
13266
13267 1998-09-25 Richard Stallman <rms@gnu.org>
13268
13269 * textmodes/texinfo.el (texinfo-show-structure):
13270 Bind inhibit-read-only.
13271
13272 * isearch.el (isearch-search-and-update): Properly
13273 handle upper case letters in the reverse-search special case.
13274
13275 1998-09-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
13276
13277 * gnus.el: Extend the list of autoloaded functions.
13278
13279 * gnus/gnus-start.el (gnus-check-first-time-used): Change current
13280 buffer before creating help group. (from Gnus v5.6.43, fix by
13281 1998-08-20 Per Starback <starback@update.uu.se>)
13282
13283 * gnus-util.el (gnus-output-to-rmail): Adjust to
13284 `rmail-output-to-rmail-file'.
13285
13286 1998-09-25 Karl Heuer <kwzh@gnu.org>
13287
13288 * hexl.el (hexl-mode-map): More of previous change.
13289
13290 * textmodes/tex-mode.el (tex-run-command): Doc fix.
13291 (tex-start-tex): Don't use tex-start-options-string in star case.
13292 Quote file name in star case as well as in non-star.
13293 Add blank and quoting of option string here.
13294 (tex-start-options-string): Not here.
13295
13296 1998-09-23 Karl Heuer <kwzh@gnu.org>
13297
13298 * term.el (term-delimiter-argument-list): Doc fix.
13299 (term-emulate-terminal): Escape literal semicolon.
13300 * progmodes/asm-mode.el (asm-mode): Doc fix.
13301 (asm-comment-char): Escape literal semicolon.
13302 * emulation/viper-cmd.el (viper-movement-commands): Likewise.
13303
13304 1998-09-23 Richard Stallman <rms@gnu.org>
13305
13306 * hexl.el (hexl-mode-map): Don't override all ESC bindings,
13307 only those that normally modify the buffer.
13308
13309 * dabbrev.el (dabbrev--find-expansion): Don't scan the current buffer
13310 over again.
13311
13312 1998-09-23 E. Jay Berkenbilt <ejb@ql.org>
13313
13314 * ispell.el (check-ispell-version): Ensure same buffer is current
13315 when let-binding of case-fold-search ends.
13316
13317 1998-09-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13318
13319 * ps-print.el: Skip invisible overlay.
13320 Test for set-buffer-multibyte rather than using mule-version.
13321 (ps-print-version): New version number (4.1) and doc fix.
13322 (ps-generate-postscript-with-faces): Skip invisible overlay.
13323
13324 1998-09-23 Fritz Knabe <knabe@cs.virginia.edu>
13325
13326 * mail/mh-mime.el (mh-mhn-compose-insertion): Use quotes.
13327
13328 1998-09-22 Kenichi Handa <handa@etl.go.jp>
13329
13330 * international/quail.el (quail-update-guidance): Check for the
13331 return value of (quail-guidance) fixed.
13332 (quail-update-translation): Bind quail-current-str locally when it
13333 calls quail-update-guidance.
13334 (quail-update-translation): If input-method-exit-on-first-char is
13335 non-nil, terminate translation only when the current input method
13336 is simple.
13337
13338 1998-09-22 Paul Eggert <eggert@twinsun.com>
13339
13340 * startup.el (locale-translation-file-name): Prefer X-related names
13341 to the name used by GNU/Linux sans X. Set to nil if no file found.
13342 (command-line): Use locale-translation-file-name if it is not nil,
13343 instead of testing for its existence again.
13344 regexp-quote the ctype before using it in a regexp.
13345 Allow a colon to appear after the ctype in the aliases file,
13346 as is done in X11R6.4.
13347
13348 1998-09-21 Richard Stallman <rms@gnu.org>
13349
13350 * mail/rmail.el (rmail-resend): Work properly if invoked from summary.
13351
13352 * calendar/appt.el (appt-interval): Variable deleted.
13353 (appt-check): For minutes in between appt-display-interval times,
13354 do check, but don't display anything except an updated mode line.
13355 Count against appt-display-interval based on minutes since
13356 first display of this appointment, not based on time of day.
13357 If appt-display-mode-line, force mode line redisplay
13358 whenever appt-mode-string has changed.
13359 (appt-add, appt-delete): Add autoload cookies.
13360 (appt-check): Catch errors from calling `diary'.
13361 (appt-max-time): Renamed from max-time.
13362 (appt-now-displayed, appt-display-count): New variables.
13363 (appt-timer): Don't create one if we already have one.
13364
13365 * textmodes/tex-mode.el (tex-compilation-parse-errors):
13366 More general code to use the source buffer instead of the zap file.
13367
13368 * hilit-chg.el (highlight-compare-with-file): Renamed from
13369 compare-with-file.
13370
13371 * loadhist.el (load-history-loaded): New variable.
13372 (symbol-file): Load etc/fns-VERSION.el if that has not been done.
13373
13374 * loadup.el: Write load-history into etc/fns-VERSION.el, then clear it.
13375
13376 * emacs-lisp/find-func.el (find-function-search-for-symbol):
13377 Fix error messages.
13378
13379 1998-09-21 Markus Armbruster <armbru@pond.sub.org>
13380
13381 * avoid.el (mouse-avoidance-banish-hook): Don't move unless in an
13382 Emacs frame.
13383
13384 1998-09-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
13385
13386 * mail/rmail.el (rmail-decode-babyl-format): Recognize both
13387 `undecided' and `undecided-unix'.
13388
13389 1998-09-21 Dave Love <fx@gnu.org>
13390
13391 * help.el (help-make-xrefs): Fix typo affecting Info references.
13392
13393 * subr.el (remove-hook): Check list values to avoid errors.
13394
13395 1998-09-18 Noah Friedman <friedman@splode.com>
13396
13397 * emacs-lisp/eldoc.el (eldoc-message): Check for 1-arg case, and
13398 store string in eldoc-last-message without consing a new string.
13399 Rearrange logic from nested if's into cond's.
13400 (eldoc-print-fnsym-args): Renamed to eldoc-get-fnsym-args-string.
13401 Do not print message; just return string.
13402 (eldoc-get-var-docstring): Renamed from eldoc-print-var-docstring.
13403 Do not print message; just return string.
13404 Cache that string in eldoc-last-data.
13405 (eldoc-last-data): Make into a vector.
13406 (eldoc-get-fnsym-args-string): Use new data form of structure.
13407 (eldoc-get-var-docstring): Here also.
13408 (eldoc-last-data-store): New function.
13409 (eldoc-get-fnsym-args-string): Use it.
13410 (eldoc-get-var-docstring): Here also.
13411 (eldoc-docstring-first-line): Minimize interim string consing.
13412 Call substitute-command-keys on the result.
13413 (eldoc-print-var-docstrings, eldoc-print-docstring,
13414 eldoc-docstring-message): Functions removed.
13415 (eldoc-docstring-format-sym-doc): New function, functionality
13416 ripped out of eldoc-docstring-message.
13417 (eldoc-get-fnsym-args-string, eldoc-get-var-docstring): Use it.
13418
13419 1998-09-18 Kenichi Handa <handa@etl.go.jp>
13420
13421 * international/mule.el (make-coding-system): Doc-string modified.
13422
13423 1998-09-18 Andreas Schwab <schwab@delysid.gnu.org>
13424
13425 * progmodes/vhdl-mode.el (vhdl-header-file): Fix customize type.
13426
13427 * progmodes/cpp.el (cpp-face-light-list, cpp-face-dark-list): Fix
13428 customize type.
13429
13430 * progmodes/cperl-mode.el (cperl-lazy-help-time): Fix customize
13431 type.
13432
13433 * progmodes/compile.el (compilation-error-screen-columns): New
13434 variable.
13435 (compilation-next-error-locus): Use it to decide whether to use
13436 forward-char or move-to-column.
13437
13438 * mail/rmail.el (rmail-movemail-program): Fix customize type.
13439
13440 * mail/feedmail.el (feedmail-x-mailer-line-user-appendage,
13441 feedmail-fiddle-plex-user-list,
13442 feedmail-spray-address-fiddle-plex-list,
13443 feedmail-prompt-before-queue-user-alist,
13444 feedmail-prompt-before-queue-help-supplement,
13445 feedmail-queue-reminder-alist, feedmail-queue-default-file-slug,
13446 feedmail-queue-alternative-mail-header-separator): Fix customize
13447 type.
13448
13449 * startup.el (site-run-file): Fix customize type.
13450
13451 * speedbar.el (speedbar-initial-expansion-list-name): Fix
13452 customize type.
13453
13454 * shell.el (shell-input-autoexpand): Fix customize type.
13455
13456 * ps-print.el (ps-font-info-database): Add missing dots in value.
13457 Improve layout of customize type.
13458
13459 * net-utils.el (traceroute-program-options, ping-program-options,
13460 ipconfig-program-options, netstat-program-options,
13461 arp-program-options, route-program-options,
13462 nslookup-program-options, ftp-program-options): Fix customize
13463 type.
13464
13465 * midnight.el (clean-buffer-list-kill-regexps,
13466 clean-buffer-list-kill-buffer-names,
13467 clean-buffer-list-kill-never-buffer-names,
13468 clean-buffer-list-kill-never-regexps): Fix customize type.
13469
13470 * man.el (Man-init-defvars): Avoid trailing nil on
13471 Man-filter-list.
13472
13473 * lpr.el (printer-name): Fix customize type.
13474
13475 1998-09-16 Kenichi Handa <handa@etl.go.jp>
13476
13477 * international/mule-cmds.el (reset-language-environment): Call
13478 update-coding-systems-internal.
13479
13480 * international/mule-conf.el: Call update-coding-systems-internal
13481 at the tail.
13482
13483 1998-09-14 Dave Love <fx@gnu.org>
13484
13485 * vc-hooks.el (vc-menu-map): Change the vc-directory label. Don't
13486 use the menu-enable properties, pending doing it correctly and
13487 acceptably fast.
13488
13489 * map-ynp.el (map-y-or-n-p): Mention RET, `q' in the help text.
13490
13491 1998-09-13 Dave Love <d.love@dl.ac.uk>
13492
13493 * progmodes/hideshow.el (hs-grok-mode-type): Check
13494 comment-{start,end} non-nil as well as bound. Report an error if
13495 we can't grok the mode.
13496
13497 1998-09-13 Richard Stallman <rms@gnu.org>
13498
13499 * simple.el (blink-matching-open): Don't log paren matching
13500 messages in *Messages*.
13501
13502 1998-09-12 Richard Stallman <rms@gnu.org>
13503
13504 * scroll-bar.el (scroll-bar-scroll-down, scroll-bar-scroll-up):
13505 Set point-before-scroll at end even if there was an error.
13506
13507 * ange-ftp.el (ange-ftp-insert-file-contents):
13508 Use binary mode for dumb-unix hosts as for unix hosts.
13509 (ange-ftp-copy-file-internal): Likewise.
13510
13511 * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
13512
13513 * emacs-lisp/pp.el: Doc fixes.
13514
13515 * wid-edit.el (widget-menu-max-shortcuts): New variable.
13516 (widget-choose): Don't use single-char shortcuts if # items
13517 exceeds that many. Use minibuffer instead.
13518
13519 1998-09-12 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13520
13521 * calendar/diary-lib.el (mark-sexp-diary-entries): Fix previous chg.
13522
13523 1998-09-12 Eric Ludlam <zappo@mescaline.gnu.org>
13524
13525 * speedbar.el (speedbar-frame-mode): Do not set frame position if
13526 in terminal mode.
13527
13528 1998-09-10 Noah Friedman <friedman@splode.com>
13529
13530 * rsz-mini.el (resize-minibuffer-mode): Remove :version field from
13531 defcustom declaration. It's wreaking too much havoc with XEmacs
13532 and older versions of Emacs, which share this code.
13533
13534 * type-break.el (type-break-mode): Here also.
13535
13536 * rlogin.el (rlogin): If using make-local-hook, pass the 4th arg
13537 `t' to add-hook also to modify the new local value.
13538
13539 1998-09-10 Dave Love <fx@gnu.org>
13540
13541 * vc.el (vc-insert-headers): Doc fix.
13542
13543 1998-09-10 Richard Stallman <rms@gnu.org>
13544
13545 * textmodes/flyspell.el (flyspell-mode-on): Make the
13546 ispell-... variables permanent locals.
13547 (flyspell-mode-off): Add autoload cookie.
13548
13549 * ange-ftp.el (ange-ftp-write-region): For `dumb-unix' host,
13550 do use binary mode, just as for `unix'.
13551 (ange-ftp-host-type): If HOST is nil, return `unix'.
13552
13553 * dired.el (dired-mark-files-containing-regexp):
13554 Don't scan directories. Ignore non-readable files.
13555
13556 * progmodes/compile.el (compilation-error-regexp-alist):
13557 Fix previous change: allow . and _ in command name.
13558
13559 * dired.el (dired-mark-files-containing-regexp): Fix previous change.
13560
13561 * uncompress.el (uncompress-while-visiting):
13562 Use just the car of what find-operation-coding-system returns.
13563
13564 * textmodes/tex-mode.el (tex-start-tex): Call comint-quote-filename.
13565
13566 * shell.el (shell-file-name-quote-list): Add # to the value.
13567
13568 1998-09-10 E. Jay Berkenbilt <ejb@ql.org>
13569
13570 * textmodes/flyspell.el (flyspell-mode-on): Fix kill-buffer-hook
13571 to make killing of ispell process work even if
13572 kill-all-local-variables has been run.
13573
13574 1998-09-10 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13575
13576 * calendar/diary-lib.el (mark-sexp-diary-entries): Avoid infinite
13577 loop when sexp entry ends at end of file with no newline.
13578
13579 1998-09-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
13580
13581 * cus-edit.el (Custom-save, Custom-reset-current, Custom-reset-saved)
13582 (Custom-reset-standard): Fix menu inconsistency.
13583
13584 * mail/feedmail.el (feedmail-from-line): Allow t.
13585 (feedmail-message-id-suffix): Allow nil.
13586
13587 * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
13588 Simplify. Make prefix arg work right.
13589
13590 1998-09-09 Dave Love <fx@gnu.org>
13591
13592 * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
13593
13594 * help.el (help-xref-interned): Bind inhibit-read-only when inserting.
13595
13596 1998-09-08 Dave Love <fx@gnu.org>
13597
13598 * add-log.el (change-log-font-lock-keywords): Do parenthesized
13599 stuff only after file names or at start of line. Allow parens
13600 around e-mail, as well as angles.
13601
13602 * gnus/nnweb.el (require): Wrap requirement of w3 and url in
13603 ignore-errors too, eval'd when compile. Require w3 stuff at load
13604 time for nicer failure if it's not available.
13605
13606 1998-09-07 Geoff Voelker <voelker@cs.washington.edu>
13607
13608 * comint.el (comint-arguments): Ignore backslashes when using
13609 w32 shells that expect backslashes as the directory separator.
13610
13611 1998-09-04 Kenichi Handa <handa@etl.go.jp>
13612
13613 * international/fontset.el (resolved-ascii-font): New variable.
13614 (x-complement-fontset-spec): By side effect, set
13615 `resolved-ascii-font' to the resolved name of ASCII font."
13616 (create-fontset-from-fontset-spec): Don't get a value for
13617 resolved-ascii-font from the list full-fontlist. It is set by
13618 x-complement-fontset-spec now.
13619
13620 * ps-print.el: To make it work also on Emacs 20.2 and the earlier
13621 version, check the value of mule-version.
13622
13623 1998-09-07 Carsten Dominik <cd@delysid.gnu.org>
13624
13625 * textmodes/reftex.el (reftex-view-crossref): Split up into
13626 several functions. No longer moves to find a macro.
13627 (reftex-view-cr-cite, reftex-view-cr-ref,
13628 reftex-end-of-bib-entry): New functions.
13629 (reftex-auto-view-crossref): New value `window' allowed.
13630 (reftex-view-crossref-when-idle): Process new `window' option in
13631 (reftex-translate-to-ascii-function): New default.
13632 (reftex-label-illegal-re): Default changed, removed Latin1.
13633 (reftex-latin1-to-ascii): New function.
13634 (reftex-what-environment): Check for section regexp before use.
13635 (reftex-find-tex-file, reftex-find-bib-file): Fixed bug with
13636 absolute path names.
13637 (reftex-TeX-master-file): Changed sequence of file checks.
13638 (reftex-do-citation): bibview cache only with RefTeX mode on.
13639
13640 1998-09-06 Richard Stallman <rms@gnu.org>
13641
13642 * progmodes/compile.el (compilation-error-regexp-alist):
13643 In first pattern (GNU utilities and other things),
13644 allow a space after the optional program name at the beginning.
13645
13646 * mail/mail-hist.el (mail-hist-current-header-contents):
13647 Fix previous change: use mail-header-end.
13648
13649 1998-09-06 Bill Richter <richter@math.nwu.edu>
13650
13651 * international/ccl.el: Doc fixes.
13652 * international/encoded-kb.el: Doc fixes.
13653 * international/fontset.el: Doc fixes.
13654 * international/kinsoku.el: Doc fixes.
13655 * international/kkc.el: Doc fixes.
13656 * international/mule-cmds.el: Doc fixes.
13657 * international/mule-conf.el: Doc fixes.
13658 * international/mule-util.el: Doc fixes.
13659 * international/mule.el: Doc fixes.
13660
13661 1998-09-05 Eric Ludlam <zappo@gnu.org>
13662
13663 * emacs-lisp/checkdoc.el: (checkdoc-buffer-label): New function.
13664 (checkdoc-start-section, checkdoc-error): Use `checkdoc-buffer-label'.
13665 (checkdoc-this-string-valid-engine): Permit ? as terminating
13666 punctuation for first line sentence breaking.
13667 (checkdoc-this-string-valid): When converting a comment into a doc
13668 string, make sure " chars are \".
13669 (checkdoc-sentencespace-region-engine): Only do double space check
13670 if based on the variable `sentence-end-double-space'
13671 (checkdoc-this-string-valid-engine): ? ends valid sentence.
13672 (checkdoc-proper-noun-region-engine): Exclude items in URLs
13673
13674 1998-09-04 Richard Stallman <rms@gnu.org>
13675
13676 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
13677 Recognize define-skeleton as a function definer.
13678
13679 * cus-edit.el (customize-option): Refuse to customize
13680 a variable that has no defcustom. But if variable is autoloaded,
13681 first try to load the library that defines it.
13682
13683 * international/iso-insert.el: Use `string' before calling `insert'
13684 so that in multibyte buffers we insert multibyte chars.
13685
13686 * dired.el (dired-mark-files-containing-regexp):
13687 Don't use find-file; instead, insert the file in a temp buffer.
13688
13689 * textmodes/tex-mode.el (tex-start-options-string): New option.
13690 (tex-start-tex): Use that variable.
13691
13692 * mail/rmail.el (rmail-primary-inbox-list): Make the initial
13693 value in the `repeat' alternative a list.
13694
13695 * textmodes/fill.el (fill-individual-paragraphs): Before deleting
13696 the inserted newline, verify that one was really inserted.
13697
13698 * textmodes/flyspell.el (flyspell-mode): Do nothing if mode
13699 remains on or remains off.
13700 (flyspell-multi-language-p): Default changed to nil.
13701
13702 * progmodes/ada-mode.el (ada-search-ignore-string-comment):
13703 In "found in comment" case, don't beginning-of-line after forward-line.
13704
13705 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
13706 If the function definition is not a lambda, return original FORM
13707 with no error.
13708
13709 1998-09-04 Peter Breton <pbreton@ne.mediaone.net>
13710
13711 * net-utils.el (netstat-program-options): Changed from nil to "-a"
13712 so that by default netstat shows all network connections.
13713
13714 1998-09-04 Bob Weiner <weiner@altrasoft.com>
13715
13716 * international/quail.el: Doc fixes.
13717
13718 * info.el (info): Don't add parens if FILE already has them.
13719
13720 1998-09-04 Geoff Voelker <voelker@cs.washington.edu>
13721
13722 * mail/smtpmail.el (smtpmail-via-smtp): Parse out the first word
13723 on extension lines.
13724
13725 1998-09-03 Geoff Voelker <voelker@cs.washington.edu>
13726
13727 * w32-fns.el (w32-shell-dos-semantics): New function.
13728
13729 1998-09-03 Bill Richter <richter@brouwer.math.nwu.edu>
13730
13731 * international/quail.el (quail-choose-completion-string): Store
13732 completion `choice' in `quail-current-str'; don't insert it.
13733
13734 1998-09-02 Kenichi Handa <handa@etl.go.jp>
13735
13736 * bdf.el (bdf-generate-font): New argument CHARSET. Give WIDTH
13737 argument to ps-mule-generate-bitmap-font.
13738
13739 * ps-print.el (ps-mule-font-info-database-bdf): The include ASCII
13740 entry and change Latin-1 entry in the default value.
13741 (ps-mule-font-info-database-ps-bdf): New variable.
13742 (ccl-encode-ethio-unicode): Bug of CCL code fixed.
13743 (ps-mule-generate-font): Give CHARSET arg to FONT-FUNC function
13744 registerd in FONT-SPEC.
13745 (ps-mule-bitmap-prologue): Fix PostScript code to realize correct
13746 charcter width of bitmap fonts.
13747 (ps-mule-generate-bitmap-font): Give COLUMNS arg to PostScript
13748 procedure NF.
13749 (ps-begin-file): Output PostScript code for setting
13750 SpaceWidthRatio.
13751 (ps-plot-region): Use line-beginning-position to get a position of
13752 the beginning of the current line.
13753
13754 * international/mule-cmds.el (register-input-method): Doc-string
13755 modified.
13756
13757 1998-09-01 Dave Love <fx@gnu.org>
13758
13759 * international/mule-cmds.el (current-language-environment): Fix
13760 setter function.
13761
13762 1998-09-01 Simon Marshall <simon@gnu.org>
13763
13764 * font-lock.el (tex-font-lock-keywords-2): Fontify \nocite like \cite.
13765 (lisp-font-lock-keywords-2): Fontify abort, assert, etc., separately.
13766 ({c,c++,objc,java}-font-lock-keywords-{2,3}): Fontify only type/class
13767 names with font-lock-type-face. Fontify type specs, etc., with
13768 font-lock-keyword-face.
13769
13770 1998-08-31 Kenichi Handa <handa@etl.go.jp>
13771
13772 * international/fontset.el (x-complement-fontset-spec): If ASCII
13773 font is specified in FONTLIST, don't substitute it for the
13774 resolved name.
13775
13776 1998-08-31 Paul Eggert <eggert@twinsun.com>
13777
13778 * international/mule.el (charset-description): Doc fix.
13779
13780 * language/chinese.el, language/cyrillic.el, language/czech.el,
13781 language/devanagari.el, language/ethiopic.el,
13782 language/european.el, language/hebrew.el, language/indian.el,
13783 language/japanese.el, language/korean.el, language/lao.el,
13784 language/slovak.el, language/thai.el, language/tibetan.el,
13785 language/vietnamese.el:
13786 Add coding: local variable, to avoid bootstrapping problem
13787 if you need to recompile all the Lisp files using interpreted code.
13788
13789 1998-08-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13790
13791 * cal-china.el (chinese-year-cache): Change range of years from
13792 1989-2000 to 1990-2010.
13793
13794 1998-08-29 Dave Love <d.love@dl.ac.uk>
13795
13796 * mail/smtpmail.el (smtpmail-send-it): Add autoload cookie.
13797 (smtpmail-via-smtp): Check that smtpmail-smtp-server is defined.
13798
13799 1998-08-28 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13800
13801 * ps-print.el (ps-print-control-characters): Doc-string modified.
13802 (ps-output-string-prim): Comment format changed.
13803 (ps-do-despool): Indentation of source code changed.
13804
13805 1998-08-28 Kenichi Handa <handa@etl.go.jp>
13806
13807 * subr.el (sref): Make it an alias of aref. Make the
13808 byte-compiler warn that it is obsolete.
13809 (char-bytes): Make the byte-compiler warn that it is obsolete.
13810
13811 * emacs-lisp/bytecomp.el (byte-compile-output-as-comment):
13812 Calculate the total bytes using position-bytes instead of
13813 char-bytes.
13814
13815 1998-08-27 Karl Heuer <kwzh@gnu.org>
13816
13817 * snmp-mode.el: New file.
13818 * files.el (auto-mode-alist): Add snmp-mode patterns.
13819
13820 1998-08-27 Karl Eichwalder <ke@suse.de>
13821
13822 * dired-aux.el (dired-compress-file-suffixes): Add `bz2'.
13823
13824 1998-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13825
13826 * calendar/diary-lib.el (diary-block): Doc fix..
13827 * calendar/calendar.el (diary-list-include-blanks): Doc fix..
13828
13829 1998-08-27 Richard Stallman <rms@gnu.org>
13830
13831 * calendar/cal-tex.el (cal-tex-cursor-filofax-daily): Don't use oddp.
13832 * calendar/appt.el (appt-check): Start the appt-mode-string w/ space.
13833 Clear appt-mode-string if we don't put something in it.
13834
13835 1998-08-27 Dave Love <fx@gnu.org>
13836
13837 * ange-ftp.el (ange-ftp-allow-child-lookup): Reinstate checking
13838 dired-local-variables-file for dired-x.
13839
13840 * emacs-lisp/find-func.el (find-function-search-for-symbol): Look
13841 for compressed library files too.
13842
13843 1998-08-26 Kenichi Handa <handa@etl.go.jp>
13844
13845 * language/european.el ("Latin-1"): Modify `documentation' key value.
13846 ("Latin-2"): Likewise.
13847
13848 1998-08-26 Karl Heuer <kwzh@gnu.org>
13849
13850 * dired-x.el (dired-guess-shell-alist-default): Fix regexp.
13851
13852 1998-08-26 Albert L. Ting <alt@artisan.com>
13853
13854 * mail/mail-hist.el (mail-hist-current-header-name): Fix test.
13855 (mail-hist-current-header-contents): Use mail-text-start.
13856
13857 1998-08-26 Richard Stallman <rms@gnu.org>
13858
13859 * cus-edit.el (customize-version-lessp): Handle a number as VERSION2.
13860 (customize-changed-options-previous-release): New variable.
13861 (customize-changed-options): Use that variable as default arg.
13862
13863 1998-08-26 Karl Eichwalder <ke@suse.de>
13864
13865 * midnight.el: Require `timer' not only when compiling.
13866
13867 1998-08-26 Per Starback <starback@update.uu.se>
13868
13869 * gnus/gnus-start.el (gnus-check-first-time-used): Change current
13870 buffer before creating help group.
13871
13872 1998-08-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
13873
13874 * gnus/gnus-start.el (gnus-save-newsrc-file): Bind
13875 coding-system-for-write before saving.
13876
13877 1998-08-26 Kevin Rodgers <kevinr@ihs.com>
13878
13879 * isearch.el (isearch-forward): Doc fix.
13880
13881 1998-08-26 Andreas Schwab <schwab@delysid.gnu.org>
13882
13883 * emacs-lisp/find-func.el: Fix :version tags to have a string
13884 value, not a float.
13885
13886 * cus-dep.el: Fix typo in output.
13887
13888 1998-08-25 Dave Love <fx@gnu.org>
13889
13890 * repeat.el (repeat): Doc fix.
13891 [From rms:]
13892 (repeat-previous-repeated-command): New variable.
13893 (repeat): Check for real-last-command being null or repeat. Set
13894 repeat-previous-repeated-command.
13895
13896 * browse-url.el (browse-url-netscape): Fix format for hex escapes.
13897
13898 1998-08-25 Kenichi Handa <handa@etl.go.jp>
13899
13900 * gnus/message.el (message-send-mail-with-sendmail): Bind
13901 coding-system-for-write by the return value of
13902 select-message-coding-system.
13903 (message-send-mail-with-qmail): Likewise.
13904
13905 1998-08-24 Andreas Schwab <schwab@delysid.gnu.org>
13906
13907 * emacs-lisp/autoload.el: Fix doc-string-elt property on
13908 define-derived-mode.
13909
13910 * files.el (file-name-invalid-regexp):
13911 Fix regex for ms-dos without long file names.
13912
13913 1998-08-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13914
13915 * ps-print.el: Multi-byte buffer handling.
13916 (ps-print-version): New version number (4.0) and doc fix.
13917 (ps-color-device, ps-face-bold-p, ps-face-italic-p): Conditional
13918 compilation for GNU Emacs and emacsens.
13919 (ps-generate-postscript-with-faces): Force invisible text to be
13920 visible.
13921 (dos-ps-printer): New var to avoid compilation gripes.
13922
13923 1998-08-24 Kenichi Handa <handa@etl.go.jp>
13924
13925 * ps-print.el (ps-mule-plot-string): Pay attention to the case
13926 that no more characters can't be printed in the current line.
13927
13928 1998-08-24 Kenichi Handa <handa@etl.go.jp>
13929
13930 * ps-print.el (ps-mule-find-wrappoint): ENDPOS should not be
13931 greater than TO.
13932
13933 1998-08-24 Kenichi Handa <handa@etl.go.jp>
13934
13935 * ps-print.el: Add codes to make ps-print.el work also on Emacs
13936 20.2 and the earlier version.
13937 (ps-mule-encode-7bit, ps-mule-encode-8bit): Modified for 20.2.
13938 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Likewise.
13939 (ps-mule-find-wrappoint): Likewise.
13940 (ps-mule-generate-font): Change `X' to `x' in format
13941 control-string.
13942 (ps-generate): Call ps-mule-begin before calling ps-begin-job.
13943 (ps-mule-cmpchar-prologue): Delete unnecessary `gsave' and
13944 `restore' form procedures `BC' and `EC'.
13945
13946 1998-08-24 Kenichi Handa <handa@etl.go.jp>
13947
13948 * ps-print.el (ps-print-prologue-1): Handle the case that FontBBox
13949 is an executable procedure. Make LineThickness, Xshadow, and
13950 Yshadow relative to FontHeight. Set SpaceWidth in BeginDoc.
13951 (ps-mule-font-info-database, ps-mule-font-info-database-ps,
13952 ps-mule-font-info-database-bdf): New vars.
13953 (ps-mule-encode-7bit, ps-mule-encode-8bit): New funs.
13954 (ccl-encode-ethio-unicode): New CCL program.
13955 (ps-mule-encode-ethiopic): New fun.
13956 (ps-mule-current-charset): New var.
13957 (ps-mule-get-font-spec, ps-mule-font-spec-src,
13958 ps-mule-font-spec-name, ps-mule-font-spec-encoding,
13959 ps-mule-font-spec-bytes, ps-mule-printable-p): New funs.
13960 (ps-mule-external-libraries): New var.
13961 (ps-mule-init-external-library): New fun.
13962 (ps-mule-font-cache): New var.
13963 (ps-mule-generate-font, ps-mule-generate-glyphs): New funs.
13964 (ps-last-font): New var.
13965 (ps-mule-prepare-font): New fun.
13966 (ps-mule-charset-list): New var.
13967 (ps-mule-prologue-generated, ps-mule-prologue): New vars.
13968 (ps-mule-skip-same-charset, ps-mule-find-wrappoint,
13969 ps-mule-plot-string): New funs.
13970 (ps-mule-cmpchar-prologue-generated, ps-mule-cmpchar-prologue):
13971 New vars.
13972 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
13973 ps-mule-prepare-cmpchar-font): New funs.
13974 (ps-mule-bitmap-prologue-generated, ps-mule-bitmap-prologue): New
13975 vars.
13976 (ps-mule-generate-bitmap-prologue, ps-mule-generate-bitmap-font,
13977 ps-mule-generate-bitmap-glyph): New funs.
13978 (ps-mule-initialize, ps-mule-begin): New funs.
13979 (ps-output-string-prim): Insert string as unibyte.
13980 (ps-output-prologue): New fun.
13981 (ps-flush-output): Handle the case of 'prologue.
13982 (ps-begin-file): Call ps-mule-initialize.
13983 (ps-begin-job): Set ps-control-or-escape-regexp differently if
13984 printing multibyte characters.
13985 (ps-begin-page): Set ps-mule-current-charset to 'ascii.
13986 (ps-basic-plot-string): Handle the case of printing ASCII
13987 characters by external libraries (e.g. BDF).
13988 (ps-set-font): Set ps-last-font.
13989 (ps-plot-region): Handle multibyte characters, use
13990 ps-mule-plot-string for them.
13991 (ps-generate): Set the spool buffer unibyte. Call ps-mule-begin.
13992
13993 * bdf.el: New file.
13994
13995 1998-08-23 Kenichi HANDA <handa@etl.go.jp>
13996
13997 * international/mule-cmds.el (select-message-coding-system): New
13998 function.
13999 (set-language-environment-coding-systems): Set
14000 default-sendmail-coding-system.
14001
14002 * mail/sendmail.el (sendmail-coding-system): Doc-string modified.
14003 (default-sendmail-coding-system): New variable.
14004 (sendmail-send-it): Encode the message by a coding system
14005 select-message-coding-system returns.
14006
14007 1998-08-23 Eric Ludlam <zappo@gnu.org>
14008
14009 * speedbar.el: (speedbar-with-writable): Remove `toggle-read-only'.
14010 (speedbar-mode): Set buffer to read only.
14011 (speedbar-temp-buffer-show-function): For emacs don't call hook
14012 with arguments.
14013 (speedbar-stealthy-updates): Do all updates w/ the the buffer writable.
14014
14015 1998-08-19 Dan Nicolaescu <done@ece.arizona.edu>
14016
14017 * speedbar.el (speedbar-key-map): Fix typo.
14018
14019 See ChangeLog.7 for earlier changes.