1 2000-06-05 Michael Kifer <kifer@cs.sunysb.edu>
3 * ediff-init.el (ediff-has-face-support-p): make it paint faces on
5 * ediff-diff.el (ediff-exec-process): use --binary for fine
6 differences whenever apropriate.
7 * viper-cmd.el (viper-smart-suffix-list): rearranged list members.
8 * viper.el (find-file,find-file-other-window): get viper to do
11 2000-06-04 Stefan Monnier <monnier@cs.yale.edu>
13 * emacs-lisp/easy-mmode.el (easy-mmode-define-toggle):
14 Remove (inline into define-minor-mode).
15 (easy-mmode-pretty-mode-name): Rename from easy-mmode-derive-name
16 and improve to use the lighter to guess the capitalization.
17 (define-minor-mode): Inline code from easy-mmode-define-toggle.
18 Add keyword arguments to specify global-ness or the custom group.
19 Add local-map and help-echo properties to the lighter.
20 (easy-mmode-define-navigation): Add the errors to debug-ignored-errors.
22 2000-06-02 Dave Love <fx@gnu.org>
24 * wid-edit.el: byte-compile-dynamic since we typically don't use
25 all the widgets. Don't require cl or widget. Remove
26 eval-and-compile. Don't autoload finder-commentary. Doc fixes.
27 (widget-read-event): Removed. Callers changed to use read-event.
28 (widget-button-release-event-p): Renamed from
29 button-release-event-p.
30 (widget-field-add-space, widget-field-use-before-change):
32 (widget-specify-field): Use keymap property, not local-map.
33 (widget-specify-button): Obey :suppress-face.
34 (widget-specify-insert): Use modern backquote syntax.
35 (widget-image-directory): Renamed from widget-glyph-directory.
36 (widget-image-enable): Renamed from widget-glyph-enable.
37 (widget-image-find): Replaces widget-glyph-find.
38 (widget-button-pressed-face): Move defvar.
39 (widget-image-insert): Replaces widget-glyph-insert.
40 (widget-convert): Use keywordp.
41 (widget-leave-text, widget-children-value-delete): Use mapc.
42 (widget-keymap): Remove XEmacs stuff.
43 (widget-field-keymap, widget-text-keymap): Define all inside defvar.
44 (widget-button-click): Don't set point at the click, but re-centre
45 if we scroll out of window. Rewritten for images v. glyphs &c.
46 (widget-tabable-at): Use POS arg, not point.
47 (widget-beginning-of-line, widget-end-of-line)
48 (widget-item-value-create, widget-sublist, widget-princ-to-string)
49 (widget-sexp-prompt-value, widget-echo-help): Simplify.
50 (widget-default-create): Use widget-image-insert; some rewriting.
51 (widget-visibility-value-create)
52 (widget-push-button-value-create, widget-toggle-value-create): Use
54 (checkbox): Create on and off images dynamically.
55 (documentation-link): Change :help-echo.
56 (widget-documentation-link-echo-help): Remove.
58 2000-06-02 Stefan Monnier <monnier@cs.yale.edu>
60 * log-edit.el (log-edit-done): Thinko in the "same comment" detection.
62 * emacs-lisp/easy-mmode.el (easy-mmode-derive-name): New function.
63 (easy-mmode-define-toggle, define-minor-mode): Use it.
64 (easy-mmode-define-keymap): Docstring fix.
65 (define-derived-mode): Default PARENT to fundamental-mode.
66 Add the derived-mode-parent symbol-property.
67 (easy-mmode-derived-mode-p): New function.
69 2000-06-02 Dave Love <fx@gnu.org>
71 * files.el (convert-standard-filename): Doc fix.
72 (normal-backup-enable-predicate): New function.
73 (backup-enable-predicate): Use it to replace the lambda form.
75 * calendar/todo-mode.el: [This needs more work on the outline
77 (todo) <defgroup>: Add :version.
78 (todo-add-category): Don't use pushnew.
79 (todo-cmd-raise): Fix typo.
80 (todo-top-priorities): Change temp buffer name.
81 (todo-category-alist): Avoid redundant lambda.
82 (todo-mode): Set paragraph-separate, outline-regexp from todo-prefix.
83 Use outline-next-heading.
85 * autoarg.el: Rewritten to use define-minor-mode.
86 (autoarg-kp-digits, autoarg-kp-mode-map): New variable.
87 (autoarg-kp-mode, autoarg-kp-digit-argument): New command.
89 2000-06-02 Kenichi Handa <handa@etl.go.jp>
91 * isearch.el (isearch-other-meta-char): Fix previous change.
93 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
95 * log-edit.el (log-edit-mode): Make vc-comment-ring-index local.
96 (log-edit-done): Only add the comment to the ring if it's different
97 from the last comment entered.
99 * isearch.el (isearch-highlight): Turn internal-find-face into facep.
101 2000-06-01 Dave Love <fx@gnu.org>
103 * hl-line.el: Rewritten using define-minor-mode.
105 * help.el (describe-function-1): Distinguish special form from
106 builtin function. Sanity-check presence of arglist for builtins.
108 2000-06-01 Kenichi Handa <handa@etl.go.jp>
110 * international/characters.el: Fix syntax/category setting of
113 * language/tibet-util.el (tibetan-add-components): Fixes for new
114 encoding of Tibetan characters.
115 (tibetan-decompose-precomposition-alist): New variable.
116 (tibetan-decompose-region): Convert precomposed characters to
117 non-precomposed characters.
118 (tibetan-decompose-string): Likewise.
119 (tibetan-composition-function): Fix args to
120 thibetan-compose-string.
122 * language/tibetan.el (tibetan-composable-pattern): More
124 (tibetan-consonant-transcription-alist): Rule for "R" added.
125 (tibetan-subjoined-transcription-alist): Rules for "+W", "+Y", and
127 (tibetan-base-to-subjoined-alist): Rule for "RA" added.
129 * language/lao-util.el (lao-composition-function): Fix args to
132 * language/thai-util.el (thai-composition-function): Fix args to
135 * isearch.el (isearch-update): Set disable-point-adjustment to t
136 to prevent the point moving to the end of a composition when a
137 part of a composition is searched.
138 (isearch-other-meta-char): If the key invoking this command can be
139 mapped by function-key-map to a printing char, call
140 isearch-process-search-char directly.
142 2000-06-01 Stefan Monnier <monnier@cs.yale.edu>
144 * emacs-lisp/bytecomp.el:
146 * international/mule-cmds.el:
147 * international/mule-util.el:
148 * international/mule.el:
151 * faces.el: Update calls to make-obsolete with a WHEN argument.
153 * byte-run.el (make-obsolete, make-obsolete-variable):
154 Add an optional WHEN argument and change the format of the
155 symbol-property information.
156 * emacs-lisp/bytecomp.el (byte-compile-log): Don't quote lambda.
157 (byte-compile-obsolete, byte-compile-variable-ref): Understand the
158 new obsolete-symbol-property format and print WHEN if it is provided.
160 2000-05-31 Dave Love <fx@gnu.org>
162 * loadhist.el (loadhist-hook-functions): Remove
163 before-change-function, after-change-function.
164 (unload-feature): Deal with symbols which are both bound and
167 * mouse.el (mouse-save-then-kill-delete-region): Don't bind
168 before-change-function, after-change-function.
170 * simple.el (newline): Don't bind before-change-function,
171 after-change-function.
173 2000-05-31 Rajesh Vaidheeswarran <rv@gnu.org>
175 * whitespace.el (whitespace-rescan-timer-time): Update interval
176 set to 600 seconds (10 minutes) instead of 60 seconds since
177 a large number of whitespace buffers causes emacs to `freeze'
178 for a considerable amount of time.
180 * whitespace.el: Updated e-mail address
182 2000-05-31 Dave Love <fx@gnu.org>
184 * add-log.el (change-log-font-lock-keywords) <function>: Add
185 pattern for function of change.
186 (change-log-font-lock-keywords) <acknowledgements>: Amalgamate
187 acknowledgements patterns.
189 2000-05-31 Kenichi Handa <handa@etl.go.jp>
191 * isearch.el (isearch-printing-char): If keyboard coding system is
192 being used, call isearch-process-search-multibyte-characters.
194 * international/isearch-x.el: Mostly rewritten.
196 * international/quail.el (quail-start-conversion): Don't include
197 unhandled events in the returned events, but set them in
198 unread-command-events. Exit if all inputs are deleted.
200 2000-05-30 Jason Rumney <jasonr@gnu.org>
202 * w32-fns.el (w32-charset-info-alist): Add each charset separately.
204 * term/w32-win.el: Doc changes to reduce diffs with x-win.el.
205 Reenable code to create initial fontsets.
206 Use set-fontset-font in place of put-charset-property.
208 2000-05-30 Gerd Moellmann <gerd@gnu.org>
210 * progmodes/perl-mode.el (perl-indent-line): When looking for a
211 label, ensure that the first colon isn't followed by another.
213 * paths.el (Info-default-directory-list): Doc fix.
215 * net/net-utils.el (finger-X.500-host-regexps): New user-option.
216 (finger): If HOST matches a regexp from finger-X.500-host-regexps,
217 send a query containing USER only, not USER@HOST.
219 * mail/rmail.el (rmail-widen-to-current-msgbeg): Use rmail-msgbeg
220 and rmail-msgend to compute the restriction at the end, instead of
223 2000-05-29 Gerd Moellmann <gerd@gnu.org>
225 * dabbrev.el (dabbrev-expand): Don't display messages in the
226 echo area if the minibuffer window is active.
228 * jit-lock.el (jit-lock-mode): Add after change function to
231 2000-05-29 Christoph Wedler <Christoph.Wedler@sap.com>
233 * antlr-mode.el: New commands: hide/unhide actions,
234 upcase/downcase literals.
235 (antlr-tiny-action-length): New user option.
236 (antlr-hide-actions): New command. Suggested by
237 Bjoern Mielenhausen <Bjoern.Mielenhausen@sap.com>.
238 (antlr-mode-map): New binding [C-c C-v].
239 (antlr-mode-menu): New entries.
240 (antlr-downcase-literals): New command.
241 (antlr-upcase-literals): Ditto.
243 * antlr-mode.el: Minor changes: indendation, mode-name.
244 (antlr-indent-line): Indent cpp directive at column 0.
245 (antlr-mode): Use mode-name prefix "Antlr." instead of "Antlr/".
247 * antlr-mode.el: XEmacs bug workaround, XEmacs hint.
248 (antlr-font-lock-additional-keywords): Workaround for intentional
249 bug in XEmacs version of font-lock.
250 (antlr-mode): Set symbol property `mode-name' to "Antlr". Could
251 be used by a smarter version of `buffers-menu-grouping-function'.
253 2000-05-29 Gerd Moellmann <gerd@gnu.org>
255 * tmm.el (tmm-prompt): Recognize menu item definitions of the for
256 `(menu-item ...)' when looking for the position of DEFAULT-ITEM.
258 2000-05-29 Kenichi Handa <handa@etl.go.jp>
260 * international/encoded-kb.el
261 (encoded-kbd-iso2022-designation-map): Pay attention to that
262 charset-iso-final-char return -1 for eight-bit-control and
265 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
267 * speedbar.el (speedbar-use-images, speedbar-update-flag)
268 (speedbar-easymenu-definition-base): Use display-graphic-p where
269 available, instead of window-system.
271 2000-05-28 Eli Zaretskii <eliz@is.elta.co.il>
273 * international/codepage.el (cp-coding-system-for-codepage-1): Add
274 eight-bit-graphic and eight-bit-control to safe charsets for cpNNN
277 2000-05-26 Dave Love <fx@gnu.org>
279 * disp-table.el (standard-display-underline): Don't use
282 * mail/reporter.el: Maintainer change. Doc fixes.
283 (reporter-version): Deleted.
285 * emacs-lisp/elp.el: Maintainer change.
286 (elp-help-address, elp-submit-bug-report, elp-version): Deleted.
288 2000-05-26 Stefan Monnier <monnier@cs.yale.edu>
290 * add-log.el (add-change-log-entry): Merge the current entry with the
291 previous one if the previous one is empty.
293 2000-05-26 Dave Love <fx@gnu.org>
295 * loadhist.el (unload-feature): Fix interactive spec [from
298 * emacs-lisp/bytecomp.el (byte-compile-callargs-warn): Use
299 subr-arity to check primitives.
300 (byte-compile-flush-pending, byte-compile-file-form-progn)
301 (byte-compile-normal-call, byte-compile-list, byte-compile-concat)
302 (byte-compile-insert, byte-compile-funcall): Use mapc instead of
305 2000-05-26 Kenichi Handa <handa@etl.go.jp>
307 * international/fontset.el: Set family names of non-latin charsets
308 in default fontset to "*".
310 * international/mule-diag.el (print-fontset): Combine family part
311 and registry part of the fontname by "-*-" instead of "-".
313 * international/mule-cmds.el (encode-coding-char): Make strings
314 multibyte before calling encode-coding-string.
316 2000-05-25 Stefan Monnier <monnier@cs.yale.edu>
318 * derived.el: Fix keywords.
319 (define-derived-mode): Only define if needed.
321 * simple.el (fill-comment, comment-column, comment-start)
322 (comment-start-skip, comment-end, comment-indent-function)
323 (block-comment-start, block-comment-end, indent-for-comment)
324 (set-comment-column, kill-comment, comment-padding, comment-region)
325 (comment-multi-line, indent-new-comment-line): Remove.
327 * bindings.el (esc-map): Change ; to comment-dwim and use the new
328 function names for comment operations.
330 * newcomment.el: Add abundant autoload cookies.
331 (comment-style): Don't depend on runtime data at compile-time.
332 (comment-indent-hook): Remove.
333 (comment-indent): Check if comment-indent-hook is bound.
334 (comment-region): Docstring fix.
336 2000-05-25 Dave Love <fx@gnu.org>
338 * emacs-lisp/elp.el (elp-restore-function): Don't use obsolete
339 byte-code-function-p.
341 * mail/rmailsum.el: Add provide.
343 * net/goto-addr.el (goto-address-fontify): Add help-echo property.
345 * smerge-mode.el (smerge-diff-switches): Don't use list* in
348 2000-05-25 Michael Kifer <kifer@cs.sunysb.edu>
350 * ediff-diff.el (ediff-exec-process): delete --binary option from
351 non-buffer ediff jobs.
353 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
355 * hilit-chg.el (highlight-changes-mode): Ask about color or
356 grayscale support, not about window-system.
358 * ffap.el (ffap-menu-text-plist): Use display-mouse-p, not
360 (ffap-highlight): Always default to t.
362 * emacs-lisp/edebug.el (edebug-emacs-19-specific): Call
363 display-popup-menus-p instead of looking at window-system.
365 * disp-table.el (standard-display-g1, standard-display-graphic):
366 Only refuse to use string glyphs on X and MS-Windows.
368 * avoid.el: Remove window-system from commentary, suggest to use
371 * apropos.el (apropos-print): Use display-mouse-p instead of
374 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
376 * international/codepage.el (cp-decoding-vector-for-codepage):
377 Fill up unsupported characters with their own codes. From Kenichi
380 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
382 * international/mule-diag.el (describe-char-after): Use
383 display-graphic-p instead of window-system, so that this function
386 2000-05-25 Eli Zaretskii <eliz@is.elta.co.il>
388 * international/codepage.el (cp-make-coding-systems-for-codepage):
389 Remove the eight-bit-graphic and eight-bit-control charsets from
390 the list of charsets which we convert into `?'.
392 2000-05-25 Kenichi Handa <handa@etl.go.jp>
394 * international/mule-conf.el: Specify CHARSET-ID explicitely for
396 (mule-unicode-0100-24ff, japanese-jisx0213-1,
397 japanese-jisx0213-2): New charsets.
399 * international/fontset.el: Setup default fontset for new charsets.
401 2000-05-24 Dave Love <fx@gnu.org>
403 * info.el (Info-find-node-2): Restructure [following "Vadim
404 S. Solomin" <sovs@uic.nnov.ru>].
406 * icomplete.el: Fix header for Finder.
408 2000-05-24 Eric M. Ludlam <zappo@ultranet.com>
410 * rmailout.el (rmail-output-to-rmail-file): Added optional param
413 * rmail.el (rmail-automatic-folder-directives): New user variable.
414 (rmail-show-message): Add call to `rmail-auto-file' during
416 (rmail-auto-file): New function.
418 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
420 * ediff-diff.el (ediff-forward-word): Take syntactic word class into
422 (ediff-test-utility,ediff-diff-mandatory-option)
423 (ediff-reset-diff-options): Utilities for proper initialization of
424 ediff-diff-options and ediff-diff3-options on Windows.
426 * ediff-init.el (ediff-merge-filename-prefix): New customizable
429 * ediff-mult.el (ediff-filegroup-action): Use
430 ediff-merge-filename-prefix.
432 2000-05-24 Michael Kifer <kifer@cs.sunysb.edu>
434 * viper-ex.el (ex-write): Set selective display to nil.
436 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
438 * language/hebrew.el (iso-8859-8-e, iso-8859-8-i): For now, just
439 aliases for hebrew-iso-8bit.
441 2000-05-24 Eli Zaretskii <eliz@is.elta.co.il>
443 * woman.el: New version from Francis J. Wright
444 <F.J.Wright@Maths.QMW.ac.uk>.
445 (woman-parse-colon-path): Support Cygwin-style //d/foo/bar file
446 names in environment variables regardless of the path separator.
447 (woman-topic-all-completions-1): Don't call file-name-directory-p
448 on all files, since woman-file-regexp already filters out any
451 2000-05-24 Kenichi Handa <handa@etl.go.jp>
453 * international/quail.el (quail-start-translation): Don't change
454 modified-p of the current buffer.
455 (quail-start-conversion): Likewise.
457 * international/kkc.el (kkc-region): Don't change modified-p of
460 * language/japanese.el (iso-2022-jp): Exclude katakana-jisx0201 to
462 (iso-2022-jp-2): Exclude katakana-jisx0201 to conform to RFC1554.
464 2000-05-23 Eric M. Ludlam <zappo@ballista.ultranet.com>
466 * speedbar.el (speedbar-easymenu-definition-base): Image toggle fix.
467 (speedbar-insert-button): Invisible text property fix.
468 (speedbar-directory-plus): Renamed from speedbar-directory-+
469 (speedbar-directory-minus): Renamed from speedbar-directory--
470 (speedbar-page-plus): Renamed from speedbar-file-+
471 (speedbar-page-minus): Renamed from speedbar-file--
472 (speedbar-page): Renamed from speedbar-file-
473 (speedbar-tag): Renamed from speedbar-tag-
474 (speedbar-tag-plus): Renamed from speedbar-tag-+
475 (speedbar-tag-minus): Renamed from speedbar-tag--
476 (speedbar-expand-image-button-alist): Use above renames.
478 * sb-dir-plus.xpm: Renamed from sb-dir+.xpm
479 * sb-dir-minus.xpm: Renamed from sb-dir-.xpm
480 * sb-pg-plus.xpm: Renamed from sb-file+.xpm
481 * sb-pg-minus.xpm: Renamed from sb-file-.xpm
482 * sb-pg.xpm: Renamed from sb-file.xpm
483 * sb-tag-plus.xpm: Renamed from sb-tag+.xpm
484 * sb-tag-minus.xpm: Renamed from sb-tag-.xpm
486 2000-05-24 Kenichi Handa <handa@etl.go.jp>
488 * international/quail.el (quail-show-guidance-buf): Set
489 current-input-method of the guidance buffer to the name of the
492 2000-05-23 Stefan Monnier <monnier@cs.yale.edu>
494 * progmodes/compile.el (compile-internal): Style typo.
496 * mail/mh-e.el (mh-do-not-confirm, mh-folder-mode):
497 quote vars and functions in the docstring.
499 * newcomment.el (comment-make-extra-lines): Don't use `assert'.
501 * completion.el (dynamic-completion-mode, dynamic-completion-mode):
504 * ffap.el (ffap-highlight): Use facep rather than internal-find-face.
506 2000-05-23 Gerd Moellmann <gerd@gnu.org>
508 * startup.el (command-line): Determine source file of compiled
509 user init file differently. Warn if compiled user init file
510 is older than its source file.
512 * ffap.el (ffap-url-regexp): Add `https'.
514 2000-05-23 Eli Zaretskii <eliz@is.elta.co.il>
516 * files.el (make-backup-file-name-1): Replace slashes with `!'
517 rather than `|' (which is not allowed on Windows). Replace the
518 drive letters with a string "drive_X".
520 2000-05-23 Gerd Moellmann <gerd@gnu.org>
522 * progmodes/sh-script.el (sh-ancestor-alist): Add `bash2'.
524 * files.el (interpreter-mode-alist): Add `bash2'.
526 2000-05-22 Dave Love <fx@gnu.org>
528 * loadhist.el (feature-symbols, file-provides, file-requires): Use
530 (feature-file): Avoid calling symbol-name. Doc fix.
531 (file-set-intersect, file-dependents): Use dolist, not mapcar.
532 (loadhist-hook-functions): Add mouse-position-function.
533 (unload-feature): Change uses of mapcar.
535 * files.el (parse-colon-path): Doc fix.
536 (auto-mode-alist, interpreter-mode-alist): Purecopy the cars.
537 (set-auto-mode): Use mapc.
539 * complete.el (PC-look-for-include-file): Use :alnum: character
541 (partial-completion-mode): Add autoload cookie.
543 2000-05-22 Sam Steingold <sds@gnu.org>
545 * info.el (Info-fontify-node): Fixed the call to
546 `add-text-properties' (bug introduced on 2000-05-18).
548 2000-05-22 Dave Love <fx@gnu.org>
550 * bindings.el: Remove debug-ignored-errors set in other files.
552 * progmodes/etags.el: Add to debug-ignored-errors.
553 (visit-tags-table-buffer): Clear out buffers holding old tables
554 when making a new list.
555 (etags-recognize-tags-table, tags-recognize-empty-tags-table): Use
558 * completion.el: Doc fixes. Add to debug-ignored-errors. Don't
560 (cmpl-string-case-type): Use character classes.
563 * textmodes/ispell.el:
566 * progmodes/compile.el: Add to debug-ignored-errors.
568 * dabbrev.el: Add to debug-ignored-errors.
569 (dabbrev-completion): Use mapc.
571 2000-05-22 Eli Zaretskii <eliz@is.elta.co.il>
573 * woman.el (From Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk)
574 (woman-mapcan, woman-parse-man.conf)
575 (woman-toggle-use-extended-font, woman-toggle-use-symbol-font)
576 (woman-reset-emulation, woman-select-symbol-fonts): New functions.
577 (woman-parse-colon-path): Call woman-mapcan. Recognize Cygwin
579 (woman-man.conf-path, woman-use-own-frame): New defcustoms.
580 (woman-manpath): Call woman-parse-man.conf.
581 (woman-emulation): New defcustom, defaults to nroff.
582 (woman-font-support): New defconst.
583 (woman-use-symbol-font): New defcustom.
584 (woman-menu): Add new menu items: "Colored/BW", "Advanced",
586 Many functions: Doc fix.
588 2000-05-22 Kenichi Handa <handa@etl.go.jp>
590 * international/quail.el (quail-simple-translation-keymap): Map
591 128..255 to quail-self-insert-command.
592 (quail-keyboard-layout-alist): Add definition for "pc102-de".
594 2000-05-22 Stefan Monnier <monnier@cs.yale.edu>
596 * help.el (help-manyarg-func-alist): Typo.
598 * emacs-lisp/sregex.el: Rewritten to take advantage of shy-groups and
599 intervals which makes it heaps simpler.
601 * newcomment.el (comment-region-internal): Go back to BEG after quoting
602 the nested comment markers.
604 * subr.el (remove-hook): Don't turn the hook's value into a list.
606 2000-05-21 Dave Love <fx@gnu.org>
608 * edmacro.el (edmacro-parse-keys): Return vector if any elements
609 are invalid characters.
611 * international/mule-util.el (detect-coding-with-priority): Use
612 mapc. Remove redundant lambda.
614 * international/mule-diag.el (list-non-iso-charset-chars)
615 (describe-fontset): Remove redundant lambda.
617 * emulation/crisp.el (brief-mode): New alias.
619 * emacs-lisp/ring.el (ring-elements): New function.
621 * emacs-lisp/easymenu.el (easy-menu-create-menu)
622 (easy-menu-do-add-item): Use keywordp.
624 * emacs-lisp/byte-opt.el: Update side-effect free function lists.
626 * replace.el: Doc and error message fixes.
627 (replace-highlight): Use facep, not internal-find-face.
629 2000-05-20 Stefan Monnier <monnier@cs.yale.edu>
631 * international/ccl.el (ccl-compile-map-multiple): Don't quote lambda.
633 * log-edit.el (log-edit-done): Cleanup trailing empty lines.
634 (log-edit-insert-changelog): Drop `:' as well.
636 * log-view.el: Fix file description.
637 (log-view-mode-map): Unsatisfying fix for when cvs-mode-map is not
639 (log-view-font-lock-keywords): Only use cvs-filename-face if present.
640 (log-view-current-file): Only use cvs-pcl-cvs-dirchange-re if present.
642 * emacs-lisp/easy-mmode.el: Update copyright and commentary.
643 (easy-mmode-define-toggle): Deprecate the use of *-(on|off)-hook.
644 Print a status message if the toggle is called interactively.
645 (define-minor-mode): Allow INIT-VALUE to be (global . INIT-VALUE)
646 for global minor modes and use `defcustom' for them.
648 (easy-mmode-define-derived-mode): Remove.
649 (define-derived-mode): Fancier default docstring.
650 (easy-mmode-define-navigation): Signal an error rather than (ding).
652 * newcomment.el (comment-styles): New `box-multi'.
653 (comment-normalize-vars): Better default for comment-continue to
654 avoid whitespace-only continuations.
655 (comment-search-forward): Always move even in the no-syntax case.
656 (comment-padright): Only obey N if it's only obeyed for padleft.
657 (comment-make-extra-lines): Better handling of empty continuations.
658 Use `=' for the filler if comment-start has only one character.
659 (uncomment-region): Try handling the special `=' filler.
660 (comment-region): Allow LINES even if MULTI is nil.
661 (comment-box): Choose box style based on comment-style.
663 2000-05-20 Kenichi Handa <handa@etl.go.jp>
665 * international/ccl.el (ccl-compile-write-string): Make STR unibyte.
666 (ccl-compile-write-repeat): If ARG is string, make it unibyte.
668 2000-05-20 Kenichi HANDA <handa@etl.go.jp>
670 * mail/rmail.el (rmail-decode-quoted-printable): Use delete-region
671 and insert, not subst-char-in-region.
673 * international/mule-diag.el (list-character-sets-1): Handle
674 charsets eight-bit-control and eight-bit-graphic.
675 (list-iso-charset-chars): Likewise.
676 (list-block-of-chars): If CHARSET is not chat-table, insert 8-bit
677 charactes as is. Use indent-to to align characters.
679 * international/mule-cmds.el (find-multibyte-characters): Never
680 exclude charsets eight-bit-control and eight-bit-graphic.
682 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
684 * progmodes/ada-mode.el (ada-mode, ada-create-case-exception):
687 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set comment-add.
689 2000-05-19 Gerd Moellmann <gerd@gnu.org>
691 * gud.el (gud-jdb-directories): Doc fix.
693 2000-05-19 Stefan Monnier <monnier@cs.yale.edu>
695 * newcomment.el: New file.
697 2000-05-19 Gerd Moellmann <gerd@gnu.org>
699 * files.el (auto-mode-alist): Add pattern for POSIX `.shrc'.
701 2000-05-18 Andreas Schwab <schwab@suse.de>
703 * dired.el (dired-between-files): Also skip lines beginning with
706 2000-05-18 Gerd Moellmann <gerd@gnu.org>
708 * msb.el (msb-menu-cond): Add choice `user'.
710 2000-05-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
712 * ps-print.el: Compatibility, customization and doc fix.
713 (ps-printer-name-option): Replace defconst by defvar.
714 (ps-postscript-code-directory): XEmacs compatibility.
715 (ps-header-sheet, ps-setup, ps-begin-file, ps-begin-job): Code
717 (ps-user-defined-prologue, ps-print-prologue-header)
718 (ps-xemacs-face-kind-p, ps-face-bold-p, ps-face-italic-p): XEmacs
719 compatibility and code fix.
720 (ps-print-background-image, ps-print-background-text):
722 (ps-line-number-start, ps-n-up-on): New vars.
724 2000-05-18 Espen Skoglund <esk@ira.uka.de>
726 * pascal.el (pascal-indent-alist, pascal-indent-comment): Changed
727 the indent-comment function to just return the appropriate indent.
729 2000-05-18 Eric M. Ludlam <zappo@ultranet.com>
731 * sb-dir+.xpm, sb-dir-.xpm, sb-dir.xpm, sb-file+.xpm, sb-file-.xpm,
732 sb-file.xpm, sb-mail.xpm, sb-tag+.xpm, sb-tag-.xpm, sb-tag-gt.xpm,
733 sb-tag-type.xpm, sb-tag-v.xpm, sb-tag.xpm: New Files
735 2000-05-18 Dave Love <fx@gnu.org>
737 * info.el (Info-fontify-node): Add intangible property as well as
740 * calendar/appt.el (appt-make-list): Match all lines of entry.
741 From "Stefan M. Walther (SMW)" <walther@netz.klinik.uni-mainz.de>
743 2000-05-18 Kenichi Handa <handa@etl.go.jp>
745 * international/mule-diag.el (describe-char-after): Call
746 internal-char-font, not char-font. If internal-char-font returns
747 nil, display "-- none --".
749 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
751 * image.el (image-type-available-p): Don't reference image-types
754 2000-05-17 Stefan Monnier <monnier@cs.yale.edu>
756 * autoarg.el (autoarg-mode): Typo in the :set argument.
758 2000-05-17 Eli Zaretskii <eliz@is.elta.co.il>
760 * startup.el (command-line-1): Don't signal an error if the
761 directory for auto-save-list files does not yet exist.
763 2000-05-17 Kenichi Handa <handa@etl.go.jp>
765 * international/mule-conf.el (arabic-iso8859-6): Fix typo.
767 2000-05-16 Stefan Monnier <monnier@cs.yale.edu>
769 * subr.el (remove-hook): `setq' hook-value, not `set'.
771 2000-05-16 Sam Steingold <sds@gnu.org>
773 * info.el (debug-ignored-errors): More errors to ignore.
775 2000-05-16 Dave Love <fx@gnu.org>
777 * cus-edit.el: Don't require cl or easymenu.
778 (custom-variable-prompt): Test standard-value property, not
781 2000-05-16 Sam Steingold <sds@gnu.org>
783 * subr.el (add-hook): `setq' hook-value, not `set'.
785 2000-05-16 Gerd Moellmann <gerd@gnu.org>
787 * startup.el (command-line-1): Mention the FAQ in the startup
790 * help.el (view-emacs-FAQ): Change `emacs-faq' to `efaq'.
792 * progmodes/compile.el (compilation-parse-errors): Collect
793 `nomessage' regexps last.
795 * dired.el (dired-mode-map): Use dired-do-query-replace-regexp.
797 * dired-aux.el (dired-do-query-replace-regexp): Add `-regexp'
798 to the function name.
800 2000-05-15 Dave Love <fx@gnu.org>
802 * speedbar.el (speedbar-recenter): Typo.
803 (speedbar-expand-line): Make arg optional.
804 (speedbar-mode): Avoid a compiler warning.
806 2000-05-15 Gerd Moellmann <gerd@gnu.org>
808 * progmodes/sh-script.el (sh-while-getopts) <sh>: Handle case that
809 user-specified option string is empty.
811 * mouse.el (mouse-yank-at-click): Doc fix.
813 2000-05-15 Eli Zaretskii <eliz@is.elta.co.il>
815 * term/internal.el (IT-character-translations): More updates of
816 latin-iso8859-14 and latin-iso8859-15 from the latest ISO/IEC
819 2000-05-15 Gerd Moellmann <gerd@gnu.org>
821 * env.el (getenv): New function, interactively callable.
822 (setenv, getenv): Remove autoload cookies.
824 * loadup.el: Load `env'.
826 * progmodes/f90.el: Change author's mail address.
828 2000-05-14 Dave Love <fx@gnu.org>
830 * mail/rmail.el (rmail-show-message-hook): Customize and offer
831 goto-addr as an option.
833 * help.el (help-xref-stack): Doc fix.
834 (help-xref-following): New variable.
835 (help-make-xrefs): Use it.
836 (help-xref-go-back): Use position information from stack element.
837 (help-follow): Make position in stack element a pair. Use
840 * autoarg.el: New file.
842 * faces.el: Declare more functions obsolete.
844 * viet-util.el, thai-util.el, tibet-util.el.elc, slovak.el
845 * misc-lang.el, romanian.el, korea-util.el.elc, lao-util.el
846 * japan-util.el, greek.el, hebrew.el, european.el, ethio-util.el
847 * english.el, czech.el, devan-util.el, cyril-util.el, china-util.el:
848 Remove all the setup-...-environment functions.
850 2000-05-13 Eric M. Ludlam <zappo@ultranet.com>
852 * speedbar.el: Updated the commentary section. xemacs20p now uses
853 >= when detecting. Require `defimage' safely.
854 (speedbar-easymenu-definition-base): Add toggle for images.
855 (speedbar-easymenu-definition-special): Add flush cache & expand.
856 (speedbar-visiting-tag-hook): Set new defaults. Added options.
857 (speedbar-reconfigure-keymaps-hook): New variable.
858 (speedbar-frame-parameters): Updated documentation.
859 (speedbar-use-imenu-flag): Updated custom tag
860 (speedbar-dynamic-tags-function-list): New variable.
861 (speedbar-tag-hierarchy-method): Updated doc & custom.
862 (speedbar-indentation-width, speedbar-indentation-width) New
864 (speedbar-hide-button-brackets-flag): Customizable.
865 (speedbar-vc-indicator): Doc update.
866 (speedbar-ignored-path-expressions): Updated default value.
867 (speedbar-supported-extension-expressions): Updated default value.
868 (speedbar-syntax-table): Remove {} paren status.
869 (speedbar-file-key-map, speedbar-buffers-key-map): Add "=" to act
870 as "+". Added overlay aliases.
871 (speedbar-mode): Use `speedbar-mode-line-update' instead of
872 `force-mode-line-update'.
873 (speedbar-mode, speedbar-quick-mouse, speedbar-click)
874 (speedbar-double-click): Use `speedbar-mouse-set-point' instead of
876 (speedbar-reconfigure-keymaps): Run configure keymap hooks.
877 (speedbar-item-info-tag-helper): Revamped to handle a wider range
878 of arbitrary text, and new helper functions.
879 (speedbar-item-copy, speedbar-item-rename): Fixed trailing \ in
881 (speedbar-make-button): Call `speedbar-insert-image-button-maybe'.
882 (speedbar-directory-buttons): Update path search/expansion.
883 (speedbar-make-tag-line): Pay attention to
884 `speedbar-indentation-width'. Use more care w/ invisible
886 (speedbar-change-expand-button-char): Call
887 `speedbar-insert-image-button-maybe'.
888 (speedbar-apply-one-tag-hierarchy-method): Deleted (and replaced).
889 (speedbar-sort-tag-hierarchy, speedbar-prefix-group-tag-hierarchy)
890 (speedbar-trim-words-tag-hierarchy)
891 (speedbar-simple-group-tag-hierarchy): New functions
892 (speedbar-create-tag-hierarchy): Update doc, use new tag hooks.
893 (speedbar-insert-imenu-list, speedbar-insert-etags-list): New
895 (speedbar-mouse-set-point): New function
896 (speedbar-power-click): Updated documentation.
897 (speedbar-line-token, speedbar-goto-this-file): Handle more types
899 (speedbar-expand-line, speedbar-contract-line): Make more robust
901 (speedbar-expand-line): Takes universal argument to flush the
903 (speedbar-flush-expand-line): New function.
904 (speedbar-tag-file): Use new `speedbar-fetch-dynamic-tags' fn.
905 Use new generator insertion method.
906 (speedbar-fetch-dynamic-tags): New function.
907 (speedbar-fetch-dynamic-imenu): Removed code now handled in
908 `speedbar-fetch-dynamic-imenu'.
909 (speedbar-fetch-dynamic-etags): Fix current buffer problem.
910 (speedbar-buffer-easymenu-definition): Added "Kill Buffer", and
911 "Revert Buffer" menu items.
912 (speedbar-buffer-buttons-engine): Be smarter when creating a
913 filename tag (for expansion purposes.).
914 (speedbar-highlight-one-tag-line,
915 (speedbar-unhighlight-one-tag-line, speedbar-recenter-to-top)
916 (speedbar-recenter): New functions.
917 (defimage-speedbar): Image loading abstraction.
918 (speedbar-directory-+, speedbar-directory--, speedbar-file-+)
919 (speedbar-file--, speedbar-file-, speedbar-tag-, speedbar-tag-+)
920 (speedbar-tag--, speedbar-tag-gt, speedbar-tag-v)
921 (speedbar-tag-type, speedbar-tag-mail): New images.
922 (speedbar-expand-image-button-alist): New variable.
923 (speedbar-insert-image-button-maybe): Insert an image over some
926 2000-05-13 Kenichi Handa <handa@etl.go.jp>
928 * international/mule-cmds.el (encode-coding-char): An ASCII
929 character is always encodable.
931 * international/mule-conf.el: Add more information in descriptions
934 * international/mule-diag.el (describe-char-after): New function.
935 (describe-font-internal): Adjusted for the change of font-info.
936 (describe-font): Likewise.
937 (print-fontset): Rewritten for the new fontset implementation.
938 (describe-fontset): Include fontset alias names in completion.
939 (list-fontsets): Adjusted for the change of print-fontset.
941 * simple.el (what-cursor-position): If DETAIL is non-nil, call
942 describe-char-after instead of displaying the detail in the echo
944 (syntax-code-table): Format changed.
945 (string-to-syntax): Adjusted for the above change.
947 2000-05-12 Stefan Monnier <monnier@cs.yale.edu>
949 * font-lock.el (lisp-font-lock-keywords-1): Add define-minor-mode.
951 2000-05-12 Dave Love <fx@gnu.org>
953 * calendar/todo-mode.el: Remove some compatibility stuff and CL
954 dependence. Use line-{beginning,end}-position, not
955 point-at{b,e}ol. Some doc fixes.
956 (todo-position): New function. Fix callers of position to use it.
957 (todo-save-top-priorities, todo-print): Use with-temp-buffer.
959 2000-05-12 Gerd Moellmann <gerd@gnu.org>
961 * time.el (display-time-mail-icon): Use `:ascent center'.
963 * ange-ftp.el (ange-ftp-skip-msgs): Include 500 code.for
964 handling FTP security extensions.
966 2000-05-11 Dave Love <fx@gnu.org>
968 * calendar/todo-mode.el: New file.
970 2000-05-11 Gerd Moellmann <gerd@gnu.org>
972 * comint.el (comint-read-input-ring): Move reference to
973 comint-input-ring-size outside of the save-excursion. It was
974 causing the default value to be the only one ever seen.
976 * font-lock.el: Update copyright. Remove Simon Marshall's email
977 address on request from him.
979 * subr.el (substitute-key-definition): Add comment describing
980 the meaning of PREFIX.
982 2000-05-10 Stefan Monnier <monnier@cs.yale.edu>
984 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix regexp.
986 * subr.el (add-hook, remove-hook): Make hook buffer-local if needed..
987 (add-minor-mode): Don't make the variable buffer-local and add a
988 reference to define-minor-mode in the docstring.
990 * pcvs.el (cvs-cleanup-collection): Remove obsolete code for
991 HEADER/FOOTER and fix bug with trailing empty directory.
992 (cvs-append-to-ignore): Use vc-editable-p if available.
993 (cvs-dir-member-p): Remove obsolete code for HEADER/FOOTER.
994 (vc-do-command): Tweak advice to handle the new VC.
996 * log-view.el (log-view-goto-rev): New function for the new VC.
997 (log-view-minor-wrap): Use mark-active.
999 * log-edit.el (cvs-changelog-full-paragraphs): Mark obsolete.
1000 (log-edit-changelog-full-paragraphs): New var.
1001 (log-edit-insert-changelog): Remove a lonely leading `* file'.
1002 (log-edit-narrow-changelog, log-edit-changelog-paragraph)
1003 (log-edit-changelog-subparagraph, log-edit-changelog-entry)
1004 (log-edit-changelog-ours-p, log-edit-changelog-entries)
1005 (log-edit-changelog-insert-entries, log-edit-insert-changelog-entries):
1006 Replace the `cvs' prefix with `log-edit'.
1008 * iswitchb.el (iswitchb-completion-help): Unquote lambda.
1010 * diff-mode.el (diff-font-lock-keywords): Recognize comments.
1011 (diff-font-lock-defaults): Explicitly turn off multiline.
1012 (diff-end-of-hunk): Handle comments and fix end-of-buffer bug.
1013 (diff-ediff-patch): Fix call to ediff-patch-file.
1014 (diff-end-of-file, diff-reverse-direction, diff-fixup-modifs):
1017 * frame.el (automatic-hscrolling): Typo.
1019 * cvs-status.el (cvs-status-minor-wrap): Use mark-active.
1021 2000-05-09 Sam Steingold <sds@goems.com>
1023 * apropos.el (apropos-print): use `describe-face' instead of
1024 `customize-face-other-window'.
1026 2000-05-09 Dave Love <fx@gnu.org>
1028 Changes mostly following Richard Sharman <rsharman@wave.home.com>.
1030 * help.el (describe-variable): Have customize button pop the
1031 help-xref stack when invoked.
1032 (help-xref-symbol-regexp): Add `face'.
1033 (help-make-xrefs): Check for quoted face names and adapt regexp
1034 submatch numbers to cope.
1035 (help-xref-interned): Maybe insert face doc too. Separate
1036 sections with a line of hyphens.
1038 * faces.el: Some doc fixes. Declare some functions obsolete.
1039 (describe-face): Add customize button. Return the help
1042 2000-05-09 Eli Zaretskii <eliz@is.elta.co.il>
1044 * term/internal.el (IT-character-translations): Fix last change.
1046 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
1048 * woman.el: New file
1049 (from Francis J. Wright <F.J.Wright@Maths.QMW.ac.uk>).
1051 2000-05-08 Eli Zaretskii <eliz@is.elta.co.il>
1053 * term/internal.el (IT-character-translations): Update ASCII
1054 simulations for greek-iso8859-7, add latin-iso8859-14 and
1057 * international/mule-cmds.el (set-language-info-alist): Call
1058 define-prefix-command with 3 arguments, to make the map suitable
1061 2000-05-07 Dave Love <fx@gnu.org>
1063 * time.el: Small doc fixes from Pavel JanÃk ml..
1065 2000-05-05 Dave Love <fx@gnu.org>
1067 * emacs-lisp/cl-macs.el: Doc fixes; mainly avoid duplicating arg
1068 list in doc string. Don't quote keyword symbols.
1069 * emacs-lisp/cl.el: Likewise
1070 * emacs-lisp/cl-seq.el: Likewise
1072 2000-05-05 Gerd Moellmann <gerd@gnu.org>
1074 * abbrev.el (abbrev-mode): Make ARG optional.
1076 2000-05-04 Gerd Moellmann <gerd@gnu.org>
1078 * progmodes/ebrowse.el: Change file name `EBROWSE' to `BROWSE'.
1080 * files.el (auto-mode-alist): Change `EBROWSE' to `BROWSE'.
1082 * subr.el (substitute-key-definition): Clarify documentation.
1084 2000-05-04 Milan Zamazal <pdm@freesoft.cz>
1086 * glasses.el (glasses-convert-to-unreadable): Use
1087 `glasses-separator' instead of the hard-wired "_".
1088 (glasses-mode): Call `glasses-make-unreadable' only in a single
1091 2000-05-04 Eli Zaretskii <eliz@is.elta.co.il>
1093 * term/internal.el (cjk-codepages-alist): Add associations for
1094 Chinese and Korean codepages. Remove FIXME comment.
1096 2000-05-03 Dave Love <fx@gnu.org>
1098 * time.el (display-time-mail-face, display-time-use-mail-icon):
1100 (display-time-mail-icon): New variable.
1101 (display-time-string-forms): Use the above. Fix the local-map.
1103 2000-05-03 Gerd Moellmann <gerd@gnu.org>
1105 * replace.el (query-replace-map): Add binding for `E'.
1106 (query-replace-help): Extend help text.
1107 (perform-replace): Allow editing the replacement string.
1109 * make-mode.el (makefile-mode-abbrev-table): New variable.
1110 (makefile-mode): Set local abbrev table to
1111 makefile-mode-abbrev-table.
1112 (makefile-font-lock-keywords): Fontify includes and conditionals.
1114 * subr.el (add-minor-mode): Handle AFTER for keymaps. Don't
1117 * mailabbrev.el (mail-abbrev-insert-alias): Renamed from
1118 mail-interactive-insert-alias.
1119 (mail-abbrev-complete-alias): New command.
1120 (mail-mode-map): Bind it to `M-TAB'.
1122 2000-05-03 Kenichi Handa <handa@etl.go.jp>
1124 * language/lao-util.el (lao-compose-region): New function.
1126 2000-05-02 Gerd Moellmann <gerd@gnu.org>
1128 * files.el (recover-session): Make directories as necessary
1129 if they don't exist yet.
1131 * calendar/cal-french.el
1132 (french-calendar-multibyte-special-days-array)
1133 (french-calendar-special-days-array): Change French text.
1134 (calendar-french-date-string): Change output.
1135 (calendar-goto-french-date): Likewise.
1137 2000-05-02 Per Abrahamsen <abraham@dina.kvl.dk>
1139 * wid-edit.el (widget-default-active): Obey `:always-active'.
1140 (widget-documentation-string-value-create): Set `:always-active'.
1142 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
1144 * startup.el (auto-save-list-file-prefix): For ms-dos, set the
1145 default prefix to `~/_emacs.d/auto-save.list/_s'.
1146 (normal-top-level): Create the directory for auto-save files, if
1147 it doesn't already exist (in the ms-dos case only).
1149 2000-05-02 Eli Zaretskii <eliz@is.elta.co.il>
1151 * international/mule-cmds.el (set-language-environment): Don't
1152 concat an integer (dos-codepage), use format instead.
1154 2000-05-02 Dave Love <fx@gnu.org>
1156 * help.el (help-xref-on-pp): Check for constant symbols.
1158 2000-04-29 Gerd Moellmann <gerd@gnu.org>
1160 * startup.el (normal-top-level): Put a condition-case around
1161 the code loading subdirs.el.
1163 2000-04-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1165 * ps-print.el: Upside-down and face background color printing,
1166 line number step, doc fix.
1167 (ps-print-version): New version number (5.2).
1168 (ps-setup, ps-prologue-file, ps-begin-file, ps-begin-job)
1169 (ps-face-attribute-list, ps-plot-with-face): Code fix.
1170 (ps-spool-config): Var fix.
1171 (ps-printer-name-option): Const fix.
1172 (ps-print-upside-down, ps-use-face-background)
1173 (ps-line-number-step): New vars.
1174 (ps-window-system, ps-lp-system): New consts.
1175 (ps-face-background): New fun.
1177 2000-04-28 Richard Stallman <rms@gnu.org>
1179 * files.el (make-auto-save-file-name):
1180 Apply auto-save-file-name-transforms to visited file name
1181 before generating auto save file name.
1182 (auto-save-file-name-transforms): New variable.
1184 * files.el (backup-enable-predicate):
1185 Correctly test for a file under a temporary directory.
1187 2000-04-28 Gerd Moellmann <gerd@gnu.org>
1189 * subr.el (add-minor-mode): Rewritten.
1191 2000-04-28 Kenichi Handa <handa@etl.go.jp>
1193 * mail/sendmail.el (sendmail-send-it): Set
1194 buffer-file-coding-system to the selected coding system for MIME
1197 2000-04-27 Gerd Moellmann <gerd@gnu.org>
1199 * dired.el (dired-move-to-filename-regexp): Allow format where
1200 YYYY is followed by two spaces.
1202 * progmodes/etags.el (etags-tags-completion-table): Add a `:'
1203 in the second character class of the regexp.
1205 * mail/mh-comp.el (mh-send-sub): Look for mh-comp-formfile in
1208 * textmodes/texinfmt.el (texinfo-format-xref): Don't try to insert
1211 * subr.el (add-minor-mode): Use `set' instead of `setq'.
1213 * gud.el (gud-gdb-find-file): Call find-file-noselect with NOWARN
1216 2000-04-27 Sen Nagata <sen@eccosys.com>
1218 * emacs-lisp/crm.el (crm-completion-table): New variable.
1219 (crm-collection-fn, crm-test-completion)
1220 (completing-read-multiple): Use it.
1222 2000-04-27 Dave Love <fx@gnu.org>
1224 * help.el (locate-library): Use mapc.
1225 (help-manyarg-func-alist): Add call-process-region.
1227 2000-04-26 Gerd Moellmann <gerd@gnu.org>
1229 * subr.el (add-minor-mode): Make argument MAP optional.
1231 * desktop.el (desktop-save): Save list of minor modes.
1232 (desktop-create-buffer): Restore minor modes.
1233 (desktop-minor-mode-table): New user-option.
1235 * subr.el (add-minor-mode): New function.
1237 * image.el (find-image): New function.
1238 (defimage): Rewritten to find image at load time.
1240 * startup.el (normal-top-level-add-to-load-path): Handle
1241 case that the default directory is not in load-path.
1243 * help.el: Old patch from Stefan Monnier.
1244 (help-xref-on-pp): New function.
1245 (describe-variable): Use it to display xrefs in a symbol's value.
1247 2000-04-26 Stefan Monnier <monnier@cs.yale.edu>
1249 * cus-edit.el (custom-face): Fix parenthesis.
1251 2000-04-26 Kenichi Handa <handa@etl.go.jp>
1253 * mail/rmail.el (rmail-expunge): When there are no deleted
1254 messages, do nothing.
1256 2000-04-26 Dave Love <fx@gnu.org>
1258 * international/mule-cmds.el (locale-translation-file-name):
1260 (set-locale-environment): Set it here (at runtime).
1262 2000-04-25 Gerd Moellmann <gerd@gnu.org>
1264 * replace.el (perform-replace): Add parameters START and END. Use
1265 them instead of the check for a region in Transient Mark mode.
1266 (query-replace-read-args): Return two more list elements for the
1267 start and end of the region in Transient Mark mode.
1268 (query-replace, query-replace-regexp, query-replace-regexp-eval)
1269 (map-query-replace-regexp, replace-string, replace-regexp): Add
1270 optional last arguments START and END and pass them to
1273 * progmodes/ebrowse.el (ebrowse-tags-query-replace): Construct a
1274 form with additional arguments for perform-replace.
1276 * progmodes/etags.el (tags-query-replace): Add parameters START
1277 and END. Construct a form with additional arguments for
1280 * simple.el (shell-command): Set default directory for "*Shell
1281 Command Output" buffer.
1283 * language/european.el (iso-latin-4): Fix typo.
1285 * emacs-lisp/crm.el: New file.
1287 2000-04-24 Dave Love <fx@gnu.org>
1289 * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
1290 (Custom-reset-saved, Custom-reset-standard)
1291 (custom-group-value-create, custom-group-set, custom-group-save)
1292 (custom-group-reset-current, custom-group-reset-saved)
1293 (custom-group-reset-standard): Use mapc.
1294 (custom-buffer-create-internal): Disable undo when creating items.
1296 (custom-face): Avoid redundant lambda.
1298 2000-04-24 Gerd Moellmann <gerd@gnu.org>
1300 * startup.el (auto-save-list-file-prefix): Set default to
1301 `~/.emacs.d/auto-save-list/.saves-' for systems other than MS-DOS.
1303 2000-04-24 Sam Steingold <sds@gnu.org>
1305 * time-stamp.el (time-stamp-string-preprocess): Always convert
1306 `field-result' to a string.
1308 2000-04-24 Gerd Moellmann <gerd@gnu.org>
1310 * frame.el (scrolling): New group.
1311 (automatic-hscrolling): New user-option.
1313 * startup.el (command-line-x-option-alist): Add `-lsp' and
1316 2000-04-19 Dave Love <fx@gnu.org>
1318 * emacs-lisp/cl-extra.el (cl-old-mapc): Fix definition.
1319 (cl-mapc): Rename from mapc. Fix the funcall.
1321 2000-04-19 Gerd Moellmann <gerd@gnu.org>
1323 * simple.el (clone-indirect-buffer-other-window): New command.
1324 (clone-indirect-buffer): Add optional arg NORECROD.
1325 (toplevel): Bind `C-x 4 c' to clone-indirect-buffer-other-window.
1327 * help.el (resize-temp-buffer-window): Use count-screen-lines.
1329 * window.el (count-screen-lines): New function.
1330 (shrink-window-if-larger-than-buffer): Use count-screen-lines
1331 instead of window-buffer-height.
1333 * progmodes/inf-lisp.el (inferior-lisp-mode): Don't set
1334 non-existing variable comint-input-sentinel.
1335 (inferior-lisp-args-to-list): Removed.
1336 (inferior-lisp): Use split-string instead of
1337 inferior-lisp-args-to-list.
1339 * hexl.el (hexl-insert-hex-string): New command.
1341 * emacs-lisp/gulp.el (gulp-maintainer): Use expand-file-name
1344 2000-04-18 Gerd Moellmann <gerd@gnu.org>
1346 * mail/sendmail.el (mail-do-fcc): Prevent inserting a newline
1347 at the start of an existing but empty folder.
1349 2000-04-18 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1351 * ps-mule.el: Customization fix, doc fix.
1352 (ps-multibyte-buffer): Customization fix.
1354 2000-04-17 Richard M. Stallman <rms@caffeine.ai.mit.edu>
1356 * subr.el (read-passwd): Use read-char-exclusive.
1358 2000-04-17 Gerd Moellmann <gerd@gnu.org>
1360 * textmodes/texinfo.el (texinfo-insert-@email)
1361 (texinfo-insert-@emph, texinfo-insert-@quotation)
1362 (texinfo-insert-@strong, texinfo-insert-@url): New functions.
1363 (texinfo-mode-map): Add key bindings for them.
1365 * files.el (basic-save-buffer-2): Use a template with `$'
1366 instead of `#' for VMS.
1368 * simple.el (clone-indirect-buffer): New function.
1370 2000-04-16 Stephen Eglen <stephen@gnu.org>
1372 * iswitchb.el (iswitchb-case): New function. If the user input
1373 contains any upper-case characters, the search is made
1376 2000-04-17 Stefan Monnier <monnier@cs.yale.edu>
1378 * textmodes/texinfo.el (texinfo-mode-syntax-table): Add \n as
1380 (texinfo-font-lock-syntactic-keywords): New var.
1381 (texinfo-font-lock-keywords): Remove comment regexp.
1382 (texinfo-insert-block): New function.
1383 (texinfo-mode-map): Add C-c C-o -> texinfo-insert-block.
1384 (texinfo-mode): Use define-derived-mode. Tweak comment-start-skip
1385 and font-lock-defaults. Use regexp-opt for outline-regexp.
1386 (texinfo-environments): New var.
1387 (texinfo-environment-regexp): Use regexp-opt and
1388 texinfo-environments.
1390 * textmodes/ispell.el (ispell-menu-map-needed): Check that
1391 ispell-process is bound since this might be eval'd before ispell
1393 (ispell-message): Use a tiny bit less magic and a bit more hard
1394 data to figure out what kind of sc-cite-regexp to use.
1396 * emacs-lisp/regexp-opt.el (regexp-opt-depth): Fix the regexp.
1398 * calendar/diary-lib.el (fancy-diary-display, mark-diary-entries)
1399 (insert-cyclic-diary-entry): Unquote the lambda.
1401 * gud.el (gud-jdb-build-source-files-list): Fix typo.
1403 * files.el (backup-enable-predicate): Unquote the lambda.
1405 * cus-edit.el (custom-face, face): Unquote the lambda.
1407 2000-04-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1409 * ps-print.el: Check for line-beginning-position definition.
1411 * ps-print.el: Fix counting lines in a region.
1412 (ps-print-version): New version number (5.1.5).
1413 (ps-spool-without-faces, ps-spool-with-faces): Adjust code.
1414 (ps-printing-region): Fun code fix.
1416 2000-04-15 Gerd Moellmann <gerd@gnu.org>
1418 * gud.el (gud-jdb-build-source-files-list): Change file-exists-p
1419 to file-directory-p.
1421 2000-04-14 Gerd Moellmann <gerd@gnu.org>
1423 * gud.el (gud-jdb-build-source-files-list): Check that directory
1424 exists before calling directory-files.
1426 2000-04-13 Dave Love <fx@gnu.org>
1428 * emacs-lisp/trace.el: Change maintainer. Use new backquote
1431 * emacs-lisp/cl-specs.el: Remove when, unless.
1433 * emacs-lisp/cl-extra.el: Don't quote keywords.
1434 (cl-old-mapc): New variable.
1436 (cl-map-intervals): Use with-current-buffer. Don't check for
1437 next-property-change.
1438 (cl-map-overlays): Use with-current-buffer.
1440 (copy-tree, remprop): Define unconditionally.
1442 * emacs-lisp/cl-compat.el (keywordp): Remove.
1444 * emacs-lisp/edebug.el (edebug-keywordp): Remove. Change callers
1446 (edebug-spec): Enable keywordp.
1448 * cus-edit.el (custom-sort-items): Avoid symbol-name with new
1451 * cus-start.el: Use keywordp.
1453 2000-04-13 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
1455 * diary-lib.el (include-other-diary-files): Fix the fix of
1456 2000-02-18 by doing a save-excursion.
1458 2000-04-13 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1460 * ps-print.el: Customization fix, doc fix.
1461 (ps-print-version): New version number (5.1.4).
1462 (ps-article-author, ps-article-subject, ps-info-file, ps-info-node)
1463 (ps-print-preprint): Adjust code.
1464 (ps-printer-name, ps-lpr-switches, ps-user-defined-prologue)
1465 (ps-print-prologue-header, ps-print-control-characters)
1466 (ps-spool-config): Customization fix.
1468 2000-04-13 Eli Zaretskii <eliz@is.elta.co.il>
1470 * textmodes/ispell.el (ispell-menu-map): Menu items rearranged and
1471 converted to the new menu-item format, names silightly changed,
1474 Support for spelling without async subprocesses:
1476 * textmodes/ispell.el (ispell-cmd-args, ispell-output-buffer)
1477 (ispell-session-buffer): New variables.
1478 (ispell-start-process, ispell-process-status,
1479 ispell-accept-output, ispell-send-string): New functions, for
1480 Ispell invocation when async subprocesses aren't supported.
1481 (ispell-word, ispell-pdict-save, ispell-command-loop,
1482 ispell-process-line, ispell-buffer-local-parsing): Replace calls
1483 to process-send-string with calls to ispell-send-string, and
1484 accept-process-output with ispell-accept-output.
1485 (ispell-init-process): Call ispell-process-status instead of
1486 process-status with.
1487 (ispell-init-process): Call ispell-start-process. Call
1488 ispell-accept-output and ispell-send-string. Don't call
1489 process-kill-without-query and kill-process if they are unbound.
1490 (ispell-async-processp): New function.
1492 2000-04-12 Dave Love <fx@gnu.org>
1494 * info.el: Add debug-ignored-errors.
1495 (Info-mode-menu): Add some items.
1496 (Info-directory): Add autoload cookie.
1498 * menu-bar.el (menu-bar-options-menu): Make `mule' always visible.
1499 Modify `truncate-lines'. Make `describe-language-environment'
1500 always visible and add help. Modify `describe-key' help. Invoke
1501 Info-directory from `info'. New entry `emacs-manual'.
1503 2000-04-10 Gerd Moellmann <gerd@gnu.org>
1505 * progmodes/ebrowse.el (ebrowse-tree-mode): Use
1506 propertized-buffer-identification.
1507 (ebrowse-update-member-buffer-mode-line): Likewise.
1508 (ebrowse--mode-strings): Removed.
1509 (ebrowse--mode-line-props): Removed.
1511 * files.el (auto-mode-alist): Add `EBROWSE'.
1513 * progmodes/ebrowse.el (ebrowse-read): Skip forward over white
1514 space before testing for end of buffer.
1515 (ebrowse-load): Removed.
1516 (ebrowse-revert-tree-buffer-from-file): Rewritten.
1517 (ebrowse-create-tree-buffer): Rewritten.
1518 (ebrowse-tree-mode): Read tree from buffer.
1520 * progmodes/ebrowse-ffh.el: Removed.
1522 2000-04-10 Kenichi Handa <handa@etl.go.jp>
1524 * language/vietnamese.el (viet-vscii-decode-table): Fix a bug.
1526 2000-04-10 Gerd Moellmann <gerd@gnu.org>
1528 * jit-lock.el (with-buffer-unmodified): Fix bug introduced by `)'
1531 2000-04-09 Dave Love <fx@gnu.org>
1533 * files.el (backup-enable-predicate): Use
1534 temporary-file-directory, small-temporary-file-directory.
1535 (make-backup-file-name-function, backup-directory-alist): New
1537 (make-backup-file-name-1): New function.
1538 (make-backup-file-name): Use it.
1539 (find-backup-file-name): Likewise. Use format for clarity, not
1541 (file-newest-backup): Use make-backup-file-name.
1543 2000-04-09 Gerd Moellmann <gerd@gnu.org>
1545 * progmodes/ebrowse-ffh.el: New file.
1547 * progmodes/ebrowse.el (ebrowse-find-file-hook-fn): Moved
1549 (ebrowse-load): Add autoload.
1551 * finder.el (finder-commentary): Add autoload cookie.
1553 * mail/rfc2368.el: Correct author's email address.
1555 * progmodes/ebrowse.el: New file.
1557 * emacs-lisp/easymenu.el (easy-menu-create-menu): Process menu
1559 (easy-menu-do-add-item): Ditto.
1560 (easy-menu-define): Extend doc string.
1562 * jit-lock.el (with-buffer-unmodified): Use
1563 restore-buffer-modified-p.
1564 (with-buffer-prepared-for-font-lock): Use with-buffer-unmodified.
1565 (jit-lock-function, jit-lock-stealth-fontify): Don't use
1566 with-buffer-unmodified.
1568 2000-04-08 Dave Love <fx@gnu.org>
1570 * emacs-lisp/edebug.el: Fix specs for dolist, dotimes, push, pop,
1573 2000-04-07 Mikio Nakajima <minakaji@osaka.email.ne.jp>
1575 * viper-util.el (viper-put-on-search-overlay): New subroutine.
1576 (viper-flash-search-pattern): No operation when using Emacs
1577 doesn't support face.
1578 Use `viper-put-on-search-overlay'.
1580 2000-04-04 Gerd Moellmann <gerd@gnu.org>
1582 * isearch.el (isearch-mode-map): Define M-C-s like C-s and M-C-r
1585 * progmodes/make-mode.el: Some doc fixes.
1586 (makefile-mode-abbrev-table): New variable.
1587 (makefile-mode): Set local abbrev table to makefile-mode-abbrev-table.
1588 (makefile-font-lock-keywords): Fontify includes and conditionals.
1589 (toplevel): Require `dabbrev' and `add-log' when compiling.
1591 * replace.el (perform-replace): Don't move forward one char
1592 when MATCH-AGAIN is nil, and REGEXP-FLAG is t. We don't want
1593 to do that because it leaves point 1 position after the last
1594 replacement, after everything has been replaced.
1596 * jit-lock.el (with-buffer-unmodified): New macro.
1597 (with-buffer-prepared-for-font-lock): Don't preserve buffer's
1599 (jit-lock-function-1): Extracted from jit-lock-function; not
1600 preserving buffer's modified state.
1601 (jit-lock-function, jit-lock-stealth-fontify): Call
1602 jit-lock-function-1.
1604 * mail/rfc2368.el: Remove supernumerary copyright line.
1606 2000-04-04 Milan Zamazal <pdm@freesoft.cz>
1608 * glasses.el: Provide facilities for inserting space before left
1609 parentheses and uncapitalization of identifiers.
1610 (glasses-mode): Try to remove old overlays in all cases.
1612 2000-04-03 Gerd Moellmann <gerd@gnu.org>
1614 * progmodes/compile.el (compile-internal): Display the compilation
1615 buffer in a different frame, if it's already displayed there.
1617 * mail/rfc2368.el: New file.
1619 * simple.el (sendmail-user-agent-compose): Recognize a `body'
1620 header and insert its value as mail body.
1622 * subr.el (member-ignore-case): New function.
1624 * dabbrev.el (dabbrev-ignored-regexps): New user-option.
1625 (dabbrev--find-expansion): Ignore buffers matching a regexp
1626 from dabbrev-ignored-regexps.
1628 * jka-compr.el (jka-compr-compression-info-list): Add `.z'
1629 to extensions handled by gzip.
1631 2000-04-03 Richard M. Stallman <rms@gnu.org>
1633 * files.el (insert-directory): List the total free space
1634 along with the used space.
1636 * textmodes/fill.el (fill-individual-paragraphs): If a no-prefix
1637 line is followed by one that matches CITATION-REGEXP, end the
1640 2000-04-03 Markus Rost <rost@delysid.gnu.org>
1642 * mail/rmailsum.el (rmail-user-mail-address-regexp): New option.
1643 (rmail-make-basic-summary-line): Use that option.
1645 2000-04-03 Kenichi Handa <handa@etl.go.jp>
1647 * international/mule-cmds.el (encoded-string-description):
1648 Rewritten. Try pretty description for ISO 2022 escape sequences
1649 only if CODING-SYSTEM is based on ISO 2022. Use uppercase letters
1650 for hexadecimal format.
1652 2000-04-01 Dave Love <fx@gnu.org>
1654 * cpp.el: Change customization group to `c' from `C'.
1656 * vcursor.el (vcursor-move): Use display-color-p.
1658 * international/mule-util.el: Provide mule-utils.
1659 (string-to-sequence): Simplify and speed up.
1661 * international/mule.el (make-coding-system): Purecopy doc-string.
1663 * international/mule-cmds.el: Various menu changes.
1664 (describe-specified-language-support): Handle `Default'.
1665 (set-language-info): Purecopy `info'.
1667 2000-03-31 Andrew Innes <andrewi@gnu.org>
1669 * vc.el (vc-backend-diff): Return the correct status if we had to
1670 retry the rcsdiff command without the --brief option.
1672 2000-03-31 Dave Love <fx@gnu.org>
1674 * help.el (help-manyarg-func-alist): Correct several omissions.
1676 * add-log.el: Don't require cl, fortran.
1677 (add-log-current-defun-function): Doc fix.
1678 (change-log-version-number-regexp-list): Remove SCCS part. Doc
1680 (change-log-version-rcs): Function deleted.
1681 (change-log-version-number-search): Doc fix. Use
1682 vc-workfile-version. Avoid CL dolist.
1683 (add-change-log-entry): Just call add-log-current-defun to get
1684 defun. Simplify somewhat.
1685 (change-log-get-method-definition-1): Likewise.
1686 (add-log-current-defun): Return nil if calling
1687 add-log-current-defun-function does so. Move Fortran stuff to
1688 fortran.el. Return string without properties.
1690 * textmodes/ooutline.el (outline-font-lock-keywords): Use :upper:
1691 and :alpha: char classes.
1693 * mail/supercite.el: Defvar curline when compiling.
1694 (sc-citation-root-regexp, sc-citation-nonnested-root-regexp)
1695 (sc-get-address, sc-attribs-extract-namestring): Use [:alnum:]
1696 rather than a-zA-Z0-9 to allow non-ASCII characters.
1698 2000-03-31 Gerd Moellmann <gerd@gnu.org>
1700 * emacs-lisp/byte-opt.el: Fix byte-compiler warnings format.
1702 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
1705 * lpr.el (print-region-1): Use -d to specify printer name for
1706 systems `usg-unix-v*, `dgux', `hpux', `irix'.
1708 2000-03-31 Dave Love <fx@gnu.org>
1710 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Look
1711 for function definition in symbol's function value slot first
1712 instead of first consulting byte-compile-function-environment.
1714 2000-03-31 Kenichi Handa <handa@etl.go.jp>
1716 * language/european.el ("Polish"): New language environment.
1717 (setup-polish-environment): New function.
1719 2000-03-30 Gerd Moellmann <gerd@gnu.org>
1721 * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
1724 * emacs-lisp/byte-opt.el (byte-compile-inline-expand): Fix bug
1725 trying to `load' the symbol of an autoload instead of the file
1726 recorded in the autoload. Fix error messages.
1728 2000-03-30 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1730 * ps-print.el: PostScript programming fix for ghostview, doc fix.
1731 (ps-print-version): New version number (5.1.3).
1732 (ps-begin-file, ps-begin-job, ps-set-color, ps-do-despool, ps-setup)
1733 (ps-insert-file, ps-output-boolean, ps-plot-with-face)
1734 (ps-generate-postscript-with-faces): Code fix.
1735 (ps-color-values): XEmacs compatibility.
1736 (ps-print-background-image, ps-print-background-text, ps-printer-name)
1737 (ps-default-fg, ps-default-bg): Adjust customization.
1738 (ps-zebra-color): Adjust customization, renaming old ps-zebra-gray var.
1739 (ps-color-scale): Renaming old ps-color-value fun.
1740 (ps-print-headers): Replace ps-print-header group to avoid conflict
1741 with ps-print-header variable.
1742 (ps-print-miscellany): New group.
1743 (ps-format-color, ps-rgb-color): New funs.
1744 (ps-default-foreground): New var.
1745 (ps-printer-name-option): New const.
1747 2000-03-30 Peter Breton <pbreton@ne.mediaone.net>
1750 (network-connection-host, network-connection-service): New variables
1751 (network-connection-mode): New mode, derived from comint-mode
1752 (network-connection-mode-setup): New function, saves host and
1753 service information in local variables.
1756 (locate-word-at-point): Added this function
1757 (locate): Default to using locate-word-at-point as input
1760 2000-03-29 Dave Love <fx@gnu.org>
1762 * calendar/appt.el: Doc fixes.
1763 (appt-check): Convert min-to-app to a string before passing to
1764 appt-disp-window-function or concat.
1765 (appt-delete-window): Remove test for frame-root-window.
1766 (appt-select-lowest-window, appt-convert-time): Simplify.
1768 * emacs-lisp/bytecomp.el: Doc fixes.
1769 (byte-compile-file-form-autoload): Update
1770 byte-compile-function-environment.
1772 2000-03-29 Andreas Schwab <schwab@suse.de>
1774 * emacs-lisp/autoload.el: Also print defsubst doc string
1777 * dired.el (dired-insert-directory): If dired-free-space-program
1778 failed just delete its output.
1780 2000-03-29 Dave Love <fx@gnu.org>
1782 * international/iso-cvt.el: Move provide to end. Doc fixes.
1783 (iso-iso2sgml-trans-tab, iso-sgml2iso-trans-tab): New variables.
1784 (iso-iso2sgml, iso-sgml2iso): New functions.
1785 (iso-cvt-define-menu): Fix some entries and use backquote for
1788 * format.el (format-alist): Use iso-cvt functions for SGML/HTML.
1790 2000-03-28 Gerd Moellmann <gerd@gnu.org>
1792 * emacs-lisp/lisp-mnt.el (lm-last-modified-date): Add parameter
1793 ISO-DATE. If non-nil, return date in ISO 8601 format.
1795 2000-03-26 Stefan Monnier <monnier@cs.yale.edu>
1797 * log-edit.el (log-edit-mode-map): Inherit from vc-log-mode-map
1798 if it ever becomes used.
1799 (log-edit-mode-hook): Default to vc-log-mode-hook.
1800 (log-edit-mode): Fix the docstring.
1802 * emacs-lisp/bytecomp.el (byte-compile-eval): Fix and reenable
1805 2000-03-26 Dave Love <fx@gnu.org>
1807 * net/browse-url.el (browse-url): Re-fix case of
1808 browse-url-browser-function being an alist.
1809 (browse-url): Add :link to defgroup.
1811 * files.el: Doc fixes.
1812 (file-truename): Include `[' in wildcard characters.
1813 (automount-dir-prefix): Customize.
1814 (find-file-wildcards): Add :version.
1815 (find-file-noselect): Simplify a mapcar call.
1817 * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
1818 compatible with inf-lisp version.
1819 (eval-defun-1): Fix custom-declare-variable case.
1821 2000-03-25 Stefan Monnier <monnier@cs.yale.edu>
1823 * cus-edit.el (hook): Use `dolist' instead of CL's `mapc'.
1825 2000-03-24 Gerd Moellmann <gerd@gnu.org>
1827 * Makefile (COMPILE_FIRST): New macro.
1828 (compile-files): Compile files from COMPILE_FIRST first.
1830 * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new
1833 * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
1834 matching open parenthesis in column 0 to defun-prompt-regexp
1835 only if open-paren-in-column-0-is-defun-start is set.
1837 * sun-curs.el: Require CL at compile-time only.
1839 * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
1840 instead of copy-list which is a function from CL.
1841 (msb--choose-menu, msb--mode-menu-cond)
1842 (msb--create-buffer-menu-2): Use dolist instead of mapc.
1843 (msb--init-file-alist): Use mapcar instead of mapcan.
1844 (msb--aggregate-alist): Use mapcar instead of mapcan. Fix
1845 `(' in column 0 in doc string.
1846 (msb--add-separators): Use mapcar instead of mapcan.
1848 * cus-dep.el: Require CL at compile-time only.
1850 2000-03-24 Stefan Monnier <monnier@cs.yale.edu>
1852 * emacs-lisp/bytecomp.el (byte-compile-warning-types)
1853 (byte-compile-warnings): New warning `noruntime'.
1854 (byte-compile-constants, byte-compile-variables): Fix docstring.
1855 (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
1856 execute `eval-whenc-compile's body.
1857 (byte-compile-unresolved-functions): Fix docstring.
1858 (byte-compile-eval): New function.
1859 (byte-compile-callargs-warn): Check if the function will be available
1860 at runtime (via property `byte-compile-noruntime').
1861 (byte-compile-print-syms): New function.
1862 (byte-compile-warn-about-unresolved-functions): Also warn about
1863 `noruntime' functions (and use `byte-compile-print-syms').
1864 (byte-compile-file): Capitalize the message.
1866 2000-03-24 Gerd Moellmann <gerd@gnu.org>
1868 * mail/rmail.el (rmail-confirm-expunge): New user-option.
1869 (rmail-expunge): Ask for confirmation depending on the setting
1870 of rmail-confirm-expunge.
1872 2000-03-23 Gerd Moellmann <gerd@gnu.org>
1874 * Makefile (bootstrap-clean): If $(emacs) exists, build
1875 loaddefs.el first. A loaddefs.el that's not up-to-date might
1876 cause a bootstrap failure because things don't autoload as
1879 2000-03-23 Dave Love <fx@gnu.org>
1881 * net/browse-url.el: Restore previous use of
1882 browse-url-maybe-new-window.
1884 2000-03-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1886 * ps-print.el: Skip banner page fix.
1887 (ps-print-version): New version number (5.1.2).
1888 (ps-begin-file, ps-end-file, ps-generate): Code fix.
1890 2000-03-23 Dave Pearson <davep@davep.org>
1892 * net/quickurl.el Changed the type of parameter passed to the
1893 function defined by `quickurl-format-function'. Before only the
1894 text of the URL was passed. Now the whole URL structure is passed
1895 and the function is responsible for extracting the parts it
1896 requires. Changed the default of `quickurl-format-function'
1898 (quickurl-insert): Changed the `funcall' of
1899 `quickurl-format-function' to match the above change.
1900 (quickurl-list-insert): Changed the `url' case so that it makes
1901 use of `quickurl-format-function', previous to this the format was
1904 2000-03-22 Gerd Moellmann <gerd@gnu.org>
1906 * startup.el: Change some spellings for the X Window System.
1908 2000-03-22 Stefan Monnier <monnier@cs.yale.edu>
1910 * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean
1911 up the code and the regexp and make sure the cursor is temporarily
1912 moved to the suspicious line while querying the user.
1914 2000-03-22 Jason Rumney <jasonr@gnu.org>
1916 * w32-fns.el (w32-charset-info-alist): Initialize.
1918 2000-03-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
1920 * ps-print.el: N-up last page fix.
1921 (ps-print-version): New version number (5.1.1).
1922 (ps-end-file, ps-end-job, ps-generate): Code fix.
1924 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
1926 * files.el (find-file-run-dired): Update docstring.
1927 (find-directory-functions): New hook.
1928 (find-file-noselect): Run find-directory-functions rather than
1929 calling dired directly.
1931 * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
1933 * pcvs.el: Add a minimal leading commentary.
1934 (cvs-make-cvs-buffer): Change the header part by removing the startup
1935 message and adding a `Module' entry. Also replace the FOOTER and
1936 HEADER special fileinfos with the new support in ewoc for updating
1937 its own footer and header.
1938 (cvs-update-header): Update to use the header/footer of the ewoc.
1939 (cvs-mode): Use define-derived-mode and set truncate-lines to t.
1940 (cvs-is-within-p): New function.
1941 (cvs-mode-run): Take advantage of `save-some-buffers's new ability
1942 to only examine some subset of the buffers.
1944 * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
1945 `format' instead of our own ad-hoc functions.
1946 Remove HEADER and FOOTER cases, now handled in the EWOC.
1947 (cvs-fileinfo<): Remove HEADER and FOOTER cases.
1949 * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
1950 output to avoid scaring the user.
1951 (cvs-parse-table): Catch message for non-up-to-date commits.
1953 * pcvs-defs.el (cvs-startup-message): Remove.
1954 (cvs-global-menu): New autoloaded menu.
1956 * pcvs-util.el (cvs-string-fill): Remove.
1958 * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
1959 (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
1960 PP part of it and also make it work for footers and headers.
1961 (ewoc-create): Drop POS and BUFFER arguments.
1962 Use the DLL's dummy node to store the end-of-footer position.
1963 (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
1964 (ewoc-refresh): Remove unused `header' variable.
1965 (ewoc-(get|set)-hf): New functions.
1967 * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
1968 log-view-*-(message|file) and use easy-mmode-define-navigation.
1969 (log-view-message-re): Match SCCS format as well.
1970 And match the revision line rather than the dashed separator line.
1971 (log-view-mode): Use the new define-derived-mode.
1972 (log-view-current-tag): Fill in with an actual implementation.
1974 * cvs-status.el (cvs-status-(prev|next)): Rename from
1975 cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
1976 (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
1977 to let the output "breathe" a little more (more readable).
1978 (cvs-status-mode): Use the new define-derived-mode.
1980 * smerge-mode.el (smerge-auto-leave): New function and variable.
1981 (smerge-basic-map): Rename from smerge-basic-keymap.
1982 Change the bindings for smerge-diff-*.
1983 (smerge-*-map): Use easy-mmode-defmap.
1984 (smerge-(next|prev)): Use easy-mmode-define-navigation.
1985 (smerge-keep-*): Use smerge-auto-leave.
1987 2000-03-21 Jason Rumney <jasonr@gnu.org>
1989 * cus-edit.el (custom-button-face): Use 3D look for w32.
1990 (custom-button-pressed-face): Likewise.
1992 2000-03-21 Gerd Moellmann <gerd@gnu.org>
1994 * progmodes/etags.el (tags-case-fold-search): New user-option.
1995 (tags-loop-eval): New function. Bind case-fold-search around eval
1996 depending on the value of tags-case-fold-search.
1997 (tags-loop-continue): Use tags-loop-eval.
1998 (find-tag-in-order): Bind case-fold-search depending on the value
1999 of tags-case-fold-search.
2001 2000-03-21 Stefan Monnier <monnier@cs.yale.edu>
2003 * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'.
2004 (diff-end-of-hunk): Return the end position for use in
2005 `easy-mmode-define-navigation'.
2006 (diff-recenter): Remove.
2007 (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
2008 of `easy-mmode-define-navigation'.
2009 (diff-kill-*): Rename `diff-*-kill' (for consistency with the
2010 previous renaming) and fix to use new names.
2011 (diff-merge-strings): Use \n as separator: simpler, faster.
2012 (diff-mode): Use `define-derived-mode'.
2014 * derived.el (define-derived-mode): Don't autoload anymore.
2015 Prefer the macro-only version provided by easy-mmode.el.
2017 * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
2018 `easy-mmode-define-derived-mode'.
2019 Use `combine-run-hooks'.
2020 (easy-mmode-define-navigation): New macro.
2022 * subr.el (combine-run-hooks): New function.
2024 2000-03-21 Kenichi HANDA <handa@etl.go.jp>
2026 * term/x-win.el: Fontsets related initialization is simplified.
2028 * international/mule-diag.el (describe-font): Don't refer to
2029 global-fontset-alist, instead call font-list.
2030 (describe-fontset, list-fontsets, mule-diag): Likewise.
2031 (print-fontset): Adjusted for the change of fontset
2034 * international/fontset.el (x-charset-registries): Variable
2035 removed, instead the corresponding data is stored in the default
2037 (register-alternate-fontnames): Function removed.
2038 (resolved-ascii-font): Variable removed.
2039 (x-compose-font-name): Ignore the second argument REDOCE.
2040 (x-complement-fontset-spec): Complement only an ASCII font and
2041 element for those charsets than can use that ASCII font.
2042 (generate-fontset-menu): Don't refer to global-fontset-alist,
2043 instead call fontset-list.
2044 (uninstantiated-fontset-alist): Variable removed.
2045 (x-style-funcs-alist): Likewise.
2046 (fontset-default-styles): Likewise.
2047 (x-modify-font-name): Function removed.
2048 (create-fontset-from-fontset-spec): Ignore the argument
2050 (create-fontset-from-ascii-font): Docsting adjusted for the above
2052 (instantiate-fontset, resolve-fontset-name): Functions removed.
2053 (fontset-list): Now implemented by C code.
2055 * faces.el (read-face-font): Fix TABLE arg to completing-read.
2056 (describe-face): Include `font' attribute in the description.
2058 2000-03-21 Kenichi Handa <handa@etl.go.jp>
2060 * international/quail.el (quail-set-keyboard-layout): Typo fixed.
2062 2000-03-20 Gerd Moellmann <gerd@gnu.org>
2064 * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
2065 ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
2066 zone-mode.el, snmp-mode.el: Moved to net subdirectory.
2068 * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
2069 about behavior of set-buffer-modified-p wrt redisplay.
2071 2000-03-19 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2073 * view.el (view-mode-disable): Kill local binding of view-read-only.
2075 2000-03-18 Gerd Moellmann <gerd@gnu.org>
2077 * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
2078 is a string, convert it to a syntax cell using string-to-syntax.
2080 * simple.el (syntax-code-table, syntax-flag-table): New variables.
2081 (string-to-syntax): New function.
2083 * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
2084 (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
2085 try to use passive ftp mode.
2087 2000-03-17 Gerd Moellmann <gerd@gnu.org>
2089 * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
2091 * simple.el (append-to-buffer): Update point of windows after
2094 * abbrev.el (inverse-add-abbrev): Identify word by first moving
2095 forward then moving backward. Reindent.
2097 * frame.el (other-frame): Call x-focus-frame only if
2098 focus-follows-mouse is off.
2100 2000-03-17 Dave Love <fx@gnu.org>
2102 * pcvs-util.el (cvs-strings->string): Rename
2103 replace-regexps-in-string.
2105 2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
2107 * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
2108 regexp for labels cannot span several lines.
2110 * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
2111 `(setq :<key> ':<key>)' to the macro expansion.
2113 2000-03-16 Dave Love <fx@gnu.org>
2115 * progmodes/f90.el (f90): Put custom group under `languages', not
2117 (f90-mode-hook): Customize.
2118 (f90-mode): Set add-log-current-defun-function.
2119 (f90-current-defun): New function.
2121 2000-03-16 Gerd Moellmann <gerd@gnu.org>
2123 * cus-edit.el (custom-variable-tag-face): Handle case that
2124 default face's height is not a number.
2125 (custom-face-tag-face, custom-group-tag-face-1)
2126 (custom-group-tag-face): Ditto.
2127 (custom-group-tag-face-1): Add :group.
2129 * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
2131 2000-03-15 Gerd Moellmann <gerd@gnu.org>
2133 * pcvs-defs.el (toplevel): Remove autoload cookie for form
2136 2000-03-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
2138 * ps-print.el: PostScript user-defined prologue, PostScript error
2140 (ps-print-version): New version number (5.1).
2141 (ps-user-defined-prologue, ps-error-handler-message)
2142 (ps-print-prologue-0, ps-error-handler-alist): New vars.
2143 (ps-setup, ps-begin-file, ps-begin-job): Code fix.
2144 (ps-insert-string): New function.
2146 2000-03-15 Kenichi Handa <handa@etl.go.jp>
2148 * international/ccl.el (ccl-compile-expression): Don't generate
2149 invalid self-assignment code.
2151 2000-03-14 Dave Love <fx@gnu.org>
2153 * subr.el (replace-regexp-in-string): Renamed from
2154 replace-regexps-in-string. Doc fix.
2156 2000-03-12 Dave Love <fx@gnu.org>
2158 * cus-edit.el: Doc fixes.
2159 (customize-set-variable, customize-save-variable): Rename args for
2161 (custom-variable-tag-face, custom-face-tag-face)
2162 (custom-group-tag-face-1, custom-group-tag-face): Modify from
2163 style which user identify as hyperlink.
2164 (hook): Don't add undefined functions to the hook.
2165 (debug-ignored-errors): Transfer message from bindings.el.
2167 2000-03-12 Gerd Moellmann <gerd@gnu.org>
2169 * recentf.el (recentf-keep-non-readable-files-p): Remove
2170 double/nested definition.
2172 2000-03-12 Dave Love <fx@gnu.org>
2174 * facemenu.el (facemenu-get-face): Use display-color-p.
2175 * enriched.el (enriched-decode-foreground): Likewise.
2176 (enriched-decode-background): Likewise.
2177 * isearch.el (isearch-highlight): Likewise.
2178 * info-look.el (info-lookup): Likewise.
2179 * simple.el (completion-setup-function): Likewise.
2181 * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
2184 * bindings.el (mode-line-format): Fix line-number and
2185 column-number items. Add help-echo for the background.
2186 (mode-line-mule-info): Modify help-echo.
2188 * avoid.el (mouse-avoidance-mode): Add autoload cookie to
2191 * files.el (load-file): Allow completion to .elc.
2193 * man.el: Doc fixes.
2194 (Man-init-defvars): Use display-color-p to set fontification.
2196 * play/hanoi.el (hanoi-internal): Don't use oddp.
2198 2000-03-12 Gerd Moellmann <gerd@gnu.org>
2200 * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
2202 * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
2204 2000-03-12 Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
2206 * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
2209 2000-03-10 Stefan Monnier <monnier@cs.yale.edu>
2211 * font-lock.el (font-lock-keywords): Fix the doc now that
2212 regexp-opt-depth is unnecessary.
2213 (save-buffer-state): Set an edebug spec.
2214 (font-lock-fontify-anchored-keywords): Properly handle the case when
2215 the matcher goes past the limit.
2217 * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
2218 pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
2220 * emacs-lisp/ewoc.el: New file. This is a merge of elib-node.el,
2221 dll.el and cookie.el (from Elib) with heavy renaming and other
2224 * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
2225 Autoload the functions used.
2226 (easy-mmode-define-syntax): Fix CL typo.
2227 (easy-mmode-define-derived-mode): Improve the docstring generation.
2229 2000-03-10 Gerd Moellmann <gerd@gnu.org>
2231 * textmodes/texinfo.el (texinfo-version): Variable and function
2234 2000-03-09 Stefan Monnier <monnier@cs.yale.edu>
2236 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
2237 allow more flexibility.
2238 (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New
2240 (easy-mmode-defmap, easy-mmode-defsyntax)
2241 (easy-mmode-define-derived-mode): New macros.
2243 2000-03-09 Didier Verna <didier@xemacs.org>
2245 * rect.el (replace-rectangle): New function.
2247 2000-03-09 Dave Love <fx@gnu.org>
2249 * progmodes/fortran.el (fortran-comment-line-start): Define as
2251 (fortran-comment-line-start-skip): Don't match cpp stuff.
2252 (font-lock-keywords): Add * to comment-chars. Grok cpp stuff.
2253 (fortran-mode-map): Remove over-eager custom-menu-create for now.
2254 (fortran-mode): Don't set fortran-comment-line-start-skip,
2255 fortran-comment-line-start here. Set comment-start,
2256 add-log-current-defun.
2257 (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
2258 (fortran-current-defun): New function.
2260 2000-03-09 Gerd Moellmann <gerd@gnu.org>
2262 * emacs-lisp/re-builder.el: New file.
2264 * mouse.el (mouse-drag-region): Don't run up-event handler
2265 if hscroll has changed.
2267 * octave-mod.el (octave-font-lock-keywords): To font-lock the
2268 builtin operators, use `font-lock-builtin-face' for Emacs and
2269 `font-lock-preprocessor-face' otherwise.
2271 * font-lock.el (lisp-font-lock-keywords-1): Highlight
2272 `(defun (setf foo)' differently.
2274 2000-03-08 Stefan Monnier <monnier@cs.yale.edu>
2276 * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
2277 (regexp-opt): Update comment and adapt the code the new meaning of
2278 the `paren' argument of regex-opt-group for shy-groups.
2279 (regexp-opt-depth): Handle shy groups as well as backslashed
2281 (regexp-opt-group): Turn the leading comment into a docstring.
2282 Allow `paren' to be a string (the string to use to open a group).
2283 Remove open-presuf and close-presuf. Instead of checking for `all
2284 one-char' and then later on check for `several one-char', handle
2285 both cases close together. Also apply a more generic algorithm
2286 for suffixes (the mirror image of the algorithm used for
2287 prefixes). Use shy-groups. Use nreverse rather than reverse.
2288 (regexp-opt-try-suffix): Removed.
2290 * cmuscheme.el (inferior-scheme-mode-map): Define it independently
2291 from comint-mode-map, so we can just inherit from it. Also, move
2292 the initialization into the `defvar' since there's no docstring
2293 anyway and it's fairly short.
2294 (inferior-scheme-mode): Define it as derived-mode: the code is
2295 shorter and this way we inherit from comint-mode-map rather than
2298 * subr.el (replace-regexps-in-string): Properly handle the case
2299 where we match an empty string.
2301 * comint.el (comint-exec-1): Add the current-dir to the exec-path
2302 when the command has a directory component (such as "./testml").
2303 Also fix a typo in the comment.
2305 2000-03-08 Gerd Moellmann <gerd@gnu.org>
2307 * Makefile (compile-files): Compile files one by one because
2308 that's the only way to ensure a clean compilation environment for
2309 each individual file.
2311 * frame.el (other-frame): Call x-focus-frame.
2313 2000-03-07 Dave Love <fx@gnu.org>
2315 * recentf.el (recentf-keep-non-readable-files-p): Add :set,
2316 :require to defcustom.
2318 * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
2321 * files.el (auto-mode-alist): Add configure.in.
2323 * progmodes/autoconf.el: New file.
2325 2000-03-07 Gerd Moellmann <gerd@gnu.org>
2327 * mail/mh-e.el: Change maintainer to `none'.
2329 * recentf.el (recentf-keep-non-readable-files-p): Quote args
2330 to remove-hook and add-hook.
2332 2000-03-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
2334 * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
2336 (mail-send): Test mail-send-nonascii also for the new `mime' value.
2337 (sendmail-send-it): Conditionally add MIME headers specifying the
2340 2000-03-07 Dave Love <fx@gnu.org>
2342 * winner.el: Fix keywords, autoload cookies. Split
2343 eval-when-compile form to avoid compilation failure.
2345 2000-03-07 Miyashita Hisashi <himi@bird.scphys.kyoto-u.ac.jp>
2347 * international/mule.el: Modify comment about coding system
2348 property `coding-category'.
2349 (make-coding-system): New argument EOL-TYPE. Pay attention to
2350 coding-category property of PROPERTIES.
2352 * international/mule-conf.el (coding-category-utf-8,
2353 coding-category-utf-16-be, coding-category-utf-16-le): New coding
2354 categories. Include them in the argument for set-coding-priority.
2356 * international/mule-cmds.el (reset-language-environment): Include
2357 coding-category-utf-8, coding-category-utf-16-be, and
2358 coding-category-utf-16-le in the argument for set-coding-priority.
2359 (reset-language-environment): Initialize coding-category-utf-8,
2360 coding-category-utf-16-be, and coding-category-utf-16-le to nil.
2362 2000-03-06 Karl Fogel <kfogel@red-bean.com>
2364 * bookmark.el (bookmark-file-or-variation-thereof): New func, for
2365 code abstracted out of `bookmark-jump-noselect'. Now tries info
2366 extensions as well as compression extensions.
2367 (bookmark-jump-noselect): Use above new func.
2369 2000-03-03 Gerd Moellmann <gerd@gnu.org>
2371 * strokes.el: Change maintainer's mail address.
2373 2000-03-03 Kenichi Handa <handa@etl.go.jp>
2375 * international/mule-diag.el (list-character-sets): Make help-echo
2376 string by substitute-command-keys.
2377 (list-character-sets): Likewise.
2378 (sort-listed-character-sets): Call help-setup-xref.
2380 2000-03-02 Gerd Moellmann <gerd@gnu.org>
2382 * time.el (display-time-mail-file): Add `none' to the list of
2385 2000-03-01 Dave Love <fx@gnu.org>
2387 * help.el (help-xref-go-back): Don't try to set position.
2389 * international/mule-diag.el (list-character-sets): Call
2390 help-setup-xref. Add help-echo to xrefs.
2391 (list-character-sets-1): Add help-echo to xrefs.
2393 2000-03-02 Gerd Moellmann <gerd@gnu.org>
2395 * frame.el (blink-cursor-mode): Switch cursor on when turning
2398 * add-log.el (add-log-current-defun): Add support for
2401 * mail/rmail.el (rmail-quit-hook): New variable.
2403 2000-03-01 Dave Love <fx@gnu.org>
2405 * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
2407 * help.el (help-xref-button): Add help-echo arg.
2408 (describe-function-1, describe-variable, help-make-xrefs): Use it.
2410 * faces.el (list-faces-display): Supply help-echo with
2413 * facemenu.el (list-text-properties-at): Set help-xref-stack to
2416 2000-03-01 Gerd Moellmann <gerd@gnu.org>
2418 * image.el (defimage): Look for image files in load-path.
2420 * frame.el (busy-cursor-delay-seconds): Change type to
2423 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
2425 * recentf.el (recentf): Added version tag to the defgroup of
2428 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
2430 * recentf.el (recentf-cleanup): Changed to remove excluded file
2432 (recentf-edit-list-action): `recentf-edit-list' checkbox widget
2433 action to select/unselect a file.
2434 (recentf-edit-list): Code cleanup and improvement.
2435 (recentf-open-more-files-action): `recentf-open-more-files' button
2436 widget action to open a file.
2437 (recentf-open-more-files): No more use standard completion but
2439 (recentf-more-collection): Deleted.
2440 (recentf-more-history): Deleted.
2441 (recentf-setup-more-completion): Deleted.
2443 2000-03-01 David Ponce <david.ponce@wanadoo.fr>
2445 * recentf.el (recentf-mode): No more needs that Emacs is running
2446 under a window-system.
2448 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
2450 * recentf.el (recentf-edit-list): New command to edit the recent
2451 list which allow the user to remove files.
2452 (recentf-edit-selected-items): New global variable, used by
2453 `recentf-edit-list' to hold the list of files to be removed from
2455 (recentf-make-menu-items): Updated to display a "Edit list..."
2456 menu item. Minor code cleanup.
2458 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
2460 * recentf.el (recentf-open-more-files): New command to open files
2461 that are not displayed in the menu.
2462 (recentf-more-collection): New global variable holding the set of
2463 permissible completions used by `recentf-open-more-files'.
2464 (recentf-more-history): New global variable holding the history list
2465 used by `recentf-open-more-files' completion.
2466 (recentf-setup-more-completion): New function to setup completion for
2467 `recentf-open-more-files'.
2468 (recentf-make-menu-items): Updated to display a "More..." menu item.
2470 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
2472 * recentf.el (recentf-menu-action): Doc fixed.
2474 1999-03-01 David Ponce <david.ponce@wanadoo.fr>
2476 * recentf.el (recentf-menu-filter): Doc updated.
2477 (recentf-update-menu-hook): Allow menu filters to force menu update.
2478 (recentf-make-menu-items): New menu filter handling.
2479 (recentf-make-menu-item): New helper function.
2480 (recentf-menu-elements): New menu handling function.
2481 (recentf-sort-ascending): Updated to new menu filter handling.
2482 (recentf-sort-descending): Updated to new menu filter handling.
2483 (recentf-sort-basenames-ascending): New menu filter function.
2484 (recentf-sort-basenames-descending): New menu filter function.
2485 (recentf-show-basenames): New menu filter function.
2486 (recentf-show-basenames-ascending): New menu filter function.
2487 (recentf-show-basenames-descending): New menu filter function.
2489 2000-02-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
2491 * diary-lib.el (list-diary-entries): Don't try to go forward at
2492 the end of the buffer.
2494 2000-02-29 Kenichi Handa <handa@etl.go.jp>
2496 * international/mule-diag.el (list-character-sets): Completely
2498 (sort-listed-character-sets): New function.
2499 (list-character-sets-1): Completely rewritten.
2500 (list-character-sets-2): New function.
2501 (non-iso-charset-alist): New variable.
2502 (decode-codepage-char): New function.
2503 (charset-history): New variable.
2504 (read-charset) (list-block-of-chars)
2505 (list-iso-charset-chars)
2506 (list-non-iso-charset-chars)
2507 (list-charset-chars): New functions.
2508 (mule-diag): Call list-character-sets-2, not
2509 list-character-sets-2.
2510 (dump-charsets): Likewise.
2512 2000-02-29 Gerd Moellmann <gerd@gnu.org>
2514 * dired-x.el (dired-filename-at-point): Add `@' to valid
2515 file name characters.
2516 (dired-filename-at-point): Handle ange-ftp file names.
2518 * frame.el (frame-notice-user-settings): Use assq-delete-all
2519 instead of assoc-delete-all.
2520 (frame-notice-user-settings): Ditto.
2522 * subr.el (assq-delete-all): Renamed from assoc-delete-all.
2525 2000-02-28 Eli Barzilay <eli@cs.cornell.edu>
2527 * calculator.el (calculator-use-menu): New option.
2528 (calculator-initial-bindings): Changed some bindings to work as
2530 (calculator-forced-input): Removed.
2531 (calculator-restart-other-mode): New variable.
2532 (calculator-mode-map): Set up menu.
2534 2000-02-28 Jari Aalto <jari.aalto@poboxes.com>
2536 * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
2539 2000-02-28 Michael Kifer <kifer@cs.sunysb.edu>
2541 * viper-cmd.el (viper-envelop-ESC-key): added the option to
2542 translate all ESC key sequences.
2543 (viper-goto-mark-subr): restore markers for files for which
2545 * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
2546 * viper-util.el (viper-set-replace-overlay-glyphs,
2547 viper-set-replace-overlay): always check if the replacement
2549 * viper.el (viper-vi-state-mode-list): added major modes.
2550 * ediff-wind.el: minor comment changes.
2551 * ediff.el: copyright notice date fix.
2553 2000-02-27 Jason Rumney <jasonr@gnu.org>
2555 * faces.el (face-font-family-alternatives): Add arial to helv.
2556 (mode-line, header-line, tool-bar): Same default as x for w32.
2557 (fixed-pitch, variable-pitch): Remove wildcard as it prevents
2558 face-font-family-alternatives from working.
2559 * term/w32-win.el (mouse-set-font): Do not build fontset from
2562 2000-02-25 Sam Steingold <sds@goems.com>
2564 * emacs-lisp/cl-indent.el (toplvel): Indent `pprint-logical-block'
2567 2000-02-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
2569 * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
2571 2000-02-25 Gerd Moellmann <gerd@gnu.org>
2573 * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
2576 * frame.el (busy-cursor-delay-seconds): New option.
2578 2000-02-24 Gerd Moellmann <gerd@gnu.org>
2580 * frame.el (show-cursor-in-non-selected-windows): New option.
2582 2000-02-24 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
2584 * diary-lib.el (include-other-diary-files): Undo the selective
2585 display in any included file and don't kill it.
2587 2000-02-24 Eli Zaretskii <eliz@is.elta.co.il>
2589 * dired.el (dired-mode-map): Don't remove "Edit" from the menu
2590 bar. Menu items converted to (menu-item format, help strings
2592 [downcase, upcase]: Don't enable on MS-DOS.
2593 [symlink, symlinks]: Don't show if make-symbolic-link is not
2595 [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
2597 2000-02-23 Dave Love <fx@gnu.org>
2599 * simple.el (zap-to-char, kill-line, kill-region, kill-word)
2600 (backward-kill-word): Revert addition of * to interactive spec --
2603 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
2604 (backward-kill-sentence, kill-sentence): Likewise.
2606 * gud.el (gud-jdb-build-class-source-alist): Prepend space to
2607 scratch buffer name.
2608 (gud-format-command): Use int-to-string in ?l case. Simplify
2611 * term/w32-win.el (internal-face-interactive): Update prompt for
2614 * mail/footnote.el (footnote): Add :version to defgroup.
2615 (footnote-section-tag-regexp): Customize.
2616 (footnote-start-tag, footnote-end-tag): New option.
2617 (footnote-latin-regexp): New variable.
2618 (Footnote-latin): New function.
2619 (footnote-style-alist): Add element for latin style.
2620 (footnote-style): Moved.
2621 (Footnote-goto-footnote): Use eq to test arg.
2623 * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
2625 * emacs-lisp/byte-opt.el: Change old backquote syntax.
2626 (byte-compile-trueconstp): Include keywords.
2627 (byte-optimize-quote, byte-optimize-lapcode): Use
2628 byte-compile-const-symbol-p.
2629 (byte-optimize-char-before): New optimization.
2631 * emacs-lisp/bytecomp.el: Change old backquote syntax.
2632 (byte-compile-const-symbol-p): New function.
2633 (byte-compile-constp, byte-compile-out-toplevel)
2634 (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
2637 * subr.el (define-key-after): Default AFTER to t. Doc fix.
2639 2000-02-23 Kenichi Handa <handa@etl.go.jp>
2641 * international/encoded-kb.el: Be sure to update minor-mode-alist
2642 and minor-mode-map-alist.
2643 (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
2644 codes SS2 and SS3 correctly.
2645 (encoded-kbd-self-insert-ccl): New function.
2646 (encoded-kbd-setup-keymap): New function.
2647 (encoded-kbd-mode): Handle CCL based coding system. Setup keymap
2648 by calling encoded-kbd-setup-keymap.
2650 * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
2652 (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
2655 2000-02-22 Dave Love <fx@gnu.org>
2657 * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
2658 (lisp-mode-map, lisp-interaction-mode-map): Define all inside
2660 (lisp-mode-syntax-table): Set up for #|...|# comments.
2661 (lisp-imenu-generic-expression): Purecopy strings. Use syntax
2662 classes. Match `defface'.
2663 (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
2664 (eval-defun-1): Fix for defcustom.
2665 (lisp-indent-region): Doc fix.
2667 * subr.el (when, unless, split-string): Doc fix.
2668 (read-passwd): Move call of clear-this-command-keys to the right
2670 (replace-regexps-in-string): New function.
2672 2000-02-22 Gerd Moellmann <gerd@gnu.org>
2674 * help.el (describe-variable): Set syntax table to
2675 emacs-lisp-mode-syntax-table when moving forward over the
2678 2000-02-22 Dave Love <fx@gnu.org>
2680 * xt-mouse.el: Doc fixes.
2681 (xterm-mouse-position-function): New function, replacing advice of
2683 (xterm-mouse-mode): Use it. Don't turn on under a window system.
2685 * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
2687 2000-02-21 Gerd Moellmann <gerd@gnu.org>
2689 * format.el (format-annotate-single-property-change): Handle
2690 properties.with dotted-list values.
2691 (format-proper-list-p): New function.
2693 * enriched.el (enriched-face-ans): Handle '(foreground-color
2694 . COLOR) and (background-color . COLOR).
2696 2000-02-20 Dave Love <fx@gnu.org>
2698 * textmodes/flyspell.el (flyspell-mouse-map): Change definition
2699 and assignments to it.
2700 (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
2702 (make-flyspell-overlay): Use it.
2703 (flyspell-correct-word/mouse-keymap): Change XEmacs test.
2705 * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
2706 (lm-get-header-re): Defun, not defsubst.
2707 (lm-get-package-name): Defun, not defsubst. Simplify.
2708 (lm-version): Doc fix. Simplify.
2709 (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
2710 (lm-crack-address, lm-last-modified-date, lm-commentary)
2711 (lm-verify, lm-synopsis): Simplify.
2712 (lm-report-bug): Require emacsbug. Use compose-mail.
2714 2000-02-20 Gerd Moellmann <gerd@gnu.org>
2716 * dired.el (dired-mode): Call propertized-buffer-identification
2717 to set mode-line-buffer-identification to something having
2718 the right text properties.
2720 * bindings.el (propertized-buffer-identification): New function.
2722 2000-02-20 Dave Love <fx@gnu.org>
2724 * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
2725 check for t-mouse too.
2727 * cus-start.el: Make echo-keystrokes `number'.
2729 2000-02-20 Eli Zaretskii <eliz@is.elta.co.il>
2731 * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
2732 Don't call ring-empty-p unless tags-location-ring is bound.
2733 From Noah Friedman <friedman@splode.com>.
2735 2000-02-18 Thien-Thi Nguyen <ttn@gnu.org>
2737 * progmodes/hideshow.el (hs-flag-region): No longer use
2738 `intangible' overlay property.
2740 (hs-toggle-hiding): New command.
2741 (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
2743 (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
2744 Fix omission bug: Run `hs-minor-mode-hook' for both activation
2747 2000-02-18 Gerd Moellmann <gerd@gnu.org>
2749 * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
2751 2000-02-17 Gerd Moellmann <gerd@gnu.org>
2753 * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
2755 * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
2756 of `*' to handle `(* ... *)' comments.
2758 2000-02-17 Eli Zaretskii <eliz@is.elta.co.il>
2760 * faces.el (list-faces-display): Use display-mouse-p instead of
2763 * menu-bar.el (global-map): Menu-bar items converted to the new
2764 format (menu-item..., rearranged for better CUA compliance, and
2765 their names changed for better clarity. Help strings added.
2767 * international/mule-cmds.el (mule-menu-keymap)
2768 (describe-language-environment-map, set-coding-system-map)
2769 (setup-language-environment-map): Convert to new (menu-item...
2770 form, add help strings. Change names of menu items for better
2771 clarity. "Mule" menu-bar item removed (it's now in the "Options"
2774 2000-02-17 Gerd Moellmann <gerd@gnu.org>
2776 * dired-aux.el (dired-do-copy): Remove spurious character.`n'
2779 2000-02-16 Dave Love <fx@gnu.org>
2781 * faces.el: Don't require custom. Add more specific :groups to
2783 (set-face-attribute): Purecopy args.
2784 (read-face-name): Default to name at point and use it in prompt.
2785 Remove colon from arg in all callers.
2786 (list-faces-display): Hyperlink to face descriptions and customize
2789 2000-02-16 Per Abrahamsen <abraham@dina.kvl.dk>
2791 * wid-edit.el (widget-match-inline): An atom never matches a
2794 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2796 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
2797 at ':' characters by call to split-string.
2799 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2801 * textmodes/bibtex.el: Added RCS version identification.
2803 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2805 * textmodes/bibtex.el: Some temporary comments removed.
2806 (bibtex-field-name, bibtex-entry-type): Made the relationship
2808 (bibtex-field-const): Allow capital letters.
2809 (bibtex-start-of-string): Deleted because unused.
2811 * textmodes/bibtex.el: Unified some nomenclature. We no longer
2812 use the term 'reference' to describe a bibtex entry as a whole.
2813 Further, reference keys are no longer called 'labels'.
2814 (bibtex-keys): Renamed to bibtex-reference-keys.
2815 (bibtex-reformat-previous-labels): Renamed to
2816 bibtex-reformat-previous-reference-keys.
2817 (bibtex-reference-type): Renamed to bibtex-entry-type.
2818 (bibtex-reference-head): Renamed to bibtex-entry-head.
2819 (bibtex-reference-maybe-empty-head): Renamed to
2820 bibtex-entry-maybe-empty-head.
2821 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
2822 (bibtex-search-reference): Renamed to bibtex-search-entry.
2823 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
2824 bibtex-enclosing-entry-maybe-empty-head.
2825 (bibtex-entry-field-alist, bibtex-entry-head,
2826 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
2827 bibtex-map-entries, bibtex-search-entry,
2828 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
2829 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
2830 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
2831 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
2832 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
2833 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
2834 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
2836 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2838 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
2840 (bibtex-format-field-delimiters): New function, functionality
2841 extracted from bibtex-format-entry.
2842 (bibtex-autokey-get-yearfield-digits): New function, functionality
2843 extracted from bibtex-autokey-get-yearfield.
2845 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
2846 entries in order to avoid stack overflow in the regexp matcher if
2847 field contents become large.
2848 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
2849 bibtex-field-string-part-not-braced,
2850 bibtex-field-string-part-no-inner-braces,
2851 bibtex-field-string-part-1-inner-brace,
2852 bibtex-field-string-part-2-inner-braces,
2853 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
2854 bibtex-field-string-quoted, bibtex-field-string,
2855 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
2856 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
2857 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
2858 as parsing is now performed by the following functions.
2859 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
2860 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
2861 bibtex-parse-field-string, bibtex-search-forward-field-string,
2862 bibtex-parse-association, bibtex-field-name-for-parsing,
2863 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
2864 bibtex-search-forward-field, bibtex-search-backward-field,
2865 bibtex-start-of-field, bibtex-end-of-field,
2866 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
2867 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
2868 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
2869 bibtex-parse-string, bibtex-search-forward-string,
2870 bibtex-search-backward-string, bibtex-start-of-string,
2871 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
2872 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
2873 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
2874 entries. Instead of reporting the results of the parsing by
2875 match-beginning or match-end, these functions return data structures
2876 that hold the corresponding positions.
2877 (bibtex-enclosing-field): Changed to also report field boundaries by
2878 return values rather than by match-beginning or match-end. The
2879 following functions have been adapted to use the new parsing
2881 (bibtex-skip-to-valid-entry, bibtex-search-reference,
2882 bibtex-enclosing-field, bibtex-format-entry,
2883 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
2884 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
2885 bibtex-print-help-message, bibtex-end-of-entry,
2886 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
2887 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
2888 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
2890 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
2891 bibtex-map-entries, bibtex-flash-head,
2892 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
2893 bibtex-autokey-change, bibtex-autokey-get-namefield,
2894 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
2895 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
2896 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
2897 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
2898 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
2899 order to make the new binding of case-fold-search immediately
2902 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2904 * textmodes/bibtex.el: Copyright notice is up to date.
2905 Added constant 'bibtex-maintainer-salutation.
2907 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
2908 than make-temp-name, use match-string-no-properties and eliminate
2909 a quadratic behavior when building bibtex-strings.
2911 * bibtex.el (bibtex-reference-key): Accept string entries whose
2912 reference key contains upper case letters.
2914 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2916 * bibtex.el (bibtex-reference-head): Allow entries to start with
2919 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2921 * bibtex.el: Hiding of entry bodies is not longer provided by
2922 bibtex.el directly. Instead the hideshow package can be used.
2923 Added a special bibtex entry to hs-special-modes-alist.
2924 (bibtex-hs-forward-sexp): Added for hideshow.el.
2926 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2928 * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
2929 at ':' characters by call to split-string.
2931 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2933 * textmodes/bibtex.el: Added RCS version identification.
2935 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2937 * textmodes/bibtex.el: Some temporary comments removed.
2938 (bibtex-field-name, bibtex-entry-type): Made the relationship
2940 (bibtex-field-const): Allow capital letters.
2941 (bibtex-start-of-string): Deleted because unused.
2943 * textmodes/bibtex.el: Unified some nomenclature. We no longer
2944 use the term 'reference' to describe a bibtex entry as a whole.
2945 Further, reference keys are no longer called 'labels'.
2946 (bibtex-keys): Renamed to bibtex-reference-keys.
2947 (bibtex-reformat-previous-labels): Renamed to
2948 bibtex-reformat-previous-reference-keys.
2949 (bibtex-reference-type): Renamed to bibtex-entry-type.
2950 (bibtex-reference-head): Renamed to bibtex-entry-head.
2951 (bibtex-reference-maybe-empty-head): Renamed to
2952 bibtex-entry-maybe-empty-head.
2953 (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
2954 (bibtex-search-reference): Renamed to bibtex-search-entry.
2955 (bibtex-enclosing-reference-maybe-empty-head): Renamed to
2956 bibtex-enclosing-entry-maybe-empty-head.
2957 (bibtex-entry-field-alist, bibtex-entry-head,
2958 bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
2959 bibtex-map-entries, bibtex-search-entry,
2960 bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
2961 bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
2962 bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
2963 bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
2964 bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
2965 bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
2966 bibtex-complete-key, bibtex-String) : Use the new nomenclature.
2968 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
2970 * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
2972 (bibtex-format-field-delimiters): New function, functionality
2973 extracted from bibtex-format-entry.
2974 (bibtex-autokey-get-yearfield-digits): New function, functionality
2975 extracted from bibtex-autokey-get-yearfield.
2977 * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
2978 entries in order to avoid stack overflow in the regexp matcher if
2979 field contents become large.
2980 (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
2981 bibtex-field-string-part-not-braced,
2982 bibtex-field-string-part-no-inner-braces,
2983 bibtex-field-string-part-1-inner-brace,
2984 bibtex-field-string-part-2-inner-braces,
2985 bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
2986 bibtex-field-string-quoted, bibtex-field-string,
2987 bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
2988 bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
2989 bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
2990 as parsing is now performed by the following functions.
2991 (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
2992 bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
2993 bibtex-parse-field-string, bibtex-search-forward-field-string,
2994 bibtex-parse-association, bibtex-field-name-for-parsing,
2995 bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
2996 bibtex-search-forward-field, bibtex-search-backward-field,
2997 bibtex-start-of-field, bibtex-end-of-field,
2998 bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
2999 bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
3000 bibtex-parse-string-prefix, bibtex-parse-string-postfix,
3001 bibtex-parse-string, bibtex-search-forward-string,
3002 bibtex-search-backward-string, bibtex-start-of-string,
3003 bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
3004 bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
3005 bibtex-end-of-text-in-string): New functions for the parsing of bibtex
3006 entries. Instead of reporting the results of the parsing by
3007 match-beginning or match-end, these functions return data structures
3008 that hold the corresponding positions.
3009 (bibtex-enclosing-field): Changed to also report field boundaries by
3010 return values rather than by match-beginning or match-end. The
3011 following functions have been adapted to use the new parsing
3013 (bibtex-skip-to-valid-entry, bibtex-search-reference,
3014 bibtex-enclosing-field, bibtex-format-entry,
3015 bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
3016 bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
3017 bibtex-print-help-message, bibtex-end-of-entry,
3018 bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
3019 bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
3020 bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
3022 (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
3023 bibtex-map-entries, bibtex-flash-head,
3024 bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
3025 bibtex-autokey-change, bibtex-autokey-get-namefield,
3026 bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
3027 bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
3028 bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
3029 bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
3030 bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
3031 order to make the new binding of case-fold-search immediately
3034 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3036 * textmodes/bibtex.el: Copyright notice is up to date.
3037 Added constant 'bibtex-maintainer-salutation.
3039 * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
3040 than make-temp-name, use match-string-no-properties and eliminate
3041 a quadratic behavior when building bibtex-strings.
3043 * bibtex.el (bibtex-reference-key): Accept string entries whose
3044 reference key contains upper case letters.
3046 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3048 * bibtex.el (bibtex-reference-head): Allow entries to start with
3051 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3053 * bibtex.el: Hiding of entry bodies is not longer provided by
3054 bibtex.el directly. Instead the hideshow package can be used.
3055 Added a special bibtex entry to hs-special-modes-alist.
3056 (bibtex-hs-forward-sexp): Added for hideshow.el.
3058 2000-02-15 Dirk Herrmann <D.Herrmann@tu-bs.de>
3060 * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
3061 proceedings entry type (for cross referencing). Thanks to Wagner
3062 Toledo Correa for the suggestion.
3064 * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
3066 2000-02-14 Kenichi Handa <handa@etl.go.jp>
3068 * international/characters.el: Setup case table for Vietnamese.
3070 2000-02-12 Gerd Moellmann <gerd@gnu.org>
3072 * uniquify.el (toplevel): Require CL at compile time.
3073 (uniquify-push): Removed.
3075 * shadowfile.el (shadow-when): Removed.
3077 * tempo.el (tempo-dolist, tempo-mapc): Removed.
3078 (tempo-process-and-insert-string): Use dolist instead of
3081 * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
3082 regexp for paragraph-start.
3084 * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
3087 2000-02-10 Dave Love <fx@gnu.org>
3089 * wid-edit.el: (widgets) [defgroup]: Remove url link.
3090 (widget-color-choice-list, widget-color-history, widget-mouse-help):
3092 (widget-specify-field, widget-specify-button): Don't use
3093 widget-mouse-help as help-echo property.
3094 (default): Use #'ignore for :validate and :mouse-down-action.
3095 (checkbox): Add help-echo.
3096 (widget-sexp-validate): Rewritten to clarify error messages.
3097 (character): Use char-valid-p in :match function.
3098 (widget-color-complete): Use facemenu-color-alist.
3099 (widget-color-action): Use facemenu-read-color.
3101 * emacs-lisp/cl-macs.el: Don't bother testing for defalias. Don't
3102 set up `caar' &c that we now have.
3104 2000-02-09 Ray Blaak <blaak@gnu.org>
3106 * delphi.el: Make resourcestring a declaration region, like const
3109 2000-02-09 Dave Love <fx@gnu.org>
3111 * bindings.el (mode-line-input-method-map): New variable.
3112 (mode-line-mule-info): Use it; fix last change.
3113 (mode-line-mode-menu): Move definition.
3114 (mode-line-mouse-sensitive-p): Deleted.
3115 (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
3116 (make-mode-line-mouse-sensitive): Deleted. Body moved to top
3119 * startup.el (command-line-1): Don't call
3120 make-mode-line-mouse-sensitive.
3122 2000-02-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
3124 * mail/rmail.el (rmail-retry-failure): Use
3125 rmail-beginning-of-message before rmail-toggle-header, because the
3126 former toggles headers.
3128 2000-02-06 Stefan Monnier <monnier@cs.yale.edu>
3130 * diff-mode.el (diff-kill-junk): New interactive function.
3131 (diff-reverse-direction): Use delete-and-extract-region.
3132 (diff-post-command-hook): Restrict the area so that the hook also works
3133 outside of any diff hunk. This is necessary for the minor-mode.
3134 (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
3135 (diff-minor-mode): Setup the hooks for header-hunk rewriting.
3137 * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
3138 (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
3139 so that it can be used more easily in <foo>-mode-hook. Also make sure
3140 to avoid duplicate entries.
3141 (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
3142 (font-lock-remove-keywords): Just as was done for `add', allow it to
3143 work even if font-lock-mode is nil. Also make sure we don't modify
3144 any pre-existing list by forcing a copy-sequence. Finally rename
3145 `major-mode' to `mode'.
3146 (font-lock-fontify-syntactic-anchored-keywords)
3147 (font-lock-fontify-anchored-keywords)
3148 (font-lock-fontify-keywords-region): Use line-end-position.
3149 Don't make `font-lock-multiline' local (it's now done in
3150 font-lock-set-defaults).
3151 (font-lock-set-defaults): Make `font-lock-multiline' local. Also
3152 move the `font-lock-fontified' creation to inside the `unless'.
3154 2000-02-06 Andrew Innes <andrewi@gnu.org>
3156 * term/w32-win.el (x-handle-args): Comment out call to message,
3157 which occurs before window system is initialized.
3159 * makefile.nt: Add support for recompiling lisp code.
3161 2000-02-04 Dave Love <fx@gnu.org>
3163 * bindings.el (mode-line-mule-info): Fix/extend last change.
3165 * completion.el: Replace completion-dolist with dolist.
3167 * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
3170 2000-02-04 Carsten Dominik <dominik@strw.leidenuniv.nl>
3172 * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
3173 environment names before they go into the section regexp.
3175 * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
3176 char class in regexp.
3178 * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
3179 `case-fold-search' to nil.
3181 * progmodes/idlwave.el (idlwave-template): Respect
3182 `idlwave-abbrev-change-case'.
3183 (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
3184 idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
3185 idlwave-while): respect `idlwave-reserved-word-upcase'.
3186 (idlwave-rw-case): New function.
3187 (idlwave-statement-match): Fixed problem with assignment regexp.
3188 (idlwave-font-lock-keywords): Improved regexp for keyword
3190 (idlwave-surround): New argument LENGTH to support padding of
3191 operators longer than 1 char.
3193 * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
3194 idlwave-shell-expression-overlay. Implemented printing of
3195 expressions on higher levels of the calling stack.
3196 (idlwave-shell-display-level-in-calling-stack): Restore stack
3198 (idlwave-retrieve-expression-from-level): New function.
3199 (idlwave-shell-last-calling-stack): Variable removed.
3200 (idlwave-shell-reset): Argument action reversed (`visible' to
3201 `hidden'). Also remove stop-line overlay.
3202 (idlwave-shell-calling-stack-routine): New variable.
3203 (idlwave-shell-parse-stack-and-display): Messages now display
3204 negative level numbers.
3205 (idlwave-shell-mode): Set `modeline-format'.
3206 (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
3207 (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
3209 (idlwave-shell-print-expression-function): New option.
3211 * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
3212 idlwave-toolbar-remove-everywhere): Keybindings prefix is now
3213 `tool-bar' instead of `toolbar'.
3215 2000-02-02 Dave Love <fx@gnu.org>
3217 * emacs-lisp/cl.el: Use bytecomp-load-hook, not
3218 emacs-lisp-mode-hook. Don't check for defalias being defined.
3220 * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
3221 (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions. Use
3222 the new builtins directly.
3224 * whitespace.el (whitespace): Add :version to defgroup.
3226 * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
3229 * thingatpt.el (sexp-at-point, symbol-at-point)
3230 (number-at-point, list-at-point): Add autoload cookie.
3232 * recentf.el (recentf): Add :version to defgroup.
3234 * quickurl.el (quickurl): Add :version to defgroup.
3236 * elide-head.el (elide-head): Use point-marker more.
3238 * bs.el (bs): Add :version to defgroup.
3240 * autorevert.el (global-auto-revert-mode): Add autoload cookie.
3242 * progmodes/delphi.el (delphi): Add :version to defgroup.
3244 2000-02-02 Gerd Moellmann <gerd@gnu.org>
3246 * ange-ftp.el (ange-ftp-write-region): Handle case that
3247 succeeding process operation sets a different coding system.
3249 * calculator.el: New file.
3251 2000-02-02 Eli Zaretskii <eliz@is.elta.co.il>
3253 * frame.el (frames-on-display-list, framep-on-display): New
3255 (display-mouse-p, display-popup-menus-p, display-graphic-p)
3256 (display-selections-p, display-screens, display-pixel-width)
3257 (display-pixel-height, display-mm-width, display-mm-height)
3258 (display-backing-store, display-save-under, display-planes)
3259 (display-color-cells, display-visual-class): New functions.
3261 * term/tty-colors.el (tty-color-gray-shades): New function.
3263 * faces.el (display-color-p): Use framep-on-display.
3264 (display-grayscale-p): New function.
3266 2000-01-31 Dave Love <fx@gnu.org>
3268 * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
3269 (create-fontset-from-x-resource): Don't concat integers.
3271 2000-01-31 Inge Frick <inge@nada.kth.se>
3273 * view.el: Some changes in documentation. Removed some trailing
3274 whitespace. Changed some parameter names to agree with
3276 (view-mode-exit): Keep entry in `view-return-to-alist' only when a
3277 window is not deleted. Modifies change 1998-04-26.
3279 2000-01-31 Gerd Moellmann <gerd@gnu.org>
3281 * windmove.el: New file.
3283 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
3284 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
3285 progmodes/ebnf-yac.el: Update copyright and license info.
3287 * jit-lock.el (jit-lock-function): Widen before calculating end
3289 (jit-lock-stealth-chunk-start): Rewritten.
3291 * info.el (Info-title-face-alist): Removed.
3292 (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
3294 (Info-fontify-node): Use these faces.
3296 2000-01-30 Gerd Moellmann <gerd@gnu.org>
3298 * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
3299 (cl-macro-list1): Recognize `&allow-other-keys' instead of
3300 `&allow-other-keywords'.
3302 * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
3303 the list of directories scanned heuristically.
3305 * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
3308 2000-01-30 Jason Rumney <jasonr@gnu.org>
3310 * w32-fns.el: Define w32-tty-standard-colors.
3312 * startup.el (command-line): Use w32-tty-standard-colors when in
3315 2000-01-30 Dave Love <fx@gnu.org>
3317 * jka-compr.el (jka-compr-load): Fix up load-history.
3319 * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
3321 * emacs-lisp/cl-macs.el: Revert previous change.
3323 2000-01-29 Dave Love <fx@gnu.org>
3325 * facemenu.el: Purecopy various strings.
3327 * timezone.el (timezone-fix-time): Window against 69 for two-digit
3328 years. Deal with three-digit years.
3330 * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
3332 (help-back-label): Purecopy it.
3334 2000-01-18 Gerd Moellmann <gerd@gnu.org>
3336 * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
3337 variable. If non-nil, order the buffer list according to the
3338 currently selected frame.
3339 (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
3340 non-nil, pass the selected frame to function buffer-list.
3342 2000-01-29 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3344 * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
3346 2000-01-28 Dave Love <fx@gnu.org>
3348 * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
3350 * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
3351 Don't use lisp-indent-hook property.
3354 * subr.el: Move out indent and edebug specs for when and unless.
3356 * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
3359 * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
3362 2000-01-28 Gerd Moellmann <gerd@gnu.org>
3364 * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
3365 `collecting' as synonym for `collect'.
3367 * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
3368 for the case it contains spaces.
3370 * simple.el (what-cursor-position): Change formatting of
3373 * frame.el (delete-other-frames): New function.
3374 (toplevel): Bind it to C-x 5 1.
3376 * sort.el (sort-numeric-base): New option.
3377 (sort-numeric-fields): If number starts with `0' or `0[xX[',
3378 interpret it as octal or hexadecimal. Use sort-numeric-base
3381 * progmodes/glasses.el: New file.
3383 2000-01-27 Gerd Moellmann <gerd@gnu.org>
3385 * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
3386 userids differently.
3388 * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
3389 progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
3390 progmodes/ebnf-yac.el: New files.
3392 2000-01-26 Dave Love <fx@gnu.org>
3394 * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
3395 on a function with an empty body. [From Eric Ludlam.]
3397 2000-01-25 Andre Spiegel <spiegel@gnu.org>
3399 * vc.el (vc-version-diff): Make sure file name is expanded.
3401 2000-01-25 Gerd Moellmann <gerd@gnu.org>
3403 * scroll-bar.el (scroll-bar-timer): Variable removed.
3404 (scroll-bar-toolkit-scroll): Don't use a timer.
3406 2000-01-25 Kenichi Handa <handa@etl.go.jp>
3408 * language/thai-util.el (thai-composition-function): Delete
3411 2000-01-24 Dave Love <fx@gnu.org>
3413 * fortran.el (fortran-mode): Use beginning-of-defun-function,
3414 end-of-defun-function.
3416 * font-lock.el (turn-on-font-lock): Don't depend on window-system
3419 2000-01-22 Jason Rumney <jasonr@gnu.org>
3421 * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
3422 conflicts with new face support.
3424 2000-01-22 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3426 * replace.el (query-replace): Rename last arg to DELIMITED.
3427 (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
3428 (query-replace-regexp): Likewise.
3430 2000-01-20 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3432 * subr.el (with-syntax-table): Use make-symbol, not gensym.
3434 * emacs-lisp/lisp.el (beginning-of-defun-function):
3435 Variable renamed from beginning-of-defun.
3436 Do not call make-variable-buffer-local.
3437 (beginning-of-defun-raw): Use new variable name; doc fix.
3438 (beginning-of-defun): Doc fix.
3439 (end-of-defun-function): Variable renamed from end-of-defun.
3440 Do not call make-variable-buffer-local.
3441 (end-of-defun): Use new variable name; doc fix.
3443 * subr.el (dolist, dotimes): Copied from cl-macs.el
3446 * mail/undigest.el (rmail-digest-end-regexps):
3447 Variable replaces rmail-digest-end-regexp.
3448 Allows multiple regexps for detecting the end line.
3449 (undigestify-rmail-message): Corresponding changes.
3451 2000-01-19 Dave Love <fx@gnu.org>
3453 * files.el (user-init-file): Don't declare here -- is primitive.
3455 * startup.el (command-line): Check for compiled user-init-file and
3456 set to uncompiled version if necessary.
3458 2000-01-18 Gerd Moellmann <gerd@gnu.org>
3460 * mail/undigest.el (rmail-digest-end-regexp): New user option.
3461 (undigestify-rmail-message): Use it.
3463 * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
3465 2000-01-17 Gerd Moellmann <gerd@gnu.org>
3467 * tmm.el (tmm-goto-completions): Adapt to prompt being part
3470 2000-01-14 Gerd Moellmann <gerd@gnu.org>
3472 * emacs-lisp/copyright.el (copyright-update): Removed the
3473 requirement for a trailing space from `copyright-regexp', to
3474 support copyrights with owner specified on a separate line..
3476 * align.el: New file.
3478 * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
3480 * net/eudc.el (toplevel): Define EUDC menu for Emacs.
3482 2000-01-13 Dave Love <fx@gnu.org>
3484 * ph.el: Removed. (Obsoleted by EUDC.)
3486 2000-01-13 Gerd Moellmann <gerd@gnu.org>
3488 * net/eudc.el (toplevel): Remove autoloaded code installing
3489 menu with easymenu, because that causes build problems.
3491 * frame.el (frame-notice-user-settings): New variable.
3492 (frame-notice-user-settings): Don't modify frame parameters
3493 if called a second time.
3495 2000-01-13 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3497 * frame.el (frame-notice-user-settings):
3498 Notice default-frame-parameters even for non-window frames.
3500 2000-01-13 Gerd Moellmann <gerd@gnu.org>
3502 * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
3504 (eudc-bob-can-display-inline-images): Extend for Emacs.
3505 (eudc-bob-toggle-inline-display): Ditto.
3506 (eudc-bob-display-jpeg): Ditto.
3508 2000-01-12 Gerd Moellmann <gerd@gnu.org>
3510 * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
3511 net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
3512 net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
3514 * add-log.el (add-change-log-entry): Fix error trying an `(insert
3517 * subdirs.el: Add `net' directory.
3519 * net: New directory.
3521 * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
3522 eval-last-sexp. Don't bind debug-on-error here.
3523 (eval-last-sexp): New function. Bind debug-on-error if
3524 eval-expression-debug-on-error is non-nil.
3525 (eval-defun-2, eval-defun): Likewise.
3527 * simple.el (eval-expression): Don't bind debug-on-error if
3528 eval-expression-debug-on-error is nil. Detect changed
3529 debug-on-error, and propagate new value to global binding, if
3530 eval-expression-debug-on-error is non-nil,
3531 (eval-expression-debug-on-error): Change doc string.
3533 2000-01-11 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3535 * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
3537 * emacs-lisp/lisp-mode.el (with-syntax-table):
3538 Set up lisp-indent-function property.
3540 * subr.el (with-syntax-table): Moved from simple.el.
3542 * simple.el (with-syntax-table): Moved to subr.el.
3544 2000-01-11 Gerd Moellmann <gerd@gnu.org>
3546 * tmm.el (tmm-shortcut): Delete region after prompt instead
3549 * textmodes/fill.el (fill-common-string-prefix): New function.
3550 (fill-context-prefix): Use the longest common prefix of first
3551 and second line fill prefix, if there is one.
3553 2000-01-11 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3555 * array.el (array-mode): Don't use make-variable-buffer-local.
3556 Use make-local-variable for `truncate-lines'.
3558 2000-01-11 Jari Aalto <jari.aalto@poboxes.com>
3560 * add-log.el (add-log-current-defun): Handle user-defined
3561 add-log-current-function returning nil,
3563 * add-log.el (add-change-log-entry): Insert version number
3564 if having found a current function
3566 * add-log.el (add-log-current-defun): Call
3567 `add-log-current-defun-function'. Try matches at level 0 and
3568 level 1. Strip whitespace from defun found.
3570 2000-01-10 John Wiegley <johnw@gnu.org>
3572 * allout.el (isearch-done/outline-provisions): Added `edit'
3573 argument to correspond with the current definition of
3576 2000-01-10 Dave Love <fx@gnu.org>
3578 * elide-head.el (elide-head): Use point-marker, not point.
3580 2000-01-10 Gerd Moellmann <gerd@gnu.org>
3582 * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
3583 before and after the year 2000.
3585 * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
3588 2000-01-10 Ken Stevens <k.stevens@ieee.org>
3590 * ispell.el: Only define dictionaries in menus when they exist.
3591 (version18p): New variable.
3592 (version20p): New variable.
3593 (xemacsp): New variable.
3594 (ispell-choices-win-default-height): Fix for XEmacs visibility.
3595 (ispell-dictionary-alist1): Added Brasileiro dictionary.
3596 (ispell-dictionary-alist6): Russian command lines no longer accept
3598 (ispell-local-dictionary-alist): Add koi8-r to customize definition.
3599 (ispell-dictionary-alist): Add koi8-r to customize definition.
3600 (check-ispell-version): Added documentation string. Returns
3601 library path when called non-interactively.
3602 (ispell-menu-map-needed): Uses new variables.
3603 (ispell-library-path): New variable.
3604 (ispell-decode-string): XEmacs fix for bogus variable bindings.
3605 (ispell-word): Improved documentation string. Test for valid
3606 character mappings. Correctly check typed in word changes that can
3607 result in single words split into multiple words. Returns
3609 (ispell-command-loop): Fixes XEmacs display bugs. Show word to
3610 replace in recursive query replace mode. Help message for
3611 recursive edit mode.
3612 (ispell-show-choices): Protect against bad framepop bindings.
3613 (ispell-help): Fix to work with XEmacs.
3614 (ispell-highlight-spelling-error): Use new variables.
3615 (ispell-overlay-window): Fix to work with XEmacs.
3616 (ispell-parse-output): Passed and returns location information
3617 tracking spelling corrections. Doesn't recheck same word on
3619 (ispell-init-process): Protect against bogus XEmacs variable binding.
3620 Fix call to single argument in sleep-for. Use new variables.
3621 (ispell-region): Passed and returns location information tracking
3622 spelling corrections. Doesn't check same word on current line.
3623 Improved documentation string. Doesn't resend a line already
3624 checked to the ispell process - fixes bug in LaTeX parsing.
3625 (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
3626 (ispell-skip-region): No longer skips <TT> in SGML.
3627 (ispell-process-line): Tracks location information with spelling
3628 corrections. Added documentation string. Accounts for words
3629 already accepted on this line. Don't allow query-replace on line
3630 starting with math characters. Doesn't resend a line already sent
3631 to ispell process. Fixes alignment error bug.
3633 2000-01-10 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3635 * dired-x.el (dired-guess-shell-alist-default):
3636 Suggest xloadimage, which is free, not xv, which isn't.
3638 * ange-ftp.el (ange-ftp-file-name-nondirectory):
3639 Don't ever include the host name or user name in the value.
3641 2000-01-09 Gerd Moellmann <gerd@gnu.org>
3643 * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
3646 2000-01-09 Stephen Eglen <stephen@gnu.org>
3648 * dired-x.el (dired-guess-shell-alist-default): Suggest xv
3651 2000-01-09 Per Abrahamsen <abraham@dina.kvl.dk>
3653 * cus-edit.el (custom-hook-convert-widget): Fix comment.
3655 2000-01-09 Gerd Moellmann <gerd@gnu.org>
3657 * progmodes/cperl-mode.el: Replace ^F with ^L.
3659 * sendmail.el (toplevel): Provide `sendmail' when compiling
3660 before `require'ing rmail and mailalias to prevent infinite
3663 2000-01-08 Dave Love <fx@gnu.org>
3665 * emacs-lisp/backquote.el: Remove inappropriate customization
3666 (allowing custom.el to use backquote).
3668 2000-01-07 Dave Love <fx@gnu.org>
3670 * add-log.el (add-log-debugging): Deleted.
3671 (add-change-log-entry): Treat a backup FILE-NAME as its parent
3672 file. Remove debugging code.
3673 (change-log-get-method-definition, change-log-name): Add doc.
3674 (change-log-sortable-date-at): New function.
3675 (change-log-merge): New command.
3677 * time.el (display-time-string-forms): Make the Mail string active.
3678 (display-time-update): Provide help-echo for load average.
3680 * bindings.el (make-mode-line-mouse2-map): New function.
3681 (mode-line-modified): Use it and simplify.
3682 (mode-line-mule-info): Provide help-echo info.
3683 (minor-mode-alist): Activate the strings.
3684 (make-mode-line-mouse-sensitive): Simplify for
3685 mode-line-buffer-identification.
3687 2000-01-07 Gerd Moellmann <gerd@gnu.org>
3689 * play/pong.el: New file.
3691 2000-01-06 Dave Love <fx@gnu.org>
3693 * array.el: Assorted cleanups for compiler warnings, doc strings,
3694 `array-' prefix for symbols.
3696 2000-01-05 Dave Love <fx@gnu.org>
3698 * textmodes/outline.el (outline-mode-menu-bar-map): Add
3699 outline-headers-as-kill.
3700 (outline-mode): Define imenu-generic-expression.
3701 (outline-headers-as-kill): New command.
3703 * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
3704 from paragraph-start.
3705 (paragraph-indent-minor-mode): New command.
3707 * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
3708 M-C-e, M-C-h, C-j, C-xnd, TAB.
3709 (fortran-mode): Set beginning-of-defun, end-of-defun.
3710 (fortran-column-ruler): Simplify.
3711 (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
3712 (fortran-with-subprogram-narrowing): Likewise.
3713 (fortran-indent-subprogram): Call mark-defun.
3714 (fortran-check-for-matching-do): Change narrowing.
3716 * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
3717 (cl-lucid-hash-tag): Delete.
3718 (cl-hash-table-p): Correct test for native table.
3719 (cl-hash-table-count): Use hash-table-count.
3721 * browse-url.el (browse-url): Fix case of
3722 browse-url-browser-function being an alist.
3724 2000-01-05 Carsten Dominik <cd@gnu.org>
3726 * textmodes/reftex-vars.el (reftex-parse-file-extension)
3727 (reftex-index-phrase-file-extension): New options.
3729 * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
3730 Use new option `reftex-index-phrase-file-extension'.
3732 * textmodes/reftex.el (reftex-access-parse-file): Use new option
3733 `reftex-parse-file-extension'.
3735 2000-01-05 Dave Love <fx@gnu.org>
3737 * emacs-lisp/lisp.el (beginning-of-defun): New variable.
3738 (beginning-of-defun-raw): Use it.
3739 (end-of-defun): New variable.
3740 (end-of-defun): Use it.
3741 (check-parens): New command.
3743 2000-01-05 Thien-Thi Nguyen <ttn@delysid.gnu.org>
3745 * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
3746 (hs-show-block): Don't use `mapcar' when not accumulating.
3748 Fix buglet in local variables initialization.
3750 2000-01-05 Andreas Schwab <schwab@suse.de>
3752 * hscroll.el (hscroll): Doc fix.
3754 2000-01-05 Carsten Dominik <cd@gnu.org>
3756 * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
3759 * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
3761 (idlwave-customize): load must read file idlw-shell.el.
3762 (idlwave-create-customize-menu): load must read file idlw-shell.el.
3764 2000-01-05 Carsten Dominik <dominik@astro.uva.nl>
3766 * progmodes/idlw-shell.el: Also provide idlwave-shell
3767 * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
3768 * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
3770 * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
3771 both reftex-dcr and reftex-vcr.
3773 * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
3775 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3777 * ps-print.el: PostScript code now is in separate files, doc fix.
3778 (ps-print-version): New version number (5.0.3).
3779 (ps-header-lines, ps-left-header, ps-right-header): No more buffer
3781 (ps-spool-config): Initialization fix.
3782 (ps-print-prologue-1, ps-print-prologue-2)
3783 (ps-print-duplex-feature): PostScript code moved to separated file.
3784 (ps-background-image): Little code reformating.
3785 (ps-begin-file, ps-begin-job): Fix code.
3786 (ps-postscript-code-directory, ps-mark-code-directory): New vars.
3787 (ps-prologue-file): New fun.
3789 2000-01-05 Vinicius Jose Latorre <vinicius@cpqd.com.br>
3791 * ps-vars.el: Eliminated.
3793 * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
3796 * ps-print.el: ps-vars eliminated, doc fix.
3797 (ps-print-version): New version number (5.0.2).
3798 (ps-spool-config): Initialization fix.
3799 (ps-print-customize): New fun.
3801 2000-01-04 Gerd Moellmann <gerd@gnu.org>
3803 * autorevert.el (auto-revert-mode): Return value of
3806 2000-01-04 Dave Love <fx@gnu.org>
3808 * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
3811 2000-01-03 Dave Love <fx@gnu.org>
3813 * elide-head.el (elide-head) [defgroup]: Add :version.
3815 * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
3816 (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
3817 `cl-hash-table-p', not `hash-table-p'.
3818 (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
3820 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
3822 * faces.el (face-read-integer, read-face-attribute)
3823 (color-defined-p, color-values): unspecified-{f,b}g are now
3826 2000-01-03 Martin Stjernholm <bug-cc-mode@gnu.org>
3828 * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
3829 at comment end, and re-insert them after filling.
3831 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
3833 * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
3834 * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
3835 progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
3837 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
3839 * term/x-win.el (xw-defined-colors): Call color-supported-p,
3840 the new name of face-color-supported-p.
3842 * term/w32-win.el (xw-defined-colors): Likewise.
3844 2000-01-03 Eli Zaretskii <eliz@is.elta.co.il>
3846 * simple.el (completion-setup-function): Count completion-size
3847 from minibuffer-prompt-end, not from point-min.
3849 2000-01-02 Eli Zaretskii <eliz@is.elta.co.il>
3851 * faces.el (read-face-attribute, defined-colors, color-defined-p):
3852 Pass the frame to tty-color-* functions.
3853 (display-color-p, frame-set-background-mode): Pass the frame to
3854 tty-display-color-p.
3856 * term/tty-colors.el (tty-defined-color-alist): Renamed from
3858 (tty-color-alist, tty-modify-color-alist): New functions.
3859 (tty-color-define, tty-color-clear, tty-color-approximate)
3860 (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
3861 an optional parameter FRAME.
3863 2000-01-01 Gerd Moellmann <gerd@gnu.org>
3865 * image.el (create-image, defimage): Don't assume image data is a
3868 * image.el (defimage): Handle specifications containing :data
3870 (image-type-from-data): New function.
3871 (image-type-from-file-header): Use it.
3872 (create-image): Add parameter DATA-P.
3874 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3876 * echistory.el (electric-command-history): Call Command-history-setup
3877 and command-history-mode using their new conventions.
3879 * chistory.el (Command-history-setup): Don't switch buffers. Take
3880 no args, and do not set major-mode, mode-name or the local map.
3881 (command-history-mode): New function, does some of those things
3882 Command-history-setup used to do.
3883 (list-command-history): Call command-history-mode, not
3884 Command-history-setup.
3885 (command-history): Renamed from command-history-mode.
3887 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3889 * arc-mode.el (archive-mode-map): Bind q to quit-window.
3891 1999-12-31 William M. Perry <wmperry@aventail.com>
3893 * image.el (defimage): Images with the `:data' keyword should be
3894 considered valid as well.
3896 1999-12-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3898 * dired.el (dired-get-filename): Don't call file-name-absolute-p
3899 with FILE if FILE is nil.
3901 1999-12-30 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3903 * simple.el (choose-completion-string): In minibuffer,
3904 do not delete the prompt string.
3906 1999-12-30 Gerd Moellmann <gerd@gnu.org>
3908 * bindings.el (make-mode-line-mouse-sensitive): Copy keymap
3909 assigned to mode-line-mode-menu because bindings.el is dumped with
3910 Emacs, and thus the lists used for menu-item definition will be
3911 copied to pure space. Emacs' menu code (parse_menu_item) doesn't
3912 like pure menu item definitions.
3914 * expand.el (expand-abbrev-hook): Return t if expansion was
3915 done, nil otherwise.
3917 1999-12-29 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3919 * tar-mode.el (tar-mode-map): Bind q to quit-window, not tar-quit.
3920 (tar-quit): Function deleted.
3922 1999-12-29 Thien-Thi Nguyen <ttn@delysid.gnu.org>
3924 * progmodes/hideshow.el (hs-minor-mode-menu): Fix omission bug;
3925 was used but not declared.
3927 (hs-discard-overlays, hs-isearch-show, hs-isearch-show-temporary,
3928 hs-find-block-beginning): Add or modify docstrings.
3930 (hs-isearch-show): Rewrite.
3932 1999-12-28 Gerd Moellmann <gerd@gnu.org>
3934 * icomplete.el (icomplete-exhibit): Adapt to prompt in buffer.
3936 * progmodes/cc-cmds.el (c-fill-paragraph): Don't delete white
3937 space in front of a C-style comment end.
3939 1999-12-28 Eli Zaretskii <eliz@is.elta.co.il>
3941 * startup.el (command-line-1): Make mode line mouse-sensitive for
3942 the MS-DOS version as well.
3944 1999-12-28 Gerd Moellmann <gerd@gnu.org>
3948 1999-12-28 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3950 * textmodes/ispell.el (ispell-process-line):
3951 Add local var line-offset to adjust for the change
3952 in positions within the line, due to previous replacements.
3954 1999-12-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
3956 * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
3959 1999-12-27 Gerd Moellmann <gerd@gnu.org>
3961 * add-log.el (change-log-version-number-regexp-list)
3962 (change-log-version-info-enabled): Change :version to 21.1.
3963 (toplevel): Require CL when compiling.
3965 1999-12-27 Jari Aalto <jari.aalto@poboxes.com>
3967 * add-log.el (change-log-version-number-regexp-list): Added tag
3969 (change-log-version-info-enabled): Added tag :version 20.6
3971 1999-12-27 Jari Aalto <jari.aalto@poboxes.com>
3973 * add-log.el: More general version number search with
3974 user-configurable regexp list.
3975 (change-log-version-number-regexp-list): New user variable.
3976 (change-log-find-version): Rewritten. Use user-configurable
3977 version numbering regexp list
3978 change-log-version-number-regexp-list.
3979 (change-log-find-version): Renamed to
3980 change-log-version-number-search
3981 (add-log-file-name-function): New.
3982 (change-log-search-vc-number): Added END paramaeter. Added doc
3984 (change-log-version-rcs): Renamed. Was
3985 change-log-search-vc-number.
3987 1999-12-26 Thien-Thi Nguyen <ttn@delysid.gnu.org>
3989 * progmodes/compile.el (compilation-goto-locus): Delete hideshow
3990 overlays if they interfere.
3991 (compilation-find-file): Make intangible overlays tangible.
3993 * progmodes/hideshow.el: Generally, synch w/ maintainer
3996 (hs-show-hidden-short-form): Delete var; hard-code uses as `t'.
3998 (hs-minor-mode-hook): Don't initialize.
4000 (hs-special-modes-alist): Rewrite value and docstring.
4002 (hs-minor-mode-prefix): Delete unused var.
4004 (hs-block-start-mdata-select): New var, buffer local.
4006 (hs-headline): New var.
4008 (hs-match-data, hs-forward-sexp): New funcs.
4010 (hs-hide-comment-region): New func.
4012 (hs-discard-overlays, hs-flag-region, hs-hide-block-at-point,
4013 hs-safety-is-job-n, hs-hide-initial-comment-block,
4014 hs-inside-comment-p, hs-grok-mode-type, hs-find-block-beginning,
4015 hs-hide-level-recursive, hs-life-goes-on, hs-already-hidden-p,
4016 hs-c-like-adjust-block-beginning, hs-hide-all, hs-show-all,
4017 hs-hide-block, hs-show-block, hs-show-region, hs-hide-level,
4018 hs-mouse-toggle-hiding, hs-minor-mode): Rewrite.
4020 (hs-isearch-show): Renamed from `hs-isearch-open-invisible'.
4021 (hs-isearch-show-temporary): New funcs.
4023 (hs-show-block-at-point, java-hs-forward-sexp): Delete funcs.
4025 (hs-hide-all, hs-mouse-toggle-hiding): Don't autoload.
4027 When constructing menu, use `[(shift button2)]' notation.
4029 1999-12-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4031 * jka-compr.el (jka-compr-info-file-magic-bytes): New function.
4032 (jka-compr-compression-info-list): Add new elt to each vector.
4033 (jka-compr-write-region): Don't compress the data if it is
4036 * jka-compr.el (jka-compr-really-do-compress): New variable.
4037 (jka-compr-insert-file-contents): Set jka-compr-really-do-compress
4039 (jka-compr-write-region): Set jka-compr-really-do-compress
4040 if visiting. Test it when deciding to compress.
4042 1999-12-22 Gerd Moellmann <gerd@gnu.org>
4044 * progmodes/sh-script.el (sh-mode): Don't call sh-set-shell
4045 with third argument t.
4047 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
4049 * antlr-mode.el: Version 1.2 is released.
4050 (antlr): This package has a web page.
4052 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
4054 * antlr-mode.el: Menu/keymap additions for commenting/uncommenting
4055 regions. Suggested by Dale Davis <Dale_Davis@securify.com>.
4056 (antlr-mode-map): New binding [C-c C-c].
4057 (antlr-mode-menu): New entries.
4059 1999-12-21 Christoph Wedler <Christoph.Wedler@sap.com>
4061 * antlr-mode.el: Respect Emacs conventions.
4062 ((require 'cl)): Only use during compilation.
4063 (antlr-language-for-option): New function to avoid using `find'.
4064 (antlr-mode): Use it.
4065 (antlr-with-syntax-table): Define new instead using XEmacs' one.
4066 (antlr-imenu-create-index-function): Change accordingly.
4067 (antlr-inside-rule-p): Ditto.
4068 (antlr-end-of-rule): Ditto.
4069 (antlr-end-of-body): Ditto.
4070 (antlr-beginning-of-rule): Ditto.
4071 (antlr-indent-line): Ditto.
4073 1999-11-21 Christoph Wedler <Christoph.Wedler@sap.com>
4075 * antlr-mode.el: Really use `antlr-tab-offset-alist'.
4076 (antlr-set-tabs): Don't use hard-coded values.
4078 * antlr-mode.el: Minor navigation changes. Not perfect, but this
4079 won't be possible without a huge time penalty.
4080 (antlr-skip-exception-part): Be more specific.
4081 (antlr-skip-file-prelude): Don't skip action prelude of next rule.
4082 Renamed from `antlr-skip-grammar-header'.
4083 (antlr-next-rule): Change accordingly.
4084 (antlr-end-of-body): Ditto. Better error message.
4085 (antlr-beginning-of-body): Better error message.
4086 (antlr-imenu-create-index-function): Skip rule action prelude.
4088 * antlr-mode.el: Minor syntax highlighting changes.
4089 (antlr-font-lock-default-face): Deletia.
4090 (antlr-font-lock-tokendef-face): Changed color.
4091 (antlr-font-lock-tokenref-face): Changed color.
4092 (antlr-font-lock-literal-face): Changed color.
4093 (antlr-font-lock-additional-keywords): Minor changes.
4095 1999-12-20 Carsten Dominik <cd@gnu.org>
4097 * progmodes/idlwave.el: New file.
4099 * progmodes/idlwave-rinfo.el: New file.
4101 * progmodes/idlwave-shell.el: New file.
4103 * progmodes/idlwave-toolbar.el: New file.
4105 * files.el (auto-mode-alist): idlwave-mode default for .pro files.
4107 1999-12-21 Gerd Moellmann <gerd@gnu.org>
4109 * progmodes/cwarn.el: New file.
4111 1999-12-19 Gerd Moellmann <gerd@gnu.org>
4113 * bindings.el (completion-ignored-extensions): Add .pdf.
4115 1999-12-19 Eli Zaretskii <eliz@is.elta.co.il>
4117 * version.el: Put the version info into binary on MS-DOS as well.
4119 1999-12-19 Gerd Moellmann <gerd@gnu.org>
4121 * emacs-lisp/debug.el (debugger-continue): Don't continue if
4122 debugger-may-continue is nil.
4124 1999-12-18 Dave Love <fx@gnu.org>
4126 * emacs-lisp/cl-macs.el: Remove conditional definition of
4127 eval-when-compile. Don't specify abs, expt, gethash,
4128 hash-table-count, hash-table-p as side-effect-free here.
4129 (cl-emacs-type): Don't declare.
4130 (cl-compile-time-init): Remove Emacs 18 compiler patch.
4131 (cl-parse-loop-clause): Remove compatibility code.
4133 * emacs-lisp/byte-opt.el: Don't put optimization info on `eql'.
4134 (side-effect-free-fns): Add gethash, hash-table-count.
4135 (side-effect-and-error-free-fns): Add hash-table-p.
4137 * emacs-lisp/cl.el: Remove Emacs 18 compatibility code. Prepend
4138 `cl-' to autoload names for some hash functions. Don't autoload
4139 eval-when-compile. Don't provide mini-cl.
4140 (cl-emacs-type): Remove.
4141 (cl-map-extents): Remove compatibility code.
4143 * emacs-lisp/float.el: Bind free variables.
4145 * emacs-lisp/bytecomp.el (byte-compile-constp): Include keywords.
4147 1999-12-16 Gerd Moellmann <gerd@gnu.org>
4149 * bindings.el (completion-ignored-extensions): Add .tfm.
4151 1999-12-16 Dave Love <fx@gnu.org>
4153 * faces.el (set-face-attribute): Purecopy the attributes set.
4155 * custom.el (custom-declare-variable): Purecopy value.
4157 * emacs-lisp/bytecomp.el (byte-compile-bound-variables): Doc fix.
4158 (byte-extrude-byte-code-vectors): Use remprop.
4159 (byte-compile-lambda): Check that arg is a lambda.
4161 1999-11-16 Anders Lindgren <AndersL@andersl.com>
4163 * font-lock.el: System for adding and removing keywords.
4164 Both local (previously added keyword) and global keywords
4166 (font-lock-remove-keywords): New user-level function.
4167 (font-lock-update-removed-keyword-alist): New internal function.
4168 (font-lock-removed-keywords-alist): New variable.
4169 (font-lock-add-keywords): Updates `font-lock-removed-keywords-alist'.
4170 Empty `font-lock-keywords-alist' when `append' is `set' to avoid
4171 growing datastructures.
4172 (font-lock-set-defaults): Removes keywords stored in
4173 `font-lock-removed-keywords-alist' after local keywords added.
4175 1999-12-16 Anders Lindgren <andersl@andersl.com>
4177 * font-lock.el (c-keywords, c++-keywords): Better "case" support for
4178 complex constant expressions, e.g. "case 1<<A_BIT_NO:".
4180 * font-lock.el (c-keywords): Only highlight preprocessor
4181 directives when spelled correctly.
4183 * font-lock.el (font-lock-match-c++-structor-declaration,
4184 c++-keywords): Fontify constructors and destructors with function
4185 face inside C++ class declarations.
4187 1999-12-16 Gerd Moellmann <gerd@gnu.org>
4189 * progmodes/sh-script.el (sh-mode): If there is no #!-line, use
4190 the shell from sh-shell-file.
4192 * font-lock.el (java-keywords): Add Javadoc tags as of JDK 1.2.1.
4194 1999-12-16 Eli Zaretskii <eliz@is.elta.co.il>
4196 * ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
4197 if one of the files specified cannot be accessed by
4198 file-attributes. Do not strip any leading directories from the
4199 file names, to behave more like `ls' does.
4201 * dired.el (dired-get-filename): Handle absolute file names.
4202 (dired-readin-insert): If argument is a cons, don't print
4203 "wildcard" on the ``total'' line.
4205 1999-12-15 Eli Zaretskii <eliz@is.elta.co.il>
4207 * faces.el (face-read-integer, read-face-attribute)
4208 (color-defined-p, color-values): Allow color values unspecified-fg
4209 and unspecified-bg, handle them as unspecified.
4211 1999-12-15 Carsten Dominik <dominik@astro.uva.nl>
4213 * textmodes/reftex.el: (reftex-compile-variables): respect new
4214 structure of `reftex-index-macro'
4215 (reftex-compile-variables): Use the changed structure of
4216 `reftex-label-alist'.
4218 * textmodes/reftex-vars.el (reftex-index-math-format,
4219 (reftex-toc-max-level): New option.
4220 reftex-index-phrases-search-whole-words,
4221 reftex-index-phrases-case-fold-search,
4222 reftex-index-phrases-skip-indexed-matches,
4223 reftex-index-phrases-wrap-long-lines,
4224 reftex-index-phrases-sort-prefers-entry,
4225 reftex-index-phrases-sort-in-blocks): New options.
4226 (reftex-index-macros): Option structure changed.
4227 (reftex-index-macros-builtin): Added `repeat' item to each entry.
4228 (reftex-label-alist): Additional item in each entry to specify if
4229 the environment should be listed in the TOC.
4230 (eval-when-compile (require 'cl)) added.
4232 * textmodes/reftex-index.el (reftex-index-selection-or-word): No
4233 longer deals with "repeat".
4234 (reftex-index): "repeat property in `reftex-index-macro-alist' is
4236 (reftex-index-phrases-comment-regexp,
4237 reftex-index-phrases-macrodef-regexp,
4238 reftex-index-phrases-phrase-regexp1,
4239 reftex-index-phrases-phrase-regexp2,
4240 reftex-index-phrases-phrase-regexp12, reftex-index-phrases-help):
4242 (reftex-index-phrases-macro-data, reftex-index-phrases-files,
4243 reftex-index-phrases-font-lock-keywords,
4244 reftex-index-phrases-font-lock-defaults, reftex-index-phrases-map,
4245 reftex-index-phrases-restrict-file): New variables.
4246 (reftex-index-phrase-selection-or-word,
4247 reftex-index-visit-phrases-buffer,
4248 reftex-index-initialize-phrases-buffer,
4249 reftex-index-phrases-save-and-return, reftex-index-phrases-mode,
4250 reftex-index-next-phrase, reftex-index-this-phrase,
4251 reftex-index-all-phrases, reftex-index-region-phrases,
4252 reftex-index-phrases-parse-header,
4253 reftex-index-phrases-toggle-restricted, reftex-index-new-phrase,
4254 reftex-index-find-next-conflict-phrase, reftex-index-phrases-info,
4255 reftex-index-phrases-set-macro-key, reftex-index-sort-phrases,
4256 reftex-compare-phrase-lines, reftex-index-make-phrase-regexp,
4257 reftex-index-simplify-phrase, reftex-index-phrases-find-dup-re,
4258 reftex-index-make-replace-string,
4259 reftex-query-index-phrase-globally, reftex-query-index-phrase,
4260 reftex-index-phrase-match-is-indexed,
4261 reftex-index-phrases-fixup-line,
4262 reftex-index-phrases-replace-space,
4263 reftex-index-select-phrases-macro): New functions.
4264 (reftex-index-globalize, reftex-index-globally): functions removed
4265 (eval-when-compile (require 'cl)) added.
4267 * textmodes/reftex-toc.el (reftex-toc-mode): Create new indicator
4269 (reftex-toc-max-level-indicator): New variable.
4270 (reftex-toc-max-level): New command.
4271 (reftex-toc-map): New keybinding `t'.
4272 (reftex-toc-help): Constant updated.
4273 (eval-when-compile (require 'cl)) added.
4275 * textmodes/reftex-ref.el (reftex-offer-label-menu): Prefix to
4276 `t' command key can change `reftex-toc-max-level'
4277 (eval-when-compile (require 'cl)) added.
4279 * textmode/reftex-sel (reftex-insert-docstruct): Respect
4280 `reftex-toc-max-level'
4281 (eval-when-compile (require 'cl)) added.
4283 * textmodes/reftex-auc.el (eval-when-compile (require 'cl))
4286 * textmodes/reftex-vcr.el (eval-when-compile (require 'cl))
4289 * textmodes/reftex-cite.el (reftex-citep, reftex-citet): New
4291 (reftex-citation, reftex-do-citation,
4292 reftex-figure-out-cite-format): Additional argument FORMAT-KEY to
4293 preselect a citation format.
4294 (eval-when-compile (require 'cl)) added.
4296 * textmodes/reftex-parse.el (reftex-context-substring): Optional
4298 (reftex-section-info): Deal with environment matches.
4299 (eval-when-compile (require 'cl)) added.
4301 * reftex-global.el (eval-when-compile (require 'cl)) added.
4303 1999-12-15 Kenichi Handa <handa@etl.go.jp>
4305 The following changes are for the new composition mechanism. We
4306 have deleted `composition' charset and composite characters,
4307 instead introduced a special text property `composition'.
4309 * composite.el: New file.
4311 * ps-mule.el: Define encode-composition-rule and find-composition
4312 for Emacs 20.4 and the earlier versions.
4313 (ps-mule-init-external-library): Just require a feature for
4315 (ps-mule-prologue): Postscript code modified for new composition.
4316 (ps-mule-find-wrappoint): New arg COMPOSITION.
4317 (ps-mule-plot-string): Delete code for composite characaters.
4318 (ps-mule-plot-composition): New funcion.
4319 (ps-mule-prepare-font-for-components): New function.
4320 (ps-mule-plot-components): New function.
4321 (ps-mule-composition-prologue-generated): Renamed from
4322 ps-mule-cmpchar-prologue-generated.
4323 (ps-mule-composition-prologue): New named from
4324 ps-mule-cmpchar-prologue. Modified for new composition.
4325 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
4326 ps-mule-prepare-cmpchar-font): Deleted.
4327 (ps-mule-string-encoding): New arg NO-SETFONT.
4328 (ps-mule-bitmap-prologue): In Postscript code of BuildGlyphCommon,
4329 check Composing, not Cmpchar
4330 (ps-mule-initialize): Set ps-mule-composition-prologue-generated
4332 (ps-mule-begin-job): Check existence of new composition.
4334 * ps-print.el (ps-plot-region): Handle new composition.
4336 * simple.el (what-cursor-position): Show "(composed)" if the
4337 character is composed.
4339 * international/characters.el: Fix cateogries of Lao symbols.
4341 * international/fontset.el (vertical-centering-font-regexp): New
4344 * international/mule.el (mule-version): Updated to 5.0 (AOI).
4345 (mule-version-date): Updated to 1999.12.7.
4346 (with-category-table): New macro.
4348 * international/mule-cmds.el (encode-coding-char): Don't check
4349 composite character.
4351 * international/mule-conf.el (iso-2022-7bit, iso-2022-7bit-ss2
4352 iso-2022-7bit-lock, iso-2022-7bit-lock-ss2, iso-2022-8bit-ss2,
4353 x-ctext): Give `composition' property t.
4355 * international/mule-util.el (set-nested-alist): Set BRANCHES (if
4356 non-nil) at the tail of ALIST.
4357 (compose-region, decompose-region, decompse-string,
4358 reference-point-alist, compose-chars): Moved to composite.el.
4359 (compose-chars-component, compose-chars-rule,
4360 decompose-composite-char): Deleted.
4362 * international/quail.el (quail-install-map): New optional arg
4364 (quail-get-translation): If DEF is a symbol but not a function,
4366 (quail-start-translation): Put a key sequence undefined in the
4367 translation keymap in unread-command-events, not generated-events.
4368 Return parameterized event (compose-last-chars N) if the input
4369 characters should be composed.
4370 (quail-map-definition): If DEF is t, treat it as nil.
4371 (quail-delete-last-char): Delete the quail region.
4372 (quail-show-translations): Don't show list of translations if the
4373 quail package is deterministic.
4374 (quail-completion-max-depth): New variable.
4375 (quail-completion-1): Pay attention to the above variable. Fix
4376 for the case that a translation is a function.
4377 (quail-map-from-table, quail-map-from-table-1,
4378 quail-map-from-table-2): New functions.
4379 (quail-lookup-map-and-concat): New function
4381 * language/devan-util.el: Mostly rewritten.
4383 * language/lao.el: Register lao-composition-function in
4384 composition-function-table.
4386 * language/lao-util.el: Mostly rewritten.
4388 * language/thai.el: Register thai-composition-function in
4389 composition-function-table.
4390 (thai-tis620): Delete `pre-write-conversion' property.
4392 * language/thai-util.el: (thai-category-table): Make it by
4393 make-category-table.
4394 (thai-composition-pattern): New variable.
4395 (thai-compose-region, thai-compose-string): Use
4396 with-category-table.
4397 (thai-post-read-conversion): Just call thai-compose-region.
4398 (thai-pre-write-conversion): Deleted.
4399 (thai-composition-function): New funciton.
4401 * language/tibet-util.el: Most functions rewritten.
4402 (tibetan-char-p): Renamed from tibetan-char-examin.
4403 (tibetan-composable-examin) (tibetan-complete-char-examin)
4404 (tibetan-vertical-stacking) (tibetan-composition): Deleted.
4405 (tibetan-add-components): New function.
4406 (tibetan-composition-function): New function.
4408 * language/tibetan.el: Register tibetan-composition-function in
4409 composition-function-table.
4410 (tibetan-composable-pattern): New variable.
4411 (tibetan-subjoined-transcription-alist): Change key "R" to "+R".
4412 (tibetan-precomposition-rule-alist): Move punctuations to
4413 tibetan-punctuation-transcription-alist and
4414 tibetan-obsolete-glyphs.
4415 (tibetan-punctuation-transcription-alist): New variable.
4416 (tibetan-obsolete-glyphs): New variable.
4417 (tibetan-regexp): Improve the initialization code.
4419 * textmodes/fill.el (fill-find-break-point): Delete codes for
4420 composite characters.
4421 (fill-region-as-paragraph): Likewise.
4423 1999-12-14 Gerd Moellmann <gerd@gnu.org>
4425 * international/mule-cmds.el (default-input-method): Specify
4426 that it should be set after current-language-environment.
4428 * custom.el (custom-handle-keyword): Add :set-after.
4429 (custom-add-dependencies): New function.
4430 (custom-set-variables): Take dependencies between args into
4433 * battery.el (battery): Doc fix.
4435 1999-12-12 Gerd Moellmann <gerd@gnu.org>
4437 * progmodes/cc-make.el: Removed.
4439 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4441 * Release of cc-mode 5.26
4443 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4445 * cc-cmds.el (c-forward-conditional): Handle an arbitrary
4446 target depth. Optionally count #else lines as clause limits,
4447 as suggested by don provan <provan@lucent.com>. #elif
4450 * cc-cmds.el (c-up-conditional-with-else, c-down-conditional)
4451 (c-down-conditional-with-else): New commands that uses the
4452 added functionality in `c-forward-conditional'.
4454 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4456 * cc-align.el (c-lineup-comment): Preserve the alignment with
4457 a comment on the previous line instead of preserving the
4460 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4462 * Fixes to IDL mode after input from Eric Eide
4463 <eeide@cs.utah.edu>:
4464 * cc-engine.el (c-beginning-of-statement-1): Allow
4465 `c-conditional-key' to be nil, for the benefit of IDL mode.
4466 * cc-engine.el (c-guess-basic-syntax): Ditto.
4467 cc-langs.el (C-IDL-class-key): Fixed. Don't match `class'
4468 but do match CORBA 2.3 `valuetype'.
4469 * cc-langs.el (c-IDL-access-key): New defconst. Should be nil
4471 * cc-langs.el (c-IDL-conditional-key): New defconst. Should
4473 * cc-langs.el (c-IDL-comment-start-regexp): New defconst.
4475 * cc-mode.el (idl-mode): Use new `c-IDL-*' defconsts. Also,
4476 set `c-method-key' and `c-baseclass-key' to nil.
4478 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4480 * cc-menus.el (cc-imenu-c++-generic-expression): Match classes
4481 with nonhanging open braces.
4483 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4485 * cc-align.el: Added docstrings to all lineup functions.
4487 * cc-align.el (c-lineup-java-throws): Handle a hanging throws
4490 * cc-align.el (c-lineup-C-comments): Handle free form text
4491 comments. Use c-comment-prefix-regexp and comment-start-skip
4492 instead of hardcoded regexps.
4494 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4496 * cc-cmds.el (c-beginning-of-defun, c-end-of-defun): Fixed eob
4497 behavior and return value as documented.
4499 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4501 * Changes for new style variable init system:
4502 * cc-langs.el (c-common-init): Dito.
4503 * cc-styles.el: c-offsets-alist moved to cc-vars.el since it's
4505 * cc-vars.el: Style variables may now take a value
4506 'set-from-style to make them take their value from the style
4507 system. This value is now the default on all these variables.
4508 * cc-vars.el (c-valid-offset): New function to verify a
4509 syntactic symbol offset setting.
4510 * cc-vars.el (c-offsets-alist): Variable moved from
4511 cc-styles.el since it's now customizable in a similar way to
4512 the other style variables.
4513 * cc-vars.el (c-old-style-variable-behavior): New variable to
4514 revert to the old style init behavior.
4516 * cc-vars.el (c-file-style, c-file-offsets): Made always
4519 * cc-menus.el (cc-imenu-c++-generic-expression): Don't match
4520 the throws clause that might follow the function prototype in
4523 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4525 * cc-defs.el (c-beginning-of-macro): Fixed bug where point
4526 could move forward for macros that doesn't start in column 0.
4528 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4530 * cc-align.el (c-indent-multi-line-block,
4531 c-lineup-whitesmith-in-block): Two new lineup functions for
4532 use in whitesmith style.
4534 * cc-styles.el (c-style-alist): More fixes to whitesmith
4535 style. It should now handle all different braces uniformly in
4536 both hanging and non-hanging cases.
4538 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4540 * cc-cmds.el (c-indent-exp): Use a marker to save point to
4541 make it stay in the same position relative to the surrounding
4544 * cc-cmds.el (c-fill-paragraph): Force the line comment prefix
4545 when adaptive-fill-mode doesn't manage to get it correct.
4547 * cc-menus.el (cc-imenu-java-generic-expression): Handle types
4548 with dotted notation, e.g. foo.bar.Gnu.
4550 * cc-mode.el (c-initialize-cc-mode): Wrap all function calls
4551 within unwind-protect (previously only some were wrapped so it
4552 would be possible to register mode initialization when full
4553 initialization did not finish).
4555 * cc-styles.el (c-style-alist): Corrected the brace placement
4556 in the whitesmith style. Thanks to Sean Luke
4557 <seanl@cs.umd.edu>. Also extended the bsd and whitesmith
4558 styles with consistent brace placement for all constructs.
4560 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4562 * cc-cmds.el (c-context-line-break): Continue C++ comments too
4563 when point is in the middle of them.
4565 * cc-cmds.el: Line breaking and paragraph filling code
4567 (c-guess-fill-prefix): New function that uses various
4568 heuristics to guess the comment prefix.
4569 (c-fill-paragraph): Rewritten to use `c-guess-fill-prefix'.
4570 It now assumes adaptive filling is active to preserve the line
4571 prefix inside comments.
4572 (c-indent-new-comment-line): Replacement for the now
4573 obsolete `c-comment-line-break-function' that uses
4574 `c-guess-fill-prefix' when appropriate. It now observes the
4575 setting of `comment-multi-line', which has effect in C-style
4578 * cc-cmds.el (c-context-line-break): New function intended to
4579 be put on RET. It's essentially `newline-and-indent', but
4580 continues C block comments with the appropriate line prefix.
4582 * cc-cmds.el (c-do-auto-fill): New function put on
4583 `normal-auto-fill-function' to implement the
4584 `c-ignore-auto-fill' variable.
4586 * cc-cmds.el (c-beginning-of-statement): Use
4587 `c-comment-prefix-regexp' to avoid ending up inside the
4588 comment prefix. Better handling of comment starters and
4589 enders. Catch comments better when traversing code. Stop at
4590 preprocessor directives.
4592 * cc-defs.el (c-forward-comment): New subst to hide platform
4593 dependent quirks in `forward-comment'.
4595 * cc-engine.el (c-literal-limits): Added NOT-IN-DELIMITER
4597 (c-literal-limits-fast): Implemented NEAR and NOT-IN-DELIMITER
4598 arguments. Activate this function by default when
4599 `parse-partial-sexp' supports it (currently Emacs 20.x).
4601 * cc-engine.el (c-guess-basic-syntax): Anchor the `c' syntax
4602 on the comment opener to make constants usable as lineup
4605 * cc-align.el (c-lineup-C-comments): Fixes to handle the
4606 changed anchor position in the `c' syntactic symbol. Handle
4607 more than stars in the comment prefix; use the new variable
4608 `c-comment-prefix-regexp'. Don't indent text not preceded by
4609 a comment prefix to the right of the comment opener if it's
4612 * cc-langs.el: Fixes to mode initialization for new line
4613 breaking and paragraph filling method. Adaptive fill mode is
4614 now activated at startup instead of deactivated. The
4615 variables used for adaptive filling and paragraph movement are
4616 also changed to incorporate the value of
4617 `c-comment-prefix-regexp'. `substitute-key-definition' is
4618 used to override some functions in the global map instead of
4619 overriding their default bindings.
4621 * cc-mode.el (java-mode): Modify `paragraph-start' for the
4622 javadoc markup at mode init.
4624 * cc-mode.el (c-setup-filladapt): A new convenience function
4625 to configure Kyle E. Jones' Filladapt mode for CC Mode. This
4626 function is intended to be used explicitly by the end user
4629 * cc-vars.el (c-comment-prefix-regexp): New variable used to
4630 recognize the comment fill prefix inside comments.
4631 (c-block-comment-prefix): New name for
4632 `c-comment-contiuation-stars', which is now obsolete. It's
4633 generalized to handle any character sequence.
4634 (c-ignore-auto-fill): New variable used to selectively disable
4635 Auto Fill mode in specific contexts.
4637 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4639 * cc-cmds.el (c-comment-indent): Leave at least one space
4640 between the comment and the last nonblank character in the
4641 case where we look at the indentation of the comment on the
4642 previous line (case 4).
4644 * cc-engine.el (c-beginning-of-statement-1): Added ``' to the
4645 list of characters that may start a statement (it's a sort of
4646 prefix operator in Pike, and isn't used at all in any of the
4649 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4651 * cc-engine.el (c-guess-basic-syntax): Report brace list opens
4652 inside continued statements as statement-cont instead of
4653 brace-list-open. The reason is that one normally adjusts
4654 brace-list-open for brace lists as top-level constructs, and
4655 brace lists inside statements is a completely different
4656 context. Case 10B.2 changed. Also changed (the somewhat
4657 esoteric) case 9A to cope with this.
4659 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4661 * cc-cmds.el (c-electric-brace): Added electric handling of
4662 the open brace for brace-elseif-brace.
4664 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4666 * cc-defs.el (c-with-syntax-table): New macro to easily switch
4667 syntax tables temporarily.
4669 * cc-engine.el (c-guess-basic-syntax): Handle template and
4670 member init argument lists split over several lines. Case 5D
4673 * cc-langs.el (c-Java-javadoc-paragraph-start): Added new tag
4674 @throws introduced in Javadoc 1.2.
4676 * cc-menus.el (cc-imenu-java-generic-expression): Applied
4677 patch from RMS to avoid infinite backtracking.
4679 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4681 * cc-align.el (c-lineup-arglist): Handle "arglists" surrounded
4684 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4686 * cc-align.el (c-lineup-dont-change): Compensate properly for
4687 the column in langelem.
4689 * cc-engine.el (c-syntactic-information-on-region): New
4690 function to help debugging the syntactic analysis.
4692 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4694 * cc-align.el (c-lineup-template-args): Handle nested template
4697 * cc-langs.el (c++-template-syntax-table): New syntax table
4698 that makes `<' and `>' parenthesis characters, which is useful
4699 to switch to temporarily when analyzing template arglists.
4701 * cc-styles.el: Changed default alignment of labels in the
4702 java style to conform to the examples in the Java Language
4705 * cc-styles.el (c-offsets-alist): Use `c-lineup-template-args'
4708 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4710 * cc-engine.el (c-guess-basic-syntax): Pike allows a comma
4711 immediately before the closing paren in an arglist, so don't
4712 check that in Pike mode. Case 7A changed.
4714 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4716 * cc-cmds.el (c-indent-region): Fixed bug where comment-only
4717 lines were ignored under certain conditions.
4719 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4721 * cc-align.el (c-lineup-template-args): New function for
4722 aligning continued template argument lists.
4724 * cc-engine.el (c-guess-basic-syntax): Fix for member init
4725 lists containing function arglists split over several lines.
4728 * cc-engine.el (c-guess-basic-syntax): Fixed bug where
4729 template-args-cont didn't get recognized when the first
4730 arglist opener line doesn't contain a template argument. New
4733 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4735 * cc-defs.el (c-point): Changed from subst to macro for
4737 (c-beginning-of-defun-1, c-end-of-defun-1): New
4738 beginning-of-defun/end-of-defun wrappers separated from
4741 * cc-menus.el (imenu-generic-expression,
4742 imenu-case-fold-search, imenu-progress-message): Dummy
4743 definitions to avoid compiler warnings if imenu can't be
4745 * cc-menus.el (cc-imenu-init): New function called at mode
4747 * cc-mode.el (c-mode, c++-mode, objc-mode, java-mode): Moved
4748 imenu initializations to cc-imenu-init.
4750 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4752 * cc-engine.el (c-guess-basic-syntax): Slightly better check
4753 for lambda-intro-cont in Pike mode. Case 6 changed.
4755 * cc-engine.el (c-looking-at-inexpr-block): Fixed bug where
4756 anything following "new Foo()" was considered an anonymous
4757 class body in Java mode.
4759 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
4761 * cc-cmds.el (c-comment-line-break-function): When breaking in
4762 a string, don't insert a new line.
4764 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
4766 * cc-engine.el (c-at-toplevel-p): New interface function which
4767 returns information useful to add-on authors. It tells you
4768 whether you're at a toplevel statement or not.
4770 1999-12-12 Barry A. Warsaw <bug-cc-mode@gnu.org>
4772 * cc-cmds.el (c-comment-line-break-function): It is possible
4773 that forward-line does not land us at the bol, say if we're on
4774 the last line in a file. In that case, do a
4775 back-to-indentation instead of a forward-comment -1.
4777 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4779 * cc-engine.el (c-beginning-of-statement-1): Don't catch
4780 "default:" as normal label in case 4.
4782 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4784 * cc-engine.el (c-guess-basic-syntax): Use c-bitfield-key to
4785 recognize continued bitfield declarations. Case 5D.1 changed.
4786 * cc-langs.el: New variable c-bitfield-key.
4787 * cc-mode.el: New variable c-bitfield-key.
4789 1999-12-12 Martin Stjernholm <bug-cc-mode@gnu.org>
4791 * cc-engine.el (c-inside-bracelist-p): Tighter test for Java
4792 anonymous array expressions (i.e. "new Foo[] {.. bracelist
4795 1999-12-12 Dave Love <fx@gnu.org>
4797 * mail/footnote.el: Require cl when compiling. Don't autoload
4798 keymap and minor-mode-alist stuff. Don't set zmacs-region-stays.
4799 (footnote-insert-text-marker, Footnote-insert-pointer-marker):
4801 (footnote-mode-line-string, Footnote-add-footnote): Remove
4804 1999-12-12 Richard Sharman <rsharman@pobox.com>
4806 * sh-script.el: Fix for when font-lock mode is active.
4807 (sh-font-lock-unfontify-region-function): New function.
4809 1999-12-12 Eli Zaretskii <eliz@is.elta.co.il>
4811 * menu-bar.el (menu-bar-edit-menu): Define the Spell submenu even
4812 if start-process is not bound, since Ispell now supports such
4815 1999-12-12 Gerd Moellmann <gerd@gnu.org>
4817 * mail/rmailsum.el (rmail-summary-mode-map): Bind RET to
4818 rmail-summary-goto-msg.
4820 * files.el (after-find-file): Fix previous change.
4822 1999-12-11 Dave Love <fx@gnu.org>
4824 * help.el (where-is): Use `commandp' as predicate for
4827 1999-12-10 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4829 * cus-edit.el (custom-save-delete): Delete all occurrences,
4830 leave point where the first occurrence was.
4831 (custom-save-faces): Insert a newline at the end of the comment.
4832 Avoid a double newline there.
4833 If final closeparen is at bol, put a space before it.
4834 (custom-save-variables): Likewise.
4835 (custom-file): Doc fix.
4837 1999-12-10 Gerd Moellmann <gerd@gnu.org>
4839 * dos-w32.el (file-name-buffer-file-type-alist): Add `$' at end of
4840 regexp matching image and audio files.
4842 1999-12-09 Dave Love <fx@gnu.org>
4844 * mail/footnote.el: New file.
4846 1999-12-09 Gerd Moellmann <gerd@gnu.org>
4848 * files.el (after-find-file): Use auto-save-visited-file-name if
4851 * mail/feedmail.el (feedmail-find-eoh): Take
4852 feedmail-queue-alternative-mail-header-separator into account.
4854 1999-12-09 Stefan Monnier <monnier@cs.yale.edu>
4856 * smerge-mode.el: New file.
4858 * font-lock.el (font-lock-multiline): New variable.
4859 (font-lock-add-keywords): Rename `major-mode' into `mode'.
4860 (font-lock-remove-keywords): Added a dummy `mode' argument for
4861 potential future support.
4862 (font-lock-fontify-anchored-keywords,
4863 (font-lock-fontify-keywords-region): Only handle multiline strings
4864 if necessary (avoids a pathological behavior in (f.ex) diff-mode).
4866 1999-12-08 Richard M. Stallman <rms@caffeine.ai.mit.edu>
4868 * bookmark.el (bookmark-bmenu-mode-map): Bind RET like f.
4870 * dired-aux.el (dired-insert-subdir): Add autoload cookie.
4872 1999-12-07 Dave Love <fx@gnu.org>
4874 * help.el (view-emacs-problems): New command, bound to C-h P.
4876 * menu-bar.el (menu-bar-manuals-menu): Add view-emacs-problems.
4878 1999-12-07 Stefan Monnier <monnier@cs.yale.edu>
4880 * diff-mode.el (diff-mode-shared-map): Fset'd and doc change.
4881 (diff-minor-mode, diff-minor-mode-prefix, diff-minor-mode-map):
4882 New code to support the minor mode version.
4883 (diff-recenter): New function.
4884 (diff-next-hunk, diff-next-file): Use it.
4885 (diff-remembered-files-alist): New var.
4886 (diff-merge-strings): New function.
4887 (diff-find-file-name): Make it smarter and use the user's input more.
4888 (diff-mode): Cosmetic changes.
4890 * files.el (save-some-buffers): Turn EXITING into the more general
4891 PRED argument to allow specifying a subset of buffers.
4893 * simple.el (kill-region): Use the new `delete-and-extract-region'
4894 rather than the undo log (which is incorrect with *-change-functions).
4896 * font-lock.el (font-lock-default-fontify-region): Fix subtle
4897 off-by-one problem that could force re-fontifying the whole buffer.
4898 (font-lock-remove-keywords): New function.
4899 (font-lock-add-keywords): Use the new function to ensure idempotence.
4901 1999-12-06 Michael Kifer <kifer@cs.sunysb.edu>
4903 * viper-cmd.el (viper-minibuffer-standard-hook,
4904 viper-minibuffer-real-start): Mew functions.
4905 (viper-read-string-with-history,viper-file-add-suffix,
4906 viper-trim-replace-chars-to-delete-if-necessary): Adapt to the
4907 change in the status of the minibuffer prompt.
4909 1999-12-06 Gerd Moellmann <gerd@gnu.org>
4911 * comint.el (comint-redirect-results-list)
4912 (comint-redirect-results-list-from-process): Remove interactive
4915 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
4917 * info.el (info-node, info-menu-5, info-xref): Define colors for
4918 Info faces if the display supports them.
4920 1999-12-06 Eli Zaretskii <eliz@is.elta.co.il>
4922 Changes for automatic remapping of X colors on terminal frames:
4924 * term/pc-win.el (msdos-setup-initial-frame): New function, run by
4925 term-setup-hook. Call msdos-remember-default-colors and
4926 msdos-handle-reverse-video.
4927 (msdos-face-setup): Parts of code moved to
4928 msdos-setup-initial-frame.
4929 (msdos-handle-reverse-video): New function, modeled after
4930 x-handle-reverse-video.
4931 (make-msdos-frame): Don't use initial-frame-alist and
4932 default-frame-alist. Call msdos-handle-reverse-video.
4933 (msdos-color-aliases): Remove.
4934 (msdos-color-translate, msdos-approximate-color): Remove.
4935 (msdos-color-values): Use 16-bit RGB values. RGB values updated
4936 for better approximation of X colors.
4937 (msdos-face-setup): Call tty-color-clear. Remove code that sets
4938 up tty-color-alist (it is now on startup.el).
4939 (x-display-color-p, x-color-defined-p, x-color-values,
4940 x-defined-colors, face-color-supported-p, face-color-gray-p):
4943 * facemenu.el (facemenu-read-color, list-colors-display): Use
4944 defined-colors for all frame types.
4945 (facemenu-color-equal): Use color-values for all frame types.
4947 * faces.el (read-face-attribute): For :foreground and :background
4948 attributes and frames on character terminals, translate the color
4949 to the closest supported one before looking it up in the list of
4951 (face-valid-attribute-values): Call defined-colors for all types
4953 (defined-colors, color-defined-p, color-values, display-color-p):
4955 (x-defined-colors, x-color-defined-p, x-color-values,
4956 x-display-color-p): Aliases for the above.
4958 * startup.el (command-line): Register terminal colors for frame
4959 types other than x and w32, but only if the terminal supports
4960 colors. Call tty-color-define instead of face-register-tty-color.
4962 * term/x-win.el (xw-defined-colors): Renamed from
4964 * term/w32-win.el (xw-defined-colors): Likewise.
4966 * term/tty-colors.el: New file.
4967 * loadup.el: Load term/tty-colors.
4969 1999-12-06 Dave Love <fx@gnu.org>
4971 * ffap.el: Autoload the ffap alias directly.
4973 1999-12-06 Inge Frick <inge@nada.kth.se>
4975 * dired-aux.el (dired-do-shell-command): Changed documentation.
4976 (dired-shell-stuff-it): A `?' in COMMAND has now the same
4979 1999-12-06 Gerd Moellmann <gerd@gnu.org>
4981 * simple.el (insert-buffer): Doc fix.
4983 * apropos.el (apropos-mode): Add autoload cookie.
4985 1999-12-06 Sam Steingold <sds@goems.com>
4987 * progmodes/etags.el (etags-tags-completion-table): Modified the
4988 regexp to allow for the CL symbols starting with `+*'.
4989 (tags-completion-table): Doc fix (it's an obarray, not an alist).
4990 (tags-completion-table, tags-recognize-empty-tags-table): Remove
4991 `function' quoting lambda.
4992 (tags-with-face): New macro.
4993 (list-tags, tags-apropos): Use it.
4994 (tags-apropos-additional-actions): New user option.
4995 (etags-tags-apropos-additional): Use it.
4996 (tags-apropos): Call etags-tags-apropos-additional.
4997 (tags-apropos-verbose): New user option.
4998 (etags-tags-apropos): Use it.
4999 (visit-tags-table-buffer, next-file): Use `unless'.
5000 (recognize-empty-tags-table): Renamed to
5001 tags-recognize-empty-tags-table.
5002 (complete-tag): Call tags-complete-tag bypassing try-completion.
5004 1999-12-06 Kenichi Handa <handa@etl.go.jp>
5006 * international/mule.el (set-buffer-file-coding-system): Docstring
5009 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
5011 * textmodes/bibtex.el (bibtex-hs-forward-sexp): Added to support
5012 using the hideshow package.
5013 (hs-special-modes-alist): Added entry for bibtex to allow the use
5014 of the hideshow package.
5015 (bibtex-hide-entry-bodies): Deleted as hiding of entry bodies is
5016 not longer provided by bibtex.el directly. Instead the hideshow
5017 package should be used.
5018 (bibtex-mode-map, bibtex-edit-menu, bibtex-mode): Delete
5019 references to bibtex-hide-entry-bodies.
5021 1999-12-05 Dirk Herrmann <D.Herrmann@tu-bs.de>
5023 * textmodes/bibtex.el: Copyright notice is up to date. Moved
5024 maintainer information closer to the beginning of the bibtex.el
5026 (bibtex-maintainer-salutation): New constant.
5027 (bibtex-version): New constant.
5028 (bibtex-submit-bug-report): Use bibtex-version and
5029 bibtex-maintainer-salutation.
5030 (bibtex-entry-field-alist): Made booktitle field optional for
5031 @inproceedings entries when crossreferenced.
5032 (bibtex-entry-field-alist): Added booktitle field to proceedings
5033 entry type (for cross referencing). Thanks to Wagner Toledo Correa
5035 (bibtex-string-file-path): Fixed typo.
5037 1999-12-05 Carsten Dominik <dominik@strw.leidenuniv.nl>
5039 * textmodes/bibtex.el (bibtex-mode-map): Reserved the key `C-c &'
5041 (bibtex-edit-menu): Added `reftex-view-crossref-from-bibtex'
5044 1999-12-04 Dave Love <fx@gnu.org>
5046 * delsel.el: Revert previous change -- region is significant to
5049 1999-12-04 Michael Kifer <kifer@cs.sunysb.edu>
5051 * viper-cmd.el (viper-change-state): Use
5052 viper-ESC-moves-cursor-back to decide whether to move the cursor
5055 1999-12-03 Kenichi Handa <handa@mule.m17n.org>
5057 * international/mule-util.el (truncate-string-to-width): Docsting
5060 1999-12-02 Stefan Monnier <monnier@cs.yale.edu>
5062 * emacs-lisp/lisp-mnt.el (lm-header-multiline): Fix spurious
5064 (lm-with-file): Move all the find-file...kill-buffer stuff into
5065 this macro. Make it use `find-file-noselect' and make it kill
5066 the buffer only if it wasn't already displayed somewhere.
5067 (lm-summary, lm-authors, lm-maintainer, lm-creation-date)
5068 (lm-last-modified-date, lm-version, lm-keywords, lm-adapted-by)
5069 (lm-commentary, lm-verify, lm-synopsis): Use lm-with-file.
5070 (lm-commentary): Fix to handle the case when the change log is
5071 at the end of the file.
5073 1999-12-02 Kenichi Handa <handa@etl.go.jp>
5075 * international/mule.el (charsetp): Fix typo in docstring.
5077 * international/mule-diag.el (list-coding-categories): Fix typo;
5078 automatic -> autoload.
5080 1999-12-02 Gerd Moellmann <gerd@gnu.org>
5082 * vc.el (vc-update-change-log): Look for rcs2log under
5085 * emacs-lisp/lisp-mode.el (lisp-mode-variables): Change
5086 outline-regexp, add outline-level.
5087 (lisp-outline-level): New.
5089 * calendar/appt.el (appt-convert-time): Handle "12:MMam",
5090 remove extraneous string-match.
5092 * finder.el (finder-commentary): Activate Finder mode.
5094 1999-12-01 Anders Lindgren <andersl@andersl.com>
5096 * autorevert.el (auto-revert-buffers): Auto-revert mode was turned
5097 off when reverting buffers that contained mode specifiers.
5098 `revert-buffer' is now called with non-nil PRESERVE-MODES
5101 1999-12-01 Dave Love <fx@gnu.org>
5103 * delsel.el: Grok skeleton-pair-insert-maybe.
5105 1999-11-30 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5107 * progmodes/cperl-mode.el (cperl-under-as-char):
5110 1999-11-30 Gerd Moellmann <gerd@gnu.org>
5112 * speedbar.el (toplevel): Remove compatibility code for Emacs
5113 versions without custom.el.
5115 1999-11-30 Dave Love <fx@gnu.org>
5117 * progmodes/fortran.el (fortran-strip-sequence-nos): New command.
5119 * autoinsert.el: Minor doc fixes.
5120 (auto-insert): Return nil.
5122 * faces.el (set-face-documentation): Purecopy STRING.
5124 1999-11-29 Dave Love <fx@gnu.org>
5126 * derived.el: Doc fixes, remove old backquote syntax.
5128 * cus-edit.el (custom-save-variables, custom-save-faces): Write a
5129 comment warning about editing.
5131 * help.el (help-mode-hook): Define.
5133 1999-11-29 Gerd Moellmann <gerd@gnu.org>
5135 * emacs-lisp/edebug.el (edebug-make-enter-wrapper): Correct
5136 invalid translation of old-style backquote syntax to new syntax.
5138 1999-11-28 Eli Zaretskii <eliz@is.elta.co.il>
5140 * Makefile (DONTCOMPILE): Add term/internal.el.
5142 1999-11-26 Dave Love <fx@gnu.org>
5144 * comint.el: Fix last change.
5146 * emacs-lisp/advice.el: Fix last change.
5148 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5150 * cus-edit.el (Custom-reset-standard): Doc fix.
5151 (custom-variable-reset-standard): Doc fix.
5152 (custom-face-reset-standard): Doc fix.
5153 (custom-face-menu): "Reset to Standard" => "Erase Customization".
5154 (custom-variable-menu): Likewise.
5155 (custom-reset-menu): Likewise.
5156 (custom-buffer-create-internal): Likewise.
5158 1999-11-26 Dave Love <fx@gnu.org>
5160 * progmodes/make-mode.el (makefile-mode-hook): Customize.
5162 * font-lock.el: Doc fixes.
5164 * menu-bar.el (menu-bar-mode): Customize.
5166 * cus-start.el: Add use-dialog-box.
5168 * add-log.el (change-log-mode-hook): Customize.
5169 (add-log-current-defun): Use
5170 fortran-{beginning,end}-of-subprogram.
5172 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5174 * emacs-lisp/advice.el: Many doc fixes.
5176 * comint.el (comint-preoutput-filter-functions): Doc fix.
5178 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5180 * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
5181 Improve messages for capitalization of arg names,
5182 for flag variables, for t and nil, for imperatives.
5183 Call them imperatives rather than infinitives sans "to".
5184 (checkdoc-common-verbs-wrong-voice): Add "moves".
5185 (checkdoc-message-text-engine): Improve messages for y-or-n-p.
5187 * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
5188 Don't convert comments from 3-semicolon to 2-semicolon.
5189 That is a matter of style.
5190 (checkdoc-triple-semi-comment-check-flag): Variable deleted.
5191 (checkdoc-comments): Don't bind that variable.
5193 1999-11-26 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5195 * files.el (write-file-hooks): Doc fix.
5197 1999-11-26 Gerd Moellmann <gerd@gnu.org>
5199 * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='.
5201 1999-11-25 Dave Love <fx@gnu.org>
5203 * hippie-exp.el: Require comint when compiling.
5204 (hippie-expand): Add :links.
5205 (hippie-expand-try-functions-list): Customize.
5207 1999-11-24 Michael Kifer <kifer@cs.sunysb.edu>
5209 * viper*el: Replaced old-style backquotes.
5211 * ediff*el: Replaced old-style backquotes.
5214 (ediff-looks-like-combined-merge,ediff-get-combined-region):
5215 Changed to support the new format for ediff-combination-pattern.
5217 * ediff-diff (ediff-set-fine-overlays-in-one-buffer):
5218 Changed to support the new format for ediff-combination-pattern.
5220 1999-11-24 Dave Love <fx@gnu.org>
5222 * custom.el (custom-declare-group): Purecopy DOC.
5223 (custom-handle-keyword): Purecopy VALUE.
5224 (custom-add-link): Purecopy WIDGET.
5225 (custom-add-version): Purecopy VERSION.
5226 (custom-add-load): Purecopy LOAD.
5228 * cus-face.el (custom-declare-face): Purecopy DOC.
5231 (Info-build-node-completions, Info-search, Info-follow-reference)
5232 (Info-complete-menu-item, Info-menu, Info-index, Info-get-token)
5233 (Info-find-emacs-command-nodes): Avoid properties on matched text
5234 which may appear in minibuffer.
5236 1999-11-24 Gerd Moellmann <gerd@gnu.org>
5238 * locate.el (locate-with-filter): Doc fix.
5240 1999-11-24 Alex Schroeder <alex@gnu.org>
5242 * sql.el (sql-find-sqli-buffer): New function.
5243 (sql-set-sqli-buffer-generally): New function.
5244 (sql-set-sqli-buffer): Better checking of new-buffer.
5245 (sql-copy-column): Add comma after INTO clause, too.
5247 1999-11-24 Alex Schroeder <alex@gnu.org>
5249 * sql.el (sql-imenu-generic-expression): New, used to set
5250 imenu-generic-expression.
5252 * sql.el (sql-mode): Use ?_ and ?. instead of 95 and 46 when
5253 setting font-lock-defaults' SYNTAX-ALIST. Set
5254 imenu-generic-expression, imenu-case-fold-search, and
5257 * sql.el (sql-interactive-mode): Use ?_ and ?. instead of 95
5258 and 46 when setting font-lock-defaults' SYNTAX-ALIST.
5260 1999-11-23 Andrew Innes <andrewi@gnu.org>
5262 * w32-win.el (w32-drag-n-drop): Load files in current window, if
5263 drop coords aren't over a specific window.
5265 1999-11-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5267 * ps-print.el: Define mule funs without checking if mule package is
5269 (ps-print-version): New version number (5.0.1).
5270 (ps-header-dirpart): Now uses abbreviate-file-name.
5272 1999-11-23 Dave Love <fx@gnu.org>
5274 * progmodes/fortran.el (fortran-comment-line-start): Renamed from
5276 (fortran-comment-line-start-skip): Renamed from
5277 comment-line-start-skip.
5278 (fortran-mode-map): Use renamed functions. Add manual and custom
5280 (fortran-mode-hook): Customize.
5281 (fortran-comment-indent-function): Renamed from
5282 fortran-comment-hook.
5283 (delete-horizontal-regexp): Function deleted.
5284 (fortran-electric-line-number): Simplified.
5285 (fortran-beginning-of-subprogram): Renamed from
5286 beginning-of-fortran-subprogram.
5287 (fortran-end-of-subprogram): Renamed from
5288 end-of-fortran-subprogram.
5289 (fortran-mark-subprogram): Renamed from mark-fortran-subprogram.
5290 (fortran-previous-statement, fortran-next-statement): Simplified.
5291 (fortran-blink-match): New function.
5292 (fortran-blink-matching-if, fortran-blink-matching-do): Use it.
5293 (fortran-indent-to-column): Don't use delete-horizontal-regexp.
5294 (fortran-find-comment-start-skip, fortran-is-in-string-p): Use
5296 (fortran-fill): No longer interactive. Simplified.
5297 (fortran-break-line): Simplified.
5298 (fortran-analyze-file-format): Use char-after, not looking-at.
5300 * emacs-lisp/find-func.el (find-function-regexp): Use
5301 `define-minor-mode' after easy-menu change.
5303 1999-11-23 Gerd Moellmann <gerd@gnu.org>
5305 * comint.el: Add redirection.from active comint buffers into
5306 another buffer. Written by Peter Breton.
5308 1999-11-23 Stefan Monnier <monnier@cs.yale.edu>
5310 * emacs-lisp/autoload.el (make-autoload): Recognize the new
5311 `define-minor-mode'.
5312 (define-minor-mode): Specify `doc-string-elt'.
5314 * emacs-lisp/easy-mmode.el: Changed maintainer.
5315 (easy-mmode-define-toggle): New BODY arg; Never append `-mode';
5316 Use defcustom for the hooks; Improve the auto-generated docstrings.
5317 (easy-mmode-define-minor-mode): Renamed `define-minor-mode'.
5318 (define-minor-mode): Add BODY arg; Only declare the keymap if
5319 provided; Improve the auto-generated docstrings.
5321 1999-11-22 Gerd Moellmann <gerd@gnu.org>
5323 * textmodes/text-mode.el (text-mode): Construct paragraph-start so
5324 that the leading `^' is at the start. This is necessary because
5325 paragraphs.el tries to remove anchors, but can find them only if
5326 they are the first character.
5328 * progmodes/antlr-mode.el: New file.
5330 * calendar/calendar.el: Fix autoload for
5331 calendar-absolute-from-astro. Add autoload for
5332 calendar-print-astro-day-number.
5334 1999-11-21 Anders Lindgren <andersl@andersl.com>
5336 * follow.el: Use modern backquote syntax. Minor comment update.
5338 1999-11-21 Gerd Moellmann <gerd@gnu.org>
5340 * simple.el (with-syntax-table): Don't switch buffers.
5342 * emacs-lisp/edebug.el, emacs-lisp/cust-print.el,
5343 progmodes/hideif.el: Use new backquote syntax.
5345 1999-11-21 Ken Manheimer <klm@python.org>
5347 * icomplete.el (icomplete-completions): Use an explicit variable
5348 `icomplete-prospects-length', obviating the need to use an
5349 apparently faulty throw/catch arrangement.
5351 1999-11-21 Eli Zaretskii <eliz@is.elta.co.il>
5353 * term/internal.el (IT-display-table-setup): Don't overstep
5356 1999-11-20 Kenichi Handa <handa@mule.m17n.org>
5358 * ps-mule.el (ps-mule-font-info-database-bdf): Default BDF font
5359 for the charset chinese-sisheng is 7bit encoding, not 8bit.
5361 1999-11-19 Stefan Monnier <monnier@cs.yale.edu>
5363 * scroll-bar.el (scroll-bar-toolkit-scroll): Add handling of the
5364 `ratio' event for Xaw and Xaw3d(without arrows) scrollbars.
5366 * files.el (auto-mode-alist): Add patterns for diff-mode.
5368 * complete.el (PC-do-complete-and-exit): Use minibuffer-prompt-end
5369 to detect an empty prompt.
5371 1999-11-18 Dave Love <fx@gnu.org>
5373 * simple.el (input-mode-8-bit): Fix the customization.
5375 1999-11-18 Gerd Moellmann <gerd@gnu.org>
5377 * international/iso-acc.el (iso-languages): Add more
5378 characters for Portuguese.
5380 * speedbar.el: Clean up comment at the start of the file.
5383 * progmodes/compile.el (compilation-parse-errors): Use
5384 compilation-buffer-p instead of testing major-mode.
5386 1999-11-18 Dave Pearson <davep@hagbard.demon.co.uk>
5388 * quickurl.el Added defcustom of quickurl-completion-ignore-case.
5389 (quickurl-ask): completion-ignore-case is set to the value of
5390 quickurl-completion-ignore-case for the duration of the call to
5393 1999-11-18 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5395 * mail/rmailedit.el (rmail-cease-edit): Run rmail-mode-hook.
5397 1999-11-18 Kenichi Handa <handa@etl.go.jp>
5399 * ps-vars.el: Renamed from ps-print-def.el. Provide ps-vars
5400 instead of ps-print-def.
5402 * ps-print.el: Require ps-vars instead of ps-print-def.
5404 * ps-mule.el: Require ps-vars instead of ps-print-def.
5406 1999-11-17 Gerd Moellmann <gerd@gnu.org>
5408 * simple.el (with-syntax-table): Save buffer explicitly instead of
5409 using save-excursion.
5411 1999-11-16 Gerd Moellmann <gerd@gnu.org>
5413 * mail/supercite.el: New maintainer.
5415 1999-11-16 Reto Zimmermann <reto@synopsys.com>
5417 * progmodes/vhdl-mode.el: Use new backquote syntax.
5419 1999-11-16 Gerd Moellmann <gerd@gnu.org>
5421 * simple.el (with-syntax-table): New.
5423 1999-11-15 Sam Steingold <sds@ksp.com>
5425 * dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
5427 1999-02-22 Sam Steingold <sds@goems.com>
5429 * goto-addr.el (goto-address-at-mouse,
5430 goto-address-find-address-at-point): Use compose-mail.
5431 (goto-address-mail-method): Removed variable.
5432 (goto-address-send-using-mh-e, goto-address-send-using-mhe,
5433 goto-address-send-using-mail): Removed functions.
5435 1998-11-03 Sam Steingold <sds@goems.com>
5437 * simple.el (backward-delete-char-untabify):
5438 backward-delete-char-untabify-method can be `all' now - to delete
5439 hungrily including newlines.
5441 1999-11-15 Sam Steingold <sds@ksp.com>
5443 * mail/rnews.el, mail/mh-utils.el: Use the new backquote syntax.
5445 1999-11-15 Dave Love <fx@gnu.org>
5447 * cus-edit.el (customize-face, customize-face-other-window):
5448 Require match from completing-read.
5449 (custom-buffer-done-function): Default to custom-bury-buffer, not
5452 1999-11-15 Gerd Moellmann <gerd@gnu.org>
5454 * mail/rmail.el, iswitchb.el, hippie-exp.el,
5455 progmodes/cperl-mode.el: Use new backquote syntax.
5457 1998-09-14 Michael Ernst <mernst@alum.mit.edu>
5459 * uniquify.el: Use new backquote syntax.
5461 1999-11-14 Markus Rost <rost@ias.edu>
5463 * ispell.el (ispell-dictionary-alist): Fix type by adding koi8-r
5464 as in ispell-local-dictionary-alist.
5466 1999-11-14 Alex Schroeder <alex@gnu.org>
5468 * ansi-color.el (ansi-color-apply): Updated regexps to include
5471 1999-01-14 Johan Vromans <jvromans@squirrel.nl>
5473 * forms.el (forms--make-format-elt-using-text-properties):
5474 Treat `intangible' differently.
5476 * forms.el: Use new backquote syntax.
5478 1999-11-13 Gerd Moellmann <gerd@gnu.org>
5480 * textmodes/scribe.el (scribe-mode): Doc-fix.
5482 1999-11-13 Peter Breton <pbreton@ne.mediaone.net>
5484 * net-utils.el (run-network-program, net-utils-run-program): Use
5485 the new backquote syntax.
5486 (smbclient-program, smbclient-program-options)
5487 (smbclient-prompt-regexp, smbclient-font-lock-keywords): New
5489 (smbclient, smbclient-list-shares): New functions
5491 1999-11-12 Sam Steingold <sds@ksp.com>
5493 * emulation/viper-init.el (viper-deflocalvar, viper-loop)
5494 (viper-buffer-live-p, viper-kbd-buf-alist, viper-kbd-buf-pair)
5495 (viper-kbd-buf-definition, viper-kbd-mode-alist)
5496 (viper-kbd-mode-pair, viper-kbd-mode-definition)
5497 (viper-kbd-global-pair, viper-kbd-global-definition):
5498 Use the new backquote syntax.
5500 * emulation/viper-cmd.el (viper-test-com-defun)
5501 (viper-prefix-arg-value, viper-prefix-arg-com):
5502 Use the new backquote syntax.
5504 * emacs-lisp/debug.el (debugger-env-macro):
5505 Use the new backquote syntax.
5507 * emacs-lisp/easymenu.el (easy-menu-make-symbol):
5508 Use the new backquote syntax.
5510 * calendar/calendar.el (calendar-remove-frame-by-deleting):
5512 (calendar-hide-window): Use it.
5513 (increment-calendar-month, calendar-for-loop, calendar-sum):
5514 Use the new backquote syntax.
5516 1999-11-12 Andrew Innes <andrewi@gnu.org>
5518 * select.el (x-set-selection): Call buffer-substring, not
5519 substring. Also fix docstring
5521 1999-11-12 Peter Kleiweg <kleiweg@let.rug.nl>
5523 * progmodes/ps-mode.el (ps-mode-submit-bug-report): Added list
5524 of customizable variables to bug report message. Added
5525 system-type to package name in bug report.
5527 1999-11-12 Gerd Moellmann <gerd@gnu.org>
5529 * buff-menu.el (list-buffers-noselect): Use abbreviate-file-name
5530 to display file names.
5532 1999-11-11 Gerd Moellmann <gerd@gnu.org>
5534 * mwheel.el: Fix copyright notice, don't require 'cl at run time.
5536 * isearch.el: Add lazy-highlighting feature.
5538 1999-11-10 Peter Kleiweg <kleiweg@let.rug.nl>
5540 * progmodes/ps-mode.el (ps-mode-maintainer-address): New
5542 (ps-mode-submit-bug-report): New function. Entry added to menu.
5544 1999-11-10 William M. Perry <wmperry@aventail.com>
5546 * mwheel.el: New file to support the new style wheeled mice.
5548 1999-11-10 Gerd Moellmann <gerd@gnu.org>
5550 * startup.el (initial-scratch-message): Add ";;" to the front of
5551 lines in the message.
5553 * files.el (file-local-copy): Remove optional BUFFER argument
5554 because that's not used by anything.
5556 * mail/mh-comp.el (mh-smail-batch): If TO is nil, use "" as
5559 1999-11-08 Markus Rost <rost@ias.edu>
5561 * wid-edit.el (widget-button-click): Wrap with save-excursion
5562 to restore track-mouse in the correct buffer.
5564 1999-11-08 Gerd Moellmann <gerd@gnu.org>
5566 * mail/mh-e.el: Changed maintainer to billcurtis@hotmail.com.
5568 1999-11-08 Peter Kleiweg <kleiweg@let.rug.nl>
5570 * progmodes/ps-mode.el (ps-mode-print-function): Changed default
5571 lpr-command to "lp" for some system-types. (copied from lpr.el
5572 Emacs version 20.2.1).
5574 1999-11-04 Markus Rost <rost@ias.edu>
5576 * simple.el (comment-region): Strip off white space at end of
5579 1999-11-04 Gerd Moellmann <gerd@gnu.org>
5581 * faces.el (secondary-selection): Fix wrong color name.
5583 1999-11-04 John Tobey <jtobey@epsilondev.com>
5585 * gud.el (gud-perldb-massage-args): Handle the case "perl -e 0",
5586 the default when invoking perldb in a non-Perl buffer, and other
5587 cases involving -e or --.
5589 1999-11-04 Gerd Moellmann <gerd@gnu.org>
5591 * simple.el (previous-matching-history-element)
5592 (next-history-element): Use delete-field instead of erase-field.
5594 * isearch.el (isearch-ring-advance-edit, isearch-complete-edit):
5595 Use delete-field instead of erase-field.
5597 * faces.el (secondary-selection): Change background to yellow.
5599 * complete.el (PC-do-completion): Use minibuffer-prompt-end to
5600 find the start of the text. Use field-string to read the user
5603 1999-11-03 Gerd Moellmann <gerd@gnu.org>
5605 * faces.el (make-face-bold, make-face-unbold, make-face-italic)
5606 (make-face-unitalic, make-face-bold-italic): Add NOERROR argument
5607 for compatibility with old face implementation.
5609 * isearch.el (isearch-complete-edit, isearch-ring-advance-edit):
5610 Use erase-field instead of erase-buffer.
5612 * frame.el (blink-cursor-mode, blink-cursor-end): Use
5613 internal-show-cursor with new interface.
5614 (blink-cursor-timer-function): New.
5615 (blink-cursor-start): Use blink-cursor-timer-function.
5617 1999-11-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
5619 * calendar.el (redraw-calendar): Move to nearest date before
5622 * diary-lib.el (simple-diary-display): Reset modeline even if
5623 there are no diary entries since the diary buffer may be displayed.
5625 1999-11-03 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5627 * emacs-lisp/debug.el (debug): If noninteractive, display the
5628 backtrace using `message', then exit Emacs.
5629 (debugger-batch-max-lines): New variable.
5630 (debugger-setup-buffer): New subroutine, broken out of `debug'.
5631 Change the messages put at the start, to say that the debugger
5634 1999-11-02 Sam Steingold <sds@ksp.com>
5636 * progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
5638 1999-11-01 John Tobey <jtobey@epsilondev.com>
5640 * gud.el: (gud-perldb-massage-args): Massage correctly in the
5641 presence of perl switches other than "-e".
5643 1999-11-01 Markus Rost <rost@ias.edu>
5645 * dired-x.el (dired-smart-shell-command): Use
5646 shell-command-history as in shell-command.
5648 1999-11-01 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5650 * userlock.el (ask-user-about-lock): Doc fix.
5652 * frame.el: Doc fixes.
5654 1999-11-01 Gerd Moellmann <gerd@gnu.org>
5656 * frame.el (blink-cursor-mode): Call internal-show-cursor instead
5658 (blink-cursor-start, blink-cursor-end): Ditto.
5660 * textmodes/tex-mode.el (tex-default-mode): Changed to latex-mode.
5662 1999-11-01 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5664 * window.el (walk-windows): If ALL-FRAMES is a frame,
5665 start on that frame. Use save-selected-window.
5667 1999-11-01 Gerd Moellmann <gerd@gnu.org>
5669 * simple.el (end-of-buffer): Use window-end to find the window end
5670 instead of vertical-motion because this handles variable-height
5673 1999-11-01 Michael Kifer <kifer@cs.sunysb.edu>
5675 * ediff.el: Version change.
5677 * ediff-util.el (ediff-cleanup-mess): Fixed the case of dead windows.
5678 make sure you are in a good frame before deleting other
5680 (ediff-file-checked-in-p): Don't consider CVS
5682 (ediff-make-temp-file,ediff-make-empty-tmp-file): Make sure you
5683 are writing to a newly created empty file.
5685 * ediff-mult.el (ediff-show-session-group-hook): New default.
5687 * ediff-vers.el (ediff-pcl-cvs-view-revision):
5688 First cd to the file directory. reportedly works
5689 better with remote files.
5691 * ediff-vers.el (ediff-pcl-cvs-internal, ediff-pcl-cvs-merge-internal):
5692 Use file-name-nondirectory when passing files to CVS.
5694 * ediff-diff.el (ediff-cmp-options): New variable.
5695 (ediff-same-file-contents): Use ediff-cmp-options.
5697 * ediff-ptch.el (ediff-prompt-for-patch-buffer,
5698 ediff-get-patch-buffer): Use current buffer if it appears to be a
5701 * viper-keym.el: Fixed calls to viper-ex, change key C-c g to C-c
5704 * viper-util.el (viper-nontrivial-find-file-function): Deleted.
5705 (viper-glob-unix-files, viper-glob-mswindows-files): New functions.
5706 (viper-save-cursor-color,viper-restore-cursor-color):
5707 Improved cursor color handling.
5708 (viper-get-saved-cursor-color-in-replace-mode,
5709 viper-get-saved-cursor-color-in-insert-mode): New functions for
5710 better cursor color handling.
5712 * viper-ex.el (ex-read,ex-edit):
5713 Fixes for correct interpretation of #,%.
5714 (viper-ex): Now works correctly when called from other functions.
5715 (viper-glob-function): New variable.
5716 (viper-ex): Save excursion before doing :global.
5718 * viper-mous.el (viper-counting-clicks-p): Bug fixes.
5720 * viper-cmd.el (viper-post-command-sentinel,
5721 viper-insert-state-post-command-sentinel,
5722 viper-insert-state-pre-command-sentinel): Takes better care of
5725 * viper.el: Version change.
5727 1999-10-31 Rajesh Vaidheeswarran <rv@dsmit.com>
5729 * whitespace.el (whitespace-update-modeline): Bugfix to ensure
5730 that the modeline display was updated *only* when
5731 `whitespace-display-in-modeline' was set, not otherwise.
5733 1999-10-30 Gerd Moellmann <gerd@gnu.org>
5735 * textmodes/sgml-mode.el (sgml-char-names): Change "half" to
5738 * emacs-lisp/advice.el (ad-activate-on): Make it an alias for
5741 1999-10-30 Rajesh Vaidheeswarran <rv@dsmit.com>
5743 * whitespace.el: Test for existence of `defcustom' and `defgroup'
5744 using fboundp instead of assuming that these are not present in
5745 particular flavors of emacs.
5746 (whitespace-version): Update to 2.8
5747 (whitespace-display-in-modeline): Add custom variable to control
5748 displaying the whitespace errors on the modeline based on
5749 suggestion from <klaus.berndl@sdm.de>
5750 (whitespace-buffer): Now returns `t' if unclean and `nil' if
5751 clean, to enable using as a hook function, as suggested by Puneet
5752 Goel <puneet@computer.org>
5753 (whitespace-buffer): Fix a subtle bug that cleaned up only if
5754 quiet was not set, even with whitespace-auto-cleanup set.
5755 (whitespace-mode-line): Now uses less modeline real estate and
5756 shows whitespaces as W:<x>!<y> where <x> is any type of whitespace
5757 which is present in the file, and <y> is any type of whitespace
5758 whose check has been suppressed by setting
5759 `whitespace-check-<whitespace-type>' to nil.
5760 (whitespace-unchecked-whitespaces): New function to return the
5761 list of whitespaces for whom checks have been suppressed.
5762 (whitespace-display-unchecked-whitespaces): Renamed to
5763 `whitespace-update-modeline' to reflect its functionality.
5765 1999-10-30 Gerd Moellmann <gerd@gnu.org>
5767 * progmodes/compile.el (compilation-error-regexp-alist):
5768 Undo previous change.
5770 1999-10-28 Dave Love <fx@gnu.org>
5772 * help.el (help-follow): Make arg optional again and really
5775 1999-10-28 Gerd Moellmann <gerd@gnu.org>
5777 * paths.el (rmail-file-name): Make it an option.
5779 * progmodes/ada-mode.el, progmodes/ada-prj.el,
5780 progmodes/ada-stmt.el, progmodes/ada-xref.el: Doc-string and
5783 * progmodes/compile.el (compilation-error-regexp-alist): Recognize
5784 MIPS Pro 7.3 compiler error message syntax.
5786 1999-10-27 Dave Love <fx@gnu.org>
5788 * progmodes/compile.el: Checkdoc-inspired fixes.
5790 1999-10-27 Gerd Moellmann <gerd@gnu.org>
5792 * lpr.el (print-buffer): Doc-string fix.
5794 1999-10-27 Dave Love <fx@gnu.org>
5796 * emacs-lisp/advice.el: Doc fixes.
5797 (ad-lemacs-p): Removed.
5798 (advice): Add :link to defgroup.
5800 1999-10-27 Kenichi Handa <handa@etl.go.jp>
5802 * ange-ftp.el (ange-ftp-insert-file-contents): Don't change
5803 last-coding-system-used by the call of ange-ftp-set-ascii-mode.
5805 1999-10-24 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5807 * window.el (walk-windows): If ALL-FRAMES is a frame,
5808 start on that frame. Use save-selected-window.
5810 1999-10-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5812 * emacs-lisp/advice.el (ad-activate-internal): Renamed from
5813 ad-activate. All callers changed, including those in data.c.
5814 (ad-activate-internal-off): Renamed from ad-activate-off.
5816 (ad-activate): Renamed from ad-activate-on. All uses changed.
5817 (ad-start-advice, ad-stop-advice, ad-recover-normality):
5818 Alter the definition of ad-activate-internal, not ad-activate.
5820 1999-10-26 Gerd Moellmann <gerd@gnu.org>
5822 * startup.el (command-line-1): Add support for command line
5823 arguments `file' and `execute'. Fix handling of `visit'.
5825 1999-10-26 Kenichi Handa <handa@etl.go.jp>
5827 * international/mule-cmds.el (read-input-method-name): Handle the
5828 case that the arg DEFAULT is symbol.
5830 * international/mule-diag.el (mule-diag): Handle the case that
5831 default-input-method is symbol.
5833 1999-10-26 Gerd Moellmann <gerd@gnu.org>
5835 * textmodes/tildify.el: New file.
5837 1999-10-25 Sam Steingold <sds@ksp.com>
5839 * Makefile (compile-files): Fixed the "tr" strings.
5840 (EMACS): Set to ../src/emacs.
5842 1999-10-25 Gerd Moellmann <gerd@gnu.org>
5844 * info.el (Info-build-node-completions): Add '("*") to the
5847 1999-10-25 Richard M. Stallman <rms@caffeine.ai.mit.edu>
5849 * frame.el (auto-raise-mode): When enabling the mode,
5850 immediately raise the selected frame.
5852 * indent.el (indent-region): Doc fix.
5854 * comint.el (comint-output-filter): Make the Comint buffer current
5855 for the comint-preoutput-filter-functions.
5857 * mail/reporter.el: Doc fix.
5859 1999-10-24 Stephen Eglen <stephen@gnu.org>
5861 * progmodes/octave-mod.el (octave-auto-indent): Remove :version so
5862 that Octave lisp files can also run under XEmacs 20.
5863 (require 'custom) added so that files can run under Emacs 19.34.
5865 * iswitchb.el (iswitchb-default-keybindings): No need to use
5866 read-kbd-macro in keybindings.
5868 1999-10-23 Dave Love <fx@gnu.org>
5870 * elide-head.el: New file.
5872 1999-10-23 Gerd Moellmann <gerd@gnu.org>
5874 * Makefile (compile-files, backup-compiled-files): New targets.
5875 (bootstrap, bootstrap-clean): Ditto.
5877 1999-10-22 Paul Eggert <eggert@twinsun.com>
5879 * international/mule-cmds.c (locale-language-names):
5880 Use Latin-1 (not Latin-3) for Afrikaans, Galician.
5881 Use Latin-5 (not Cyrillic-ISO) for Byelorussian, Bulgarian,
5882 Macedonian, Russian, Ukrainian, Serbian (Cyrillic alphabet).
5883 Use Latin-8 for Welsh.
5884 Use Latin-1 for English if "en" is explicitly specified.
5885 Use Latin-1 for Scots Gaelic, Tagalog.
5886 Use Latin-1 (not Latin-4) for Greenlandic.
5887 Use Latin-1 (not Latin-2) for Albanian.
5888 (locale-preferred-coding-systems, locale-language-names):
5889 Remove generic ISO 8859 locales; locale-charset-language-names now
5891 (locale-charset-language-names): New variable.
5892 (set-locale-environment): Use language name specified by
5893 locale-charset-language-names if its charsets disagree with the
5894 language name specified by locale-language-names.
5896 1999-10-22 Dave Love <fx@gnu.org>
5898 * make-mode.el: Minor doc fixes.
5900 * latin-9.el: Avoid non-ASCII characters to prevent loadup failure.
5902 1999-10-21 Dave Love <fx@gnu.org>
5904 * loadup.el: Add latin-8, latin-9.
5906 1999-10-20 Paul Eggert <eggert@twinsun.com>
5908 * disp-table.el (standard-display-european): Remove undocumented
5909 arg AUTO; no longer used by startup.el. Do not attempt to treat
5910 all non-English language environments as coding system names.
5911 Instead, use the downcased language environment name as a coding
5912 system name if it is one; otherwise, use latin-1.
5914 1999-10-20 Gerd Moellmann <gerd@gnu.org>
5916 * dired.el (dired-move-to-filename-regexp): Fix long comment lines
5917 that were split so that part of the comment appeared as Lisp code.
5919 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5921 * ps-bdf.el: Doc fix.
5923 * ps-print-def.el: New file: common definitions for all parts of
5925 (ps-multibyte-buffer): Moved from ps-mule.
5927 * ps-mule.el: File dependence fix.
5928 (ps-multibyte-buffer): Moved to ps-print-def.
5930 * ps-print.el: Doc fix, better customization.
5931 (ps-print-region-function, ps-number-of-columns, ps-spool-tumble)
5932 (ps-print-color-p, ps-printing-region-p, ps-n-up-database)
5933 (ps-end-file): Doc fix.
5934 (ps-setup, ps-begin-file): Fun fix.
5935 (postscript): New group.
5936 (ps-zebra-gray, ps-banner-page-when-duplexing): New vars.
5937 (ps-print-prologue-1): Adjust PostScript programming.
5938 (ps-print): Adjust group hierarchy.
5939 (ps-print-n-up, ps-print-zebra, ps-print-background,
5941 (ps-print-page): New subgroups.
5942 (ps-print-prologue-header, ps-printer-name, ps-lpr-command)
5943 (ps-lpr-switches, ps-page-dimensions-database, ps-paper-type)
5944 (ps-landscape-mode, ps-print-control-characters, ps-n-up-printing)
5945 (ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling, ps-zebra-stripes)
5946 (ps-zebra-stripe-height, ps-print-background-image)
5947 (ps-print-background-text, ps-spool-config): Adjust customization.
5948 (dos-ps-printer): Definition eliminated.
5950 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5952 * ps-mule.el: Doc fix, define functions properly if mule package is
5954 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Define properly if
5955 mule package is loaded or not.
5957 * ps-print.el: Doc fix, n-up printing.
5958 (ps-print-version): New version number (5.0).
5959 (ps-page-dimensions-database): Added document media.
5960 (ps-n-up-printing, ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling)
5961 (ps-page-order, ps-printing-region-p): New vars.
5962 (ps-n-up-printing, ps-n-up-filling, ps-header-sheet, ps-end-job): New
5964 (ps-page-dimensions-get-media, ps-n-up-landscape, ps-n-up-lines)
5965 (ps-n-up-columns, ps-n-up-missing, ps-n-up-xcolumn, ps-n-up-ycolumn)
5966 (ps-n-up-xline, ps-n-up-yline, ps-n-up-repeat, ps-n-up-end)
5967 (ps-n-up-xstart, ps-n-up-ystart): New macros.
5968 (ps-print-begin-sheet-hook): New hook.
5969 (ps-boundingbox-re, ps-n-up-database, ps-n-up-filling-database): New
5971 (ps-setup, ps-begin-file, ps-get-buffer-name, ps-begin-job)
5972 (ps-end-file, ps-dummy-page, ps-generate): Fix funs.
5973 (ps-print-prologue-1): Adjust PostScript programming for n-up printing.
5974 (ps-count-lines): Changed to defun.
5975 (ps-header-page): Changed to defsubst, fix fun.
5976 (ps-printing-region): Doc fix, adjust programming code.
5977 (ps-output-boolean, ps-background-pages, ps-background-text)
5978 (ps-background-image, ps-background, ps-get-boundingbox): Adjust
5981 1999-10-20 Vinicius Jose Latorre <vinicius@cpqd.com.br>
5983 * ps-print.el: Doc fix, duplex and setpagedevice configuration.
5984 (ps-print-version): New version number (4.2).
5985 (ps-spool-config, ps-spool-tumble): New vars.
5986 (ps-print-prologue-1): Changed to defconst, adjust PostScript
5987 programming, new PostScript procedure to handle errors.
5988 (ps-print-prologue-2): Changed to defconst.
5989 (ps-print-duplex-feature): New const: duplex and tumble setting.
5990 (ps-setup, ps-begin-file): Fix funs.
5991 (ps-boolean-capitalized): New fun.
5993 1999-10-19 Stefan Monnier <monnier@cs.yale.edu>
5995 * Makefile (dontcompilefiles): Obsoleted.
5996 (DONTCOMPILE): Added emacs-lisp/cl-specs.el.
5998 (temacs): Removed (unused).
5999 (cus-load.el, finder-inf.el, loaddefs.el): New targets to build a dummy
6000 version of the file (necessary for the update to work properly).
6001 (autoloads): Force the use of `pwd`/loaddefs.el.
6002 (updates); Redefined in terms of other targets to reduce redundancy.
6003 (.el.elc): New default rule, just in case you want it.
6004 (compile): Use a single invocation of Emacs.
6005 (bootstrap-compile); Unneeded.
6006 (autoloads-with-other-emacs): Unneeded now that autoloads is fixed.
6008 1999-10-19 Dave Love <fx@gnu.org>
6010 * emacs-lisp/eval-reg.el: Removed -- not now needed by edebug.
6012 1999-10-19 Sam Steingold <sds@ksp.com>
6014 * map-ynp.el (map-y-or-n-p): Remove extraneous `not' to
6015 comply with the comment.
6017 1999-10-19 Gerd Moellmann <gerd@gnu.org>
6019 * autorevert.el (auto-revert-mode): Make auto-revert-mode
6022 1999-10-19 Peter Kleiweg <kleiweg@let.rug.nl>
6024 * progmodes/ps-mode.el (ps-mode-print-function): Fix default
6025 value: \"lpr\" changed to "lpr"
6026 (ps-mode-version): New constant
6027 (ps-mode-show-version): New function, added key in ps-mode-map
6028 (ps-run-messages): Removed
6029 (ps-run-font-lock-keywords-2): New defcustom variable replacing
6030 ps-run-messages. These keywords now include the value of
6031 ps-run-prompt, making its fontification customizable.
6032 (ps-run-init): Removed \\n from docstring, it is now added when
6034 (ps-run-font-lock-keywords-1): Added checking for initial ^ in
6036 (ps-mode): Added ps-run-font-lock-keywords-2 to list of
6037 customizable variables in doc-string (its equivalent
6038 ps-run-messages was missing in previous version of the doc-string)
6039 (ps-run-mode): Simplified assignment to font-lock-defaults, using
6042 1999-10-19 Alex Schroeder <alex@gnu.org>
6044 * ansi-color.el: Complete rewrite.
6046 1999-10-19 Paul Eggert <eggert@twinsun.com>
6048 Fix bootstrapping problems.
6049 Use the system locale to specify Emacs locale defaults.
6051 * international/mule-cmds.el (global-map):
6052 Do not use backquote, because that makes a bootstrapping
6053 problem if you need to recompile all Lisp files using interpreted code.
6054 * international/mule.el (charset-id, charset-bytes,
6055 charset-dimension, charset-chars, charset-width,
6056 charset-direction, charset-iso-final-char,
6057 charset-iso-graphic-plane, charset-reverse-charset,
6058 charset-short-name, charset-long-name, charset-description,
6059 charset-plist): Likewise.
6060 * subr.el (save-match-data): Likewise.
6062 * international/mule-cmds.el
6063 (set-display-table-and-terminal-coding-system): New function,
6064 containing code migrated out of set-language-environment.
6065 (set-language-environment, set-locale-environment): Use it.
6066 (locale-translation-file-name): Moved here from startup.el.
6067 (locale-language-names, locale-preferred-coding-systems):
6069 (locale-name-match, set-locale-environment): New functions.
6071 * language/japan-util.el (setup-japanese-environment-internal):
6072 Prefer japanese-iso-8bit if the system-type is usg-unix-v.
6074 * startup.el (iso-8859-n-locale-regexp): Remove.
6075 (locale-translation-file-name): Move to mule-cmds.el.
6076 (command-line): Move locale-stuff into set-locale-environment.
6078 1999-10-18 Dave Love <fx@gnu.org>
6080 * abbrev.el (add-abbrev, inverse-add-abbrev)
6081 (expand-region-abbrevs): Remove properties from buffer text.
6083 1999-10-17 Gerd Moellmann <gerd@gnu.org>
6085 * iswitchb.el (iswitchb-exhibit): Extract user-input only
6086 from the mini-buffer, without the prompt.
6088 * simple.el (minibuffer-prompt-end): Return the position
6089 after the prompt, not the position of that last character
6092 1999-10-17 Miles Bader <miles@gnu.org>
6094 * simple.el: Doc fixes.
6096 1999-10-17 Miles Bader <miles@gnu.org>
6098 * simple.el (previous-matching-history-element, next-history-element):
6099 Change to work correctly even if the point is in the prompt.
6100 (choose-completion-string): Likewise.
6101 (minibuffer-prompt-width): New function (compatibility with old subr).
6103 * textmodes/paragraphs.el (forward-sentence, forward-paragraph):
6104 When constraining the final position to the current field,
6105 don't use the ONLY-IN-LINE mode of constrain-to-field.
6107 1999-10-17 Miles Bader <miles@gnu.org>
6109 * simple.el (line-move): Supply new ESCAPE-FROM-EDGE argument to
6111 * textmodes/paragraphs.el (forward-sentence): Likewise.
6113 1999-10-17 Miles Bader <miles@gnu.org>
6115 * simple.el (line-move): Use constrain-to-field to avoid
6116 moving into a prompt.
6117 (previous-complete-history-element): Clarify doc string.
6118 (next-complete-history-element): Likewise.
6119 Use field-beginning instead of point-min.
6120 (next-matching-history-element): Use field-beginning and
6121 erase-field instead of point-min and erase-buffer.
6122 * textmodes/paragraphs.el
6123 (forward-paragraph, forward-sentence): Likewise.
6124 (backward-kill-paragraph, backward-kill-sentence): Remove code to
6125 constrain the kill to an field, as the movement commands now
6128 1999-10-17 Miles Bader <miles@gnu.org>
6130 * simple.el (previous-matching-history-element): Get the
6131 minibuffer input with field-string instead of buffer-string.
6132 (choose-completion-string): Likewise.
6133 (next-history-element): Likewise.
6134 Erase the minibuffer input with erase-field, not erase-buffer.
6135 Use field-beginning to find the beginning of the input.
6136 * textmodes/paragraphs.el (backward-kill-sentence):
6137 Remove minibuffer-prompt hack.
6138 Constrain to any input field.
6140 1999-10-17 Sam Steingold <sds@ksp.com>
6142 * bindings.el (completion-ignored-extensions): Added ".sparcf"
6143 for CMUCL on sparc and ".ufsl" for LispWorks.
6144 (bound-and-true-p): Bugfix: free variable `v'.
6146 1999-10-16 Dave Love <d.love@dl.ac.uk>
6148 * emacs-lisp/edebug.el (edebug-install-read-eval-functions)
6149 (edebug-uninstall-read-eval-functions): Use load-read-function,
6150 avoiding elisp-eval.
6152 1999-10-16 Sam Steingold <sds@ksp.com>
6154 * emacs-lisp/cl-indent.el (common-lisp-indent-function): Use `eq'
6157 1999-10-14 Stefan Monnier <monnier@cs.yale.edu>
6159 * ange-ftp.el (ange-ftp-make-tmp-name, ange-ftp-del-tmp-name):
6160 * browse-url.el (browse-url-of-buffer, browse-url-delete-temp-file),
6161 (browse-url-temp-file-list, browse-url-delete-temp-file-list):
6162 * ediff-util.el (ediff-make-temp-file):
6163 * ediff-vers.el (ediff-pcl-cvs-view-revision):
6164 * emerge.el (emerge-make-temp-file):
6165 * jka-compr.el (jka-compr-make-temp-name, jka-compr-delete-temp-file):
6166 * vc.el (vc-update-change-log):
6167 * mail/mailpost.el (post-mail-send-it):
6168 * mail/metamail.el (metamail-region):
6169 * progmodes/cmacexp.el (c-macro-expansion):
6170 * textmodes/makeinfo.el (makeinfo-region): Use make-temp-file.
6172 1999-10-15 Gerd Moellmann <gerd@gnu.org>
6174 * smtpmail.el (smtpmail-via-smtp): Add support for
6175 automatically appending a domain to RCPT TO: addresses.
6177 1999-10-14 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6179 * dired.el (dired-insert-directory): Insert the amount of
6180 free space after the total size.
6181 (dired-free-space-program, dired-free-space-args): New variables.
6183 1999-10-14 Karl Heuer <kwzh@gnu.org>
6185 * mail/rmail.el (rmail-pop-password-error): Add new pattern.
6187 1999-10-14 Dave Love <fx@gnu.org>
6189 * international/characters.el:
6190 * international/fontset.el:
6191 * international/mule-conf.el: Add latin-iso8859-1[45].
6193 * language/european.el: Add Latin-8, Latin-9. Modify some doc
6196 * startup.el (iso-8859-n-locale-regexp): Modify for Latin-[89].
6197 (command-line): Detect Latin-[89] locales.
6199 1999-10-13 Stefan Monnier <monnier@cs.yale.edu>
6201 * international/mule-cmds.el (select-safe-coding-system)
6202 (leim-list-header): Avoid the use of strings that start with backslash
6203 newline since lread.c:read1 has a hack to turn those strings into
6204 integer 0 during the loadup.el process.
6206 * diff-mode.el (diff-find-file-name): Use `Index:' preferentially.
6208 1999-10-13 Dave Love <fx@gnu.org>
6210 * image.el (insert-image): Copy the image spec and add an
6211 intangible property.
6213 1999-10-13 Stefan Monnier <monnier@cs.yale.edu>
6215 * help.el (help-xref-interned): Make it also work on variable-only
6216 and function-only symbols.
6217 (help-make-xrefs): Take advantage of the new `help-xref-interned'.
6218 (help-follow): If the point under mouse is not highlighted, try
6219 `help-xref-interned' on the pointed-to symbol anyway.
6221 * info.el (Info-on-current-buffer): New entry point.
6222 (Info-find-node): Split into two for Info-on-current-buffer to
6224 (Info-current-file, Info-set-mode-line, Info-up):
6225 Info-current-file can now be t.
6226 (Info-clone-buffer-hook): Function for `clone-buffer'.
6227 (Info-goto-node, Info-menu, Info-mode-map, Info-mode):
6228 Make `clone-buffer' available in various ways to the user.
6230 1999-10-12 Stefan Monnier <monnier@cs.yale.edu>
6232 * simple.el (shell-command, shell-command-on-region): Use
6234 (clone-buffer, clone-process, clone-buffer-hook): New functions.
6236 * subr.el (with-current-buffer): Don't use backquotes to avoid
6237 bootstrapping problems.
6239 * loadup.el (load-path): Add subdirs for bootstrapping.
6240 (docstrings): Ignore errors during bootstrapping.
6241 (args): New `bootstrap' argument (for use in place of `dump').
6243 1999-10-12 Emmanuel Briot <briot@gnat.com>
6245 * ada-stmt.el: Doc-string fixes.
6247 1999-10-12 Gerd Moellmann <gerd@gnu.org>
6249 * recentf.el: New file.
6251 * ps-mode.el: New file.
6253 * files.el (auto-mode-alist): Add ps-mode for .eps and .ps,
6256 1999-10-12 Richard Sharman <rsharman@pobox.com>
6258 * sh-script.el: Added support for indenting existing scripts.
6259 (sh-mode-map): Added new bindings.
6260 (sh-mode): Updated mode doc-string for new commands, added
6261 make-local-variable calls, initialize mode-specific variables.
6262 (sh-indent-line): Renamed to sh-basic-indent-line; sh-indent-line
6263 is now a different function.
6264 (sh-header-marker): Changed docstring.
6265 (sh-set-shell): Initialize mode-specific variables.
6266 (sh-case, sh-for, sh-if, sh-indexed-loop, sh-repeat, sh-select)
6267 (sh-tmp-file, sh-until, sh-until, sh-while, sh-while-getopts):
6268 Changed these define-skeleton calls to work with user-specified
6269 indentation settings.
6270 (sh-basic-indent-line, sh-blink, sh-calculate-indent)
6271 (sh-check-paren-in-case, sh-check-rule, sh-do-nothing)
6272 (sh-electric-hash, sh-electric-less, sh-electric-rparen)
6273 (sh-find-prev-matching, sh-find-prev-switch, sh-get-indent-info)
6274 (sh-get-indent-var-for-line, sh-get-kw, sh-get-word)
6275 (sh-goto-match-for-done, sh-goto-matching-case, sh-goto-matching-if)
6276 (sh-guess-basic-offset, sh-handle-after-case-label)
6277 (sh-handle-prev-case, sh-handle-prev-case-alt-end, sh-handle-prev-do)
6278 (sh-handle-prev-done, sh-handle-prev-else, sh-handle-prev-esac)
6279 (sh-handle-prev-fi, sh-handle-prev-if, sh-handle-prev-open)
6280 (sh-handle-prev-rc-case, sh-handle-prev-then, sh-handle-this-close)
6281 (sh-handle-this-do, sh-handle-this-done, sh-handle-this-else)
6282 (sh-handle-this-esac, sh-handle-this-fi, sh-handle-this-rc-case)
6283 (sh-handle-this-then, sh-help-string-for-variable)
6284 (sh-in-comment-or-string, sh-indent-line, sh-learn-buffer-indent)
6285 (sh-learn-line-indent, sh-load-style, sh-make-vars-local, sh-mark-init)
6286 (sh-mark-line, sh-mkword-regexpr, sh-mkword-regexp)
6287 (sh-must-be-shell-mode, sh-must-support-indent, sh-name-style)
6288 (sh-prev-line, sh-prev-stmt, sh-prev-thing, sh-read-variable)
6289 (sh-remove-our-text-properties, sh-rescan-buffer)
6290 (sh-reset-indent-vars-to-global-values, sh-safe-backward-sexp)
6291 (sh-safe-forward-sexp, sh-save-styles-to-buffer, sh-scan-buffer)
6292 (sh-scan-case, sh-search-word, sh-set-char-syntax)
6293 (sh-set-here-doc-region, sh-set-indent, sh-set-var-value)
6294 (sh-show-indent, sh-this-is-a-continuation, sh-var-value): New
6296 (sh-debug, sh-electric-rparen-needed, sh-here-doc-syntax)
6297 (sh-indent-supported, sh-kw, sh-kw-alist, sh-kws-for-done)
6298 (sh-learned-buffer-hook, sh-make-vars-local, sh-regexp-for-done)
6299 (sh-special-keywords, sh-special-syntax, sh-st-punc, sh-styles-alist)
6300 (sh-var-list): New variables.
6302 1999-10-12 Dave Pearson <davep@hagbard.demon.co.uk>
6304 * quickurl.el (quickurl-list-insert): `count-lines' was returning
6305 a value one line to high if the cursor wasn't at the start of a
6306 line. A `beginning-of-line' is now performed before making the
6307 call to `count-lines'.
6309 1999-10-11 Stefan Monnier <monnier@cs.yale.edu>
6311 * diff-mode.el (vc-backend-diff): Get rid of the autoloaded advice.
6313 1999-10-09 Stefan Monnier <monnier@cs.yale.edu>
6315 * Makefile (setwins): Abstract out the command to find subdirectories
6316 and fix it to also ignore subdirectories of CVS (f.ex. CVS/Base).
6317 (custom-deps, finder-data, autoloads, update-subdirs, updates)
6318 (autoloads-with-other-emacs): Use it.
6320 * diff-mode.el: New file. A mode for viewing/editing context diffs.
6322 1999-10-09 Gerd Moellmann <gerd@gnu.org>
6324 * Makefile (bootstrap-compile): New target. Compile Lisp
6325 files with ../src/temacs.
6327 1999-10-08 Dave Love <fx@gnu.org>
6329 * ange-ftp.el: Require dired when compiling.
6330 (ange-ftp-normal-login): Allow EFS-style port specification.
6332 1999-10-08 Simon Marshall <simon@gnu.org>
6334 * emacs-lisp/regexp-opt.el (regexp-opt-try-suffix): New function.
6335 (regexp-opt-group): Use it to get common suffixes in STRINGS.
6336 If STRINGS is nil, return "" rather than nil.
6338 1999-10-08 Gerd Moellmann <gerd@gnu.org>
6340 * Makefile (compile): Compile files one by one. Set load-path to
6341 current directory and subdirectories when compiling.
6343 1999-10-08 Gerd Moellmann <gerd@gnu.org>
6345 * Makefile (EMACSOPT, DONTCOMPILE, EL): New.
6346 (emacs): Use it everywhere instead of EMACS.
6347 (compile): New target. Compile all Lisp files from scratch.
6348 (recompile): New target. Recompile lisp directory.
6349 (autoloads-with-other-emacs): New target. Build loaddefs.el with
6350 an Emacs executable not built in the current directory tree.
6352 1999-10-07 Peter Breton <pbreton@ne.mediaone.net>
6354 * filecache.el (file-cache-completion-ignore-case): New variable,
6355 defaulting to the value of completion-ignore-case.
6356 (file-cache-minibuffer-complete): Use it.
6357 (file-cache-files-matching, file-cache-files-matching-internal):
6360 1999-10-07 Emmanuel Briot <briot@gnat.com>
6362 * ada-xref.el: New file
6364 * ada-prj.el: New file
6366 * ada-stmt.el (ada-stmt-add-to-ada-menu): New function
6368 * ada-stmt.el (ada-subprogram-body): Correctly find the name of the
6369 subprogram being created.
6371 * ada-mode.el (ada-get-indent-*, ada-indent-current, ada-goto-*,
6372 ada-indent-newline-indent): Rewritten to support the new indentation
6375 * ada-mode.el (ada-case-read-exceptions, ada-create-case-exceptions):
6378 * ada-mode.el (ada-fill-comment-paragraph): Add support for the
6379 justification parameter
6381 * ada-mode.el (ada-make-body, ada-gen-treat-proc,
6382 ada-make-subprogram-body): Rewritten to benefit from the gnatstub
6385 1999-10-07 Dave Love <fx@gnu.org>
6387 * bindings.el (bound-and-true-p): New macro.
6388 (make-mode-line-mouse-sensitive): Don't require easymenu.
6390 1999-10-07 Gerd Moellmann <gerd@gnu.org>
6392 * custom.el (defface): Extend documentation for new values of
6395 * faces.el (face-spec-set-match-display): Recognize `type' of
6396 `motif', `lucid', `x-toolkit'.
6399 1999-10-05 Dave Love <fx@gnu.org>
6401 * files.el: Recognize temporary crontab files.
6403 * info.el: Require jka-compr when compiling.
6404 (Info-suffix-list): Add bzip2 files (non-ms-dos only).
6406 1999-10-04 Dave Love <fx@gnu.org>
6408 * cus-start.el: Add x-stretch-cursor, indicate-empty-lines,
6409 scroll-up-aggressively, scroll-down-aggressively.
6411 * time.el (display-time-mode): Add autoload cookie.
6413 * rect.el (delete-extract-rectangle): Doc fix from verna.
6415 * help-macro.el (three-step-help): Customize.
6417 1999-10-04 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6419 * hexl.el (hexlify-buffer): Move point in proper range
6421 (hexl-after-revert-hook): Update hexl-max-address.
6422 (hexl-address-to-marker): Doc fix.
6424 1999-10-03 Dave Love <fx@gnu.org>
6426 * image.el (defimage): Remove redundant code. Substitute file in
6429 1999-10-02 Andre Spiegel <spiegel@inf.fu-berlin.de>
6431 * vc.el (vc-backend-checkout): Use coding system 'no-conversion
6432 when doing with-temp-file.
6434 1999-10-01 Dave Love <fx@gnu.org>
6436 * cus-edit.el (custom-comment-create): Fill :from and :to slots.
6438 * help.el: Require view when compiling.
6439 (view-emacs-FAQ): Use Info version.
6441 1999-09-29 Ken'ichi Handa <handa@gnu.org>
6443 * ps-mule.el (ps-mule-font-info-database-ps): Typo fixed
6444 (normat->normal). Use correct font names for Korean
6445 (Munhwa-Regular-KSC-EUC-H and Munhwa-Bold-KSC-EUC-H).
6447 1999-09-29 Kenichi Handa <handa@etl.go.jp>
6449 * language/cyrillic.el (cyrillic-koi8-r-decode-table): Map 8-bit
6450 code not used by KOI8 to the same 8-bit code instead of mapping to
6452 (cyrillic-alternativnyj-decode-table): Likewise.
6454 1999-09-29 Alex Schroeder <alex@gnu.org>
6456 * sql.el (sql-imenu-generic-expression): Aew, used to set
6457 imenu-generic-expression.
6458 (sql-mode): Use ?_ and ?. instead of 95 and 46 when setting
6459 font-lock-defaults' SYNTAX-ALIST. Set imenu-generic-expression,
6460 imenu-case-fold-search, and imenu-syntax-alist.
6461 (sql-interactive-mode): Use ?_ and ?. instead of 95 and 46 when
6462 setting font-lock-defaults' SYNTAX-ALIST.
6464 1999-09-28 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6466 * map-ynp.el (map-y-or-n-p): If we read -1, for end of keyboard
6469 1999-09-28 Dave Love <fx@gnu.org>
6471 * cus-edit.el (custom-comment): Change widget definition.
6472 (custom-comment-create, custom-comment-show)
6473 (custom-comment-invisible-p): Don't use :comment-overlay.
6474 (custom-comment-hide): New function.
6475 (custom-variable-set, custom-variable-save)
6476 (custom-variable-reset-standard, custom-face-set)
6477 (custom-face-save): Use it.
6479 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6481 * hexl.el (hexl-mode): Do nothing if already in hexl mode.
6483 1999-09-27 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6485 * faces.el (region): Doc fix.
6487 1999-09-27 Dave Love <fx@gnu.org>
6489 * isearch.el (isearch): Add :links in defgroup.
6490 (isearch-mode-map): Bind mouse-2 to isearch-mouse-yank.
6491 (isearch-switch-frame-handler): Comment out (unused).
6492 (isearch-yank-x-selection, isearch-ring-advance-edit): Doc fix.
6493 (isearch-ring-retreat-edit): Doc fix.
6494 (isearch-mouse-yank): New command.
6495 (isearch-last-command-char): Removed. Callers changed to use
6497 (isearch-char-to-string): Removed. Callers changed to use
6500 1999-09-26 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru>
6502 * ispell.el (ispell-dictionary-alist-6): Don't use "-C"
6505 1999-09-25 Gerd Moellmann <gerd@gnu.org>
6507 * faces.el (face-differs-from-default-p): Compare face
6508 attributes individually.
6510 * image.el (put-image, insert-image): Add string argument.
6512 1999-09-24 Gerd Moellmann <gerd@gnu.org>
6514 * ange-ftp.el (ange-ftp-date-regexp): Make it work for
6515 LANG=de_DE.iso88591 on HPUX 11.0.
6517 * dired.el (dired-move-to-filename-regexp): Make it work
6518 for LANG=de_DE.iso88591 on HPUX 11.0.
6520 1999-09-24 Richard M. Stallman <rms@caffeine.ai.mit.edu>
6522 * info.el (info-initialize): Don't test existence of ALTERNATIVE
6523 if we know for some other reason it should not be used.
6525 * emacs-lisp/edebug.el (edebug-outside-current-prefix-arg):
6527 (edebug-recursive-edit): Save current-prefix-arg there,
6528 bind it, and set it back at the end.
6529 (edebug-outside-excursion): Restore and update the outside
6530 value of current-prefix-arg.
6531 (edebug-emacs-version-specific): Delete support for Epoch.
6533 1999-09-24 Howard Melman <howard@silverstream.com>
6535 * imenu.el (imenu-after-jump-hook): New variable.
6536 (imenu): Run menu-after-jump-hook.
6537 (imenu-name-lookup-function): New variable.
6538 * imenu.el (imenu--in-alist): Use those variables.
6540 1999-09-24 Carsten Dominik <cd@gnu.org>
6542 * textmodes/reftex-parse.el (reftex-parse-from-file): Scan for
6543 multiple thebibliography environments.
6545 * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Fixed bug
6546 with recentering window.
6547 (reftex-extract-bib-entries-from-thebibliography,
6548 reftex-offer-bib-menu,reftex-bibtex-selection-callback): Deal
6549 with multiple thebibliography environments.
6551 * textmodes/reftex-vars.el
6552 (reftex-section-levels): Function allowed as cdr.
6553 (reftex-max-section-depth) New option.
6555 * textmodes/reftex-vcr.el (reftex-view-cr-cite): Deal
6556 with multiple thebibliography environments.
6558 1999-09-23 Gerd Moellmann <gerd@gnu.org>
6560 * iswitchb.el (iswitchb-complete): Use minibuffer-prompt-end
6561 instead of point-min in call to delete-region.
6563 1999-09-22 Andre Spiegel <spiegel@inf.fu-berlin.de>
6565 * vc.el (vc-backend-checkout): Use with-temp-file when checking
6566 out into arbitrary file names.
6568 1999-09-19 Ken'ichi Handa <handa@gnu.org>
6570 * language/european.el ("Turkish"): New language environment.
6572 1999-09-19 Dave Love <fx@gnu.org>
6574 * delim-col.el: New file.
6576 1999-09-17 Richard Stallman <rms@gnu.org>
6578 * files.el (after-find-file): When visiting a backup file,
6581 * apropos.el (apropos-symbol-face): Non-nil even for ttys.
6582 (apropos-keybinding-face, apropos-label-face): Likewise.
6583 (apropos-property-face, apropos-match-face): Likewise.
6584 (apropos-label-properties): New variable.
6585 (apropos-print-doc): Use apropos-label-properties.
6586 (apropos-print): Set apropos-label-properties.
6588 1999-09-15 Richard Stallman <rms@gnu.org>
6590 * winner.el: Use aref instead of sref.
6592 * whitespace.el (whitespace-mode, whitespace-mode-line): Add defvars.
6594 1999-09-14 Gerd Moellmann <gerd@gnu.org>
6596 * lisp-mode.el (eval-last-sexp): Use prin1 instead of print.
6598 1999-09-14 Richard Stallman <rms@gnu.org>
6600 * font-lock.el (lisp-font-lock-keywords-1): Recognize an autoload
6601 cookie, even if followed by a letter.
6603 1999-09-14 Stephen Eglen <stephen@gnu.org>
6605 * progmodes/octave-inf.el (inferior-octave-startup): Ensure -i and
6606 --no-line-editing are passed to Octave by including them here
6607 rather than storing them in inferior-octave-startup-args.
6609 1999-09-14 Eli Zaretskii <eliz@gnu.org>
6611 * textmodes/texinfo.el (texinfo-font-lock-keywords): Add uref,
6612 command, option, env and sc.
6614 * subr.el (shell-quote-argument): Quote argument with double
6617 1999-09-14 Richard Stallman <rms@gnu.org>
6619 * simple.el (eval-expression-print-level): New variable.
6620 (eval-expression-print-length): New variable.
6621 (eval-expression-debug-on-error): New variable.
6622 (eval-expression): Bind print-level, print-length and
6623 debug-on-error from those vars.
6625 * emacs-lisp/lisp-mode.el (eval-defun, eval-last-sexp):
6626 Bind print-level, print-length and debug-on-error.
6628 1999-09-14 Inge Frick <inge@nada.kth.se>
6630 * dired.el (dired-recursive-deletes): New custom variable.
6631 (dired-re-no-dot): New variable.
6632 (dired-delete-file): New function deletes files and directories
6634 (dired-internal-do-deletions): Use `dired-delete-file' to delete files.
6636 * dired-aux.el (dired-recursive-copies): New custom variable.
6637 (dired-handle-overwrite): Broke a long line.
6638 (dired-copy-file): Call `dired-copy-file-recursive' instead of
6640 (dired-copy-file-recursive): New function. Copy directories
6642 (dired-do-create-files): Added support for generalized directory
6643 target. How-to function may now return a function. New fluid
6644 variable `dired-one-file'.
6645 (dired-copy-how-to-fn): New variable.
6646 (dired-do-copy): Bind `dired-recursive-copies' to preserve it.
6647 Use dired-copy-how-to-fn as how-to argument to dired-do-create-files.
6648 (dired-do-copy-regexp): No recursive copies.
6650 1999-09-14 Rajesh Vaidheeswarran <rv@dsmit.com>
6652 * whitespace.el (whitespace-version): Update version to 2.4
6654 * whitespace.el: Add customization variables to conditionally test
6655 any of the five whitespaces, per request from Rune Kleveland
6656 <runekl@math.uio.no> and Klaus Berndl <berndl@sdm.de>.
6658 * whitespace.el (whitespace-spacetab-regexp): Fix doc string.
6660 * whitespace.el (whitespace-modes): Add `change-log-mode' to the
6661 list of modes to be checked for bogus whitespaces.
6663 * whitespace.el (whitespace-rescan-timer-time): Update
6666 * whitespace.el (whitespace-display-unchecked-whitespaces):
6667 New function to update modeline with untested whitespaces.
6669 * whitespace.el (whitespace-buffer): Test only whitespaces whose
6670 checking is turned on, and update modeline using the newly created
6671 `whitespace-display-unchecked-whitespaces'.
6673 * whitespace.el (whitespace-cleanup): Cleanup only whitespaces
6674 whose checking is turned on, and update modeline using the newly
6675 created `whitespace-display-unchecked-whitespaces'.
6677 * whitespace.el (whitespace-describe): Update documentation.
6679 * whitespace.el (whitespace-tickle-timer): Test if
6680 `whitespace-rescan-timer-time' is non-zero before tickling timer.
6682 1999-09-13 Dave Love <fx@gnu.org>
6684 * hideif.el (hide-ifdef-mode): Add autoload cookie.
6686 * checkdoc.el (checkdoc-display-status-buffer): Avoid Help mode
6688 (checkdoc-this-string-valid): Don't assume default comment-start.
6690 1999-09-13 Gerd Moellmann <gerd@gnu.org>
6692 * rsz-mini.el: Remove code, keep the interface.
6694 1999-09-13 Dave Love <fx@gnu.org>
6696 * help.el (help-highlight-p): Doc fix.
6698 * faces.el (mode-line, header-line, tool-bar): Add :version.
6699 (highlight, secondary-selection): Add :group.
6700 (trailing-whitespace): Add :group, :version.
6702 * wid-edit.el: Remove some compatibility code and checks.
6703 (widget-specify-field, widget-specify-button): Don't use XEmacs
6705 (widget-overlay-inactive): Change error message.
6706 (widget-button-pressed-face): New variable.
6707 (widget-button-click): Use it.
6708 (widget-documentation-link-add): Specify mouse and button faces.
6709 (widget-echo-help-mouse, widget-stop-mouse-tracking): Functions
6710 removed now the functionality is built in.
6712 * cus-edit.el: Don't define-widget-keywords.
6713 (multimedia): New group.
6714 (custom-last): Function removed.
6715 (custom-quote): Add vectorp case, comment out characterp case.
6716 (custom-buffer-done-function, custom-raised-buttons): New option.
6717 (Custom-buffer-done): New function.
6718 (custom-buffer-create-internal): Obey custom-raised-buttons,
6720 (custom-button-face): Make it `released-button'.
6721 (custom-button-pressed-face): Make it `pressed-button'
6722 (custom-mode-map): Bind "q" to Custom-buffer-done.
6723 (custom-mode): Deal with raised/pressed buttons.
6725 Changes from Didier Verna:
6726 (custom-prompt-variable): Optional third arg makes prompt for a
6728 (customize-set-value, customize-set-variable,
6729 customize-save-variable): Optional prefix makes function handle
6731 (customize-customized, customize-saved, custom-variable-state-set)
6732 (custom-variable-set, custom-variable-save, custom-face-state-set)
6733 (custom-variable-reset-saved, custom-variable-reset-standard)
6734 (custom-face-set, custom-face-save, custom-face-reset-saved)
6735 (custom-face-reset-standard, customize-save-customized): Handle
6737 (custom-comment-face, custom-comment-tag-face): New face.
6738 (custom-comment): New widget.
6739 (custom-comment-create, custom-comment-delete)
6740 (custom-comment-value-set, custom-comment-show)
6741 ()custom-comment-invisible-p): New functions.
6742 (custom-variable-value-create, custom-face-value-create): Create a
6743 comment field widget.
6744 (custom-variable-menu, custom-face-menu): New entry for custom
6746 (custom-face-value-create): Remove compatibility code.
6747 (custom-save-variables, custom-save-faces): Possibly save custom
6750 * cus-face.el (custom-face-attributes): Simplify :underline,
6751 :overline, :inverse-video cases. Fix up :box case (probably needs
6754 Change from Didier Verna:
6755 (custom-set-faces): The arguments can now have a custom comment as
6758 * custom.el: Don't define-widget-keywords.
6759 Change from Didier Verna:
6760 (custom-set-variables): The arguments can now have a
6761 custom comment as fifth element.
6763 1999-09-13 Richard Stallman <rms@gnu.org>
6765 * info.el (Info-find-node): Cope better if guesspos is too large.
6767 1999-09-12 Gerd Moellmann <gerd@gnu.org>
6769 * iswitchb.el (iswitchb-exhibit): Use buffer-string instead
6770 of buffer-substring because buffer-string doesn't copy the
6773 * faces.el (mode-line): Replaces `modeline'.
6774 (toplevel): Make `modeline' an alias for `mode-line'.
6776 1999-09-12 Gerd Moellmann <gerd@gnu.org>
6778 * gs.el: Change `ghostscript' to `postscript' in comment.
6780 1999-09-11 Rob Riepel <riepel@Stanford.EDU>
6782 * emulation/tpu-edt.el (tpu-version): New version.
6783 (tpu-search-overlay, tpu-replace-overlay): New variables.
6784 (tpu-search-highlight, tpu-toggle-direction): New functions.
6785 (tpu-lm-replace): Set tpu-replace-overlay.
6786 (tpu-edt-on, tpu-edt-off): Add/remove tpu-search-highlight post
6789 1999-09-11 Richard Stallman <rms@gnu.org>
6791 * isearch.el (isearch-mode-map): Undo previous change.
6793 * emacs-lisp/lisp-mode.el (eval-last-sexp): If after ?\LETTER,
6794 use all of that as the sexp.
6796 * files.el (find-file-noselect): Catch errors in file-expand-wildcards,
6797 and use the initial argument as file name directly.
6798 Likewise if nothing matches.
6800 1999-09-11 Ivar Rummelhoff <ivarru@math.uio.no>
6802 * winner.el: Major changes. Avoid changing point and mark.
6803 Save configurations after they change, not before.
6805 1999-09-10 Keisuke Nishida <kxn30@po.cwru.edu>
6807 * emacs-lisp/bytecomp.el (byte-compile-output-docform):
6808 Bind print-continuous-numbering and print-number-table.
6810 1999-09-10 Dave Love <fx@gnu.org>
6812 * bindings.el (debug-ignored-errors): Restore BBDB stuff.
6814 1999-09-09 Richard Stallman <rms@gnu.org>
6816 * whitespace.el: Finish making it fit Emacs conventions.
6819 1999-09-09 Eli Zaretskii <eliz@is.elta.co.il>
6821 * generic-x.el (bat-generic-mode): "::"-style comments don't
6822 need to begin with "-". Fix the font-lock definitions of ON/OFF
6823 after BREAK/VERIFY. Remove built-in commands like CALL and ECHO
6824 from the list of keywords. Add DO to the list of keywords.
6826 1999-09-09 Dave Love <fx@gnu.org>
6828 * emacs-lisp/byte-opt.el (byte-optimize-backward-char):
6829 (byte-optimize-backward-word): New optimizations.
6830 (side-effect-free-fns, side-effect-and-error-free-fns): Add
6833 1999-09-09 Gerd Moellmann <gerd@gnu.org>
6835 * image.el (put-image): Remove optional buffer parameter.
6837 * faces.el (face-italic-p): Return t only for values `italic'
6840 * mouse.el (mouse-drag-mode-line-1): Extension of former
6841 mouse-drag-mode-line that also drags the header line.
6842 (mouse-drag-mode-line): Call it.
6843 (mouse-drag-header-line): New.
6844 (toplevel): Bind down-mouse-1 on header lines to
6845 mouse-drage-header-line.
6847 1999-09-08 Gerd Moellmann <gerd@gnu.org>
6849 * bindings.el (mode-line-unbury-buffer): Use aref instead of sref.
6850 (make-mode-line-mouse-sensitive): Replace `top-line' by
6853 1998-09-08 Michael Ernst <mernst@alum.mit.edu>
6855 * help.el (describe-function-1): Don't return empty string for keymaps.
6857 * fill.el (fill-region-as-paragraph, canonically-space-region):
6858 Respect colon-double-space at end of line.
6860 1999-09-08 Stephen Gildea <gildea@alum.mit.edu>
6862 * files.el (backup-by-copying-when-privileged-mismatch): New variable.
6863 (backup-buffer): Use it.
6865 1999-09-08 Peter Breton <pbreton@ne.mediaone.net>
6867 * generic-x.el (generic-define-unix-modes): Added new modes:
6868 inetd-conf-generic-mode, etc-services-generic-mode,
6869 etc-passwd-generic-mode. These are all defined for Unix by default.
6870 (apache-generic-mode): Use an imenu-generic-expression to list
6871 Configuration keywords.
6872 (samba-generic-mode): Use both ; and # as comment characters.
6873 (samba-generic-mode): Font-lock expressions now highlight name
6875 (bat-generic-mode): Keywords are now case-insensitive through
6876 font-lock-defaults setting.
6877 (java-properties-generic-mode): Supports both ! and # as comment
6879 (java-properties-generic-mode): Added an imenu-generic-expression
6880 (java-properties-generic-mode): Reworked to support the various
6881 different ways to separate name and value (viz, '=', ':' and
6883 (show-tabs-generic-mode): Added this new generic-mode.
6885 1999-09-08 Richard Stallman <rms@gnu.org>
6887 * progmodes/inf-lisp.el: Moved from top directory.
6889 * tar-mode.el (tar-header-block-tokenize):
6890 Use `when' instead of `and'. Fix some clobbered text.
6892 * gud.el (gud-make-debug-menu): Make a child for the
6893 local menu, for its menu bar, and the debug menu.
6894 (gdb, sdb, dbx, xdb, perldb, pdb, jdb):
6895 Use the history in the simple way.
6897 1999-09-07 Kenichi Handa <handa@etl.go.jp>
6899 * language/korea-util.el (default-korean-keyboard): Initialize it
6900 according to the environment variable HANGUL_KEYBOARD_TYPE.
6902 1999-09-07 Richard Stallman <rms@gnu.org>
6904 * subr.el (make-temp-file): New function.
6906 1999-09-07 Stefan Monnier <monnier@cs.yale.edu>
6908 * font-lock.el (font-lock-multiline): New text property contains
6909 a boolean to indicate if the char is part of a multiline match.
6910 (font-lock-default-fontify-region): Extend the region appropriately
6911 for multiline keywords.
6912 (font-lock-default-unfontify-region): Also remove the new
6913 font-lock-multiline text property.
6914 (font-lock-fontify-anchored-keywords): Mark multiline anchored matches.
6915 (font-lock-fontify-keywords-region): Mark multiline regexp matches.
6917 1999-09-07 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
6919 * diary-lib.el (list-diary-entries): Make sure two-digit years
6922 1999-09-07 Gerd Moellmann <gerd@gnu.org>
6924 * faces.el (face-set-after-frame-default): Initialize some
6925 attributes of some faces from frame parameters.
6927 * faces.el (scroll-bar, border, cursor, mouse): New faces.
6929 1999-09-07 Gerd Moellmann <gerd@gnu.org>
6931 * faces.el (fringe): Replaces face `margin'.
6933 1999-09-07 Dave Love <fx@gnu.org>
6935 * tar-mode.el (tar-header-block-tokenize): Bind linkname.
6937 1999-09-07 Richard Stallman <rms@gnu.org>
6939 * subr.el (push): Doc fix.
6941 1999-09-06 Richard Stallman <rms@gnu.org>
6943 * vc.el (vc-annotate-display): Use < 69 not < 70
6944 to distinguish 20YY from 19YY.
6946 * timezone.el (timezone-parse-date): Use < 69 not < 70
6947 to distinguish 20YY from 19YY.
6949 * tar-mode.el (tar-extract): Don't assume buffer is visiting a file.
6951 1999-09-07 Dave Pearson <davep@hagbard.demon.co.uk>
6953 * quickurl.el: (quickurl-list-focused-line): Removed.
6954 (quickurl-list-insert): Now works out the focused line using
6955 `count-lines' instead of using `quickurl-list-focused-line'.
6957 1999-09-06 Richard Stallman <rms@gnu.org>
6959 * mail/rmail.el (rmail-retry-failure): Unconditionally move
6960 to beginning of message.
6962 1999-09-06 Dave Love <fx@gnu.org>
6964 * isearch.el (isearch-mode-map): Add mouse-2.
6966 * mail/rmail.el (rmail-read-password): Deleted.
6967 (rmail-get-pop-password): Use read-password.
6969 * quickurl.el: Don't conditionally define caddr.
6970 (quickurl-url-comment): Use nth, not caddr in function and
6973 1999-09-06 Richard Stallman <rms@gnu.org>
6975 * auto-show.el: Doc fixes.
6977 1999-09-06 Stephen Eglen <stephen@gnu.org>
6979 * progmodes/octave-inf.el (inferior-octave-startup-args): Add
6980 --no-line-editing so that TABs in source files are not interpreted
6981 as completion requests.
6983 1999-09-06 Gerd Moellmann <gerd@gnu.org>
6985 * hscroll.el, auto-show.el: Remove all code, keep the public
6986 interface as no-ops.
6988 * faces.el (face-bold-p): Don't return t if face has lighter
6991 1999-09-06 Eli Zaretskii <eliz@gnu.org>
6993 * startup.el (command-line): Make small-temporary-file-directory
6994 be nil except on ms-dos.
6996 * files.el (small-temporary-file-directory): Ditto. Also doc fix.
6998 * progmodes/sh-script.el (sh-tmp-file): For sh, use $TMPDIR if it
7001 * dired.el (dired-re-dir, dired-re-sym): Don't match DOS drive
7002 letters with a colon after d or l.
7004 1999-09-06 Dave Love <fx@gnu.org>
7006 * emacs-lisp/byte-opt.el (byte-boolean-vars): Removed. (Now
7009 1999-09-05 Richard Stallman <rms@gnu.org>
7011 * vc.el (vc-annotate-display): Treat 2-digit years under 70 as 20YY.
7013 * textmodes/paragraphs.el (backward-kill-sentence):
7014 Don't test minibuffer-prompt-end here.
7015 (forward-sentence): Do handle it here.
7016 (backward-kill-paragraph): Don't test it here.
7017 (forward-paragraph): Handle it here.
7019 * mouse.el (font-menu-add-default): Simplify code.
7021 1999-09-05 Gerd Moellmann <gerd@gnu.org>
7023 * faces.el (header-line): Renamed from `top-line'.
7025 1999-09-05 Gerd Moellmann <gerd@gnu.org>
7027 * faces.el (tool-bar): Change face `toolbar' to `tool-bar'.
7029 1999-09-04 Richard Stallman <rms@gnu.org>
7031 * whitespace.el: New file.
7033 1999-09-04 Dave Love <fx@gnu.org>
7035 * paths.el: Make some doc strings obey the make-docfile convention.
7037 * bindings.el: Likewise.
7038 (debug-ignored-errors): Remove BBDB ones.
7040 1999-09-03 Richard Stallman <rms@gnu.org>
7042 * mail/mh-comp.el (mh-forward): Get new subject line from the original,
7043 not from the draft to forward.
7045 * emacs-lisp/autoload.el (make-autoload): Handle defun* like defun.
7047 1999-09-03 Dave Love <fx@gnu.org>
7049 * double.el (double-mode): Customize the variable.
7051 1999-09-03 Kenichi Handa <handa@etl.go.jp>
7053 * international/characters.el: Delete duplicated code.
7055 1999-09-02 Richard Stallman <rms@gnu.org>
7057 * indent.el (indent-relative): Doc fix.
7059 * quickurl.el (quickurl): Doc fix.
7061 1999-09-02 Gerd Moellmann <gerd@gnu.org>
7063 * faces.el (margin): Change background to "gray" for mono (this is
7064 drawn with a stipple pattern).
7066 1999-09-02 Gerd Moellmann <gerd@gnu.org>
7068 * simple.el (next-history-element): Use minibuffer-prompt-end once
7069 again. Remove test for minibuffer-prompt-in-buffer.
7071 1999-09-02 Eli Zaretskii <eliz@gnu.org>
7073 * files.el (small-temporary-file-directory): New variable.
7075 * startup.el (command-line): Compute the value of
7076 small-temporary-file-directory.
7078 * ediff-init.el (ediff-temp-file-prefix): Use
7079 small-temporary-file-directory if non-nil.
7081 * vc.el (vc-update-change-log): Likewise.
7083 * progmodes/cmacexp.el (c-macro-expansion): Likewise.
7085 * simple.el (shell-command, shell-command-on-region): Use
7086 make-temp-name properly. Use small-temporary-file-directory if
7087 non-nil, otherwise temporary-file-directory, to generate temporary
7090 * dos-w32.el (direct-print-region-helper): Use
7091 temporary-file-directory. (From Stefan Monnier.)
7093 1999-09-02 Richard Stallman <rms@gnu.org>
7095 * progmodes/asm-mode.el (asm-mode): Set comment-start properly
7096 from asm-comment-char.
7097 (asm-font-lock-keywords): Recognize instruction width suffixes.
7099 1999-09-01 Richard Stallman <rms@gnu.org>
7101 * play/fortune.el: New file.
7103 1999-08-31 Dave Love <fx@gnu.org>
7105 * help.el (help-make-xrefs): Don't lose on non-empty blank line
7108 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add several w32 and
7109 redisplay variables.
7111 * subr.el (push): Fix typo.
7113 1999-08-30 Kevin Blake <kblake@ticnet.com>
7115 * emacs-lisp/ring.el: Many doc fixes.
7116 (ring-size, ring-copy): New functions.
7118 1999-08-29 Richard Stallman <rms@gnu.org>
7120 * progmodes/etags.el (tags-loop-continue):
7121 After tags-loop-operate returns, force skip to next file.
7123 * mail/mail-extr.el (mail-extr-all-letters-but-separators)
7124 (mail-extr-first-letters, mail-extr-last-letters):
7125 Use character classes [:alpha:] and [:alnum:].
7127 * subr.el (push, pop): New macros.
7129 * progmodes/compile.el (compilation-error-regexp-alist):
7130 New item for SGI IRIX MipsPro compilers.
7132 * speedbar.el (speedbar-directory-buttons): Recognize
7133 device names when checking for file names.
7135 * array.el (array-reconfigure-rows): Use generate-new-buffer.
7137 * emacs-lisp/lisp-mode.el (eval-defun): Expand macros,
7138 and specially handle defvar inside their expansions.
7139 (eval-defun-1): New subroutine.
7141 * progmodes/compile.el (compilation-error-regexp-alist):
7142 Fix the Perl -w entry to allow period after line number.
7143 Don't allow newlines in file name, but allow them after line number
7144 for Perl debugging traces.
7146 * which-func.el (which-func-cleanup-function): New variable.
7147 (which-function): Call that function.
7149 * emacs-lisp/find-func.el (find-function-regexp): Allow a ) or (
7150 to end a function name.
7152 * informat.el (Info-tagify): Don't insert more than one newline
7153 before the tag table.
7155 1999-08-29 Stefan Monnier <monnier@cs.yale.edu>
7157 * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
7158 than make-temp-name, use match-string-no-properties, and eliminate
7159 a quadratic behavior when building bibtex-strings.
7161 1999-08-29 Alex Schroeder <alex@gnu.org>
7163 * comint.el (comint-input-ring-separator): New variable.
7164 (comint-read-input-ring): Doc change; use
7165 comint-input-ring-separator when reading file.
7166 (comint-write-input-ring): Use
7167 comint-input-ring-separator when writing file.
7169 1999-08-29 Marc Girod <girod@shire.ntc.nokia.com>
7171 * informat.el (Info-tagify): Start by widening.
7172 Match node headers that don't list the file name,
7173 and more kinds of page separations.
7174 Strip properties during tagification.
7175 Use start of node header line as tag's position.
7176 Fix the "done" message.
7178 (Info-validate): Save and restore match data around narrowing down.
7180 1999-08-28 Richard M. Stallman <rms@gnu.org>
7182 * emacs-lisp/easy-mmode.el (easy-mmode-define-minor-mode):
7183 On repeated call, override previous values put into
7184 minor-mode-map-alist and minor-mode-alist.
7186 1999-08-28 Michael Ernst <mernst@alum.mit.edu>
7188 * dired-x.el (dired-guess-shell-alist-default): Support bzip2 format.
7190 1999-08-27 Andreas Schwab <schwab@gnu.org>
7192 * vc.el (vc-backend-merge-news): Fix regexp to also match P marker
7195 1999-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
7197 * calendar/calendar.el (calendar-move-hook): New hook.
7199 * calendar/cal-move.el: Call the new hook in every movement function.
7201 * calendar/calendar.el (calendar-goto-astro-day-number): Autoload
7202 the right function name.
7204 1999-08-26 Stephen Gildea <gildea@alum.mit.edu>
7206 * time-stamp.el: Put quote-backquote around all symbol names
7207 in doc strings, for mousing.
7208 (time-stamp): Support multi-line patterns.
7209 (time-stamp-inserts-lines): New variable.
7210 (time-stamp-count): New variable.
7211 (time-stamp-string-preprocess): Fixed bug where "%%a" becomes
7212 "Thu" instead of "%a".
7214 1999-08-25 Gerd Moellmann <gerd@gnu.org>
7216 * simple.el (kill-word): Undo previous change.
7218 1999-08-25 Gerd Moellmann <gerd@gnu.org>
7220 * jit-lock.el (jit-lock-function): Extend the fontified range
7221 to the beginning of the line containing the range start and
7222 the beginning of the line following the range end.
7224 1999-08-24 Dave Love <fx@gnu.org>
7226 * timezone.el: Move provide to end.
7227 (timezone-parse-date): Simplify somewhat. Assume 2-digit years
7229 (timezone-parse-time): Simplify somewhat.
7231 1999-08-24 Gerd Moellmann <gerd@gnu.org>
7233 * faces.el (margin): Renamed from bitmap-area.
7235 1999-08-24 Alex Schroeder <alex@gnu.org>
7237 * sql.el: Doc changes.
7238 (sql-sybase): Use sql-server instead of sql-database.
7240 1999-08-23 Dave Love <fx@gnu.org>
7242 * rect.el: Add/fix various doc strings. Add `*' to all the
7245 1999-08-21 Gerd Moellmann <gerd@gnu.org>
7247 * jit-lock.el (jit-lock-function): Use line-beginning-position.
7248 Don't unwind-protect font-lock-fontify-region.
7250 * paragraphs.el (backward-kill-paragraph): Don't move
7251 point into mini-buffer prompt.
7252 (backward-kill-sentence): Ditto.
7254 * simple.el (next-history-element): Use minibuffer-prompt-end.
7255 Remove test for minibuffer-prompt-in-buffer.
7256 (kill-word): Don't move point into mini-buffer prompt.
7258 1999-08-21 Dave Love <fx@gnu.org>
7260 * Makefile: Exclude CVS dirs like RCS.
7262 1999-08-19 Dave Love <fx@gnu.org>
7264 * tooltip.el (tooltip-mode): Customize this, per convention.
7265 (tooltip-active): Option deleted.
7267 * font-lock.el (global-font-lock-mode): Autoload. Add :initialize.
7269 * hanoi.el, page-ext.el: Declare dynamic vars.
7271 * term.el: Avoid ange-ftp related compilation warnings.
7273 1999-08-18 Gerd Moellmann <gerd@gnu.org>
7275 * font-lock.el (font-lock-support-mode): Make `jit-lock-mode'
7276 the default so that beginners can benefit from it without
7277 searching in manuals.
7279 1999-08-18 Ray Blaak <blaak@gnu.org>
7281 * progmodes/delphi.el: Consider assembly sections as blocks, to
7282 indent them better. Make auto-indent on newline optional.
7284 1999-08-17 Gerd Moellmann <gerd@gnu.org>
7286 * bindings.el (mode-line-modified): Look up key binding for C-x
7287 C-q. If it's bound call that binding, otherwise call
7290 1999-08-17 Dave Love <fx@gnu.org>
7292 * info.el (info): Doc fix.
7294 * finder.el (finder-known-keywords): Add `multimedia'.
7296 * apropos.el: Don't capitalize custom group name.
7298 * info-look.el: Remove compatibility code.
7299 (info-lookup-guess-default*): DTRT for point at start of symbol.
7300 (info-complete): Don't lose with point not at end of symbol.
7302 1999-08-16 Gerd Moellmann <gerd@gnu.org>
7304 * term.el (toplevel): Make face `term-default' an empty face.
7305 The code relied on the fact that Emacs ignored invalid faces in
7306 face text properties in 20.4.
7308 1999-08-16 Richard M. Stallman <rms@gnu.org>
7310 * subr.el (point-at-eol, point-at-bol): New aliases.
7312 * simple.el: Functions reordered.
7314 * rect.el (delete-rectangle-line): Use line-end-position.
7316 1999-08-16 Karl Heuer <kwzh@gnu.org>
7318 * subr.el (assoc-ignore-case, assoc-ignore-representation): Moved
7319 here from simple.el.
7321 1999-08-16 Dave Love <fx@gnu.org>
7323 * mouse.el: Provide `mldrag' for compatibility.
7324 (mldrag-drag-mode-line, mldrag-drag-vertical-line): New aliases,
7327 * mldrag.el: Removed since the features are in mouse.el.
7329 * jka-compr.el (auto-compression-mode): New variable for
7332 * bindings.el (mode-line-mule-info): Doc fix.
7334 * msb.el (msb--choose-file-menu): Use `completion-ignore-case' in
7337 * files.el (interpreter-mode-alist): Add make, guile, clisp.
7338 (find-file): Doc fix.
7340 1999-08-16 Carsten Dominik <cd@gnu.org>
7342 * textmodes/reftex.el: Most of the code moved to other files.
7343 * textmodes/reftex-auc.el: New file, split out from reftex.el
7344 * textmodes/reftex-cite.el: New file, split out from reftex.el
7345 * textmodes/reftex-global.el: New file, split out from reftex.el
7346 * textmodes/reftex-index.el: New file, split out from reftex.el
7347 * textmodes/reftex-parse.el: New file, split out from reftex.el
7348 * textmodes/reftex-ref.el: New file, split out from reftex.el
7349 * textmodes/reftex-sel.el: New file, split out from reftex.el
7350 * textmodes/reftex-toc.el: New file, split out from reftex.el
7351 * textmodes/reftex-vars.el: New file, split out from reftex.el
7352 * textmodes/reftex-vcr.el: New file, split out from reftex.el
7354 1999-08-16 Carsten Dominik <cd@gnu.org>
7356 * textmodes/reftex.el: (reftex-pop-to-bibtex-entry): Fixed
7357 conflict with pop-up-frames.
7358 (reftex-special-environment-parsers): New constant.
7359 (reftex-label-alist): car of an entry can also be a function.
7360 (reftex-what-special-env): Cew function.
7361 (reftex-label-location): Call `reftex-what-special-env'.
7362 (reftex-compile-variables): Check for symbol in
7363 `reftex-label-alist'.
7364 (reftex-what-environment): Fixed bug with stacked environments of
7365 same kind (e.g. enumerate).
7366 (reftex-process-string): Preserve default directory.
7367 (reftex-label-alist-builtin): Changed prefixes of endnote and
7368 footnote. Also the magic words.
7369 (reftex-reference): Interprete new option
7370 `reftex-fref-is-default'.
7371 (reftex-replace-prefix-escapes): Interprete new `%S' format.
7372 (reftex-toc-mouse-view-line): Command removed (had no binding).
7373 (reftex-everything-regexp): New function.
7374 (reftex-nearest-match): Made better.
7375 (reftex-toc-find-section): Use new version of
7376 `reftex-nearest-match'.
7377 (reftex-insert-docstruct): Adapted to work with the index stuff.
7378 (reftex-parse-from-file): Find index entries as well.
7379 (reftex-toc-toggle-index): New function
7380 (reftex-toc-map): `i' is now used to togle the index, File
7381 boundaries has been moved to `F'.
7382 (reftex-select-label-map): Toggling display of file boundaries is
7383 now on the `F' key, for consistency with `reftex-toc-map'.
7384 (reftex-erase-all-selection-and-index-buffers): Renamed from
7385 `reftex-erase-all-selection-buffer'. Now also kills the index
7387 (reftex-viewing-cross-references): Customization group renamed
7388 from reftex-viewing-cross-references-and-citations.
7389 (reftex-index-macro-regexp,
7390 reftex-find-index-entry-regexp-format): New variables
7391 (reftex-macros-with-index): New variable
7392 (reftex-add-index-macros): New function
7393 (reftex-renumber-simple-labels, reftex-translate): Allow for
7394 multiple labels in a single ref command.
7395 (reftex-index-support): New customization group
7396 (reftex-support-index, reftex-index-special-chars,
7397 reftex-index-macros, reftex-index-default-macro,
7398 reftex-index-default-tag, reftex-index-math-format,
7399 reftex-index-section-letters, reftex-index-include-context,
7400 reftex-index-follow-mode, reftex-index-header-face,
7401 reftex-index-section-face, reftex-index-tag-face,
7402 reftex-index-face): New options
7403 (reftex-index-map, reftex-index-menu, reftex-last-index-file,
7404 reftex-index-tag, reftex-index-return-marker,
7405 reftex-index-restriction-indicator, reftex-index-restriction-data,
7406 reftex-index-macro-regexp, reftex-index-level-re,
7407 reftex-index-key-end-re, reftex-find-index-entry-regexp-format,
7408 reftex-everything-regexp-no-index, reftex-index-re,
7409 reftex-macros-with-index, reftex-index-macro-alist): New variables
7410 (reftex-index-help, reftex-index-macros-builtin,
7411 reftex-key-to-index-macro-alist, reftex-query-index-macro-prompt,
7412 reftex-query-index-macro-help): New constants
7413 (reftex-index-selection-or-word, reftex-index,
7414 reftex-default-index, reftex-update-default-index,
7415 reftex-index-complete-tag, reftex-index-select-tag,
7416 reftex-index-complete-key, reftex-index-update-taglist,
7417 reftex-index-globally, reftex-index-mode, reftex-index-show-entry,
7418 reftex-display-index, reftex-insert-index,
7419 reftex-index-insert-new-letter, reftex-get-restriction,
7420 reftex-index-pre-command-hook, reftex-index-post-command-hook,
7421 reftex-index-show-help, reftex-index-next, reftex-index-previous,
7422 reftex-index-toggle-follow, reftex-index-toggle-context,
7423 reftex-index-view-entry, reftex-index-goto-entry-and-hide,
7424 reftex-index-goto-entry, reftex-index-mouse-goto-line-and-hide,
7425 reftex-index-quit, reftex-index-quit-and-kill,
7426 reftex-index-goto-toc, reftex-index-rescan, reftex-index-Rescan,
7427 reftex-index-revert, reftex-index-switch-index-tag,
7428 reftex-index-restrict-to-section, reftex-index-widen,
7429 reftex-index-restriction-forward,
7430 reftex-index-restriction-backward, reftex-index-visit-location,
7431 reftex-index-analyze-entry, reftex-index-globalize,
7432 reftex-index-edit, reftex-index-toggle-range-beginning,
7433 reftex-index-toggle-range-end, reftex-index-edit-key,
7434 reftex-index-edit-attribute, reftex-index-edit-visual,
7435 reftex-index-edit-part, reftex-index-level-down,
7436 reftex-index-level-up, reftex-index-kill, reftex-index-undo,
7437 reftex-index-change-entry, reftex-index-goto-letter,
7438 reftex-add-index-macros, reftex-ensure-index-support,
7439 reftex-index-info-safe, reftex-index-info): New functions.
7442 1999-08-15 Richard M. Stallman <rms@gnu.org>
7444 * paren.el (show-paren-mode): Support making show-paren-mode
7445 a buffer-local variable. Don't check for a window system.
7446 (show-paren-function): Check whether show-paren-function is
7447 enabled in current buffer; do the right thing if not.
7448 Don't check for a window system.
7449 (show-paren-mode): Make it a user variable.
7451 * add-log.el (add-log-current-defun): Exclude all trailing whitespace.
7452 Handle `enum' like `struct'.
7454 * server.el (server-process-filter): If a client visits no buffers,
7455 close it immediately before recording it.
7457 * mail/mail-utils.el (mail-unquote-printable): Make it autoload.
7458 Optimize by calling concat just once. Handle =\n sequence.
7459 (mail-unquote-printable-region): New command.
7460 (mail-quote-printable): Make it autoload.
7462 1999-08-15 Karl Heuer <kwzh@gnu.org>
7464 * progmodes/octave-mod.el (octave-maintainer-address): Use gnu.org.
7466 1999-08-15 Yoshiki Hayashi <t90553@mail.ecc.u-tokyo.ac.jp>
7468 * lisp/texinfmt.el: Handle @ifnottex.
7470 1999-08-15 Eli Zaretskii <eliz@gnu.org>
7472 * frame.el (blink-cursor): Don't turn on cursor blinking for
7475 * faces.el (face-valid-attribute-values): Look in
7476 x-bitmap-file-path only for x and w32 window systems.
7478 * term/pc-win.el (x-list-fonts): Return "ms-dos", not "default".
7479 Do that if width is nil as well.
7480 (x-display-mm-height, x-display-mm-width): Update values.
7481 (x-colors): Compute the list from msdos-color-values.
7482 (x-select-enable-clipboard): Doc fix.
7483 (x-frob-font-weight, x-font-family-list): New functions.
7485 1999-08-15 Toby Speight <Toby.Speight@streapadair.freeserve.co.uk>
7487 * window.el (shrink-window-if-larger-than-buffer): Don't try to
7488 back up from beginning of buffer.
7490 1999-08-13 Karl Heuer <kwzh@gnu.org>
7492 * emacs-lisp/advice.el (ad-special-forms): Use track-mouse iff bound.
7494 1999-08-13 Alakazam Petrofsky <Alakazam@Petrofsky.Berkeley.CA.US>
7496 * play/hanoi.el: Mostly rewritten. Customized. To support an s2G
7497 doomsday clock, speed control is added and changes are made to
7498 allow large numbers of rings: rings now show the whole ring
7499 number, not just the last digit; consecutive rings are allowed to
7500 be the same size when necessary to fit all the rings in the
7501 window; and poles can be oriented horizontally. Face support is
7502 thrown in gratuitously.
7503 (hanoi): Changed default number of rings back to 3.
7504 (hanoi-unix, hanoi-unix-64): New commands
7505 (hanoi-horizontal-flag, hanoi-move-period, hanoi-use-faces,
7506 hanoi-pole-face, hanoi-base-face, hanoi-even-ring-face,
7507 hanoi-odd-ring-face): New variables.
7508 (hanoi-internal, hanoi-current-time-float, hanoi-put-face,
7509 hanoi-n, hanoi-insert-ring, hanoi-goto-char, hanoi-sit-for,
7510 hanoi-ring-to-pos, hanoi-pos-on-tower-p): New functions.
7511 (hanoi-0): Renamed from hanoi0, for symmetry with hanoi-n.
7512 (hanoi-topos, hanoi-draw-ring): Removed.
7514 1999-08-12 Gerd Moellmann <gerd@gnu.org>
7516 * faces.el (face-valid-attribute-values): Return an alist for
7518 (face-read-integer): Handle unspecified face attributes. Add
7519 completion for `unspecified'.
7520 (read-face-attribute): Handle unspecified font attributes.
7521 (face-valid-attribute-values): Add `unspecified' to lists so that
7522 it can be chosen via completion.
7523 (face-read-string): Don't recognize "none" as input.
7525 1999-08-10 Dave Love <fx@gnu.org>
7527 * sendmail.el (mail-specify-envelope-from): Fix quoting of doc
7530 * sun-curs.el: Require sun-fns.
7532 1999-08-10 Dave Love <fx@gnu.org>
7534 * autorevert.el (auto-revert-mode): Add autoload cookie.
7536 * hscroll.el, auto-show.el: Files deleted -- we have built-in
7539 * simple.el (hscroll-step, hscroll-point-visible)
7540 (hscroll-window-column): Remove now we have the mentioned real
7541 horizontal autoscrolling.
7543 1999-08-10 Richard M. Stallman <rms@gnu.org>
7545 * mail/sendmail.el (sendmail-send-it): Let mail-specify-envelope-from
7546 control use of -f option.
7547 (mail-specify-envelope-from): New variable.
7548 (mail-from-style): Doc fix.
7550 * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): New fn.
7551 (easy-menu-get-map): New arg TO-MODIFY helps choose
7552 between local and global maps.
7553 (easy-menu-add-item): Pass TO-MODIFY arg to easy-menu-get-map.
7554 (easy-menu-change): Doc fix.
7556 * info-look.el (info-lookup-guess-c-symbol): Use skip-syntax-backward.
7557 (info-lookup-guess-default): Simplified and cleaned up.
7558 (info-lookup-guess-default*): Preserve point.
7560 * view.el (view-mode-disable): If buffer-read-only is nil,
7563 * files.el (after-find-file): Disable View mode if buffer is no
7566 * view.el (view-mode-enable, view-mode-disable):
7567 Call force-mode-line-update.
7569 1999-08-10 Karl Heuer <kwzh@gnu.org>
7571 * language/european.el, emacs-lisp/byte-opt.el: Fix provide call.
7572 * array.el, play/landmark.el, international/latin-3.el: Likewise.
7573 * sun-curs.el, term/sun-mouse.el, progmodes/simula.el: Likewise.
7575 1999-08-10 Alex Schroeder <asc@bsiag.com>
7577 * ansi-color.el (ansi-color-to-text-properties): Added New state 5
7578 to prevent m-eating-bug.
7580 1999-08-10 Eli Zaretskii <eliz@gnu.org>
7582 * term/pc-win.el (msdos-bg-mode): Remove. Call
7583 frame-set-background-mode instead. All callers changed.
7584 (msdos-face-setup): Don't force color display parameter, it is set
7585 by frame-set-background-mode.
7586 (make-msdos-frame): Call x-handle-reverse-video and
7587 face-set-after-frame-default. Delete frame if creation failed.
7589 * faces.el (face-set-after-frame-default): Don't call
7590 make-face-x-resource-internal for the pc window-system.
7592 1999-08-10 Dave Love <fx@melange.gnu.org>
7594 * emacs-lisp/advice.el (ad-make-single-advice-docstring): Treat
7595 case with no docstring specially.
7597 1999-08-09 Eli Zaretskii <eliz@gnu.org>
7599 * complete.el (PC-do-completion): If completing on file name,
7600 reproduce str by concatenating its directory and basename parts.
7602 1999-08-07 Dave Love <fx@gnu.org>
7604 * man.el (Man-softhyphen-to-minus): Revert previous change. Avoid
7605 unibyte to multibyte conversion of search-forward (from Handa),
7606 but avoid the replacement if the language is Latin-N.
7608 1999-08-06 Richard Stallman <rms@gnu.org>
7610 * emacs-lisp/eval-reg.el (elisp-eval-buffer): Handle all 5 args
7613 * international/mule.el (load-with-code-conversion):
7614 Pass t to eval-buffer for DO-ALLOW-PRINT.
7616 1999-08-06 Geoff Voelker <voelker@cs.washington.edu>
7618 * ls-lisp.el (ls-lisp-delete-matching): List argument is now alist
7619 of filenames and attributes.
7620 (ls-lisp-insert-directory): Use directory-files-and-attributes
7623 1999-08-05 Dave Love <fx@gnu.org>
7625 * auto-show.el (auto-show-mode): Fix :set.
7627 * widget.el (define-widget-keywords): Make dummy definition and
7628 comment-out its use.
7630 1999-08-04 Richard Stallman <rms@gnu.org>
7632 * progmodes/tcl.el: Customized.
7634 * sql.el (sql-accumulate-and-indent): Instead of testing
7635 whether this is Emacs 20 before calling comint-accumulate,
7636 test whether comint-accumulate is defined.
7638 1999-08-04 Dave Love <fx@gnu.org>
7640 * sgml-mode.el: Require outline when compiling.
7641 (sgml-mode-hook, html-mode-hook): Customize.
7642 (sgml-validate-command): Fix :version.
7643 (html-autoview-mode): Doc fix.
7645 * man.el (Man-softhyphen-to-minus): Fix for multibyte case, do
7646 nothing in Latin-N environment.
7648 * info.el (Info-find-node): Call info-initialize here.
7650 (Info-file-list-for-emacs): Add message, dired-x, c, viper.
7652 1999-08-04 Richard Stallman <rms@gnu.org>
7654 * ansi-color.el: New file.
7656 1999-08-04 Stefan Monnier <monnier@cs.yale.edu>
7658 * dired.el (dired-string-replace-match): Return `nil' when no match
7659 found with global search.
7661 * ledit.el (ledit-zap-file, ledit-read-file, ledit-compile-file):
7662 * terminal.el (te-terminfo-directory):
7663 * mail/mailpost.el (post-mail-send-it):
7664 * mail/metamail.el (metamail-region):
7665 * progmodes/ada-mode.el (ada-tmp-directory):
7666 Use temporary-file-directory.
7668 * progmodes/compile.el (compilation-parsing-end,compilation-setup)
7669 (compilation-filter, compilation-forget-errors)
7670 (compilation-parse-errors): Use a marker instead of an integer for
7671 `compilation-parsing-end'.
7673 * progmodes/diff.el (diff-parse-differences):
7674 Use a marker instead of an integer for `compilation-parsing-end'.
7675 * textmodes/tex-mode.el (tex-compilation-parse-errors):
7676 Use a marker instead of an integer for `compilation-parsing-end'.
7678 1999-08-03 Richard Stallman <rms@gnu.org>
7680 * buff-menu.el (Buffer-menu-mode-map): Add V for Buffer-menu-View.
7681 (Buffer-menu-mode): Doc fix.
7682 (Buffer-menu-view): New command.
7683 (Buffer-menu-view-other-window): New command.
7685 1999-08-03 Christopher J. Madsen <chris_madsen@geocities.com>
7687 * replace.el (query-replace-regexp-eval)
7688 (replace-eval-replacement, replace-loop-through-replacements)
7689 (replace-match-string-symbols): New functions.
7690 (perform-replace): Allow REPLACEMENTS to be (FUNCTION . DATA).
7691 Use replace-loop-through-replacements.
7693 1999-08-03 Dave Pearson <davep@hagbard.demon.co.uk>
7695 * play/5x5.el (5x5-mode-map): Bind C-p, C-n, C-b, C-f.
7698 1999-08-03 Dave Love <fx@gnu.org>
7700 * fortran.el (fortran-indent-new-line): Make it an alias
7701 for reindent-then-newline-and-indent.
7703 1999-08-03 Didier Verna <verna@inf.enst.fr>
7705 * rect.el: All functions rewritten, except when noted above
7706 their declaration. Below is a list of interface changes.
7707 (apply-on-rectangle): New function, mostly replaces
7708 `operate-on-rectangle'. All callers changed.
7709 (move-to-column-force): Pass new second argument to `move-to-column'.
7710 (kill-rectangle): Added optional prefix arg to fill lines.
7711 (delete-rectangle): Ditto.
7712 (delete-whitespace-rectangle): Ditto.
7713 (delete-extract-rectangle): Ditto.
7714 (open-rectangle): Ditto.
7715 (clear-rectangle): Ditto.
7716 (delete-whitespace-rectangle-line): New function.
7717 (delete-rectangle-line): Added third arg FILL.
7718 (delete-extract-rectangle-line): Ditto.
7719 (open-rectangle-line): Ditto.
7720 (clear-rectangle-line): Ditto.
7722 1999-08-03 Ray Blaak <blaak@gnu.org>
7724 * progmodes/delphi.el: New file.
7726 1999-08-02 Richard Stallman <rms@gnu.org>
7728 * textmodes/outline.el (outline-previous-heading): New function.
7729 (outline-up-heading-all): Use outline-previous-heading.
7730 (outline-next-heading): Delete definition inserted yesterday.
7732 1999-08-01 Richard Stallman <rms@gnu.org>
7734 * textmodes/outline.el (outline-next-heading): New function.
7735 (outline-up-heading-all): New function.
7736 (outline-font-lock-level): Using outline-up-heading-all.
7737 Tell outline-back-to-heading to accept invisible headings.
7739 * simple.el (shell-command-on-region): EXIT-STATUS can be a string.
7741 * mail/mh-utils.el (mh-find-path-run): New variable.
7742 (mh-find-path): Test and set that.
7743 Set mail-user-agent only the first time this function is run.
7744 (mail-user-agent): Defvar deleted.
7746 * info.el (info-initialize): New function.
7747 (info): Call info-initialize.
7748 (Info-directory-list): Initialize to nil,
7749 so info-initialize will set it up for real.
7751 1999-08-01 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
7753 * calendar/calendar.el (european-date-diary-pattern): Fix pattern so it
7754 does not interpret a time as the year in a day-month entry.
7756 * calendar/diary-lib.el: Change syntax table entry for colon in
7757 the diary as part of the european-date-diary-pattern fix.
7759 1999-08-01 Eli Zaretskii <eliz@gnu.org>
7761 * international/mule.el (set-auto-coding): Allow whitespace before
7762 and after the "variable: value" pair.
7764 1999-07-30 Ken'ichi Handa <handa@gnu.org>
7766 * mail/sendmail.el (sendmail-coding-system): Doc-string fixed.
7767 (default-sendmail-coding-system): Doc-string fixed.
7769 1999-07-30 Dave Love <fx@gnu.org>
7771 * subr.el (assoc-delete-all): New function, renamed from
7774 * frame.el: Change comments to doc strings and other doc fixes.
7775 (frame-delete-all): Moved to subr.el as `assoc-delete-all'.
7777 (set-background-color, set-foreground-color, set-cursor-color)
7778 (set-mouse-color, set-border-color): Offer completion of colours.
7779 (cursor): Add :version to defgroup.
7781 * facemenu.el (list-colors-display): Make it work on ttys.
7782 (facemenu-read-color): Likewise.
7784 1999-07-30 Richard M. Stallman <rms@gnu.org>
7786 * frame.el (frame-notice-user-settings): If background
7787 color has been changed, update background-mode from it,
7790 1999-07-30 Wolfgang Rupprecht <wolfgang@wsrcc.com>
7792 * net-utils.el (finger): Don't do indirect fingering.
7794 1999-07-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
7796 * cal-tex.el (cal-tex-cursor-filofax-daily): Add possibility of
7797 rules. Add separator at end of holidays.
7798 (cal-tex-rules): New customizable variable.
7799 (cal-tex-latexify-list): Add optional parameter to put separator
7802 1999-07-30 Bill Richter <richter@steenrod.math.nwu.edu>
7804 * textmodes/fill.el (fill-individual-paragraphs): Calculate new
7805 fill prefix on each line while looping to the end of paragraph.
7806 End paragraph if it's longer than the existing fill prefix.
7808 * textmodes/fill.el (fill-context-prefix): Doc fix.
7810 1999-07-30 Dave Love <fx@gnu.org>
7812 * font-lock.el (jit-lock): Fix :load, add :version.
7814 1999-07-30 Eli Zaretskii <eliz@gnu.org>
7816 * term/pc-win.el (msdos-face-setup): Register standard colors in
7817 Vface_tty_color_alist.
7818 (face-color-supported-p, face_color_gray_p): New functions.
7820 * loadup.el: Don't load scroll-bar unless x-toolkit-scroll-bars-p
7823 * startup.el (command-line): Don't register default colors for
7824 MSDOS window-system.
7826 1999-07-29 Dave Love <fx@gnu.org>
7828 * f90.el (f90-mode-syntax-table): Change backslash to escape, not
7831 * lisp-mode.el (eval-defun): Re-written to avoid
7832 capturing variables.
7834 * picture.el (picture-beginning-of-line): Don't call
7835 hscroll-point-visible now we have real autoscrolling.
7836 (picture-end-of-line, picture-newline, picture-open-line):
7839 * international/latin-8.el: New file.
7840 * international/latin-9.el: New file.
7842 1999-07-28 Dave Love <fx@gnu.org>
7844 * mouse.el (x-fixed-font-alist): Add lucidasanstypewriter.
7846 * msb.el: Require cl only when compiling.
7847 (msb--home-dir): Deleted.
7848 (msb--format-title): Use abbreviate-file-name.
7849 (msb--choose-file-menu): Simplify string comparison.
7851 1999-07-28 Gerd Moellmann <gerd@gnu.org>
7853 * faces.el (toolbar): Add face definition for mono displays.
7855 1999-07-27 Richard M. Stallman <rms@gnu.org>
7857 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
7859 * frame.el (frame-initialize): When setting frame-initial-frame-alist,
7860 force copying of default-frame-alist.
7862 1999-07-26 Ken'ichi Handa <handa@gnu.org>
7864 * ps-mule.el (ps-mule-begin-job): Fix malformed regexp.
7866 1999-07-26 Richard M. Stallman <rms@gnu.org>
7868 * frame.el (set-mouse-color): If new color is nil,
7869 really respecify the current color.
7871 1999-07-26 Gerd Moellmann <gerd@gnu.org>
7873 * faces.el (bitmap-area): Change background of face `bitmap-area'
7874 to white for mono displays.
7876 1999-07-26 Kenichi Handa <handa@etl.go.jp>
7878 * international/ccl.el (ccl-embed-symbol): New function.
7879 (ccl-program-p): Deleted. Now it's implemented in C code.
7880 (ccl-compile-call): Use ccl-embed-symbol to embed a symbol.
7881 (ccl-compile-translate-character): Likewise.
7882 (ccl-compile-map-single): Likewise.
7883 (ccl-compile-multiple-map-function): Likewise.
7884 (declare-ccl-program): Doc-string modified.
7885 (check-ccl-program): Check compiled CCL code by ccl-program-p.
7887 1999-07-25 Ken'ichi Handa <handa@etl.go.jp>
7889 * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
7891 1999-07-25 Markus Rost <rost@gnu.org>
7893 * cus-edit.el (custom-save-variables, custom-save-faces): Sort
7894 the entries to make custom-file more readable.
7896 1999-07-25 Richard M. Stallman <rms@gnu.org>
7898 * cus-edit.el (custom-save-delete): Avoid error for empty .emacs.
7900 * emacs-lisp/edebug.el: Delete compatibility code.
7901 (edebug-next-token-class): If . is followed by a digit,
7902 return `symbol' for the token class.
7904 * startup.el (command-line): If we don't find the user's init file,
7905 set user-init-file to nil.
7907 1999-07-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7909 * info-look.el (info-lookup-interactive-arguments): Add optional
7910 argument query for new choice of help mode.
7911 (info-lookup-symbol): Use it.
7912 (info-lookup-file): Ditto.
7913 (info-lookup): Don't switch to other window, if already in Info
7916 1999-07-23 Dave Love <fx@gnu.org>
7918 * fortran.el (fortran-mode-syntax-table): Change `\' to `\'
7920 (fortran-fontify-string, fortran-match-!-comment): Deleted.
7921 (fortran-font-lock-syntactic-keywords): New variable.
7922 (fortran-mode): Use it.
7923 (fortran-font-lock-keywords-1): Don't do comments.
7924 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Save
7927 * textmodes/sgml-mode.el (sgml-validate-command): Use nsgmls.
7929 * msb.el (msb-menu-bar-update-buffers): Renamed from
7930 menu-bar-update-buffers.
7931 (msb-custom-set, msb--toggle-menu-type): Call
7932 msb-menu-bar-update-buffers.
7933 (msb-mode): Revise the hook setting.
7935 * font-lock.el (turn-on-font-lock): Use tty-display-color-p.
7937 1999-07-23 Gerd Moellmann <gerd@gnu.org>
7939 * font-lock.el, help.el, simple.el: Re-integrate previously
7940 described changes that were lost due to errors while checking them
7943 1999-07-23 Kevin Blake <kblake@ticnet.com>
7945 * font-lock.el (lisp-font-lock-keywords-2): Fix regexp.
7947 1999-07-23 Ken'ichi Handa <handa@etl.go.jp>
7949 * international/encoded-kb.el
7950 (encoded-kbd-self-insert-iso2022-7bit): Don't insert the character
7951 but push it to unread-command-events.
7952 (encoded-kbd-self-insert-iso2022-8bit): Likewise.
7953 (encoded-kbd-self-insert-sjis): Likewise.
7954 (encoded-kbd-self-insert-big5): Likewise.
7956 * textmodes/fill.el (fill-region-as-paragraph): Avoid backing up
7957 before left margin and fill-prefix by fill-find-break-point.
7959 1999-07-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
7961 * info-look.el (info-lookup-setup-mode): Don't give up, if
7962 info-lookup-make-completions returns an error.
7963 (info-lookup-maybe-add-help :mode 'latex-mode): Use Info file
7964 name latex, not latex2e.
7966 1999-07-21 Richard M. Stallman <rms@gnu.org>
7968 * replace.el (perform-replace): Turn off case-fold-search
7969 if FROM-STRING argument has uppercase in it.
7971 1999-07-21 Gerd Moellmann <gerd@gnu.org>
7973 * jit-lock.el (jit-lock-after-change): Do it only if jit-lock
7974 mode is on. Don't use end of changed text.
7976 1999-07-21 Gerd Moellmann <gerd@gnu.org>
7978 * cl-extra.el (cl-make-hash-table): Renamed from make-hash-table.
7979 (cl-hash-table-p): Renamed from hash-table-p.
7980 (cl-hash-table-count): Renamed from hash-table-count.
7981 (maphash): Alias to cl-maphash removed.
7982 (gethash): Likewise.
7983 (puthash): Likewise.
7984 (remhash): Likewise.
7985 (clrhash): Likewise.
7987 1999-07-21 Gerd Moellmann <gerd@gnu.org>
7989 * jit-lock.el (jit-lock-stealth-fontify): Don't call sit-for with
7990 third arg non-nil. See comment there why this isn't a good idea.
7992 1999-07-21 Gerd Moellmann <gerd@gnu.org>
7994 * jit-lock.el (jit-lock-stealth-fontify): Use with-temp-message.
7996 * jit-lock.el (jit-lock-stealth-fontify): Widen buffer, and call
7997 sit-for with 3rd arg non-nil to prevent redisplay.
7999 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8001 * image.el (image-type-from-file-header): If file doesn't
8002 have a directory part, add data-directory.
8004 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8006 * tooltip.el (tooltip-gud-tips-p): Set default to nil.
8007 (tooltip-activate-mouse-motions-if-enabled): Don't activate mouse
8008 motion handling when tooltip-gud-tips-p is nil.
8010 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8012 * tooltip.el (tooltip-mode): Don't use `plusp'.
8013 (tooltip-active): Use initial value of nil.
8015 * jit-lock.el (jit-lock-mode): Don't use `plusp'.
8017 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8019 * bindings.el (make-mode-line-mouse-sensitive): Add key
8020 definitions for `top-line'.
8022 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8024 * faces.el (top-line): New face.
8026 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8028 * image.el (image-type-regexps): Add regexp for PS files.
8030 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8032 * faces.el (set-face-attribute): Fix wrong handling of frame
8035 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8037 * image.el (image-type-regexps): Add PNG format.
8039 1999-07-21 Dave Love <fx@gnu.org>
8041 * bindings.el (mode-line-modified): New variable.
8042 (mode-line-mode-menu-1): Switch to appropriate window before
8045 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8047 * faces.el (face-underline): Removed.
8048 (face-underline-color): Ditto.
8050 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8052 * faces.el (face-x-resources): Fix typo.
8054 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8056 * faces.el: Remove handling of `:relief', extend handling of
8058 (frame-set-background-mode): Choose new defface specs after
8059 frame parameters have changed.
8061 * cus-face.el: Ditto.
8063 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8065 * custom.el (defface): Extend documentation to include new
8068 * cus-face.el (custom-face-attributes): Add overline,
8069 strike-through, box.
8071 * faces.el (face-valid-attribute-values): Handle overline,
8072 strike-through, box.
8073 (face-attribute-name-alist): Add pairs for new face attributes.
8074 (describe-face): Handle new face attributes.
8076 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8078 * faces.el (face-x-resources): Add overline, strike-through, box.
8080 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8082 * enriched.el (enriched-translations): Add `display' and
8084 (enriched-handle-display-prop): New.
8085 (enriched-decode-display-prop): New.
8087 * format.el (top-level): Give `display' property
8088 `format-list-atomic-p.
8089 (format-annotate-single-property-change): Test that property.
8090 If present, treat list property values like atoms.
8092 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8094 * cus-face.el (custom-face-attributes): Use `choice' everywhere
8095 so that "*" can be entered.
8097 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8099 * cus-face.el (custom-face-attributes): Don't use `#''.
8101 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
8103 * cus-face.el (custom-face-attributes): Return underline
8104 face attribute directly from the second lambda of underline.
8106 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8108 * jit-lock.el (jit-lock-stealth-verbose): Set to nil.
8110 * frame.el (after-setting-font-hooks): New variable.
8111 (set-frame-font): Run those hooks.
8113 * jit-lock.el (jit-lock-function): Use font-lock-fontify-region.
8115 * faces.el (set-face-attribute): Fix doc string.
8117 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8119 * cus-face.el (custom-face-attributes): Accept color name.
8121 * faces.el (face-underline-p): Accept unspecified underlining.
8122 (face-underline): Ditto. Fix doc string.
8124 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
8126 * faces.el (face-underline-color): New function.
8128 1999-07-21 Masatake Yamato <masata-y@is.aist-nara.ac.jp>
8130 * cus-face.el (custom-face-attributes): Support underline coloring.
8131 Added slot to choose a color.
8133 * faces.el (face-underline): New function.
8134 (face-underline-p): Support underline coloring.
8135 Return nil only if the underline attribute is 'normal.
8136 (set-face-underline): New function.
8137 (face-valid-attribute-values): Support underline coloring.
8139 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8141 * image.el (insert-image): Use `display' instead of `glyph'
8142 as text property name.
8144 (image-type-from-file-header): Use insert-file-contents-literally.
8146 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8148 * easymenu.el (easy-menu-do-add-item): Don't use the empty
8149 string to indicate separators.
8151 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8153 * jit-lock.el (jit-lock-stealth-fontify): Bind message-log-max
8154 instead of message-log.
8156 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8158 * faces.el (bitmap-area): New face.
8160 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8162 * image.el (insert-image): New.
8164 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8166 * frame.el (blink-cursor): Set the symbol's value.
8167 (show-trailing-whitespace): Change group to font-lock.
8169 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8172 * font-lock.el: Add jit-mode as new support mode.
8174 * font-lock.el (font-lock-fontify-keywords-region): Stop when
8175 reaching end instead of letting re-search-forward signal an error.
8176 (demand-lock-mode): New.
8177 (font-lock-turn-on-thing-lock): Add demand-lock-mode.
8178 (font-lock-turn-off-thing-lock): Ditto.
8179 (font-lock-after-fontify-buffer): Ditto.
8180 (font-lock-after-unfontify-buffer): Ditto.
8182 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8186 * startup.el (command-line-1): Activate tooltip mode if
8189 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8191 * faces.el (toolbar): Grey default background.
8194 * image.el (image-type-regexps): New.
8195 (image-type-from-file-header): New.
8196 (create-image): Call it.
8198 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8200 * image.el: New file.
8202 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8204 * bindings.el (mode-line-format): Replace `mode-name' with
8205 `(:eval mode-line-mode-name)'.
8206 (mode-line-mode-name): New.
8207 (make-mode-line-mouse-sensitive): Don't change default value
8210 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8212 * tooltip.el: New file.
8214 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8216 * bindings.el (make-mode-line-mouse-sensitive): Use down-mouse-3
8217 instead of mouse-3 to pop up menus.
8218 (mode-line-kill-buffer): Removed.
8219 (make-mode-line-mouse-sensitive): Pop mouse buffer menu over
8221 (mode-line-buffer-menu-1): Removed.
8223 * startup.el (command-line-1): Call make-mode-line-mouse-sensitive.
8225 * bindings.el (mode-line-buffer-identification-keymap): New.
8226 (mode-line-buffer-menu-keymap): New.
8227 (mode-line-mode-menu-keymap): New.
8228 (mode-line-unbury-buffer): New.
8229 (mode-line-other-buffer): New.
8230 (mode-line-kill-buffer): New.
8231 (mode-line-buffer-menu-1): New.
8232 (mode-line-mode-menu-1): New.
8233 (make-mode-line-mouse-sensitive): New.
8235 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8237 * help.el (describe-key-briefly): Handle mode line strings
8238 with local-map properties.
8239 (describe-key): Ditto.
8240 (mode-line-key-binding): New.
8242 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8244 * scroll-bar.el (scroll-bar-timer): New.
8245 (scroll-bar-toolkit-scroll): Start and cancel scroll-bar-timer.
8247 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8249 * scroll-bar.el (scroll-bar-toolkit-scroll): Handle `top'
8252 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8254 * scroll-bar.el (scroll-bar-toolkit-scroll): New.
8255 (global): Use different key bindings if using tookit scroll bars.
8257 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8259 * faces.el (modeline): Define mode line face with relief for
8261 (toolbar): New face.
8263 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8265 * frame.el (frame-initialize): Set frame-creation-function to
8266 tty-create-frame-with-faces.
8268 * faces.el (frame-set-background-mode): Make it work for
8271 * faces.el (tty-create-frame-with-faces): New.
8272 (face-set-after-frame-default): Make it work for TTY frames.
8274 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8276 * faces.el (face-valid-attribute-values): Use tty-defined-colors.
8277 Return a list of one font family for TTYs. Don't return bitmap
8278 file paths for TTY frames.
8280 * faces.el: Add face specs for tty displays to basic faces.
8282 * font-lock.el (font-lock-comment-face): Add spec for color tty.
8283 (font-lock-string-face): Ditto.
8284 (font-lock-keyword-face): Ditto.
8285 (font-lock-builtin-face): Ditto.
8286 (font-lock-function-name-face): Ditto.
8287 (font-lock-variable-name-face): Ditto.
8288 (font-lock-type-face): Ditto.
8289 (font-lock-constant-face): Ditto.
8290 (font-lock-warning-face): Ditto.
8292 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8294 * startup.el (command-line): Register default tty colors.
8296 * faces.el (face-spec-set-match-display): Recognize `type tty'.
8298 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8300 * faces.el (modeline): For X frames, use a modeline with relief.
8302 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8304 * faces.el (frame-update-faces): Copied from 20.2.
8305 (frame-update-face-colors): Ditto. Code removed that isn't
8306 applicable in the new face implementation.
8308 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8310 * frame.el (show-trailing-whitespace): New.
8312 * faces.el (trailing-whitespace): New basic face.
8314 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8316 * cus-face.el (custom-facep): Always define as alias for facep.
8318 * cus-face.el (custom-face-attributes): Use choice widgets.
8319 Remove :bold and :italic.
8321 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8323 * faces.el (face-charset-registries): Removed since fontset.el
8324 is no always loaded.
8326 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8328 * faces.el (internal-get-face): Added as obsolete function for
8331 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8333 * frame.el (blink-cursor-end): Call show-cursor.
8334 (blink-cursor-mode): Ditto.
8336 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8338 * faces.el (face-spec-reset-face): Reset all attributes to
8340 (face-spec-set): Use it.
8342 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8344 * faces.el (read-all-face-attributes): Bug fix.
8345 (face-read-integer): Allow nil default value.
8346 (face-valid-attribute-values): Use symbol names of attribute
8347 values for completion list.
8349 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8351 * faces.el (internal-find-face): Define for compatibility with
8353 (face-id): Likewise.
8355 * faces.el (face-id): Return the ID of a realized face for ASCII.
8357 * fontset.el (x-charset-registries): Removed. Now in faces.el.
8358 (x-complement-fontset-spec): Use face-charset-registries.
8360 * faces.el (face-font-selection-order): Set font selection order
8362 (face-alternative-font-family-alist): Set alternative font
8365 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8367 * faces.el (set-face-charset-registries): Set symbol value.
8369 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8371 * faces.el (face-set-after-frame-default): Call function
8372 internal-merge-in-global-face.
8374 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8376 * faces.el (face-list): Return symbols from face-global-alist.
8378 * faces.el (face-list): Return a copy of the face name list so
8379 that it cannot be modified from outside (facemenu.el uses
8380 nreverse, for example).
8382 * cus-face.el (custom-face-attributes): Add :bold and :italic
8383 for compatibility with old code.
8385 * faces.el (set-face-attributes-from-resources): Additional
8387 (make-face-x-resource-internal): Set attributes from resources
8388 for a given frame or all frames.
8390 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8392 * faces.el (all-faces): Removed.
8394 * custom.el (defface): Add new face attributes to function
8397 * font-lock.el (font-lock-comment-face): Use new face attribute
8399 (font-lock-string-face): Ditto.
8400 (font-lock-keyword-face): Ditto.
8401 (font-lock-builtin-face): Ditto.
8402 (font-lock-function-name-face): Ditto.
8403 (font-lock-variable-name-face): Ditto.
8404 (font-lock-type-face): Ditto.
8405 (font-lock-reference-face): Ditto.
8406 (font-lock-warning-face): Ditto.
8407 ((boundp 'font-lock-face-attributes)): Ditto.
8409 * cus-face.el (custom-face-attributes): Use new face attributes.
8411 * faces.el (set-face-attribute-from-resource): Initialize
8412 from resources only for X and W32.
8414 * cus-face.el (custom-declare-face): Don't make frame-local
8417 * faces.el (describe-face): Use princ instead of insert.
8419 * faces.el: Add XLFD manipulation functions from 20.2 again
8420 because fontset.el uses them.
8421 (face-set-after-frame-default): Add empty definition.
8423 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8425 * faces.el (make-face): Correct typo.
8426 (set-face-attribute-from-resource): Use let*.
8427 (face-underline-p): Correct typo.
8428 (face-inverse-video-p): Ditto.
8429 (set-face-stipple): Ditto.
8430 (face-read-string): Make completion-list optional parameter.
8432 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8434 * faces.el (face-charset-registries): Alist mapping charset
8435 symbols to registries and encoding.
8437 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8439 * frame.el (blink-cursor-mode): Use interactive spec "P".
8441 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8443 * frame.el (blink-cursor-mode): Function to toggle blinking cursor
8444 mode. The cursor of selected_window blinks if the mode is enabled.
8446 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8448 * simple.el (next-history-element): Set point to the end of the
8449 prompt if minibuffer-prompt-in-buffer.
8451 1999-07-21 Gerd Moellmann <gerd@gnu.org>
8453 * faces.el (x-font-regexp): Add sub-expression parentheses for
8454 several font name components.
8456 1999-07-21 Gerd Moellmann <gerd@acm.org>
8458 * faces.el (set-face-relief): Use index 12 for relief.
8459 (face-fill-in): Set relief from data.
8460 (internal-make-face): Init relief to zero.
8462 * faces.el (face-spec-set): Call modify-face with additional
8463 parameters for relief and fixed-p.
8465 1999-07-21 Gerd Moellmann <gerd@acm.org>
8467 * cus-face.el: ':fixed and ':relief added.
8469 * faces.el (describe-face): Add fixed font attribute and relief.
8470 (face-attr-match-p): Ditto.
8471 (face-attr-construct): Ditto.
8472 (face-spec-set): Ditto.
8474 1999-07-21 Gerd Moellmann <gerd@acm.org>
8476 * faces.el (internal-make-face): Function to create a Lisp vector
8477 suitable for representing a face.
8478 (make-face): Use it instead of make-vector.
8479 (x-create-frame-with-faces): Use it instead of vector.
8480 (internal-facep): Increase vector size to 14.
8481 (internal-make-face): Ditto.
8482 (face-relief): Access relief thickness.
8483 (face-fixed-p): Access fixed font attribute.
8484 (set-face-fixed-p): Set fixed font attribute.
8485 (set-face-relief): Set relief attribute.
8486 (internal-face-interactive-int): Read int attribute of face.
8487 (modify-face): Add fixed-p and relief parameters.
8488 (copy-face): Handle fixed-p and relief.
8489 (face-equal): Compare fixed-p and relief.
8490 (face-differs-from-default-p): Ditto.
8491 (face-nontrivial-p): Add fixed-p and relief.
8493 1999-07-21 Gerd Moellmann <gerd@acm.org>
8495 * faces.el (eval-when-compile): Add set-face-shadow-thickness.
8496 (internal-facep): Increase vector size.
8498 (face-shadow-thickness): Added.
8499 (set-face-shadow-thickness): Added.
8500 (modify-face): Add optional shadow-thickness parameter.
8501 (make-face-x-resource-internal): Add shadows.
8503 (face-equal): Ditto.
8504 (face-differs-from-default-p): Ditto.
8505 (face-nontrivial-p): Ditto.
8506 (face-attr-match-p): Ditto.
8507 (face-attr-construct): Ditto.
8508 (face-spec-set): Ditto.
8509 (face-fill-in): Ditto.
8511 1999-07-21 Gerd Moellmann <gerd@acm.org>
8513 * bench.el (bench-mark-split-window): New bench mark.
8515 1999-07-21 Gerd Moellmann <gerd@acm.org>
8517 * faces.el (set-face-font): Don't pass default font to
8518 x-resolve-font so that font will not have to be of the same
8521 1999-07-20 Dave Love <fx@gnu.org>
8523 * wid-edit.el (widget-use-overlay-change): Uncustomize and make it
8526 1999-07-20 Karl Heuer <kwzh@gnu.org>
8528 * font-lock.el (c++-font-lock-extra-types): Add "type_info".
8530 1999-07-20 Dave Love <fx@gnu.org>
8532 * help.el (describe-variable): Fix test for customizability.
8534 * simple.el (append-to-buffer, prepend-to-buffer, copy-to-buffer):
8535 Check for readonly buffer in interactive spec.
8536 (zap-to-char, kill-line, kill-region, comment-region, kill-word)
8537 (backward-kill-word): Add * to interactive spec.
8539 * underline.el (underline-region, ununderline-region): Add * to
8542 * fill.el (canonically-space-region, justify-current-line): Add *
8543 to interactive spec.
8544 (fill-region-as-paragraph, fill-paragraph, fill-region)
8545 (fill-nonuniform-paragraphs, fill-individual-paragraphs): Check
8546 readonly buffer in interactive spec.
8548 * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
8549 (backward-kill-sentence, kill-sentence): Add * to interactive
8552 1999-07-19 Richard M. Stallman <rms@gnu.org>
8554 * dired-aux.el (dired-do-shell-command): Doc fix.
8556 * shell.el (shell-unquote-argument): New function.
8557 (shell-directory-tracker): Use shell-unquote-argument.
8558 * comint.el (comint-arguments): Handle \ followed by space or tab.
8560 1999-07-19 John Wiegley <jwiegley@borland.com>
8562 * term.el (ansi-term-fg-faces-vector): Added support for ANSI
8563 color codes 39 and 49, which by the way lynx uses them seem to
8564 mean "foreground reset" and "background reset".
8566 1999-07-19 Karl Heuer <kwzh@gnu.org>
8568 * font-lock.el (c++-keywords): Add "typeid".
8570 * term/w32-win.el (mouse-set-font): If user uses w32 dialog but
8571 selects no font, treat that as zero selections, not one.
8573 1999-07-19 Dave Love <fx@gnu.org>
8575 * info.el (Info-search): Don't lose with empty regexp.
8577 * version.el: Cater for (free) `ident' program, not `which'.
8579 * hl-line.el: New file.
8581 * mouse.el (mouse-major-mode-menu): Default to menu-bar-edit-menu
8582 for modes which don't define menus.
8584 1999-07-16 Richard M. Stallman <rms@gnu.org>
8586 * webjump.el (webjump-sample-sites): Update some URLs.
8588 1999-07-14 Richard Stallman <rms@gnu.org>
8590 * Version 20.4 released.
8592 1999-07-14 Andreas Schwab <schwab@gnu.org>
8594 * compare-w.el (compare-windows): Try to find the next window in
8595 the current frame before looking at the other frames.
8597 1998-07-12 Oleg S. Tihonov <ost@benetnash.ffke-campus.mipt.ru>
8599 * language/cyrillic.el ("Cyrillic-KOI8", "Cyrillic-ALT"):
8600 Use cyrillic-jcuken as default input method.
8602 1999-07-12 Richard Stallman <rms@gnu.org>
8604 * progmodes/cc-engine.el (c-inside-bracelist-p): Tighter test for
8605 Java anonymous array expressions ("new Foo[] {.. bracelist ..}").
8607 * ispell.el (ispell-dictionary-alist-6): Change charset for Russian.
8608 (ispell-local-dictionary-alist): Add koi8-r for character set.
8610 * textmodes/flyspell.el (flyspell-get-word):
8611 Add special handling for when ispell-otherchars is empty.
8613 1999-07-12 Espen Skoglund <espensk@stud.cs.uit.no>
8615 * progmodes/pascal.el (pascal-beg-of-defun): More intuitive behavior
8616 when having nested functons.
8617 (pascal-indent-nested-functions) (pascal-indent-line)
8618 (pascal-calculate-indent) (pascal-get-lineup-indent): Support for
8619 indenting nested functions.
8621 1999-07-09 Richard Stallman <rms@gnu.org>
8623 * add-log.el (add-log-current-defun): Remove trailing `=' in C modes.
8625 1999-07-08 Espen Skoglund <espensk@stud.cs.uit.no>
8627 * pascal.el (pascal-calculate-indent): Fixed a bug occuring when
8628 the `end' keyword was in the very beginning of the buffer.
8630 1999-07-08 Richard Stallman <rms@gnu.org>
8632 * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Doc fix.
8634 * term.el (term-emulate-terminal): Avoid infinite loop
8635 in strange case where minibuffer window is selected but not active.
8637 1999-07-07 Stephen Eglen <stephen@gnu.org>
8639 * progmodes/octave-inf.el (inferior-octave-directory-tracker):
8640 Change regexp so that it doesn't match commands beginning with `cd'.
8642 1999-07-07 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
8644 * mail/rmail.el (mail-unsent-separator): Add a missing \\|.
8646 1999-07-06 Richard Stallman <rms@gnu.org>
8648 * hscroll.el (hscroll-minibuffer-hook): New function.
8649 (hscroll-global-mode): Add and remove that hook.
8650 Set hscroll-old-truncate-was-global's default value.
8652 1999-07-05 Richard Stallman <rms@gnu.org>
8654 * files.el (revert-buffer): Don't preserve point here.
8655 (revert-buffer-insert-file-contents-function): Doc fix.
8657 * isearch.el (isearch-process-search-char): Write octal 200 correctly.
8659 * startup.el (normal-top-level-add-subdirs-to-load-path): Avoid
8660 doing a `stat' when it isn't necessary because that can cause
8661 trouble when an NFS server is down.
8663 1999-07-04 Richard Stallman <rms@gnu.org>
8665 * hscroll.el (hscroll-window-maybe): Do nothing in the minibuffer.
8667 1999-07-03 Richard Stallman <rms@gnu.org>
8669 * isearch.el (isearch-quote-char): Call unibyte-char-to-multibyte
8670 for \200...\240 also.
8671 (isearch-printing-char): Use unibyte-char-to-multibyte.
8673 1999-07-02 Richard Stallman <rms@gnu.org>
8675 * frame.el (minibuffer-frame-alist): Use defcustom.
8676 (pop-up-frame-alist): Likewise.
8677 (initial-frame-alist): Specify * in the doc string.
8679 * hscroll.el (hscroll-mode): Make it a permanent local.
8680 (hscroll-mode): Don't cancel the timer
8681 if HScroll mode is enabled in some other buffer.
8683 * isearch.el (isearch-done): If search ends in middle of intangible
8684 text (due to text property), move on to the limit of that text.
8686 1999-07-01 Andrew Innes <andrewi@gnu.org>
8688 * man.el (Man-build-man-command): Use value of null-device,
8689 instead of hard-coding "/dev/null".
8691 * dos-w32.el (untranslated-canonical-name): Avoid expanding
8692 ange-ftp file names, which might force ange-ftp to prompt for a
8695 * ange-ftp.el (ange-ftp-load): Bind load-force-doc-strings to t,
8696 to prevent references to temp files.
8698 1999-06-30 Richard Stallman <rms@gnu.org>
8700 * progmodes/sh-script.el (sh-feature): If nothing is known
8701 about the given shell, use the values for `sh'.
8703 1999-06-30 Andre Spiegel <spiegel@inf.fu-berlin.de>
8705 * vc.el (vc-fetch-cvs-status): Use "-l" option for "cvs status",
8706 to make it non-recursive.
8708 * vc-hooks.el (vc-find-cvs-master): Set case-fold-search correctly.
8710 1999-06-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8712 * auto-show.el (auto-show-mode): Fix Typo in :set.
8714 1999-06-29 Richard M. Stallman <rms@gnu.org>
8716 * progmodes/sh-script.el (sh-mode): When setting syntax
8717 table, default to the standard one.
8719 1999-06-27 Richard M. Stallman <rms@gnu.org>
8721 * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
8723 1999-06-27 Stefan Monnier <monnier@cs.yale.edu>
8725 * textmodes/reftex.el (reftex-pop-to-bibtex-entry): Don't pop up
8726 a frame when `return' is requested (even if pop-up-frames = t)
8727 * textmodes/bibtex.el (bibtex-mode): `font-lock-mark-block-function'
8728 should only be set for the bibtex buffer.
8730 * emacs-lisp/autoload.el (generated-autoload-file): Doc fix.
8732 * progmodes/compile.el: Deal with compilation-error-screen-columns
8735 1999-06-27 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
8737 * comint.el (comint-password-prompt-regexp): Allow "(again)".
8739 1999-06-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
8741 * cal-x.el (calendar-only-one-frame-setup): New function.
8742 * calendar.el (calendar): Call it if requested.
8744 1999-06-24 Karl Heuer <kwzh@gnu.org>
8746 * startup.el (iso-8859-n-locale-regexp): Doc fix.
8748 1999-06-22 Richard M. Stallman <rms@gnu.org>
8750 * mail/supercite.el (sc-emacs-features): Doc fix.
8752 1999-06-22 Karl Heuer <kwzh@gnu.org>
8754 * files.el (auto-mode-alist): Add pike-mode.
8756 1999-06-20 Paul R. Eggert <eggert@twinsun.com>
8758 * tar-mode.el (tar-header-block-tokenize): Don't assume that the
8759 last byte of a numeric field is a space or a NUL. Parse it as
8760 potentially part of the number. This is used by GNU tar
8761 1.12.64012 to handle larger values.
8763 1999-06-20 Karl Heuer <kwzh@gnu.org>
8765 * custom.el (custom-handle-keyword): Fix error message.
8767 1999-06-18 Andrew Innes <andrewi@gnu.org>
8769 * mail/smtpmail.el (smtpmail-send-it): Use
8770 convert-standard-filename to make file names for queued mail safe
8771 on Windows (`:' is invalid in file names on Windows).
8773 1999-06-17 Kenichi Handa <handa@etl.go.jp>
8775 * international/mule-cmds.el (describe-current-input-method):
8776 Current-input-method is string.
8777 (toggle-input-method): Docstring fixed.
8779 * international/mule-diag.el
8780 (describe-current-coding-system-briefly): Fix format string.
8782 * international/mule-util.el (coding-system-eol-type-mnemonic):
8783 Docstring modified. Return a string.
8785 1999-06-17 Alex Schroeder <a.schroeder@bsiag.ch>
8787 * sql.el (sql-input-ring-file-name): Doc fix.
8789 1999-06-17 Richard M. Stallman <rms@gnu.org>
8791 * calendar/cal-x.el (special-display-buffer-names):
8792 Don't put (get-file-buffer diary-file) on this list.
8794 1999-06-17 Mark W Maimone <mwm@helios.jpl.nasa.gov>
8796 * play/mpuz.el (mpuz-try-proposal): Fix message call.
8797 Don't penalize player for certain impossible guesses.
8799 1999-06-16 Andrew Innes <andrewi@gnu.org>
8801 * ls-lisp.el (ls-lisp-format-time): If timestamp is invalid,
8802 return the string "Unk 0 0000" so at least it appears to be a
8803 valid timestamp to `dired-move-to-filename-regexp'.
8805 1999-06-15 Ken'ichi Handa <handa@gnu.org>
8807 * ps-print.el (ps-control-character): Fix previous change.
8809 1999-06-15 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8811 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Avoid
8812 multiple output of the last message.
8814 1999-06-14 Eli Zaretskii <eliz@gnu.org>
8816 * term/internal.el (IT-display-table-setup): Do not remap \222 to
8817 the ASCII apostrophe, as most DOS codepages have some other glyph
8820 1999-06-14 Ken'ichi Handa <handa@gnu.org>
8822 * language/ethio-util.el (setup-ethiopic-environment-internal):
8823 Use quail-activate-hook instead of obsolete hook quail-mode-hook.
8824 (exit-ethiopic-environment): Likewize.
8826 1999-06-12 Richard M. Stallman <rms@gnu.org>
8828 * cus-start.el (scroll-preserve-screen-position): Fix typo in type.
8830 1999-06-12 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
8832 * emulation/crisp.el (crisp-mode): (defcustom) Initialize with
8833 custom-initialize-default to avoid infinite loop.
8834 (crisp-mode): (defun) Call transient-mark-mode here, not when
8835 loading the file. Run crisp-mode-hook here, and run
8836 crisp-load-hook when loading the file.
8838 * mail/rmailout.el (rmail-output-read-rmail-file-name): If in
8839 rmail-summary buffer, search for pattern in rmail-file.
8841 * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Fix typo.
8843 * progmodes/cperl-mode.el (cperl-invalid-face): Fix custom type.
8845 * ps-print.el (ps-printer-name): Fix custom type.
8847 1999-06-12 Reto Zimmermann <reto@synopsys.com>
8849 * progmodes/vhdl-mode.el (vhdl-port-copy): Fix parsing bug.
8850 (vhdl-port-paste-generic-map): Fix indentation bug.
8851 (vhdl-port-paste-port-map): Fix indentation bug.
8852 (vhdl-scan-file-contents): Make scanning case insensitive.
8854 1999-06-11 Richard M. Stallman <rms@gnu.org>
8856 * files.el (write-file): When buffer is not already visiting a file,
8857 don't put buffer name in the minibuffer, just make it the default.
8858 Also handle just directory as arg usefully in that case.
8860 * simple.el (sendmail-user-agent-compose):
8861 Ignore case when inserting the rest of the "other" headers.
8863 * help.el (help-for-help): Mention C-h C-i. Clear up C-h n.
8865 * info-look.el (info-lookup-file, info-lookup-symbol): Doc fix.
8866 (info-lookup-interactive-arguments): Never insert the default
8867 into the minibuffer automatically.
8869 * emacs-lisp/cl-extra.el (getf): Don't call get*.
8871 1999-06-09 Richard M. Stallman <rms@gnu.org>
8873 * simple.el (shell-command): Avoid printing "mark set" message.
8875 1999-06-09 Dave Love <fx@gnu.org>
8877 * progmodes/compile.el (compilation-error-regexp-alist): Allow
8878 digits in program name in first pattern.
8880 1999-06-09 Andre Spiegel <spiegel@inf.fu-berlin.de>
8882 * vc.el (vc-dired-mode): Don't match anything before the date in
8883 dired-move-to-filename-regexp.
8885 1999-06-07 Ken'ichi Handa <handa@gnu.org>
8887 * international/quail.el (quail-define-rules): Fix typo in
8890 1999-06-05 Stephen Eglen <stephen@gnu.org>
8892 * iswitchb.el (iswitchb-default-keybindings): Add
8893 iswitchb-minibuffer-setup to minibuffer-setup-hook here rather
8894 than when package is loaded.
8896 1999-06-04 Richard M. Stallman <rms@gnu.org>
8898 * startup.el (command-line): Don't set user-init-file directly;
8899 tell `load' to set it.
8901 * ange-ftp.el (ange-ftp-shell-command): Handle error-buffer arg.
8903 * simple.el (next-history-element):
8904 Handle minibuffer-text-before-history properly when reading sexps.
8906 * disp-table.el (standard-display-european):
8907 For an interactive call by the user,
8908 don't set enable-multibyte-characters,
8909 and don't set the terminal coding system.
8911 * textmodes/refbib.el: Don't print any messages or display
8912 a buffer when loading the library.
8913 (r2b-help): Doc fix.
8914 (r2b-help-message): Update the documentation.
8915 (r2b-load-quietly): Variable deleted.
8916 (r2b-convert-buffer): Doc fix.
8918 1999-06-04 Dave Love <fx@gnu.org>
8920 * help.el (help-xref-interned): Fix insertion of fdoc and revamp.
8922 * auto-show.el: Don't change hooks on loading.
8923 (auto-show-mode): Autoload. Default to nil. Add :set &c.
8924 (auto-show-mode): Add to hooks here.
8926 1999-06-04 Richard Sharman <rsharman@pobox.com>
8928 * emacs-lisp/regexp-opt.el (regexp-opt-group): Avoid infinite
8929 recursion on bogus input.
8931 1999-06-04 Eric M. Ludlam <zappo@ultranet.com>
8933 * speedbar.el (speedbar-hack-buffer-menu): Fixed so if the user
8934 does not select a buffer from the buffers menu, then the attached
8935 frame is not switched to anything.
8937 1999-06-03 Ken'ichi Handa <handa@gnu.org>
8939 * language/vietnamese.el (ccl-encode-vscii): Typo fixed
8940 (viet-viscii-...->viet-vscii...).
8942 * international/mule-conf.el (iso-2022-7bit-lock-ss2): Typo fixed.
8944 1999-06-01 Dave Love <fx@gnu.org>
8946 * progmodes/fortran.el: Add :link to defgroup.
8947 (fortran-blink-matching-if): Match ELSE statements too.
8948 (fortran-fill-statement, fortran-fill): Bind auto-fill-function so
8949 that filling is always done.
8951 1999-05-31 Richard M. Stallman <rms@gnu.org>
8953 * simple.el (append-next-kill): Use an arg to distinguish
8954 interactive calls from Lisp calls, rather than (interactive-p).
8956 * international/iso-transl.el (iso-transl-language-alist):
8957 Interchange n and N.
8959 1999-05-31 Dave Love <fx@gnu.org>
8961 * msb.el Add to minor-mode-map-alist. Remove hook installation
8962 and keymap munging on load.
8963 (msb-mode): New option.
8964 (msb-files-by-directory, msb-sort-by-name, msb-sort-by-directory):
8966 (msb-mode-map): New variable.
8967 (msb-mode): New command.
8969 1999-05-31 Dave Love <fx@gnu.org>
8971 * ispell.el: (ispell-alternate-dictionary): Fix custom type.
8972 (ispell-complete-word-dict): Likewise.
8974 1999-05-31 Eli Zaretskii <eliz@gnu.org>
8976 * forms.el (forms-save-buffer): Call set-buffer-modified-p to
8977 force the data buffer to be saved, even if the data didn't
8978 change, in case the write filter was modified. Restore the
8979 current record after read-file-filter finishes.
8981 1999-05-29 Karl Heuer <kwzh@gnu.org>
8983 * ispell4.el: Obsolete; file deleted.
8985 * textmodes/texinfmt.el (texinfo-format-direntry): Avoid blank line.
8987 * font-lock.el (font-lock-apply-syntactic-highlight): Don't die if
8988 VALUE is a syntax table.
8990 * emacs-lisp/cl.el (custom-print-functions): Add autoload cookie.
8992 * simple.el (zap-to-char): Doc fix.
8994 1999-05-27 Ken'ichi Handa <handa@gnu.org>
8996 * isearch.el (isearch-quote-char): Don't assume character codes
8997 0200 - 0237 stand for characters in some single-byte character
9000 1999-05-27 Dave Love <fx@gnu.org>
9002 * startup.el: (iso-8859-n-locale-regexp): Don't match 8859-15 &c.
9004 1999-05-27 Andreas Schwab <schwab@gnu.org>
9006 * dired-aux.el (dired-insert-subdir-doinsert): Check that the
9007 headerline does not exist already.
9009 1999-05-26 Richard Stallman <rms@gnu.org>
9011 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
9012 Avoid nested null-loops.
9014 1999-05-26 Ken'ichi Handa <handa@gnu.org>
9016 * international/characters.el: Typo fixed; prefered->preferred.
9018 * international/mule-cmds.el (find-coding-systems-for-charsets):
9019 Typo fixed; prefered->preferred.
9021 * map-ynp.el (map-y-or-n-p): Don't inherit the current input
9022 method in read-event.
9024 * international/mule.el (charset-info): Doc-string fixed.
9026 1999-05-25 Ken'ichi Handa <handa@gnu.org>
9028 * mail/smtpmail.el (smtpmail-send-it): Bind
9029 smtpmail-code-conv-from properly.
9030 (smtpmail-send-data-1): If DATA is a multibyte string, encode it
9031 by smtpmail-code-conv-from.
9033 1999-05-24 Richard Stallman <rms@gnu.org>
9035 * emulation/crisp.el (crisp-submit-bug-report): Function deleted.
9036 Binding deleted also.
9038 1999-05-24 Karl Heuer <kwzh@gnu.org>
9040 * comint.el (comint-bol-or-process-mark): Doc fix.
9042 1999-05-23 Dave Love <fx@gnu.org>
9044 * emulation/crisp.el (crisp-mode-map): Don't inherit global-map.
9045 Enter it on minor-mode-map-alist.
9046 (crisp-mode): Re-named from `crsip-mode-enabled'. Users changed.
9047 Autoload. Add custom setter.
9048 (crisp-mark-line): Doc fix.
9049 (crisp-mode): Autoload. Re-write not to frob keymaps directly.
9050 (crisp-mode-hook): Define.
9052 1999-05-23 Ken'ichi Handa <handa@gnu.org>
9054 * files.el (recover-file): Recover buffer-file-coding-system.
9056 1999-05-22 Richard Stallman <rms@gnu.org>
9058 * vc.el (vc-dired-mode): Make the dired-move-to-filename-regexp
9059 regexp match the date, to avoid treating date as file size.
9060 Add YYYY S option to WESTERN/
9062 * bookmark.el: Delete some XEmacs compatibility code.
9063 (bookmark-jump-noselect): Check vc-backend.
9065 * subr.el (add-to-list): Doc fix.
9067 1999-05-21 Stephen Eglen <stephen@gnu.org>
9069 * diary-lib.el (diary-mail-entries): Use fancy-diary-buffer.
9071 1999-05-18 Richard Stallman <rms@gnu.org>
9073 * textmodes/texinfmt.el (texinfo-anchor): Don't delete a
9074 non-space after the @anchor command.
9075 (texinfo-format-var): Handle other nested constructs, using
9076 texinfo-parse-expanded-arg and texinfo-discard-command, not
9077 texinfo-parse-arg-discard.
9079 * emacs-lisp/debug.el (debugger-outer-inhibit-redisplay): New variable.
9080 (debug): Bind and use debugger-outer-inhibit-redisplay.
9081 Bind inhibit-redisplay to nil.
9082 (debugger-env-macro): Treat inhibit-redisplay like other outside vars.
9084 1999-05-17 Dave Love <fx@gnu.org>
9086 * help.el (describe-function-1): Extra arg, interactive-p.
9087 (describe-key, describe-function): Use it.
9089 1999-05-17 Karl Heuer <kwzh@gnu.org>
9091 * ispell.el (ispell-local-dictionary-alist): Add autoload cookie.
9093 1999-05-16 Dave Love <fx@gnu.org>
9095 * cus-start.el (all): Delete selective-display. Add scroll-margin,
9096 scroll-preserve-screen-position, scroll-conservatively.
9098 1999-05-16 Dave Love <fx@gnu.org>
9100 * emacs-lisp/byte-opt.el (byte-optimize-plus): Fix 1-arg case.
9102 1999-05-15 Reto Zimmermann <reto@Synopsys.COM>
9104 * progmodes/vhdl-mode.el: Completely revised and massively extended.
9106 1999-05-15 Francesco Potorti` <F.Potorti@cnuce.cnr.it>
9108 * progmodes/sh-script.el (sh-mode): Do not fail if buffer has no
9109 magic number and is not associated with a file.
9111 1999-05-14 Richard M. Stallman <rms@gnu.org>
9113 * files.el (find-file-noselect-1): Fix previous change.
9115 1999-05-14 Simon Marshall <simon@gnu.org>
9117 * fast-lock.el (fast-lock-cache-name): Fix test for `windows-nt'.
9119 1999-05-13 Ken'ichi Handa <handa@gnu.org>
9121 * international/mule-diag.el (mule-diag): Change MULE to Mule in
9124 * international/mule-cmds.el: Change MULE to Mule in docstrings
9127 1999-05-10 Kenichi HANDA <handa@etl.go.jp>
9129 * ps-mule.el (ps-mule-prologue): Fix the definition of DefFontMule
9130 to correctly reflect the value of BaseLineOffset in
9131 RelativeCompose. Now the value of RelativeCompose is an array of
9132 low and high positions.
9133 (ps-mule-cmpchar-prologue): Adjust the definition of BC, EC, and
9134 RLC for the above change.
9136 1995-05-11 Joel N. Weber II <devnull@melange.gnu.org>
9138 * comint.el (comint-password-prompt-regexp): Modified to match the
9139 output of ksu and ssh-add.
9141 1999-05-11 Kenichi HANDA <handa@etl.go.jp>
9143 * language/korea-util.el (isearch-toggle-korean-input-method):
9144 Adjusted for the change of input method handling in isearch.el.
9145 (isearch-hangul-switch-symbol-ksc): Likewise.
9146 (isearch-hangul-switch-hanja): Likewise.
9148 1999-05-10 Dave Love <fx@gnu.org>
9150 * help.el (help-make-xrefs): Fix typo.
9152 1999-05-10 Andreas Schwab <schwab@gnu.org>
9154 * emacs-lisp/byte-opt.el (byte-boolean-vars): Add
9155 unibyte-display-via-language-environment.
9157 * help.el (help-make-xrefs): Handle more cases when looking for
9158 commands in a keymap description.
9160 1999-05-10 Eli Zaretskii <eliz@gnu.org>
9162 * loadup.el: For ms-dos systems, load ccl and codepage.
9164 1999-05-09 Ken'ichi Handa <handa@gnu.org>
9166 * ps-print.el (ps-control-character): Call
9167 ps-mule-prepare-ascii-font to setup ASCII fonts.
9169 * ps-mule.el (ps-mule-begin-job): Redo this change "if
9170 ps-multibyte-buffer is nil, use
9171 ps-mule-font-info-database-default."
9173 1999-05-08 Ken Stevens <k.stevens@ieee.org>
9175 * ispell.el (ispell-local-dictionary-alist): New variable for
9176 customizing local dictionaries not accessable by everyone.
9177 (ispell-dictionary-alist): Loads `ispell-local-dictionary-alist'.
9178 (ispell-required-version): Changed format `(major minor
9179 revision)' to support general pattern matching.
9180 (ispell-tex-skip-alists): AMS Tex block comment and `\author'
9181 skip region commented out due to incorrect skip potential in std latex.
9182 (ispell-word): Removed `when' macro. Fixed bug of not restoring
9183 cursor point on small words for calls from `ispell-minor-mode'.
9184 (check-ispell-version): Tests and accepts versions major.minor
9185 and above, with adjustments for interactions in 3.1.0-3.1.11.
9186 (ispell-get-line): No longer skips ispell process special characters.
9187 (ispell-comments-and-strings): Removed `when' macro call.
9188 (ispell-minor-check): Requires ispell-word to restore cursor point.
9189 (ispell-buffer-local-parsing): Supports checking comments only.
9191 1999-05-08 Karl Heuer <kwzh@gnu.org>
9193 * comint.el (comint-password-prompt-regexp): Fix last change to be
9196 1999-05-07 Richard M. Stallman <rms@gnu.org>
9198 * subr.el (with-temp-message): Fix the other call to message
9201 1999-05-07 Michael Ernst <mernst@alum.mit.edu>
9203 * gud.el (gud-format-command): "%F" means file sans extension.
9204 (jdb): Use %F, not %f, for gud-break.
9206 1999-05-07 Joel N. Weber II <devnull@melange.gnu.org>
9208 * comint.el (comint-password-prompt-regexp): Modified so that it
9209 matches the output of kinit.
9211 1999-05-06 Greg Stark <gsstark@mit.edu>
9213 * timezone.el (timezone-parse-date): Recognize new format used in
9216 1999-05-04 Tudor Hulubei <tudor@cs.unh.edu>
9218 * international/iso-acc.el (iso-languages): Add latin-2 cedillas.
9220 1999-05-04 Andrew Innes <andrewi@gnu.org>
9222 * time.el (display-time-update): Allow for wrap-around when
9223 checking against display-time-server-down-time.
9225 1999-05-04 Ken'ichi Handa <handa@gnu.org>
9227 * international/mule-diag.el (describe-coding-system): Fix English
9230 1999-05-03 Jason Rumney <jasonr@altavista.net>
9232 * term/w32-win.el: Change the x-charset-registry property for the
9233 Japanese charsets that are supported by Japanese Windows fonts.
9235 1999-05-03 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
9237 * diary-lib.el (diary-remind): Rewritten to behave sensibly for
9238 diary-block diary entries for which the reminders and the diary
9239 entries can overlap.
9241 1999-05-02 Jason Rumney <jasonr@altavista.net>
9243 * term/w32-win.el (mouse-set-font): Ensure constructed fontset
9244 matches the font selected in the dialog.
9246 1999-05-02 Dave Love <fx@gnu.org>
9248 * browse-url.el (browse-url-browser-function): Add :version.
9250 * international/mule.el (auto-coding-alist): Add .tgz.
9252 1999-05-2 Eli Zaretskii <eliz@is.elta.co.il>
9254 * international/codepage.el (cp-coding-system-for-codepage-1):
9255 Make the magnification parameter for the -dos encoder be 2.
9257 1999-05-2 Andrew Innes <andrewi@gnu.org>
9259 * term/w32-win.el (w32-drag-n-drop): Select file in window where
9260 it is dropped, rather than current window.
9262 * mail/smtpmail.el (smtpmail-deduce-address-list): Bind variables
9263 after switching buffer, as case-fold-search is a buffer local
9266 * w32-fns.el (convert-standard-filename): Only convert directory
9267 separators to backslash if the interactive shell is one of the
9268 standard Windows shells that has DOS semantics.
9270 * ls-lisp.el (ls-lisp-format-time): Trap errors from
9271 format-time-string, and return a suitable string to indicate the
9272 timestamp was invalid.
9274 * hexl.el (hexlify-command): Apply shell-quote-argument after
9275 expanding hexl-program in case exec-directory contains a space.
9276 (dehexlify-command): Ditto.
9278 * dos-w32.el (file-name-buffer-file-type-alist): Remove various
9279 file extension regexps which aren't necessarily binary files.
9280 (direct-print-region-helper): Use subst-char-in-string instead of
9281 binding directory-sep-char to convert filenames to DOS syntax.
9282 (direct-print-region-use-command-dot-com): New variable.
9283 (direct-print-region-helper): Use it to control whether to invoked
9284 command.com to print on Windows 9x.
9286 * browse-url.el (browse-url-browser-function): Default to
9287 browse-url-default-windows-browser on windows-nt.
9288 (browse-url-default-windows-browser): New function.
9290 1999-04-30 Eli Zaretskii <eliz@is.elta.co.il>
9292 * forms.el (forms-mode): Don't call forms-first-record or
9293 forms-last-record if the data file has zero records.
9295 1999-04-29 Richard M. Stallman <rms@gnu.org>
9297 * files.el (find-file-noselect-1): If buffer-file-name has changed
9298 after find-file-not-found-hooks runs, recompute the truename.
9299 And don't use FILENAME after that point.
9301 1999-04-27 Dave Love <fx@gnu.org>
9303 * paren.el (show-paren-mode)
9304 * which-func.el (which-func-mode-global)
9305 * type-break.el (type-break-mode)
9306 * time.el (display-time-mode)
9307 * rsz-mini.el (resize-minibuffer-mode)
9308 * mouse-sel.el (mouse-sel-mode)
9309 * icomplete.el (icomplete-mode)
9310 * hscroll.el (hscroll-global-mode)
9311 * help.el (temp-buffer-resize-mode)
9312 * font-lock.el (global-font-lock-mode)
9313 * delsel.el (delete-selection-mode)
9314 * avoid.el (mouse-avoidance-mode)
9315 * autoinsert.el (auto-insert-mode)
9316 * winner.el (winner-mode): Doc fix.
9318 1999-04-26 Karl Heuer <kwzh@gnu.org>
9320 * mail/rmail.el (rmail-next-same-subject): When searching, ignore
9321 the same whitespace that was ignored in choosing the subject string.
9323 1999-04-26 Richard M. Stallman <rms@gnu.org>
9325 * info.el (Info-find-node): Position properly after finding anchor.
9327 * cus-start.el (all): Handle unibyte-display-via-language-environment.
9329 * simple.el (indent-new-comment-line): Fix previous change.
9331 * complete.el: Delete the wildcard expansion feature
9332 since that is now standard in find-file.
9333 (PC-try-load-many-files): Function deleted.
9334 (PC-after-load-many-files): Function deleted.
9335 (PC-many-files-list): Variable deleted.
9336 (PC-disable-wildcards): Variable deleted.
9337 (partial-completion-mode): Don't enable the wildcard feature.
9339 * complete.el (PC-look-for-include-file): Don't set global variables
9340 `error', `buf' and `filename' here.
9342 * mail/sendmail.el (mail-sent-via): Use copy-marker not make-marker.
9344 1999-04-26 John Wiegley <johnw@oneworld.new-era.com>
9346 * textmodes/outline.el (outline-regexp): Doc fix.
9348 1999-04-26 John Wiegley <johnw@borland.com>
9350 * progmodes/compile.el (compilation-error-regexp-alist): Recognize
9351 C++Builder 4.0 error message syntax.
9353 1999-04-26 Mark Diekhans <markd@Grizzly.COM>
9355 * progmodes/compile.el (grep-compute-defaults): If xargs -e isn't
9356 supported, use find -exec.
9358 1999-04-26 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp>
9360 * textmodes/texinfmt.el (texinfo-format-buffer): Bind
9361 coding-system-for-write, to avoid hanging when non-interactive.
9363 1999-04-26 Dirk Herrmann <D.Herrmann@tu-bs.de>
9365 * textmodes/bibtex.el (bibtex-reference-head): Allow entries to
9366 start with a newline.
9368 1999-04-13 Ken'ichi Handa <handa@gnu.org>
9370 * international/mule-conf.el (x-ctext): New coding system.
9372 1999-04-12 Richard M. Stallman <rms@gnu.org>
9374 * international/mule-cmds.el (input-method-function):
9375 Add permanent-local property.
9377 1999-04-12 Dave Love <fx@gnu.org>
9379 * jka-compr.el (jka-compr-insert-file-contents): Fix previous
9380 change to use jka-compr-byte-compiler-base-file-name.
9382 * supercite.el (sc-scan-info-alist): Revert last change.
9383 (sc-attrib-selection-list): Fix :type here instead.
9385 1999-04-11 Eli Zaretskii <eliz@gnu.org>
9387 * international/mule.el (auto-coding-alist-lookup): Include ms-dos
9388 in the list of case-insensitive filesystems.
9390 1999-04-09 Kenichi Handa <handa@etl.go.jp>
9392 * international/fontset.el (create-fontset-from-fontset-spec):
9393 Don't register duplicated alias fontset names.
9395 1999-04-08 Richard Stallman <rms@gnu.org>
9397 * international/mule.el (auto-coding-alist-lookup): New function.
9398 (set-auto-coding): Use auto-coding-alist-lookup.
9400 * jka-compr.el (jka-compr-insert-file-contents):
9401 Use auto-coding-alist-lookup to check for files that
9402 should not have eol conversion, in the unibyte case.
9404 1999-04-07 Dave Love <fx@gnu.org>
9406 * help.el (describe-variable): Check custom-loads property as well
9409 * abbrev.el (abbrev-mode): Customizing sets the default value.
9411 1999-04-08 Andre Spiegel <spiegel@inf.fu-berlin.de>
9413 * vc.el (vc-backend-revert): For CVS files that were made
9414 writeable with "cvs edit", call "cvs unedit" to undo that.
9416 1999-04-08 Dave Love <fx@gnu.org>
9418 * mail/supercite.el: (sc-attrib-selection-list): Fix custom type
9420 (sc-emacs-features): Recognize Emacs 20.
9421 (sc-read-string): Use history arg.
9422 (sc-scan-info-alist): Check for rtnvalue a cons.
9424 1999-04-08 Kenichi HANDA <handa@etl.go.jp>
9426 * gnus/gnus-mule.el (gnus-mule-message-send-mail-function): Find a
9427 coding system to encode the message by
9428 select-message-coding-system.
9430 1999-04-07 Richard Stallman <rms@gnu.org>
9432 * progmodes/sql.el (sql-send-paragraph): Delete duplicate definition.
9434 * winner.el: Reorder definitions.
9436 * mail/mh-utils.el (mh-find-progs): Try /etc/nmh and lib/nmh dirs.
9438 * mail/rmail.el (rmail-decode-babyl-format):
9439 Undo previous change.
9441 1999-04-06 Richard Stallman <rms@gnu.org>
9443 * info.el (Info-find-node): Check for an anchor at the
9444 proper place, before reading an indirect file.
9446 * imenu.el (imenu--mouse-menu): Use assq when searching in FINAL.
9448 * jka-compr.el (jka-compr-insert-file-contents):
9449 Use raw-text-unix when we want no conversion.
9451 1999-04-06 Thierry Emery <Thierry.Emery@nmu.alcatel.fr>
9453 * timezone.el (timezone-parse-date): Corrected regexp for
9454 style (5) date format so that tenths of seconds are optional.
9456 1999-04-05 Eli Zaretskii <eliz@gnu.org>
9458 * term/internal.el (dos-cpNNN-setup): New function, with the guts
9459 of dos-codepage-setup.
9460 (cjk-codepages-alist): New variable, an alist of Far-Eastern
9461 codepages for which there's no need to set up cpNNN coding
9463 (dos-codepage-setup): Support Far-Eastern DOS terminals.
9465 1999-04-05 Richard Stallman <rms@gnu.org>
9467 * mail/rmail.el (rmail-ignored-headers): Doc fix.
9469 1999-04-02 Richard Stallman <rms@gnu.org>
9471 * progmodes/compile.el (compilation-handle-exit): Do right thing
9472 if (car status) doesn't end in a newline.
9474 1999-04-01 Dave Love <fx@gnu.org>
9476 * progmodes/sql.el (SQL): Add defgroup :version.
9478 1999-03-31 Richard M. Stallman <rms@caffeine.ai.mit.edu>
9480 * emacs-lisp/bytecomp.el (byte-compile-file): Clear
9481 buffer-file-coding-system. If the coding system used is raw-text,
9482 etc., make the *Compiler Input* buffer unibyte.
9484 * international/mule.el (find-new-buffer-file-coding-system): Doc fix.
9486 * loadup.el: Don't write the fns-...el file if not dumping.
9488 1999-03-31 Dave Love <fx@gnu.org>
9490 * snmp-mode.el (snmp): Fix defgroup :version.
9492 * hilit-chg.el (highlight-changes): Add defgroup :version.
9494 1999-03-31 Andreas Schwab <schwab@gnu.org>
9496 * gnus/gnus-sum.el (gnus-data-compute-positions): Move down after
9497 the gnus-save-hidden-threads macro.
9499 1999-03-30 Per Abrahamsen <abraham@dina.kvl.dk>
9501 * faces.el (face-set-after-frame-default): Obey the
9502 `customized-face' for new faces.
9504 1999-03-30 Dave Love <fx@gnu.org>
9506 * international/mule-cmds.el (current-language-environment): Doc fix.
9507 * abbrev.el (abbrev-mode): Doc fix.
9508 * autoinsert.el (auto-insert-mode): Doc fix.
9509 * complete.el (partial-completion-mode): Doc fix.
9510 * avoid.el (mouse-avoidance-mode): Doc fix.
9511 * delsel.el (delete-selection-mode): Doc fix.
9512 * font-lock.el (global-font-lock-mode): Doc fix.
9513 * help.el (temp-buffer-resize-mode): Doc fix.
9514 * hscroll.el (hscroll-global-mode): Doc fix.
9515 * icomplete.el (icomplete-mode): Doc fix.
9516 * mouse-sel.el (mouse-sel-mode): Doc fix.
9517 * paren.el (show-paren-mode): Doc fix.
9518 * rsz-mini.el (resize-minibuffer-mode): Doc fix.
9519 * time.el (display-time-mode): Doc fix.
9520 * type-break.el (type-break-mode): Doc fix.
9521 * which-func.el (which-func-mode-global): Doc fix.
9522 * winner.el (winner-mode): Doc fix.
9524 1999-03-30 Michael Ernst <mernst@alum.mit.edu>
9526 * wid-edit.el (widget-before-change): Signal text-read-only rather
9527 than an ordinary error.
9529 1999-03-30 Richard M. Stallman <rms@gnu.org>
9531 * repeat.el: Don't require advice.
9532 (repeat): Do function-indirection in check for kbd macro.
9533 In self-insert case, use the *last* char in INSERTION.
9535 1999-03-30 Karl Heuer <kwzh@gnu.org>
9537 * progmodes/cc-cmds.el (c-indent-command): Doc fix.
9539 1999-03-29 Andreas Schwab <schwab@gnu.org>
9541 * textmodes/tex-mode.el (tex-start-shell): Use add-hook for
9542 comint-input-filter-functions. Make variables related to shell
9543 directory tracking local.
9545 1999-03-26 Andreas Schwab <schwab@gnu.org>
9547 * emacs-lisp/debug.el (debug): Make *Backtrace* buffer writable.
9549 * simple.el (shell-command-on-region): Cope with exit-status being
9550 nil, which happens if call-process-region was interrupted.
9552 1999-03-26 Richard M. Stallman <rms@gnu.org>
9554 * simple.el (indent-new-comment-line): Handle use at a point
9555 after a comment-end. Handle multiple comments.
9557 * mail/rmail.el (rmail-decode-babyl-format):
9558 To prevent locking, bind buffer-file-name to nil.
9560 1999-03-26 Karl Fogel <kfogel@red-bean.com>
9562 * mail-hist.el (mail-hist-current-header-name): Don't make
9563 off-by-one-error when determining if in message body.
9565 1999-03-25 Andrew Innes <andrewi@gnu.org>
9567 * w32-fns.el (set-default-process-coding-system): Copied from
9568 dos-w32.el, but modified to use Unix line endings for process
9569 input, and to add a suitable entry to process-coding-system-alist
9572 * dos-fns.el (set-default-process-coding-system): Copied from
9575 * dos-w32.el (set-default-process-coding-system): Move function to
9576 dos-fns.el; a different version is used in w32-fns.el.
9578 1999-03-24 Dave Love <fx@gnu.org>
9580 * info.el (Info-directory-list): Revert change to re-writing
9581 Info-default-directory-list, but put `alternative' first.
9582 (Info-insert-dir): Modify selecting the top dir file as a consequence.
9584 1999-03-23 Simon Marshall <simon@gnu.org>
9586 * font-lock.el (c-font-lock-keywords-2): Only fontify a label if it is
9587 on the line by itself.
9588 (java-font-lock-keywords-2): Likewise. Don't fontify a class name if
9589 it is not in a declarative context.
9591 1999-03-22 Per Abrahamsen <abraham@dina.kvl.dk>
9593 * cus-edit.el (custom-variable-prompt): Allow customization of
9596 1999-03-22 Kenichi HANDA <handa@etl.go.jp>
9598 * simple.el (what-cursor-position): Don't cause error when point
9599 is at invalid multibyte sequence.
9601 1999-03-21 Karl Heuer <kwzh@gnu.org>
9603 * complete.el (partial-completion-mode): Doc fix.
9605 1999-03-19 Richard M. Stallman <rms@gnu.org>
9607 * progmodes/cplus-md.el (old-c++): Remove :group.
9609 * progmodes/c-mode.el (old-c): Remove :group.
9611 1999-03-18 Simon Marshall <simon@gnu.org>
9613 * font-lock.el (c-font-lock-keywords-2): Added "complex" type.
9614 (java-font-lock-keywords-2): Added "strictfp" keyword.
9616 1999-03-17 Jason Rumney <jasonr@altavista.net>
9618 * w32-fns.el (set-w32-system-coding-system) New function.
9619 (w32-system-coding-system) Initialize to 'iso-latin-1.
9621 1999-03-17 Eli Zaretskii <eliz@gnu.org>
9623 * international/mule-cmds.el (set-language-environment): Fix
9624 previous change: don't use dos-codepage when unbound.
9626 1999-03-17 Karl Heuer <kwzh@gnu.org>
9628 * calendar/appt.el (appt-make-list): Fix previous change.
9630 1999-03-16 Richard M. Stallman <rms@gnu.org>
9632 * window.el (shrink-window-if-larger-than-buffer):
9633 Don't try to redisplay with the cursor at the end
9634 on its own line--that would force a scroll and spoil things.
9636 1999-03-16 Eli Zaretskii <eliz@gnu.org>
9638 * international/mule-cmds.el (set-language-environment): Don't use
9639 cpNNN-nonascii-translation-table if it is unbound.
9641 * term/internal.el (dos-codepage-setup): Compute the unibyte
9642 syntax table and bind unibyte-display-via-language-environment
9643 here, rather than at top level, so that resetting to unibyte in
9644 .emacs works as expected.
9646 1999-03-15 Simon Marshall <simon@gnu.org>
9648 * font-lock.el (c-font-lock-keywords-2): Added "restrict" keyword.
9650 1999-03-14 Milan Zamazal <pdm@pvt.net>
9652 * abbrev.el (inverse-add-abbrev): Inherit the current input method.
9654 1999-03-14 Kenichi Handa <handa@etl.go.jp>
9656 * international/mule-util.el (detect-coding-with-priority):
9657 Restore the internal database.
9659 1999-03-14 Stephen Eglen <stephen@gnu.org>
9661 * mail/sendmail.el (sendmail-send-it): Fix typo in error string
9662 if mail-from-style has invalid value.
9664 1999-03-12 Karl Heuer <kwzh@gnu.org>
9666 * vc.el (vc-delete-logbuf-window): New var.
9667 (vc-finish-logentry): Use it.
9669 1999-03-12 Richard M. Stallman <rms@gnu.org>
9671 * startup.el (command-line-1): Improve startup msg.
9673 1999-03-12 Eric M. Ludlam <zappo@ultranet.com>
9675 * speedbar.el: Added commentary about stealthy functions.
9676 (speedbar-message) new function.
9677 (speedbar-y-or-n-p): New function
9678 (speedbar-with-attached-buffer) Moved macro before reference.
9679 Now uses `save-selected-window'.
9680 (speedbar-mouse-hscroll, speedbar-track-mouse, speedbar-refresh,
9681 speedbar-generic-item-info, speedbar-item-info-file-helper,
9682 speedbar-item-delete, speedbar-insert-generic-list,
9683 speedbar-timer-fn, speedbar-check-vc-this-line,
9684 speedbar-check-obj-this-line, speedbar-fetch-dynaic-etags,
9685 speedbar-buffers-item-info) Use speedbar-message.
9686 (speedbar-item-info) Limit `message-log-max'.
9687 (speedbar-item-load, speedbar-item-copy, speedbar-item-rename,
9688 speedbar-item-delete, speedbar-item-object-delete,
9689 speedbar-buffer-kill-buffer) Use speedbar-y-or-n-p.
9691 1999-03-10 Kenichi Handa <handa@mulelab.etl.go.jp>
9693 * server.el (server-start): Set coding system for the server
9694 process to raw-text.
9695 (server-process-filter): Decode file names if necessary.
9697 1999-03-12 Dave Love <fx@gnu.org>
9699 * textmodes/fill.el (sentence-end-double-space): Doc fix.
9701 * textmodes/paragraphs.el (sentence-end): Doc fix.
9703 1999-03-11 Karl Heuer <kwzh@gnu.org>
9705 * comint.el (comint-password-prompt-regexp): Accept "login password:"
9707 1999-03-09 Karl Heuer <kwzh@gnu.org>
9709 * ispell.el (ispell-dictionary-alist-1): Shorten autoloaded line.
9710 (ispell-dictionary-alist-2): Likewise.
9711 (ispell-dictionary-alist-3, ispell-dictionary-alist-4): New vars.
9712 (ispell-dictionary-alist-5, ispell-dictionary-alist-6): New vars.
9713 (ispell-dictionary-alist): Build from six pieces, not just two.
9715 * ps-bdf.el (bdf-directory-list): Doc fix.
9717 * enriched.el (enriched-mode): Make var permanent-local.
9719 1999-03-09 Dave Love <fx@gnu.org>
9721 * textmodes/sgml-mode.el (html-mode): Use
9722 sentence-end-double-space when setting sentence-end.
9724 1999-03-09 Ken'ichi Handa <handa@gnu.org>
9726 * language/thai.el (tis-620): New alias coding system for thai-tis620.
9728 1999-03-08 Felix Lee <flee@cygnus.com>
9730 * textmodes/flyspell.el (flyspell-mode-on): Use change-major-mode-hook.
9732 * textmodes/outline.el (outline-back-to-heading): Fix invisible-ok.
9734 1999-03-08 Karl Heuer <kwzh@gnu.org>
9736 * dired-aux.el (dired-do-copy-regexp): Doc fix.
9737 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
9739 * dired.el (dired-do-copy-regexp): Doc fix.
9740 (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
9742 1999-03-08 Roger Breitenstein <roger.breitenstein@starfish.com>
9744 * mail/smtpmail.el (smtpmail-do-bcc): Fix regexp.
9746 1999-03-08 Jason Rumney <jasonr@altavista.net>
9748 * international/codepage.el (cp1250-decode-table)
9749 (cp1251-decode-table, cp1253-decode-table)
9750 (cp1257-decode-table): New translation tables for MS Windows codepages.
9751 (cp-make-coding-systems-for-codepage): Accept 4 digit codepages.
9753 1999-03-07 Yoshiki Hayashi <g740685@komaba.ecc.u-tokyo.ac.jp>
9755 * textmodes/texinfmt.el (texinfo-append-refill): Check @c correctly.
9757 1999-03-07 Eli Zaretskii <eliz@gnu.org>
9759 * ps-bdf.el (bdf-directory-list): Different value for ms-dos.
9761 * term/internal.el (top level): Display character 255 as 8bit as well.
9763 1999-03-06 Dave Love <fx@gnu.org>
9765 * progmodes/cc-cmds.el (c-outline-level): Bind
9766 buffer-invisibility-spec.
9768 * progmodes/c-mode.el (c-outline-level): Likewise.
9770 * progmodes/ada-mode.el (ada-outline-level): Likewise.
9772 1999-03-05 Felix Lee <flee@cygnus.com>
9774 * textmodes/outline.el (outline-get-last-sibling): Doc fix.
9776 1999-03-05 Richard M. Stallman <rms@gnu.org>
9778 * bindings.el (complete-symbol): Invert meaning of prefix arg.
9780 1999-03-05 Andrew Innes <andrewi@gnu.org>
9782 * w32-fns.el (convert-standard-filename): Convert directory
9783 separators to Windows format.
9785 1999-03-05 Andreas Schwab <schwab@gnu.org>
9787 * international/skkdic-cnv.el: Provide skkdic-cnv.
9788 (skkdic-convert): Emit code to require skkdic-cnv at compile time.
9789 (batch-skkdic-convert): Doc fix.
9791 1999-03-04 Dave Love <fx@gnu.org>
9793 * custom.el (custom-set-variables): Protect against setter errors.
9795 1999-03-04 Eli Zaretskii <eliz@gnu.org>
9797 * ls-lisp.el (ls-lisp-insert-directory): Protect the sum total of
9798 the file sizes from overflowing.
9799 (ls-lisp-format): If file size is a float, use %8.0f to print it.
9800 Under -s, print the size in blocks with %4.0f, in case they have
9801 a *really* huge file.
9803 1999-03-03 Dave Love <fx@gnu.org>
9805 * options.el (edit-options): Doc fix.
9806 (list-options): Don't lose with unbound symbols. Maintain
9809 1999-03-01 Dave Love <fx@gnu.org>
9811 * mail/supercite.el (sc-attrib-selection-list): Fix custom type.
9813 1999-02-28 Richard M. Stallman <rms@gnu.org>
9815 * ispell.el (ispell-dictionary-alist-override): New variable.
9816 (ispell-dictionary-alist): Don't setq it,
9817 if ispell-dictionary-alist-override is set.
9819 * simple.el (shell-command-default-error-buffer): Renamed from
9820 shell-command-on-region-default-error-buffer.
9821 (shell-command-on-region): Mention in echo area when there
9822 is some error output. Mention success or failure, too.
9823 Accumulate multiple error outputs
9824 going forward, with formfeed in between. Display the error buffer
9825 when we have put something in it.
9826 (shell-command): Add the ERROR-BUFFER argument feature.
9828 1999-02-28 Karl Heuer <kwzh@gnu.org>
9830 * mail/mh-utils.el (mh-lib): Doc fix.
9831 (mh-lib-progs, mh-nmh-p): New vars.
9832 (mh-find-progs): Set mh-lib-progs along with other vars.
9833 (mh-path-search): New arg FUNC-P; if specified, use that instead
9834 of mh-file-command-p.
9835 (mh-install, mh-exec-lib-cmd-output): Use mh-lib-progs.
9837 * mail/mh-comp.el (mh-repl-formfile): New var.
9838 (mh-smail-batch): Don't ignore all arguments.
9839 (mh-reply): Do the right thing when using nmh.
9841 1999-02-27 Kenichi Handa <handa@etl.go.jp>
9843 * international/mule-cmds.el (select-safe-coding-system): Be sure
9844 to show a buffer being decoded.
9846 1999-02-26 Ken'ichi Handa <handa@gnu.org>
9848 * ps-bdf.el (bdf-directory-list): Initialize it to
9849 '("/usr/local/share/emacs/fonts/bdf").
9851 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9853 * ps-print.el: PostScript programming fix.
9854 (ps-print-prologue-1): Fix BeginDoc PostScript procedure (don't use
9855 setpagedevice operator).
9857 1999-02-25 Vinicius Jose Latorre <vinicius@cpqd.com.br>
9859 * ps-print.el: Doc fix, font size specifies landscape and portrait
9861 (ps-print-version): New version number (4.1.4).
9862 (ps-font-size, ps-header-font-size, ps-header-title-font-size):
9863 Specifies landscape and portrait sizes.
9864 (ps-setup, ps-print-quote, ps-line-lengths-internal, ps-nb-pages)
9865 (ps-get-page-dimensions, ps-begin-file, ps-begin-job, ps-generate): Fun
9867 (ps-get-font-size): New fun.
9868 (ps-font-size-internal, ps-header-font-size-internal)
9869 (ps-header-title-font-size-internal): New vars.
9871 * ps-mule.el: Change of ps-print font size variable name.
9872 (ps-mule-generate-font): Fun fix.
9873 (ps-mule-begin-job): Programming uniformization.
9875 1999-02-25 Dave Love <fx@gnu.org>
9877 * help.el (help-xref-info-regexp): Allow linebreaks and capital.
9878 (help-make-xrefs): Do Info case first.
9880 * repeat.el: Don't require advice.
9881 (repeat-last-kill-command): Variable deleted.
9883 1999-02-25 Richard Stallman <rms@gnu.org>
9885 * simple.el (shell-command-on-region): Don't go into the REPLACE = t
9886 case just because the current buffer is the output buffer.
9888 1999-02-25 Kenichi Handa <handa@etl.go.jp>
9890 * simple.el (what-cursor-position): To show the character's
9891 encoding, use encoded-string-description instead of information
9892 of chaset-origin-alist.
9894 * international/mule-cmds.el (iso-2022-control-alist): New variable.
9895 (encoded-code-description): New function.
9896 (encoded-string-description): New function.
9897 (encode-coding-char): New function.
9899 1999-02-25 Andrew Innes <andrewi@gnu.org>
9901 * startup.el (command-line) [windows-nt]: Fix typo in regexp
9902 checking for .emacs[.el[c]].
9904 1999-02-24 Richard Stallman <rms@gnu.org>
9906 * help.el (describe-function-1): Don't print a whole lambda-function.
9908 1999-02-23 Ken'ichi Handa <handa@gnu.org>
9910 * international/encoded-kb.el (encoded-kbd-handle-8bit): Allow
9913 1999-02-23 Karl Heuer <kwzh@gnu.org>
9915 * term/vt100.el (vt100-wide-mode): Use defvar, not defconst.
9917 * midnight.el (clean-buffer-list-kill-regexps): Doc fix.
9918 (clean-buffer-list-kill-buffer-names): Doc fix.
9920 * gud.el (gud-jdb-massage-args): Spelling fix.
9922 1999-02-23 Richard M. Stallman <rms@gnu.org>
9924 * subr.el (with-temp-message): Use %s so % in old msg won't fool us.
9926 1999-02-22 Eli Zaretskii <eliz@gnu.org>
9928 * arc-mode.el (archive-set-buffer-as-visiting-file): Save
9929 excursion while calling set-auto-coding-function.
9931 * play/handwrite.el (handwrite): Require ps-print, and use
9932 ps-printer-name and ps-lpr-command. Call ps-print-region-function
9933 if it's defined, instead of forking ps-lpr-command unconditionally.
9935 1999-02-22 Kenichi Handa <handa@etl.go.jp>
9937 * international/codepage.el (cp-coding-system-for-codepage-1): Put
9938 charset-origin-alist property to a coding system for the codepage.
9940 * international/mule.el: Modify comment for charset-origin-alist
9941 property of a coding system.
9943 * simple.el (what-cursor-position): charset-origin-alist property
9944 of a coding system may be a translation table or a symbol of which
9945 `translation-table' property is a translation table.
9947 1999-02-21 Richard Stallman <rms@gnu.org>
9949 * textmodes/sgml-mode.el (html-tag-alist): Add /head and /body
9950 to the "html" template.
9952 1999-02-21 Peter Breton <pbreton@ne.mediaone.net>
9954 * dirtrack.el (dirtrack): Added docstring. Now returns input.
9956 1999-02-18 Peter Breton <pbreton@ne.mediaone.net>
9958 * dirtrack.el (dirtrack): Check for the prompt in the input string
9959 instead of the buffer.
9961 1999-02-18 Alex Schroeder <a.schroeder@bsiag.ch>
9963 * sql.el: Set version to 1.4.1. Changed mail address to
9964 alex@gnu.org. Mention the mailing list sql.el@gnu.org.
9965 (sql-input-ring-separator): Doc fix.
9966 (sql-mode-syntax-table): double-dash starts comments is defined as
9967 ". 56" instead of ". 12b" for XEmacs.
9968 (sql-stop, sql-interactive-mode): Doc fixes.
9969 (sql-postgres): Queries for database and server, not just one.
9970 (sql-set-sqli-buffer): sql-set-sqli-hook must be quoted.
9972 * sql.el (sql-set-sqli-hook): A hook run when sql-buffer is
9973 changed. This is needed for master.el to work.
9974 (sql-set-sqli-buffer): Use the new hook.
9976 * sql.el (sql-make-alternate-buffer-name): Function that sets
9977 sql-alternate-buffer-name.
9978 (sql-alternate-buffer-name): Possible name of SQLi buffers.
9979 (sql-interactive-mode): Set sql-alternate-buffer-name.
9980 (sql-rename-buffer): New command.
9981 (sql-interactive-mode-menu): Menu for SQLi buffers.
9983 * sql.el (sql-interactive-mode): Doc fix. sql-input-ring-separator
9984 and sql-input-ring-file-name are used to temporarily set
9985 comint-input-ring-file-name and comint-input-ring-separator when
9986 reading and writing input history files.
9988 (sql-stop): Use sql-input-ring-separator and sql-input-ring-file-name.
9989 (sql-input-ring-file-name): New variable with customization.
9990 (sql-input-ring-separator): New variable with customization.
9991 (sql-set-sqli-buffer): Renamed from sql-change-sqli-buffer.
9993 (sql-show-sqli-buffer): The message for "sql-buffer is not set"
9994 now includes the name of the current buffer.
9996 (sql-mode): Set paragraph-separate and paragraph-start so that
9997 sql-send-paragraph sends the entire SQL statements, even if it
9998 contains indented lines.
10000 1999-02-18 Dave Love <fx@gnu.org>
10002 * format.el (format-encode-run-method, format-decode-run-method):
10003 Fix previous change.
10005 1999-02-18 Ken'ichi Handa <handa@gnu.org>
10007 * international/mule.el (coding-system-list): Moved here from
10008 mule-util.el to avoid autoloading mule-util by the call of
10009 select-safe-coding-system.
10011 1999-02-17 Per Abrahamsen <abraham@dina.kvl.dk>
10013 * simple.el (turn-on-auto-fill): Mark it as an option for
10016 1999-02-17 Richard Stallman <rms@gnu.org>
10018 * emacs-lisp/easymenu.el (easy-menu-get-map):
10019 Don't crash if (current-local-map) is nil.
10021 1999-02-17 Peter Breton <pbreton@ne.mediaone.net>
10023 * filecache.el (file-cache-filter-regexps): Added .class.
10025 1999-02-17 Ken'ichi Handa <handa@gnu.org>
10027 * international/mule-util.el (decompose-region): Use
10028 insert-buffer-substring instead of insert-buffer to avoid putting
10031 1999-02-17 Andreas Schwab <schwab@gnu.org>
10033 * calendar/cal-move.el (scroll-calendar-left): Don't set
10034 displayed-month and displayed-year here, let generate-calendar do
10035 it, after range checking.
10037 1999-02-17 Simon Marshall <simon@gnu.org>
10039 * progmodes/cc-engine.el (c-at-toplevel-p): New function.
10041 * font-lock.el (c++-font-lock-keywords-3): Use it to distinguish
10042 correctly between an object declared via a constructor and a method.
10043 (font-lock-defaults-alist): Don't give `.' word syntax for Java.
10044 (java-font-lock-keywords-1): Fontify package names individually.
10045 (java-font-lock-extra-types): Ensure regexp matches capitalised only.
10046 (java-font-lock-keywords-2): Simplify type fontification.
10047 (java-font-lock-keywords-3): Likewise.
10049 1999-02-17 Kenichi Handa <handa@etl.go.jp>
10051 * language/japanese.el (iso-2022-jp-2): New coding system.
10052 ("Japanese"): Put iso-2022-jp-2 in coding-priority property.
10054 1999-02-16 Dave Love <fx@gnu.org>
10056 * help.el (describe-function-1): Accept non-symbols.
10058 1999-02-16 Paul Eggert <eggert@twinsun.com>
10060 * dired.el (dired-move-to-filename-regexp): Prepend .* so that we
10061 find the last match if there are multiple matches.
10063 1999-02-16 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10065 * tex-mode.el (tex-run-command, latex-run-command)
10066 (slitex-run-command, tex-command): Doc changes.
10067 (tex-start-options-string): Autoload it. Doc change. Provide
10068 a menu for customization. Allow nil. Quote backslashes only once.
10069 (tex-start-tex): Handle nil value of tex-start-options-string
10070 and apply shell-quote-argument to it.
10072 1999-02-16 Eli Zaretskii <eliz@gnu.org>
10074 * ls-lisp.el (ls-lisp-insert-directory): Call fceiling to round
10075 the size in blocks, since it can be a float.
10076 (ls-lisp-format): Likewise
10078 1999-02-16 Ken'ichi Handa <handa@gnu.org>
10080 * language/japanese.el (japanese-shift-jis): Add
10081 charset-origin-alist property.
10083 1999-02-15 Richard Stallman <rms@gnu.org>
10085 * progmodes/compile.el (compile-internal): Use save-selected-window.
10087 * subr.el (momentary-string-display): Bind inhibit-read-only.
10089 * speedbar.el (speedbar-item-info-tag-helper): Scan the whole line.
10091 1999-02-15 Eli Zaretskii <eliz@is.elta.co.il>
10093 * mail/rmail.el (rmail-show-message): If an unseen message has a
10094 Summary-line in its header, get past one more line before looking
10095 for the X-Coding-System header.
10097 1999-02-15 Geoff Voelker <voelker@cs.washington.edu>
10099 * makefile.nt (INSTALL): Copy the handful of uncompiled lisp files
10100 explicitly to accomodate Windows 9X lack of a useful copy program.
10102 1999-02-15 Per Abrahamsen <abraham@dina.kvl.dk>
10104 * wid-edit.el (widget-choice-value-create): Use `equal'
10107 1999-02-14 Richard Stallman <rms@gnu.org>
10109 * international/iso-transl.el:
10110 (iso-transl-ae): Renamed from iso-transl-e-slash.
10111 (iso-transl-a-ring): Renamed from iso-transl-a-slash.
10112 (iso-transl-AE): Renamed from iso-transl-E-slash.
10113 (iso-transl-A-ring): Renamed from iso-transl-A-slash.
10114 (iso-transl-char-map): Related changes.
10116 * format.el (format-replace-strings): Fix value of TO in REVERSE case.
10118 1999-02-13 Richard Stallman <rms@gnu.org>
10120 * textmodes/texinfmt.el (texinfo-alias): New function.
10121 (texinfo-fold-nodename-case): Add defvar.
10122 (texinfo-format-node): Do case folding if specified.
10124 * ffap.el (ffap-file-at-point): Test local file names
10125 immediately. Strip off line numbers.
10127 1999-02-12 Alex Schroeder <a.schroeder@bsiag.ch>
10129 * sql.el: Set version to 1.3.2
10130 (sql-solid-program): Added support for solid.
10131 (sql-help): Doc mentions sql-solid.
10132 (sql-solid): Entry function for Solid.
10133 (sql-buffer): Doc explains the use of the variable and how to
10135 (sql-mode-menu): Included entries for sql-show-sqli-buffer and
10136 sql-change-sqli-buffer; sql-send-region and sql-send-buffer are
10137 disabled if sql-buffer doesn't have a process; sql-send-paragraph
10139 (sql-show-sqli-buffer): New function to display the value of
10141 (sql-change-sqli-buffer): New function to change sql-buffer.
10142 (sql-mode): Doc explains how to change sql-buffer.
10143 (sql-send-paragraph): New function to send a paragraph.
10144 (sql-mode-map): Added keybinding for sql-send-paragraph.
10145 (sql-mysql): Doc corrected.
10146 (sql-ms): Doc corrected.
10148 * sql.el (sql-server): Doc fix.
10149 (sql-mysql): Added the use of sql-server to specify the host,
10150 sql-database now specifies database instead of host.
10151 (sql-mode-menu): Send... menu items are only active if sql-buffer
10153 (sql-help): Changed tag of entry functions a bit.
10155 * sql.el: Added keywords from `finder-by-keyword'.
10156 (sql-mode): Made sql-buffer a local variable, changed the
10157 documentation: removed instructions to add *.sql files to
10158 auto-mode-alist, added documentation for having mutliple SQL
10159 buffers sending their stuff to different SQLi buffers, each
10160 running a different process.
10161 (sql-postgres): Quoted *SQL* in doc string.
10162 (sql-ms): Likewise.
10163 (sql-ingres): Likewise.
10164 (sql-ingres): Quoted *SQL* in doc string, added references to
10165 sql-user and sql-password used during login.
10166 (sql-sybase): Quoted *SQL* in doc string, added comma.
10167 (sql-oracle): Likewise.
10168 (sql-interactive-mode): Added extensive documentation for having
10169 mutliple SQL buffers sending their stuff to different SQLi
10170 buffers, each running a different process.
10171 (sql-buffer): Changed doc from *SQL* to SQLi.
10172 (sql-get-login): Doc fix.
10174 1999-02-12 Ken'ichi Handa <handa@gnu.org>
10176 * international/mule-conf.el (undecided): Set ascii in
10177 safe-charsets property.
10179 1999-02-12 Richard Stallman <rms@gnu.org>
10181 * textmodes/paragraphs.el (paragraph-separate): Doc fix.
10183 1999-02-12 Ken'ichi Handa <handa@gnu.org>
10185 * ps-mule.el (ps-mule-font-info-database-default): Set the initial
10186 value to ps-mule-font-info-database-latin.
10188 1999-02-13 Kenichi HANDA <handa@etl.go.jp>
10190 * ps-mule.el (ps-multibyte-buffer): Doc-string modified.
10191 (ps-mule-font-info-database-default): New variable.
10192 (ps-mule-begin-job): If ps-multibyte-buffer is nil, use
10193 ps-mule-font-info-database-default.
10195 1999-02-12 Dave Love <fx@gnu.org>
10197 * timezone.el (timezone-make-date-sortable)
10198 (timezone-make-date-arpa-standard): Doc fix.
10200 1999-02-12 Ken'ichi Handa <handa@gnu.org>
10202 * international/quail.el (quail-show-kbd-layout): Bind
10203 blink-matching-paren to nil.
10205 * ps-mule.el (ps-mule-font-info-database-bdf): Fix ENCODING field
10206 for ASCII and Latin-1.
10208 1999-02-12 Andreas Schwab <schwab@gnu.org>
10210 * gud.el (jdb): Fix regexp for comint-prompt-regexp.
10212 1999-02-12 Kenichi Handa <handa@etl.go.jp>
10214 * international/mule-cmds.el (language-info-alist): Remove
10215 description about charset-origin-alist.
10217 * international/mule.el: Comment added for a new coding system
10218 property `charset-origin-alit'.
10219 (make-translation-table): This variable deleted.
10221 * language/chinese.el (chinese-big5): Add charset-origin-alist
10223 ("Chinese-CNS"): Remove charset-origin-alist property.
10225 * language/cyrillic.el (cyrillic-koi8): Add charset-origin-alist
10227 (cyrillic-alternativnyj): Likewise.
10228 ("Cyrillic-KOI8"): Remove charset-origin-alist property.
10229 ("Cyrillic-ALT"): Likewise.
10231 * language/vietnamese.el (vietnamese-viqr): Add
10232 charset-origin-alist property.
10233 ("Vietnamese"): Remove charset-origin-alist property.
10235 * simple.el (what-cursor-position): Don't use the varialbe
10236 charset-origin-alist, but use charset-origin-alist property of
10237 buffer-file-coding-system to decide external character set code.
10239 1999-02-10 Richard Stallman <rms@gnu.org>
10241 * shadowfile.el: Don't turn on the mode when the file is loaded.
10243 1999-02-09 Richard Stallman <rms@gnu.org>
10245 * progmodes/compile.el (compile-auto-highlight): Customize.
10247 * add-log.el (add-log-file-name-function): New variable.
10248 (add-change-log-entry): Call that function, if non-nil.
10250 1999-02-09 Michael Ernst <mernst@alum.mit.edu>
10252 * rmail.el (rmail-search): Track match with a marker, not an integer.
10254 1999-02-08 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10256 * progmodes/compile.el (compilation-setup): Set value of
10257 compilation-directory-stack as in compilation-forget-errors.
10258 (compile-reinitialize-errors): Bind buffer-undo-list and
10260 (compilation-forget-errors): Likewise.
10262 1999-02-08 Jim Blandy <jimb@savonarola.red-bean.com>
10264 * textmodes/texinfo.el (texinfo-environment-regexp): Add the
10267 * texnfo-upd.el (texinfo-all-menus-update, texinfo-master-menu):
10268 Remove calls to sleep-for.
10270 1999-02-08 Eli Zaretskii <eliz@gnu.org>
10272 * international/codepage.el (cp-coding-system-for-codepage-1): On
10273 MS-DOS, use dos-unsupported-char-glyph for characters not
10274 supported by the codepage.
10275 (cp-make-coding-systems-for-codepage): Likewise.
10277 1999-02-08 Andreas Schwab <schwab@gnu.org>
10279 * international/mule-util.el (coding-system-list): Don't sort
10280 coding-system-list here.
10282 * international/mule.el (coding-system-lessp): Moved here from
10284 (add-to-coding-system-list): New function.
10285 (make-subsidiary-coding-system, make-coding-system,
10286 define-coding-system-alias): Use it instead of setting
10287 coding-system-list directly.
10289 1999-02-07 Dave Love <fx@gnu.org>
10291 * calendar/appt.el (appt-make-list): Don't splice quotes and date
10294 1999-02-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10296 * imenu.el (imenu--last-menubar-index-alist): Add doc.
10297 (imenu-add-to-menubar): Reset imenu--last-menubar-index-alist.
10299 1999-02-06 Richard Stallman <rms@gnu.org>
10301 * language/european.el (setup-slovenian-environment): New function.
10302 ("Slovenian"): New language environment.
10304 * progmodes/sql.el (sql-help): Doc fix.
10305 (sql-mysql): Doc fix.
10307 1999-02-05 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10309 * tex-mode.el: When compiling, require compare-w and skeleton
10310 to pacify the byte-compiler. Move the def's of the tex-commands
10311 together. Add a comment on kill-process vs. quit-process.
10313 1999-02-05 Dave Love <fx@gnu.org>
10315 * progmodes/compile.el (compile-mouse-goto-error): Don't lose with
10317 (compile-goto-error): Likewise.
10319 1999-02-05 Stephen Gildea <gildea@alum.mit.edu>
10321 * time-stamp.el (time-stamp-format): Format doc tighter.
10322 (time-stamp-line-limit): 0 searches the entire buffer (careful!).
10323 (time-stamp): Don't re-write the time stamp if it didn't change.
10325 1999-02-05 Alex Schroeder <asc@bsiag.com>
10327 * progmodes/sql.el: Changed version to 1.2.1.
10328 (sql-pop-to-buffer-after-send-region): Improved documentation.
10329 (sql-mysql-program): Added MySQL support.
10330 (sql-prompt-length): Made prompt-length configurable.
10331 (sql-mode-syntax-table): Made apostrophe (') be a string delimiter.
10332 (sql-help): Added MySQL support, changed documentation.
10333 (sql-send-region): A message is displayed if something is sent.
10334 (sql-mode): Added buffer-local comment-start.
10335 (sql-interactive-mode): Use sql-prompt-length to set left-margin.
10336 (sql-interactive-mode): Added buffer-local comment-start.
10337 (sql-oracle): Set sql-prompt-length.
10338 (sql-sybase): Set sql-prompt-length.
10339 (sql-mysql): Added MySQL support.
10340 (sql-ingres): Set sql-prompt-length.
10341 (sql-ms): Set sql-prompt-length.
10342 (sql-postgres): Set sql-prompt-length.
10344 1999-02-04 Eli Zaretskii <eliz@gnu.org>
10346 * term/internal.el (dos-codepage-setup): Set selection coding
10347 system to cpNNN-dos.
10349 1999-02-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10351 * international/characters.el: Let ethiopic use iso-2022-7bit.
10353 1999-02-02 Dave Love <fx@gnu.org>
10355 * progmodes/fortran.el (mark-fortran-subprogram): Activate mark here...
10356 (fortran-narrow-to-subprogram, fortran-indent-subprogram): ...not here.
10358 1999-02-02 Karl Heuer <kwzh@gnu.org>
10360 * terminal.el (terminal-emulator): Doc fix.
10362 1999-02-02 Ken'ichi Handa <handa@gnu.org>
10364 * international/mule-util.el (compose-chars): Doc-string
10365 modified. Correctly handle a composition character in ARGS.
10367 1999-02-01 Richard Stallman <rms@gnu.org>
10369 * progmodes/make-mode.el (makefile-imenu-generic-expression): New var.
10370 (makefile-menu-index-function): Function deleted.
10371 (makefile-mode): Use makefile-imenu-generic-expression.
10373 1999-02-01 Geoff Voelker <voelker@cs.washington.edu>
10375 * term/w32-win.el (w32-create-initial-fontsets): Back out previous
10376 change, invoke from before-init-hook.
10378 1999-02-01 Dan Nicolaescu <done@ece.arizona.edu>
10380 * subr.el (remove-from-invisibility-spec): Cope with the case when
10381 buffer-invisibility-spec is t.
10383 1999-02-01 Ed Reingold <reingold@cs.uiuc.edu>
10385 * calendar/calendar.el (calendar-mode-map): Fix bindings for
10386 appt-add and appt-delete.
10388 1999-02-01 Eli Zaretskii <eliz@gnu.org>
10390 * term/pc-win.el (msdos-approximate-color): New function.
10391 (msdos-color-translate): Call it to find a DOS color that best
10392 approximates an X-style "#NNNNNN" color specification.
10394 1999-02-01 Ken'ichi Handa <handa@gnu.org>
10396 * international/mule-util.el (compose-chars-component): Add
10399 1999-01-31 Ken'ichi Handa <handa@gnu.org>
10401 * international/quail.el (quail-lookup-key): If cdr of MAP is a
10402 function, replace cdr of MAP by the return value of the function
10405 1999-01-31 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10407 * progmodes/compile.el (compilation-next-error-locus): Don't
10408 decrease argument FIND-AT-LEAST of compilation-next-error-locus.
10410 1999-01-31 Eli Zaretskii <eliz@gnu.org>
10412 * mail/rmail.el (rmail-mime-charset-pattern): Add optional TABs
10413 and NLs before "charset", and allow the charset name be in double
10416 1999-01-31 Richard Stallman <rms@gnu.org>
10418 * imenu.el (imenu-sort-function): Fix custom type.
10420 1999-01-30 Richard Stallman <rms@gnu.org>
10422 * speedbar.el (speedbar-line-token): Match {...} instead of [...].
10423 (speedbar-line-token): Likewise.
10425 * play/gametree.el (gametree-default-score): Use defcustom.
10426 (gametree-score-regexp, gametree-score-closer): Likewise.
10427 (gametree-score-manual-flag, gametree-score-opener): Likewise.
10429 1999-01-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10431 * mail/rmail.el (rmail-decode-babyl-format): Avoid locking when
10434 1999-01-29 Markus Rost <rost@gnu.org>
10436 * tex-mode.el (tex-mode-map): Replace validate-tex-buffer by
10437 tex-validate-buffer.
10438 (plain-tex-mode, latex-mode, slitex-mode): Likewise.
10439 (tex-validate-buffer): Renamed from validate-tex-buffer. Works
10440 now with recent occur-mode.
10441 (tex-validate-region): Really walk through all Sexps.
10442 (tex-region): Bind shell-dirtrack-verbose.
10443 (tex-file, tex-bibtex-file): Likewise.
10445 1999-01-29 Dave Love <fx@gnu.org>
10447 * finder.el: (finder-commentary): Fix interactive spec. Try
10448 appending .el to file name.
10449 (finder-find-library, finder-commentary): Doc fixes.
10451 1999-01-29 Andrew Innes <andrewi@gnu.org>
10453 * mail/rmail.el (rmail-insert-inbox-text): Handle POP mailboxes
10454 where the userid contains directory separators.
10456 1999-01-29 Dave Love <fx@gnu.org>
10458 * emacs-lisp/lisp-mnt.el (lm-verify): Fix arg list.
10459 (lm-commentary): Doc fix.
10461 1999-01-29 Andreas Schwab <schwab@gnu.org>
10463 * files.el (file-expand-wildcards): Never consider `.' and `..' a
10464 wildcard match. Fix regexp that tests if dirpart contains
10465 wildcard characters.
10467 1999-01-28 Richard Stallman <rms@gnu.org>
10469 * font-lock.el (font-lock-default-unfontify-region):
10470 If not font-lock-syntactic-keywords, don't remove syntax-table prop.
10472 1999-01-27 Jason Rumney <jasonr@altavista.net>
10474 * term/w32-win.el (w32-standard-fontset-spec): Remove wildcard
10476 (w32-create-initial-fontsets): Do not use before-init-hook.
10477 (mouse-set-font): Document. Automatically create and use fontsets.
10479 * dos-w32.el (direct-print-region-helper): Check for printer
10480 being t as well as a string.
10482 1999-01-27 Kenichi Handa <handa@etl.go.jp>
10484 * mail/rmail.el (rmail-decode-mime-charset): New variable.
10485 (rmail-mime-charset-pattern): New variable.
10486 (rmail-convert-to-babyl-format): Decode by MIME-charset if
10487 rmail-decode-mime-charset is non-nil.
10489 1999-01-27 Ken'ichi Handa <handa@gnu.org>
10491 * international/characters.el: Set category `q' for all characters
10492 in tibetan and tibetan-1-column.
10494 1999-01-27 Andrew Innes <andrewi@gnu.org>
10496 * frame.el (select-frame-by-name): Obey focus-follows-mouse.
10497 (select-frame-by-name) [windows-nt]: Use w32-focus-frame.
10499 1999-01-27 Dave Love <fx@gnu.org>
10501 * international/mule-cmds.el (current-language-environment):
10502 Provide :link, :type (choices) and appropriate :get.
10504 1999-01-27 Eli Zaretskii <eliz@gnu.org>
10506 * startup.el (command-line): Set default eol-mnemonic-* strings to
10507 display end-of-line format in mode line.
10509 * cus-start.el (all): Add eol-mnemonic-* variables.
10511 1999-01-26 Dave Love <fx@gnu.org>
10513 * startup.el (command-line-1): Up-date copyright.
10515 * paths.el (Info-default-directory-list): Use configdir twice.
10517 * info.el (Info-directory-list): Don't set path-separator now
10518 we're not shipped with Texinfo. Simplify path definition.
10519 Substitute all occurrences of instdir in Info-default-directory-list.
10521 1999-01-25 Richard Stallman <rms@gnu.org>
10523 * startup.el (normal-top-level-add-subdirs-to-load-path):
10524 Record the inode numbers of the dirs processed, to avoid loop.
10526 * textmodes/tex-mode.el (tex-run-command): Doc fix.
10528 1999-01-25 Dave Love <fx@gnu.org>
10530 * browse-url.el (browse-url-netscape-program): Doc addition.
10532 * help.el (help-make-xrefs): Default info references to an `(emacs)'
10535 * snmp-mode.el (snmpv2-mode, snmpv-mode): Add autoload cookies -- see
10538 1999-01-25 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
10540 * calendar/diary-lib.el (mark-diary-entries): Use
10541 assoc-ignore-case and do not capitalize when matching month and
10544 * calendar/calendar.el (calendar-read-date): Ditto.
10546 * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
10547 (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
10549 * calendar/cal-coptic.el (coptic-prompt-for-date): Ditto.
10551 * calendar/cal-french.el (calendar-goto-french-date): Ditto.
10553 * calendar/cal-islam.el (calendar-goto-islamic-date)
10554 (mark-islamic-diary-entries): Ditto.
10556 * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
10558 * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
10559 (calendar-read-mayan-tzolkin-date): Ditto.
10561 * calendar/cal-persia.el (persian-prompt-for-date): Ditto.
10563 1999-01-22 Michael Ernst <mernst@alum.mit.edu>
10565 * texnfo-upd.el (texinfo-make-menu): Make region-end a marker.
10567 1999-01-25 Karl Heuer <kwzh@gnu.org>
10569 * faces.el (list-faces-display): Multiline case of previous fix.
10571 1999-01-25 Andreas Schwab <schwab@gnu.org>
10573 * mail/mailalias.el (mail-complete-alist): Use alist as customize type.
10575 1999-01-24 Richard M. Stallman <rms@borg.ai.mit.edu>
10577 * files.el (find-file): If find-file-noselect returns a list,
10578 do switch-to-buffer on each element.
10579 (find-file-other-window): Likewise for all but the first element.
10580 (find-file-other-frame): Same.
10581 (find-file-noselect): When we expand a wildcard, return a list
10584 1999-01-24 Eli Zaretskii <eliz@gnu.org>
10586 * term/internal.el (dos-codepage-setup): Call prefer-coding-system
10587 to set the appropriate cpNNN-dos coding system as the
10588 highest-priority coding system.
10590 1999-01-23 Ken'ichi Handa <handa@gnu.org>
10592 * international/fontset.el (generate-fontset-menu): Return a
10593 sorted list by plain names of fontsets.
10595 * international/mule-diag.el (list-fontsets): Sort fontsets by
10598 * language/tibet-util.el (tibetan-vertical-stacking): If the arg
10599 FIRST is a composite character, decompose it at first.
10601 1999-01-23 Dave Love <fx@gnu.org>
10603 * format.el: Doc fixes.
10604 (format-encode-run-method): Have things happen in the right buffer.
10605 Deal with errors from method. Set coding-system-for-write.
10606 (format-decode-run-method): Have things happen in the right buffer.
10607 Deal with errors from method. Set coding-system-for-read.
10608 (format-alist): Use nil instead of unmatchable regexps.
10610 * simple.el (shell-command-on-region): Return command's exit status.
10612 1999-01-23 Eric Ludlam <zappo@gnu.org>
10614 * speedbar.el (speedbar-item-info-file-helper): Add optional arg
10615 of the file whose info we want to display.
10616 (speedbar-easymenu-definition-trailer) Fix list issue w/ customize.
10617 (speedbar-add-mode-functions-list) Improve doc.
10618 (speedbar-line-token) New function.
10619 (speedbar-dired) Fix order of directories in -shown-directories.
10620 (speedbar-line-path): Default return is default-directory
10621 (speedbar-buffers-line-path): Return is dir name only.
10622 (speedbar-mode-functions-list): New variable.
10623 (speedbar-mouse-item-info): Rewrote to be a replaceable fn.
10624 (speedbar-item-info-file-helper, speedbar-item-info-tag-helper
10625 speedbar-files-item-info speedbar-buffers-item-info): New functions.
10626 (speedbar-fetch-replacement-function,speedbar-add-mode-functions-list):
10628 (speedbar-line-file): Broke out part that fetches file from a line.
10629 (speedbar-line-text): New function extracted from speedbar-line-file.
10630 (speedbar-line-path): Converted into a replaceable function.
10631 (speedbar-files-line-path, speedbar-buffers-line-path): New functions.
10633 1999-01-23 Ken'ichi Handa <handa@gnu.org>
10635 * international/fontset.el (create-fontset-from-x-resource): Make
10638 1999-01-22 Dave Love <fx@gnu.org>
10640 * paths.el (Info-default-directory-list): Put sysdir after start.
10642 1999-01-22 Sam Steingold <sds@goems.com>
10644 * midnight.el (clean-buffer-list): Do not kill a buffer if it has
10645 a process associated with it.
10647 1999-01-22 Jason Rumney <jasonr@altavista.net>
10649 * term/w32-win.el (w32-standard-fontset-spec): Simplified.
10651 1999-01-22 Felix Lee <flee@cygnus.com>
10653 * vc.el (vc-annotate-display): Delete old overlays. Fix check for
10655 (vc-annotate-mode): Delete variable.
10657 1999-01-22 Andrew Innes <andrewi@gnu.org>
10659 * startup.el (command-line): [windows-nt]: Check for existence of
10660 .emacs file so as to notice .emacs.el or .emacs.elc and use them
10661 in preference to _emacs.
10663 1999-01-22 Dave Love <fx@gnu.org>
10665 * textmodes/texinfo.el (texinfo-font-lock-keywords): Match @ref.
10667 1999-01-20 Richard Stallman <rms@gnu.org>
10669 * files.el (find-file-noselect): Do wildcard processing only
10670 if new arg WILDCARDS is non-nil.
10671 (find-file, find-file-other-window): New arg WILDCARDS.
10672 Default it to non-nil if interactive.
10673 (find-file-other-frame): Likewise.
10674 (find-file-read-only): Likewise.
10675 (find-file-read-only-other-window): Likewise.
10676 (find-file-read-only-other-frame): Likewise.
10678 * wid-edit.el (widget-alist-convert-option): Delete spurious comma.
10679 (widget-plist-convert-option): Delete spurious comma.
10681 1999-01-19 Jason Rumney <jasonr@altavista.net>
10683 * term/w32-win.el (w32-standard-fontspec-spec): Change
10684 iso8859-5 to koi8-r. Add iso8859-9.
10686 1999-01-19 Dave Love <fx@gnu.org>
10688 * browse-url.el (browse-url-maybe-new-window): Delete macro and
10691 * progmodes/fortran.el (fortran-narrow-to-subprogram): Ensure mark
10693 (fortran-indent-subprogram): Likewise.
10695 1999-01-19 Dave Love <d.love@dl.ac.uk>
10697 * paths.el (Info-default-directory-list): Perhaps add /usr/info.
10699 1999-01-19 Richard Stallman <rms@psilocin.ai.mit.edu>
10701 * wid-edit.el (alist): Use sexp as default key-type.
10703 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10705 * textmodes/tex-mode.el (tex-define-common-keys):
10706 Remove key binding of tex-feed-input.
10707 (tex-mode-map): Bind tex-feed-input here.
10708 (tex-start-shell): Use compilation-shell-minor-mode. Set
10709 comint-input-filter-functions before running tex-shell-hook.
10710 (tex-start-tex): Forget compilation errors.
10711 (tex-compilation-parse-errors): Rewritten to work also with
10712 compile-mouse-goto-error and compile-goto-error. Adjusted to
10713 change in tex-region.
10714 (tex-region): For the temp file use file-name without directory.
10715 (tex-file): Expand file name of tex-print-file.
10717 1999-01-18 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10719 * emacs-lisp/edebug.el (with-temp-message): Add def-edebug-spec call.
10721 1999-01-18 Espen Skoglund <espensk@stud.cs.uit.no>
10723 * progmodes/pascal.el (pascal-calculate-indent): Code with an invalid
10724 beginning could cause Emacs to hang. Fixed.
10726 1999-01-18 Ken'ichi Handa <handa@gnu.org>
10728 * international/ccl.el (ccl-compile-translate-character): Handle
10729 the case that a tranlation table is CCL register correctly.
10731 * international/mule-cmds.el (select-safe-coding-system):
10732 Hightlight at most 256 characters.
10734 1999-01-18 Dave Love <fx@gnu.org>
10736 * startup.el (command-line): If the init file changes operation to
10737 unibyte, make all buffers unibyte and re-set language environment.
10739 * disp-table.el (standard-display-european): Make all existing
10740 buffers unibyte. Fix doc.
10742 1999-01-17 Richard Stallman <rms@psilocin.ai.mit.edu>
10744 * wid-edit.el (coding-system): Define this unconditionally.
10746 * simple.el (shell-command-on-region-default-error-buffer): New var.
10747 (shell-command-on-region): Use that variable as interactive
10748 value of ERROR-BUFFER argument.
10750 1999-01-17 Sam Steingold <sds@goems.com>
10752 * mail/rmail.el (rmail-quit): Run `rmail-quit-hook'.
10754 1999-01-17 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10756 * progmodes/compile.el (compilation-goto-locus): If already in the
10757 compilation buffer's window, keep it in that window.
10758 (compile-mouse-goto-error): Add Doc. Don't play with windows.
10759 (compile-goto-error): Don't play with windows.
10761 * textmodes/tex-mode.el (latex-run-command): Doc fix.
10762 (tex-command): Doc fix.
10763 (tex-compilation-parse-errors): Doc fix.
10764 (tex-generate-zap-file-name): Don't start the name with -.
10765 (tex-expand-files): Works now also with strings ending with ":".
10767 1999-01-17 Ian T Zimmerman <itz@transbay.net>
10769 Patch failed to install:
10770 * gametree.el: Document scoring functionality.
10771 (gametree-score-regexp): Add optional plus sign.
10772 (gametree-score-opener): Replace `:' with `=' as the former
10773 conflicts with gametree-half-ply-regexp.
10774 (gametree-transpose-following-leaves): Add.
10775 (gametree-insert-new-leaf): Make modifying commands barf in read
10777 (gametree-break-line-here): Add a call to
10778 `gametree-transpose-following-leaves'. This maintains the
10779 necessary invariant that on each level all leaf children precede
10780 all nonleaf children. This has always been implied, but left to
10781 the user, and, unfortunately, undocumented.
10783 1999-01-17 Per Abrahamsen <abraham@dina.kvl.dk>
10785 * wid-edit.el (plist, alist): New widget types.
10787 1999-01-17 Dave Love <fx@gnu.org>
10789 * progmodes/fortran.el: Tidy up font-lock-keywords definitions and
10790 fix scope of condition-case therein.
10792 1999-01-17 Andrew Innes <andrewi@gnu.org>
10794 * dos-w32.el: (find-buffer-file-type-coding-system): Use
10795 default-buffer-file-coding-system when file doesn't exist (and
10796 isn't covered by a special case) instead of forcing undecided-dos
10797 against the user's wishes.
10799 * dos-w32.el (direct-print-region-helper): New function based on
10800 direct-print-region-function; sends data to specified printer port
10801 without further translation. Recognize and handle specially the
10802 standard `print' and `nprint' programs, as well as `lpr' and
10803 similar programs. Only write directly to the printer port if no
10804 print program is specified. Work around a bug in Windows 9x
10805 affecting Win32 version of Emacs by invoking command.com to write
10806 to the printer port instead of writing directly.
10807 (direct-print-region-function): Use direct-print-region-helper to
10808 do most of the work.
10809 (direct-ps-print-region-function): New function; analogue of
10810 direct-print-region-function for ps-print.
10811 (ps-lpr-command): Comment out setq; leave as example usage.
10812 (ps-lpr-switches): Ditto.
10814 * lpr.el: (printer-name): Update docstring about usage on MS-DOS
10816 (lpr-command) [ms-dos, windows-nt]: Initialize to empty string on
10817 DOS and Windows platforms, to indicate direct printing. Update
10818 the docstring accordingly.
10820 * ps-print.el: (ps-printer-name): Update docstring about usage on
10821 MS-DOS and MS-Windows.
10822 (ps-lpr-command): Update docstring as for lpr-command.
10823 (ps-print-region-function): New variable.
10824 (ps-do-despool): Use it.
10825 (ps-do-despool) [ms-dos, windows-nt]: Remove special case code for
10828 * subr.el (subst-char-in-string): New function.
10830 1999-01-17 Eli Zaretskii <eliz@gnu.org>
10832 * international/codepage.el (cp852-decode-table): Fill a nil entry.
10834 * ps-bdf.el (bdf-cache-file): Use convert-standard-filename.
10835 (bdf-find-font-info): New function, looks for the first readable
10836 file from a list of alternatives.
10837 (bdf-get-bitmaps, bdf-generate-font): Call bdf-find-font-info
10838 instead of bdf-get-font-info.
10839 (bdf-generate-glyphs): If font-name is a cons cell, pass its car
10840 to ps-mule-generate-bitmap-glyph.
10842 * ps-mule.el (ps-mule-font-info-database-bdf): Add alternative
10843 file names that avoid clashes in DOS 8+3 namespace. FONT-NAME can
10844 now be a list of alternative names.
10845 (ps-mule-generate-font): If FONT-NAME is a cons cell, use its car.
10846 (ps-mule-prepare-font): Likewise.
10848 * international/codepage.el (cp855-decode-table,
10849 cp850-decode-table): Fill some nil entries.
10851 1999-01-16 Dave Love <fx@gnu.org>
10853 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Revert
10856 1999-01-15 Dave Love <fx@gnu.org>
10858 * help.el (help-make-xrefs): Avoid infloop in keymap substitutions
10859 and change regexp for command names.
10860 (help-xref-go-back, function-called-at-point, symbol-file)
10861 (where-is): Doc fixes.
10862 (help-xref-go-back): Remove interactive spec.
10863 (describe-function-1): Fix message for alias. Buttomize alias
10866 * simple.el (join-line): New alias.
10868 1999-01-15 Johan Vromans <jvromans@squirrel.nl>
10870 * forms.el: (forms--show-record): Convert integers to string
10871 expicitly since concat will no longer accept integers.
10872 (forms-print): Use local `total-nb-records' since
10873 `forms--total-records' will be inaccessible after buffer switching.
10875 1998-01-14 Felix Lee <flee@cygnus.com>
10877 * textmodes/flyspell.el (make-flyspell-overlay): Fix front stickiness.
10879 1999-01-14 Richard Stallman <rms@psilocin.ai.mit.edu>
10881 * emacs-lisp/easymenu.el (easy-menu-get-map): Fix bugs in prev change.
10883 1999-01-14 Eli Zaretskii <eliz@gnu.org>
10885 * international/codepage.el (cp850-decode-table): Fix previous change.
10887 1999-01-14 Simon Marshall <simon@gnu.org>
10889 * shell.el (shell-dirtrack-verbose): New custom variable.
10890 (shell-dirstack-message): Use it.
10892 1999-01-14 Kenichi Handa <handa@etl.go.jp>
10894 * international/mule-conf.el: Coding system alias `dos' for
10895 `undecided-dos', `mac' for `undecided-mac'.
10897 * international/mule-cmds.el (describe-language-environment):
10898 Don't alter input-method-alist.
10900 1999-01-13 Eli Zaretskii <eliz@gnu.org>
10902 * international/codepage.el (cp850-decode-table): Replace nil
10903 entries with codes of similary looking glyphs. (Suggested by
10904 Jason Rumney <jasonr@altavista.net>.)
10906 1999-01-13 Dave Love <fx@gnu.org>
10908 * browse-url.el (browse-url-netscape): Fix ineffective "-noraise".
10910 * emacs-lisp/find-func.el (find-function-on-key): Fix previous change.
10912 1999-01-12 Karl Heuer <kwzh@gnu.org>
10914 * files.el (auto-save-hook): Defvar this.
10916 1999-01-12 Alex Schroeder <asc@bsiag.com>
10918 * progmodes/sql.el (sql-mode-ansi-font-lock-keywords): Quote font-lock
10919 faces, eliminating the need to load font-lock before loading sql.
10920 (sql-mode-oracle-font-lock-keywords): Likewise.
10921 (sql-mode-postgres-font-lock-keywords): Likewise.
10923 1999-01-11 Dave Love <fx@gnu.org>
10925 * cus-start.el: Add inhibit-eol-conversion.
10927 * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Swap
10930 1999-01-11 Richard Stallman <rms@psilocin.ai.mit.edu>
10932 * help.el (help-mode-finish): Renamed from help-mode-maybe.
10933 Don't switch to Help mode here.
10934 (temp-buffer-setup-hook): Use help-mode-finish.
10935 (help-mode-setup): New function.
10936 (temp-buffer-setup-hook): Use help-mode-setup.
10938 * progmodes/sql.el: New file.
10940 * files.el (auto-mode-alist): Add sql-mode.
10942 * faces.el (list-faces-display): Improve the formatting
10943 by computing the maximum length required for any face-name.
10945 1999-01-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
10947 * progmodes/compile.el (compilation-shell-minor-mode): New function.
10949 1999-01-10 Dan Nicolaescu <dann@ics.uci.edu>
10951 * term.el (term_send_home): Change the string to
10952 be the same as the one emitted by xterm and consistent with the
10953 ones emitted by prior and next.
10954 (term_send_end): Likewise.
10956 1999-01-10 Dave Love <fx@gnu.org>
10958 * emacs-lisp/find-func.el (find-function-on-key): DTRT for mouse
10961 1999-01-10 Eli Zaretskii <eliz@gnu.org>
10963 * international/codepage.el (codepage-setup): Doc fix.
10964 (cp-decoding-vector-for-codepage): Likewise.
10966 1999-01-10 Markus Rost <rost@gnu.org>
10968 * cus-edit.el (custom-save-delete): First scan the custom-file.
10970 1999-01-08 Richard Stallman <rms@psilocin.ai.mit.edu>
10972 * international/iso-transl.el: Define a "function name" for
10973 each translation that isn't ASCII. Use these function names
10974 in iso-transl-char-map.
10976 1999-01-08 Kenichi Handa <handa@etl.go.jp>
10978 * international/mule-util.el (decompose-region): Do decomposition
10979 on temporary unibyte buffer.
10981 * international/mule.el (make-char): Doc-string modified.
10983 1999-01-07 Richard Stallman <rms@psilocin.ai.mit.edu>
10985 * simple.el (comment-region): Delete spaces only if we
10986 deleted a comment starter.
10988 1999-01-07 Dave Love <fx@gnu.org>
10990 * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
10992 * emacs-lisp/edebug.el (edebug-eval-defun): Deal with defcustom
10993 like eval-defun does.
10995 * dired.el (dired-mode-map): Fix duplicate [menu-bar regexp mark].
10997 * generic.el: Re-write `(make-variable-buffer-local (defvar ...'
10998 constructions. Doc fixes.
10999 (generic-create-generic-function): Use defalias, not fset.
11001 * find-func.el: More doc fixes.
11003 1999-01-06 Stephen Eglen <stephen@gnu.org>
11005 * files.el (save-buffers-kill-emacs): Show the list of current
11006 processes before prompting to kill them and exit.
11008 1999-01-06 Dave Love <fx@gnu.org>
11010 * emacs-lisp/find-func.el: Doc fixes.
11011 (find-function-regexp): Extend for define-generic-mode,
11012 define-derived-mode, easy-mmode-define-minor-mode.
11014 1999-01-06 Dave Love <fx@gnu.org>
11016 * progmodes/fortran.el (fortran-window-create): Account for scroll
11019 * browse-url.el: Require (noerror) w3-auto when compiling.
11020 (browse-url-maybe-new-window): Make it a macro and revert last
11022 (browse-url-w3): Require w3 for w3-fetch-other-window.
11024 1999-01-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11026 * browse-url.el (browse-url-w3): Give w3-fetch-other-window the
11029 1999-01-06 Simon Marshall <simon@gnu.org>
11031 * subr.el (with-temp-message): Don't display MESSAGE if nil. Doc fix.
11033 * font-lock.el (font-lock-default-fontify-buffer): When using
11034 with-temp-message, use nil rather than current-message.
11036 * lazy-lock.el (lazy-lock-unstall):
11037 (lazy-lock-fontify-after-idle): When using with-temp-message, use nil
11038 rather than current-message.
11040 * fast-lock.el (fast-lock-save-cache-1):
11041 (fast-lock-cache-data): When using with-temp-message, use nil rather
11042 than current-message.
11044 1999-01-06 Eli Zaretskii <eliz@gnu.org>
11046 * international/codepage.el (cp-coding-system-for-codepage-1): Add
11047 the valid-codes property.
11049 * international/mule-cmds.el (prefer-coding-system): Call
11050 set-coding-priority, so that the internal array of priorities is
11053 * international/mule-util.el:
11054 (coding-system-change-eol-conversion,
11055 coding-system-change-text-conversion): Don't define here.
11057 * international/mule-cmds.el: Define them here. Remove the
11060 1999-01-06 Andreas Schwab <schwab@gnu.org>
11062 * emacs-lisp/debug.el (debug): Leave recursive minibuffer enabled
11063 if it was enabled before.
11065 * view.el (View-revert-buffer-scroll-page-forward): Bind
11066 view-scroll-auto-exit instead of obsolete view-mode-auto-exit.
11068 * files.el (recover-session): Preserve point when inserting
11071 1999-01-06 Richard Stallman <rms@psilocin.ai.mit.edu>
11073 * cus-edit.el (custom-save-delete): Don't delete whitespace
11074 and comments before the sexp that is replaced.
11076 1999-01-05 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
11078 * calendar/diary-lib.el (diary-float): Better fix of end-of-year error.
11080 1999-01-05 Andre Spiegel <spiegel@inf.fu-berlin.de>
11082 * vc.el (vc-dired-hook): Use the original value of
11083 dired-move-to-filename-regexp on lines that have not been
11085 (vc-dired-toggle-terse-mode): Tell vc-dired-hook whether the
11086 file lines have already been reformatted.
11088 1999-01-05 Dave Love <fx@gnu.org>
11090 * progmodes/f90.el (f90-mode): Make imenu-case-fold-search
11093 1998-01-05 Torbjorn Einarsson <T.Einarsson@clab.ericsson.se>
11095 * progmodes/f90.el: Change of regular expressions for type to
11096 correct highlighting and identation. Some small fixes for
11097 compatibility with XEmacs.
11099 1999-01-05 Stephen Eglen <stephen@gnu.org>
11101 * mspools.el (mspools-vm-system-mail): Provide an alternative
11102 value based on rmail-spool-directory if $MAIL is not defined.
11104 1999-01-05 Carsten Dominik <dominik@strw.leidenuniv.nl>
11106 * textmodes/reftex.el (reftex-section-levels): Allow negative levels.
11107 (reftex-section-info): Handle negative section levels.
11108 (reftex-view-crossref-extra): New option.
11109 (reftex-view-crossref): Generalized to work in more places.
11110 (reftex-find-citation-regexp-format, reftex-find-reference-format,
11111 reftex-macros-with-labels, reftex-global-search-marker): New variables.
11112 (reftex-view-cite-locations-from-bibtex): New command.
11113 (reftex-view-regexp-match, reftex-global-search,
11114 reftex-global-search-continue): New functions.
11115 (reftex-extract-bib-entries): No error for non-existing BibTeX
11116 file, just a message.
11117 (reftex-extract-bib-entries): Better error handling.
11118 (reftex-select-with-char): Use `*RefTeX Select*' for selection
11119 help and force it on current frame.
11120 (reftex-default-bibliography): New function.
11121 (reftex-access-parse-file): Check consistency after loading a
11122 parse file. When inconsistent, enfore rescan.
11123 (reftex-check-parse-consistency): New function.
11124 (easy-menu-define): Options section drastically shortened.
11126 1999-01-05 Kenichi Handa <handa@etl.go.jp>
11128 * language/thai-util.el (thai-compose-string): New function.
11130 1999-01-04 Inge Frick <inge@nada.kth.se>
11132 * easymenu.el (easy-menu-define): Doc fix.
11133 (easy-menu-create-menu): New keyword :included.
11134 (easy-menu-do-add-item): New keyword :included. SUFFIX may
11135 be an expression, not only a string. Simulate style `button'.
11136 Use easy-menu-define-key-intern instead of easy-menu-define-key.
11137 (easy-menu-define-key-intern): New function.
11138 (easy-menu-add-item): Understand value returned from
11139 easy-menu-item-present-p and easy-menu-remove-item.
11140 (easy-menu-return-item): New function.
11141 (easy-menu-item-present-p, easy-menu-remove-item): Use it.
11143 1999-01-03 Richard Stallman <rms@psilocin.ai.mit.edu>
11145 * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
11146 Use rmail-output-read-rmail-file-name to read the file name.
11147 Always call rmail-output-to-rmail-file noninteractively.
11148 When count > 1, do the loop here.
11149 Handle rmail-delete-after-output here.
11150 (rmail-summary-output): Similar changes.
11152 * mail/rmailout.el: Provide `rmailout'.
11153 (rmail-output-read-rmail-file-name): New function.
11154 (rmail-output-to-rmail-file): Use that.
11155 (rmail-output-read-file-name): New function.
11156 (rmail-output): Use that.
11158 * files.el (find-file-noselect): Let /: suppress wildcard matching.
11159 Error if wildcard matches no files.
11161 1999-01-02 Richard Stallman <rms@psilocin.ai.mit.edu>
11163 * menu-bar.el (clipboard-yank): Doc fix.
11165 * info.el (Info-insert-dir): Chase symlinks for file-attributes.
11167 1998-12-31 Markus Rost <rost@delysid.gnu.org>
11169 * textmodes/page-ext.el (pages-copy-header-and-position): Fix typo.
11171 1998-12-31 Andrew Innes <andrewi@harlequin.co.uk>
11173 * rmail.el (rmail-encode-string): Make sure mask value is
11174 positive; (emacs-pid) returns a negative number on Windows 9x
11175 which causes odd behaviour.
11177 1998-12-31 Eli Zaretskii <eliz@mescaline.gnu.org>
11179 * cus-start.el: Don't warn about dos-* variables unless on MS-DOS,
11180 and about w32-* variables unless on Windows/NT.
11182 1998-12-31 Boris Goldowsky <boris@alum.mit.edu>
11184 * textmodes/sgml-mode.el (sgml-validate): Ask whether to save only
11185 if buffer is modified; ask about all modified buffers.
11187 1998-12-30 Richard Stallman <rms@psilocin.ai.mit.edu>
11189 * simple.el (what-cursor-position): Fix previous change.
11191 1998-12-30 Richard Stallman <rms@sucrose.ai.mit.edu>
11193 * mail/sendmail.el (mail-mode): Eliminate ambiguous match
11194 from paragraph-start.
11196 1998-12-30 Eli Zaretskii <eliz@mescaline.gnu.org>
11198 * international/mule-cmds.el (prefer-coding-system): If the
11199 argument requires specific EOL conversion type, make the default
11200 coding systems use that.
11202 1998-12-30 Drew Csillag <drew_csillag@geocities.com>
11204 * progmodes/m4-mode.el (m4-m4-region, m4-m4-buffer):
11205 Use shell-command-on-region.
11206 (m4-start-m4, m4-end-m4): Functions deleted.
11208 1998-12-30 Michael Ernst <mernst@alum.mit.edu>
11210 * vc.el (vc-backend-diff): Use `diff-switches-list' throughout.
11212 1998-12-29 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11214 * browse-url.el (browse-url-mail): Give argument SEND-ACTION
11215 to compose-mail in the correct places and as a list.
11217 1998-12-29 Masatake Yamato <masata-y@tori.aist-nara.ac.jp>
11219 * page-ext.el: Added mouse-selection feature for pages directory buffer.
11220 (pages-directory-map): Bind mouse-2
11221 (pages-copy-header-and-position): Put text property.
11222 (pages-directory-goto-with-mouse): New function.
11224 1998-12-29 Eli Zaretskii <eliz@mescaline.gnu.org>
11226 * international/codepage.el (cp-make-coding-systems-for-codepage):
11228 (cp-coding-system-for-codepage-1): Likewise.
11230 1998-12-29 Kenichi Handa <handa@etl.go.jp>
11232 * language/thai-util.el (thai-post-read-conversion): Handle Thai
11233 composition sequence correctly here instead of calling
11234 thai-compose-region.
11236 * textmodes/fill.el (fill-region-as-paragraph): While deleting a
11237 newline in multibyte buffer, if previous or next character is a
11238 composite char, check the first component of the composite char.
11240 1998-12-28 Andreas Schwab <schwab@delysid.gnu.org>
11242 * emacs-lisp/advice.el (ad-special-forms): Add save-current-buffer
11245 1998-12-27 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
11247 * mail/sendmail.el (mail-yank-original): Remove text properties
11249 (mail-yank-region): Barf if no mark is set in the message
11252 * help.el (function-called-at-point): First look for function at point.
11254 1998-12-27 Richard Stallman <rms@psilocin.ai.mit.edu>
11256 * edmacro.el (edit-kbd-macro): Recognize electric-view-lossage.
11258 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu>
11260 * simple.el (what-cursor-position): Print character encoding also.
11262 1998-12-26 Dave Love <fx@gnu.org>
11264 * textmodes/flyspell.el: If local-maps work, don't put
11265 flyspell-mode-map in minor-mode-map-alist; bind mouse-2 and M-TAB
11266 in flyspell-mouse-map (only).
11267 (flyspell-use-local-map): New variable.
11268 Use a different mouse-2 binding in that case,
11269 and don't add to minor-mode-map-alist.
11270 (make-flyspell-overlay, flyspell-correct-word):
11271 Test flyspell-use-local-map.
11273 1998-12-26 Richard Stallman <rms@psilocin.ai.mit.edu>
11275 * files.el (file-expand-wildcards): Handle wildcards in directory name.
11276 Be careful about whether to return a relative file name,
11277 and if so, relative to what directory.
11279 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu>
11281 * emacs-lisp/easymenu.el (easy-menu-get-map):
11282 Change global map only if this menu exists in the global map already,
11283 and not in the local map.
11284 (easy-menu-do-add-item): Fix error message.
11286 * foldout.el (foldout-inhibit-key-bindings):
11287 Avoid concatenating onto outline-minor-mode-prefix.
11288 Make a new keymap for that prefix, if it does not already have one.
11290 1998-12-25 Ilya Zakharevich <ilya@math.ohio-state.edu>
11293 Can use linear algorithm for indentation if Emacs supports it.
11294 (cperl-after-expr-p): It is BLOCK if we reach lim when backup sexp.
11295 (cperl-after-block-p): Likewise.
11296 (cperl-after-block-and-statement-beg): Likewise.
11297 (cperl-after-block-p): After END/BEGIN we are a block.
11298 (cperl-after-expr-p): Skip labels when checking
11299 (cperl-indent-region): Make a marker for END - text added/removed.
11300 Disable hooks during the call (how to call them later?).
11301 Now indents 820-line-long function in 6.5 sec (including
11302 syntaxification) the first time (when buffer has few
11303 properties), 7.1 sec the second time.
11304 (cperl-indent-region): Do not indent whitespace lines
11305 (cperl-style-alist)
11306 Include `cperl-merge-trailing-else' where the value is clear.
11307 (cperl-styles-entries): Likewise.
11308 (cperl-problems): Improvements to docs.
11309 (cperl-tips): Likewise.
11310 (cperl-non-problems): Likewise.
11311 (cperl-mode): Make lazy syntaxification possible.
11312 Loads pseudo-faces for the sake of `cperl-find-pods-heres' (for 19.30).
11313 `font-lock-unfontify-region-function' was set to a wrong function.
11315 (cperl-find-pods-heres): Safe a position in buffer where it is safe to
11316 restart syntaxification. Changed so that -d ?foo? is a RE. Do
11317 not warn on `=cut' if doing a chunk only. 1 << 6 was OK,
11318 but 1<<6 was considered as HERE-doc.
11319 <file/glob> made into a string.
11320 Postpone addition of faces after syntactic step.
11321 Recognition of <FH> was wrong.
11322 Highlight `gem' in s///gem as a keyword. `qr' recognized.
11323 Knows that split// is null-RE.
11324 Highlights separators in 3-parts expressions as labels.
11325 <> was considered as a glob.
11326 Would err if the last line is `=head1'.
11327 $a-1 ? foo : bar; was a considered a regexp.
11328 `<< (' was considered a start of HERE-doc.
11329 mark qq[]-etc sections as syntax-type=string
11330 Was not processing sub protos after a comment ine.
11331 Was treating $a++ <= 5 as a glob.
11332 Tolerate unfinished REx at end-of-buffer.
11333 `unwind-protect' was left commented.
11334 / and ? after : start a REx.
11336 (cperl-syntaxify-by-font-lock): Set to t, should be safe now.
11337 Better default, customizes to `message' too, off in text-mode.
11339 (cperl-array-face): Renamed from `font-lock-emphasized-face',
11341 (cperl-hash-face): Renamed from `font-lock-other-emphasized-face'.
11343 (cperl-emacs-can-parse): New state variable.
11344 (cperl-indent-line): Corrected to use global state.
11345 (cperl-calculate-indent): Likewise.
11346 (cperl-fix-line-spacing): Likewise (not used yet).
11347 (cperl-calculate-indent): Did not consider `,' as
11348 continuation mark for statements.
11349 (cperl-calculate-indent): Avoid parse-data optimization at toplevel.
11350 Remove another parse-data optimization at toplevel: would
11352 Correct for labels when calculating indentation of continuations.
11354 (cperl-choose-color): Converted to a function (to be
11355 compilable in text-mode).
11356 (cperl-dark-background): Disable without window-system.
11357 Do `defface' only if window-system.
11358 (cperl-fix-line-spacing): Sped up to bail out early.
11359 (x-color-defined-p): Was not compiling on XEmacs
11360 Was defmacro'ed with a tick. Remove another def.
11361 (cperl-clobber-lisp-bindings): If set, C-c variants are the old ones
11362 (cperl-unwind-to-safe): New function.
11363 (cperl-fontify-syntaxically): Use `cperl-unwind-to-safe' to start at reasonable position.
11364 (cperl-fontify-syntaxically): Unwinds start and end to go out of
11365 long strings (not very successful).
11366 (cperl-forward-re): Highlight the trailing / in s/foo// as string.
11367 Highlight the starting // in s//foo/ as function-name.
11368 Emit a meaningful error instead of a cryptic one for an
11369 uncomplete REx near end-of-buffer.
11371 (cperl-electric-keyword): `qr' recognized.
11372 (cperl-electric-else): Likewise
11373 (cperl-to-comment-or-eol): Likewise
11374 (cperl-make-regexp-x): Likewise
11375 (cperl-init-faces): Likewise, and `lock' (as overridable?).
11376 Corrected to use new macros;
11377 `if' for copying `reference-face' to `constant-face' was backward.
11378 remove init `font-lock-other-emphasized-face',
11379 `font-lock-emphasized-face', `font-lock-keyword-face'.
11380 Interpolate `cperl-invalid-face'.
11381 (cperl-make-regexp-x): Misprint in a message.
11382 (cperl-syntaxify-unwind): New configuration variable
11383 (cperl-fontify-m-as-s): New configuration variable
11384 (cperl-electric-pod): Check for after-expr was performed
11386 (cperl-backward-to-noncomment): Cetter treatment of PODs and HEREs.
11387 (cperl-clobber-mode-lists): New configuration variable.
11388 (cperl-not-bad-style-regexp): Updated.
11389 Init: `cperl-is-face' was busted.
11390 (cperl-make-face): New macros.
11391 (cperl-force-face): New macros.
11392 (font-lock-other-type-face): Done via `defface' too.
11393 (cperl-nonoverridable-face): New face. Renamed from
11394 `font-lock-other-type-face'.
11395 (cperl-init-faces-weak): Use `cperl-force-face'.
11396 (cperl-comment-indent): Commenting __END__ was not working.
11397 (cperl-indent-for-comment): Likewise.
11398 (cperl-write-tags): Correct for XEmacs's `visit-tags-table-buffer'.
11399 When removing old TAGS info was not relativizing filename.
11400 (cperl-tags-hier-init): Gross hack to pretend we work (are we?).
11401 Another try to work around XEmacs problems. Better progress messages.
11402 (toplevel): Require custom unprotected => failure on 19.28.
11403 (cperl-xemacs-p): Defined when compile too
11404 (cperl-find-tags): Was writing line/pos in a wrong order,
11405 pos off by 1 and not at beg-of-line.
11406 (cperl-etags-snarf-tag): New macro
11407 (cperl-etags-goto-tag-location): New macro
11408 (cperl-version): New variable. New menu entry
11409 random docstrings: References to "future" 20.3 removed.
11410 Menu was described as `CPerl' instead of `Perl'
11411 (perl-font-lock-keywords): Would not highlight `sub foo($$);'.
11412 (cperl-toggle-construct-fix): Was toggling to t instead of 1.
11413 (cperl-ps-print-init): Associate `cperl-array-face', `cperl-hash-face'
11414 Remove `font-lock-emphasized-face', `font-lock-other-emphasized-face',
11415 `font-lock-reference-face', `font-lock-keyword-face'.
11416 Use `eval-after-load'.
11417 Remove not-CPerl-related faces.
11418 (cperl-tips-faces): New variable and an entry into Mini-docs.
11419 (cperl-indent-exp): Was not processing else-blocks.
11420 (cperl-get-state): NOP line removed.
11421 (cperl-ps-print): New function and menu entry.
11422 (cperl-ps-print-face-properties): New configuration variable.
11423 (cperl-invalid-face): New configuration variable.
11424 (perl-font-lock-keywords): Highlight trailing whitespace
11425 (cperl-contract-levels): Documentation corrected.
11426 (cperl-contract-level): Likewise.
11427 (cperl-ps-extend-face-list): New macro.
11428 (cperl-invalid-face): Change to ''underline.
11430 1998-12-25 Markus Rost <rost@delysid.gnu.org>
11432 * mail/rmailout.el (rmail-output): Abbreviate name of default-file
11433 for read-file-name.
11434 (rmail-output-to-rmail-file): Likewise.
11436 1998-12-25 Richard Stallman <rms@psilocin.ai.mit.edu>
11438 * emacs-lisp/easymenu.el (easy-menu-get-map):
11439 If MENU is nil, use global menu-bar map.
11440 (easy-menu-add-item, easy-menu-remove-item): Argument renamed.
11441 (easy-menu-item-present-p, easy-menu-get-map): Argument renamed.
11443 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11445 * ps-mule.el (ps-mule-begin-job): Programming uniformization.
11447 1998-12-22 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11449 * ps-print.el (ps-print-version): New version number (4.1.3).
11451 1998-12-21 Eli Zaretskii <eliz@mescaline.gnu.org>
11453 * international/mule-cmds.el: Use make-sparse-keymap instead of
11454 define-prefix-key when defining MULE menu items.
11456 * info.el (Info-node-at-bob-matching): New function.
11457 (Info-find-node, Info-build-node-completions): Call it.
11459 1998-12-21 Andreas Schwab <schwab@delysid.gnu.org>
11461 * help.el (describe-function-1): Say "keymap", not "Lisp macro",
11462 when this is an autoloaded keymap.
11464 1998-12-20 Eli Zaretskii <eliz@mescaline.gnu.org>
11466 * international/codepage.el (cp-coding-system-for-codepage-1):
11467 Create separate encoders and decoders, for DOS and Unix. Make the
11468 usual family of 3 coding systems, so that automatic detection of
11470 (cp-make-coding-systems-for-codepage): Don't intern DOS- and
11471 Unix-specific symbols here, and don't call
11472 cp-coding-system-for-codepage-1 twice. (Suggested by Ken'ichi
11473 Handa <handa@etl.go.jp>.)
11475 * dos-vars.el (dos-codepage-setup-hook): New defcustom.
11477 * term/internal.el (IT-character-translations): New variable, an
11478 alist used to display characters for which there's no glyphs in
11479 the current codepage.
11480 (IT-display-table-setup): New function, sets up the DOS terminal
11481 for a given codepage.
11482 (dos-codepage-setup): New function, sets up the MULE environment
11483 for the current value of dos-codepage.
11484 (top-level if): In the multibyte mode, turn on
11485 unibyte-display-via-language-environment. In the unibyte mode,
11486 set up the special syntax tables to map lower- to upper case and
11489 1998-12-19 Eric Ludlam <zappo@delysid.gnu.org>
11491 * speedbar.el: (speedbar-frame-parameters) Add : to custom prompt.
11492 (speedbar-frame-plist) Remove useless comments.
11493 (speedbar-frame-mode) Do not specify height if it is in the param list.
11494 Use default y position w/out changing it.
11495 If default x position is a list, keep, calculate the non-list X
11496 value when devining an initial position.
11497 (speedbar-this-file-in-vc) Fix SCCS to use s. not p. files.
11498 (speedbar-tag-group-name-minimum-length): New variable.
11499 (speedbar-frame-parameter): New compatibility function.
11500 (speedbar-frame-mode): Updated to use speedbar-frame-parameter.
11501 (speedbar-apply-one-tag-hierarchy-method): Fixed up taging sub
11502 groups to keep things in the right order, and to help with some
11503 naming conventions.
11504 (speedbar-create-tag-hierarchy): Enable buffer local version of
11505 `speedbar-tag-hierarchy-method' in the buffer we are tagging.
11506 (speedbar-line-path) Make DEPTH param optional. Devine it if absent.
11507 the case, derive it from the cursor location in speedbar.
11509 1998-12-17 Eli Zaretskii <eliz@mescaline.gnu.org>
11511 * international/mule-cmds.el (set-language-environment): On MS-DOS
11512 terminals, install DOS-specific nonascii-translation-table if the
11513 language info doesn't specify one. Pass the default eol-type to
11514 set-language-environment-coding-systems.
11515 (set-default-coding-systems): Copy the eol-type property for the
11516 new default values of {buffer-file,process}-coding-system from the
11518 (set-language-environment-coding-systems): Accept an optional
11519 argument EOL-TYPE, and set the eol-type property of the default
11520 coding systems accordingly.
11521 (set-terminal-coding-system): Enable menu item on MS-DOS terminals.
11522 (set-keyboard-coding-system): Likewise.
11523 (set-default-coding-systems): Don't set
11524 default-terminal-coding-system on MS-DOS to anything but nil.
11525 (prefer-coding-system): Describe in the doc string that
11526 default-terminal-coding-system is not changed on MS-DOS.
11527 (set-language-environment): For MS-DOS, set standard syntax table
11528 and display table for all characters with code above 127.
11529 (standard-display-european-internal): For MS-DOS, pass all
11530 characters with code above 127 directly to the terminal, and don't
11531 remap characters 160 and 146 in the unibyte case.
11533 * international/codepage.el: New file.
11535 1998-12-16 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
11537 * diary-lib.el (diary-float): Fix end-of-year error and typos in
11540 1998-12-16 Oleg S. Tihonov <tihonov@ffke-campus.mipt.ru>
11542 * map-ynp.el (map-y-or-n-p): Ignore input methods.
11544 * subr.el (read-passwd): Likewise.
11546 1998-12-16 Eli Zaretskii <eliz@mescaline.gnu.org>
11548 * info.el (Info-find-node): Add 1 to the position read from the
11549 tag table. Don't fail if the node delimiter ^_ is the first
11550 character in the file.
11551 (Info-insert-dir): Don't fail when the node delimiter ^_ is the
11552 first character in the file.
11553 (Info-read-subfile): Likewise.
11554 (Info-select-node): Likewise.
11555 (Info-build-node-completions): Likewise.
11557 1998-12-16 Richard Stallman <rms@gnu.org>
11559 * term/x-win.el (x-cut-buffer-or-selection-value):
11560 If clipboard is enabled, try it before PRIMARY selection.
11562 1998-12-15 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
11564 * international/iso-acc.el (iso-languages): For Portuguese ~c and ~C
11565 insert c-cedilla and C-cedilla respectively, like in latin-1.
11567 1998-12-15 Eli Zaretskii <eliz@delysid.gnu.org>
11569 * language/hebrew.el: Don't use sublists in the flags argument
11570 passed to make-coding-system.
11572 1998-12-15 Kenichi Handa <handa@etl.go.jp>
11574 * ps-mule.el (ps-mule-begin-job): Delete nil and unknown from a
11575 list of character sets found by find-charset-region.
11577 * ps-mule.el: Always require ps-print. Move some function
11578 definitions for Emacs 20.2 and the earlier to ps-print.el.
11579 (ps-mule-find-wrappoint): Make it work also with Emacs 20.2.
11581 * ps-print.el: Define several functions for Emacs 20.2 and the
11583 (ps-printer-name): Check if printer-name is bound.
11585 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11587 * ps-mule.el: Programming uniformization and little code improvement.
11588 (ps-mule-prepare-font): Programming uniformization.
11589 (ps-mule-find-wrappoint, ps-mule-plot-rule-cmpchar)
11590 (ps-mule-string-encoding, ps-mule-begin-job): Little code improvement.
11592 * ps-bdf.el: Programming uniformization and little code improvement.
11593 (bdf-search-and-read): New fun.
11594 (bdf-write-cache, bdf-initialize, bdf-info-absolute-path)
11595 (bdf-info-mod-time, bdf-info-size, bdf-info-font-bounding-box)
11596 (bdf-info-relative-compose, bdf-info-baseline-offset)
11597 (bdf-info-code-range, bdf-info-maxlen, bdf-info-offset-vector)
11598 (bdf-read-bitmap, bdf-get-bitmaps): Programming uniformization.
11599 (bdf-expand-file-name, bdf-file-newer-than-time, bdf-find-file)
11600 (bdf-read-cache, bdf-read-font-info, bdf-generate-glyphs): Little code
11603 1998-12-15 Vinicius Jose Latorre <vinicius@cpqd.com.br>
11605 * ps-print.el: (ps-print-version): New version number (4.1.2), doc fix
11606 and mule related code extraction. Autoload ps-mule funs.
11608 * ps-mule.el: Doc fix. Require ps-print only when compiled.
11609 (ps-mule-prologue-generated): New fun.
11610 (ps-mule-plot-string): Add autoload cookie.
11611 (ps-mule-begin-job): Call ps-mule-prologue-generated.
11613 1998-12-15 Kenichi Handa <handa@etl.go.jp>
11615 * ps-bdf.el: Require ps-mule instead of ps-print.
11616 (bdf-directory-list): Add autoload cookie.
11618 * ps-mule.el: New file. Mule related code extracted from
11619 ps-print.el. Require ps-print, provide ps-mule.
11620 (ps-multibyte-buffer): Add autoload cookie.
11621 (ps-mule-prepare-ascii-font): New fun.
11622 (ps-mule-set-ascii-font): New fun.
11623 (ps-mule-skip-same-charset): Fun deleted.
11624 (ps-mule-plot-string): Set ps-mule-current-charset.
11625 (ps-mule-initialize): Add autload cookie. Don't set
11626 ps-mule-font-info-database here.
11627 (ps-mule-begin-job): Renamed from ps-mule-begin. Update
11628 ps-mule-font-info-database and ps-control-or-escape-regexp.
11629 (ps-mule-begin-page): New fun.
11631 * ps-print.el: Mule related code moved to ps-mule.el.
11632 (ps-begin-job): While setting ps-control-or-escape-regexp, don't
11633 check ps-mule-charset-list.
11634 (ps-begin-page): Don't set ps-mule-current-charset, instead call
11635 ps-mule-begin-page.
11636 (ps-basic-plot-string): Call ps-mule-prepare-ascii-font.
11637 (ps-plot-region): Don't set ps-mule-current-charset, instead call
11638 ps-mule-set-ascii-font. Don't call ps-mule-skip-same-charset,
11639 instead skip same charsets by itself.
11640 (ps-generate): Call ps-mule-initialize of needs-begin-file is
11641 non-nil. Call ps-mule-begin-job.
11643 1998-12-15 Kenichi Handa <handa@etl.go.jp>
11645 * ps-bdf.el: File name changed from bdf.el. Provide ps-bdf
11648 * ps-print.el (ps-mule-font-info-database): Doc-string modified.
11649 (ps-mule-external-libraries): New element FEATURE.
11650 (ps-mule-init-external-library): Ajusted for the above change.
11651 (ps-mule-generate-font): Likewise.
11652 (ps-mule-generate-glyphs): Likewise.
11653 (ps-mule-prepare-font): Likewise.
11654 (ps-mule-initialize): Likewise.
11655 (ps-begin-file): Superfluous tailing parenthesis deleted.
11657 1998-12-15 Kenichi Handa <handa@etl.go.jp>
11659 * international/fontset.el (x-decompose-font-name): If PATTERN
11660 doesn't have any wild cards, return a vector made from a name that
11661 is found by x-resolve-font-name found. Comments added.
11663 * international/mule-cmds.el (find-coding-systems-for-charsets):
11664 Handle the case of unknown charset.
11665 (find-multibyte-characters): If invalid multibyte characters are
11666 found, return the corresponding strings instead of character
11668 (find-multibyte-characters): Adjusted for the above change.
11669 (select-safe-coding-system): For a unibyte buffer, always returns
11670 DEFAULT-CODING-SYSTEM.
11671 (get-charset-property): Fix previous change. Make it a function.
11672 (put-charset-property): Make it a function.
11674 * international/mule.el (make-coding-system): Set mime-charset
11675 property of *-with-esc coding system to nil.
11677 * international/quail.el (quail-point-in-conversion-region): New
11679 (quail-conversion-backward-delete-char): When a key sequence is
11680 being translated, call quail-delete-last-char.
11682 * language/devan-util.el
11683 (devanagari-reorder-glyphs-for-decomposition): Fix the way to
11684 handle devanagari-decomposition-rules.
11686 1998-12-14 Andreas Schwab <schwab@delysid.gnu.org>
11688 * textmodes/texinfo.el (texinfo-tex-buffer): Bind
11689 tex-start-options-string to empty string.
11690 (texinfo-tex-region): Use texinfo-tex-trailer as documented.
11692 1998-12-14 Andrew Innes <andrewi@delysid.gnu.org>
11694 * gnus/nntp.el (nntp-request-group): Undo previous change (4xx and
11695 5xx responses are already handled properly).
11697 1998-12-13 Richard Stallman <rms@gnu.org>
11699 * progmodes/compile.el (compilation-error-regexp-alist): Insist
11700 on a non-digit in the file name.
11702 * simple.el (comment-region): Handle comment-padding
11703 separately for insertion and for deletion, in the right way for each.
11705 1998-12-13 Felix Lee <flee@cygnus.com>
11707 * progmodes/compile.el (compilation-error-regexp-alist): Fix
11708 regexp to match "ChangeLog:1:1998-12-09 ..."
11710 1998-12-13 Eli Zaretskii <eliz@delysid.gnu.org>
11712 * cus-start.el (dos-unsupported-char-glyph): Add.
11714 1998-12-11 Dave Love <fx@gnu.org>
11716 * progmodes/fortran.el (fortran-font-lock-keywords-3): Wrap
11717 forward-sexp in condition-case.
11719 * emacs-lisp/find-func.el (find-function-search-for-symbol):
11720 Remove unnecessary test on `library' for explicit file name.
11721 Widen scope of save-match-data.
11723 1998-12-10 Eli Zaretskii <eliz@delysid.gnu.org>
11725 * international/mule.el (load-with-code-conversion): If the loaded
11726 file was inserted with no-conversion or raw-text coding system,
11727 make the buffer unibyte.
11729 1998-12-09 Richard Stallman <rms@gnu.org>
11731 * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
11732 Get rid of nested loops.
11734 * mouse.el (mouse-drag-vertical-line):
11735 If WHICH-SIDE is not `right', then scroll bars are on the left.
11737 * loadhist.el (load-history-loaded): defvar moved to help.el.
11739 * help.el (symbol-file-load-history-loaded): Variable renamed,
11740 and defvar moved from loadhist.el.
11741 (symbol-file): Renamed from describe-function-find-file.
11742 Load fns-VERSION.el here.
11743 (describe-variable, describe-function-1): Use symbol-file.
11745 * textmodes/tex-mode.el (tex-generate-zap-file-name):
11746 Don't start the name with #.
11748 * ispell.el: Take out the eval-when's.
11750 1998-12-09 Peter Breton <pbreton@ne.mediaone.net>
11752 * dirtrack.el (dirtrack-directory-change-hook): New hook.
11753 (dirtrack): Run it. Make debug message more verbose.
11755 1998-12-09 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
11757 * progmodes/octave-mod.el (octave-abbrev-start): Use the correct
11758 name of the abbrev table, and provide support for XEmacs.
11759 (octave-xemacs-p): New variable.
11761 1998-12-09 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
11763 * mail/sendmail.el (sendmail-send-it): Don't wait for sendmail to
11764 exit, when mail-interactive is nil.
11766 1998-12-09 Changwoo Ryu <cwryu@adam.kaist.ac.kr>
11768 * files.el (after-find-file): Message fix.
11770 1998-12-09 Ken Stevens <stevens@kdstevens.com>
11772 * ispell.el (ispell-kill-ispell): Don't send newline after EOF.
11774 1998-12-09 Geoff Voelker <voelker@cs.washington.edu>
11776 * ange-ftp.el (ange-ftp-expand-file-name) [windows-nt]: Handle
11777 filenames using backslashes.
11779 1998-12-09 Dave Love <fx@gnu.org>
11781 * browse-url.el (browse-url-mail): Call compose-mail-other-window
11782 with correct number of args.
11783 (browse-url-maybe-new-window): New arg. Callers changed.
11785 * progmodes/fortran.el (fortran-check-end-prog-re): Allow trailing
11788 1998-12-08 Geoff Voelker <voelker@cs.washington.edu>
11790 * makefile.nt (install) [COPY_LISP_SOURCE]: Fix end of conditional.
11792 1998-12-08 Markus Rost <rost@delysid.gnu.org>
11794 * vc.el (vc-rcs-release): Fix Type.
11795 (vc-sccs-release): Fix Type.
11796 (vc-cvs-release): Fix Type.
11798 * mail/rmailsum.el (rmail-summary-output): Simplify. Make prefix
11801 * mail/rmailout.el (rmail-output-to-rmail-file): Avoid multiple
11802 output of last undeleted message.
11804 1998-12-07 Geoff Voelker <voelker@cs.washington.edu>
11806 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
11807 (buffer-undo-list) [windows-nt]: Use different relative path.
11809 1998-12-07 Simon Marshall <simon@gnu.org>
11811 * font-lock.el (java-font-lock-keywords-2): Wrap java-minor-types.
11813 1998-12-05 Markus Rost <rost@delysid.gnu.org>
11815 * xt-mouse.el (xterm-mouse-mode): Pacify the byte compiler.
11817 * emacs-lisp/byte-opt.el: Require bytecomp for byte-goto-ops.
11819 1998-12-04 Markus Rost <rost@delysid.gnu.org>
11821 * info.el (Info-menu): Don't return error if point is between menu
11822 header and first menu item.
11824 1998-12-04 Dave Love <fx@gnu.org>
11826 * help.el (describe-function-1): Fix description for alias.
11828 1998-12-03 Andreas Schwab <schwab@delysid.gnu.org>
11830 * emacs-lisp/lisp-mnt.el (lm-summary): Strip off -*-
11831 specifications from summary line.
11833 * rect.el (delete-whitespace-rectangle): Mark for autoload.
11834 (close-rectangle): Define alias only once in loaddefs.el.
11836 1998-12-03 Eli Zaretskii <eliz@mescaline.gnu.org>
11838 * term/internal.el: Remove code which sets up a special syntax
11839 table for non-ASCII characters.
11841 1998-12-02 Andrew Innes <andrewi@delysid.gnu.org>
11843 * dos-w32.el (direct-print-region-function): Try to ensure that
11844 printer-name is expanded to a file name on a local drive;
11845 sometimes printing a file loaded from a network volume fails.
11846 (direct-print-region-function): Add a function to
11847 write-region-annotate-functions to append a formfeed character to
11848 the region being printed, if the region doesn't end with a
11849 formfeed already. This avoids creating a second print job
11850 containing a blank page when print spooling is enabled on Windows.
11852 1998-12-02 Dave Love <fx@gnu.org>
11854 * help.el (help-make-xrefs): Use `info', not the non-autoloaded
11857 1998-12-02 Richard Stallman <rms@gnu.org>
11859 * help.el (temp-buffer-resize-mode): Doc fix.
11861 * cus-edit.el (custom-save-delete): Save point before
11862 reading a sexp, rather than backing up.
11864 * international/iso-transl.el: Fix previous change.
11866 1998-12-02 Andre Spiegel <spiegel@inf.fu-berlin.de>
11868 * vc.el (vc-dired-window-configuration, vc-ediff-windows,
11869 vc-ediff-result, vc-dired-switches, vc-dired-terse-mode):
11870 Added defvars to suppress compilation warnings.
11872 1998-11-30 Ken Stevens <k.stevens@ieee.org>
11874 * ispell.el: Improved and fixed customize for variables:
11875 ispell-highlight-p, ispell-check-comments, ispell-help-in-bufferp,
11876 ispell-dictionary-alist, ispell-skip-sgml.
11877 Improved and fixed comments in variables and messages for
11878 functions: ispell-help-in-bufferp, ispell-local-dictionary,
11879 ispell-menu-map, ispell-checking-message, ispell-parser,
11880 ispell-word, lookup-words, ispell-change-dictionary, ispell-region,
11881 ispell-begin-tex-skip-regexp, ispell-begin-skip-region,
11882 ispell-comments-and-strings, ispell-continue, ispell-complete-word,
11883 ispell-message-text-end, ispell-add-per-file-word-list.
11884 (ispell-dictionary-alist-1): (ispell-dictionary-alist2): A coding
11885 system is now required for all languages. Casechars improved for
11886 castellano, castellano8, and norsk dictionaries. Dictionary
11887 norsk7-tex added. Dictionary polish added.
11888 (ispell-dictionary-alist): Redefined at load-time to support
11889 dictionary changes.
11890 (ispell-menu-map): Redefined at load-time to support menu changes.
11891 (ispell-check-version): New alias for `check-ispell-version'.
11892 (ispell-parse-output): Fixed matching for ispell error messages.
11893 Correctly returns spelling suggestions in order generated by ispell
11895 (check-ispell-version): Ensure `case-fold-search' doesn't get
11897 (ispell-complete-word): Ensure `case-fold-search' doesn't get
11898 redefined. Fix bug that didn't respect case of word being completed.
11899 (ispell-init-process): Set process coding system to be compatible
11900 with emacs processes and the ispell process.
11901 (ispell-kill-ispell): Ensures ispell process has terminated before
11902 starting new process. This can otherwise confuse process filters
11903 and hang the ispell process.
11904 (ispell-begin-skip-region-regexp): (ispell-skip-region): Improved
11905 skipping support for sgml.
11906 (ispell-minor-check): Support sgml labels. Fix mapping ^M to \r
11907 which could cause `ispell-complete-word' to hang.
11908 (ispell-message): Improved message reference matching. Ensure
11909 `case-fold-search' doesn't get redefined.
11910 (ispell-buffer-local-parsing): Ensure `case-fold-search' doesn't
11911 get redefined. Fixed bug in returning to nroff mode from tex mode.
11912 (ispell-add-per-file-word-list): Ensure `case-fold-search' doesn't
11915 1998-11-30 Richard Stallman <rms@psilocin.ai.mit.edu>
11917 * textmodes/flyspell.el (flyspell-check-word-p):
11918 Don't delay inside a kbd macro.
11920 * subr.el (make-local-hook): Return the hook variable.
11922 1998-11-30 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
11924 * hscroll.el (hscroll-mode, hscroll-global-mode, hscroll-window-maybe):
11925 Use a timer instead of post-command-hook.
11926 (hscroll-timer): New variable.
11928 1998-11-30 Dave Love <fx@gnu.org>
11930 * help.el (help-xref-button): Do nothing if text already has the
11931 help-xref property.
11932 (describe-variable): Revert previous change to hyperlink to source.
11934 1998-11-29 Richard Stallman <rms@psilocin.ai.mit.edu>
11936 * bindings.el (features): Add `base64' to this list.
11938 * loadhist.el (symbol-file): Doc fix.
11940 * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
11942 * files.el (hack-one-local-variable): Cope with non-file buffers.
11944 1998-11-28 Richard Stallman <rms@psilocin.ai.mit.edu>
11946 * help.el (describe-mode): Put major mode first.
11948 * calendar/appt.el (appt-disp-window): Use pop-to-buffer,
11949 to support special-display and same-window features.
11951 1998-11-27 Richard Stallman <rms@psilocin.ai.mit.edu>
11953 * simple.el (transpose-subr, transpose-subr-1): Rename variables
11954 bound in one function and used in the other.
11955 (transpose-subr-start1, transpose-subr-start2): Add defvars.
11956 (transpose-subr-end1, transpose-subr-end2): Add defvars.
11958 1998-11-26 Richard Stallman <rms@psilocin.ai.mit.edu>
11960 * autoinsert.el (auto-insert-alist): Use user-mail-address.
11962 1998-11-26 Kenichi Handa <handa@etl.go.jp>
11964 * international/ccl.el (ccl-dump-translate-character-const-tbl):
11965 Give format correct control string.
11967 * international/mule.el (define-translation-table): Fix bug of
11968 setting incorrect translation-table-id. If the first element of
11969 ARGS is a translation table, just register it.
11971 * language/chinese.el ("Chinese-BIG5"): Add charset-origin-alist
11974 1998-11-24 Michael Ernst <mernst@alum.mit.edu>
11976 * thingatpt.el (thing-at-point-url-at-point): Don't use current
11977 syntax table to determine what is whitespace.
11979 1998-11-24 Richard Stallman <rms@psilocin.ai.mit.edu>
11981 * frame.el (frame-parameter): Doc fix.
11983 * textmodes/tex-mode.el (tex-feed-input): New function.
11984 (tex-define-common-keys): Add binding for C-c C-m.
11986 1998-11-23 Dave Love <fx@gnu.org>
11988 * progmodes/fortran.el: Various minor doc fixes.
11989 (fortran-font-lock-keywords-1): Add `d' to comment-chars.
11990 (fortran-with-subprogram-narrowing): New macro.
11991 (fortran-check-for-matching-do): Use it.
11992 (fortran-end-do): Use fortran-check-end-prog-re.
11993 (fortran-beginning-do, fortran-end-if, fortran-beginning-if)
11994 (fortran-calculate-indent, fortran-calculate-indent): Likewise.
11996 1998-11-23 Simon Marshall <simon@gnu.org>
11998 * font-lock.el (font-lock-defaults): Doc fix.
11999 (font-lock-default-fontify-buffer): Rewritten to use with-temp-message.
12000 (lisp-font-lock-keywords-2): Fontify with-temp-message as a keyword.
12002 * lazy-lock.el (lazy-lock-unstall):
12003 (lazy-lock-fontify-after-idle): Rewritten to use with-temp-message.
12005 * fast-lock.el (fast-lock-save-cache-1):
12006 (fast-lock-cache-data): Rewritten to use with-temp-message.
12008 1998-11-22 Andrew Innes <andrewi@delysid.gnu.org>
12010 * mail/rmail.el (rmail-set-message-counters-counter): Detect
12011 messages that have been added with DOS line endings and convert
12012 the line endings for such messages.
12014 1998-11-22 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
12016 * help.el: Add resizing of temporary buffers.
12017 (temp-buffer-resize-mode): New command and variable.
12018 (temp-buffer-max-height): New variable.
12019 (resize-temp-buffer-window): New function.
12021 * window.el (window-buffer-height): New function, split from
12022 shrink-window-if-larger-than-buffer.
12023 (shrink-window-if-larger-than-buffer): Use window-buffer-height.
12025 1998-11-22 Richard Stallman <rms@psilocin.ai.mit.edu>
12027 * frame.el (initial-frame-alist): Add defcustom.
12029 * shell.el (shell-prompt-pattern): Add defcustom.
12031 1998-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
12033 * message.el (message-ignored-supersedes-headers): Remove
12036 1998-11-21 Richard Stallman <rms@psilocin.ai.mit.edu>
12038 * help.el (describe-mode): Don't avoid loop indirecting thru
12039 value of INDICATOR.
12041 1998-11-20 Richard Stallman <rms@psilocin.ai.mit.edu>
12043 * help.el (describe-variable): Allow any variable with a defcustom,
12044 even if it is not a user variable.
12046 * mail/rmail.el (mail-unsent-separator): Additional alternative.
12048 1998-11-20 Andrew Innes <andrewi@delysid.gnu.org>
12050 * gnus/nntp.el (nntp-request-group): Allow for failures when
12051 requesting a new group.
12053 1998-11-19 Richard Stallman <rms@psilocin.ai.mit.edu>
12055 * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Doc fix.
12057 1998-11-19 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12059 * emacs-lisp/find-func.el (find-function-regexp): Handle skeletons.
12061 1998-11-19 Simon Marshall <simon@gnu.org>
12063 * subr.el (with-temp-message): New macro.
12065 * emacs-lisp/lisp-mode.el (with-temp-message):
12066 Add lisp-indent-function property.
12068 1998-11-18 Dave Love <fx@gnu.org>
12070 * progmodes/fortran.el (fortran-end-prog-re): Fix typo.
12072 1998-11-18 Richard Stallman <rms@psilocin.ai.mit.edu>
12074 * emacs-lisp/bytecomp.el (temp-buffer-show-hook):
12075 This is not obsolete.
12077 1998-11-18 Kenichi Handa <handa@etl.go.jp>
12079 * textmodes/picture.el: Make a new map by make-keymap.
12080 (picture-desired-column): New variable.
12081 (picture-update-desired-column): New function.
12082 (picture-beginning-of-line): Set picture-desired-column to 0.
12083 (picture-end-of-line): Set picture-desired-column to the current
12085 (picture-forward-column): Pay attention to multi-column character.
12086 (picture-backward-column): Likewise.
12087 (picture-move-down): Likewise.
12088 (picture-move-up): Likewise.
12089 (picture-movement-nw): With prefix arg, move twice columns.
12090 (picture-movement-ne): Likewise.
12091 (picture-movement-sw): Likewise.
12092 (picture-movement-se): Likewise.
12093 (picture-set-motion): Handle two-column movements.
12094 (picture-move): Call picture-move-down or picture-forward-column
12095 only when necessary.
12096 (picture-insert): Pay attention to picture-desired-column.
12097 (picture-self-insert): Likewise.
12098 (picture-clear-column): Pay attention to multi-column character.
12099 (picture-mode): Modify doc-string for two-column movement.
12101 * rect.el (move-to-column-force): New function.
12102 (operate-on-rectangle): If coerce-tabs is non-nil, call
12103 move-to-column-force instead of move-to-column.
12104 (insert-rectangle): Call move-to-column-force instead of
12106 (open-rectangle-line): If begextra is not zero, call
12107 move-to-column-force.
12110 1998-11-16 Dave Love <fx@gnu.org>
12112 * textmodes/sgml-mode.el Require skeleton when compiling.
12113 (sgml-font-lock-keywords-1): Accept single-letter tags.
12114 (v2): Defvar free variable.
12116 1998-11-16 Sam Steingold <sds@goems.com>
12118 * emacs-lisp/cl-indent.el: Indent `with-output-to-string' as a CL
12119 macro, not ELisp one.
12121 1998-11-16 Kenichi Handa <handa@etl.go.jp>
12123 * emacs-lisp/lisp-mode.el: Set syntaxes all non-word multibyte
12124 characters to symbol.
12126 * language/japan-util.el (japanese-zenkaku-region): New optional
12129 1998-11-16 Kenichi Handa <handa@etl.go.jp>
12131 * international/mule.el
12132 (after-insert-file-set-buffer-file-coding-system): If the buffer
12133 is changed to unibyte, return inserted bytes.
12135 * tar-mode.el (tar-header-block-tokenize): Decode codes of file
12136 and link names if necessary.
12137 (tar-header-block-summarize): Handle the case that file or link
12138 names are multibyte.
12139 (tar-summarize-buffer): At first set the current buffer unibyte,
12140 then if there are multibyte file names, change it to multibyte.
12141 (tar-mode): Get char position from tar-header-offset.
12142 (tar-extract): Avoid multibyte<->unibyte conversion in
12143 insert-buffer-subsring by setting both buffers unibyte
12145 (tar-copy): Set the buffer unibyte while doing a work. Write
12146 without code conversion.
12147 (tar-expunge): Set the buffer unibyte while doing a work.
12148 (tar-alter-one-field): Likewise.
12149 (tar-clear-modification-flags): Compare byte position with
12151 (tar-subfile-save-buffer): Avoid multibyte<->unibyte conversion in
12152 insert-buffer-subsring by setting both buffers unibyte
12153 temporarily. Pay attention to multibyteness while updating the
12155 (tar-mode-write-file): Write without code conversion.
12157 1998-11-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12159 * nngateway.el: Require cl.
12161 1998-11-15 Dave Love <fx@gnu.org>
12163 * progmodes/fortran.el: Fix previous change:
12164 (fortran-end-prog-re1): Changed.
12165 (fortran-check-end-prog-re): New function.
12166 (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Use it.
12168 1998-11-13 Tom Breton <tob@world.std.com>
12170 * autoinsert.el (auto-insert-alist): Don't assume *.el is part of
12173 1998-11-13 Carsten Dominik <cd@delysid.gnu.org>
12175 * textmodes/reftex.el: (reftex-finding-files): Group documentation
12177 (reftex-toc-toggle-file-boundary,
12178 reftex-toc-toggle-labels,
12179 reftex-toc-toggle-context,reftex-find-start-point): New functions.
12180 (reftex-toc-include-labels, reftex-toc-include-context,
12181 reftex-toc-include-file-boundaries,
12182 reftex-toc-keep-other-windows): New options.
12183 (reftex-use-text-after-label-as-context): Option removed.
12184 (reftex-extract-bib-entries): Protect use in non-latex
12186 (reftex-toc-visit-location): Renamed from
12187 `reftex-toc-visit-line'.
12188 (reftex-latin1-to-ascii): Works now with and without Mule.
12189 (reftex-truncate): Removed special stuff for Emacs 20.2.
12190 (reftex-get-offset): Made more general.
12191 (reftex-show-label-location): Renamed from
12192 `reftex-select-label-callback'.
12193 (reftex-pop-to-label): Function removed (using
12194 `reftex-show-label-location' instead.
12195 (reftex-insert-docstruct): Renamed from
12196 `reftex-make-and-insert-label-list'. Function args changed.
12197 (reftex-toc): Now uses `reftex-insert-docstruct' and
12198 `reftex-find-start-point'.
12199 (reftex-select-item): Use `reftex-find-start-point'.
12200 (reftex-toc-visit-line): Can display labels and file
12202 (reftex-TeX-master-file): `(TeX-master-file)' protected.
12204 1998-11-12 Sam Steingold <sds@goems.com>
12206 * browse-url.el (browse-url): Handle the case when
12207 `browse-url-browser-function' is a lambda list.
12209 1998-11-12 Eli Zaretskii <eliz@mescaline.gnu.org>
12211 * loadup.el (buffer-undo-list): For ms-dos, use fns.el without the
12213 * loadhist.el (symbol-file): Likewise
12215 1998-11-11 Richard Sharman <Richard_Sharman@Mitel.COM>
12217 * ediff-init.el (ediff-even-diff-face-A): Fix stipple spelling.
12219 1998-11-11 Sam Steingold <sds@goems.com>
12221 * inf-lisp.el (switch-to-lisp): If no inferior lisp present, call
12222 `run-lisp' instead of signalling an error.
12224 1998-11-11 Karl Heuer <kwzh@gnu.org>
12226 * desktop.el (desktop-save, desktop-create-buffer): Undo 10-22 change.
12228 1998-11-11 Richard Stallman <rms@gnu.org>
12230 * vc-hooks.el (vc-toggle-read-only): Doc fix.
12232 1998-11-11 Per Starback <starback@update.uu.se>
12234 * ispell.el: (ispell-dictionary-alist-2): Removed svenska,
12235 renamed svenska8 to svenska, and fixed and extended CASECHARS
12238 1998-11-11 Andrew Innes <andrewi@delysid.gnu.org>
12240 * ps-print.el (ps-print-prologue-1): Only use old LandscapeMode
12241 handling if setpagedevice is not available.
12242 (ps-begin-file): Fix typo.
12244 1998-11-11 Kenichi Handa <handa@etl.go.jp>
12246 * international/mule-util.el (compose-chars-component): Signal
12247 error if CH is a rule-based composition character.
12248 (compose-chars): Signal error if an already compsed character is
12249 going to be composed by rule-base.
12251 * term/x-win.el: If a resolved ASCII font name doesn't conform to
12252 full XLFD, don't try to get information of WEIGHT and SLANT from
12255 1998-11-10 Andrew Innes <andrewi@harlequin.co.uk>
12257 * dos-w32.el (set-default-process-coding-system): Use function on
12258 before-init-hook to set default-process-coding-system based on
12259 enable-multibyte-characters.
12261 * term/w32-win.el ([language-change]): For now ignore
12262 keyboard language-change events.
12264 1998-11-10 Eli Zaretskii <eliz@delysid.gnu.org>
12266 * ediff-util.el (ediff-make-temp-file): Run the prefix through
12267 convert-standard-file-name, but leave the results of
12268 make-temp-name unaltered. For MS-DOS, truncate the prefix to 2
12269 characters if the original name already exists, or has a special
12272 1998-11-10 Karl Heuer <kwzh@gnu.org>
12274 * international/iso-insert.el: Delete autoload cookies.
12276 * international/iso-transl.el: Add autoload cookies.
12278 1998-11-10 Richard Stallman <rms@gnu.org>
12280 * ispell.el (ispell-get-coding-system): Default to iso-latin-1.
12281 (ispell-process-line): Don't treat multibyte
12283 1998-11-09 Andrew Innes <andrewi@harlequin.co.uk>
12285 * ps-print.el (ps-print-prologue-1): In BeginDoc procedure, call
12286 setpagedevice to specify the page size if setpagedevice is
12287 available. This is necessary to select the correct paper tray on
12288 Level 2 printers with multiple paper sizes available.
12290 (ps-begin-file): Cope with font names that contain spaces, and
12291 call BeginDoc in a BeginSetup/EndSetup block.
12293 1998-11-08 Eli Zaretskii <eliz@mescaline.gnu.org>
12295 * loadup.el (buffer-undo-list): Run fns-VERSION.el through
12296 convert-standard-filename.
12298 * loadhist.el (symbol-file): Run fns-VERSION.el through
12299 convert-standard-filename.
12301 1998-11-06 Richard Stallman <rms@gnu.org>
12303 * textmodes/texinfmt.el (texinfo-format-scan):
12304 Detect the case of two @-commands in a row; process just the first.
12305 (texinfo-append-refill): If line has a @c, insert the @refill
12307 (texinfo-format-refill): Return with point where the @refill was.
12309 * files.el (hack-local-variables): Test local-enable-local-variables.
12310 (hack-local-variables-prop-line): Likewise.
12311 (set-auto-mode): Don't test local-enable-local-variables here.
12312 (enable-local-variables): Doc fix.
12313 (local-enable-local-variables): Doc fix.
12314 (normal-mode): Doc fix.
12316 1998-11-06 Karl Heuer <kwzh@gnu.org>
12318 * emacs-lisp/find-func.el (find-variable-noselect): Autoload.
12320 1998-11-06 Richard Sharman <Richard_Sharman@Mitel.COM>
12322 * simple.el (line-number-mode): Doc fix.
12324 1998-11-06 Kenichi Handa <handa@etl.go.jp>
12326 * international/fontset.el (create-fontset-from-fontset-spec):
12327 Give correct arg to `error'.
12329 1998-11-06 Andreas Schwab <schwab@delysid.gnu.org>
12331 * textmodes/sgml-mode.el (html-mode): Doc fix.
12332 (sgml-name-8bit-mode): Fix missing format character in message string.
12334 1998-11-05 Karl Heuer <kwzh@gnu.org>
12336 * mail/sendmail.el (sendmail-send-it): Check for failure.
12338 1998-11-05 Richard Stallman <rms@gnu.org>
12340 * man.el (Man-page-header-regexp): Alternate value for Solaris 2.6.
12342 * rect.el (delete-whitespace-rectangle): close-rectangle renamed.
12343 (close-rectangle): Define as alias.
12345 1998-11-05 Richard M. Heiberger <rmh@fisher.stat.temple.edu>
12347 * textmodes/tex-mode.el (tex-start-shell): Track directory changes.
12349 1998-11-05 Dave Love <fx@gnu.org>
12351 * help.el (describe-variable): Don't quote link to source.
12353 1998-11-04 Richard Stallman <rms@sucrose.ai.mit.edu>
12355 * gud.el (gud-common-init): Use pop-to-buffer.
12356 (same-window-regexps): Add an element that matches all gud buffers.
12358 1998-11-04 Jason Rumney <jasonr@altavista.net>
12360 * term/w32-win.el (x-get-selection-value): Alias to
12361 x-cut-buffer-or-selection-value.
12362 (w32-standard-fontset-spec): New variable.
12363 (w32-create-initial-fontsets, mouse-set-font): Check whether
12364 new-fontset is available.
12365 (w32-use-w32-font-dialog): Enable use of set-variable.
12367 1998-11-04 Andre Spiegel <spiegel@inf.fu-berlin.de>
12369 * vc.el (with-vc-file, edit-vc-file): New macros.
12371 1998-11-04 Kenichi Handa <handa@etl.go.jp>
12373 * international/quail.el (quail-show-guidance-buf): Call
12374 set-minibuffer-window to set minibuffer window of the current
12377 1998-11-03 Theodore Jump <tjump@tertius.com>
12379 * term/w32-win.el: Require fontset.
12381 1998-11-03 Andrew Innes <andrewi@delysid.gnu.org>
12383 * faces.el (set-face-font): Call resolve-fontset-name on w32.
12384 (set-face-font-auto): Ditto.
12386 1998-11-03 Andreas Schwab <schwab@delysid.gnu.org>
12388 * mouse.el (mouse-drag-region): Fix typo.
12390 1998-11-02 Dave Love <fx@gnu.org>
12392 * progmodes/fortran.el Fix for fontification of strings lost somehow:
12393 (fortran-fontify-string): New function.
12394 (fortran-font-lock-keywords-1): Use it.
12396 1998-11-02 Markus Rost <rost@delysid.gnu.org>
12398 * comint.el (comint-file-name-quote-list): Doc fix.
12400 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu>
12402 * loadup.el (buffer-undo-list): Write fns-VERSION.el into
12403 build directory, not source directory.
12405 * mouse.el (mouse-drag-region): Fake up a mouse-motion event
12406 if we did not get one for the final move.
12408 1998-11-01 Dave Love <fx@gnu.org>
12410 * goto-addr.el (goto-address-at-point, goto-address-at-mouse):
12411 Don't funcall browse-url-browser-function.
12413 * gnus/gnus-art.el (gnus-button-embedded-url, gnus-button-url):
12414 Don't funcall browse-url-browser-function.
12416 * fortran.el (fortran-end-prog-re1): Fix the regexp.
12418 1998-11-01 Richard Stallman <rms@psilocin.ai.mit.edu>
12420 * files.el (revert-buffer): Doc fix.
12422 1998-10-31 Richard Stallman <rms@psilocin.ai.mit.edu>
12424 * textmodes/tex-mode.el (tex-start-options-string):
12425 Quote the backslashes with more backslashes.
12427 1998-10-31 Dave Love <fx@gnu.org>
12429 * webjump.el (webjump-sample-sites): Fix Lisp archive site.
12430 (webjump): Don't funcall browse-url-browser-function.
12432 1998-10-30 Kenichi Handa <handa@etl.go.jp>
12434 * international/quail.el (quail-start-translation): Handle
12435 switching of the frame in read-key-sequence.
12436 (quail-start-conversion): Likewise.
12437 (quail-show-guidance-buf): Detach quail-guidance-buf from any
12438 windows before setting an appropriate window for it.
12439 (quail-hide-guidance-buf): Use window-minibuffer-p. Set
12440 quail-guidance-win to nil.
12441 (quail-update-guidance): If quail-guidance-buf is not in the
12442 selected frame, call quail-show-guidance-buf again.
12444 1998-10-30 Espen Skoglund <espensk@stud.cs.uit.no>
12446 * progmodes/pascal.el (pascal-mode):
12447 `blink-matching-paren-dont-ignore-comments' set to t.
12449 1998-10-30 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12451 * calendar/cal-menu.el (cal-menu-update): Fix menu wording.
12453 1998-10-30 Dave Love <fx@gnu.org>
12455 * vc.el (vc-backend-merge-news): Check for "P" output.
12457 * help.el (describe-variable): Hyperlink the definition.
12459 1998-10-30 Andreas Schwab <schwab@delysid.gnu.org>
12461 * progmodes/sh-script.el (sh-canonicalize-shell): Fix regexp.
12462 (sh-set-shell): Likewise.
12464 * gnus/nnweb.el: Don't require 'w3 and 'url unprotected.
12466 * emacs-lisp/edebug.el (edebug-initial-mode): Fix customize type.
12467 (edebug-on-error): Fix customize type to match that of
12470 * emacs-lisp/eldoc.el (eldoc-argument-case): Fix customize type.
12472 * emacs-lisp/lisp-mnt.el (lm-report-bug): Use
12473 report-emacs-bug-address instead of undefined bug-gnu-emacs.
12475 * international/mule-cmds.el (select-message-coding-system): Doc
12478 * international/mule-diag.el (describe-coding-system): Describe
12481 * mail/sendmail.el (sendmail-coding-system,
12482 default-sendmail-coding-system): Doc fix.
12484 * simple.el (shell-command-on-region): Doc fix.
12486 * loadup.el: Write fns-*.el in current directory instead of
12487 data-directory since no installation directory exists yet. Mark
12488 buffer unmodified afterwards.
12490 * loadhist.el (symbol-file): Load fns-*.el from exec-directory
12491 instead of data-directory since it is architecture dependent.
12492 (load-history-loaded): Update doc string.
12494 1998-10-29 Geoff Voelker <voelker@cs.washington.edu>
12496 * ange-ftp.el (ange-ftp-canonicalize-filename): Do not use a UNC
12497 path as a default directory when canonicalizing names.
12499 * w32-fns.el: Remove a dangling reference to a directory on the
12502 1998-10-27 Richard Stallman <rms@psilocin.ai.mit.edu>
12504 * progmodes/tcl-mode.el (tcl-font-lock-keywords): Added itcl and
12505 namespace related keywords such as `class', `body', `private',
12506 `variable', `namespace eval', etc.
12507 (tcl-imenu-generic-expression): Handle itcl body and class definitions.
12508 (tcl-mode): Added ":" as a word constituent to the syntax-alist of
12509 imenu and font-lock so that searches for \sw would find words
12512 * progmodes/etags.el (initialize-new-tags-table):
12513 Do not alter find-tag-marker-ring and tags-location-ring.
12515 1998-10-27 Geoff Voelker <voelker@cs.washington.edu>
12517 * term/w32-win.el: Require fontset.
12518 (w32-init-fontsets): New function (code from x-win.el).
12520 1998-10-26 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12522 * cal-x.el (diary-frame-parameters, calendar-frame-parameters,
12523 calendar-and-diary-frame-parameters): Add title parameter.
12525 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu>
12527 * completion.el (dynamic-completion-mode): New function to enable
12528 the mode. (Just loading the file now does not change anything.)
12530 1998-10-26 Vinicius Jose Latorre <vinicius@cpqd.com.br>
12532 * ps-print.el: User option for multibyte buffer handling and doc fix.
12533 (ps-multibyte-buffer): New user option.
12534 (ps-setup): Print new user option.
12535 (ps-print-quote): New fun.
12536 (ps-color-p, ps-mule-font-info-database-latin): New var.
12537 (ps-default-color, ps-mule-font-info-database)
12538 (ps-mule-font-info-database-ps-bdf): Adjust initialization.
12539 (ps-mule-get-font-spec, ps-mule-begin, ps-begin-file)
12540 (ps-plot-with-face, ps-generate-postscript-with-faces, ps-generate):
12541 Little code improvement.
12542 (ps-mule-initialize): Initialize ps-mule-font-info-database.
12543 (ps-print-prologue-header, ps-font-family, ps-font-size)
12544 (ps-header-font-family, ps-header-font-size, ps-header-title-font-size)
12545 (ps-build-face-reference, ps-mule-font-info-database-bdf)
12546 (ps-mule-external-libraries, ps-mule-init-external-library)
12547 (ps-mule-prepare-font, ps-mule-find-wrappoint, ps-mule-plot-string):
12549 (ps-print-version): New version number (4.1.1) and doc fix.
12550 (ps-print-prologue-header): New user option.
12551 (ps-color-values, ps-xemacs-face-kind-p, ps-mapper, ps-extent-sorter):
12552 Conditional compilation for GNU Emacs and emacsens.
12553 (ps-generate-postscript-with-faces): Skip invisible text better.
12554 (ps-setup): Print new user option.
12555 (ps-print-preprint): Check if input file name exists and is unwritable.
12556 (ps-begin-file): Adjust PostScript prologue header for duplex printers
12557 and insert user PostScript prologue header comments.
12558 (ps-mule-encode-bit, ps-mule-string-ascii, ps-mule-string-encoding):
12560 (dos-ps-printer, lazy-lock-fontify-buffer): Eliminated.
12561 (ps-mule-prologue, ps-mule-cmpchar-prologue, ps-mule-bitmap-prologue):
12562 PostScript programming normalization.
12563 (ps-mule-encode-7bit, ps-mule-encode-8bit, ps-mule-generate-font)
12564 (ps-mule-generate-glyphs, ps-mule-prepare-font, ps-mule-plot-string)
12565 (ps-mule-skip-same-charset, ps-mule-plot-rule-cmpchar)
12566 (ps-mule-plot-cmpchar, ps-mule-prepare-cmpchar-font)
12567 (ps-mule-initialize, ps-mule-begin, ps-face-bold-p, ps-do-despool):
12568 Programming style normalization.
12570 1998-10-26 Kenichi Handa <handa@etl.go.jp>
12572 * ps-print.el: To make it work also on Emacs 20.2 and the earlier
12573 version, check the value of mule-version.
12575 * international/mule-util.el (compose-region): Insert then delete
12576 to preserve markers.
12577 (decompose-region): Use search-forward for efficiency.
12579 * language/chinese.el (pre-write-encode-hz): Cancel previous
12580 change, use generate-new-buffer instead of get-buffer-create.
12581 * language/devan-util.el
12582 (in-is13194-devanagari-pre-write-conversion): Likewise.
12583 * language/thai-util.el (thai-pre-write-conversion): Likewise.
12584 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
12585 * language/viet-util.el (viqr-pre-write-conversion): Likewise.
12587 1998-10-26 Richard Stallman <rms@psilocin.ai.mit.edu>
12589 * mail/rmailsum.el (rmail-message-subject-p):
12590 Handle message whose header has not been reformatted.
12592 * desktop.el (desktop-buffer-dired): Use dired-maybe-insert-subdir.
12594 1998-10-25 Jason Rumney <jasonr@altavista.net>
12596 * term/w32-win.el (w32-use-w32-font-dialog, w32-fixed-font-alist):
12598 (mouse-set-font): Use font menus instead of dialog according to
12599 w32-use-w32-font-dialog.
12601 1998-10-21 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12603 * calendar/calendar.el (calendar-day-name-array): Add doc string
12605 (calendar-month-name-array): Add doc string correctly!
12607 1998-10-21 Richard Stallman <rms@psilocin.ai.mit.edu>
12609 * net-utils.el (whois-get-tld): Rewrite not to use `do'.
12611 1998-10-21 Markus Rost <rost@delysid.gnu.org>
12613 * lisp/info.el (Info-next-menu-item): Stay on top of node.
12615 * mail/rmailout.el (rmail-output): Insert newline only if necessary.
12617 * mail/rmail.el (rmail-get-new-mail): Delete garbage in any case.
12619 * menu-bar.el (menu-bar-options-menu): Add option for truncate-lines.
12621 1998-10-21 Andreas Schwab <schwab@delysid.gnu.org>
12623 * emacs-lisp/cl-specs.el (function-form): Fix spec for "function*".
12625 1998-10-21 Karl Heuer <kwzh@gnu.org>
12627 * emacs-lisp/profile.el (profile-timer-program): Var deleted.
12628 (profile-timer-process, profile-temp-result-, profile-time): Likewise.
12629 (profile-filter, profile-reset-timer): Functions deleted.
12630 (profile-check-zero-init-times, profile-get-time): Likewise.
12631 (profile-find-function, profile-quit): Likewise.
12632 (profile-distinct, profile-call-stack, profile-last-time): New vars.
12633 (profile-time-list, profile-init-list): Doc fix.
12634 (profile-functions): Simplify.
12635 (profile-print): Use float. Make output include space separators.
12636 (profile-add-time): New helper function.
12637 (profile-function-prolog): Renamed from profile-start-function.
12638 Handle profile-distinct.
12639 (profile-function-epilog): Renamed from profile-update-function.
12640 Handle profile-distinct.
12641 (profile-a-function): If the function to be profiled is an
12642 autoload form, load it. If it's lazy-loaded, fetch it.
12643 (profile-fix-fun): Simplify profiling wrapper, and unwind-protect it.
12644 (profile-restore-fun): Arg FUN is now a function symbol, as was
12645 documented, rather than a one-element list.
12646 (profile-finish): Call profile-restore-fun properly.
12648 1998-10-21 Kenichi Handa <handa@etl.go.jp>
12650 * international/characters.el: Setup charset property
12651 nospace-between-words.
12653 * international/mule-cmds.el (get-charset-property): If CHARSET is
12654 composition, return nil.
12655 (put-charset-property): If CHARSET is composition, do nothing.
12657 * language/chinese.el (pre-write-encode-hz): Use with-temp-buffer.
12658 * language/devan-util.el
12659 (in-is13194-devanagari-pre-write-conversion): Likewise.
12660 * language/thai-util.el (thai-pre-write-conversion): Likewise.
12661 * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
12662 * language/viet-util.el (viqr-pre-write-conversion): Likewise.
12664 * textmodes/fill.el (sentence-end-without-period): New variable.
12665 (canonically-space-region): Pay attention to
12666 sentence-end-without-period.
12667 (fill-find-break-point): The first argument CHARSET deleted.
12669 (fill-region-as-paragraph): Pay attention to charset property
12670 nospace-between-words and text property nospace-between-words.
12672 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu>
12674 * progmodes/sh-script.el (sh-font-lock-keywords): Don't crash for
12675 an unrecognized shell.
12677 1998-10-20 Thien-Thi Nguyen <ttn@delysid.gnu.org>
12679 * desktop.el (desktop-save): Include minor modes symbolically.
12680 (desktop-create-buffer): Turn on all minor modes in `mim'.
12682 1998-10-20 Richard Stallman <rms@psilocin.ai.mit.edu>
12684 * progmodes/sh-script.el (sh-mode): Handle .spec and .mspec files.
12685 (sh-font-lock-keywords): Handle rpm and rpm2.
12686 (sh-ancestor-alist): Handle rpm.
12688 * files.el (auto-mode-alist): Recognize .rpm files.
12689 Also .spec and .mspec files.
12691 1998-10-20 Eli Zaretskii <eliz@mescaline.gnu.org>
12693 * faces.el (frame-set-background-mode): Enable the function for
12696 1998-10-20 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
12698 * calendar/calendar.el (calendar-day-name-array): Add doc string.
12699 (calendar-month-name-array): Add doc string.
12701 1998-10-19 Richard Stallman <rms@psilocin.ai.mit.edu>
12703 * simple.el (kill-ring-max): Increased to 60.
12705 1998-10-17 Kenichi Handa <handa@etl.go.jp>
12707 * international/characters.el: Setup auto-fill-chars.
12709 * international/kinsoku.el (kinsoku): Check the variable
12712 * simple.el (do-auto-fill): Don't check kinsoku-enable here.
12713 Don't call kinsoku directly, intead call fill-find-break-point.
12715 * textmodes/fill.el: Setup `fill-find-break-point-function'
12716 property to character sets which require `kinsoku' processing for
12718 (fill-find-break-point): New function.
12719 (fill-region-as-paragraph): Don't check kinsoku-enable here.
12720 Don't call kinsoku directly, intead call fill-find-break-point.
12722 1998-10-18 Richard Stallman <rms@psilocin.ai.mit.edu>
12724 * faces.el (modify-face-read-string): Return (nil) for "none".
12725 (modify-face): Don't get error if (nil) is the argument.
12726 (face-try-color-list): Don't check whether nil is a valid color.
12728 1998-10-17 Richard Stallman <rms@psilocin.ai.mit.edu>
12730 * emacs-lisp/bytecomp.el (byte-recompile-directory):
12731 Print message about each directory, even in batch mode.
12733 * gnus/nntp.el: Require `cl' before using nnoo-declare.
12735 * ps-print.el (ps-mule-chars-in-string): No need to use sref.
12736 (ps-mule-string-char): No need to use sref.
12737 (ps-mule-next-index): No need to use sref.
12739 * ange-ftp.el (ange-ftp-waiting-flag): defvar moved.
12741 * files.el (revert-buffer-internal-hook): Add defvar.
12743 * arc-mode.el (archive-mode): Locally set file-precious-flag.
12745 * tar-mode.el (tar-mode): Locally set file-precious-flag.
12747 1998-10-16 Markus Rost <rost@delysid.gnu.org>
12749 * international/mule-cmds.el (default-input-method): Fix custom type.
12751 * net-utils.el (whois-server-list): Fix customization type.
12753 * shell.el (shell-input-autoexpand): Fix customization group.
12755 1998-10-16 Richard Stallman <rms@psilocin.ai.mit.edu>
12757 * repeat.el (repeat): Handle keyboard macros properly.
12758 Handle new prefix arg after self-insert command.
12760 * repeat.el: Don't include cl even at compile time.
12761 (repeat): Avoid using `loop'.
12763 * simple.el (shell-command-on-region): Doc fix.
12764 (next-history-element): Special error message if no default.
12766 1998-10-15 Richard Stallman <rms@psilocin.ai.mit.edu>
12768 * ps-print.el (ps-print-buffer): Doc fix.
12769 (ps-despool): Likewise.
12771 * arc-mode.el (arc-mode): Provide arc-mode.
12773 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu>
12775 * ps-print.el (ps-print-buffer): Doc fix.
12777 1998-10-14 Dave Love <fx@gnu.org>
12779 * ange-ftp.el (ange-ftp-read-passwd): Function deleted.
12780 (ange-ftp-set-passwd): Use read-passwd, not ange-ftp-read-passwd.
12781 (ange-ftp-get-passwd, ange-ftp-set-account): Likewise.
12783 * progmodes/fortran.el (fortran-mode-map): Change "Join
12784 Continuation Line" to "Join Line".
12785 (fortran-font-lock-keywords-1): Add "cycle", "exit".
12787 1998-10-14 Emilio Lopes <Emilio.Lopes@Physik.TU-Muenchen.DE>
12789 * progmodes/fortran.el (fortran-join-line): Use
12790 `delete-indentation' instead of issuing an error message if not on
12791 a continuation line. Provide for joining several lines using
12794 1998-10-14 Eli Zaretskii <eliz@mescaline.gnu.org>
12796 * term/pc-win.el (msdos-color-values): New variable.
12797 (x-color-values): New function, emulates its namesake from
12799 (msdos-bg-mode): Add all dark colors to those which return
12802 1998-10-14 Richard Stallman <rms@psilocin.ai.mit.edu>
12804 * replace.el (keep-lines, flush-lines, how-many):
12805 Don't ignore case if arg has upper case letters.
12807 1998-10-11 Reto Zimmermann <zimmi@iis.ee.ethz.ch>
12809 * progmodes/vhdl-mode.el
12810 (vhdl-add-index-menu): Reverse order in imenu-generic-expression.
12811 (vhdl-template-assert, vhdl-block, vhdl-configuration-spec)
12812 (vhdl-elsif, vhdl-generate, vhdl-if, vhdl-map)
12813 (vhdl-selected-signal-assignment, vhdl-use, vhdl-while-loop)
12814 (vhdl-get-port, vhdl-get-generic): Replace (undo 0) by (undo).
12815 (vhdl-when): Fix indentation problem.
12816 (vhdl-outer-space): Add "_" to syntax table for expand-abbrev.
12817 (vhdl-get-port, vhdl-get-generic): Bug fix in template.
12818 (vhdl-hooked-abbrev): Bug fix in hooked abbrev.
12820 1998-10-13 Geoff Voelker <voelker@cs.washington.edu>
12822 * ls-lisp.el (ls-lisp-use-insert-directory-program): New variable.
12823 (ls-lisp-insert-directory): Renamed from insert-directory.
12824 (insert-directory): New function.
12826 1998-10-13 Richard Stallman <rms@psilocin.ai.mit.edu>
12828 * simple.el (completion-fixup-function): Variable deleted.
12829 (completion-setup-function): Delete code for completion-fixup-function.
12830 * emacs-lisp/lisp.el (lisp-complete-symbol):
12831 Don't bind completion-fixup-function.
12833 * files.el (find-file-wildcards): New option.
12834 (find-file-noselect): Handle wild cards, if enabled.
12835 (file-expand-wildcards): New function.
12837 * simple.el (set-fill-column): Doc fix.
12839 1998-10-13 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
12841 * mail/uce.el (uce-reply-to-uce): Bind case-fold-search.
12843 1998-10-13 Andreas Schwab <schwab@mescaline.gnu.org>
12845 * progmodes/hideif.el: (hide-ifdef-env, hif-outside-read-only):
12846 Move declaration before first use.
12847 (hif-parse-if-exp, hif-nexttoken, hif-expr, hif-term, hif-eq-expr,
12848 hif-math, hif-factor): Rename token to hif-token and token-list to
12850 (hif-token, hif-token-list): Declare them.
12851 (hif-find-ifdef-block): Return cons of top and bottom point
12852 instead of setting dynamically bound variables.
12853 (hide-ifdef-block, show-ifdef-block): Use return value of
12854 hif-find-ifdef-block.
12856 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu>
12858 * subr.el (read-passwd): Use clear-this-command-keys.
12860 * telnet.el (telnet-initial-filter): Use clear-this-command-keys.
12862 * gnus/pop3.el (pop3-open-server): Bind coding-system-for-read
12865 1998-10-12 Andrew Innes <andrewi@harlequin.co.uk>
12867 * gnus/nntp.el (nntp-possibly-change-group): Allow for unexpected
12868 responses to GROUP command, since this may be called from a timer
12869 with quit inhibited.
12871 1998-10-12 Kenichi Handa <handa@etl.go.jp>
12873 * international/ccl.el (ccl-compile-if): If there's no false-cmds,
12874 set unconditional-jump to nil.
12875 (ccl-compile-read-multibyte-character): Return nil.
12876 (ccl-compile-write-multibyte-character): Likewise.
12877 (ccl-compile-translate-character): Likewise
12878 (ccl-compile-map-multiple): Likewise.
12879 (ccl-compile-map-single): Likewise.
12881 * international/kinsoku.el: Add coding tag.
12882 (kinsoku-bol): Remove superfluous TAB in a string.
12884 * international/mule-cmds.el (find-coding-systems-for-charsets):
12885 Delete `composition' (if any) from CHARSETS.
12887 1998-10-12 Richard Stallman <rms@psilocin.ai.mit.edu>
12889 * international/mule-cmds.el (setup-specified-language-environment):
12890 Add apropos-inhibit property.
12891 (describe-specified-language-support): Likewise.
12893 1998-10-11 Kenichi HANDA <handa@etl.go.jp>
12895 * international/mule.el (make-coding-system): Create -with-esc
12896 variant coding system.
12898 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu>
12900 * progmodes/etags.el (tags-loop-revert-buffers): New variable.
12901 (next-file): Optionally offer to revert a file's buffer,
12902 if it has an existing buffer but the file has changed.
12904 * info.el (Info-insert-dir): Detect and report problems
12905 in input files, such as "No Top node". Return with point
12906 at the beginning of the text.
12907 (Info-find-node): Reinsert the code to handle files
12908 with no tags table; it was deleted by mistake.
12910 1998-10-11 Richard Stallman <rms@sucrose.ai.mit.edu>
12912 * textmodes/texnfo-upd.el (texinfo-make-menu): Don't let
12913 texinfo-find-higher-level-node repeatedly find the same node.
12914 (texinfo-find-higher-level-node): Doc fix.
12916 1998-10-10 Richard Stallman <rms@psilocin.ai.mit.edu>
12918 * mail/smtpmail.el (smtpmail-send-data-1): Use encode-coding-string.
12919 (smtpmail-address-buffer): Add defvar.
12920 (smtpmail-recipient-address-list, smtpmail-read-point): Likewise.
12922 * mail/feedmail.el (feedmail-queue-runner-is-active): Definition moved.
12924 * ffap.el (ffap-machine-p-local): Fix editing error.
12926 1998-10-09 Richard Stallman <rms@psilocin.ai.mit.edu>
12928 * faces.el (frame-set-background-mode):
12929 Don't do anythung for text-only or MSDOS frame.
12931 1998-10-08 Kenichi Handa <handa@etl.go.jp>
12933 * international/quail.el (quail-defrule): New optional arg APPEND.
12934 (quail-defrule-internal): Fix bug of handling the argument APPEND.
12936 1998-10-08 Richard Stallman <rms@psilocin.ai.mit.edu>
12938 * gnus/pop3.el (pop3-open-server):
12939 Set process-coding-system-alist around open-network-stream.
12941 1998-10-07 Richard Stallman <rms@psilocin.ai.mit.edu>
12943 * files.el (save-buffer): Doc fix.
12945 1998-10-07 Karl Heuer <kwzh@gnu.org>
12947 * emacs-lisp/profile.el (profile-fix-fun): If already profiled,
12948 return DEF unchanged, not nil. Simplify.
12950 1998-10-06 Geoff Voelker <voelker@cs.washington.edu>
12952 * dos-w32.el (file-name-buffer-file-type-alist): Fix typo in regexp.
12954 1998-10-06 Peter Breton <pbreton@ne.mediaone.net>
12956 * generic.el (generic-mode-with-type): Added hooks for generic-modes.
12958 * net-utils.el (ftp, nslookup): Require comint.
12959 (network-service-connection): Likewise.
12960 (whois-server-name): Defaults to whois.arin.net
12961 (whois-server-list, whois-server-tld, whois-guess-server): New var.
12962 (whois): Tries to guess the appropriate top-level domain server.
12963 (whois-get-tld): New function.
12965 * dirtrack.el: Mentioned dirtrack-debug-toggle in the docs.
12966 (dirtrack-debug-toggle): Added this function.
12968 1998-10-06 Lars Magne Ingebrigtsen <larsi@gnus.org>
12970 * files.el (find-file-noselect): Switch to the correct buffer
12971 before checking find-file-literally, and allow non-nil non-t
12974 1998-10-06 Karl Heuer <kwzh@gnu.org>
12976 * midnight.el (clean-buffer-list): Add autoload cookie.
12978 * arc-mode.el (archive-mode-revert): Arg no-auto-save renamed from
12980 * tar-mode.el (tar-mode-revert): Likewise.
12981 * ediff-util.el (ediff-arrange-auto-save-in-merge-jobs): Renamed
12982 from ediff-arrange-autosave-in-merge-jobs. Callers changed.
12983 * gnus/message.el (message-auto-save-directory): Renamed from
12984 message-autosave-directory. All references changed.
12986 1998-10-06 Jonathan I. Kamens <jik@kamens.brookline.ma.us>
12988 * mail/rmail.el (rmail-retry-failure): Allow blanks in boundary
12989 string. Expose mime stuff while searching.
12991 1998-10-06 Richard Stallman <rms@gnu.org>
12993 * emacs-lisp/lisp-mode.el (eval-defun): Return the evaluation result.
12995 * replace.el (perform-replace): Position point properly
12996 before and after the recursive edit of C-r.
12998 * progmodes/etags.el (tags-reset-tags-tables): Properly
12999 find the markers in the old rings that are being discarded.
13001 1998-10-06 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
13003 * apropos.el (apropos-print): Control invalid characters.
13005 * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
13006 Renamed from lm-font-lock-O-face, lm-font-lock-X-face to avoid
13007 confusing customize.
13009 1998-10-06 Eli Zaretskii <eliz@mescaline.gnu.org>
13011 * generic-x.el (bat-generic-mode): Fix regexps for keywords and
13012 built-in commands. Add more built-in commands and fix face names.
13014 1998-10-05 Simon Marshall <simon@gnu.org>
13016 * menu-bar.el (menu-bar-tools-menu): Added entry for Speedbar.
13018 1998-10-04 Eric Ludlam <zappo@gnu.org>
13020 * speedbar.el (speedbar-initial-expansion-list-name): Remove
13021 customization since it is not useful in this case.
13022 (speedbar-frame-mode): Check if cfx or cfy is a list, and make
13023 sure it gets evalled to a number. Also verify that set-frame-name
13024 fn exists before calling it.
13026 * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
13027 Protect a `forward-sexp' call which could fail, and improved regex
13028 for ie, and eg abbreviations.
13030 1998-10-02 Noah Friedman <friedman@splode.com>
13032 * rlogin.el (rlogin-send-Ctrl-C): Use process-send-string, not
13034 (rlogin-send-Ctrl-D): Here also.
13035 (rlogin-send-Ctrl-Z): Here also.
13036 (rlogin-send-Ctrl-backslash): Here also.
13038 1998-10-02 Dave Love <fx@gnu.org>
13040 * outline.el (hide-region-body): Bind
13041 outline-view-change-hook to nil while making repeated calls to
13042 outline-flag-region. Run it once at the end.
13043 (hide-other, hide-sublevels, show-children): Likewise.
13045 * info-look.el: Remove duplicate scheme-mode entry.
13046 (info-lookup-make-completions): When looking for entries, check
13047 that `item' isn't null or "Menu".
13049 1998-10-01 Karl Heuer <kwzh@gnu.org>
13051 * net-utils.el: Don't require ffap.
13052 (net-utils-machine-at-point, net-utils-url-at-point): New functions.
13053 (ping, nslookup-host, finger, network-connection-to-service): Use them.
13055 1998-09-30 Richard Stallman <rms@gnu.org>
13057 * ispell.el (check-ispell-version): No need to bind default-major-mode.
13059 * imenu.el (imenu--generic-function): Sort each submenu by position.
13060 (imenu--sort-by-position): New function.
13062 * cus-edit.el (Custom-mode-menu): Fix info node name.
13063 (customize group): Fix info node name.
13065 * mail/mailalias.el (build-mail-aliases): Don't allow
13066 a newline in the alias name. Don't define an alias
13067 if the definition would be empty.
13069 * which-func.el (which-func-mode-global): Make :set function
13072 * custom.el (custom-set-variables): Load the requests first,
13073 then check the symbol's `set' function.
13075 * ffap.el: Doc fixes.
13077 1998-09-30 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
13079 * gnus.el: (gnus-valid-select-methods): Fix type.
13080 * gnus-sum.el (gnus-summary-respool-default-method): Fix type.
13081 * gnus-score.el (gnus-orphan-score): Fix type.
13082 (gnus-score-default-header, gnus-score-default-type): Fix type.
13083 * gnus-art.el (gnus-article-x-face-too-ugly): Fix type.
13084 (gnus-saved-headers): Fix type.
13086 * lisp/textmodes/fill.el (fill-individual-paragraphs-prefix):
13087 Avoid nil value of `two-lines-citation-part'.
13089 1998-09-30 Roman Belenov <roman@nstl.nnov.ru>
13091 * which-func.el (which-function): Handle case when
13092 (car imenu--index-alist) is nil.
13094 1998-09-29 Dave Love <fx@gnu.org>
13096 * jka-compr.el (jka-compr-compression-info-list): Remove "-c" from
13099 1998-09-29 Simon Marshall <simon@gnu.org>
13101 * comint.el (comint-mode): Use make-local-hook for pre-command-hook and
13104 1998-09-29 Stephen Eglen <stephen@gnu.org>
13106 * info-look.el: Add support for Octave.
13108 1998-09-28 Carsten Dominik <cd@delysid.gnu.org>
13110 * textmodes/reftex.el (reftex-finding-files): New customize group.
13111 (reftex-texpath-environment-variables,
13112 reftex-use-external-file-finders, reftex-external-file-finders,
13113 reftex-search-unrecursed-path-first): New options.
13114 (reftex-process-string, reftex-find-file-externally): New
13116 (reftex-access-search-path): Execute shell commands to find the
13118 (reftex-toggle-auto-view-crossref): When turning on, make sure
13119 `reftex-auto-view-crossref' becomes non-nil.
13120 (reftex-abbrev-regexp): Constant removed.
13121 (reftex-convert-string): Abbrev regexp calculated locally.
13123 1998-09-28 Dave Love <fx@gnu.org>
13125 * progmodes/fortran.el: Don't call regexp-opt when deriving
13126 font-lock patterns with keywords that aren't all literal.
13128 1998-09-27 Kurt Hornik <Kurt.Hornik@ci.tuwien.ac.at>
13130 * octave-inf.el (inferior-octave-prompt): Also match prompts of
13131 the form `octave.bin:1>' which come from using precopiled binary
13134 1998-09-27 Richard Stallman <rms@psilocin.ai.mit.edu>
13136 * help.el (help-for-help): Use %THIS-KEY%.
13137 (help-quit): Add doc.
13139 * help-macro.el (make-help-screen): Keep HELP-TEXT
13140 in a separate function definition, not in the help command FNAME.
13141 Replace %THIS-KEY% with the key sequence that ran FNAME.
13143 1998-09-25 Richard Stallman <rms@gnu.org>
13145 * textmodes/texinfo.el (texinfo-show-structure):
13146 Bind inhibit-read-only.
13148 * isearch.el (isearch-search-and-update): Properly
13149 handle upper case letters in the reverse-search special case.
13151 1998-09-25 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
13153 * gnus.el: Extend the list of autoloaded functions.
13155 * gnus/gnus-start.el (gnus-check-first-time-used): Change current
13156 buffer before creating help group. (from Gnus v5.6.43, fix by
13157 1998-08-20 Per Starback <starback@update.uu.se>)
13159 * gnus-util.el (gnus-output-to-rmail): Adjust to
13160 `rmail-output-to-rmail-file'.
13162 1998-09-25 Karl Heuer <kwzh@gnu.org>
13164 * hexl.el (hexl-mode-map): More of previous change.
13166 * textmodes/tex-mode.el (tex-run-command): Doc fix.
13167 (tex-start-tex): Don't use tex-start-options-string in star case.
13168 Quote file name in star case as well as in non-star.
13169 Add blank and quoting of option string here.
13170 (tex-start-options-string): Not here.
13172 1998-09-23 Karl Heuer <kwzh@gnu.org>
13174 * term.el (term-delimiter-argument-list): Doc fix.
13175 (term-emulate-terminal): Escape literal semicolon.
13176 * progmodes/asm-mode.el (asm-mode): Doc fix.
13177 (asm-comment-char): Escape literal semicolon.
13178 * emulation/viper-cmd.el (viper-movement-commands): Likewise.
13180 1998-09-23 Richard Stallman <rms@gnu.org>
13182 * hexl.el (hexl-mode-map): Don't override all ESC bindings,
13183 only those that normally modify the buffer.
13185 * dabbrev.el (dabbrev--find-expansion): Don't scan the current buffer
13188 1998-09-23 E. Jay Berkenbilt <ejb@ql.org>
13190 * ispell.el (check-ispell-version): Ensure same buffer is current
13191 when let-binding of case-fold-search ends.
13193 1998-09-23 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13195 * ps-print.el: Skip invisible overlay.
13196 Test for set-buffer-multibyte rather than using mule-version.
13197 (ps-print-version): New version number (4.1) and doc fix.
13198 (ps-generate-postscript-with-faces): Skip invisible overlay.
13200 1998-09-23 Fritz Knabe <knabe@cs.virginia.edu>
13202 * mail/mh-mime.el (mh-mhn-compose-insertion): Use quotes.
13204 1998-09-22 Kenichi Handa <handa@etl.go.jp>
13206 * international/quail.el (quail-update-guidance): Check for the
13207 return value of (quail-guidance) fixed.
13208 (quail-update-translation): Bind quail-current-str locally when it
13209 calls quail-update-guidance.
13210 (quail-update-translation): If input-method-exit-on-first-char is
13211 non-nil, terminate translation only when the current input method
13214 1998-09-22 Paul Eggert <eggert@twinsun.com>
13216 * startup.el (locale-translation-file-name): Prefer X-related names
13217 to the name used by GNU/Linux sans X. Set to nil if no file found.
13218 (command-line): Use locale-translation-file-name if it is not nil,
13219 instead of testing for its existence again.
13220 regexp-quote the ctype before using it in a regexp.
13221 Allow a colon to appear after the ctype in the aliases file,
13222 as is done in X11R6.4.
13224 1998-09-21 Richard Stallman <rms@gnu.org>
13226 * mail/rmail.el (rmail-resend): Work properly if invoked from summary.
13228 * calendar/appt.el (appt-interval): Variable deleted.
13229 (appt-check): For minutes in between appt-display-interval times,
13230 do check, but don't display anything except an updated mode line.
13231 Count against appt-display-interval based on minutes since
13232 first display of this appointment, not based on time of day.
13233 If appt-display-mode-line, force mode line redisplay
13234 whenever appt-mode-string has changed.
13235 (appt-add, appt-delete): Add autoload cookies.
13236 (appt-check): Catch errors from calling `diary'.
13237 (appt-max-time): Renamed from max-time.
13238 (appt-now-displayed, appt-display-count): New variables.
13239 (appt-timer): Don't create one if we already have one.
13241 * textmodes/tex-mode.el (tex-compilation-parse-errors):
13242 More general code to use the source buffer instead of the zap file.
13244 * hilit-chg.el (highlight-compare-with-file): Renamed from
13247 * loadhist.el (load-history-loaded): New variable.
13248 (symbol-file): Load etc/fns-VERSION.el if that has not been done.
13250 * loadup.el: Write load-history into etc/fns-VERSION.el, then clear it.
13252 * emacs-lisp/find-func.el (find-function-search-for-symbol):
13253 Fix error messages.
13255 1998-09-21 Markus Armbruster <armbru@pond.sub.org>
13257 * avoid.el (mouse-avoidance-banish-hook): Don't move unless in an
13260 1998-09-21 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
13262 * mail/rmail.el (rmail-decode-babyl-format): Recognize both
13263 `undecided' and `undecided-unix'.
13265 1998-09-21 Dave Love <fx@gnu.org>
13267 * help.el (help-make-xrefs): Fix typo affecting Info references.
13269 * subr.el (remove-hook): Check list values to avoid errors.
13271 1998-09-18 Noah Friedman <friedman@splode.com>
13273 * emacs-lisp/eldoc.el (eldoc-message): Check for 1-arg case, and
13274 store string in eldoc-last-message without consing a new string.
13275 Rearrange logic from nested if's into cond's.
13276 (eldoc-print-fnsym-args): Renamed to eldoc-get-fnsym-args-string.
13277 Do not print message; just return string.
13278 (eldoc-get-var-docstring): Renamed from eldoc-print-var-docstring.
13279 Do not print message; just return string.
13280 Cache that string in eldoc-last-data.
13281 (eldoc-last-data): Make into a vector.
13282 (eldoc-get-fnsym-args-string): Use new data form of structure.
13283 (eldoc-get-var-docstring): Here also.
13284 (eldoc-last-data-store): New function.
13285 (eldoc-get-fnsym-args-string): Use it.
13286 (eldoc-get-var-docstring): Here also.
13287 (eldoc-docstring-first-line): Minimize interim string consing.
13288 Call substitute-command-keys on the result.
13289 (eldoc-print-var-docstrings, eldoc-print-docstring,
13290 eldoc-docstring-message): Functions removed.
13291 (eldoc-docstring-format-sym-doc): New function, functionality
13292 ripped out of eldoc-docstring-message.
13293 (eldoc-get-fnsym-args-string, eldoc-get-var-docstring): Use it.
13295 1998-09-18 Kenichi Handa <handa@etl.go.jp>
13297 * international/mule.el (make-coding-system): Doc-string modified.
13299 1998-09-18 Andreas Schwab <schwab@delysid.gnu.org>
13301 * progmodes/vhdl-mode.el (vhdl-header-file): Fix customize type.
13303 * progmodes/cpp.el (cpp-face-light-list, cpp-face-dark-list): Fix
13306 * progmodes/cperl-mode.el (cperl-lazy-help-time): Fix customize
13309 * progmodes/compile.el (compilation-error-screen-columns): New
13311 (compilation-next-error-locus): Use it to decide whether to use
13312 forward-char or move-to-column.
13314 * mail/rmail.el (rmail-movemail-program): Fix customize type.
13316 * mail/feedmail.el (feedmail-x-mailer-line-user-appendage,
13317 feedmail-fiddle-plex-user-list,
13318 feedmail-spray-address-fiddle-plex-list,
13319 feedmail-prompt-before-queue-user-alist,
13320 feedmail-prompt-before-queue-help-supplement,
13321 feedmail-queue-reminder-alist, feedmail-queue-default-file-slug,
13322 feedmail-queue-alternative-mail-header-separator): Fix customize
13325 * startup.el (site-run-file): Fix customize type.
13327 * speedbar.el (speedbar-initial-expansion-list-name): Fix
13330 * shell.el (shell-input-autoexpand): Fix customize type.
13332 * ps-print.el (ps-font-info-database): Add missing dots in value.
13333 Improve layout of customize type.
13335 * net-utils.el (traceroute-program-options, ping-program-options,
13336 ipconfig-program-options, netstat-program-options,
13337 arp-program-options, route-program-options,
13338 nslookup-program-options, ftp-program-options): Fix customize
13341 * midnight.el (clean-buffer-list-kill-regexps,
13342 clean-buffer-list-kill-buffer-names,
13343 clean-buffer-list-kill-never-buffer-names,
13344 clean-buffer-list-kill-never-regexps): Fix customize type.
13346 * man.el (Man-init-defvars): Avoid trailing nil on
13349 * lpr.el (printer-name): Fix customize type.
13351 1998-09-16 Kenichi Handa <handa@etl.go.jp>
13353 * international/mule-cmds.el (reset-language-environment): Call
13354 update-coding-systems-internal.
13356 * international/mule-conf.el: Call update-coding-systems-internal
13359 1998-09-14 Dave Love <fx@gnu.org>
13361 * vc-hooks.el (vc-menu-map): Change the vc-directory label. Don't
13362 use the menu-enable properties, pending doing it correctly and
13365 * map-ynp.el (map-y-or-n-p): Mention RET, `q' in the help text.
13367 1998-09-13 Dave Love <d.love@dl.ac.uk>
13369 * progmodes/hideshow.el (hs-grok-mode-type): Check
13370 comment-{start,end} non-nil as well as bound. Report an error if
13371 we can't grok the mode.
13373 1998-09-13 Richard Stallman <rms@gnu.org>
13375 * simple.el (blink-matching-open): Don't log paren matching
13376 messages in *Messages*.
13378 1998-09-12 Richard Stallman <rms@gnu.org>
13380 * scroll-bar.el (scroll-bar-scroll-down, scroll-bar-scroll-up):
13381 Set point-before-scroll at end even if there was an error.
13383 * ange-ftp.el (ange-ftp-insert-file-contents):
13384 Use binary mode for dumb-unix hosts as for unix hosts.
13385 (ange-ftp-copy-file-internal): Likewise.
13387 * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
13389 * emacs-lisp/pp.el: Doc fixes.
13391 * wid-edit.el (widget-menu-max-shortcuts): New variable.
13392 (widget-choose): Don't use single-char shortcuts if # items
13393 exceeds that many. Use minibuffer instead.
13395 1998-09-12 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13397 * calendar/diary-lib.el (mark-sexp-diary-entries): Fix previous chg.
13399 1998-09-12 Eric Ludlam <zappo@mescaline.gnu.org>
13401 * speedbar.el (speedbar-frame-mode): Do not set frame position if
13404 1998-09-10 Noah Friedman <friedman@splode.com>
13406 * rsz-mini.el (resize-minibuffer-mode): Remove :version field from
13407 defcustom declaration. It's wreaking too much havoc with XEmacs
13408 and older versions of Emacs, which share this code.
13410 * type-break.el (type-break-mode): Here also.
13412 * rlogin.el (rlogin): If using make-local-hook, pass the 4th arg
13413 `t' to add-hook also to modify the new local value.
13415 1998-09-10 Dave Love <fx@gnu.org>
13417 * vc.el (vc-insert-headers): Doc fix.
13419 1998-09-10 Richard Stallman <rms@gnu.org>
13421 * textmodes/flyspell.el (flyspell-mode-on): Make the
13422 ispell-... variables permanent locals.
13423 (flyspell-mode-off): Add autoload cookie.
13425 * ange-ftp.el (ange-ftp-write-region): For `dumb-unix' host,
13426 do use binary mode, just as for `unix'.
13427 (ange-ftp-host-type): If HOST is nil, return `unix'.
13429 * dired.el (dired-mark-files-containing-regexp):
13430 Don't scan directories. Ignore non-readable files.
13432 * progmodes/compile.el (compilation-error-regexp-alist):
13433 Fix previous change: allow . and _ in command name.
13435 * dired.el (dired-mark-files-containing-regexp): Fix previous change.
13437 * uncompress.el (uncompress-while-visiting):
13438 Use just the car of what find-operation-coding-system returns.
13440 * textmodes/tex-mode.el (tex-start-tex): Call comint-quote-filename.
13442 * shell.el (shell-file-name-quote-list): Add # to the value.
13444 1998-09-10 E. Jay Berkenbilt <ejb@ql.org>
13446 * textmodes/flyspell.el (flyspell-mode-on): Fix kill-buffer-hook
13447 to make killing of ispell process work even if
13448 kill-all-local-variables has been run.
13450 1998-09-10 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13452 * calendar/diary-lib.el (mark-sexp-diary-entries): Avoid infinite
13453 loop when sexp entry ends at end of file with no newline.
13455 1998-09-10 Markus Rost <markus.rost@mathematik.uni-regensburg.de>
13457 * cus-edit.el (Custom-save, Custom-reset-current, Custom-reset-saved)
13458 (Custom-reset-standard): Fix menu inconsistency.
13460 * mail/feedmail.el (feedmail-from-line): Allow t.
13461 (feedmail-message-id-suffix): Allow nil.
13463 * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
13464 Simplify. Make prefix arg work right.
13466 1998-09-09 Dave Love <fx@gnu.org>
13468 * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
13470 * help.el (help-xref-interned): Bind inhibit-read-only when inserting.
13472 1998-09-08 Dave Love <fx@gnu.org>
13474 * add-log.el (change-log-font-lock-keywords): Do parenthesized
13475 stuff only after file names or at start of line. Allow parens
13476 around e-mail, as well as angles.
13478 * gnus/nnweb.el (require): Wrap requirement of w3 and url in
13479 ignore-errors too, eval'd when compile. Require w3 stuff at load
13480 time for nicer failure if it's not available.
13482 1998-09-07 Geoff Voelker <voelker@cs.washington.edu>
13484 * comint.el (comint-arguments): Ignore backslashes when using
13485 w32 shells that expect backslashes as the directory separator.
13487 1998-09-04 Kenichi Handa <handa@etl.go.jp>
13489 * international/fontset.el (resolved-ascii-font): New variable.
13490 (x-complement-fontset-spec): By side effect, set
13491 `resolved-ascii-font' to the resolved name of ASCII font."
13492 (create-fontset-from-fontset-spec): Don't get a value for
13493 resolved-ascii-font from the list full-fontlist. It is set by
13494 x-complement-fontset-spec now.
13496 * ps-print.el: To make it work also on Emacs 20.2 and the earlier
13497 version, check the value of mule-version.
13499 1998-09-07 Carsten Dominik <cd@delysid.gnu.org>
13501 * textmodes/reftex.el (reftex-view-crossref): Split up into
13502 several functions. No longer moves to find a macro.
13503 (reftex-view-cr-cite, reftex-view-cr-ref,
13504 reftex-end-of-bib-entry): New functions.
13505 (reftex-auto-view-crossref): New value `window' allowed.
13506 (reftex-view-crossref-when-idle): Process new `window' option in
13507 (reftex-translate-to-ascii-function): New default.
13508 (reftex-label-illegal-re): Default changed, removed Latin1.
13509 (reftex-latin1-to-ascii): New function.
13510 (reftex-what-environment): Check for section regexp before use.
13511 (reftex-find-tex-file, reftex-find-bib-file): Fixed bug with
13512 absolute path names.
13513 (reftex-TeX-master-file): Changed sequence of file checks.
13514 (reftex-do-citation): bibview cache only with RefTeX mode on.
13516 1998-09-06 Richard Stallman <rms@gnu.org>
13518 * progmodes/compile.el (compilation-error-regexp-alist):
13519 In first pattern (GNU utilities and other things),
13520 allow a space after the optional program name at the beginning.
13522 * mail/mail-hist.el (mail-hist-current-header-contents):
13523 Fix previous change: use mail-header-end.
13525 1998-09-06 Bill Richter <richter@math.nwu.edu>
13527 * international/ccl.el: Doc fixes.
13528 * international/encoded-kb.el: Doc fixes.
13529 * international/fontset.el: Doc fixes.
13530 * international/kinsoku.el: Doc fixes.
13531 * international/kkc.el: Doc fixes.
13532 * international/mule-cmds.el: Doc fixes.
13533 * international/mule-conf.el: Doc fixes.
13534 * international/mule-util.el: Doc fixes.
13535 * international/mule.el: Doc fixes.
13537 1998-09-05 Eric Ludlam <zappo@gnu.org>
13539 * emacs-lisp/checkdoc.el: (checkdoc-buffer-label): New function.
13540 (checkdoc-start-section, checkdoc-error): Use `checkdoc-buffer-label'.
13541 (checkdoc-this-string-valid-engine): Permit ? as terminating
13542 punctuation for first line sentence breaking.
13543 (checkdoc-this-string-valid): When converting a comment into a doc
13544 string, make sure " chars are \".
13545 (checkdoc-sentencespace-region-engine): Only do double space check
13546 if based on the variable `sentence-end-double-space'
13547 (checkdoc-this-string-valid-engine): ? ends valid sentence.
13548 (checkdoc-proper-noun-region-engine): Exclude items in URLs
13550 1998-09-04 Richard Stallman <rms@gnu.org>
13552 * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
13553 Recognize define-skeleton as a function definer.
13555 * cus-edit.el (customize-option): Refuse to customize
13556 a variable that has no defcustom. But if variable is autoloaded,
13557 first try to load the library that defines it.
13559 * international/iso-insert.el: Use `string' before calling `insert'
13560 so that in multibyte buffers we insert multibyte chars.
13562 * dired.el (dired-mark-files-containing-regexp):
13563 Don't use find-file; instead, insert the file in a temp buffer.
13565 * textmodes/tex-mode.el (tex-start-options-string): New option.
13566 (tex-start-tex): Use that variable.
13568 * mail/rmail.el (rmail-primary-inbox-list): Make the initial
13569 value in the `repeat' alternative a list.
13571 * textmodes/fill.el (fill-individual-paragraphs): Before deleting
13572 the inserted newline, verify that one was really inserted.
13574 * textmodes/flyspell.el (flyspell-mode): Do nothing if mode
13575 remains on or remains off.
13576 (flyspell-multi-language-p): Default changed to nil.
13578 * progmodes/ada-mode.el (ada-search-ignore-string-comment):
13579 In "found in comment" case, don't beginning-of-line after forward-line.
13581 * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
13582 If the function definition is not a lambda, return original FORM
13585 1998-09-04 Peter Breton <pbreton@ne.mediaone.net>
13587 * net-utils.el (netstat-program-options): Changed from nil to "-a"
13588 so that by default netstat shows all network connections.
13590 1998-09-04 Bob Weiner <weiner@altrasoft.com>
13592 * international/quail.el: Doc fixes.
13594 * info.el (info): Don't add parens if FILE already has them.
13596 1998-09-04 Geoff Voelker <voelker@cs.washington.edu>
13598 * mail/smtpmail.el (smtpmail-via-smtp): Parse out the first word
13599 on extension lines.
13601 1998-09-03 Geoff Voelker <voelker@cs.washington.edu>
13603 * w32-fns.el (w32-shell-dos-semantics): New function.
13605 1998-09-03 Bill Richter <richter@brouwer.math.nwu.edu>
13607 * international/quail.el (quail-choose-completion-string): Store
13608 completion `choice' in `quail-current-str'; don't insert it.
13610 1998-09-02 Kenichi Handa <handa@etl.go.jp>
13612 * bdf.el (bdf-generate-font): New argument CHARSET. Give WIDTH
13613 argument to ps-mule-generate-bitmap-font.
13615 * ps-print.el (ps-mule-font-info-database-bdf): The include ASCII
13616 entry and change Latin-1 entry in the default value.
13617 (ps-mule-font-info-database-ps-bdf): New variable.
13618 (ccl-encode-ethio-unicode): Bug of CCL code fixed.
13619 (ps-mule-generate-font): Give CHARSET arg to FONT-FUNC function
13620 registerd in FONT-SPEC.
13621 (ps-mule-bitmap-prologue): Fix PostScript code to realize correct
13622 charcter width of bitmap fonts.
13623 (ps-mule-generate-bitmap-font): Give COLUMNS arg to PostScript
13625 (ps-begin-file): Output PostScript code for setting
13627 (ps-plot-region): Use line-beginning-position to get a position of
13628 the beginning of the current line.
13630 * international/mule-cmds.el (register-input-method): Doc-string
13633 1998-09-01 Dave Love <fx@gnu.org>
13635 * international/mule-cmds.el (current-language-environment): Fix
13638 1998-09-01 Simon Marshall <simon@gnu.org>
13640 * font-lock.el (tex-font-lock-keywords-2): Fontify \nocite like \cite.
13641 (lisp-font-lock-keywords-2): Fontify abort, assert, etc., separately.
13642 ({c,c++,objc,java}-font-lock-keywords-{2,3}): Fontify only type/class
13643 names with font-lock-type-face. Fontify type specs, etc., with
13644 font-lock-keyword-face.
13646 1998-08-31 Kenichi Handa <handa@etl.go.jp>
13648 * international/fontset.el (x-complement-fontset-spec): If ASCII
13649 font is specified in FONTLIST, don't substitute it for the
13652 1998-08-31 Paul Eggert <eggert@twinsun.com>
13654 * international/mule.el (charset-description): Doc fix.
13656 * language/chinese.el, language/cyrillic.el, language/czech.el,
13657 language/devanagari.el, language/ethiopic.el,
13658 language/european.el, language/hebrew.el, language/indian.el,
13659 language/japanese.el, language/korean.el, language/lao.el,
13660 language/slovak.el, language/thai.el, language/tibetan.el,
13661 language/vietnamese.el:
13662 Add coding: local variable, to avoid bootstrapping problem
13663 if you need to recompile all the Lisp files using interpreted code.
13665 1998-08-29 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13667 * cal-china.el (chinese-year-cache): Change range of years from
13668 1989-2000 to 1990-2010.
13670 1998-08-29 Dave Love <d.love@dl.ac.uk>
13672 * mail/smtpmail.el (smtpmail-send-it): Add autoload cookie.
13673 (smtpmail-via-smtp): Check that smtpmail-smtp-server is defined.
13675 1998-08-28 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13677 * ps-print.el (ps-print-control-characters): Doc-string modified.
13678 (ps-output-string-prim): Comment format changed.
13679 (ps-do-despool): Indentation of source code changed.
13681 1998-08-28 Kenichi Handa <handa@etl.go.jp>
13683 * subr.el (sref): Make it an alias of aref. Make the
13684 byte-compiler warn that it is obsolete.
13685 (char-bytes): Make the byte-compiler warn that it is obsolete.
13687 * emacs-lisp/bytecomp.el (byte-compile-output-as-comment):
13688 Calculate the total bytes using position-bytes instead of
13691 1998-08-27 Karl Heuer <kwzh@gnu.org>
13693 * snmp-mode.el: New file.
13694 * files.el (auto-mode-alist): Add snmp-mode patterns.
13696 1998-08-27 Karl Eichwalder <ke@suse.de>
13698 * dired-aux.el (dired-compress-file-suffixes): Add `bz2'.
13700 1998-08-27 Edward M. Reingold <reingold@emr.cs.uiuc.edu>
13702 * calendar/diary-lib.el (diary-block): Doc fix..
13703 * calendar/calendar.el (diary-list-include-blanks): Doc fix..
13705 1998-08-27 Richard Stallman <rms@gnu.org>
13707 * calendar/cal-tex.el (cal-tex-cursor-filofax-daily): Don't use oddp.
13708 * calendar/appt.el (appt-check): Start the appt-mode-string w/ space.
13709 Clear appt-mode-string if we don't put something in it.
13711 1998-08-27 Dave Love <fx@gnu.org>
13713 * ange-ftp.el (ange-ftp-allow-child-lookup): Reinstate checking
13714 dired-local-variables-file for dired-x.
13716 * emacs-lisp/find-func.el (find-function-search-for-symbol): Look
13717 for compressed library files too.
13719 1998-08-26 Kenichi Handa <handa@etl.go.jp>
13721 * language/european.el ("Latin-1"): Modify `documentation' key value.
13722 ("Latin-2"): Likewise.
13724 1998-08-26 Karl Heuer <kwzh@gnu.org>
13726 * dired-x.el (dired-guess-shell-alist-default): Fix regexp.
13728 1998-08-26 Albert L. Ting <alt@artisan.com>
13730 * mail/mail-hist.el (mail-hist-current-header-name): Fix test.
13731 (mail-hist-current-header-contents): Use mail-text-start.
13733 1998-08-26 Richard Stallman <rms@gnu.org>
13735 * cus-edit.el (customize-version-lessp): Handle a number as VERSION2.
13736 (customize-changed-options-previous-release): New variable.
13737 (customize-changed-options): Use that variable as default arg.
13739 1998-08-26 Karl Eichwalder <ke@suse.de>
13741 * midnight.el: Require `timer' not only when compiling.
13743 1998-08-26 Per Starback <starback@update.uu.se>
13745 * gnus/gnus-start.el (gnus-check-first-time-used): Change current
13746 buffer before creating help group.
13748 1998-08-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
13750 * gnus/gnus-start.el (gnus-save-newsrc-file): Bind
13751 coding-system-for-write before saving.
13753 1998-08-26 Kevin Rodgers <kevinr@ihs.com>
13755 * isearch.el (isearch-forward): Doc fix.
13757 1998-08-26 Andreas Schwab <schwab@delysid.gnu.org>
13759 * emacs-lisp/find-func.el: Fix :version tags to have a string
13760 value, not a float.
13762 * cus-dep.el: Fix typo in output.
13764 1998-08-25 Dave Love <fx@gnu.org>
13766 * repeat.el (repeat): Doc fix.
13768 (repeat-previous-repeated-command): New variable.
13769 (repeat): Check for real-last-command being null or repeat. Set
13770 repeat-previous-repeated-command.
13772 * browse-url.el (browse-url-netscape): Fix format for hex escapes.
13774 1998-08-25 Kenichi Handa <handa@etl.go.jp>
13776 * gnus/message.el (message-send-mail-with-sendmail): Bind
13777 coding-system-for-write by the return value of
13778 select-message-coding-system.
13779 (message-send-mail-with-qmail): Likewise.
13781 1998-08-24 Andreas Schwab <schwab@delysid.gnu.org>
13783 * emacs-lisp/autoload.el: Fix doc-string-elt property on
13784 define-derived-mode.
13786 * files.el (file-name-invalid-regexp):
13787 Fix regex for ms-dos without long file names.
13789 1998-08-24 Vinicius Jose Latorre <vinicius@cpqd.com.br>
13791 * ps-print.el: Multi-byte buffer handling.
13792 (ps-print-version): New version number (4.0) and doc fix.
13793 (ps-color-device, ps-face-bold-p, ps-face-italic-p): Conditional
13794 compilation for GNU Emacs and emacsens.
13795 (ps-generate-postscript-with-faces): Force invisible text to be
13797 (dos-ps-printer): New var to avoid compilation gripes.
13799 1998-08-24 Kenichi Handa <handa@etl.go.jp>
13801 * ps-print.el (ps-mule-plot-string): Pay attention to the case
13802 that no more characters can't be printed in the current line.
13804 1998-08-24 Kenichi Handa <handa@etl.go.jp>
13806 * ps-print.el (ps-mule-find-wrappoint): ENDPOS should not be
13809 1998-08-24 Kenichi Handa <handa@etl.go.jp>
13811 * ps-print.el: Add codes to make ps-print.el work also on Emacs
13812 20.2 and the earlier version.
13813 (ps-mule-encode-7bit, ps-mule-encode-8bit): Modified for 20.2.
13814 (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Likewise.
13815 (ps-mule-find-wrappoint): Likewise.
13816 (ps-mule-generate-font): Change `X' to `x' in format
13818 (ps-generate): Call ps-mule-begin before calling ps-begin-job.
13819 (ps-mule-cmpchar-prologue): Delete unnecessary `gsave' and
13820 `restore' form procedures `BC' and `EC'.
13822 1998-08-24 Kenichi Handa <handa@etl.go.jp>
13824 * ps-print.el (ps-print-prologue-1): Handle the case that FontBBox
13825 is an executable procedure. Make LineThickness, Xshadow, and
13826 Yshadow relative to FontHeight. Set SpaceWidth in BeginDoc.
13827 (ps-mule-font-info-database, ps-mule-font-info-database-ps,
13828 ps-mule-font-info-database-bdf): New vars.
13829 (ps-mule-encode-7bit, ps-mule-encode-8bit): New funs.
13830 (ccl-encode-ethio-unicode): New CCL program.
13831 (ps-mule-encode-ethiopic): New fun.
13832 (ps-mule-current-charset): New var.
13833 (ps-mule-get-font-spec, ps-mule-font-spec-src,
13834 ps-mule-font-spec-name, ps-mule-font-spec-encoding,
13835 ps-mule-font-spec-bytes, ps-mule-printable-p): New funs.
13836 (ps-mule-external-libraries): New var.
13837 (ps-mule-init-external-library): New fun.
13838 (ps-mule-font-cache): New var.
13839 (ps-mule-generate-font, ps-mule-generate-glyphs): New funs.
13840 (ps-last-font): New var.
13841 (ps-mule-prepare-font): New fun.
13842 (ps-mule-charset-list): New var.
13843 (ps-mule-prologue-generated, ps-mule-prologue): New vars.
13844 (ps-mule-skip-same-charset, ps-mule-find-wrappoint,
13845 ps-mule-plot-string): New funs.
13846 (ps-mule-cmpchar-prologue-generated, ps-mule-cmpchar-prologue):
13848 (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
13849 ps-mule-prepare-cmpchar-font): New funs.
13850 (ps-mule-bitmap-prologue-generated, ps-mule-bitmap-prologue): New
13852 (ps-mule-generate-bitmap-prologue, ps-mule-generate-bitmap-font,
13853 ps-mule-generate-bitmap-glyph): New funs.
13854 (ps-mule-initialize, ps-mule-begin): New funs.
13855 (ps-output-string-prim): Insert string as unibyte.
13856 (ps-output-prologue): New fun.
13857 (ps-flush-output): Handle the case of 'prologue.
13858 (ps-begin-file): Call ps-mule-initialize.
13859 (ps-begin-job): Set ps-control-or-escape-regexp differently if
13860 printing multibyte characters.
13861 (ps-begin-page): Set ps-mule-current-charset to 'ascii.
13862 (ps-basic-plot-string): Handle the case of printing ASCII
13863 characters by external libraries (e.g. BDF).
13864 (ps-set-font): Set ps-last-font.
13865 (ps-plot-region): Handle multibyte characters, use
13866 ps-mule-plot-string for them.
13867 (ps-generate): Set the spool buffer unibyte. Call ps-mule-begin.
13869 * bdf.el: New file.
13871 1998-08-23 Kenichi HANDA <handa@etl.go.jp>
13873 * international/mule-cmds.el (select-message-coding-system): New
13875 (set-language-environment-coding-systems): Set
13876 default-sendmail-coding-system.
13878 * mail/sendmail.el (sendmail-coding-system): Doc-string modified.
13879 (default-sendmail-coding-system): New variable.
13880 (sendmail-send-it): Encode the message by a coding system
13881 select-message-coding-system returns.
13883 1998-08-23 Eric Ludlam <zappo@gnu.org>
13885 * speedbar.el: (speedbar-with-writable): Remove `toggle-read-only'.
13886 (speedbar-mode): Set buffer to read only.
13887 (speedbar-temp-buffer-show-function): For emacs don't call hook
13889 (speedbar-stealthy-updates): Do all updates w/ the the buffer writable.
13891 1998-08-19 Dan Nicolaescu <done@ece.arizona.edu>
13893 * speedbar.el (speedbar-key-map): Fix typo.
13895 See ChangeLog.7 for earlier changes.