* pcvs.el: Add a minimal leading commentary.
[emacs.git] / lisp / ChangeLog
blob4ed3ceeac94a4211a1aa4e3de785d8a8a7190bc4
1 2000-03-21  Stefan Monnier  <monnier@cs.yale.edu>
3         * pcvs.el: Add a minimal leading commentary.
4         (cvs-make-cvs-buffer): Change the header part by removing the startup
5         message and adding a `Module' entry.  Also replace the FOOTER and
6         HEADER special fileinfos with the new support in ewoc for updating
7         its own footer and header.
8         (cvs-update-header): Update to use the header/footer of the ewoc.
9         (cvs-mode): Use define-derived-mode and set truncate-lines to t.
10         (cvs-is-within-p): New function.
11         (cvs-mode-run): Take advantage of `save-some-buffers's new ability
12         to only examine some subset of the buffers.
14         * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
15         `format' instead of our own ad-hoc functions.
16         Remove HEADER and FOOTER cases, now handled in the EWOC.
17         (cvs-fileinfo<): Remove HEADER and FOOTER cases.
19         * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
20         output to avoid scaring the user.
21         (cvs-parse-table): Catch message for non-up-to-date commits.
23         * pcvs-defs.el (cvs-startup-message): Remove.
24         (cvs-global-menu): New autoloaded menu.
26         * pcvs-util.el (cvs-string-fill): Remove.
28         * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
29         (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
30         PP part of it and also make it work for footers and headers.
31         (ewoc-create): Drop POS and BUFFER arguments.
32         Use the DLL's dummy node to store the end-of-footer position.
33         (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
34         (ewoc-refresh): Remove unused `header' variable.
35         (ewoc-(get|set)-hf): New functions.
37         * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
38         log-view-*-(message|file) and use easy-mmode-define-navigation.
39         (log-view-message-re): Match SCCS format as well.
40         And match the revision line rather than the dashed separator line.
41         (log-view-mode): Use the new define-derived-mode.
42         (log-view-current-tag): Fill in with an actual implementation.
44         * cvs-status.el (cvs-status-(prev|next)): Rename from
45         cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
46         (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
47         to let the output "breathe" a little more (more readable).
48         (cvs-status-mode): Use the new define-derived-mode.
50         * smerge-mode.el (smerge-auto-leave): New function and variable.
51         (smerge-basic-map): Rename from smerge-basic-keymap.
52         Change the bindings for smerge-diff-*.
53         (smerge-*-map): Use easy-mmode-defmap.
54         (smerge-(next|prev)): Use easy-mmode-define-navigation.
55         (smerge-keep-*): Use smerge-auto-leave.
57 2000-03-21  Jason Rumney  <jasonr@gnu.org>
59         * cus-edit.el (custom-button-face): Use 3D look for w32.
60         (custom-button-pressed-face): Likewise.
62 2000-03-21  Gerd Moellmann  <gerd@gnu.org>
64         * progmodes/etags.el (tags-case-fold-search): New user-option.
65         (tags-loop-eval): New function.  Bind case-fold-search around eval
66         depending on the value of tags-case-fold-search.
67         (tags-loop-continue): Use tags-loop-eval.
68         (find-tag-in-order): Bind case-fold-search depending on the value
69         of tags-case-fold-search.
71 2000-03-21  Stefan Monnier  <monnier@cs.yale.edu>
73         * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'.
74         (diff-end-of-hunk): Return the end position for use in
75         `easy-mmode-define-navigation'.
76         (diff-recenter): Remove.
77         (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
78         of `easy-mmode-define-navigation'.
79         (diff-kill-*): Rename `diff-*-kill' (for consistency with the
80         previous renaming) and fix to use new names.
81         (diff-merge-strings): Use \n as separator: simpler, faster.
82         (diff-mode): Use `define-derived-mode'.
84         * derived.el (define-derived-mode): Don't autoload anymore.
85         Prefer the macro-only version provided by easy-mmode.el.
87         * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
88         `easy-mmode-define-derived-mode'.
89         Use `combine-run-hooks'.
90         (easy-mmode-define-navigation): New macro.
92         * subr.el (combine-run-hooks): New function.
94 2000-03-21  Kenichi HANDA  <handa@etl.go.jp>
96         * term/x-win.el: Fontsets related initialization is simplified.
98         * international/mule-diag.el (describe-font): Don't refer to
99         global-fontset-alist, instead call font-list.
100         (describe-fontset, list-fontsets, mule-diag): Likewise.
101         (print-fontset): Adjusted for the change of fontset
102         implementation.
104         * international/fontset.el (x-charset-registries): Variable
105         removed, instead the corresponding data is stored in the default
106         fontset.
107         (register-alternate-fontnames): Function removed.
108         (resolved-ascii-font): Variable removed.
109         (x-compose-font-name): Ignore the second argument REDOCE.
110         (x-complement-fontset-spec): Complement only an ASCII font and
111         element for those charsets than can use that ASCII font.
112         (generate-fontset-menu): Don't refer to global-fontset-alist,
113         instead call fontset-list.
114         (uninstantiated-fontset-alist): Variable removed.
115         (x-style-funcs-alist): Likewise.
116         (fontset-default-styles): Likewise.
117         (x-modify-font-name): Function removed.
118         (create-fontset-from-fontset-spec): Ignore the argument
119         STYLE-VARIANT.
120         (create-fontset-from-ascii-font): Docsting adjusted for the above
121         change.
122         (instantiate-fontset, resolve-fontset-name): Functions removed.
123         (fontset-list): Now implemented by C code.
124         
125         * faces.el (read-face-font): Fix TABLE arg to completing-read.
126         (describe-face): Include `font' attribute in the description.
128 2000-03-21  Kenichi Handa  <handa@etl.go.jp>
130         * international/quail.el (quail-set-keyboard-layout): Typo fixed.
132 2000-03-20  Gerd Moellmann  <gerd@gnu.org>
134         * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
135         ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
136         zone-mode.el, snmp-mode.el: Moved to net subdirectory.
137         
138         * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
139         about behavior of set-buffer-modified-p wrt redisplay.
141 2000-03-19  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
143         * view.el (view-mode-disable): Kill local binding of view-read-only.
145 2000-03-18  Gerd Moellmann  <gerd@gnu.org>
147         * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
148         is a string, convert it to a syntax cell using string-to-syntax.
150         * simple.el (syntax-code-table, syntax-flag-table): New variables.
151         (string-to-syntax): New function.
153         * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
154         (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
155         try to use passive ftp mode.
157 2000-03-17  Gerd Moellmann  <gerd@gnu.org>
159         * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
161         * simple.el (append-to-buffer): Update point of windows after
162         insertion.
164         * abbrev.el (inverse-add-abbrev): Identify word by first moving
165         forward then moving backward.  Reindent.
167         * frame.el (other-frame): Call x-focus-frame only if
168         focus-follows-mouse is off.
170 2000-03-17  Dave Love  <fx@gnu.org>
172         * pcvs-util.el (cvs-strings->string): Rename
173         replace-regexps-in-string.
175 2000-03-17  Stefan Monnier  <monnier@cs.yale.edu>
177         * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
178         regexp for labels cannot span several lines.
180         * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
181         `(setq :<key> ':<key>)' to the macro expansion.
183 2000-03-16  Dave Love  <fx@gnu.org>
185         * progmodes/f90.el (f90): Put custom group under `languages', not
186         `fortran'.
187         (f90-mode-hook): Customize.
188         (f90-mode): Set add-log-current-defun-function.
189         (f90-current-defun): New function.
191 2000-03-16  Gerd Moellmann  <gerd@gnu.org>
193         * cus-edit.el (custom-variable-tag-face): Handle case that
194         default face's height is not a number.
195         (custom-face-tag-face, custom-group-tag-face-1)
196         (custom-group-tag-face): Ditto.
197         (custom-group-tag-face-1): Add :group.
198         
199         * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
201 2000-03-15  Gerd Moellmann  <gerd@gnu.org>
203         * pcvs-defs.el (toplevel): Remove autoload cookie for form
204         requiring easymenu.
206 2000-03-15  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
208         * ps-print.el: PostScript user-defined prologue, PostScript error
209         handler, doc fix.
210         (ps-print-version): New version number (5.1).
211         (ps-user-defined-prologue, ps-error-handler-message)
212         (ps-print-prologue-0, ps-error-handler-alist): New vars.
213         (ps-setup, ps-begin-file, ps-begin-job): Code fix.
214         (ps-insert-string): New function.
215         
216 2000-03-15  Kenichi Handa  <handa@etl.go.jp>
218         * international/ccl.el (ccl-compile-expression): Don't generate
219         invalid self-assignment code.
221 2000-03-14  Dave Love  <fx@gnu.org>
223         * subr.el (replace-regexp-in-string): Renamed from
224         replace-regexps-in-string.  Doc fix.
226 2000-03-12  Dave Love  <fx@gnu.org>
228         * cus-edit.el: Doc fixes.
229         (customize-set-variable, customize-save-variable): Rename args for
230         doc.
231         (custom-variable-tag-face, custom-face-tag-face)
232         (custom-group-tag-face-1, custom-group-tag-face): Modify from
233         style which user identify as hyperlink.
234         (hook): Don't add undefined functions to the hook.
235         (debug-ignored-errors): Transfer message from bindings.el.
237 2000-03-12  Gerd Moellmann  <gerd@gnu.org>
239         * recentf.el (recentf-keep-non-readable-files-p): Remove
240         double/nested definition.
242 2000-03-12  Dave Love  <fx@gnu.org>
244         * facemenu.el (facemenu-get-face): Use display-color-p.
245         * enriched.el (enriched-decode-foreground): Likewise.
246         (enriched-decode-background): Likewise.
247         * isearch.el (isearch-highlight): Likewise.
248         * info-look.el (info-lookup): Likewise.
249         * simple.el (completion-setup-function): Likewise.
251         * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
252         :options.
254         * bindings.el (mode-line-format): Fix line-number and
255         column-number items.  Add help-echo for the background.
256         (mode-line-mule-info): Modify help-echo.
258         * avoid.el (mouse-avoidance-mode): Add autoload cookie to
259         defcustom.
261         * files.el (load-file): Allow completion to .elc.
263         * man.el: Doc fixes.
264         (Man-init-defvars): Use display-color-p to set fontification.
266         * play/hanoi.el (hanoi-internal): Don't use oddp.
268 2000-03-12  Gerd Moellmann  <gerd@gnu.org>
270         * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
272         * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
274 2000-03-12  Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
276         * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
277         Fix comment.
279 2000-03-10  Stefan Monnier  <monnier@cs.yale.edu>
281         * font-lock.el (font-lock-keywords): Fix the doc now that
282         regexp-opt-depth is unnecessary.
283         (save-buffer-state): Set an edebug spec.
284         (font-lock-fontify-anchored-keywords): Properly handle the case when
285         the matcher goes past the limit.
287         * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
288         pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
290         * emacs-lisp/ewoc.el: New file.  This is a merge of elib-node.el,
291         dll.el and cookie.el (from Elib) with heavy renaming and other
292         massaging.
294         * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
295         Autoload the functions used.
296         (easy-mmode-define-syntax): Fix CL typo.
297         (easy-mmode-define-derived-mode): Improve the docstring generation.
299 2000-03-10  Gerd Moellmann  <gerd@gnu.org>
301         * textmodes/texinfo.el (texinfo-version): Variable and function
302         removed.
304 2000-03-09  Stefan Monnier  <monnier@cs.yale.edu>
306         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
307         allow more flexibility.
308         (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New
309         fns.
310         (easy-mmode-defmap, easy-mmode-defsyntax)
311         (easy-mmode-define-derived-mode): New macros.
313 2000-03-09  Didier Verna  <didier@xemacs.org>
315         * rect.el (replace-rectangle): New function.
317 2000-03-09  Dave Love  <fx@gnu.org>
319         * progmodes/fortran.el (fortran-comment-line-start): Define as
320         "C".
321         (fortran-comment-line-start-skip): Don't match cpp stuff.
322         (font-lock-keywords): Add * to comment-chars.  Grok cpp stuff.
323         (fortran-mode-map): Remove over-eager custom-menu-create for now.
324         (fortran-mode): Don't set fortran-comment-line-start-skip,
325         fortran-comment-line-start here.  Set comment-start,
326         add-log-current-defun.
327         (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
328         (fortran-current-defun): New function.
330 2000-03-09  Gerd Moellmann  <gerd@gnu.org>
332         * emacs-lisp/re-builder.el: New file.
334         * mouse.el (mouse-drag-region): Don't run up-event handler
335         if hscroll has changed.
337         * octave-mod.el (octave-font-lock-keywords): To font-lock the
338         builtin operators, use `font-lock-builtin-face' for Emacs and
339         `font-lock-preprocessor-face' otherwise.
340         
341         * font-lock.el (lisp-font-lock-keywords-1): Highlight 
342         `(defun (setf foo)' differently.
344 2000-03-08  Stefan Monnier  <monnier@cs.yale.edu>
346         * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
347         (regexp-opt): Update comment and adapt the code the new meaning of
348         the `paren' argument of regex-opt-group for shy-groups.
349         (regexp-opt-depth): Handle shy groups as well as backslashed
350         backslashes.
351         (regexp-opt-group): Turn the leading comment into a docstring.
352         Allow `paren' to be a string (the string to use to open a group).
353         Remove open-presuf and close-presuf.  Instead of checking for `all
354         one-char' and then later on check for `several one-char', handle
355         both cases close together.  Also apply a more generic algorithm
356         for suffixes (the mirror image of the algorithm used for
357         prefixes).  Use shy-groups.  Use nreverse rather than reverse.
358         (regexp-opt-try-suffix): Removed.
360         * cmuscheme.el (inferior-scheme-mode-map): Define it independently
361         from comint-mode-map, so we can just inherit from it.  Also, move
362         the initialization into the `defvar' since there's no docstring
363         anyway and it's fairly short.
364         (inferior-scheme-mode): Define it as derived-mode: the code is
365         shorter and this way we inherit from comint-mode-map rather than
366         copying it.
368         * subr.el (replace-regexps-in-string): Properly handle the case
369         where we match an empty string.
371         * comint.el (comint-exec-1): Add the current-dir to the exec-path
372         when the command has a directory component (such as "./testml").
373         Also fix a typo in the comment.
375 2000-03-08  Gerd Moellmann  <gerd@gnu.org>
377         * Makefile (compile-files): Compile files one by one because
378         that's the only way to ensure a clean compilation environment for
379         each individual file.
381         * frame.el (other-frame): Call x-focus-frame.
383 2000-03-07  Dave Love  <fx@gnu.org>
385         * recentf.el (recentf-keep-non-readable-files-p): Add :set,
386         :require to defcustom.
388         * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
389         lists.
391         * files.el (auto-mode-alist): Add configure.in.
393         * progmodes/autoconf.el: New file.
395 2000-03-07  Gerd Moellmann  <gerd@gnu.org>
397         * mail/mh-e.el: Change maintainer to `none'.
399         * recentf.el (recentf-keep-non-readable-files-p): Quote args
400         to remove-hook and add-hook.
402 2000-03-07  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
404         * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
405         it as the default.
406         (mail-send): Test mail-send-nonascii also for the new `mime' value.
407         (sendmail-send-it): Conditionally add MIME headers specifying the
408         used character set.
409         
410 2000-03-07  Dave Love  <fx@gnu.org>
412         * winner.el: Fix keywords, autoload cookies.  Split
413         eval-when-compile form to avoid compilation failure.
415 2000-03-07  Miyashita Hisashi  <himi@bird.scphys.kyoto-u.ac.jp>
417         * international/mule.el: Modify comment about coding system
418         property `coding-category'.
419         (make-coding-system): New argument EOL-TYPE.  Pay attention to
420         coding-category property of PROPERTIES.
422         * international/mule-conf.el (coding-category-utf-8,
423         coding-category-utf-16-be, coding-category-utf-16-le): New coding
424         categories.  Include them in the argument for set-coding-priority.
426         * international/mule-cmds.el (reset-language-environment): Include
427         coding-category-utf-8, coding-category-utf-16-be, and
428         coding-category-utf-16-le in the argument for set-coding-priority.
429         (reset-language-environment): Initialize coding-category-utf-8,
430         coding-category-utf-16-be, and coding-category-utf-16-le to nil.
432 2000-03-06  Karl Fogel  <kfogel@red-bean.com>
434         * bookmark.el (bookmark-file-or-variation-thereof): New func, for
435         code abstracted out of `bookmark-jump-noselect'.  Now tries info
436         extensions as well as compression extensions.
437         (bookmark-jump-noselect): Use above new func.
438         
439 2000-03-03  Gerd Moellmann  <gerd@gnu.org>
441         * strokes.el: Change maintainer's mail address.
443 2000-03-03  Kenichi Handa  <handa@etl.go.jp>
445         * international/mule-diag.el (list-character-sets): Make help-echo
446         string by substitute-command-keys.
447         (list-character-sets): Likewise.
448         (sort-listed-character-sets): Call help-setup-xref.
450 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
452         * time.el (display-time-mail-file): Add `none' to the list of
453         choices.
455 2000-03-01  Dave Love  <fx@gnu.org>
457         * help.el (help-xref-go-back): Don't try to set position.
459         * international/mule-diag.el (list-character-sets): Call
460         help-setup-xref.  Add help-echo to xrefs.
461         (list-character-sets-1): Add help-echo to xrefs.
463 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
465         * frame.el (blink-cursor-mode): Switch cursor on when turning
466         the mode off.
468         * add-log.el (add-log-current-defun): Add support for
469         Autoconf mode.
471         * mail/rmail.el (rmail-quit-hook): New variable.
473 2000-03-01  Dave Love  <fx@gnu.org>
475         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
477         * help.el (help-xref-button): Add help-echo arg.
478         (describe-function-1, describe-variable, help-make-xrefs): Use it.
480         * faces.el (list-faces-display): Supply help-echo with
481         help-make-xrefs.
483         * facemenu.el (list-text-properties-at): Set help-xref-stack to
484         nil.
486 2000-03-01  Gerd Moellmann  <gerd@gnu.org>
488         * image.el (defimage): Look for image files in load-path.
490         * frame.el (busy-cursor-delay-seconds): Change type to 
491         `number'.
493 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
495         * recentf.el (recentf): Added version tag to the defgroup of
496         recentf.
498 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
500         * recentf.el (recentf-cleanup): Changed to remove excluded file
501         too.
502         (recentf-edit-list-action): `recentf-edit-list' checkbox widget
503         action to select/unselect a file.
504         (recentf-edit-list): Code cleanup and improvement.
505         (recentf-open-more-files-action): `recentf-open-more-files' button
506         widget action to open a file.
507         (recentf-open-more-files): No more use standard completion but
508         widgets.
509         (recentf-more-collection): Deleted.
510         (recentf-more-history): Deleted.
511         (recentf-setup-more-completion): Deleted.
513 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
515         * recentf.el (recentf-mode): No more needs that Emacs is running
516         under a window-system.
518 1999-03-01  David Ponce  <david.ponce@wanadoo.fr>
520         * recentf.el (recentf-edit-list): New command to edit the recent
521         list which allow the user to remove files.
522         (recentf-edit-selected-items): New global variable, used by
523         `recentf-edit-list' to hold the list of files to be removed from
524         the recent list.
525         (recentf-make-menu-items): Updated to display a "Edit list..."
526         menu item.  Minor code cleanup.
528 1999-03-01  David Ponce  <david.ponce@wanadoo.fr>
530         * recentf.el (recentf-open-more-files): New command to open files
531         that are not displayed in the menu.
532         (recentf-more-collection): New global variable holding the set of
533         permissible completions used by `recentf-open-more-files'.
534         (recentf-more-history): New global variable holding the history list
535         used by `recentf-open-more-files' completion.
536         (recentf-setup-more-completion): New function to setup completion for
537         `recentf-open-more-files'.
538         (recentf-make-menu-items): Updated to display a "More..." menu item.
540 1999-03-01  David Ponce  <david.ponce@wanadoo.fr>
542         * recentf.el (recentf-menu-action): Doc fixed.
544 1999-03-01  David Ponce  <david.ponce@wanadoo.fr>
546         * recentf.el (recentf-menu-filter): Doc updated.
547         (recentf-update-menu-hook): Allow menu filters to force menu update.
548         (recentf-make-menu-items): New menu filter handling.
549         (recentf-make-menu-item): New helper function.
550         (recentf-menu-elements): New menu handling function.
551         (recentf-sort-ascending): Updated to new menu filter handling.
552         (recentf-sort-descending): Updated to new menu filter handling.
553         (recentf-sort-basenames-ascending): New menu filter function.
554         (recentf-sort-basenames-descending): New menu filter function.
555         (recentf-show-basenames): New menu filter function.
556         (recentf-show-basenames-ascending): New menu filter function.
557         (recentf-show-basenames-descending): New menu filter function.
559 2000-02-29  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
561         * diary-lib.el (list-diary-entries): Don't try to go forward at
562         the end of the buffer.
564 2000-02-29  Kenichi Handa  <handa@etl.go.jp>
566         * international/mule-diag.el (list-character-sets): Completely
567         rewritten.
568         (sort-listed-character-sets): New function.
569         (list-character-sets-1): Completely rewritten.
570         (list-character-sets-2): New function.
571         (non-iso-charset-alist): New variable.
572         (decode-codepage-char): New function.
573         (charset-history): New variable.
574         (read-charset) (list-block-of-chars)
575         (list-iso-charset-chars)
576         (list-non-iso-charset-chars)
577         (list-charset-chars): New functions.
578         (mule-diag): Call list-character-sets-2, not
579         list-character-sets-2.
580         (dump-charsets): Likewise.
582 2000-02-29  Gerd Moellmann  <gerd@gnu.org>
584         * dired-x.el (dired-filename-at-point): Add `@' to valid
585         file name characters.
586         (dired-filename-at-point): Handle ange-ftp file names.
588         * frame.el (frame-notice-user-settings): Use assq-delete-all
589         instead of assoc-delete-all.
590         (frame-notice-user-settings): Ditto.
592         * subr.el (assq-delete-all): Renamed from assoc-delete-all.
593         Don't copy alist.
595 2000-02-28  Eli Barzilay  <eli@cs.cornell.edu>
597         * calculator.el (calculator-use-menu): New option.
598         (calculator-initial-bindings): Changed some bindings to work as
599         macros.
600         (calculator-forced-input): Removed.
601         (calculator-restart-other-mode): New variable.
602         (calculator-mode-map): Set up menu.
603         
604 2000-02-28  Jari Aalto  <jari.aalto@poboxes.com>
606         * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
607         tags.
608         
609 2000-02-28  Michael Kifer  <kifer@cs.sunysb.edu>
610         
611         * viper-cmd.el (viper-envelop-ESC-key): added the option to
612         translate all ESC key sequences.
613         (viper-goto-mark-subr): restore markers for files for which
614         they were saved.
615         * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
616         * viper-util.el (viper-set-replace-overlay-glyphs,
617         viper-set-replace-overlay): always check if the replacement
618         overlay is live.
619         * viper.el (viper-vi-state-mode-list): added major modes.
620         * ediff-wind.el: minor comment changes.
621         * ediff.el: copyright notice date fix.
622         
623 2000-02-27  Jason Rumney  <jasonr@gnu.org>
625         * faces.el (face-font-family-alternatives): Add arial to helv.
626         (mode-line, header-line, tool-bar): Same default as x for w32.
627         (fixed-pitch, variable-pitch): Remove wildcard as it prevents
628         face-font-family-alternatives from working.
629         * term/w32-win.el (mouse-set-font): Do not build fontset from
630         chosen font.
632 2000-02-25  Sam Steingold  <sds@goems.com>
634         * emacs-lisp/cl-indent.el (toplvel): Indent `pprint-logical-block'
635         properly.
636         
637 2000-02-25  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
639         * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
641 2000-02-25  Gerd Moellmann  <gerd@gnu.org>
643         * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
644         writable.
646         * frame.el (busy-cursor-delay-seconds): New option.
648 2000-02-24  Gerd Moellmann  <gerd@gnu.org>
650         * frame.el (show-cursor-in-non-selected-windows): New option.
652 2000-02-24  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
654         * diary-lib.el (include-other-diary-files): Undo the selective
655         display in any included file and don't kill it.
657 2000-02-24  Eli Zaretskii  <eliz@is.elta.co.il>
659         * dired.el (dired-mode-map): Don't remove "Edit" from the menu
660         bar.  Menu items converted to (menu-item format, help strings
661         added.
662         [downcase, upcase]: Don't enable on MS-DOS.
663         [symlink, symlinks]: Don't show if make-symbolic-link is not
664         bound.
665         [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
667 2000-02-23  Dave Love  <fx@gnu.org>
669         * simple.el (zap-to-char, kill-line, kill-region, kill-word)
670         (backward-kill-word): Revert addition of * to interactive spec --
671         it's a feature.
673         * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
674         (backward-kill-sentence, kill-sentence): Likewise.
676         * gud.el (gud-jdb-build-class-source-alist): Prepend space to
677         scratch buffer name.
678         (gud-format-command): Use int-to-string in ?l case.  Simplify
679         slightly.
681         * term/w32-win.el (internal-face-interactive): Update prompt for
682         new read-face-name.
684         * mail/footnote.el (footnote): Add :version to defgroup.
685         (footnote-section-tag-regexp): Customize.
686         (footnote-start-tag, footnote-end-tag): New option.
687         (footnote-latin-regexp): New variable.
688         (Footnote-latin): New function.
689         (footnote-style-alist): Add element for latin style.
690         (footnote-style): Moved.
691         (Footnote-goto-footnote): Use eq to test arg.
693         * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
695         * emacs-lisp/byte-opt.el: Change old backquote syntax.
696         (byte-compile-trueconstp): Include keywords.
697         (byte-optimize-quote, byte-optimize-lapcode): Use
698         byte-compile-const-symbol-p.
699         (byte-optimize-char-before): New optimization.
701         * emacs-lisp/bytecomp.el: Change old backquote syntax.
702         (byte-compile-const-symbol-p): New function.
703         (byte-compile-constp, byte-compile-out-toplevel)
704         (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
705         Use it.
707         * subr.el (define-key-after): Default AFTER to t.  Doc fix.
709 2000-02-23  Kenichi Handa  <handa@etl.go.jp>
711         * international/encoded-kb.el: Be sure to update minor-mode-alist
712         and minor-mode-map-alist.
713         (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
714         codes SS2 and SS3 correctly.
715         (encoded-kbd-self-insert-ccl): New function.
716         (encoded-kbd-setup-keymap): New function.
717         (encoded-kbd-mode): Handle CCL based coding system.  Setup keymap
718         by calling encoded-kbd-setup-keymap.
720         * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
721         characters.
722         (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
723         locally.
725 2000-02-22  Dave Love  <fx@gnu.org>
727         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
728         (lisp-mode-map, lisp-interaction-mode-map): Define all inside
729         defvar.
730         (lisp-mode-syntax-table): Set up for #|...|# comments.
731         (lisp-imenu-generic-expression): Purecopy strings.  Use syntax
732         classes.  Match `defface'.
733         (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
734         (eval-defun-1): Fix for defcustom.
735         (lisp-indent-region): Doc fix.
737         * subr.el (when, unless, split-string): Doc fix.
738         (read-passwd): Move call of clear-this-command-keys to the right
739         place.
740         (replace-regexps-in-string): New function.
742 2000-02-22  Gerd Moellmann  <gerd@gnu.org>
744         * help.el (describe-variable): Set syntax table to
745         emacs-lisp-mode-syntax-table when moving forward over the
746         symbol's name.
748 2000-02-22  Dave Love  <fx@gnu.org>
750         * xt-mouse.el: Doc fixes.
751         (xterm-mouse-position-function): New function, replacing advice of
752         mouse-position.
753         (xterm-mouse-mode): Use it.  Don't turn on under a window system.
755         * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
757 2000-02-21  Gerd Moellmann  <gerd@gnu.org>
759         * format.el (format-annotate-single-property-change): Handle
760         properties.with dotted-list values.
761         (format-proper-list-p): New function.
763         * enriched.el (enriched-face-ans): Handle '(foreground-color
764         . COLOR) and (background-color . COLOR).
766 2000-02-20  Dave Love  <fx@gnu.org>
768         * textmodes/flyspell.el (flyspell-mouse-map): Change definition
769         and assignments to it.
770         (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
771         current local map.
772         (make-flyspell-overlay): Use it.
773         (flyspell-correct-word/mouse-keymap): Change XEmacs test.
775         * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
776         (lm-get-header-re): Defun, not defsubst.
777         (lm-get-package-name): Defun, not defsubst.  Simplify.
778         (lm-version): Doc fix.  Simplify.
779         (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
780         (lm-crack-address, lm-last-modified-date, lm-commentary)
781         (lm-verify, lm-synopsis): Simplify.
782         (lm-report-bug): Require emacsbug.  Use compose-mail.
784 2000-02-20  Gerd Moellmann  <gerd@gnu.org>
786         * dired.el (dired-mode): Call propertized-buffer-identification
787         to set mode-line-buffer-identification to something having
788         the right text properties.
790         * bindings.el (propertized-buffer-identification): New function.
792 2000-02-20  Dave Love  <fx@gnu.org>
794         * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
795         check for t-mouse too.
797         * cus-start.el: Make echo-keystrokes `number'.
799 2000-02-20  Eli Zaretskii  <eliz@is.elta.co.il>
801         * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
802         Don't call ring-empty-p unless tags-location-ring is bound.
803         From Noah Friedman <friedman@splode.com>.
805 2000-02-18  Thien-Thi Nguyen  <ttn@gnu.org>
807         * progmodes/hideshow.el (hs-flag-region): No longer use
808         `intangible' overlay property.
810         (hs-toggle-hiding): New command.
811         (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
813         (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
814         Fix omission bug: Run `hs-minor-mode-hook' for both activation
815         and deactivation.
817 2000-02-18  Gerd Moellmann  <gerd@gnu.org>
819         * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
821 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
823         * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
825         * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
826         of `*' to handle `(* ... *)' comments.
828 2000-02-17  Eli Zaretskii  <eliz@is.elta.co.il>
830         * faces.el (list-faces-display): Use display-mouse-p instead of
831         window-system.
833         * menu-bar.el (global-map): Menu-bar items converted to the new
834         format (menu-item..., rearranged for better CUA compliance, and
835         their names changed for better clarity.  Help strings added.
837         * international/mule-cmds.el (mule-menu-keymap)
838         (describe-language-environment-map, set-coding-system-map)
839         (setup-language-environment-map): Convert to new (menu-item...
840         form, add help strings.  Change names of menu items for better
841         clarity.  "Mule" menu-bar item removed (it's now in the "Options"
842         submenu).
844 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
846         * dired-aux.el (dired-do-copy): Remove spurious character.`n'
847         within the code.
849 2000-02-16  Dave Love  <fx@gnu.org>
851         * faces.el: Don't require custom.  Add more specific :groups to
852         various deffaces.
853         (set-face-attribute): Purecopy args.
854         (read-face-name): Default to name at point and use it in prompt.
855         Remove colon from arg in all callers.
856         (list-faces-display): Hyperlink to face descriptions and customize
857         buffers.
859 2000-02-16  Per Abrahamsen  <abraham@dina.kvl.dk>
861         * wid-edit.el (widget-match-inline): An atom never matches a
862         list.
864 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
866         * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
867         at ':' characters by call to split-string.
869 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
871         * textmodes/bibtex.el: Added RCS version identification.
873 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
875         * textmodes/bibtex.el: Some temporary comments removed.
876         (bibtex-field-name, bibtex-entry-type): Made the relationship
877         explicit.
878         (bibtex-field-const): Allow capital letters.
879         (bibtex-start-of-string): Deleted because unused.
881         * textmodes/bibtex.el: Unified some nomenclature.  We no longer
882         use the term 'reference' to describe a bibtex entry as a whole.
883         Further, reference keys are no longer called 'labels'.
884         (bibtex-keys): Renamed to bibtex-reference-keys.
885         (bibtex-reformat-previous-labels): Renamed to
886         bibtex-reformat-previous-reference-keys.
887         (bibtex-reference-type): Renamed to bibtex-entry-type.
888         (bibtex-reference-head): Renamed to bibtex-entry-head.
889         (bibtex-reference-maybe-empty-head): Renamed to
890         bibtex-entry-maybe-empty-head.
891         (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
892         (bibtex-search-reference): Renamed to bibtex-search-entry.
893         (bibtex-enclosing-reference-maybe-empty-head): Renamed to
894         bibtex-enclosing-entry-maybe-empty-head.
895         (bibtex-entry-field-alist, bibtex-entry-head,
896         bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
897         bibtex-map-entries, bibtex-search-entry,
898         bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
899         bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
900         bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
901         bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
902         bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
903         bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
904         bibtex-complete-key, bibtex-String) : Use the new nomenclature.
906 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
908         * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
909         comment.
910         (bibtex-format-field-delimiters): New function, functionality
911         extracted from bibtex-format-entry.
912         (bibtex-autokey-get-yearfield-digits): New function, functionality
913         extracted from bibtex-autokey-get-yearfield.
915         * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
916         entries in order to avoid stack overflow in the regexp matcher if
917         field contents become large.
918         (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
919         bibtex-field-string-part-not-braced,
920         bibtex-field-string-part-no-inner-braces,
921         bibtex-field-string-part-1-inner-brace,
922         bibtex-field-string-part-2-inner-braces,
923         bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
924         bibtex-field-string-quoted, bibtex-field-string,
925         bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
926         bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
927         bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
928         as parsing is now performed by the following functions.
929         (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
930         bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
931         bibtex-parse-field-string, bibtex-search-forward-field-string,
932         bibtex-parse-association, bibtex-field-name-for-parsing,
933         bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
934         bibtex-search-forward-field, bibtex-search-backward-field,
935         bibtex-start-of-field, bibtex-end-of-field,
936         bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
937         bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
938         bibtex-parse-string-prefix, bibtex-parse-string-postfix,
939         bibtex-parse-string, bibtex-search-forward-string,
940         bibtex-search-backward-string, bibtex-start-of-string,
941         bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
942         bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
943         bibtex-end-of-text-in-string): New functions for the parsing of bibtex
944         entries.  Instead of reporting the results of the parsing by
945         match-beginning or match-end, these functions return data structures
946         that hold the corresponding positions.
947         (bibtex-enclosing-field): Changed to also report field boundaries by
948         return values rather than by match-beginning or match-end.  The
949         following functions have been adapted to use the new parsing
950         functions.
951         (bibtex-skip-to-valid-entry, bibtex-search-reference,
952         bibtex-enclosing-field, bibtex-format-entry,
953         bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
954         bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
955         bibtex-print-help-message, bibtex-end-of-entry,
956         bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
957         bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
958         bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
959         method for parsing.
960         (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
961         bibtex-map-entries, bibtex-flash-head,
962         bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
963         bibtex-autokey-change, bibtex-autokey-get-namefield,
964         bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
965         bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
966         bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
967         bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
968         bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
969         order to make the new binding of case-fold-search immediately
970         visible.
972 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
974         * textmodes/bibtex.el: Copyright notice is up to date.
975         Added constant 'bibtex-maintainer-salutation.
977         * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
978         than make-temp-name, use match-string-no-properties and eliminate
979         a quadratic behavior when building bibtex-strings.
981         * bibtex.el (bibtex-reference-key): Accept string entries whose
982         reference key contains upper case letters.
984 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
986         * bibtex.el (bibtex-reference-head): Allow entries to start with
987         a new line.
989 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
991         * bibtex.el: Hiding of entry bodies is not longer provided by
992         bibtex.el directly.  Instead the hideshow package can be used.
993         Added a special bibtex entry to hs-special-modes-alist.
994         (bibtex-hs-forward-sexp): Added for hideshow.el.
996 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
998         * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
999         at ':' characters by call to split-string.
1001 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1003         * textmodes/bibtex.el: Added RCS version identification.
1005 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1007         * textmodes/bibtex.el: Some temporary comments removed.
1008         (bibtex-field-name, bibtex-entry-type): Made the relationship
1009         explicit.
1010         (bibtex-field-const): Allow capital letters.
1011         (bibtex-start-of-string): Deleted because unused.
1012         
1013         * textmodes/bibtex.el: Unified some nomenclature.  We no longer
1014         use the term 'reference' to describe a bibtex entry as a whole.
1015         Further, reference keys are no longer called 'labels'.
1016         (bibtex-keys): Renamed to bibtex-reference-keys.
1017         (bibtex-reformat-previous-labels): Renamed to
1018         bibtex-reformat-previous-reference-keys.
1019         (bibtex-reference-type): Renamed to bibtex-entry-type.
1020         (bibtex-reference-head): Renamed to bibtex-entry-head.
1021         (bibtex-reference-maybe-empty-head): Renamed to
1022         bibtex-entry-maybe-empty-head.
1023         (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
1024         (bibtex-search-reference): Renamed to bibtex-search-entry.
1025         (bibtex-enclosing-reference-maybe-empty-head): Renamed to
1026         bibtex-enclosing-entry-maybe-empty-head.
1027         (bibtex-entry-field-alist, bibtex-entry-head,
1028         bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
1029         bibtex-map-entries, bibtex-search-entry,
1030         bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
1031         bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
1032         bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
1033         bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
1034         bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
1035         bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
1036         bibtex-complete-key, bibtex-String) : Use the new nomenclature.
1038 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1040         * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
1041         comment.
1042         (bibtex-format-field-delimiters): New function, functionality
1043         extracted from bibtex-format-entry.
1044         (bibtex-autokey-get-yearfield-digits): New function, functionality
1045         extracted from bibtex-autokey-get-yearfield.
1046         
1047         * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
1048         entries in order to avoid stack overflow in the regexp matcher if
1049         field contents become large.
1050         (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
1051         bibtex-field-string-part-not-braced,
1052         bibtex-field-string-part-no-inner-braces,
1053         bibtex-field-string-part-1-inner-brace,
1054         bibtex-field-string-part-2-inner-braces,
1055         bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
1056         bibtex-field-string-quoted, bibtex-field-string,
1057         bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
1058         bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
1059         bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
1060         as parsing is now performed by the following functions.
1061         (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
1062         bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
1063         bibtex-parse-field-string, bibtex-search-forward-field-string,
1064         bibtex-parse-association, bibtex-field-name-for-parsing,
1065         bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
1066         bibtex-search-forward-field, bibtex-search-backward-field,
1067         bibtex-start-of-field, bibtex-end-of-field,
1068         bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
1069         bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
1070         bibtex-parse-string-prefix, bibtex-parse-string-postfix,
1071         bibtex-parse-string, bibtex-search-forward-string,
1072         bibtex-search-backward-string, bibtex-start-of-string,
1073         bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
1074         bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
1075         bibtex-end-of-text-in-string): New functions for the parsing of bibtex
1076         entries.  Instead of reporting the results of the parsing by
1077         match-beginning or match-end, these functions return data structures
1078         that hold the corresponding positions.
1079         (bibtex-enclosing-field): Changed to also report field boundaries by
1080         return values rather than by match-beginning or match-end.  The
1081         following functions have been adapted to use the new parsing
1082         functions.
1083         (bibtex-skip-to-valid-entry, bibtex-search-reference,
1084         bibtex-enclosing-field, bibtex-format-entry,
1085         bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
1086         bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
1087         bibtex-print-help-message, bibtex-end-of-entry,
1088         bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
1089         bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
1090         bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
1091         method for parsing.
1092         (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
1093         bibtex-map-entries, bibtex-flash-head,
1094         bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
1095         bibtex-autokey-change, bibtex-autokey-get-namefield,
1096         bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
1097         bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
1098         bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
1099         bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
1100         bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
1101         order to make the new binding of case-fold-search immediately
1102         visible.
1104 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1106         * textmodes/bibtex.el: Copyright notice is up to date.
1107         Added constant 'bibtex-maintainer-salutation.
1108         
1109         * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
1110         than make-temp-name, use match-string-no-properties and eliminate
1111         a quadratic behavior when building bibtex-strings.
1112         
1113         * bibtex.el (bibtex-reference-key): Accept string entries whose
1114         reference key contains upper case letters.
1116 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1118         * bibtex.el (bibtex-reference-head): Allow entries to start with
1119         a new line.
1121 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1123         * bibtex.el: Hiding of entry bodies is not longer provided by
1124         bibtex.el directly.  Instead the hideshow package can be used.
1125         Added a special bibtex entry to hs-special-modes-alist.
1126         (bibtex-hs-forward-sexp): Added for hideshow.el.
1128 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1130         * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
1131         proceedings entry type (for cross referencing). Thanks to Wagner
1132         Toledo Correa for the suggestion.
1134         * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
1136 2000-02-14  Kenichi Handa  <handa@etl.go.jp>
1138         * international/characters.el: Setup case table for Vietnamese.
1140 2000-02-12  Gerd Moellmann  <gerd@gnu.org>
1142         * uniquify.el (toplevel): Require CL at compile time.
1143         (uniquify-push): Removed.
1145         * shadowfile.el (shadow-when): Removed.
1147         * tempo.el (tempo-dolist, tempo-mapc): Removed.
1148         (tempo-process-and-insert-string): Use dolist instead of
1149         tempo-dolist.
1151         * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
1152         regexp for paragraph-start.
1154         * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
1155         commas as well.
1157 2000-02-10  Dave Love  <fx@gnu.org>
1159         * wid-edit.el: (widgets) [defgroup]: Remove url link.
1160         (widget-color-choice-list, widget-color-history, widget-mouse-help):
1161         Deleted.
1162         (widget-specify-field, widget-specify-button): Don't use
1163         widget-mouse-help as help-echo property.
1164         (default): Use #'ignore for :validate and :mouse-down-action.
1165         (checkbox): Add help-echo.
1166         (widget-sexp-validate): Rewritten to clarify error messages.
1167         (character): Use char-valid-p in :match function.
1168         (widget-color-complete): Use facemenu-color-alist.
1169         (widget-color-action): Use facemenu-read-color.
1171         * emacs-lisp/cl-macs.el: Don't bother testing for defalias.  Don't
1172         set up `caar' &c that we now have.
1174 2000-02-09  Ray Blaak  <blaak@gnu.org>
1176         * delphi.el: Make resourcestring a declaration region, like const
1177         and var.
1179 2000-02-09  Dave Love  <fx@gnu.org>
1181         * bindings.el (mode-line-input-method-map): New variable.
1182         (mode-line-mule-info): Use it; fix last change.
1183         (mode-line-mode-menu): Move definition.
1184         (mode-line-mouse-sensitive-p): Deleted.
1185         (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
1186         (make-mode-line-mouse-sensitive): Deleted.  Body moved to top
1187         level.
1189         * startup.el (command-line-1): Don't call
1190         make-mode-line-mouse-sensitive.
1192 2000-02-07  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
1194         * mail/rmail.el (rmail-retry-failure): Use
1195         rmail-beginning-of-message before rmail-toggle-header, because the
1196         former toggles headers.
1198 2000-02-06  Stefan Monnier  <monnier@cs.yale.edu>
1200         * diff-mode.el (diff-kill-junk): New interactive function.
1201         (diff-reverse-direction): Use delete-and-extract-region.
1202         (diff-post-command-hook): Restrict the area so that the hook also works
1203         outside of any diff hunk.  This is necessary for the minor-mode.
1204         (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
1205         (diff-minor-mode): Setup the hooks for header-hunk rewriting.
1207         * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
1208         (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
1209         so that it can be used more easily in <foo>-mode-hook.  Also make sure
1210         to avoid duplicate entries.
1211         (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
1212         (font-lock-remove-keywords): Just as was done for `add', allow it to
1213         work even if font-lock-mode is nil.  Also make sure we don't modify
1214         any pre-existing list by forcing a copy-sequence.  Finally rename
1215         `major-mode' to `mode'.
1216         (font-lock-fontify-syntactic-anchored-keywords)
1217         (font-lock-fontify-anchored-keywords)
1218         (font-lock-fontify-keywords-region): Use line-end-position.
1219         Don't make `font-lock-multiline' local (it's now done in
1220         font-lock-set-defaults).
1221         (font-lock-set-defaults): Make `font-lock-multiline' local.  Also
1222         move the `font-lock-fontified' creation to inside the `unless'.
1224 2000-02-06  Andrew Innes  <andrewi@gnu.org>
1226         * term/w32-win.el (x-handle-args): Comment out call to message,
1227         which occurs before window system is initialized.
1229         * makefile.nt: Add support for recompiling lisp code.
1231 2000-02-04  Dave Love  <fx@gnu.org>
1233         * bindings.el (mode-line-mule-info): Fix/extend last change.
1235         * completion.el: Replace completion-dolist with dolist.
1237         * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
1238         dotimes.
1240 2000-02-04  Carsten Dominik  <dominik@strw.leidenuniv.nl>
1242         * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
1243         environment names before they go into the section regexp.
1245         * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
1246         char class in regexp.
1248         * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
1249         `case-fold-search' to nil.
1251         * progmodes/idlwave.el (idlwave-template): Respect
1252         `idlwave-abbrev-change-case'.
1253         (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
1254         idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
1255         idlwave-while): respect `idlwave-reserved-word-upcase'.
1256         (idlwave-rw-case): New function.
1257         (idlwave-statement-match): Fixed problem with assignment regexp.
1258         (idlwave-font-lock-keywords): Improved regexp for keyword
1259         parameters.
1260         (idlwave-surround): New argument LENGTH to support padding of
1261         operators longer than 1 char.
1263         * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
1264         idlwave-shell-expression-overlay.  Implemented printing of
1265         expressions on higher levels of the calling stack.
1266         (idlwave-shell-display-level-in-calling-stack): Restore stack
1267         level.
1268         (idlwave-retrieve-expression-from-level): New function.
1269         (idlwave-shell-last-calling-stack): Variable removed.
1270         (idlwave-shell-reset): Argument action reversed (`visible' to
1271         `hidden').  Also remove stop-line overlay.
1272         (idlwave-shell-calling-stack-routine): New variable.
1273         (idlwave-shell-parse-stack-and-display): Messages now display
1274         negative level numbers.
1275         (idlwave-shell-mode): Set `modeline-format'.
1276         (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
1277         (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
1278         21.
1279         (idlwave-shell-print-expression-function): New option.
1281         * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
1282         idlwave-toolbar-remove-everywhere): Keybindings prefix is now
1283         `tool-bar' instead of `toolbar'.
1285 2000-02-02  Dave Love  <fx@gnu.org>
1287         * emacs-lisp/cl.el: Use bytecomp-load-hook, not
1288         emacs-lisp-mode-hook.  Don't check for defalias being defined.
1290         * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
1291         (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions.  Use
1292         the new builtins directly.
1294         * whitespace.el (whitespace): Add :version to defgroup.
1296         * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
1297         Doc fix.
1299         * thingatpt.el (sexp-at-point, symbol-at-point)
1300         (number-at-point, list-at-point): Add autoload cookie.
1302         * recentf.el (recentf): Add :version to defgroup.
1304         * quickurl.el (quickurl): Add :version to defgroup.
1306         * elide-head.el (elide-head): Use point-marker more.
1308         * bs.el (bs): Add :version to defgroup.
1310         * autorevert.el (global-auto-revert-mode): Add autoload cookie.
1312         * progmodes/delphi.el (delphi): Add :version to defgroup.
1314 2000-02-02  Gerd Moellmann  <gerd@gnu.org>
1316         * ange-ftp.el (ange-ftp-write-region): Handle case that
1317         succeeding process operation sets a different coding system.
1319         * calculator.el: New file.
1321 2000-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
1323         * frame.el (frames-on-display-list, framep-on-display): New
1324         functions.
1325         (display-mouse-p, display-popup-menus-p, display-graphic-p)
1326         (display-selections-p, display-screens, display-pixel-width)
1327         (display-pixel-height, display-mm-width, display-mm-height)
1328         (display-backing-store, display-save-under, display-planes)
1329         (display-color-cells, display-visual-class): New functions.
1331         * term/tty-colors.el (tty-color-gray-shades): New function.
1333         * faces.el (display-color-p): Use framep-on-display.
1334         (display-grayscale-p): New function.
1336 2000-01-31  Dave Love  <fx@gnu.org>
1338         * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
1339         (create-fontset-from-x-resource): Don't concat integers.
1341 2000-01-31  Inge Frick  <inge@nada.kth.se>
1343         * view.el: Some changes in documentation.  Removed some trailing
1344         whitespace. Changed some parameter names to agree with
1345         documentation.
1346         (view-mode-exit): Keep entry in `view-return-to-alist' only when a
1347         window is not deleted.  Modifies change 1998-04-26.
1349 2000-01-31  Gerd Moellmann  <gerd@gnu.org>
1351         * windmove.el: New file.
1353         * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
1354         progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
1355         progmodes/ebnf-yac.el: Update copyright and license info.
1357         * jit-lock.el (jit-lock-function): Widen before calculating end
1358         position.
1359         (jit-lock-stealth-chunk-start): Rewritten.
1361         * info.el (Info-title-face-alist): Removed.
1362         (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
1363         faces.
1364         (Info-fontify-node): Use these faces.
1366 2000-01-30  Gerd Moellmann  <gerd@gnu.org>
1368         * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
1369         (cl-macro-list1): Recognize `&allow-other-keys' instead of
1370         `&allow-other-keywords'.
1372         * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
1373         the list of directories scanned heuristically.
1375         * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
1376         exist.
1378 2000-01-30  Jason Rumney  <jasonr@gnu.org>
1380         * w32-fns.el: Define w32-tty-standard-colors.
1382         * startup.el (command-line): Use w32-tty-standard-colors when in
1383         w32 console mode.
1385 2000-01-30  Dave Love  <fx@gnu.org>
1387         * jka-compr.el (jka-compr-load): Fix up load-history.
1389         * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
1391         * emacs-lisp/cl-macs.el: Revert previous change.
1393 2000-01-29  Dave Love  <fx@gnu.org>
1395         * facemenu.el: Purecopy various strings.
1397         * timezone.el (timezone-fix-time): Window against 69 for two-digit
1398         years.  Deal with three-digit years.
1400         * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
1401         defconst, purecopy.
1402         (help-back-label): Purecopy it.
1404 2000-01-18  Gerd Moellmann  <gerd@gnu.org>
1406         * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
1407         variable. If non-nil, order the buffer list according to the
1408         currently selected frame.
1409         (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
1410         non-nil, pass the selected frame to function buffer-list.
1412 2000-01-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
1414         * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
1416 2000-01-28  Dave Love  <fx@gnu.org>
1418         * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
1420         * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
1421         Don't use lisp-indent-hook property.
1422         (cl-abs): Remove.
1424         * subr.el: Move out indent and edebug specs for when and unless.
1426         * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
1427         when, unless.
1429         * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
1430         unless, when.
1432 2000-01-28  Gerd Moellmann  <gerd@gnu.org>
1434         * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
1435         `collecting' as synonym for `collect'.
1437         * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
1438         for the case it contains spaces.
1440         * simple.el (what-cursor-position): Change formatting of
1441         messages.
1443         * frame.el (delete-other-frames): New function.
1444         (toplevel): Bind it to C-x 5 1.
1446         * sort.el (sort-numeric-base): New option.
1447         (sort-numeric-fields): If number starts with `0' or `0[xX[',
1448         interpret it as octal or hexadecimal.  Use sort-numeric-base
1449         as default base.
1451         * progmodes/glasses.el: New file.
1453 2000-01-27  Gerd Moellmann  <gerd@gnu.org>
1455         * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
1456         userids differently.
1458         * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
1459         progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
1460         progmodes/ebnf-yac.el: New files.
1462 2000-01-26  Dave Love  <fx@gnu.org>
1464         * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
1465         on a function with an empty body.  [From Eric Ludlam.]
1467 2000-01-25  Andre Spiegel  <spiegel@gnu.org>
1469         * vc.el (vc-version-diff): Make sure file name is expanded.
1471 2000-01-25  Gerd Moellmann  <gerd@gnu.org>
1473         * scroll-bar.el (scroll-bar-timer): Variable removed.
1474         (scroll-bar-toolkit-scroll): Don't use a timer.
1476 2000-01-25  Kenichi Handa  <handa@etl.go.jp>
1478         * language/thai-util.el (thai-composition-function): Delete
1479         superfluous `a'.
1481 2000-01-24  Dave Love  <fx@gnu.org>
1483         * fortran.el (fortran-mode): Use beginning-of-defun-function,
1484         end-of-defun-function.
1486         * font-lock.el (turn-on-font-lock): Don't depend on window-system
1487         &c.
1489 2000-01-22  Jason Rumney  <jasonr@gnu.org>
1491         * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
1492         conflicts with new face support.
1494 2000-01-22  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1496         * replace.el (query-replace): Rename last arg to DELIMITED.
1497         (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
1498         (query-replace-regexp): Likewise.
1500 2000-01-20  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1502         * subr.el (with-syntax-table): Use make-symbol, not gensym.
1504         * emacs-lisp/lisp.el (beginning-of-defun-function):
1505         Variable renamed from beginning-of-defun.
1506         Do not call make-variable-buffer-local.
1507         (beginning-of-defun-raw): Use new variable name; doc fix.
1508         (beginning-of-defun): Doc fix.
1509         (end-of-defun-function): Variable renamed from end-of-defun.
1510         Do not call make-variable-buffer-local.
1511         (end-of-defun): Use new variable name; doc fix.
1513         * subr.el (dolist, dotimes): Copied from cl-macs.el
1514         and made to work.
1516         * mail/undigest.el (rmail-digest-end-regexps):
1517         Variable replaces rmail-digest-end-regexp.
1518         Allows multiple regexps for detecting the end line.
1519         (undigestify-rmail-message): Corresponding changes.
1521 2000-01-19  Dave Love  <fx@gnu.org>
1523         * files.el (user-init-file): Don't declare here -- is primitive.
1525         * startup.el (command-line): Check for compiled user-init-file and
1526         set to uncompiled version if necessary.
1528 2000-01-18  Gerd Moellmann  <gerd@gnu.org>
1530         * mail/undigest.el (rmail-digest-end-regexp): New user option.
1531         (undigestify-rmail-message): Use it.
1533         * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
1535 2000-01-17  Gerd Moellmann  <gerd@gnu.org>
1537         * tmm.el (tmm-goto-completions): Adapt to prompt being part
1538         of mini-buffer.
1540 2000-01-14  Gerd Moellmann  <gerd@gnu.org>
1542         * emacs-lisp/copyright.el (copyright-update): Removed the
1543         requirement for a trailing space from `copyright-regexp', to
1544         support copyrights with owner specified on a separate line..
1546         * align.el: New file.
1548         * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
1550         * net/eudc.el (toplevel): Define EUDC menu for Emacs.
1552 2000-01-13  Dave Love  <fx@gnu.org>
1554         * ph.el: Removed.  (Obsoleted by EUDC.)
1556 2000-01-13  Gerd Moellmann  <gerd@gnu.org>
1558         * net/eudc.el (toplevel): Remove autoloaded code installing
1559         menu with easymenu, because that causes build problems.
1561         * frame.el (frame-notice-user-settings): New variable.
1562         (frame-notice-user-settings): Don't modify frame parameters
1563         if called a second time.
1565 2000-01-13  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1567         * frame.el (frame-notice-user-settings):
1568         Notice default-frame-parameters even for non-window frames.
1570 2000-01-13  Gerd Moellmann  <gerd@gnu.org>
1572         * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
1573         for Emacs.
1574         (eudc-bob-can-display-inline-images): Extend for Emacs.
1575         (eudc-bob-toggle-inline-display): Ditto.
1576         (eudc-bob-display-jpeg): Ditto.
1578 2000-01-12  Gerd Moellmann  <gerd@gnu.org>
1580         * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
1581         net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
1582         net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
1584         * add-log.el (add-change-log-entry): Fix error trying an `(insert
1585         nil)'.
1587         * subdirs.el: Add `net' directory.
1589         * net: New directory.
1591         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
1592         eval-last-sexp.  Don't bind debug-on-error here.
1593         (eval-last-sexp): New function.  Bind debug-on-error if
1594         eval-expression-debug-on-error is non-nil.
1595         (eval-defun-2, eval-defun): Likewise.
1597         * simple.el (eval-expression): Don't bind debug-on-error if
1598         eval-expression-debug-on-error is nil.  Detect changed
1599         debug-on-error, and propagate new value to global binding, if
1600         eval-expression-debug-on-error is non-nil,
1601         (eval-expression-debug-on-error): Change doc string.
1603 2000-01-11  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1605         * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
1607         * emacs-lisp/lisp-mode.el (with-syntax-table):
1608         Set up lisp-indent-function property.
1610         * subr.el (with-syntax-table): Moved from simple.el.
1612         * simple.el (with-syntax-table): Moved to subr.el.
1614 2000-01-11  Gerd Moellmann  <gerd@gnu.org>
1616         * tmm.el (tmm-shortcut): Delete region after prompt instead
1617         of erasing buffer.
1619         * textmodes/fill.el (fill-common-string-prefix): New function.
1620         (fill-context-prefix): Use the longest common prefix of first
1621         and second line fill prefix, if there is one.
1623 2000-01-11  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1625         * array.el (array-mode): Don't use make-variable-buffer-local.
1626         Use make-local-variable for `truncate-lines'.
1628 2000-01-11  Jari Aalto  <jari.aalto@poboxes.com>
1630         * add-log.el (add-log-current-defun): Handle user-defined
1631         add-log-current-function returning nil,
1633         * add-log.el (add-change-log-entry): Insert version number
1634         if having found a current function
1636         * add-log.el (add-log-current-defun): Call
1637         `add-log-current-defun-function'.  Try matches at level 0 and
1638         level 1.  Strip whitespace from defun found.
1640 2000-01-10  John Wiegley  <johnw@gnu.org>
1642         * allout.el (isearch-done/outline-provisions): Added `edit'
1643         argument to correspond with the current definition of
1644         `isearch-done'.
1646 2000-01-10  Dave Love  <fx@gnu.org>
1648         * elide-head.el (elide-head): Use point-marker, not point.
1650 2000-01-10  Gerd Moellmann  <gerd@gnu.org>
1652         * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
1653         before and after the year 2000.
1655         * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
1656         Add ispell- prefix.
1658 2000-01-10  Ken Stevens  <k.stevens@ieee.org>
1660         * ispell.el:  Only define dictionaries in menus when they exist.
1661         (version18p): New variable.
1662         (version20p): New variable.
1663         (xemacsp): New variable.
1664         (ispell-choices-win-default-height): Fix for XEmacs visibility.
1665         (ispell-dictionary-alist1): Added Brasileiro dictionary.
1666         (ispell-dictionary-alist6): Russian command lines no longer accept
1667         run-together words.
1668         (ispell-local-dictionary-alist): Add koi8-r to customize definition.
1669         (ispell-dictionary-alist): Add koi8-r to customize definition.
1670         (check-ispell-version): Added documentation string.  Returns
1671         library path when called non-interactively.
1672         (ispell-menu-map-needed): Uses new variables.
1673         (ispell-library-path): New variable.
1674         (ispell-decode-string): XEmacs fix for bogus variable bindings.
1675         (ispell-word): Improved documentation string.  Test for valid
1676         character mappings.  Correctly check typed in word changes that can
1677         result in single words split into multiple words.  Returns
1678         replacement word.
1679         (ispell-command-loop): Fixes XEmacs display bugs.  Show word to
1680         replace in recursive query replace mode.  Help message for
1681         recursive edit mode.
1682         (ispell-show-choices): Protect against bad framepop bindings.
1683         (ispell-help): Fix to work with XEmacs.
1684         (ispell-highlight-spelling-error): Use new variables.
1685         (ispell-overlay-window): Fix to work with XEmacs.
1686         (ispell-parse-output): Passed and returns location information
1687         tracking spelling corrections.  Doesn't recheck same word on
1688         current line.
1689         (ispell-init-process): Protect against bogus XEmacs variable binding.
1690         Fix call to single argument in sleep-for.  Use new variables.
1691         (ispell-region): Passed and returns location information tracking
1692         spelling corrections.  Doesn't check same word on current line.
1693         Improved documentation string.  Doesn't resend a line already
1694         checked to the ispell process - fixes bug in LaTeX parsing.
1695         (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
1696         (ispell-skip-region): No longer skips <TT> in SGML.
1697         (ispell-process-line): Tracks location information with spelling
1698         corrections.  Added documentation string.  Accounts for words
1699         already accepted on this line.  Don't allow query-replace on line
1700         starting with math characters.  Doesn't resend a line already sent
1701         to ispell process.  Fixes alignment error bug.
1703 2000-01-10  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1705         * dired-x.el (dired-guess-shell-alist-default):
1706         Suggest xloadimage, which is free, not xv, which isn't.
1708         * ange-ftp.el (ange-ftp-file-name-nondirectory):
1709         Don't ever include the host name or user name in the value.
1711 2000-01-09  Gerd Moellmann  <gerd@gnu.org>
1713         * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
1714         of a real newline.
1716 2000-01-09  Stephen Eglen  <stephen@gnu.org>
1718         * dired-x.el (dired-guess-shell-alist-default): Suggest xv
1719         for .png files.
1721 2000-01-09  Per Abrahamsen  <abraham@dina.kvl.dk>
1723         * cus-edit.el (custom-hook-convert-widget): Fix comment.
1725 2000-01-09  Gerd Moellmann  <gerd@gnu.org>
1727         * progmodes/cperl-mode.el: Replace ^F with ^L.
1729         * sendmail.el (toplevel): Provide `sendmail' when compiling
1730         before `require'ing rmail and mailalias to prevent infinite
1731         recursion.
1733 2000-01-08  Dave Love  <fx@gnu.org>
1735         * emacs-lisp/backquote.el: Remove inappropriate customization
1736         (allowing custom.el to use backquote).
1738 2000-01-07  Dave Love  <fx@gnu.org>
1740         * add-log.el (add-log-debugging): Deleted.
1741         (add-change-log-entry): Treat a backup FILE-NAME as its parent
1742         file.  Remove debugging code.
1743         (change-log-get-method-definition, change-log-name): Add doc.
1744         (change-log-sortable-date-at): New function.
1745         (change-log-merge): New command.
1747         * time.el (display-time-string-forms): Make the Mail string active.
1748         (display-time-update): Provide help-echo for load average.
1750         * bindings.el (make-mode-line-mouse2-map): New function.
1751         (mode-line-modified): Use it and simplify.
1752         (mode-line-mule-info): Provide help-echo info.
1753         (minor-mode-alist): Activate the strings.
1754         (make-mode-line-mouse-sensitive): Simplify for
1755         mode-line-buffer-identification.
1757 2000-01-07  Gerd Moellmann  <gerd@gnu.org>
1759         * play/pong.el: New file.
1761 2000-01-06  Dave Love  <fx@gnu.org>
1763         * array.el: Assorted cleanups for compiler warnings, doc strings,
1764         `array-' prefix for symbols.
1766 2000-01-05  Dave Love  <fx@gnu.org>
1768         * textmodes/outline.el (outline-mode-menu-bar-map): Add
1769         outline-headers-as-kill.
1770         (outline-mode): Define imenu-generic-expression.
1771         (outline-headers-as-kill): New command.
1773         * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
1774         from paragraph-start.
1775         (paragraph-indent-minor-mode): New command.
1777         * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
1778         M-C-e, M-C-h, C-j, C-xnd, TAB.
1779         (fortran-mode): Set beginning-of-defun, end-of-defun.
1780         (fortran-column-ruler): Simplify.
1781         (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
1782         (fortran-with-subprogram-narrowing): Likewise.
1783         (fortran-indent-subprogram): Call mark-defun.
1784         (fortran-check-for-matching-do): Change narrowing.
1786         * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
1787         (cl-lucid-hash-tag): Delete.
1788         (cl-hash-table-p): Correct test for native table.
1789         (cl-hash-table-count): Use hash-table-count.
1791         * browse-url.el (browse-url): Fix case of
1792         browse-url-browser-function being an alist.
1794 2000-01-05  Carsten Dominik  <cd@gnu.org>
1796         * textmodes/reftex-vars.el (reftex-parse-file-extension)
1797         (reftex-index-phrase-file-extension): New options.
1799         * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
1800         Use new option `reftex-index-phrase-file-extension'.
1802         * textmodes/reftex.el (reftex-access-parse-file): Use new option
1803         `reftex-parse-file-extension'.
1805 2000-01-05  Dave Love  <fx@gnu.org>
1807         * emacs-lisp/lisp.el (beginning-of-defun): New variable.
1808         (beginning-of-defun-raw): Use it.
1809         (end-of-defun): New variable.
1810         (end-of-defun): Use it.
1811         (check-parens): New command.
1813 2000-01-05  Thien-Thi Nguyen  <ttn@delysid.gnu.org>
1815         * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
1816         (hs-show-block): Don't use `mapcar' when not accumulating.
1818         Fix buglet in local variables initialization.
1820 2000-01-05  Andreas Schwab  <schwab@suse.de>
1822         * hscroll.el (hscroll): Doc fix.
1824 2000-01-05  Carsten Dominik  <cd@gnu.org>
1826         * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
1827         idlw-toolbar.
1829         * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
1830         file idlw-rinfo.el.
1831         (idlwave-customize): load must read file idlw-shell.el.
1832         (idlwave-create-customize-menu): load must read file idlw-shell.el.
1834 2000-01-05  Carsten Dominik  <dominik@astro.uva.nl>
1836         * progmodes/idlw-shell.el: Also provide idlwave-shell
1837         * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
1838         * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
1840         * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
1841         both reftex-dcr and reftex-vcr.
1843         * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
1845 2000-01-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
1847         * ps-print.el: PostScript code now is in separate files, doc fix.
1848         (ps-print-version): New version number (5.0.3).
1849         (ps-header-lines, ps-left-header, ps-right-header): No more buffer
1850         local.
1851         (ps-spool-config): Initialization fix.
1852         (ps-print-prologue-1, ps-print-prologue-2)
1853         (ps-print-duplex-feature): PostScript code moved to separated file.
1854         (ps-background-image): Little code reformating.
1855         (ps-begin-file, ps-begin-job): Fix code.
1856         (ps-postscript-code-directory, ps-mark-code-directory): New vars.
1857         (ps-prologue-file): New fun.
1859 2000-01-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
1861         * ps-vars.el: Eliminated.
1863         * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
1864         `;;;###autoload'.
1866         * ps-print.el: ps-vars eliminated, doc fix.
1867         (ps-print-version): New version number (5.0.2).
1868         (ps-spool-config): Initialization fix.
1869         (ps-print-customize): New fun.
1871 2000-01-04  Gerd Moellmann  <gerd@gnu.org>
1873         * autorevert.el (auto-revert-mode): Return value of
1874         auto-revert-mode.
1876 2000-01-04  Dave Love  <fx@gnu.org>
1878         * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
1879         menu items.
1881 2000-01-03  Dave Love  <fx@gnu.org>
1883         * elide-head.el (elide-head) [defgroup]: Add :version.
1885         * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
1886         (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
1887         `cl-hash-table-p', not `hash-table-p'.
1888         (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
1890 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
1892         * faces.el (face-read-integer, read-face-attribute)
1893         (color-defined-p, color-values): unspecified-{f,b}g are now
1894         strings.
1896 2000-01-03  Martin Stjernholm  <bug-cc-mode@gnu.org>
1898         * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
1899         at comment end, and re-insert them after filling.
1901 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
1903         * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
1904         * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
1905         progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
1907 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
1909         * term/x-win.el (xw-defined-colors): Call color-supported-p,
1910         the new name of face-color-supported-p.
1912         * term/w32-win.el (xw-defined-colors): Likewise.
1914 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
1916         * simple.el (completion-setup-function): Count completion-size
1917         from minibuffer-prompt-end, not from point-min.
1919 2000-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
1921         * faces.el (read-face-attribute, defined-colors, color-defined-p):
1922         Pass the frame to tty-color-* functions.
1923         (display-color-p, frame-set-background-mode): Pass the frame to
1924         tty-display-color-p.
1926         * term/tty-colors.el (tty-defined-color-alist): Renamed from
1927         tty-color-alist.
1928         (tty-color-alist, tty-modify-color-alist): New functions.
1929         (tty-color-define,  tty-color-clear, tty-color-approximate)
1930         (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
1931         an optional parameter FRAME.
1933 2000-01-01  Gerd Moellmann  <gerd@gnu.org>
1935         * image.el (create-image, defimage): Don't assume image data is a
1936         string.
1938         * image.el (defimage): Handle specifications containing :data
1939         instead of :file.
1940         (image-type-from-data): New function.
1941         (image-type-from-file-header): Use it.
1942         (create-image): Add parameter DATA-P.
1944 1999-12-31  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1946         * echistory.el (electric-command-history): Call Command-history-setup
1947         and command-history-mode using their new conventions.
1949         * chistory.el (Command-history-setup): Don't switch buffers.  Take
1950         no args, and do not set major-mode, mode-name or the local map.
1951         (command-history-mode): New function, does some of those things
1952         Command-history-setup used to do.
1953         (list-command-history): Call command-history-mode, not
1954         Command-history-setup.
1955         (command-history): Renamed from command-history-mode.
1957 1999-12-31  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1959         * arc-mode.el (archive-mode-map): Bind q to quit-window.
1961 1999-12-31  William M. Perry  <wmperry@aventail.com>
1963         * image.el (defimage): Images with the `:data' keyword should be
1964         considered valid as well.
1966 1999-12-31  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1968         * dired.el (dired-get-filename): Don't call file-name-absolute-p
1969         with FILE if FILE is nil.
1971 1999-12-30  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1973         * simple.el (choose-completion-string): In minibuffer,
1974         do not delete the prompt string.
1976 1999-12-30  Gerd Moellmann  <gerd@gnu.org>
1978         * bindings.el (make-mode-line-mouse-sensitive): Copy keymap
1979         assigned to mode-line-mode-menu because bindings.el is dumped with
1980         Emacs, and thus the lists used for menu-item definition will be
1981         copied to pure space.  Emacs' menu code (parse_menu_item) doesn't
1982         like pure menu item definitions.
1984         * expand.el (expand-abbrev-hook): Return t if expansion was
1985         done, nil otherwise.
1987 1999-12-29  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1989         * tar-mode.el (tar-mode-map): Bind q to quit-window, not tar-quit.
1990         (tar-quit): Function deleted.
1992 1999-12-29  Thien-Thi Nguyen  <ttn@delysid.gnu.org>
1994         * progmodes/hideshow.el (hs-minor-mode-menu): Fix omission bug;
1995         was used but not declared.
1997         (hs-discard-overlays, hs-isearch-show, hs-isearch-show-temporary,
1998         hs-find-block-beginning): Add or modify docstrings.
2000         (hs-isearch-show): Rewrite.
2002 1999-12-28  Gerd Moellmann  <gerd@gnu.org>
2004         * icomplete.el (icomplete-exhibit): Adapt to prompt in buffer.
2006         * progmodes/cc-cmds.el (c-fill-paragraph): Don't delete white
2007         space in front of a C-style comment end.
2009 1999-12-28  Eli Zaretskii  <eliz@is.elta.co.il>
2011         * startup.el (command-line-1): Make mode line mouse-sensitive for
2012         the MS-DOS version as well.
2014 1999-12-28  Gerd Moellmann  <gerd@gnu.org>
2016         * bs.el: New file.
2018 1999-12-28  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
2020         * textmodes/ispell.el (ispell-process-line):
2021         Add local var line-offset to adjust for the change
2022         in positions within the line, due to previous replacements.
2024 1999-12-27  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
2026         * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
2027         Doc fixes.
2029 1999-12-27  Gerd Moellmann  <gerd@gnu.org>
2031         * add-log.el (change-log-version-number-regexp-list)
2032         (change-log-version-info-enabled): Change :version to 21.1.
2033         (toplevel): Require CL when compiling.
2035 1999-12-27  Jari Aalto  <jari.aalto@poboxes.com>
2037         * add-log.el (change-log-version-number-regexp-list): Added tag
2038         :version 20.6
2039         (change-log-version-info-enabled): Added tag :version 20.6
2041 1999-12-27  Jari Aalto  <jari.aalto@poboxes.com>
2043         * add-log.el: More general version number search with
2044         user-configurable regexp list.
2045         (change-log-version-number-regexp-list): New user variable.
2046         (change-log-find-version): Rewritten.  Use user-configurable
2047         version numbering regexp list
2048         change-log-version-number-regexp-list.
2049         (change-log-find-version): Renamed to
2050         change-log-version-number-search
2051         (add-log-file-name-function): New.
2052         (change-log-search-vc-number): Added END paramaeter.  Added doc
2053         string to function.
2054         (change-log-version-rcs): Renamed.  Was
2055         change-log-search-vc-number.
2057 1999-12-26  Thien-Thi Nguyen  <ttn@delysid.gnu.org>
2059         * progmodes/compile.el (compilation-goto-locus): Delete hideshow
2060         overlays if they interfere.
2061         (compilation-find-file): Make intangible overlays tangible.
2063         * progmodes/hideshow.el: Generally, synch w/ maintainer
2064         version 5.9.
2066         (hs-show-hidden-short-form): Delete var; hard-code uses as `t'.
2068         (hs-minor-mode-hook): Don't initialize.
2070         (hs-special-modes-alist): Rewrite value and docstring.
2072         (hs-minor-mode-prefix): Delete unused var.
2074         (hs-block-start-mdata-select): New var, buffer local.
2076         (hs-headline): New var.
2078         (hs-match-data, hs-forward-sexp): New funcs.
2080         (hs-hide-comment-region): New func.
2082         (hs-discard-overlays, hs-flag-region, hs-hide-block-at-point,
2083         hs-safety-is-job-n, hs-hide-initial-comment-block,
2084         hs-inside-comment-p, hs-grok-mode-type, hs-find-block-beginning,
2085         hs-hide-level-recursive, hs-life-goes-on, hs-already-hidden-p,
2086         hs-c-like-adjust-block-beginning, hs-hide-all, hs-show-all,
2087         hs-hide-block, hs-show-block, hs-show-region, hs-hide-level,
2088         hs-mouse-toggle-hiding, hs-minor-mode): Rewrite.
2090         (hs-isearch-show): Renamed from `hs-isearch-open-invisible'.
2091         (hs-isearch-show-temporary): New funcs.
2093         (hs-show-block-at-point, java-hs-forward-sexp): Delete funcs.
2095         (hs-hide-all, hs-mouse-toggle-hiding): Don't autoload.
2097         When constructing menu, use `[(shift button2)]' notation.
2099 1999-12-25  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
2101         * jka-compr.el (jka-compr-info-file-magic-bytes): New function.
2102         (jka-compr-compression-info-list): Add new elt to each vector.
2103         (jka-compr-write-region): Don't compress the data if it is
2104         already compressed.
2106         * jka-compr.el (jka-compr-really-do-compress): New variable.
2107         (jka-compr-insert-file-contents): Set jka-compr-really-do-compress
2108         if visiting.
2109         (jka-compr-write-region): Set jka-compr-really-do-compress
2110         if visiting.  Test it when deciding to compress.
2112 1999-12-22  Gerd Moellmann  <gerd@gnu.org>
2114         * progmodes/sh-script.el (sh-mode): Don't call sh-set-shell
2115         with third argument t.
2117 1999-12-21  Christoph Wedler  <Christoph.Wedler@sap.com>
2119         * antlr-mode.el: Version 1.2 is released.
2120         (antlr): This package has a web page.
2122 1999-12-21  Christoph Wedler  <Christoph.Wedler@sap.com>
2124         * antlr-mode.el: Menu/keymap additions for commenting/uncommenting
2125         regions.  Suggested by Dale Davis <Dale_Davis@securify.com>.
2126         (antlr-mode-map): New binding [C-c C-c].
2127         (antlr-mode-menu): New entries.
2129 1999-12-21  Christoph Wedler  <Christoph.Wedler@sap.com>
2131         * antlr-mode.el: Respect Emacs conventions.
2132         ((require 'cl)): Only use during compilation.
2133         (antlr-language-for-option): New function to avoid using `find'.
2134         (antlr-mode): Use it.
2135         (antlr-with-syntax-table): Define new instead using XEmacs' one.
2136         (antlr-imenu-create-index-function): Change accordingly.
2137         (antlr-inside-rule-p): Ditto.
2138         (antlr-end-of-rule): Ditto.
2139         (antlr-end-of-body): Ditto.
2140         (antlr-beginning-of-rule): Ditto.
2141         (antlr-indent-line): Ditto.
2143 1999-11-21  Christoph Wedler  <Christoph.Wedler@sap.com>
2145         * antlr-mode.el: Really use `antlr-tab-offset-alist'.
2146         (antlr-set-tabs): Don't use hard-coded values.
2148         * antlr-mode.el: Minor navigation changes.  Not perfect, but this
2149         won't be possible without a huge time penalty.
2150         (antlr-skip-exception-part): Be more specific.
2151         (antlr-skip-file-prelude): Don't skip action prelude of next rule.
2152         Renamed from `antlr-skip-grammar-header'.
2153         (antlr-next-rule): Change accordingly.
2154         (antlr-end-of-body): Ditto.  Better error message.
2155         (antlr-beginning-of-body): Better error message.
2156         (antlr-imenu-create-index-function): Skip rule action prelude.
2158         * antlr-mode.el: Minor syntax highlighting changes.
2159         (antlr-font-lock-default-face): Deletia.
2160         (antlr-font-lock-tokendef-face): Changed color.
2161         (antlr-font-lock-tokenref-face): Changed color.
2162         (antlr-font-lock-literal-face): Changed color.
2163         (antlr-font-lock-additional-keywords): Minor changes.
2165 1999-12-20  Carsten Dominik  <cd@gnu.org>
2167         * progmodes/idlwave.el: New file.
2169         * progmodes/idlwave-rinfo.el: New file.
2171         * progmodes/idlwave-shell.el: New file.
2173         * progmodes/idlwave-toolbar.el: New file.
2175         * files.el (auto-mode-alist): idlwave-mode default for .pro files.
2177 1999-12-21  Gerd Moellmann  <gerd@gnu.org>
2179         * progmodes/cwarn.el: New file.
2181 1999-12-19  Gerd Moellmann  <gerd@gnu.org>
2183         * bindings.el (completion-ignored-extensions): Add .pdf.
2185 1999-12-19  Eli Zaretskii  <eliz@is.elta.co.il>
2187         * version.el: Put the version info into binary on MS-DOS as well.
2189 1999-12-19  Gerd Moellmann  <gerd@gnu.org>
2191         * emacs-lisp/debug.el (debugger-continue): Don't continue if
2192         debugger-may-continue is nil.
2194 1999-12-18  Dave Love  <fx@gnu.org>
2196         * emacs-lisp/cl-macs.el: Remove conditional definition of
2197         eval-when-compile.  Don't specify abs, expt, gethash,
2198         hash-table-count, hash-table-p as side-effect-free here.
2199         (cl-emacs-type): Don't declare.
2200         (cl-compile-time-init): Remove Emacs 18 compiler patch.
2201         (cl-parse-loop-clause): Remove compatibility code.
2203         * emacs-lisp/byte-opt.el: Don't put optimization info on `eql'.
2204         (side-effect-free-fns): Add gethash, hash-table-count.
2205         (side-effect-and-error-free-fns): Add hash-table-p.
2207         * emacs-lisp/cl.el: Remove Emacs 18 compatibility code.  Prepend
2208         `cl-' to autoload names for some hash functions.  Don't autoload
2209         eval-when-compile.  Don't provide mini-cl.
2210         (cl-emacs-type): Remove.
2211         (cl-map-extents): Remove compatibility code.
2213         * emacs-lisp/float.el: Bind free variables.
2215         * emacs-lisp/bytecomp.el (byte-compile-constp): Include keywords.
2217 1999-12-16  Gerd Moellmann  <gerd@gnu.org>
2219         * bindings.el (completion-ignored-extensions): Add .tfm.
2221 1999-12-16  Dave Love  <fx@gnu.org>
2223         * faces.el (set-face-attribute): Purecopy the attributes set.
2225         * custom.el (custom-declare-variable): Purecopy value.
2227         * emacs-lisp/bytecomp.el (byte-compile-bound-variables): Doc fix.
2228         (byte-extrude-byte-code-vectors): Use remprop.
2229         (byte-compile-lambda): Check that arg is a lambda.
2231 1999-11-16  Anders Lindgren  <AndersL@andersl.com>
2233         * font-lock.el: System for adding and removing keywords.
2234         Both local (previously added keyword) and global keywords
2235         can be removed.
2236         (font-lock-remove-keywords): New user-level function.
2237         (font-lock-update-removed-keyword-alist): New internal function.
2238         (font-lock-removed-keywords-alist): New variable.
2239         (font-lock-add-keywords): Updates `font-lock-removed-keywords-alist'.
2240         Empty `font-lock-keywords-alist' when `append' is `set' to avoid
2241         growing datastructures.
2242         (font-lock-set-defaults): Removes keywords stored in
2243         `font-lock-removed-keywords-alist' after local keywords added.
2245 1999-12-16  Anders Lindgren  <andersl@andersl.com>
2247         * font-lock.el (c-keywords, c++-keywords): Better "case" support for
2248         complex constant expressions, e.g. "case 1<<A_BIT_NO:".
2250         * font-lock.el (c-keywords): Only highlight preprocessor
2251         directives when spelled correctly.
2253         * font-lock.el (font-lock-match-c++-structor-declaration,
2254         c++-keywords): Fontify constructors and destructors with function
2255         face inside C++ class declarations.
2257 1999-12-16  Gerd Moellmann  <gerd@gnu.org>
2259         * progmodes/sh-script.el (sh-mode): If there is no #!-line, use
2260         the shell from sh-shell-file.
2262         * font-lock.el (java-keywords): Add Javadoc tags as of JDK 1.2.1.
2264 1999-12-16  Eli Zaretskii  <eliz@is.elta.co.il>
2266         * ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
2267         if one of the files specified cannot be accessed by
2268         file-attributes.  Do not strip any leading directories from the
2269         file names, to behave more like `ls' does.
2271         * dired.el (dired-get-filename): Handle absolute file names.
2272         (dired-readin-insert): If argument is a cons, don't print
2273         "wildcard" on the ``total'' line.
2275 1999-12-15  Eli Zaretskii  <eliz@is.elta.co.il>
2277         * faces.el (face-read-integer, read-face-attribute)
2278         (color-defined-p, color-values): Allow color values unspecified-fg
2279         and unspecified-bg, handle them as unspecified.
2281 1999-12-15  Carsten Dominik  <dominik@astro.uva.nl>
2283         * textmodes/reftex.el: (reftex-compile-variables): respect new
2284         structure of `reftex-index-macro'
2285         (reftex-compile-variables): Use the changed structure of
2286         `reftex-label-alist'.
2288         * textmodes/reftex-vars.el (reftex-index-math-format,
2289         (reftex-toc-max-level): New option.
2290         reftex-index-phrases-search-whole-words,
2291         reftex-index-phrases-case-fold-search,
2292         reftex-index-phrases-skip-indexed-matches,
2293         reftex-index-phrases-wrap-long-lines,
2294         reftex-index-phrases-sort-prefers-entry,
2295         reftex-index-phrases-sort-in-blocks): New options.
2296         (reftex-index-macros): Option structure changed.
2297         (reftex-index-macros-builtin): Added `repeat' item to each entry.
2298         (reftex-label-alist): Additional item in each entry to specify if
2299         the environment should be listed in the TOC.
2300         (eval-when-compile (require 'cl)) added.
2302         * textmodes/reftex-index.el (reftex-index-selection-or-word): No
2303         longer deals with "repeat".
2304         (reftex-index): "repeat property in `reftex-index-macro-alist' is
2305         now used.
2306         (reftex-index-phrases-comment-regexp,
2307         reftex-index-phrases-macrodef-regexp,
2308         reftex-index-phrases-phrase-regexp1,
2309         reftex-index-phrases-phrase-regexp2,
2310         reftex-index-phrases-phrase-regexp12, reftex-index-phrases-help):
2311         New constants.
2312         (reftex-index-phrases-macro-data, reftex-index-phrases-files,
2313         reftex-index-phrases-font-lock-keywords,
2314         reftex-index-phrases-font-lock-defaults, reftex-index-phrases-map,
2315         reftex-index-phrases-restrict-file): New variables.
2316         (reftex-index-phrase-selection-or-word,
2317         reftex-index-visit-phrases-buffer,
2318         reftex-index-initialize-phrases-buffer,
2319         reftex-index-phrases-save-and-return, reftex-index-phrases-mode,
2320         reftex-index-next-phrase, reftex-index-this-phrase,
2321         reftex-index-all-phrases, reftex-index-region-phrases,
2322         reftex-index-phrases-parse-header,
2323         reftex-index-phrases-toggle-restricted, reftex-index-new-phrase,
2324         reftex-index-find-next-conflict-phrase, reftex-index-phrases-info,
2325         reftex-index-phrases-set-macro-key, reftex-index-sort-phrases,
2326         reftex-compare-phrase-lines, reftex-index-make-phrase-regexp,
2327         reftex-index-simplify-phrase, reftex-index-phrases-find-dup-re,
2328         reftex-index-make-replace-string,
2329         reftex-query-index-phrase-globally, reftex-query-index-phrase,
2330         reftex-index-phrase-match-is-indexed,
2331         reftex-index-phrases-fixup-line,
2332         reftex-index-phrases-replace-space,
2333         reftex-index-select-phrases-macro): New functions.
2334         (reftex-index-globalize, reftex-index-globally): functions removed
2335         (eval-when-compile (require 'cl)) added.
2337          * textmodes/reftex-toc.el (reftex-toc-mode): Create new indicator
2338          for max level.
2339          (reftex-toc-max-level-indicator): New variable.
2340          (reftex-toc-max-level): New command.
2341          (reftex-toc-map): New keybinding `t'.
2342          (reftex-toc-help): Constant updated.
2343          (eval-when-compile (require 'cl)) added.
2345          * textmodes/reftex-ref.el (reftex-offer-label-menu): Prefix to
2346          `t' command key can change `reftex-toc-max-level'
2347          (eval-when-compile (require 'cl)) added.
2349          * textmode/reftex-sel (reftex-insert-docstruct): Respect
2350          `reftex-toc-max-level'
2351          (eval-when-compile (require 'cl)) added.
2353          * textmodes/reftex-auc.el (eval-when-compile (require 'cl))
2354          added.
2356          * textmodes/reftex-vcr.el (eval-when-compile (require 'cl))
2357          added.
2359          * textmodes/reftex-cite.el (reftex-citep, reftex-citet): New
2360          commands.
2361          (reftex-citation, reftex-do-citation,
2362          reftex-figure-out-cite-format): Additional argument FORMAT-KEY to
2363          preselect a citation format.
2364          (eval-when-compile (require 'cl)) added.
2366          * textmodes/reftex-parse.el (reftex-context-substring): Optional
2367          parameter to-end
2368          (reftex-section-info): Deal with environment matches.
2369          (eval-when-compile (require 'cl)) added.
2371          * reftex-global.el (eval-when-compile (require 'cl)) added.
2373 1999-12-15  Kenichi Handa  <handa@etl.go.jp>
2375         The following changes are for the new composition mechanism.  We
2376         have deleted `composition' charset and composite characters,
2377         instead introduced a special text property `composition'.
2379         * composite.el: New file.
2381         * ps-mule.el: Define encode-composition-rule and find-composition
2382         for Emacs 20.4 and the earlier versions.
2383         (ps-mule-init-external-library): Just require a feature for
2384         external libraries.
2385         (ps-mule-prologue): Postscript code modified for new composition.
2386         (ps-mule-find-wrappoint): New arg COMPOSITION.
2387         (ps-mule-plot-string): Delete code for composite characaters.
2388         (ps-mule-plot-composition): New funcion.
2389         (ps-mule-prepare-font-for-components): New function.
2390         (ps-mule-plot-components): New function.
2391         (ps-mule-composition-prologue-generated): Renamed from
2392         ps-mule-cmpchar-prologue-generated.
2393         (ps-mule-composition-prologue): New named from
2394         ps-mule-cmpchar-prologue.  Modified for new composition.
2395         (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
2396         ps-mule-prepare-cmpchar-font): Deleted.
2397         (ps-mule-string-encoding): New arg NO-SETFONT.
2398         (ps-mule-bitmap-prologue): In Postscript code of BuildGlyphCommon,
2399         check Composing, not Cmpchar
2400         (ps-mule-initialize): Set ps-mule-composition-prologue-generated
2401         to nil.
2402         (ps-mule-begin-job): Check existence of new composition.
2404         * ps-print.el (ps-plot-region): Handle new composition.
2406         * simple.el (what-cursor-position): Show "(composed)" if the
2407         character is composed.
2409         * international/characters.el: Fix cateogries of Lao symbols.
2411         * international/fontset.el (vertical-centering-font-regexp): New
2412         variable.
2414         * international/mule.el (mule-version): Updated to 5.0 (AOI).
2415         (mule-version-date): Updated to 1999.12.7.
2416         (with-category-table): New macro.
2418         * international/mule-cmds.el (encode-coding-char): Don't check
2419         composite character.
2421         * international/mule-conf.el (iso-2022-7bit, iso-2022-7bit-ss2
2422         iso-2022-7bit-lock, iso-2022-7bit-lock-ss2, iso-2022-8bit-ss2,
2423         x-ctext): Give `composition' property t.
2425         * international/mule-util.el (set-nested-alist): Set BRANCHES (if
2426         non-nil) at the tail of ALIST.
2427         (compose-region, decompose-region, decompse-string,
2428         reference-point-alist, compose-chars): Moved to composite.el.
2429         (compose-chars-component, compose-chars-rule,
2430         decompose-composite-char): Deleted.
2432         * international/quail.el (quail-install-map): New optional arg
2433         NAME.
2434         (quail-get-translation): If DEF is a symbol but not a function,
2435         ignore it.
2436         (quail-start-translation): Put a key sequence undefined in the
2437         translation keymap in unread-command-events, not generated-events.
2438         Return parameterized event (compose-last-chars N) if the input
2439         characters should be composed.
2440         (quail-map-definition): If DEF is t, treat it as nil.
2441         (quail-delete-last-char): Delete the quail region.
2442         (quail-show-translations): Don't show list of translations if the
2443         quail package is deterministic.
2444         (quail-completion-max-depth): New variable.
2445         (quail-completion-1): Pay attention to the above variable.  Fix
2446         for the case that a translation is a function.
2447         (quail-map-from-table, quail-map-from-table-1,
2448         quail-map-from-table-2): New functions.
2449         (quail-lookup-map-and-concat): New function
2451         * language/devan-util.el: Mostly rewritten.
2453         * language/lao.el: Register lao-composition-function in
2454         composition-function-table.
2456         * language/lao-util.el: Mostly rewritten.
2458         * language/thai.el: Register thai-composition-function in
2459         composition-function-table.
2460         (thai-tis620): Delete `pre-write-conversion' property.
2462         * language/thai-util.el: (thai-category-table): Make it by
2463         make-category-table.
2464         (thai-composition-pattern): New variable.
2465         (thai-compose-region, thai-compose-string): Use
2466         with-category-table.
2467         (thai-post-read-conversion): Just call thai-compose-region.
2468         (thai-pre-write-conversion): Deleted.
2469         (thai-composition-function): New funciton.
2471         * language/tibet-util.el: Most functions rewritten.
2472         (tibetan-char-p): Renamed from tibetan-char-examin.
2473         (tibetan-composable-examin) (tibetan-complete-char-examin)
2474         (tibetan-vertical-stacking) (tibetan-composition): Deleted.
2475         (tibetan-add-components): New function.
2476         (tibetan-composition-function): New function.
2478         * language/tibetan.el: Register tibetan-composition-function in
2479         composition-function-table.
2480         (tibetan-composable-pattern): New variable.
2481         (tibetan-subjoined-transcription-alist): Change key "R" to "+R".
2482         (tibetan-precomposition-rule-alist): Move punctuations to
2483         tibetan-punctuation-transcription-alist and
2484         tibetan-obsolete-glyphs.
2485         (tibetan-punctuation-transcription-alist): New variable.
2486         (tibetan-obsolete-glyphs): New variable.
2487         (tibetan-regexp): Improve the initialization code.
2489         * textmodes/fill.el (fill-find-break-point): Delete codes for
2490         composite characters.
2491         (fill-region-as-paragraph): Likewise.
2493 1999-12-14  Gerd Moellmann  <gerd@gnu.org>
2495         * international/mule-cmds.el (default-input-method): Specify
2496         that it should be set after current-language-environment.
2498         * custom.el (custom-handle-keyword): Add :set-after.
2499         (custom-add-dependencies): New function.
2500         (custom-set-variables): Take dependencies between args into
2501         account.
2503         * battery.el (battery): Doc fix.
2505 1999-12-12  Gerd Moellmann  <gerd@gnu.org>
2507         * progmodes/cc-make.el: Removed.
2509 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2511         * Release of cc-mode 5.26
2513 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2515         * cc-cmds.el (c-forward-conditional): Handle an arbitrary
2516         target depth.  Optionally count #else lines as clause limits,
2517         as suggested by don provan <provan@lucent.com>.  #elif
2518         handling fixed.
2520         * cc-cmds.el (c-up-conditional-with-else, c-down-conditional)
2521         (c-down-conditional-with-else): New commands that uses the
2522         added functionality in `c-forward-conditional'.
2524 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2526         * cc-align.el (c-lineup-comment): Preserve the alignment with
2527         a comment on the previous line instead of preserving the
2528         comment-column.
2530 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2532         * Fixes to IDL mode after input from Eric Eide
2533         <eeide@cs.utah.edu>:
2534         * cc-engine.el (c-beginning-of-statement-1): Allow
2535         `c-conditional-key' to be nil, for the benefit of IDL mode.
2536         * cc-engine.el (c-guess-basic-syntax): Ditto.
2537         cc-langs.el (C-IDL-class-key): Fixed.  Don't match `class'
2538         but do match CORBA 2.3 `valuetype'.
2539         * cc-langs.el (c-IDL-access-key): New defconst.  Should be nil
2540         for IDL.
2541         * cc-langs.el (c-IDL-conditional-key): New defconst.  Should
2542         be nil for IDL.
2543         * cc-langs.el (c-IDL-comment-start-regexp): New defconst.
2544         Like C++.
2545         * cc-mode.el (idl-mode): Use new `c-IDL-*' defconsts.  Also,
2546         set `c-method-key' and `c-baseclass-key' to nil.
2548 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2550         * cc-menus.el (cc-imenu-c++-generic-expression): Match classes
2551         with nonhanging open braces.
2553 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2555         * cc-align.el: Added docstrings to all lineup functions.
2557         * cc-align.el (c-lineup-java-throws): Handle a hanging throws
2558         keyword.
2560         * cc-align.el (c-lineup-C-comments): Handle free form text
2561         comments.  Use c-comment-prefix-regexp and comment-start-skip
2562         instead of hardcoded regexps.
2564 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2566         * cc-cmds.el (c-beginning-of-defun, c-end-of-defun): Fixed eob
2567         behavior and return value as documented.
2569 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2571         * Changes for new style variable init system:
2572         * cc-langs.el (c-common-init): Dito.
2573         * cc-styles.el: c-offsets-alist moved to cc-vars.el since it's
2574         now customizable.
2575         * cc-vars.el: Style variables may now take a value
2576         'set-from-style to make them take their value from the style
2577         system. This value is now the default on all these variables.
2578         * cc-vars.el (c-valid-offset): New function to verify a
2579         syntactic symbol offset setting.
2580         * cc-vars.el (c-offsets-alist): Variable moved from
2581         cc-styles.el since it's now customizable in a similar way to
2582         the other style variables.
2583         * cc-vars.el (c-old-style-variable-behavior): New variable to
2584         revert to the old style init behavior.
2586         * cc-vars.el (c-file-style, c-file-offsets): Made always
2587         buffer local.
2589         * cc-menus.el (cc-imenu-c++-generic-expression): Don't match
2590         the throws clause that might follow the function prototype in
2591         C++.
2593 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2595         * cc-defs.el (c-beginning-of-macro): Fixed bug where point
2596         could move forward for macros that doesn't start in column 0.
2598 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2600         * cc-align.el (c-indent-multi-line-block,
2601         c-lineup-whitesmith-in-block): Two new lineup functions for
2602         use in whitesmith style.
2604         * cc-styles.el (c-style-alist): More fixes to whitesmith
2605         style.  It should now handle all different braces uniformly in
2606         both hanging and non-hanging cases.
2608 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2610         * cc-cmds.el (c-indent-exp): Use a marker to save point to
2611         make it stay in the same position relative to the surrounding
2612         text.
2614         * cc-cmds.el (c-fill-paragraph): Force the line comment prefix
2615         when adaptive-fill-mode doesn't manage to get it correct.
2617         * cc-menus.el (cc-imenu-java-generic-expression): Handle types
2618         with dotted notation, e.g. foo.bar.Gnu.
2620         * cc-mode.el (c-initialize-cc-mode): Wrap all function calls
2621         within unwind-protect (previously only some were wrapped so it
2622         would be possible to register mode initialization when full
2623         initialization did not finish).
2625         * cc-styles.el (c-style-alist): Corrected the brace placement
2626         in the whitesmith style.  Thanks to Sean Luke
2627         <seanl@cs.umd.edu>.  Also extended the bsd and whitesmith
2628         styles with consistent brace placement for all constructs.
2630 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2632         * cc-cmds.el (c-context-line-break): Continue C++ comments too
2633         when point is in the middle of them.
2635         * cc-cmds.el: Line breaking and paragraph filling code
2636         rewritten:
2637         (c-guess-fill-prefix): New function that uses various
2638         heuristics to guess the comment prefix.
2639         (c-fill-paragraph): Rewritten to use `c-guess-fill-prefix'.
2640         It now assumes adaptive filling is active to preserve the line
2641         prefix inside comments.
2642         (c-indent-new-comment-line): Replacement for the now
2643         obsolete `c-comment-line-break-function' that uses
2644         `c-guess-fill-prefix' when appropriate.  It now observes the
2645         setting of `comment-multi-line', which has effect in C-style
2646         block comments.
2648         * cc-cmds.el (c-context-line-break): New function intended to
2649         be put on RET.  It's essentially `newline-and-indent', but
2650         continues C block comments with the appropriate line prefix.
2652         * cc-cmds.el (c-do-auto-fill): New function put on
2653         `normal-auto-fill-function' to implement the
2654         `c-ignore-auto-fill' variable.
2656         * cc-cmds.el (c-beginning-of-statement): Use
2657         `c-comment-prefix-regexp' to avoid ending up inside the
2658         comment prefix.  Better handling of comment starters and
2659         enders. Catch comments better when traversing code.  Stop at
2660         preprocessor directives.
2662         * cc-defs.el (c-forward-comment): New subst to hide platform
2663         dependent quirks in `forward-comment'.
2665         * cc-engine.el (c-literal-limits): Added NOT-IN-DELIMITER
2666         argument.
2667         (c-literal-limits-fast): Implemented NEAR and NOT-IN-DELIMITER
2668         arguments. Activate this function by default when
2669         `parse-partial-sexp' supports it (currently Emacs 20.x).
2671         * cc-engine.el (c-guess-basic-syntax): Anchor the `c' syntax
2672         on the comment opener to make constants usable as lineup
2673         arguments.
2675         * cc-align.el (c-lineup-C-comments): Fixes to handle the
2676         changed anchor position in the `c' syntactic symbol.  Handle
2677         more than stars in the comment prefix; use the new variable
2678         `c-comment-prefix-regexp'.  Don't indent text not preceded by
2679         a comment prefix to the right of the comment opener if it's
2680         long.
2682         * cc-langs.el: Fixes to mode initialization for new line
2683         breaking and paragraph filling method.  Adaptive fill mode is
2684         now activated at startup instead of deactivated.  The
2685         variables used for adaptive filling and paragraph movement are
2686         also changed to incorporate the value of
2687         `c-comment-prefix-regexp'.  `substitute-key-definition' is
2688         used to override some functions in the global map instead of
2689         overriding their default bindings.
2691         * cc-mode.el (java-mode): Modify `paragraph-start' for the
2692         javadoc markup at mode init.
2694         * cc-mode.el (c-setup-filladapt): A new convenience function
2695         to configure Kyle E. Jones' Filladapt mode for CC Mode.  This
2696         function is intended to be used explicitly by the end user
2697         only.
2699         * cc-vars.el (c-comment-prefix-regexp): New variable used to
2700         recognize the comment fill prefix inside comments.
2701         (c-block-comment-prefix): New name for
2702         `c-comment-contiuation-stars', which is now obsolete.  It's
2703         generalized to handle any character sequence.
2704         (c-ignore-auto-fill): New variable used to selectively disable
2705         Auto Fill mode in specific contexts.
2707 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2709         * cc-cmds.el (c-comment-indent): Leave at least one space
2710         between the comment and the last nonblank character in the
2711         case where we look at the indentation of the comment on the
2712         previous line (case 4).
2714         * cc-engine.el (c-beginning-of-statement-1): Added ``' to the
2715         list of characters that may start a statement (it's a sort of
2716         prefix operator in Pike, and isn't used at all in any of the
2717         other languages).
2719 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2721         * cc-engine.el (c-guess-basic-syntax): Report brace list opens
2722         inside continued statements as statement-cont instead of
2723         brace-list-open.  The reason is that one normally adjusts
2724         brace-list-open for brace lists as top-level constructs, and
2725         brace lists inside statements is a completely different
2726         context.  Case 10B.2 changed.  Also changed (the somewhat
2727         esoteric) case 9A to cope with this.
2729 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2731         * cc-cmds.el (c-electric-brace): Added electric handling of
2732         the open brace for brace-elseif-brace.
2734 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2736         * cc-defs.el (c-with-syntax-table): New macro to easily switch
2737         syntax tables temporarily.
2739         * cc-engine.el (c-guess-basic-syntax): Handle template and
2740         member init argument lists split over several lines.  Case 5D
2741         changed.
2743         * cc-langs.el (c-Java-javadoc-paragraph-start): Added new tag
2744         @throws introduced in Javadoc 1.2.
2746         * cc-menus.el (cc-imenu-java-generic-expression): Applied
2747         patch from RMS to avoid infinite backtracking.
2749 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2751         * cc-align.el (c-lineup-arglist): Handle "arglists" surrounded
2752         by [ ].
2754 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2756         * cc-align.el (c-lineup-dont-change): Compensate properly for
2757         the column in langelem.
2759         * cc-engine.el (c-syntactic-information-on-region): New
2760         function to help debugging the syntactic analysis.
2762 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2764         * cc-align.el (c-lineup-template-args): Handle nested template
2765         arglists.
2767         * cc-langs.el (c++-template-syntax-table): New syntax table
2768         that makes `<' and `>' parenthesis characters, which is useful
2769         to switch to temporarily when analyzing template arglists.
2771         * cc-styles.el: Changed default alignment of labels in the
2772         java style to conform to the examples in the Java Language
2773         Specification.
2775         * cc-styles.el (c-offsets-alist): Use `c-lineup-template-args'
2776         by default.
2778 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2780         * cc-engine.el (c-guess-basic-syntax): Pike allows a comma
2781         immediately before the closing paren in an arglist, so don't
2782         check that in Pike mode.  Case 7A changed.
2784 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2786         * cc-cmds.el (c-indent-region): Fixed bug where comment-only
2787         lines were ignored under certain conditions.
2789 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2791         * cc-align.el (c-lineup-template-args): New function for
2792         aligning continued template argument lists.
2794         * cc-engine.el (c-guess-basic-syntax): Fix for member init
2795         lists containing function arglists split over several lines.
2796         Case 5D.1 changed.
2798         * cc-engine.el (c-guess-basic-syntax): Fixed bug where
2799         template-args-cont didn't get recognized when the first
2800         arglist opener line doesn't contain a template argument.  New
2801         case 5K.
2803 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2805         * cc-defs.el (c-point): Changed from subst to macro for
2806         efficiency.
2807         (c-beginning-of-defun-1, c-end-of-defun-1): New
2808         beginning-of-defun/end-of-defun wrappers separated from
2809         c-point.
2811         * cc-menus.el (imenu-generic-expression,
2812         imenu-case-fold-search, imenu-progress-message): Dummy
2813         definitions to avoid compiler warnings if imenu can't be
2814         loaded.
2815         * cc-menus.el (cc-imenu-init): New function called at mode
2816         init.
2817         * cc-mode.el (c-mode, c++-mode, objc-mode, java-mode): Moved
2818         imenu initializations to cc-imenu-init.
2820 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2822         * cc-engine.el (c-guess-basic-syntax): Slightly better check
2823         for lambda-intro-cont in Pike mode.  Case 6 changed.
2825         * cc-engine.el (c-looking-at-inexpr-block): Fixed bug where
2826         anything following "new Foo()" was considered an anonymous
2827         class body in Java mode.
2829 1999-12-12  Barry A. Warsaw  <bug-cc-mode@gnu.org>
2831         * cc-cmds.el (c-comment-line-break-function): When breaking in
2832         a string, don't insert a new line.
2834 1999-12-12  Barry A. Warsaw  <bug-cc-mode@gnu.org>
2836         * cc-engine.el (c-at-toplevel-p): New interface function which
2837         returns information useful to add-on authors.  It tells you
2838         whether you're at a toplevel statement or not.
2840 1999-12-12  Barry A. Warsaw  <bug-cc-mode@gnu.org>
2842         * cc-cmds.el (c-comment-line-break-function): It is possible
2843         that forward-line does not land us at the bol, say if we're on
2844         the last line in a file.  In that case, do a
2845         back-to-indentation instead of a forward-comment -1.
2847 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2849         * cc-engine.el (c-beginning-of-statement-1): Don't catch
2850         "default:" as normal label in case 4.
2852 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2854         * cc-engine.el (c-guess-basic-syntax): Use c-bitfield-key to
2855         recognize continued bitfield declarations.  Case 5D.1 changed.
2856         * cc-langs.el: New variable c-bitfield-key.
2857         * cc-mode.el: New variable c-bitfield-key.
2859 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2861         * cc-engine.el (c-inside-bracelist-p): Tighter test for Java
2862         anonymous array expressions (i.e. "new Foo[] {.. bracelist
2863         ..}").
2865 1999-12-12  Dave Love  <fx@gnu.org>
2867         * mail/footnote.el: Require cl when compiling.  Don't autoload
2868         keymap and minor-mode-alist stuff.  Don't set zmacs-region-stays.
2869         (footnote-insert-text-marker, Footnote-insert-pointer-marker):
2870         Avoid `acons'.
2871         (footnote-mode-line-string, Footnote-add-footnote): Remove
2872         autoload cookie.
2874 1999-12-12  Richard Sharman  <rsharman@pobox.com>
2876         * sh-script.el: Fix for when font-lock mode is active.
2877         (sh-font-lock-unfontify-region-function): New function.
2879 1999-12-12  Eli Zaretskii  <eliz@is.elta.co.il>
2881         * menu-bar.el (menu-bar-edit-menu): Define the Spell submenu even
2882         if start-process is not bound, since Ispell now supports such
2883         platforms as well.
2885 1999-12-12  Gerd Moellmann  <gerd@gnu.org>
2887         * mail/rmailsum.el (rmail-summary-mode-map): Bind RET to
2888         rmail-summary-goto-msg.
2890         * files.el (after-find-file): Fix previous change.
2892 1999-12-11  Dave Love  <fx@gnu.org>
2894         * help.el (where-is): Use `commandp' as predicate for
2895         `completing-read'
2897 1999-12-10  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
2899         * cus-edit.el (custom-save-delete): Delete all occurrences,
2900         leave point where the first occurrence was.
2901         (custom-save-faces): Insert a newline at the end of the comment.
2902         Avoid a double newline there.
2903         If final closeparen is at bol, put a space before it.
2904         (custom-save-variables): Likewise.
2905         (custom-file): Doc fix.
2907 1999-12-10  Gerd Moellmann  <gerd@gnu.org>
2909         * dos-w32.el (file-name-buffer-file-type-alist): Add `$' at end of
2910         regexp matching image and audio files.
2912 1999-12-09  Dave Love  <fx@gnu.org>
2914         * mail/footnote.el: New file.
2916 1999-12-09  Gerd Moellmann  <gerd@gnu.org>
2918         * files.el (after-find-file): Use auto-save-visited-file-name if
2919         set.
2921         * mail/feedmail.el (feedmail-find-eoh): Take
2922         feedmail-queue-alternative-mail-header-separator into account.
2924 1999-12-09  Stefan Monnier  <monnier@cs.yale.edu>
2926         * smerge-mode.el: New file.
2928         * font-lock.el (font-lock-multiline): New variable.
2929         (font-lock-add-keywords): Rename `major-mode' into `mode'.
2930         (font-lock-remove-keywords): Added a dummy `mode' argument for
2931         potential future support.
2932         (font-lock-fontify-anchored-keywords,
2933         (font-lock-fontify-keywords-region): Only handle multiline strings
2934         if necessary (avoids a pathological behavior in (f.ex) diff-mode).
2936 1999-12-08  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
2938         * bookmark.el (bookmark-bmenu-mode-map): Bind RET like f.
2940         * dired-aux.el (dired-insert-subdir): Add autoload cookie.
2942 1999-12-07  Dave Love  <fx@gnu.org>
2944         * help.el (view-emacs-problems): New command, bound to C-h P.
2946         * menu-bar.el (menu-bar-manuals-menu): Add view-emacs-problems.
2948 1999-12-07  Stefan Monnier  <monnier@cs.yale.edu>
2950         * diff-mode.el (diff-mode-shared-map): Fset'd and doc change.
2951         (diff-minor-mode, diff-minor-mode-prefix, diff-minor-mode-map):
2952         New code to support the minor mode version.
2953         (diff-recenter): New function.
2954         (diff-next-hunk, diff-next-file): Use it.
2955         (diff-remembered-files-alist): New var.
2956         (diff-merge-strings): New function.
2957         (diff-find-file-name): Make it smarter and use the user's input more.
2958         (diff-mode): Cosmetic changes.
2960         * files.el (save-some-buffers): Turn EXITING into the more general
2961         PRED argument to allow specifying a subset of buffers.
2963         * simple.el (kill-region): Use the new `delete-and-extract-region'
2964         rather than the undo log (which is incorrect with *-change-functions).
2966         * font-lock.el (font-lock-default-fontify-region): Fix subtle
2967         off-by-one problem that could force re-fontifying the whole buffer.
2968         (font-lock-remove-keywords): New function.
2969         (font-lock-add-keywords): Use the new function to ensure idempotence.
2971 1999-12-06  Michael Kifer  <kifer@cs.sunysb.edu>
2973         * viper-cmd.el (viper-minibuffer-standard-hook,
2974         viper-minibuffer-real-start): Mew functions.
2975         (viper-read-string-with-history,viper-file-add-suffix,
2976         viper-trim-replace-chars-to-delete-if-necessary): Adapt to the
2977         change in the status of the minibuffer prompt.
2979 1999-12-06  Gerd Moellmann  <gerd@gnu.org>
2981         * comint.el (comint-redirect-results-list)
2982         (comint-redirect-results-list-from-process): Remove interactive
2983         spec.
2985 1999-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
2987         * info.el (info-node, info-menu-5, info-xref): Define colors for
2988         Info faces if the display supports them.
2990 1999-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
2992         Changes for automatic remapping of X colors on terminal frames:
2994         * term/pc-win.el (msdos-setup-initial-frame): New function, run by
2995         term-setup-hook.  Call msdos-remember-default-colors and
2996         msdos-handle-reverse-video.
2997         (msdos-face-setup): Parts of code moved to
2998         msdos-setup-initial-frame.
2999         (msdos-handle-reverse-video): New function, modeled after
3000         x-handle-reverse-video.
3001         (make-msdos-frame): Don't use initial-frame-alist and
3002         default-frame-alist.  Call msdos-handle-reverse-video.
3003         (msdos-color-aliases): Remove.
3004         (msdos-color-translate, msdos-approximate-color): Remove.
3005         (msdos-color-values): Use 16-bit RGB values.  RGB values updated
3006         for better approximation of X colors.
3007         (msdos-face-setup): Call tty-color-clear.  Remove code that sets
3008         up tty-color-alist (it is now on startup.el).
3009         (x-display-color-p, x-color-defined-p, x-color-values,
3010         x-defined-colors, face-color-supported-p, face-color-gray-p):
3011         Remove.
3013         * facemenu.el (facemenu-read-color, list-colors-display): Use
3014         defined-colors for all frame types.
3015         (facemenu-color-equal): Use color-values for all frame types.
3017         * faces.el (read-face-attribute): For :foreground and :background
3018         attributes and frames on character terminals, translate the color
3019         to the closest supported one before looking it up in the list of
3020         valid values.
3021         (face-valid-attribute-values): Call defined-colors for all types
3022         of frames.
3023         (defined-colors, color-defined-p, color-values, display-color-p):
3024         New finctions.
3025         (x-defined-colors, x-color-defined-p, x-color-values,
3026         x-display-color-p): Aliases for the above.
3028         * startup.el (command-line): Register terminal colors for frame
3029         types other than x and w32, but only if the terminal supports
3030         colors.  Call tty-color-define instead of face-register-tty-color.
3032         * term/x-win.el (xw-defined-colors): Renamed from
3033         x-defined-colors.
3034         * term/w32-win.el (xw-defined-colors): Likewise.
3036         * term/tty-colors.el: New file.
3037         * loadup.el: Load term/tty-colors.
3039 1999-12-06  Dave Love  <fx@gnu.org>
3041         * ffap.el: Autoload the ffap alias directly.
3043 1999-12-06  Inge Frick  <inge@nada.kth.se>
3045         * dired-aux.el (dired-do-shell-command): Changed documentation.
3046         (dired-shell-stuff-it): A `?' in COMMAND has now the same
3047         meaning as `*'.
3049 1999-12-06  Gerd Moellmann  <gerd@gnu.org>
3051         * simple.el (insert-buffer): Doc fix.
3053         * apropos.el (apropos-mode): Add autoload cookie.
3055 1999-12-06  Sam Steingold  <sds@goems.com>
3057         * progmodes/etags.el (etags-tags-completion-table): Modified the
3058         regexp to allow for the CL symbols starting with `+*'.
3059         (tags-completion-table): Doc fix (it's an obarray, not an alist).
3060         (tags-completion-table, tags-recognize-empty-tags-table): Remove
3061         `function' quoting lambda.
3062         (tags-with-face): New macro.
3063         (list-tags, tags-apropos): Use it.
3064         (tags-apropos-additional-actions): New user option.
3065         (etags-tags-apropos-additional): Use it.
3066         (tags-apropos): Call etags-tags-apropos-additional.
3067         (tags-apropos-verbose): New user option.
3068         (etags-tags-apropos): Use it.
3069         (visit-tags-table-buffer, next-file): Use `unless'.
3070         (recognize-empty-tags-table): Renamed to
3071         tags-recognize-empty-tags-table.
3072         (complete-tag): Call tags-complete-tag bypassing try-completion.
3074 1999-12-06  Kenichi Handa  <handa@etl.go.jp>
3076         * international/mule.el (set-buffer-file-coding-system): Docstring
3077         modified.
3079 1999-12-05  Dirk Herrmann  <D.Herrmann@tu-bs.de>
3081         * textmodes/bibtex.el (bibtex-hs-forward-sexp): Added to support
3082         using the hideshow package.
3083         (hs-special-modes-alist): Added entry for bibtex to allow the use
3084         of the hideshow package.
3085         (bibtex-hide-entry-bodies): Deleted as hiding of entry bodies is
3086         not longer provided by bibtex.el directly.  Instead the hideshow
3087         package should be used.
3088         (bibtex-mode-map, bibtex-edit-menu, bibtex-mode): Delete
3089         references to bibtex-hide-entry-bodies.
3091 1999-12-05  Dirk Herrmann  <D.Herrmann@tu-bs.de>
3093         * textmodes/bibtex.el: Copyright notice is up to date.  Moved
3094         maintainer information closer to the beginning of the bibtex.el
3095         file.
3096         (bibtex-maintainer-salutation): New constant.
3097         (bibtex-version): New constant.
3098         (bibtex-submit-bug-report): Use bibtex-version and
3099         bibtex-maintainer-salutation.
3100         (bibtex-entry-field-alist): Made booktitle field optional for
3101         @inproceedings entries when crossreferenced.
3102         (bibtex-entry-field-alist): Added booktitle field to proceedings
3103         entry type (for cross referencing). Thanks to Wagner Toledo Correa
3104         for the suggestion.
3105         (bibtex-string-file-path): Fixed typo.
3107 1999-12-05  Carsten Dominik  <dominik@strw.leidenuniv.nl>
3109         * textmodes/bibtex.el (bibtex-mode-map): Reserved the key `C-c &'
3110         for reftex.el.
3111         (bibtex-edit-menu): Added `reftex-view-crossref-from-bibtex'
3112         to menu.
3114 1999-12-04  Dave Love  <fx@gnu.org>
3116         * delsel.el: Revert previous change -- region is significant to
3117         skeleton.
3119 1999-12-04  Michael Kifer  <kifer@cs.sunysb.edu>
3121         * viper-cmd.el (viper-change-state): Use
3122         viper-ESC-moves-cursor-back to decide whether to move the cursor
3123         back.
3125 1999-12-03  Kenichi Handa  <handa@mule.m17n.org>
3127         * international/mule-util.el (truncate-string-to-width): Docsting
3128         fixed.
3130 1999-12-02  Stefan Monnier  <monnier@cs.yale.edu>
3132         * emacs-lisp/lisp-mnt.el (lm-header-multiline): Fix spurious
3133         use of `cond'.
3134         (lm-with-file): Move all the find-file...kill-buffer stuff into
3135         this macro.  Make it use `find-file-noselect' and make it kill
3136         the buffer only if it wasn't already displayed somewhere.
3137         (lm-summary, lm-authors, lm-maintainer, lm-creation-date)
3138         (lm-last-modified-date, lm-version, lm-keywords, lm-adapted-by)
3139         (lm-commentary, lm-verify, lm-synopsis): Use lm-with-file.
3140         (lm-commentary): Fix to handle the case when the change log is
3141         at the end of the file.
3143 1999-12-02  Kenichi Handa  <handa@etl.go.jp>
3145         * international/mule.el (charsetp): Fix typo in docstring.
3147         * international/mule-diag.el (list-coding-categories): Fix typo;
3148         automatic -> autoload.
3150 1999-12-02  Gerd Moellmann  <gerd@gnu.org>
3152         * vc.el (vc-update-change-log): Look for rcs2log under
3153         exec-directory.
3155         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Change
3156         outline-regexp, add outline-level.
3157         (lisp-outline-level): New.
3159         * calendar/appt.el (appt-convert-time): Handle "12:MMam",
3160         remove extraneous string-match.
3162         * finder.el (finder-commentary): Activate Finder mode.
3164 1999-12-01  Anders Lindgren  <andersl@andersl.com>
3166         * autorevert.el (auto-revert-buffers): Auto-revert mode was turned
3167         off when reverting buffers that contained mode specifiers.
3168         `revert-buffer' is now called with non-nil PRESERVE-MODES
3169         argument.
3171 1999-12-01  Dave Love  <fx@gnu.org>
3173         * delsel.el: Grok skeleton-pair-insert-maybe.
3175 1999-11-30  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3177         * progmodes/cperl-mode.el (cperl-under-as-char):
3178         Use nil as default.
3180 1999-11-30  Gerd Moellmann  <gerd@gnu.org>
3182         * speedbar.el (toplevel): Remove compatibility code for Emacs
3183         versions without custom.el.
3185 1999-11-30  Dave Love  <fx@gnu.org>
3187         * progmodes/fortran.el (fortran-strip-sequence-nos): New command.
3189         * autoinsert.el: Minor doc fixes.
3190         (auto-insert): Return nil.
3192         * faces.el (set-face-documentation): Purecopy STRING.
3194 1999-11-29  Dave Love  <fx@gnu.org>
3196         * derived.el: Doc fixes, remove old backquote syntax.
3198         * cus-edit.el (custom-save-variables, custom-save-faces): Write a
3199         comment warning about editing.
3201         * help.el (help-mode-hook): Define.
3203 1999-11-29  Gerd Moellmann  <gerd@gnu.org>
3205         * emacs-lisp/edebug.el (edebug-make-enter-wrapper): Correct
3206         invalid translation of old-style backquote syntax to new syntax.
3208 1999-11-28  Eli Zaretskii  <eliz@is.elta.co.il>
3210         * Makefile (DONTCOMPILE): Add term/internal.el.
3212 1999-11-26  Dave Love  <fx@gnu.org>
3214         * comint.el: Fix last change.
3216         * emacs-lisp/advice.el: Fix last change.
3218 1999-11-26  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3220         * cus-edit.el (Custom-reset-standard): Doc fix.
3221         (custom-variable-reset-standard): Doc fix.
3222         (custom-face-reset-standard): Doc fix.
3223         (custom-face-menu): "Reset to Standard" => "Erase Customization".
3224         (custom-variable-menu): Likewise.
3225         (custom-reset-menu): Likewise.
3226         (custom-buffer-create-internal): Likewise.
3228 1999-11-26  Dave Love  <fx@gnu.org>
3230         * progmodes/make-mode.el (makefile-mode-hook): Customize.
3232         * font-lock.el: Doc fixes.
3234         * menu-bar.el (menu-bar-mode): Customize.
3236         * cus-start.el: Add use-dialog-box.
3238         * add-log.el (change-log-mode-hook): Customize.
3239         (add-log-current-defun): Use
3240         fortran-{beginning,end}-of-subprogram.
3242 1999-11-26  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3244         * emacs-lisp/advice.el: Many doc fixes.
3246         * comint.el (comint-preoutput-filter-functions): Doc fix.
3248 1999-11-26  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3250         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
3251         Improve messages for capitalization of arg names,
3252         for flag variables, for t and nil, for imperatives.
3253         Call them imperatives rather than infinitives sans "to".
3254         (checkdoc-common-verbs-wrong-voice): Add "moves".
3255         (checkdoc-message-text-engine): Improve messages for y-or-n-p.
3257         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
3258         Don't convert comments from 3-semicolon to 2-semicolon.
3259         That is a matter of style.
3260         (checkdoc-triple-semi-comment-check-flag): Variable deleted.
3261         (checkdoc-comments): Don't bind that variable.
3263 1999-11-26  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3265         * files.el (write-file-hooks): Doc fix.
3267 1999-11-26  Gerd Moellmann  <gerd@gnu.org>
3269         * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='.
3271 1999-11-25  Dave Love  <fx@gnu.org>
3273         * hippie-exp.el: Require comint when compiling.
3274         (hippie-expand): Add :links.
3275         (hippie-expand-try-functions-list): Customize.
3277 1999-11-24  Michael Kifer  <kifer@cs.sunysb.edu>
3279         * viper*el: Replaced old-style backquotes.
3281         * ediff*el: Replaced old-style backquotes.
3283         * ediff-merge
3284         (ediff-looks-like-combined-merge,ediff-get-combined-region):
3285         Changed to support the new format for ediff-combination-pattern.
3287         * ediff-diff (ediff-set-fine-overlays-in-one-buffer):
3288         Changed to support the new format for ediff-combination-pattern.
3290 1999-11-24  Dave Love  <fx@gnu.org>
3292         * custom.el (custom-declare-group): Purecopy DOC.
3293         (custom-handle-keyword): Purecopy VALUE.
3294         (custom-add-link): Purecopy WIDGET.
3295         (custom-add-version): Purecopy VERSION.
3296         (custom-add-load): Purecopy LOAD.
3298         * cus-face.el (custom-declare-face): Purecopy DOC.
3300         * info.el:
3301         (Info-build-node-completions, Info-search, Info-follow-reference)
3302         (Info-complete-menu-item, Info-menu, Info-index, Info-get-token)
3303         (Info-find-emacs-command-nodes): Avoid properties on matched text
3304         which may appear in minibuffer.
3306 1999-11-24  Gerd Moellmann  <gerd@gnu.org>
3308         * locate.el (locate-with-filter): Doc fix.
3310 1999-11-24  Alex Schroeder  <alex@gnu.org>
3312         * sql.el (sql-find-sqli-buffer): New function.
3313         (sql-set-sqli-buffer-generally): New function.
3314         (sql-set-sqli-buffer): Better checking of new-buffer.
3315         (sql-copy-column): Add comma after INTO clause, too.
3317 1999-11-24  Alex Schroeder  <alex@gnu.org>
3319         * sql.el (sql-imenu-generic-expression): New, used to set
3320         imenu-generic-expression.
3322         * sql.el (sql-mode): Use ?_ and ?. instead of 95 and 46 when
3323         setting font-lock-defaults' SYNTAX-ALIST.  Set
3324         imenu-generic-expression, imenu-case-fold-search, and
3325         imenu-syntax-alist.
3327         * sql.el (sql-interactive-mode): Use ?_ and ?. instead of 95
3328         and 46 when setting font-lock-defaults' SYNTAX-ALIST.
3330 1999-11-23  Andrew Innes  <andrewi@gnu.org>
3332         * w32-win.el (w32-drag-n-drop): Load files in current window, if
3333         drop coords aren't over a specific window.
3335 1999-11-23  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
3337         * ps-print.el: Define mule funs without checking if mule package is
3338         loaded.
3339         (ps-print-version): New version number (5.0.1).
3340         (ps-header-dirpart): Now uses abbreviate-file-name.
3342 1999-11-23  Dave Love  <fx@gnu.org>
3344         * progmodes/fortran.el (fortran-comment-line-start): Renamed from
3345         comment-line-start.
3346         (fortran-comment-line-start-skip): Renamed from
3347         comment-line-start-skip.
3348         (fortran-mode-map): Use renamed functions.  Add manual and custom
3349         entries to menu.
3350         (fortran-mode-hook): Customize.
3351         (fortran-comment-indent-function): Renamed from
3352         fortran-comment-hook.
3353         (delete-horizontal-regexp): Function deleted.
3354         (fortran-electric-line-number): Simplified.
3355         (fortran-beginning-of-subprogram): Renamed from
3356         beginning-of-fortran-subprogram.
3357         (fortran-end-of-subprogram): Renamed from
3358         end-of-fortran-subprogram.
3359         (fortran-mark-subprogram): Renamed from mark-fortran-subprogram.
3360         (fortran-previous-statement, fortran-next-statement): Simplified.
3361         (fortran-blink-match): New function.
3362         (fortran-blink-matching-if, fortran-blink-matching-do): Use it.
3363         (fortran-indent-to-column): Don't use delete-horizontal-regexp.
3364         (fortran-find-comment-start-skip, fortran-is-in-string-p): Use
3365         line-end-position.
3366         (fortran-fill): No longer interactive.  Simplified.
3367         (fortran-break-line): Simplified.
3368         (fortran-analyze-file-format): Use char-after, not looking-at.
3370         * emacs-lisp/find-func.el (find-function-regexp): Use
3371         `define-minor-mode' after easy-menu change.
3373 1999-11-23  Gerd Moellmann  <gerd@gnu.org>
3375         * comint.el: Add redirection.from active comint buffers into
3376         another buffer.  Written by Peter Breton.
3378 1999-11-23  Stefan Monnier  <monnier@cs.yale.edu>
3380         * emacs-lisp/autoload.el (make-autoload): Recognize the new
3381         `define-minor-mode'.
3382         (define-minor-mode): Specify `doc-string-elt'.
3384         * emacs-lisp/easy-mmode.el: Changed maintainer.
3385         (easy-mmode-define-toggle): New BODY arg; Never append `-mode';
3386         Use defcustom for the hooks; Improve the auto-generated docstrings.
3387         (easy-mmode-define-minor-mode): Renamed `define-minor-mode'.
3388         (define-minor-mode): Add BODY arg; Only declare the keymap if
3389         provided; Improve the auto-generated docstrings.
3391 1999-11-22  Gerd Moellmann  <gerd@gnu.org>
3393         * textmodes/text-mode.el (text-mode): Construct paragraph-start so
3394         that the leading `^' is at the start.  This is necessary because
3395         paragraphs.el tries to remove anchors, but can find them only if
3396         they are the first character.
3398         * progmodes/antlr-mode.el: New file.
3400         * calendar/calendar.el: Fix autoload for
3401         calendar-absolute-from-astro.  Add autoload for
3402         calendar-print-astro-day-number.
3404 1999-11-21  Anders Lindgren  <andersl@andersl.com>
3406         * follow.el: Use modern backquote syntax.  Minor comment update.
3408 1999-11-21  Gerd Moellmann  <gerd@gnu.org>
3410         * simple.el (with-syntax-table): Don't switch buffers.
3412         * emacs-lisp/edebug.el, emacs-lisp/cust-print.el,
3413         progmodes/hideif.el: Use new backquote syntax.
3415 1999-11-21  Ken Manheimer  <klm@python.org>
3417         * icomplete.el (icomplete-completions): Use an explicit variable
3418         `icomplete-prospects-length', obviating the need to use an
3419         apparently faulty throw/catch arrangement.
3421 1999-11-21  Eli Zaretskii  <eliz@is.elta.co.il>
3423         * term/internal.el (IT-display-table-setup): Don't overstep
3424         character code 255.
3426 1999-11-20  Kenichi Handa  <handa@mule.m17n.org>
3428         * ps-mule.el (ps-mule-font-info-database-bdf): Default BDF font
3429         for the charset chinese-sisheng is 7bit encoding, not 8bit.
3431 1999-11-19  Stefan Monnier  <monnier@cs.yale.edu>
3433         * scroll-bar.el (scroll-bar-toolkit-scroll): Add handling of the
3434         `ratio' event for Xaw and Xaw3d(without arrows) scrollbars.
3436         * files.el (auto-mode-alist): Add patterns for diff-mode.
3438         * complete.el (PC-do-complete-and-exit): Use minibuffer-prompt-end
3439         to detect an empty prompt.
3441 1999-11-18  Dave Love  <fx@gnu.org>
3443         * simple.el (input-mode-8-bit): Fix the customization.
3445 1999-11-18  Gerd Moellmann  <gerd@gnu.org>
3447         * international/iso-acc.el (iso-languages): Add more
3448         characters for Portuguese.
3450         * speedbar.el: Clean up comment at the start of the file.
3451         Remove RCS id.
3453         * progmodes/compile.el (compilation-parse-errors): Use
3454         compilation-buffer-p instead of testing major-mode.
3456 1999-11-18  Dave Pearson  <davep@hagbard.demon.co.uk>
3458         * quickurl.el Added defcustom of quickurl-completion-ignore-case.
3459         (quickurl-ask): completion-ignore-case is set to the value of
3460         quickurl-completion-ignore-case for the duration of the call to
3461         completing-read.
3463 1999-11-18  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3465         * mail/rmailedit.el (rmail-cease-edit): Run rmail-mode-hook.
3467 1999-11-18  Kenichi Handa  <handa@etl.go.jp>
3469         * ps-vars.el: Renamed from ps-print-def.el.  Provide ps-vars
3470         instead of ps-print-def.
3472         * ps-print.el: Require ps-vars instead of ps-print-def.
3474         * ps-mule.el: Require ps-vars instead of ps-print-def.
3476 1999-11-17  Gerd Moellmann  <gerd@gnu.org>
3478         * simple.el (with-syntax-table): Save buffer explicitly instead of
3479         using save-excursion.
3481 1999-11-16  Gerd Moellmann  <gerd@gnu.org>
3483         * mail/supercite.el: New maintainer.
3485 1999-11-16  Reto Zimmermann  <reto@synopsys.com>
3487         * progmodes/vhdl-mode.el: Use new backquote syntax.
3489 1999-11-16  Gerd Moellmann  <gerd@gnu.org>
3491         * simple.el (with-syntax-table): New.
3493 1999-11-15  Sam Steingold  <sds@ksp.com>
3495         * dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
3497 1999-02-22  Sam Steingold  <sds@goems.com>
3499         * goto-addr.el (goto-address-at-mouse,
3500         goto-address-find-address-at-point): Use compose-mail.
3501         (goto-address-mail-method): Removed variable.
3502         (goto-address-send-using-mh-e, goto-address-send-using-mhe,
3503         goto-address-send-using-mail): Removed functions.
3505 1998-11-03  Sam Steingold  <sds@goems.com>
3507         * simple.el (backward-delete-char-untabify):
3508         backward-delete-char-untabify-method can be `all' now - to delete
3509         hungrily including newlines.
3511 1999-11-15  Sam Steingold  <sds@ksp.com>
3513         * mail/rnews.el, mail/mh-utils.el: Use the new backquote syntax.
3515 1999-11-15  Dave Love  <fx@gnu.org>
3517         * cus-edit.el (customize-face, customize-face-other-window):
3518         Require match from completing-read.
3519         (custom-buffer-done-function): Default to custom-bury-buffer, not
3520         bury-buffer.
3522 1999-11-15  Gerd Moellmann  <gerd@gnu.org>
3524         * mail/rmail.el, iswitchb.el, hippie-exp.el,
3525         progmodes/cperl-mode.el: Use new backquote syntax.
3527 1998-09-14  Michael Ernst  <mernst@alum.mit.edu>
3529         * uniquify.el: Use new backquote syntax.
3531 1999-11-14  Markus Rost  <rost@ias.edu>
3533         * ispell.el (ispell-dictionary-alist): Fix type by adding koi8-r
3534         as in ispell-local-dictionary-alist.
3536 1999-11-14  Alex Schroeder  <alex@gnu.org>
3538         * ansi-color.el (ansi-color-apply): Updated regexps to include
3539         highlighted face.
3541 1999-01-14  Johan Vromans  <jvromans@squirrel.nl>
3543         * forms.el (forms--make-format-elt-using-text-properties):
3544         Treat `intangible' differently.
3546         * forms.el: Use new backquote syntax.
3548 1999-11-13  Gerd Moellmann  <gerd@gnu.org>
3550         * textmodes/scribe.el (scribe-mode): Doc-fix.
3552 1999-11-13  Peter Breton  <pbreton@ne.mediaone.net>
3554         * net-utils.el (run-network-program, net-utils-run-program): Use
3555         the new backquote syntax.
3556         (smbclient-program, smbclient-program-options)
3557         (smbclient-prompt-regexp, smbclient-font-lock-keywords): New
3558         variables
3559         (smbclient, smbclient-list-shares): New functions
3561 1999-11-12  Sam Steingold  <sds@ksp.com>
3563         * emulation/viper-init.el (viper-deflocalvar, viper-loop)
3564         (viper-buffer-live-p, viper-kbd-buf-alist, viper-kbd-buf-pair)
3565         (viper-kbd-buf-definition, viper-kbd-mode-alist)
3566         (viper-kbd-mode-pair, viper-kbd-mode-definition)
3567         (viper-kbd-global-pair, viper-kbd-global-definition):
3568         Use the new backquote syntax.
3570         * emulation/viper-cmd.el (viper-test-com-defun)
3571         (viper-prefix-arg-value, viper-prefix-arg-com):
3572         Use the new backquote syntax.
3574         * emacs-lisp/debug.el (debugger-env-macro):
3575         Use the new backquote syntax.
3577         * emacs-lisp/easymenu.el (easy-menu-make-symbol):
3578         Use the new backquote syntax.
3580         * calendar/calendar.el (calendar-remove-frame-by-deleting):
3581         New user variable.
3582         (calendar-hide-window): Use it.
3583         (increment-calendar-month, calendar-for-loop, calendar-sum):
3584         Use the new backquote syntax.
3586 1999-11-12  Andrew Innes  <andrewi@gnu.org>
3588         * select.el (x-set-selection): Call buffer-substring, not
3589         substring.  Also fix docstring
3591 1999-11-12  Peter Kleiweg  <kleiweg@let.rug.nl>
3593         * progmodes/ps-mode.el (ps-mode-submit-bug-report): Added list
3594         of customizable variables to bug report message. Added
3595         system-type to package name in bug report.
3597 1999-11-12  Gerd Moellmann  <gerd@gnu.org>
3599         * buff-menu.el (list-buffers-noselect): Use abbreviate-file-name
3600         to display file names.
3602 1999-11-11  Gerd Moellmann  <gerd@gnu.org>
3604         * mwheel.el: Fix copyright notice, don't require 'cl at run time.
3606         * isearch.el: Add lazy-highlighting feature.
3608 1999-11-10  Peter Kleiweg  <kleiweg@let.rug.nl>
3610         * progmodes/ps-mode.el (ps-mode-maintainer-address): New
3611         constant.
3612         (ps-mode-submit-bug-report): New function. Entry added to menu.
3614 1999-11-10  William M. Perry  <wmperry@aventail.com>
3616         * mwheel.el: New file to support the new style wheeled mice.
3618 1999-11-10  Gerd Moellmann  <gerd@gnu.org>
3620         * startup.el (initial-scratch-message): Add ";;" to the front of
3621         lines in the message.
3623         * files.el (file-local-copy): Remove optional BUFFER argument
3624         because that's not used by anything.
3626         * mail/mh-comp.el (mh-smail-batch): If TO is nil, use "" as
3627         to-address.
3629 1999-11-08  Markus Rost  <rost@ias.edu>
3631         * wid-edit.el (widget-button-click): Wrap with save-excursion
3632         to restore track-mouse in the correct buffer.
3634 1999-11-08  Gerd Moellmann  <gerd@gnu.org>
3636         * mail/mh-e.el: Changed maintainer to billcurtis@hotmail.com.
3638 1999-11-08  Peter Kleiweg  <kleiweg@let.rug.nl>
3640         * progmodes/ps-mode.el (ps-mode-print-function): Changed default
3641         lpr-command to "lp" for some system-types. (copied from lpr.el
3642         Emacs version 20.2.1).
3644 1999-11-04  Markus Rost  <rost@ias.edu>
3646         * simple.el (comment-region): Strip off white space at end of
3647         comment-start.
3649 1999-11-04  Gerd Moellmann  <gerd@gnu.org>
3651         * faces.el (secondary-selection): Fix wrong color name.
3653 1999-11-04  John Tobey  <jtobey@epsilondev.com>
3655         * gud.el (gud-perldb-massage-args): Handle the case "perl -e 0",
3656         the default when invoking perldb in a non-Perl buffer, and other
3657         cases involving -e or --.
3659 1999-11-04  Gerd Moellmann  <gerd@gnu.org>
3661         * simple.el (previous-matching-history-element)
3662         (next-history-element): Use delete-field instead of erase-field.
3664         * isearch.el (isearch-ring-advance-edit, isearch-complete-edit):
3665         Use delete-field instead of erase-field.
3667         * faces.el (secondary-selection): Change background to yellow.
3669         * complete.el (PC-do-completion): Use minibuffer-prompt-end to
3670         find the start of the text.  Use field-string to read the user
3671         input.
3673 1999-11-03  Gerd Moellmann  <gerd@gnu.org>
3675         * faces.el (make-face-bold, make-face-unbold, make-face-italic)
3676         (make-face-unitalic, make-face-bold-italic): Add NOERROR argument
3677         for compatibility with old face implementation.
3679         * isearch.el (isearch-complete-edit, isearch-ring-advance-edit):
3680         Use erase-field instead of erase-buffer.
3682         * frame.el (blink-cursor-mode, blink-cursor-end): Use
3683         internal-show-cursor with new interface.
3684         (blink-cursor-timer-function): New.
3685         (blink-cursor-start): Use blink-cursor-timer-function.
3687 1999-11-03  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
3689         * calendar.el (redraw-calendar): Move to nearest date before
3690         redrawing.
3692         * diary-lib.el (simple-diary-display): Reset modeline even if
3693         there are no diary entries since the diary buffer may be displayed.
3695 1999-11-03  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3697         * emacs-lisp/debug.el (debug): If noninteractive, display the
3698         backtrace using `message', then exit Emacs.
3699         (debugger-batch-max-lines): New variable.
3700         (debugger-setup-buffer): New subroutine, broken out of `debug'.
3701         Change the messages put at the start, to say that the debugger
3702         was entered.
3704 1999-11-02  Sam Steingold  <sds@ksp.com>
3706         * progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
3708 1999-11-01  John Tobey  <jtobey@epsilondev.com>
3710         * gud.el: (gud-perldb-massage-args): Massage correctly in the
3711         presence of perl switches other than "-e".
3713 1999-11-01  Markus Rost  <rost@ias.edu>
3715         * dired-x.el (dired-smart-shell-command): Use
3716         shell-command-history as in shell-command.
3718 1999-11-01  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3720         * userlock.el (ask-user-about-lock): Doc fix.
3722         * frame.el: Doc fixes.
3724 1999-11-01  Gerd Moellmann  <gerd@gnu.org>
3726         * frame.el (blink-cursor-mode): Call internal-show-cursor instead
3727         of show-cursor.
3728         (blink-cursor-start, blink-cursor-end): Ditto.
3730         * textmodes/tex-mode.el (tex-default-mode): Changed to latex-mode.
3732 1999-11-01  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3734         * window.el (walk-windows): If ALL-FRAMES is a frame,
3735         start on that frame.  Use save-selected-window.
3737 1999-11-01  Gerd Moellmann  <gerd@gnu.org>
3739         * simple.el (end-of-buffer): Use window-end to find the window end
3740         instead of vertical-motion because this handles variable-height
3741         lines correctly.
3743 1999-11-01  Michael Kifer  <kifer@cs.sunysb.edu>
3745         * ediff.el: Version change.
3747         * ediff-util.el (ediff-cleanup-mess): Fixed the case of dead windows.
3748         make sure you are in a good frame before deleting other
3749         windows.
3750         (ediff-file-checked-in-p): Don't consider CVS
3751         files checked in.
3752         (ediff-make-temp-file,ediff-make-empty-tmp-file):  Make sure you
3753         are writing to a newly created empty file.
3755         * ediff-mult.el (ediff-show-session-group-hook): New default.
3757         * ediff-vers.el (ediff-pcl-cvs-view-revision):
3758         First cd to the file directory. reportedly works
3759         better with remote files.
3761         * ediff-vers.el (ediff-pcl-cvs-internal, ediff-pcl-cvs-merge-internal):
3762         Use file-name-nondirectory when passing files to CVS.
3764         * ediff-diff.el (ediff-cmp-options): New variable.
3765         (ediff-same-file-contents): Use ediff-cmp-options.
3767         * ediff-ptch.el (ediff-prompt-for-patch-buffer,
3768         ediff-get-patch-buffer): Use current buffer if it appears to be a
3769         patch.
3771         * viper-keym.el: Fixed calls to viper-ex, change key C-c g to C-c
3772         C-g
3774         * viper-util.el (viper-nontrivial-find-file-function): Deleted.
3775         (viper-glob-unix-files, viper-glob-mswindows-files): New functions.
3776         (viper-save-cursor-color,viper-restore-cursor-color):
3777         Improved cursor color handling.
3778         (viper-get-saved-cursor-color-in-replace-mode,
3779         viper-get-saved-cursor-color-in-insert-mode): New functions for
3780         better cursor color handling.
3782         * viper-ex.el (ex-read,ex-edit):
3783         Fixes for correct interpretation of #,%.
3784         (viper-ex): Now works correctly when called from other functions.
3785         (viper-glob-function): New variable.
3786         (viper-ex): Save excursion before doing :global.
3788         * viper-mous.el (viper-counting-clicks-p): Bug fixes.
3790         * viper-cmd.el (viper-post-command-sentinel,
3791         viper-insert-state-post-command-sentinel,
3792         viper-insert-state-pre-command-sentinel): Takes better care of
3793          cursor colors.
3795         * viper.el: Version change.
3797 1999-10-31  Rajesh Vaidheeswarran  <rv@dsmit.com>
3799         * whitespace.el (whitespace-update-modeline): Bugfix to ensure
3800         that the modeline display was updated *only* when
3801         `whitespace-display-in-modeline' was set, not otherwise.
3803 1999-10-30  Gerd Moellmann  <gerd@gnu.org>
3805         * textmodes/sgml-mode.el (sgml-char-names): Change "half" to
3806         "frac12".
3808         * emacs-lisp/advice.el (ad-activate-on): Make it an alias for
3809         ad-activate.
3811 1999-10-30  Rajesh Vaidheeswarran  <rv@dsmit.com>
3813         * whitespace.el: Test for existence of `defcustom' and `defgroup'
3814         using fboundp instead of assuming that these are not present in
3815         particular flavors of emacs.
3816         (whitespace-version): Update to 2.8
3817         (whitespace-display-in-modeline): Add custom variable to control
3818         displaying the whitespace errors on the modeline based on
3819         suggestion from <klaus.berndl@sdm.de>
3820         (whitespace-buffer): Now returns `t' if unclean and `nil' if
3821         clean, to enable using as a hook function, as suggested by Puneet
3822         Goel <puneet@computer.org>
3823         (whitespace-buffer): Fix a subtle bug that cleaned up only if
3824         quiet was not set, even with whitespace-auto-cleanup set.
3825         (whitespace-mode-line): Now uses less modeline real estate and
3826         shows whitespaces as W:<x>!<y> where <x> is any type of whitespace
3827         which is present in the file, and <y> is any type of whitespace
3828         whose check has been suppressed by setting
3829         `whitespace-check-<whitespace-type>' to nil.
3830         (whitespace-unchecked-whitespaces): New function to return the
3831         list of whitespaces for whom checks have been suppressed.
3832         (whitespace-display-unchecked-whitespaces): Renamed to
3833         `whitespace-update-modeline' to reflect its functionality.
3835 1999-10-30  Gerd Moellmann  <gerd@gnu.org>
3837         * progmodes/compile.el (compilation-error-regexp-alist):
3838         Undo previous change.
3840 1999-10-28  Dave Love  <fx@gnu.org>
3842         * help.el (help-follow): Make arg optional again and really
3843         default to point.
3845 1999-10-28  Gerd Moellmann  <gerd@gnu.org>
3847         * paths.el (rmail-file-name): Make it an option.
3849         * progmodes/ada-mode.el, progmodes/ada-prj.el,
3850         progmodes/ada-stmt.el, progmodes/ada-xref.el: Doc-string and
3851         comment fixes.
3853         * progmodes/compile.el (compilation-error-regexp-alist): Recognize
3854         MIPS Pro 7.3 compiler error message syntax.
3856 1999-10-27  Dave Love  <fx@gnu.org>
3858         * progmodes/compile.el: Checkdoc-inspired fixes.
3860 1999-10-27  Gerd Moellmann  <gerd@gnu.org>
3862         * lpr.el (print-buffer): Doc-string fix.
3864 1999-10-27  Dave Love  <fx@gnu.org>
3866         * emacs-lisp/advice.el: Doc fixes.
3867         (ad-lemacs-p): Removed.
3868         (advice): Add :link to defgroup.
3870 1999-10-27  Kenichi Handa  <handa@etl.go.jp>
3872         * ange-ftp.el (ange-ftp-insert-file-contents): Don't change
3873         last-coding-system-used by the call of ange-ftp-set-ascii-mode.
3875 1999-10-24  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3877         * window.el (walk-windows): If ALL-FRAMES is a frame,
3878         start on that frame.  Use save-selected-window.
3880 1999-10-27  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3882         * emacs-lisp/advice.el (ad-activate-internal): Renamed from
3883         ad-activate.  All callers changed, including those in data.c.
3884         (ad-activate-internal-off): Renamed from ad-activate-off.
3885         All uses changed.
3886         (ad-activate): Renamed from ad-activate-on.  All uses changed.
3887         (ad-start-advice, ad-stop-advice, ad-recover-normality):
3888         Alter the definition of ad-activate-internal, not ad-activate.
3890 1999-10-26  Gerd Moellmann  <gerd@gnu.org>
3892         * startup.el (command-line-1): Add support for command line
3893         arguments `file' and `execute'.  Fix handling of `visit'.
3895 1999-10-26  Kenichi Handa  <handa@etl.go.jp>
3897         * international/mule-cmds.el (read-input-method-name): Handle the
3898         case that the arg DEFAULT is symbol.
3900         * international/mule-diag.el (mule-diag): Handle the case that
3901         default-input-method is symbol.
3903 1999-10-26  Gerd Moellmann  <gerd@gnu.org>
3905         * textmodes/tildify.el: New file.
3907 1999-10-25  Sam Steingold  <sds@ksp.com>
3909         * Makefile (compile-files): Fixed the "tr" strings.
3910         (EMACS): Set to ../src/emacs.
3912 1999-10-25  Gerd Moellmann  <gerd@gnu.org>
3914         * info.el (Info-build-node-completions): Add '("*") to the
3915         completion list.
3917 1999-10-25  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3919         * frame.el (auto-raise-mode): When enabling the mode,
3920         immediately raise the selected frame.
3922         * indent.el (indent-region): Doc fix.
3924         * comint.el (comint-output-filter): Make the Comint buffer current
3925         for the comint-preoutput-filter-functions.
3927         * mail/reporter.el: Doc fix.
3929 1999-10-24  Stephen Eglen  <stephen@gnu.org>
3931         * progmodes/octave-mod.el (octave-auto-indent): Remove :version so
3932         that Octave lisp files can also run under XEmacs 20.
3933         (require 'custom) added so that files can run under Emacs 19.34.
3935         * iswitchb.el (iswitchb-default-keybindings): No need to use
3936         read-kbd-macro in keybindings.
3938 1999-10-23  Dave Love  <fx@gnu.org>
3940         * elide-head.el: New file.
3942 1999-10-23  Gerd Moellmann  <gerd@gnu.org>
3944         * Makefile (compile-files, backup-compiled-files): New targets.
3945         (bootstrap, bootstrap-clean): Ditto.
3947 1999-10-22  Paul Eggert  <eggert@twinsun.com>
3949         * international/mule-cmds.c (locale-language-names):
3950         Use Latin-1 (not Latin-3) for Afrikaans, Galician.
3951         Use Latin-5 (not Cyrillic-ISO) for Byelorussian, Bulgarian,
3952         Macedonian, Russian, Ukrainian, Serbian (Cyrillic alphabet).
3953         Use Latin-8 for Welsh.
3954         Use Latin-1 for English if "en" is explicitly specified.
3955         Use Latin-1 for Scots Gaelic, Tagalog.
3956         Use Latin-1 (not Latin-4) for Greenlandic.
3957         Use Latin-1 (not Latin-2) for Albanian.
3958         (locale-preferred-coding-systems, locale-language-names):
3959         Remove generic ISO 8859 locales; locale-charset-language-names now
3960         does this.
3961         (locale-charset-language-names): New variable.
3962         (set-locale-environment): Use language name specified by
3963         locale-charset-language-names if its charsets disagree with the
3964         language name specified by locale-language-names.
3966 1999-10-22  Dave Love  <fx@gnu.org>
3968         * make-mode.el: Minor doc fixes.
3970         * latin-9.el: Avoid non-ASCII characters to prevent loadup failure.
3972 1999-10-21  Dave Love  <fx@gnu.org>
3974         * loadup.el: Add latin-8, latin-9.
3976 1999-10-20  Paul Eggert  <eggert@twinsun.com>
3978         * disp-table.el (standard-display-european): Remove undocumented
3979         arg AUTO; no longer used by startup.el.  Do not attempt to treat
3980         all non-English language environments as coding system names.
3981         Instead, use the downcased language environment name as a coding
3982         system name if it is one; otherwise, use latin-1.
3984 1999-10-20  Gerd Moellmann  <gerd@gnu.org>
3986         * dired.el (dired-move-to-filename-regexp): Fix long comment lines
3987         that were split so that part of the comment appeared as Lisp code.
3989 1999-10-20  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
3991         * ps-bdf.el: Doc fix.
3993         * ps-print-def.el: New file: common definitions for all parts of
3994         ps-print.
3995         (ps-multibyte-buffer): Moved from ps-mule.
3997         * ps-mule.el: File dependence fix.
3998         (ps-multibyte-buffer): Moved to ps-print-def.
4000         * ps-print.el: Doc fix, better customization.
4001         (ps-print-region-function, ps-number-of-columns, ps-spool-tumble)
4002         (ps-print-color-p, ps-printing-region-p, ps-n-up-database)
4003         (ps-end-file): Doc fix.
4004         (ps-setup, ps-begin-file): Fun fix.
4005         (postscript): New group.
4006         (ps-zebra-gray, ps-banner-page-when-duplexing): New vars.
4007         (ps-print-prologue-1): Adjust PostScript programming.
4008         (ps-print): Adjust group hierarchy.
4009         (ps-print-n-up, ps-print-zebra, ps-print-background,
4010         ps-print-printer)
4011         (ps-print-page): New subgroups.
4012         (ps-print-prologue-header, ps-printer-name, ps-lpr-command)
4013         (ps-lpr-switches, ps-page-dimensions-database, ps-paper-type)
4014         (ps-landscape-mode, ps-print-control-characters, ps-n-up-printing)
4015         (ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling, ps-zebra-stripes)
4016         (ps-zebra-stripe-height, ps-print-background-image)
4017         (ps-print-background-text, ps-spool-config): Adjust customization.
4018         (dos-ps-printer): Definition eliminated.
4020 1999-10-20  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
4022         * ps-mule.el: Doc fix, define functions properly if mule package is
4023         loaded or not.
4024         (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Define properly if
4025         mule package is loaded or not.
4027         * ps-print.el: Doc fix, n-up printing.
4028         (ps-print-version): New version number (5.0).
4029         (ps-page-dimensions-database): Added document media.
4030         (ps-n-up-printing, ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling)
4031         (ps-page-order, ps-printing-region-p): New vars.
4032         (ps-n-up-printing, ps-n-up-filling, ps-header-sheet, ps-end-job): New
4033         funs.
4034         (ps-page-dimensions-get-media, ps-n-up-landscape, ps-n-up-lines)
4035         (ps-n-up-columns, ps-n-up-missing, ps-n-up-xcolumn, ps-n-up-ycolumn)
4036         (ps-n-up-xline, ps-n-up-yline, ps-n-up-repeat, ps-n-up-end)
4037         (ps-n-up-xstart, ps-n-up-ystart): New macros.
4038         (ps-print-begin-sheet-hook): New hook.
4039         (ps-boundingbox-re, ps-n-up-database, ps-n-up-filling-database): New
4040         const.
4041         (ps-setup, ps-begin-file, ps-get-buffer-name, ps-begin-job)
4042         (ps-end-file, ps-dummy-page, ps-generate): Fix funs.
4043         (ps-print-prologue-1): Adjust PostScript programming for n-up printing.
4044         (ps-count-lines): Changed to defun.
4045         (ps-header-page): Changed to defsubst, fix fun.
4046         (ps-printing-region): Doc fix, adjust programming code.
4047         (ps-output-boolean, ps-background-pages, ps-background-text)
4048         (ps-background-image, ps-background, ps-get-boundingbox): Adjust
4049         programming code.
4051 1999-10-20  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
4053         * ps-print.el: Doc fix, duplex and setpagedevice configuration.
4054         (ps-print-version): New version number (4.2).
4055         (ps-spool-config, ps-spool-tumble): New vars.
4056         (ps-print-prologue-1): Changed to defconst, adjust PostScript
4057         programming, new PostScript procedure to handle errors.
4058         (ps-print-prologue-2): Changed to defconst.
4059         (ps-print-duplex-feature): New const: duplex and tumble setting.
4060         (ps-setup, ps-begin-file): Fix funs.
4061         (ps-boolean-capitalized): New fun.
4063 1999-10-19  Stefan Monnier  <monnier@cs.yale.edu>
4065         * Makefile (dontcompilefiles): Obsoleted.
4066         (DONTCOMPILE): Added emacs-lisp/cl-specs.el.
4067         (EL): Unused.
4068         (temacs): Removed (unused).
4069         (cus-load.el, finder-inf.el, loaddefs.el): New targets to build a dummy
4070         version of the file (necessary for the update to work properly).
4071         (autoloads): Force the use of `pwd`/loaddefs.el.
4072         (updates); Redefined in terms of other targets to reduce redundancy.
4073         (.el.elc): New default rule, just in case you want it.
4074         (compile): Use a single invocation of Emacs.
4075         (bootstrap-compile); Unneeded.
4076         (autoloads-with-other-emacs): Unneeded now that autoloads is fixed.
4078 1999-10-19  Dave Love  <fx@gnu.org>
4080         * emacs-lisp/eval-reg.el: Removed -- not now needed by edebug.
4082 1999-10-19  Sam Steingold  <sds@ksp.com>
4084         * map-ynp.el (map-y-or-n-p): Remove extraneous `not' to
4085         comply with the comment.
4087 1999-10-19  Gerd Moellmann  <gerd@gnu.org>
4089         * autorevert.el (auto-revert-mode): Make auto-revert-mode
4090         permanent-local.
4092 1999-10-19  Peter Kleiweg  <kleiweg@let.rug.nl>
4094         * progmodes/ps-mode.el (ps-mode-print-function): Fix default
4095         value: \"lpr\" changed to "lpr"
4096         (ps-mode-version): New constant
4097         (ps-mode-show-version): New function, added key in ps-mode-map
4098         (ps-run-messages): Removed
4099         (ps-run-font-lock-keywords-2): New defcustom variable replacing
4100         ps-run-messages. These keywords now include the value of
4101         ps-run-prompt, making its fontification customizable.
4102         (ps-run-init): Removed \\n from docstring, it is now added when
4103         the value is used
4104         (ps-run-font-lock-keywords-1): Added checking for initial ^ in
4105         ps-run-prompt
4106         (ps-mode): Added ps-run-font-lock-keywords-2 to list of
4107         customizable variables in doc-string (its equivalent
4108         ps-run-messages was missing in previous version of the doc-string)
4109         (ps-run-mode): Simplified assignment to font-lock-defaults, using
4110         symbols only
4112 1999-10-19  Alex Schroeder  <alex@gnu.org>
4114         * ansi-color.el: Complete rewrite.
4116 1999-10-19  Paul Eggert  <eggert@twinsun.com>
4118         Fix bootstrapping problems.
4119         Use the system locale to specify Emacs locale defaults.
4121         * international/mule-cmds.el (global-map):
4122         Do not use backquote, because that makes a bootstrapping
4123         problem if you need to recompile all Lisp files using interpreted code.
4124         * international/mule.el (charset-id, charset-bytes,
4125         charset-dimension, charset-chars, charset-width,
4126         charset-direction, charset-iso-final-char,
4127         charset-iso-graphic-plane, charset-reverse-charset,
4128         charset-short-name, charset-long-name, charset-description,
4129         charset-plist): Likewise.
4130         * subr.el (save-match-data): Likewise.
4132         * international/mule-cmds.el
4133         (set-display-table-and-terminal-coding-system): New function,
4134         containing code migrated out of set-language-environment.
4135         (set-language-environment, set-locale-environment): Use it.
4136         (locale-translation-file-name): Moved here from startup.el.
4137         (locale-language-names, locale-preferred-coding-systems):
4138         New vars.
4139         (locale-name-match, set-locale-environment): New functions.
4141         * language/japan-util.el (setup-japanese-environment-internal):
4142         Prefer japanese-iso-8bit if the system-type is usg-unix-v.
4144         * startup.el (iso-8859-n-locale-regexp): Remove.
4145         (locale-translation-file-name): Move to mule-cmds.el.
4146         (command-line): Move locale-stuff into set-locale-environment.
4148 1999-10-18  Dave Love  <fx@gnu.org>
4150         * abbrev.el (add-abbrev, inverse-add-abbrev)
4151         (expand-region-abbrevs): Remove properties from buffer text.
4153 1999-10-17  Gerd Moellmann  <gerd@gnu.org>
4155         * iswitchb.el (iswitchb-exhibit): Extract user-input only
4156         from the mini-buffer, without the prompt.
4158         * simple.el (minibuffer-prompt-end): Return the position
4159         after the prompt, not the position of that last character
4160         of the prompt.
4162 1999-10-17  Miles Bader  <miles@gnu.org>
4164         * simple.el: Doc fixes.
4166 1999-10-17  Miles Bader  <miles@gnu.org>
4168         * simple.el (previous-matching-history-element, next-history-element):
4169         Change to work correctly even if the point is in the prompt.
4170         (choose-completion-string): Likewise.
4171         (minibuffer-prompt-width): New function (compatibility with old subr).
4173         * textmodes/paragraphs.el (forward-sentence, forward-paragraph):
4174         When constraining the final position to the current field,
4175         don't use the ONLY-IN-LINE mode of constrain-to-field.
4177 1999-10-17  Miles Bader  <miles@gnu.org>
4179         * simple.el (line-move): Supply new ESCAPE-FROM-EDGE argument to
4180         constrain-to-field.
4181         * textmodes/paragraphs.el (forward-sentence): Likewise.
4183 1999-10-17  Miles Bader  <miles@gnu.org>
4185         * simple.el (line-move): Use constrain-to-field to avoid
4186         moving into a prompt.
4187         (previous-complete-history-element): Clarify doc string.
4188         (next-complete-history-element): Likewise.
4189         Use field-beginning instead of point-min.
4190         (next-matching-history-element): Use field-beginning and
4191         erase-field instead of point-min and erase-buffer.
4192         * textmodes/paragraphs.el
4193         (forward-paragraph, forward-sentence): Likewise.
4194         (backward-kill-paragraph, backward-kill-sentence): Remove code to
4195         constrain the kill to an field, as the movement commands now
4196         do this.
4198 1999-10-17  Miles Bader  <miles@gnu.org>
4200         * simple.el (previous-matching-history-element): Get the
4201         minibuffer input with field-string instead of buffer-string.
4202         (choose-completion-string): Likewise.
4203         (next-history-element): Likewise.
4204         Erase the minibuffer input with erase-field, not erase-buffer.
4205         Use field-beginning to find the beginning of the input.
4206         * textmodes/paragraphs.el (backward-kill-sentence):
4207         Remove minibuffer-prompt hack.
4208         Constrain to any input field.
4210 1999-10-17  Sam Steingold  <sds@ksp.com>
4212         * bindings.el (completion-ignored-extensions): Added ".sparcf"
4213         for CMUCL on sparc and ".ufsl" for LispWorks.
4214         (bound-and-true-p): Bugfix: free variable `v'.
4216 1999-10-16  Dave Love  <d.love@dl.ac.uk>
4218         * emacs-lisp/edebug.el (edebug-install-read-eval-functions)
4219         (edebug-uninstall-read-eval-functions): Use load-read-function,
4220         avoiding elisp-eval.
4222 1999-10-16  Sam Steingold  <sds@ksp.com>
4224         * emacs-lisp/cl-indent.el (common-lisp-indent-function): Use `eq'
4225         instead of `eql'.
4227 1999-10-14  Stefan Monnier  <monnier@cs.yale.edu>
4229         * ange-ftp.el (ange-ftp-make-tmp-name, ange-ftp-del-tmp-name):
4230         * browse-url.el (browse-url-of-buffer, browse-url-delete-temp-file),
4231         (browse-url-temp-file-list, browse-url-delete-temp-file-list):
4232         * ediff-util.el (ediff-make-temp-file):
4233         * ediff-vers.el (ediff-pcl-cvs-view-revision):
4234         * emerge.el (emerge-make-temp-file):
4235         * jka-compr.el (jka-compr-make-temp-name, jka-compr-delete-temp-file):
4236         * vc.el (vc-update-change-log):
4237         * mail/mailpost.el (post-mail-send-it):
4238         * mail/metamail.el (metamail-region):
4239         * progmodes/cmacexp.el (c-macro-expansion):
4240         * textmodes/makeinfo.el (makeinfo-region): Use make-temp-file.
4242 1999-10-15  Gerd Moellmann  <gerd@gnu.org>
4244         * smtpmail.el (smtpmail-via-smtp): Add support for
4245         automatically appending a domain to RCPT TO: addresses.
4247 1999-10-14  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4249         * dired.el (dired-insert-directory): Insert the amount of
4250         free space after the total size.
4251         (dired-free-space-program, dired-free-space-args): New variables.
4253 1999-10-14  Karl Heuer  <kwzh@gnu.org>
4255         * mail/rmail.el (rmail-pop-password-error): Add new pattern.
4257 1999-10-14  Dave Love  <fx@gnu.org>
4259         * international/characters.el:
4260         * international/fontset.el:
4261         * international/mule-conf.el: Add latin-iso8859-1[45].
4263         * language/european.el: Add Latin-8, Latin-9.  Modify some doc
4264         strings.
4266         * startup.el (iso-8859-n-locale-regexp): Modify for Latin-[89].
4267         (command-line): Detect Latin-[89] locales.
4269 1999-10-13  Stefan Monnier  <monnier@cs.yale.edu>
4271         * international/mule-cmds.el (select-safe-coding-system)
4272         (leim-list-header): Avoid the use of strings that start with backslash
4273         newline since lread.c:read1 has a hack to turn those strings into
4274         integer 0 during the loadup.el process.
4276         * diff-mode.el (diff-find-file-name): Use `Index:' preferentially.
4278 1999-10-13  Dave Love  <fx@gnu.org>
4280         * image.el (insert-image): Copy the image spec and add an
4281         intangible property.
4283 1999-10-13  Stefan Monnier  <monnier@cs.yale.edu>
4285         * help.el (help-xref-interned): Make it also work on variable-only
4286         and function-only symbols.
4287         (help-make-xrefs): Take advantage of the new `help-xref-interned'.
4288         (help-follow): If the point under mouse is not highlighted, try
4289         `help-xref-interned' on the pointed-to symbol anyway.
4291         * info.el (Info-on-current-buffer): New entry point.
4292         (Info-find-node): Split into two for Info-on-current-buffer to
4293         hook into it.
4294         (Info-current-file, Info-set-mode-line, Info-up):
4295         Info-current-file can now be t.
4296         (Info-clone-buffer-hook): Function for `clone-buffer'.
4297         (Info-goto-node, Info-menu, Info-mode-map, Info-mode):
4298         Make `clone-buffer' available in various ways to the user.
4300 1999-10-12  Stefan Monnier  <monnier@cs.yale.edu>
4302         * simple.el (shell-command, shell-command-on-region): Use
4303         make-temp-file.
4304         (clone-buffer, clone-process, clone-buffer-hook): New functions.
4306         * subr.el (with-current-buffer): Don't use backquotes to avoid
4307         bootstrapping problems.
4309         * loadup.el (load-path): Add subdirs for bootstrapping.
4310         (docstrings): Ignore errors during bootstrapping.
4311         (args): New `bootstrap' argument (for use in place of `dump').
4313 1999-10-12  Emmanuel Briot  <briot@gnat.com>
4315         * ada-stmt.el: Doc-string fixes.
4317 1999-10-12  Gerd Moellmann  <gerd@gnu.org>
4319         * recentf.el: New file.
4321         * ps-mode.el: New file.
4323         * files.el (auto-mode-alist): Add ps-mode for .eps and .ps,
4324         case insensitive.
4326 1999-10-12  Richard Sharman  <rsharman@pobox.com>
4328         * sh-script.el: Added support for indenting existing scripts.
4329         (sh-mode-map): Added new bindings.
4330         (sh-mode): Updated mode doc-string for new commands, added
4331         make-local-variable calls, initialize mode-specific variables.
4332         (sh-indent-line):  Renamed to sh-basic-indent-line;  sh-indent-line
4333         is now a different function.
4334         (sh-header-marker):  Changed docstring.
4335         (sh-set-shell): Initialize mode-specific variables.
4336         (sh-case, sh-for, sh-if, sh-indexed-loop, sh-repeat, sh-select)
4337         (sh-tmp-file, sh-until, sh-until, sh-while, sh-while-getopts):
4338         Changed these define-skeleton calls to work with user-specified
4339         indentation settings.
4340         (sh-basic-indent-line, sh-blink, sh-calculate-indent)
4341         (sh-check-paren-in-case, sh-check-rule, sh-do-nothing)
4342         (sh-electric-hash, sh-electric-less, sh-electric-rparen)
4343         (sh-find-prev-matching, sh-find-prev-switch, sh-get-indent-info)
4344         (sh-get-indent-var-for-line, sh-get-kw, sh-get-word)
4345         (sh-goto-match-for-done, sh-goto-matching-case, sh-goto-matching-if)
4346         (sh-guess-basic-offset, sh-handle-after-case-label)
4347         (sh-handle-prev-case, sh-handle-prev-case-alt-end, sh-handle-prev-do)
4348         (sh-handle-prev-done, sh-handle-prev-else, sh-handle-prev-esac)
4349         (sh-handle-prev-fi, sh-handle-prev-if, sh-handle-prev-open)
4350         (sh-handle-prev-rc-case, sh-handle-prev-then, sh-handle-this-close)
4351         (sh-handle-this-do, sh-handle-this-done, sh-handle-this-else)
4352         (sh-handle-this-esac, sh-handle-this-fi, sh-handle-this-rc-case)
4353         (sh-handle-this-then, sh-help-string-for-variable)
4354         (sh-in-comment-or-string, sh-indent-line, sh-learn-buffer-indent)
4355         (sh-learn-line-indent, sh-load-style, sh-make-vars-local, sh-mark-init)
4356         (sh-mark-line, sh-mkword-regexpr, sh-mkword-regexp)
4357         (sh-must-be-shell-mode, sh-must-support-indent, sh-name-style)
4358         (sh-prev-line, sh-prev-stmt, sh-prev-thing, sh-read-variable)
4359         (sh-remove-our-text-properties, sh-rescan-buffer)
4360         (sh-reset-indent-vars-to-global-values, sh-safe-backward-sexp)
4361         (sh-safe-forward-sexp, sh-save-styles-to-buffer, sh-scan-buffer)
4362         (sh-scan-case, sh-search-word, sh-set-char-syntax)
4363         (sh-set-here-doc-region, sh-set-indent, sh-set-var-value)
4364         (sh-show-indent, sh-this-is-a-continuation, sh-var-value): New
4365         functions.
4366         (sh-debug, sh-electric-rparen-needed, sh-here-doc-syntax)
4367         (sh-indent-supported, sh-kw, sh-kw-alist, sh-kws-for-done)
4368         (sh-learned-buffer-hook, sh-make-vars-local, sh-regexp-for-done)
4369         (sh-special-keywords, sh-special-syntax, sh-st-punc, sh-styles-alist)
4370         (sh-var-list): New variables.
4372 1999-10-12  Dave Pearson  <davep@hagbard.demon.co.uk>
4374         * quickurl.el (quickurl-list-insert): `count-lines' was returning
4375         a value one line to high if the cursor wasn't at the start of a
4376         line. A `beginning-of-line' is now performed before making the
4377         call to `count-lines'.
4379 1999-10-11  Stefan Monnier  <monnier@cs.yale.edu>
4381         * diff-mode.el (vc-backend-diff): Get rid of the autoloaded advice.
4383 1999-10-09  Stefan Monnier  <monnier@cs.yale.edu>
4385         * Makefile (setwins): Abstract out the command to find subdirectories
4386         and fix it to also ignore subdirectories of CVS (f.ex. CVS/Base).
4387         (custom-deps, finder-data, autoloads, update-subdirs, updates)
4388         (autoloads-with-other-emacs): Use it.
4390         * diff-mode.el: New file.  A mode for viewing/editing context diffs.
4392 1999-10-09  Gerd Moellmann  <gerd@gnu.org>
4394         * Makefile (bootstrap-compile): New target.  Compile Lisp
4395         files with ../src/temacs.
4397 1999-10-08  Dave Love  <fx@gnu.org>
4399         * ange-ftp.el: Require dired when compiling.
4400         (ange-ftp-normal-login): Allow EFS-style port specification.
4402 1999-10-08  Simon Marshall  <simon@gnu.org>
4404         * emacs-lisp/regexp-opt.el (regexp-opt-try-suffix): New function.
4405         (regexp-opt-group): Use it to get common suffixes in STRINGS.
4406         If STRINGS is nil, return "" rather than nil.
4408 1999-10-08  Gerd Moellmann  <gerd@gnu.org>
4410         * Makefile (compile): Compile files one by one.  Set load-path to
4411         current directory and subdirectories when compiling.
4413 1999-10-08  Gerd Moellmann  <gerd@gnu.org>
4415         * Makefile (EMACSOPT, DONTCOMPILE, EL): New.
4416         (emacs): Use it everywhere instead of EMACS.
4417         (compile): New target.  Compile all Lisp files from scratch.
4418         (recompile): New target.  Recompile lisp directory.
4419         (autoloads-with-other-emacs): New target.  Build loaddefs.el with
4420         an Emacs executable not built in the current directory tree.
4422 1999-10-07  Peter Breton  <pbreton@ne.mediaone.net>
4424         * filecache.el (file-cache-completion-ignore-case): New variable,
4425         defaulting to the value of completion-ignore-case.
4426         (file-cache-minibuffer-complete): Use it.
4427         (file-cache-files-matching, file-cache-files-matching-internal):
4428         New functions.
4430 1999-10-07  Emmanuel Briot  <briot@gnat.com>
4432         * ada-xref.el: New file
4434         * ada-prj.el: New file
4436         * ada-stmt.el (ada-stmt-add-to-ada-menu): New function
4438         * ada-stmt.el (ada-subprogram-body): Correctly find the name of the
4439         subprogram being created.
4441         * ada-mode.el (ada-get-indent-*, ada-indent-current, ada-goto-*,
4442         ada-indent-newline-indent): Rewritten to support the new indentation
4443         scheme
4445         * ada-mode.el (ada-case-read-exceptions, ada-create-case-exceptions):
4446         New functions
4448         * ada-mode.el (ada-fill-comment-paragraph): Add support for the
4449         justification parameter
4451         * ada-mode.el (ada-make-body, ada-gen-treat-proc,
4452         ada-make-subprogram-body): Rewritten to benefit from the gnatstub
4453         external program
4455 1999-10-07  Dave Love  <fx@gnu.org>
4457         * bindings.el (bound-and-true-p): New macro.
4458         (make-mode-line-mouse-sensitive): Don't require easymenu.
4460 1999-10-07  Gerd Moellmann  <gerd@gnu.org>
4462         * custom.el (defface): Extend documentation for new values of
4463         `type'.
4465         * faces.el (face-spec-set-match-display): Recognize `type' of
4466         `motif', `lucid', `x-toolkit'.
4467         (menu): New face.
4469 1999-10-05  Dave Love  <fx@gnu.org>
4471         * files.el: Recognize temporary crontab files.
4473         * info.el: Require jka-compr when compiling.
4474         (Info-suffix-list): Add bzip2 files (non-ms-dos only).
4476 1999-10-04  Dave Love  <fx@gnu.org>
4478         * cus-start.el: Add x-stretch-cursor, indicate-empty-lines,
4479         scroll-up-aggressively, scroll-down-aggressively.
4481         * time.el (display-time-mode): Add autoload cookie.
4483         * rect.el (delete-extract-rectangle): Doc fix from verna.
4485         * help-macro.el (three-step-help): Customize.
4487 1999-10-04  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4489         * hexl.el (hexlify-buffer): Move point in proper range
4490         if it is too large.
4491         (hexl-after-revert-hook): Update hexl-max-address.
4492         (hexl-address-to-marker): Doc fix.
4494 1999-10-03  Dave Love  <fx@gnu.org>
4496         * image.el (defimage): Remove redundant code.  Substitute file in
4497         image plist.
4499 1999-10-02  Andre Spiegel  <spiegel@inf.fu-berlin.de>
4501         * vc.el (vc-backend-checkout): Use coding system 'no-conversion
4502         when doing with-temp-file.
4504 1999-10-01  Dave Love  <fx@gnu.org>
4506         * cus-edit.el (custom-comment-create): Fill :from and :to slots.
4508         * help.el: Require view when compiling.
4509         (view-emacs-FAQ): Use Info version.
4511 1999-09-29  Ken'ichi Handa  <handa@gnu.org>
4513         * ps-mule.el (ps-mule-font-info-database-ps): Typo fixed
4514         (normat->normal).  Use correct font names for Korean
4515         (Munhwa-Regular-KSC-EUC-H and Munhwa-Bold-KSC-EUC-H).
4517 1999-09-29  Kenichi Handa  <handa@etl.go.jp>
4519         * language/cyrillic.el (cyrillic-koi8-r-decode-table): Map 8-bit
4520         code not used by KOI8 to the same 8-bit code instead of mapping to
4521         SPC.
4522         (cyrillic-alternativnyj-decode-table): Likewise.
4524 1999-09-29  Alex Schroeder  <alex@gnu.org>
4526         * sql.el (sql-imenu-generic-expression): Aew, used to set
4527         imenu-generic-expression.
4528         (sql-mode): Use ?_ and ?. instead of 95 and 46 when setting
4529         font-lock-defaults' SYNTAX-ALIST.  Set imenu-generic-expression,
4530         imenu-case-fold-search, and imenu-syntax-alist.
4531         (sql-interactive-mode): Use ?_ and ?. instead of 95 and 46 when
4532         setting font-lock-defaults' SYNTAX-ALIST.
4534 1999-09-28  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4536         * map-ynp.el (map-y-or-n-p): If we read -1, for end of keyboard
4537         macro, try again.
4539 1999-09-28  Dave Love  <fx@gnu.org>
4541         * cus-edit.el (custom-comment): Change widget definition.
4542         (custom-comment-create, custom-comment-show)
4543         (custom-comment-invisible-p): Don't use :comment-overlay.
4544         (custom-comment-hide): New function.
4545         (custom-variable-set, custom-variable-save)
4546         (custom-variable-reset-standard, custom-face-set)
4547         (custom-face-save): Use it.
4549 1999-09-27  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4551         * hexl.el (hexl-mode): Do nothing if already in hexl mode.
4553 1999-09-27  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4555         * faces.el (region): Doc fix.
4557 1999-09-27  Dave Love  <fx@gnu.org>
4559         * isearch.el (isearch): Add :links in defgroup.
4560         (isearch-mode-map): Bind mouse-2 to isearch-mouse-yank.
4561         (isearch-switch-frame-handler): Comment out (unused).
4562         (isearch-yank-x-selection, isearch-ring-advance-edit): Doc fix.
4563         (isearch-ring-retreat-edit): Doc fix.
4564         (isearch-mouse-yank): New command.
4565         (isearch-last-command-char): Removed.  Callers changed to use
4566         last-command-char.
4567         (isearch-char-to-string): Removed.  Callers changed to use
4568         char-to-string.
4570 1999-09-26  Oleg S. Tihonov  <tihonov@ffke-campus.mipt.ru>
4572         * ispell.el (ispell-dictionary-alist-6): Don't use "-C"
4573         option for Russian.
4575 1999-09-25  Gerd Moellmann  <gerd@gnu.org>
4577         * faces.el (face-differs-from-default-p): Compare face
4578         attributes individually.
4580         * image.el (put-image, insert-image): Add string argument.
4582 1999-09-24  Gerd Moellmann  <gerd@gnu.org>
4584         * ange-ftp.el (ange-ftp-date-regexp): Make it work for
4585         LANG=de_DE.iso88591 on HPUX 11.0.
4587         * dired.el (dired-move-to-filename-regexp): Make it work
4588         for LANG=de_DE.iso88591 on HPUX 11.0.
4590 1999-09-24  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4592         * info.el (info-initialize): Don't test existence of ALTERNATIVE
4593         if we know for some other reason it should not be used.
4595         * emacs-lisp/edebug.el (edebug-outside-current-prefix-arg):
4596         New variable.
4597         (edebug-recursive-edit): Save current-prefix-arg there,
4598         bind it, and set it back at the end.
4599         (edebug-outside-excursion): Restore and update the outside
4600         value of current-prefix-arg.
4601         (edebug-emacs-version-specific): Delete support for Epoch.
4603 1999-09-24  Howard Melman  <howard@silverstream.com>
4605         * imenu.el (imenu-after-jump-hook): New variable.
4606         (imenu): Run menu-after-jump-hook.
4607         (imenu-name-lookup-function): New variable.
4608         * imenu.el (imenu--in-alist): Use those variables.
4610 1999-09-24  Carsten Dominik  <cd@gnu.org>
4612         * textmodes/reftex-parse.el (reftex-parse-from-file): Scan for
4613         multiple thebibliography environments.
4615         * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Fixed bug
4616         with recentering window.
4617         (reftex-extract-bib-entries-from-thebibliography,
4618         reftex-offer-bib-menu,reftex-bibtex-selection-callback):  Deal
4619         with multiple thebibliography environments.
4621         * textmodes/reftex-vars.el
4622         (reftex-section-levels): Function allowed as cdr.
4623         (reftex-max-section-depth) New option.
4625         * textmodes/reftex-vcr.el (reftex-view-cr-cite): Deal
4626         with multiple thebibliography environments.
4628 1999-09-23  Gerd Moellmann  <gerd@gnu.org>
4630         * iswitchb.el (iswitchb-complete): Use minibuffer-prompt-end
4631         instead of point-min in call to delete-region.
4633 1999-09-22  Andre Spiegel  <spiegel@inf.fu-berlin.de>
4635         * vc.el (vc-backend-checkout): Use with-temp-file when checking
4636         out into arbitrary file names.
4638 1999-09-19  Ken'ichi Handa  <handa@gnu.org>
4640         * language/european.el ("Turkish"): New language environment.
4642 1999-09-19  Dave Love  <fx@gnu.org>
4644         * delim-col.el: New file.
4646 1999-09-17  Richard Stallman  <rms@gnu.org>
4648         * files.el (after-find-file): When visiting a backup file,
4649         make it read-only.
4651         * apropos.el (apropos-symbol-face): Non-nil even for ttys.
4652         (apropos-keybinding-face, apropos-label-face): Likewise.
4653         (apropos-property-face, apropos-match-face): Likewise.
4654         (apropos-label-properties): New variable.
4655         (apropos-print-doc): Use apropos-label-properties.
4656         (apropos-print): Set apropos-label-properties.
4658 1999-09-15  Richard Stallman  <rms@gnu.org>
4660         * winner.el: Use aref instead of sref.
4662         * whitespace.el (whitespace-mode, whitespace-mode-line): Add defvars.
4664 1999-09-14  Gerd Moellmann  <gerd@gnu.org>
4666         * lisp-mode.el (eval-last-sexp): Use prin1 instead of print.
4668 1999-09-14  Richard Stallman  <rms@gnu.org>
4670         * font-lock.el (lisp-font-lock-keywords-1): Recognize an autoload
4671         cookie, even if followed by a letter.
4673 1999-09-14  Stephen Eglen  <stephen@gnu.org>
4675         * progmodes/octave-inf.el (inferior-octave-startup): Ensure -i and
4676         --no-line-editing are passed to Octave by including them here
4677         rather than storing them in inferior-octave-startup-args.
4679 1999-09-14  Eli Zaretskii  <eliz@gnu.org>
4681         * textmodes/texinfo.el (texinfo-font-lock-keywords): Add uref,
4682         command, option, env and sc.
4684         * subr.el (shell-quote-argument): Quote argument with double
4685         quotes for ms-dos.
4687 1999-09-14  Richard Stallman  <rms@gnu.org>
4689         * simple.el (eval-expression-print-level): New variable.
4690         (eval-expression-print-length): New variable.
4691         (eval-expression-debug-on-error): New variable.
4692         (eval-expression): Bind print-level, print-length and
4693         debug-on-error from those vars.
4695         * emacs-lisp/lisp-mode.el (eval-defun, eval-last-sexp):
4696         Bind print-level, print-length and debug-on-error.
4698 1999-09-14  Inge Frick  <inge@nada.kth.se>
4700         * dired.el (dired-recursive-deletes): New custom variable.
4701         (dired-re-no-dot): New variable.
4702         (dired-delete-file): New function deletes files and directories
4703         recursively.
4704         (dired-internal-do-deletions): Use `dired-delete-file' to delete files.
4706         * dired-aux.el (dired-recursive-copies): New custom variable.
4707         (dired-handle-overwrite): Broke a long line.
4708         (dired-copy-file): Call `dired-copy-file-recursive' instead of
4709         `copy-file'.
4710         (dired-copy-file-recursive): New function.  Copy directories
4711         recursively.
4712         (dired-do-create-files): Added support for generalized directory
4713         target.  How-to function may now return a function.  New fluid
4714         variable `dired-one-file'.
4715         (dired-copy-how-to-fn): New variable.
4716         (dired-do-copy): Bind `dired-recursive-copies' to preserve it.
4717         Use dired-copy-how-to-fn as how-to argument to dired-do-create-files.
4718         (dired-do-copy-regexp): No recursive copies.
4720 1999-09-14  Rajesh Vaidheeswarran  <rv@dsmit.com>
4722         * whitespace.el (whitespace-version): Update version to 2.4
4724         * whitespace.el: Add customization variables to conditionally test
4725         any of the five whitespaces, per request from Rune Kleveland
4726         <runekl@math.uio.no> and Klaus Berndl <berndl@sdm.de>.
4728         * whitespace.el (whitespace-spacetab-regexp): Fix doc string.
4730         * whitespace.el (whitespace-modes): Add `change-log-mode' to the
4731         list of modes to be checked for bogus whitespaces.
4733         * whitespace.el (whitespace-rescan-timer-time): Update
4734         documentation.
4736         * whitespace.el (whitespace-display-unchecked-whitespaces):
4737         New function to update modeline with untested whitespaces.
4739         * whitespace.el (whitespace-buffer): Test only whitespaces whose
4740         checking is turned on, and update modeline using the newly created
4741         `whitespace-display-unchecked-whitespaces'.
4743         * whitespace.el (whitespace-cleanup): Cleanup only whitespaces
4744         whose checking is turned on, and update modeline using the newly
4745         created `whitespace-display-unchecked-whitespaces'.
4747         * whitespace.el (whitespace-describe): Update documentation.
4749         * whitespace.el (whitespace-tickle-timer): Test if
4750         `whitespace-rescan-timer-time' is non-zero before tickling timer.
4752 1999-09-13  Dave Love  <fx@gnu.org>
4754         * hideif.el (hide-ifdef-mode): Add autoload cookie.
4756         * checkdoc.el (checkdoc-display-status-buffer): Avoid Help mode
4757         for temp buffer.
4758         (checkdoc-this-string-valid): Don't assume default comment-start.
4760 1999-09-13  Gerd Moellmann  <gerd@gnu.org>
4762         * rsz-mini.el: Remove code, keep the interface.
4764 1999-09-13  Dave Love  <fx@gnu.org>
4766         * help.el (help-highlight-p): Doc fix.
4768         * faces.el (mode-line, header-line, tool-bar): Add :version.
4769         (highlight, secondary-selection): Add :group.
4770         (trailing-whitespace): Add :group, :version.
4772         * wid-edit.el: Remove some compatibility code and checks.
4773         (widget-specify-field, widget-specify-button): Don't use XEmacs
4774         properties.
4775         (widget-overlay-inactive): Change error message.
4776         (widget-button-pressed-face): New variable.
4777         (widget-button-click): Use it.
4778         (widget-documentation-link-add): Specify mouse and button faces.
4779         (widget-echo-help-mouse, widget-stop-mouse-tracking): Functions
4780         removed now the functionality is built in.
4782         * cus-edit.el: Don't define-widget-keywords.
4783         (multimedia): New group.
4784         (custom-last): Function removed.
4785         (custom-quote): Add vectorp case, comment out characterp case.
4786         (custom-buffer-done-function, custom-raised-buttons): New option.
4787         (Custom-buffer-done): New function.
4788         (custom-buffer-create-internal): Obey custom-raised-buttons,
4789         Custom-buffer-done.
4790         (custom-button-face): Make it `released-button'.
4791         (custom-button-pressed-face): Make it `pressed-button'
4792         (custom-mode-map): Bind "q" to Custom-buffer-done.
4793         (custom-mode): Deal with raised/pressed buttons.
4795         Changes from Didier Verna:
4796         (custom-prompt-variable): Optional third arg makes prompt for a
4797         comment string.
4798         (customize-set-value, customize-set-variable,
4799         customize-save-variable): Optional prefix makes function handle
4800         variable comments.
4801         (customize-customized, customize-saved, custom-variable-state-set)
4802         (custom-variable-set, custom-variable-save, custom-face-state-set)
4803         (custom-variable-reset-saved, custom-variable-reset-standard)
4804         (custom-face-set, custom-face-save, custom-face-reset-saved)
4805         (custom-face-reset-standard, customize-save-customized): Handle
4806         custom comments.
4807         (custom-comment-face, custom-comment-tag-face): New face.
4808         (custom-comment): New widget.
4809         (custom-comment-create, custom-comment-delete)
4810         (custom-comment-value-set, custom-comment-show)
4811         ()custom-comment-invisible-p): New functions.
4812         (custom-variable-value-create, custom-face-value-create): Create a
4813         comment field widget.
4814         (custom-variable-menu, custom-face-menu): New entry for custom
4815         comment.
4816         (custom-face-value-create): Remove compatibility code.
4817         (custom-save-variables, custom-save-faces): Possibly save custom
4818         comments.
4820         * cus-face.el (custom-face-attributes): Simplify :underline,
4821         :overline, :inverse-video cases.  Fix up :box case (probably needs
4822         more work).
4824         Change from Didier Verna:
4825         (custom-set-faces): The arguments can now have a custom comment as
4826         fourth argument.
4828         * custom.el: Don't define-widget-keywords.
4829         Change from Didier Verna:
4830         (custom-set-variables): The arguments can now have a
4831         custom comment as fifth element.
4833 1999-09-13  Richard Stallman  <rms@gnu.org>
4835         * info.el (Info-find-node): Cope better if guesspos is too large.
4837 1999-09-12  Gerd Moellmann  <gerd@gnu.org>
4839         * iswitchb.el (iswitchb-exhibit): Use buffer-string instead
4840         of buffer-substring because buffer-string doesn't copy the
4841         prompt.
4843         * faces.el (mode-line): Replaces `modeline'.
4844         (toplevel): Make `modeline' an alias for `mode-line'.
4846 1999-09-12  Gerd Moellmann  <gerd@gnu.org>
4848         * gs.el: Change `ghostscript' to `postscript' in comment.
4850 1999-09-11  Rob Riepel  <riepel@Stanford.EDU>
4852         * emulation/tpu-edt.el (tpu-version): New version.
4853         (tpu-search-overlay, tpu-replace-overlay): New variables.
4854         (tpu-search-highlight, tpu-toggle-direction): New functions.
4855         (tpu-lm-replace): Set tpu-replace-overlay.
4856         (tpu-edt-on, tpu-edt-off): Add/remove tpu-search-highlight post
4857         command hook.
4859 1999-09-11  Richard Stallman  <rms@gnu.org>
4861         * isearch.el (isearch-mode-map): Undo previous change.
4863         * emacs-lisp/lisp-mode.el (eval-last-sexp): If after ?\LETTER,
4864         use all of that as the sexp.
4866         * files.el (find-file-noselect): Catch errors in file-expand-wildcards,
4867         and use the initial argument as file name directly.
4868         Likewise if nothing matches.
4870 1999-09-11  Ivar Rummelhoff  <ivarru@math.uio.no>
4872         * winner.el: Major changes.  Avoid changing point and mark.
4873         Save configurations after they change, not before.
4875 1999-09-10  Keisuke Nishida  <kxn30@po.cwru.edu>
4877         * emacs-lisp/bytecomp.el (byte-compile-output-docform):
4878         Bind print-continuous-numbering and print-number-table.
4880 1999-09-10  Dave Love  <fx@gnu.org>
4882         * bindings.el (debug-ignored-errors): Restore BBDB stuff.
4884 1999-09-09  Richard Stallman  <rms@gnu.org>
4886         * whitespace.el: Finish making it fit Emacs conventions.
4887         Add autoloads.
4889 1999-09-09  Eli Zaretskii  <eliz@is.elta.co.il>
4891         * generic-x.el (bat-generic-mode): "::"-style comments don't
4892         need to begin with "-".  Fix the font-lock definitions of ON/OFF
4893         after BREAK/VERIFY.  Remove built-in commands like CALL and ECHO
4894         from the list of keywords.  Add DO to the list of keywords.
4896 1999-09-09  Dave Love  <fx@gnu.org>
4898         * emacs-lisp/byte-opt.el (byte-optimize-backward-char):
4899         (byte-optimize-backward-word): New optimizations.
4900         (side-effect-free-fns, side-effect-and-error-free-fns): Add
4901         entries.
4903 1999-09-09  Gerd Moellmann  <gerd@gnu.org>
4905         * image.el (put-image): Remove optional buffer parameter.
4907         * faces.el (face-italic-p): Return t only for values `italic'
4908         and `oblique'.
4910         * mouse.el (mouse-drag-mode-line-1): Extension of former
4911         mouse-drag-mode-line that also drags the header line.
4912         (mouse-drag-mode-line): Call it.
4913         (mouse-drag-header-line): New.
4914         (toplevel): Bind down-mouse-1 on header lines to
4915         mouse-drage-header-line.
4917 1999-09-08  Gerd Moellmann  <gerd@gnu.org>
4919         * bindings.el (mode-line-unbury-buffer): Use aref instead of sref.
4920         (make-mode-line-mouse-sensitive): Replace `top-line' by
4921         `header-line'.
4923 1998-09-08  Michael Ernst  <mernst@alum.mit.edu>
4925         * help.el (describe-function-1): Don't return empty string for keymaps.
4927         * fill.el (fill-region-as-paragraph, canonically-space-region):
4928         Respect colon-double-space at end of line.
4930 1999-09-08  Stephen Gildea  <gildea@alum.mit.edu>
4932         * files.el (backup-by-copying-when-privileged-mismatch): New variable.
4933         (backup-buffer): Use it.
4935 1999-09-08  Peter Breton  <pbreton@ne.mediaone.net>
4937         * generic-x.el (generic-define-unix-modes): Added new modes:
4938         inetd-conf-generic-mode, etc-services-generic-mode,
4939         etc-passwd-generic-mode.  These are all defined for Unix by default.
4940         (apache-generic-mode): Use an imenu-generic-expression to list
4941         Configuration keywords.
4942         (samba-generic-mode): Use both ; and # as comment characters.
4943         (samba-generic-mode): Font-lock expressions now highlight name
4944         value pairs.
4945         (bat-generic-mode): Keywords are now case-insensitive through
4946         font-lock-defaults setting.
4947         (java-properties-generic-mode): Supports both ! and # as comment
4948         characters.
4949         (java-properties-generic-mode): Added an imenu-generic-expression
4950         (java-properties-generic-mode): Reworked to support the various
4951         different ways to separate name and value (viz, '=', ':' and
4952         whitespace).
4953         (show-tabs-generic-mode): Added this new generic-mode.
4955 1999-09-08  Richard Stallman  <rms@gnu.org>
4957         * progmodes/inf-lisp.el: Moved from top directory.
4959         * tar-mode.el (tar-header-block-tokenize):
4960         Use `when' instead of `and'.  Fix some clobbered text.
4962         * gud.el (gud-make-debug-menu): Make a child for the
4963         local menu, for its menu bar, and the debug menu.
4964         (gdb, sdb, dbx, xdb, perldb, pdb, jdb):
4965         Use the history in the simple way.
4967 1999-09-07  Kenichi Handa  <handa@etl.go.jp>
4969         * language/korea-util.el (default-korean-keyboard): Initialize it
4970         according to the environment variable HANGUL_KEYBOARD_TYPE.
4972 1999-09-07  Richard Stallman  <rms@gnu.org>
4974         * subr.el (make-temp-file): New function.
4976 1999-09-07  Stefan Monnier  <monnier@cs.yale.edu>
4978         * font-lock.el (font-lock-multiline): New text property contains
4979         a boolean to indicate if the char is part of a multiline match.
4980         (font-lock-default-fontify-region): Extend the region appropriately
4981         for multiline keywords.
4982         (font-lock-default-unfontify-region): Also remove the new
4983         font-lock-multiline text property.
4984         (font-lock-fontify-anchored-keywords): Mark multiline anchored matches.
4985         (font-lock-fontify-keywords-region): Mark multiline regexp matches.
4987 1999-09-07  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
4989         * diary-lib.el (list-diary-entries): Make sure two-digit years
4990         have leading zeros.
4992 1999-09-07  Gerd Moellmann  <gerd@gnu.org>
4994         * faces.el (face-set-after-frame-default): Initialize some
4995         attributes of some faces from frame parameters.
4997         * faces.el (scroll-bar, border, cursor, mouse): New faces.
4999 1999-09-07  Gerd Moellmann  <gerd@gnu.org>
5001         * faces.el (fringe): Replaces face `margin'.
5003 1999-09-07  Dave Love  <fx@gnu.org>
5005         * tar-mode.el (tar-header-block-tokenize): Bind linkname.
5007 1999-09-07  Richard Stallman  <rms@gnu.org>
5009         * subr.el (push): Doc fix.
5011 1999-09-06  Richard Stallman  <rms@gnu.org>
5013         * vc.el (vc-annotate-display): Use < 69 not < 70
5014         to distinguish 20YY from 19YY.
5016         * timezone.el (timezone-parse-date): Use < 69 not < 70
5017         to distinguish 20YY from 19YY.
5019         * tar-mode.el (tar-extract): Don't assume buffer is visiting a file.
5021 1999-09-07  Dave Pearson  <davep@hagbard.demon.co.uk>
5023         * quickurl.el: (quickurl-list-focused-line): Removed.
5024         (quickurl-list-insert): Now works out the focused line using
5025         `count-lines' instead of using `quickurl-list-focused-line'.
5027 1999-09-06  Richard Stallman  <rms@gnu.org>
5029         * mail/rmail.el (rmail-retry-failure): Unconditionally move
5030         to beginning of message.
5032 1999-09-06  Dave Love  <fx@gnu.org>
5034         * isearch.el (isearch-mode-map): Add mouse-2.
5036         * mail/rmail.el (rmail-read-password): Deleted.
5037         (rmail-get-pop-password): Use read-password.
5039         * quickurl.el: Don't conditionally define caddr.
5040         (quickurl-url-comment): Use nth, not caddr in function and
5041         defsetf.
5043 1999-09-06  Richard Stallman  <rms@gnu.org>
5045         * auto-show.el: Doc fixes.
5047 1999-09-06  Stephen Eglen  <stephen@gnu.org>
5049         * progmodes/octave-inf.el (inferior-octave-startup-args): Add
5050         --no-line-editing so that TABs in source files are not interpreted
5051         as completion requests.
5053 1999-09-06  Gerd Moellmann  <gerd@gnu.org>
5055         * hscroll.el, auto-show.el: Remove all code, keep the public
5056         interface as no-ops.
5058         * faces.el (face-bold-p): Don't return t if face has lighter
5059         weight than normal.
5061 1999-09-06  Eli Zaretskii  <eliz@gnu.org>
5063         * startup.el (command-line): Make small-temporary-file-directory
5064         be nil except on ms-dos.
5066         * files.el (small-temporary-file-directory): Ditto.  Also doc fix.
5068         * progmodes/sh-script.el (sh-tmp-file): For sh, use $TMPDIR if it
5069         is defined.
5071         * dired.el (dired-re-dir, dired-re-sym): Don't match DOS drive
5072         letters with a colon after d or l.
5074 1999-09-06  Dave Love  <fx@gnu.org>
5076         * emacs-lisp/byte-opt.el (byte-boolean-vars): Removed.  (Now
5077         primitive.)
5079 1999-09-05  Richard Stallman  <rms@gnu.org>
5081         * vc.el (vc-annotate-display): Treat 2-digit years under 70 as 20YY.
5083         * textmodes/paragraphs.el (backward-kill-sentence):
5084         Don't test minibuffer-prompt-end here.
5085         (forward-sentence): Do handle it here.
5086         (backward-kill-paragraph): Don't test it here.
5087         (forward-paragraph): Handle it here.
5089         * mouse.el (font-menu-add-default): Simplify code.
5091 1999-09-05  Gerd Moellmann  <gerd@gnu.org>
5093         * faces.el (header-line): Renamed from `top-line'.
5095 1999-09-05  Gerd Moellmann  <gerd@gnu.org>
5097         * faces.el (tool-bar): Change face `toolbar' to `tool-bar'.
5099 1999-09-04  Richard Stallman  <rms@gnu.org>
5101         * whitespace.el: New file.
5103 1999-09-04  Dave Love  <fx@gnu.org>
5105         * paths.el: Make some doc strings obey the make-docfile convention.
5107         * bindings.el: Likewise.
5108         (debug-ignored-errors): Remove BBDB ones.
5110 1999-09-03  Richard Stallman  <rms@gnu.org>
5112         * mail/mh-comp.el (mh-forward): Get new subject line from the original,
5113         not from the draft to forward.
5115         * emacs-lisp/autoload.el (make-autoload): Handle defun* like defun.
5117 1999-09-03  Dave Love  <fx@gnu.org>
5119         * double.el (double-mode): Customize the variable.
5121 1999-09-03  Kenichi Handa  <handa@etl.go.jp>
5123         * international/characters.el: Delete duplicated code.
5125 1999-09-02  Richard Stallman  <rms@gnu.org>
5127         * indent.el (indent-relative): Doc fix.
5129         * quickurl.el (quickurl): Doc fix.
5131 1999-09-02  Gerd Moellmann  <gerd@gnu.org>
5133         * faces.el (margin): Change background to "gray" for mono (this is
5134         drawn with a stipple pattern).
5136 1999-09-02  Gerd Moellmann  <gerd@gnu.org>
5138         * simple.el (next-history-element): Use minibuffer-prompt-end once
5139         again.  Remove test for minibuffer-prompt-in-buffer.
5141 1999-09-02  Eli Zaretskii  <eliz@gnu.org>
5143         * files.el (small-temporary-file-directory): New variable.
5145         * startup.el (command-line): Compute the value of
5146         small-temporary-file-directory.
5148         * ediff-init.el (ediff-temp-file-prefix): Use
5149         small-temporary-file-directory if non-nil.
5151         * vc.el (vc-update-change-log): Likewise.
5153         * progmodes/cmacexp.el (c-macro-expansion): Likewise.
5155         * simple.el (shell-command, shell-command-on-region): Use
5156         make-temp-name properly.  Use small-temporary-file-directory if
5157         non-nil, otherwise temporary-file-directory, to generate temporary
5158         files.
5160         * dos-w32.el (direct-print-region-helper): Use
5161         temporary-file-directory.  (From Stefan Monnier.)
5163 1999-09-02  Richard Stallman  <rms@gnu.org>
5165         * progmodes/asm-mode.el (asm-mode): Set comment-start properly
5166         from asm-comment-char.
5167         (asm-font-lock-keywords): Recognize instruction width suffixes.
5169 1999-09-01  Richard Stallman  <rms@gnu.org>
5171         * play/fortune.el: New file.
5173 1999-08-31  Dave Love  <fx@gnu.org>
5175         * help.el (help-make-xrefs): Don't lose on non-empty blank line
5176         after key table.
5178         * emacs-lisp/byte-opt.el (byte-boolean-vars): Add several w32 and
5179         redisplay variables.
5181         * subr.el (push): Fix typo.
5183 1999-08-30  Kevin Blake  <kblake@ticnet.com>
5185         * emacs-lisp/ring.el: Many doc fixes.
5186         (ring-size, ring-copy): New functions.
5188 1999-08-29  Richard Stallman  <rms@gnu.org>
5190         * progmodes/etags.el (tags-loop-continue):
5191         After tags-loop-operate returns, force skip to next file.
5193         * mail/mail-extr.el (mail-extr-all-letters-but-separators)
5194         (mail-extr-first-letters, mail-extr-last-letters):
5195         Use character classes [:alpha:] and [:alnum:].
5197         * subr.el (push, pop): New macros.
5199         * progmodes/compile.el (compilation-error-regexp-alist):
5200         New item for SGI IRIX MipsPro compilers.
5202         * speedbar.el (speedbar-directory-buttons): Recognize
5203         device names when checking for file names.
5205         * array.el (array-reconfigure-rows): Use generate-new-buffer.
5207         * emacs-lisp/lisp-mode.el (eval-defun): Expand macros,
5208         and specially handle defvar inside their expansions.
5209         (eval-defun-1): New subroutine.
5211         * progmodes/compile.el (compilation-error-regexp-alist):
5212         Fix the Perl -w entry to allow period after line number.
5213         Don't allow newlines in file name, but allow them after line number
5214         for Perl debugging traces.
5216         * which-func.el (which-func-cleanup-function): New variable.
5217         (which-function): Call that function.
5219         * emacs-lisp/find-func.el (find-function-regexp): Allow a ) or (
5220         to end a function name.
5222         * informat.el (Info-tagify): Don't insert more than one newline
5223         before the tag table.
5225 1999-08-29  Stefan Monnier  <monnier@cs.yale.edu>
5227         * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
5228         than make-temp-name, use match-string-no-properties, and eliminate
5229         a quadratic behavior when building bibtex-strings.
5231 1999-08-29  Alex Schroeder  <alex@gnu.org>
5233         * comint.el (comint-input-ring-separator): New variable.
5234         (comint-read-input-ring): Doc change; use
5235         comint-input-ring-separator when reading file.
5236         (comint-write-input-ring): Use
5237         comint-input-ring-separator when writing file.
5239 1999-08-29  Marc Girod  <girod@shire.ntc.nokia.com>
5241         * informat.el (Info-tagify): Start by widening.
5242         Match node headers that don't list the file name,
5243         and more kinds of page separations.
5244         Strip properties during tagification.
5245         Use start of node header line as tag's position.
5246         Fix the "done" message.
5248         (Info-validate): Save and restore match data around narrowing down.
5250 1999-08-28  Richard M. Stallman  <rms@gnu.org>
5252         * emacs-lisp/easy-mmode.el (easy-mmode-define-minor-mode):
5253         On repeated call, override previous values put into
5254         minor-mode-map-alist and minor-mode-alist.
5256 1999-08-28  Michael Ernst  <mernst@alum.mit.edu>
5258         * dired-x.el (dired-guess-shell-alist-default): Support bzip2 format.
5260 1999-08-27  Andreas Schwab  <schwab@gnu.org>
5262         * vc.el (vc-backend-merge-news): Fix regexp to also match P marker
5263         from cvs update.
5265 1999-08-27  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
5267         * calendar/calendar.el (calendar-move-hook): New hook.
5269         * calendar/cal-move.el: Call the new hook in every movement function.
5271         * calendar/calendar.el (calendar-goto-astro-day-number): Autoload
5272         the right function name.
5274 1999-08-26  Stephen Gildea  <gildea@alum.mit.edu>
5276         * time-stamp.el: Put quote-backquote around all symbol names
5277         in doc strings, for mousing.
5278         (time-stamp): Support multi-line patterns.
5279         (time-stamp-inserts-lines): New variable.
5280         (time-stamp-count): New variable.
5281         (time-stamp-string-preprocess): Fixed bug where "%%a" becomes
5282         "Thu" instead of "%a".
5284 1999-08-25  Gerd Moellmann  <gerd@gnu.org>
5286         * simple.el (kill-word): Undo previous change.
5288 1999-08-25  Gerd Moellmann  <gerd@gnu.org>
5290         * jit-lock.el (jit-lock-function): Extend the fontified range
5291         to the beginning of the line containing the range start and
5292         the beginning of the line following the range end.
5294 1999-08-24  Dave Love  <fx@gnu.org>
5296         * timezone.el: Move provide to end.
5297         (timezone-parse-date): Simplify somewhat.  Assume 2-digit years
5298         <70 are 2000+.
5299         (timezone-parse-time): Simplify somewhat.
5301 1999-08-24  Gerd Moellmann  <gerd@gnu.org>
5303         * faces.el (margin): Renamed from bitmap-area.
5305 1999-08-24  Alex Schroeder  <alex@gnu.org>
5307         * sql.el: Doc changes.
5308         (sql-sybase): Use sql-server instead of sql-database.
5310 1999-08-23  Dave Love  <fx@gnu.org>
5312         * rect.el: Add/fix various doc strings.  Add `*' to all the
5313         interactive specs.
5315 1999-08-21  Gerd Moellmann  <gerd@gnu.org>
5317         * jit-lock.el (jit-lock-function): Use line-beginning-position.
5318         Don't unwind-protect font-lock-fontify-region.
5320         * paragraphs.el (backward-kill-paragraph): Don't move
5321         point into mini-buffer prompt.
5322         (backward-kill-sentence): Ditto.
5324         * simple.el (next-history-element): Use minibuffer-prompt-end.
5325         Remove test for minibuffer-prompt-in-buffer.
5326         (kill-word): Don't move point into mini-buffer prompt.
5328 1999-08-21  Dave Love  <fx@gnu.org>
5330         * Makefile: Exclude CVS dirs like RCS.
5332 1999-08-19  Dave Love  <fx@gnu.org>
5334         * tooltip.el (tooltip-mode): Customize this, per convention.
5335         (tooltip-active): Option deleted.
5337         * font-lock.el (global-font-lock-mode): Autoload.  Add :initialize.
5339         * hanoi.el, page-ext.el: Declare dynamic vars.
5341         * term.el: Avoid ange-ftp related compilation warnings.
5343 1999-08-18  Gerd Moellmann  <gerd@gnu.org>
5345         * font-lock.el (font-lock-support-mode): Make `jit-lock-mode'
5346         the default so that beginners can benefit from it without
5347         searching in manuals.
5349 1999-08-18  Ray Blaak  <blaak@gnu.org>
5351         * progmodes/delphi.el: Consider assembly sections as blocks, to
5352         indent them better. Make auto-indent on newline optional.
5354 1999-08-17  Gerd Moellmann  <gerd@gnu.org>
5356         * bindings.el (mode-line-modified): Look up key binding for C-x
5357         C-q.  If it's bound call that binding, otherwise call
5358         toggle-read-only.
5360 1999-08-17  Dave Love  <fx@gnu.org>
5362         * info.el (info): Doc fix.
5364         * finder.el (finder-known-keywords): Add `multimedia'.
5366         * apropos.el: Don't capitalize custom group name.
5368         * info-look.el: Remove compatibility code.
5369         (info-lookup-guess-default*): DTRT for point at start of symbol.
5370         (info-complete): Don't lose with point not at end of symbol.
5372 1999-08-16  Gerd Moellmann  <gerd@gnu.org>
5374         * term.el (toplevel): Make face `term-default' an empty face.
5375         The code relied on the fact that Emacs ignored invalid faces in
5376         face text properties in 20.4.
5378 1999-08-16  Richard M. Stallman  <rms@gnu.org>
5380         * subr.el (point-at-eol, point-at-bol): New aliases.
5382         * simple.el: Functions reordered.
5384         * rect.el (delete-rectangle-line): Use line-end-position.
5386 1999-08-16  Karl Heuer  <kwzh@gnu.org>
5388         * subr.el (assoc-ignore-case, assoc-ignore-representation): Moved
5389         here from simple.el.
5391 1999-08-16  Dave Love  <fx@gnu.org>
5393         * mouse.el: Provide `mldrag' for compatibility.
5394         (mldrag-drag-mode-line, mldrag-drag-vertical-line): New aliases,
5395         marked obsolete.
5397         * mldrag.el: Removed since the features are in mouse.el.
5399         * jka-compr.el (auto-compression-mode): New variable for
5400         customization.
5402         * bindings.el (mode-line-mule-info): Doc fix.
5404         * msb.el (msb--choose-file-menu): Use `completion-ignore-case' in
5405         name comparisons.
5407         * files.el (interpreter-mode-alist): Add make, guile, clisp.
5408         (find-file): Doc fix.
5410 1999-08-16  Carsten Dominik  <cd@gnu.org>
5412         * textmodes/reftex.el: Most of the code moved to other files.
5413         * textmodes/reftex-auc.el: New file, split out from reftex.el
5414         * textmodes/reftex-cite.el: New file, split out from reftex.el
5415         * textmodes/reftex-global.el: New file, split out from reftex.el
5416         * textmodes/reftex-index.el: New file, split out from reftex.el
5417         * textmodes/reftex-parse.el: New file, split out from reftex.el
5418         * textmodes/reftex-ref.el: New file, split out from reftex.el
5419         * textmodes/reftex-sel.el: New file, split out from reftex.el
5420         * textmodes/reftex-toc.el: New file, split out from reftex.el
5421         * textmodes/reftex-vars.el: New file, split out from reftex.el
5422         * textmodes/reftex-vcr.el: New file, split out from reftex.el
5424 1999-08-16  Carsten Dominik  <cd@gnu.org>
5426         * textmodes/reftex.el: (reftex-pop-to-bibtex-entry): Fixed
5427         conflict with pop-up-frames.
5428         (reftex-special-environment-parsers): New constant.
5429         (reftex-label-alist): car of an entry can also be a function.
5430         (reftex-what-special-env): Cew function.
5431         (reftex-label-location): Call `reftex-what-special-env'.
5432         (reftex-compile-variables): Check for symbol in
5433         `reftex-label-alist'.
5434         (reftex-what-environment): Fixed bug with stacked environments of
5435         same kind (e.g. enumerate).
5436         (reftex-process-string): Preserve default directory.
5437         (reftex-label-alist-builtin): Changed prefixes of endnote and
5438         footnote.  Also the magic words.
5439         (reftex-reference): Interprete new option
5440         `reftex-fref-is-default'.
5441         (reftex-replace-prefix-escapes): Interprete new `%S' format.
5442         (reftex-toc-mouse-view-line): Command removed (had no binding).
5443         (reftex-everything-regexp): New function.
5444         (reftex-nearest-match): Made better.
5445         (reftex-toc-find-section): Use new version of
5446         `reftex-nearest-match'.
5447         (reftex-insert-docstruct): Adapted to work with the index stuff.
5448         (reftex-parse-from-file): Find index entries as well.
5449         (reftex-toc-toggle-index): New function
5450         (reftex-toc-map): `i' is now used to togle the index, File
5451         boundaries has been moved to `F'.
5452         (reftex-select-label-map): Toggling display of file boundaries is
5453         now on the `F' key, for consistency with `reftex-toc-map'.
5454         (reftex-erase-all-selection-and-index-buffers): Renamed from
5455         `reftex-erase-all-selection-buffer'.  Now also kills the index
5456         buffers.
5457         (reftex-viewing-cross-references): Customization group renamed
5458         from reftex-viewing-cross-references-and-citations.
5459         (reftex-index-macro-regexp,
5460         reftex-find-index-entry-regexp-format): New variables
5461         (reftex-macros-with-index): New variable
5462         (reftex-add-index-macros): New function
5463         (reftex-renumber-simple-labels, reftex-translate): Allow for
5464         multiple labels in a single ref command.
5465         (reftex-index-support): New customization group
5466         (reftex-support-index, reftex-index-special-chars,
5467         reftex-index-macros, reftex-index-default-macro,
5468         reftex-index-default-tag, reftex-index-math-format,
5469         reftex-index-section-letters, reftex-index-include-context,
5470         reftex-index-follow-mode, reftex-index-header-face,
5471         reftex-index-section-face, reftex-index-tag-face,
5472         reftex-index-face): New options
5473         (reftex-index-map, reftex-index-menu, reftex-last-index-file,
5474         reftex-index-tag, reftex-index-return-marker,
5475         reftex-index-restriction-indicator, reftex-index-restriction-data,
5476         reftex-index-macro-regexp, reftex-index-level-re,
5477         reftex-index-key-end-re, reftex-find-index-entry-regexp-format,
5478         reftex-everything-regexp-no-index, reftex-index-re,
5479         reftex-macros-with-index, reftex-index-macro-alist): New variables
5480         (reftex-index-help, reftex-index-macros-builtin,
5481         reftex-key-to-index-macro-alist, reftex-query-index-macro-prompt,
5482         reftex-query-index-macro-help): New constants
5483         (reftex-index-selection-or-word, reftex-index,
5484         reftex-default-index, reftex-update-default-index,
5485         reftex-index-complete-tag, reftex-index-select-tag,
5486         reftex-index-complete-key, reftex-index-update-taglist,
5487         reftex-index-globally, reftex-index-mode, reftex-index-show-entry,
5488         reftex-display-index, reftex-insert-index,
5489         reftex-index-insert-new-letter, reftex-get-restriction,
5490         reftex-index-pre-command-hook, reftex-index-post-command-hook,
5491         reftex-index-show-help, reftex-index-next, reftex-index-previous,
5492         reftex-index-toggle-follow, reftex-index-toggle-context,
5493         reftex-index-view-entry, reftex-index-goto-entry-and-hide,
5494         reftex-index-goto-entry, reftex-index-mouse-goto-line-and-hide,
5495         reftex-index-quit, reftex-index-quit-and-kill,
5496         reftex-index-goto-toc, reftex-index-rescan, reftex-index-Rescan,
5497         reftex-index-revert, reftex-index-switch-index-tag,
5498         reftex-index-restrict-to-section, reftex-index-widen,
5499         reftex-index-restriction-forward,
5500         reftex-index-restriction-backward, reftex-index-visit-location,
5501         reftex-index-analyze-entry, reftex-index-globalize,
5502         reftex-index-edit, reftex-index-toggle-range-beginning,
5503         reftex-index-toggle-range-end, reftex-index-edit-key,
5504         reftex-index-edit-attribute, reftex-index-edit-visual,
5505         reftex-index-edit-part, reftex-index-level-down,
5506         reftex-index-level-up, reftex-index-kill, reftex-index-undo,
5507         reftex-index-change-entry, reftex-index-goto-letter,
5508         reftex-add-index-macros, reftex-ensure-index-support,
5509         reftex-index-info-safe, reftex-index-info): New functions.
5512 1999-08-15  Richard M. Stallman  <rms@gnu.org>
5514         * paren.el (show-paren-mode): Support making show-paren-mode
5515         a buffer-local variable.  Don't check for a window system.
5516         (show-paren-function): Check whether show-paren-function is
5517         enabled in current buffer; do the right thing if not.
5518         Don't check for a window system.
5519         (show-paren-mode): Make it a user variable.
5521         * add-log.el (add-log-current-defun): Exclude all trailing whitespace.
5522         Handle `enum' like `struct'.
5524         * server.el (server-process-filter): If a client visits no buffers,
5525         close it immediately before recording it.
5527         * mail/mail-utils.el (mail-unquote-printable): Make it autoload.
5528         Optimize by calling concat just once.  Handle =\n sequence.
5529         (mail-unquote-printable-region): New command.
5530         (mail-quote-printable): Make it autoload.
5532 1999-08-15  Karl Heuer  <kwzh@gnu.org>
5534         * progmodes/octave-mod.el (octave-maintainer-address): Use gnu.org.
5536 1999-08-15  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
5538         * lisp/texinfmt.el: Handle @ifnottex.
5540 1999-08-15  Eli Zaretskii  <eliz@gnu.org>
5542         * frame.el (blink-cursor): Don't turn on cursor blinking for
5543         ms-dos.
5545         * faces.el (face-valid-attribute-values): Look in
5546         x-bitmap-file-path only for x and w32 window systems.
5548         * term/pc-win.el (x-list-fonts): Return "ms-dos", not "default".
5549         Do that if width is nil as well.
5550         (x-display-mm-height, x-display-mm-width): Update values.
5551         (x-colors): Compute the list from msdos-color-values.
5552         (x-select-enable-clipboard): Doc fix.
5553         (x-frob-font-weight, x-font-family-list): New functions.
5555 1999-08-15  Toby Speight  <Toby.Speight@streapadair.freeserve.co.uk>
5557         * window.el (shrink-window-if-larger-than-buffer): Don't try to
5558         back up from beginning of buffer.
5560 1999-08-13  Karl Heuer  <kwzh@gnu.org>
5562         * emacs-lisp/advice.el (ad-special-forms): Use track-mouse iff bound.
5564 1999-08-13  Alakazam Petrofsky  <Alakazam@Petrofsky.Berkeley.CA.US>
5566         * play/hanoi.el: Mostly rewritten.  Customized.  To support an s2G
5567         doomsday clock, speed control is added and changes are made to
5568         allow large numbers of rings: rings now show the whole ring
5569         number, not just the last digit; consecutive rings are allowed to
5570         be the same size when necessary to fit all the rings in the
5571         window; and poles can be oriented horizontally.  Face support is
5572         thrown in gratuitously.
5573         (hanoi): Changed default number of rings back to 3.
5574         (hanoi-unix, hanoi-unix-64): New commands
5575         (hanoi-horizontal-flag, hanoi-move-period, hanoi-use-faces,
5576         hanoi-pole-face, hanoi-base-face, hanoi-even-ring-face,
5577         hanoi-odd-ring-face): New variables.
5578         (hanoi-internal, hanoi-current-time-float, hanoi-put-face,
5579         hanoi-n, hanoi-insert-ring, hanoi-goto-char, hanoi-sit-for,
5580         hanoi-ring-to-pos, hanoi-pos-on-tower-p): New functions.
5581         (hanoi-0): Renamed from hanoi0, for symmetry with hanoi-n.
5582         (hanoi-topos, hanoi-draw-ring): Removed.
5584 1999-08-12  Gerd Moellmann  <gerd@gnu.org>
5586         * faces.el (face-valid-attribute-values): Return an alist for
5587         families on ttys.
5588         (face-read-integer): Handle unspecified face attributes.  Add
5589         completion for `unspecified'.
5590         (read-face-attribute): Handle unspecified font attributes.
5591         (face-valid-attribute-values): Add `unspecified' to lists so that
5592         it can be chosen via completion.
5593         (face-read-string): Don't recognize "none" as input.
5595 1999-08-10  Dave Love  <fx@gnu.org>
5597         * sendmail.el (mail-specify-envelope-from): Fix quoting of doc
5598         string.
5600         * sun-curs.el: Require sun-fns.
5602 1999-08-10  Dave Love  <fx@gnu.org>
5604         * autorevert.el (auto-revert-mode): Add autoload cookie.
5606         * hscroll.el, auto-show.el: Files deleted -- we have built-in
5607         hscroll.
5609         * simple.el (hscroll-step, hscroll-point-visible)
5610         (hscroll-window-column): Remove now we have the mentioned real
5611         horizontal autoscrolling.
5613 1999-08-10  Richard M. Stallman  <rms@gnu.org>
5615         * mail/sendmail.el (sendmail-send-it): Let mail-specify-envelope-from
5616         control use of -f option.
5617         (mail-specify-envelope-from): New variable.
5618         (mail-from-style): Doc fix.
5620         * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): New fn.
5621         (easy-menu-get-map): New arg TO-MODIFY helps choose
5622         between local and global maps.
5623         (easy-menu-add-item): Pass TO-MODIFY arg to easy-menu-get-map.
5624         (easy-menu-change): Doc fix.
5626         * info-look.el (info-lookup-guess-c-symbol): Use skip-syntax-backward.
5627         (info-lookup-guess-default): Simplified and cleaned up.
5628         (info-lookup-guess-default*): Preserve point.
5630         * view.el (view-mode-disable): If buffer-read-only is nil,
5631         don't change it.
5633         * files.el (after-find-file): Disable View mode if buffer is no
5634         longer read-only.
5636         * view.el (view-mode-enable, view-mode-disable):
5637         Call force-mode-line-update.
5639 1999-08-10  Karl Heuer  <kwzh@gnu.org>
5641         * language/european.el, emacs-lisp/byte-opt.el: Fix provide call.
5642         * array.el, play/landmark.el, international/latin-3.el: Likewise.
5643         * sun-curs.el, term/sun-mouse.el, progmodes/simula.el: Likewise.
5645 1999-08-10  Alex Schroeder  <asc@bsiag.com>
5647         * ansi-color.el (ansi-color-to-text-properties): Added New state 5
5648         to prevent m-eating-bug.
5650 1999-08-10  Eli Zaretskii  <eliz@gnu.org>
5652         * term/pc-win.el (msdos-bg-mode): Remove.  Call
5653         frame-set-background-mode instead.  All callers changed.
5654         (msdos-face-setup): Don't force color display parameter, it is set
5655         by frame-set-background-mode.
5656         (make-msdos-frame): Call x-handle-reverse-video and
5657         face-set-after-frame-default.  Delete frame if creation failed.
5659         * faces.el (face-set-after-frame-default): Don't call
5660         make-face-x-resource-internal for the pc window-system.
5662 1999-08-10  Dave Love  <fx@melange.gnu.org>
5664         * emacs-lisp/advice.el (ad-make-single-advice-docstring): Treat
5665         case with no docstring specially.
5667 1999-08-09  Eli Zaretskii  <eliz@gnu.org>
5669         * complete.el (PC-do-completion): If completing on file name,
5670         reproduce str by concatenating its directory and basename parts.
5672 1999-08-07  Dave Love  <fx@gnu.org>
5674         * man.el (Man-softhyphen-to-minus): Revert previous change.  Avoid
5675         unibyte to multibyte conversion of search-forward (from Handa),
5676         but avoid the replacement if the language is Latin-N.
5678 1999-08-06  Richard Stallman  <rms@gnu.org>
5680         * emacs-lisp/eval-reg.el (elisp-eval-buffer): Handle all 5 args
5681         of eval-buffer.
5683         * international/mule.el (load-with-code-conversion):
5684         Pass t to eval-buffer for DO-ALLOW-PRINT.
5686 1999-08-06  Geoff Voelker  <voelker@cs.washington.edu>
5688         * ls-lisp.el (ls-lisp-delete-matching): List argument is now alist
5689         of filenames and attributes.
5690         (ls-lisp-insert-directory): Use directory-files-and-attributes
5691         for speed.
5693 1999-08-05  Dave Love  <fx@gnu.org>
5695         * auto-show.el (auto-show-mode): Fix :set.
5697         * widget.el (define-widget-keywords): Make dummy definition and
5698         comment-out its use.
5700 1999-08-04  Richard Stallman  <rms@gnu.org>
5702         * progmodes/tcl.el: Customized.
5704         * sql.el (sql-accumulate-and-indent): Instead of testing
5705         whether this is Emacs 20 before calling comint-accumulate,
5706         test whether comint-accumulate is defined.
5708 1999-08-04  Dave Love  <fx@gnu.org>
5710         * sgml-mode.el: Require outline when compiling.
5711         (sgml-mode-hook, html-mode-hook): Customize.
5712         (sgml-validate-command): Fix :version.
5713         (html-autoview-mode): Doc fix.
5715         * man.el (Man-softhyphen-to-minus): Fix for multibyte case, do
5716         nothing in Latin-N environment.
5718         * info.el (Info-find-node): Call info-initialize here.
5719         (info): Not here.
5720         (Info-file-list-for-emacs): Add message, dired-x, c, viper.
5722 1999-08-04  Richard Stallman  <rms@gnu.org>
5724         * ansi-color.el: New file.
5726 1999-08-04  Stefan Monnier  <monnier@cs.yale.edu>
5728         * dired.el (dired-string-replace-match): Return `nil' when no match
5729         found with global search.
5731         * ledit.el (ledit-zap-file, ledit-read-file, ledit-compile-file):
5732         * terminal.el (te-terminfo-directory):
5733         * mail/mailpost.el (post-mail-send-it):
5734         * mail/metamail.el (metamail-region):
5735         * progmodes/ada-mode.el (ada-tmp-directory):
5736         Use temporary-file-directory.
5738         * progmodes/compile.el (compilation-parsing-end,compilation-setup)
5739         (compilation-filter, compilation-forget-errors)
5740         (compilation-parse-errors): Use a marker instead of an integer for
5741         `compilation-parsing-end'.
5743         * progmodes/diff.el (diff-parse-differences):
5744         Use a marker instead of an integer for `compilation-parsing-end'.
5745         * textmodes/tex-mode.el (tex-compilation-parse-errors):
5746         Use a marker instead of an integer for `compilation-parsing-end'.
5748 1999-08-03  Richard Stallman  <rms@gnu.org>
5750         * buff-menu.el (Buffer-menu-mode-map): Add V for Buffer-menu-View.
5751         (Buffer-menu-mode): Doc fix.
5752         (Buffer-menu-view): New command.
5753         (Buffer-menu-view-other-window): New command.
5755 1999-08-03  Christopher J. Madsen  <chris_madsen@geocities.com>
5757         * replace.el (query-replace-regexp-eval)
5758         (replace-eval-replacement, replace-loop-through-replacements)
5759         (replace-match-string-symbols): New functions.
5760         (perform-replace): Allow REPLACEMENTS to be (FUNCTION . DATA).
5761         Use replace-loop-through-replacements.
5763 1999-08-03  Dave Pearson  <davep@hagbard.demon.co.uk>
5765         * play/5x5.el (5x5-mode-map): Bind C-p, C-n, C-b, C-f.
5766         (5x5): Doc fix.
5768 1999-08-03  Dave Love  <fx@gnu.org>
5770         * fortran.el (fortran-indent-new-line): Make it an alias
5771         for reindent-then-newline-and-indent.
5773 1999-08-03  Didier Verna  <verna@inf.enst.fr>
5775         * rect.el: All functions rewritten, except when noted above
5776         their declaration.  Below is a list of interface changes.
5777         (apply-on-rectangle): New function, mostly replaces
5778         `operate-on-rectangle'.  All callers changed.
5779         (move-to-column-force): Pass new second argument to `move-to-column'.
5780         (kill-rectangle): Added optional prefix arg to fill lines.
5781         (delete-rectangle): Ditto.
5782         (delete-whitespace-rectangle): Ditto.
5783         (delete-extract-rectangle): Ditto.
5784         (open-rectangle): Ditto.
5785         (clear-rectangle): Ditto.
5786         (delete-whitespace-rectangle-line): New function.
5787         (delete-rectangle-line): Added third arg FILL.
5788         (delete-extract-rectangle-line): Ditto.
5789         (open-rectangle-line): Ditto.
5790         (clear-rectangle-line): Ditto.
5792 1999-08-03  Ray Blaak  <blaak@gnu.org>
5794         * progmodes/delphi.el: New file.
5796 1999-08-02  Richard Stallman  <rms@gnu.org>
5798         * textmodes/outline.el (outline-previous-heading): New function.
5799         (outline-up-heading-all): Use outline-previous-heading.
5800         (outline-next-heading): Delete definition inserted yesterday.
5802 1999-08-01  Richard Stallman  <rms@gnu.org>
5804         * textmodes/outline.el (outline-next-heading): New function.
5805         (outline-up-heading-all): New function.
5806         (outline-font-lock-level): Using outline-up-heading-all.
5807         Tell outline-back-to-heading to accept invisible headings.
5809         * simple.el (shell-command-on-region): EXIT-STATUS can be a string.
5811         * mail/mh-utils.el (mh-find-path-run): New variable.
5812         (mh-find-path): Test and set that.
5813         Set mail-user-agent only the first time this function is run.
5814         (mail-user-agent): Defvar deleted.
5816         * info.el (info-initialize): New function.
5817         (info): Call info-initialize.
5818         (Info-directory-list): Initialize to nil,
5819         so info-initialize will set it up for real.
5821 1999-08-01  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
5823         * calendar/calendar.el (european-date-diary-pattern): Fix pattern so it
5824         does not interpret a time as the year in a day-month entry.
5826         * calendar/diary-lib.el: Change syntax table entry for colon in
5827         the diary as part of the european-date-diary-pattern fix.
5829 1999-08-01  Eli Zaretskii  <eliz@gnu.org>
5831         * international/mule.el (set-auto-coding): Allow whitespace before
5832         and after the "variable: value" pair.
5834 1999-07-30  Ken'ichi Handa  <handa@gnu.org>
5836         * mail/sendmail.el (sendmail-coding-system): Doc-string fixed.
5837         (default-sendmail-coding-system): Doc-string fixed.
5839 1999-07-30  Dave Love  <fx@gnu.org>
5841         * subr.el (assoc-delete-all): New function, renamed from
5842         frame-delete-all.
5844         * frame.el: Change comments to doc strings and other doc fixes.
5845         (frame-delete-all): Moved to subr.el as `assoc-delete-all'.
5846         Callers changed.
5847         (set-background-color, set-foreground-color, set-cursor-color)
5848         (set-mouse-color, set-border-color): Offer completion of colours.
5849         (cursor): Add :version to defgroup.
5851         * facemenu.el (list-colors-display): Make it work on ttys.
5852         (facemenu-read-color): Likewise.
5854 1999-07-30  Richard M. Stallman  <rms@gnu.org>
5856         * frame.el (frame-notice-user-settings): If background
5857         color has been changed, update background-mode from it,
5858         then update faces.
5860 1999-07-30  Wolfgang Rupprecht  <wolfgang@wsrcc.com>
5862         * net-utils.el (finger): Don't do indirect fingering.
5864 1999-07-30  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
5866         * cal-tex.el (cal-tex-cursor-filofax-daily): Add possibility of
5867         rules.  Add separator at end of holidays.
5868         (cal-tex-rules): New customizable variable.
5869         (cal-tex-latexify-list): Add optional parameter to put separator
5870         at end.
5872 1999-07-30  Bill Richter  <richter@steenrod.math.nwu.edu>
5874         * textmodes/fill.el (fill-individual-paragraphs): Calculate new
5875         fill prefix on each line while looping to the end of paragraph.
5876         End paragraph if it's longer than the existing fill prefix.
5878         * textmodes/fill.el (fill-context-prefix): Doc fix.
5880 1999-07-30  Dave Love  <fx@gnu.org>
5882         * font-lock.el (jit-lock): Fix :load, add :version.
5884 1999-07-30  Eli Zaretskii  <eliz@gnu.org>
5886         * term/pc-win.el (msdos-face-setup): Register standard colors in
5887         Vface_tty_color_alist.
5888         (face-color-supported-p, face_color_gray_p): New functions.
5890         * loadup.el: Don't load scroll-bar unless x-toolkit-scroll-bars-p
5891         is bound.
5893         * startup.el (command-line): Don't register default colors for
5894         MSDOS window-system.
5896 1999-07-29  Dave Love  <fx@gnu.org>
5898         * f90.el (f90-mode-syntax-table): Change backslash to escape, not
5899         charquote.
5901         * lisp-mode.el (eval-defun): Re-written to avoid
5902         capturing variables.
5904         * picture.el (picture-beginning-of-line): Don't call
5905         hscroll-point-visible now we have real autoscrolling.
5906         (picture-end-of-line, picture-newline, picture-open-line):
5907         Likewise.
5909         * international/latin-8.el: New file.
5910         * international/latin-9.el: New file.
5912 1999-07-28  Dave Love  <fx@gnu.org>
5914         * mouse.el (x-fixed-font-alist): Add lucidasanstypewriter.
5916         * msb.el: Require cl only when compiling.
5917         (msb--home-dir): Deleted.
5918         (msb--format-title): Use abbreviate-file-name.
5919         (msb--choose-file-menu): Simplify string comparison.
5921 1999-07-28  Gerd Moellmann  <gerd@gnu.org>
5923         * faces.el (toolbar): Add face definition for mono displays.
5925 1999-07-27  Richard M. Stallman  <rms@gnu.org>
5927         * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
5929         * frame.el (frame-initialize): When setting frame-initial-frame-alist,
5930         force copying of default-frame-alist.
5932 1999-07-26  Ken'ichi Handa  <handa@gnu.org>
5934         * ps-mule.el (ps-mule-begin-job): Fix malformed regexp.
5936 1999-07-26  Richard M. Stallman  <rms@gnu.org>
5938         * frame.el (set-mouse-color): If new color is nil,
5939         really respecify the current color.
5941 1999-07-26  Gerd Moellmann  <gerd@gnu.org>
5943         * faces.el (bitmap-area): Change background of face `bitmap-area'
5944         to white for mono displays.
5946 1999-07-26  Kenichi Handa  <handa@etl.go.jp>
5948         * international/ccl.el (ccl-embed-symbol): New function.
5949         (ccl-program-p): Deleted.  Now it's implemented in C code.
5950         (ccl-compile-call): Use ccl-embed-symbol to embed a symbol.
5951         (ccl-compile-translate-character): Likewise.
5952         (ccl-compile-map-single): Likewise.
5953         (ccl-compile-multiple-map-function): Likewise.
5954         (declare-ccl-program): Doc-string modified.
5955         (check-ccl-program): Check compiled CCL code by ccl-program-p.
5957 1999-07-25  Ken'ichi Handa  <handa@etl.go.jp>
5959         * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
5961 1999-07-25  Markus Rost  <rost@gnu.org>
5963         * cus-edit.el (custom-save-variables, custom-save-faces):  Sort
5964         the entries to make custom-file more readable.
5966 1999-07-25  Richard M. Stallman  <rms@gnu.org>
5968         * cus-edit.el (custom-save-delete): Avoid error for empty .emacs.
5970         * emacs-lisp/edebug.el: Delete compatibility code.
5971         (edebug-next-token-class): If . is followed by a digit,
5972         return `symbol' for the token class.
5974         * startup.el (command-line): If we don't find the user's init file,
5975         set user-init-file to nil.
5977 1999-07-25  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
5979         * info-look.el (info-lookup-interactive-arguments): Add optional
5980         argument query for new choice of help mode.
5981         (info-lookup-symbol):  Use it.
5982         (info-lookup-file): Ditto.
5983         (info-lookup): Don't switch to other window, if already in Info
5984         buffer.
5986 1999-07-23  Dave Love  <fx@gnu.org>
5988         * fortran.el (fortran-mode-syntax-table): Change `\' to `\'
5989         syntax.
5990         (fortran-fontify-string, fortran-match-!-comment): Deleted.
5991         (fortran-font-lock-syntactic-keywords): New variable.
5992         (fortran-mode): Use it.
5993         (fortran-font-lock-keywords-1): Don't do comments.
5994         (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Save
5995         match data.
5997         * textmodes/sgml-mode.el (sgml-validate-command): Use nsgmls.
5999         * msb.el (msb-menu-bar-update-buffers): Renamed from
6000         menu-bar-update-buffers.
6001         (msb-custom-set, msb--toggle-menu-type): Call
6002         msb-menu-bar-update-buffers.
6003         (msb-mode): Revise the hook setting.
6005         * font-lock.el (turn-on-font-lock): Use tty-display-color-p.
6007 1999-07-23  Gerd Moellmann  <gerd@gnu.org>
6009         * font-lock.el, help.el, simple.el: Re-integrate previously
6010         described changes that were lost due to errors while checking them
6011         in.
6013 1999-07-23  Kevin Blake  <kblake@ticnet.com>
6015         * font-lock.el (lisp-font-lock-keywords-2): Fix regexp.
6017 1999-07-23  Ken'ichi Handa  <handa@etl.go.jp>
6019         * international/encoded-kb.el
6020         (encoded-kbd-self-insert-iso2022-7bit): Don't insert the character
6021         but push it to unread-command-events.
6022         (encoded-kbd-self-insert-iso2022-8bit): Likewise.
6023         (encoded-kbd-self-insert-sjis): Likewise.
6024         (encoded-kbd-self-insert-big5): Likewise.
6026         * textmodes/fill.el (fill-region-as-paragraph): Avoid backing up
6027         before left margin and fill-prefix by fill-find-break-point.
6029 1999-07-21  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
6031         * info-look.el (info-lookup-setup-mode): Don't give up, if
6032         info-lookup-make-completions returns an error.
6033         (info-lookup-maybe-add-help :mode 'latex-mode): Use Info file
6034         name latex, not latex2e.
6036 1999-07-21  Richard M. Stallman  <rms@gnu.org>
6038         * replace.el (perform-replace): Turn off case-fold-search
6039         if FROM-STRING argument has uppercase in it.
6041 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6043         * jit-lock.el (jit-lock-after-change): Do it only if jit-lock
6044         mode is on.  Don't use end of changed text.
6046 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6048         * cl-extra.el (cl-make-hash-table): Renamed from make-hash-table.
6049         (cl-hash-table-p): Renamed from hash-table-p.
6050         (cl-hash-table-count): Renamed from hash-table-count.
6051         (maphash): Alias to cl-maphash removed.
6052         (gethash): Likewise.
6053         (puthash): Likewise.
6054         (remhash): Likewise.
6055         (clrhash): Likewise.
6057 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6059         * jit-lock.el (jit-lock-stealth-fontify): Don't call sit-for with
6060         third arg non-nil.  See comment there why this isn't a good idea.
6062 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6064         * jit-lock.el (jit-lock-stealth-fontify): Use with-temp-message.
6066         * jit-lock.el (jit-lock-stealth-fontify): Widen buffer, and call
6067         sit-for with 3rd arg non-nil to prevent redisplay.
6069 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6071         * image.el (image-type-from-file-header): If file doesn't
6072         have a directory part, add data-directory.
6074 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6076         * tooltip.el (tooltip-gud-tips-p): Set default to nil.
6077         (tooltip-activate-mouse-motions-if-enabled): Don't activate mouse
6078         motion handling when tooltip-gud-tips-p is nil.
6080 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6082         * tooltip.el (tooltip-mode): Don't use `plusp'.
6083         (tooltip-active): Use initial value of nil.
6085         * jit-lock.el (jit-lock-mode): Don't use `plusp'.
6087 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6089         * bindings.el (make-mode-line-mouse-sensitive): Add key
6090         definitions for `top-line'.
6092 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6094         * faces.el (top-line): New face.
6096 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6098         * image.el (image-type-regexps): Add regexp for PS files.
6100 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6102         * faces.el (set-face-attribute): Fix wrong handling of frame
6103         begin equal to t.
6105 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6107         * image.el (image-type-regexps): Add PNG format.
6109 1999-07-21  Dave Love  <fx@gnu.org>
6111         * bindings.el (mode-line-modified): New variable.
6112         (mode-line-mode-menu-1): Switch to appropriate window before
6113         showing menu.
6115 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6117         * faces.el (face-underline): Removed.
6118         (face-underline-color): Ditto.
6120 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6122         * faces.el (face-x-resources): Fix typo.
6124 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6126         * faces.el: Remove handling of `:relief', extend handling of
6127         `:box'.
6128         (frame-set-background-mode): Choose new defface specs after
6129         frame parameters have changed.
6131         * cus-face.el: Ditto.
6133 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6135         * custom.el (defface): Extend documentation to include new
6136         face attributes.
6138         * cus-face.el (custom-face-attributes): Add overline,
6139         strike-through, box.
6141         * faces.el (face-valid-attribute-values): Handle overline,
6142         strike-through, box.
6143         (face-attribute-name-alist): Add pairs for new face attributes.
6144         (describe-face): Handle new face attributes.
6146 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6148         * faces.el (face-x-resources): Add overline, strike-through, box.
6150 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6152         * enriched.el (enriched-translations): Add `display' and
6153         "x-display".
6154         (enriched-handle-display-prop): New.
6155         (enriched-decode-display-prop): New.
6157         * format.el (top-level): Give `display' property
6158         `format-list-atomic-p.
6159         (format-annotate-single-property-change): Test that property.
6160         If present, treat list property values like atoms.
6162 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6164         * cus-face.el (custom-face-attributes): Use `choice' everywhere
6165         so that "*" can be entered.
6167 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6169         * cus-face.el (custom-face-attributes): Don't use `#''.
6171 1999-07-21  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
6173         * cus-face.el (custom-face-attributes): Return underline
6174         face attribute directly from the second lambda of underline.
6176 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6178         * jit-lock.el (jit-lock-stealth-verbose): Set to nil.
6180         * frame.el (after-setting-font-hooks): New variable.
6181         (set-frame-font): Run those hooks.
6183         * jit-lock.el (jit-lock-function): Use font-lock-fontify-region.
6185         * faces.el (set-face-attribute): Fix doc string.
6187 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6189         * cus-face.el (custom-face-attributes): Accept color name.
6191         * faces.el (face-underline-p): Accept unspecified underlining.
6192         (face-underline): Ditto.  Fix doc string.
6194 1999-07-21  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
6196         * faces.el (face-underline-color): New function.
6198 1999-07-21  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
6200         * cus-face.el (custom-face-attributes): Support underline coloring.
6201         Added slot to choose a color.
6203         * faces.el (face-underline): New function.
6204         (face-underline-p): Support underline coloring.
6205         Return nil only if the underline attribute is 'normal.
6206         (set-face-underline): New function.
6207         (face-valid-attribute-values): Support underline coloring.
6209 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6211         * image.el (insert-image): Use `display' instead of `glyph'
6212         as text property name.
6213         (put-image): Ditto.
6214         (image-type-from-file-header): Use insert-file-contents-literally.
6216 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6218         * easymenu.el (easy-menu-do-add-item): Don't use the empty
6219         string to indicate separators.
6221 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6223         * jit-lock.el (jit-lock-stealth-fontify): Bind message-log-max
6224         instead of message-log.
6226 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6228         * faces.el (bitmap-area): New face.
6230 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6232         * image.el (insert-image): New.
6234 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6236         * frame.el (blink-cursor): Set the symbol's value.
6237         (show-trailing-whitespace): Change group to font-lock.
6239 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6241         * jit-lock.el: New.
6242         * font-lock.el: Add jit-mode as new support mode.
6244         * font-lock.el (font-lock-fontify-keywords-region): Stop when
6245         reaching end instead of letting re-search-forward signal an error.
6246         (demand-lock-mode): New.
6247         (font-lock-turn-on-thing-lock): Add demand-lock-mode.
6248         (font-lock-turn-off-thing-lock): Ditto.
6249         (font-lock-after-fontify-buffer): Ditto.
6250         (font-lock-after-unfontify-buffer): Ditto.
6252 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6254         * gs.el: New file.
6256         * startup.el (command-line-1): Activate tooltip mode if
6257         interactive.
6259 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6261         * faces.el (toolbar): Grey default background.
6262         (modeline): Ditto.
6264         * image.el (image-type-regexps): New.
6265         (image-type-from-file-header): New.
6266         (create-image): Call it.
6268 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6270         * image.el: New file.
6272 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6274         * bindings.el (mode-line-format): Replace `mode-name' with
6275         `(:eval mode-line-mode-name)'.
6276         (mode-line-mode-name): New.
6277         (make-mode-line-mouse-sensitive): Don't change default value
6278         of `mode-name'.
6280 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6282         * tooltip.el: New file.
6284 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6286         * bindings.el (make-mode-line-mouse-sensitive): Use down-mouse-3
6287         instead of mouse-3 to pop up menus.
6288         (mode-line-kill-buffer): Removed.
6289         (make-mode-line-mouse-sensitive): Pop mouse buffer menu over
6290         buffer name.
6291         (mode-line-buffer-menu-1): Removed.
6293         * startup.el (command-line-1): Call make-mode-line-mouse-sensitive.
6295         * bindings.el (mode-line-buffer-identification-keymap): New.
6296         (mode-line-buffer-menu-keymap): New.
6297         (mode-line-mode-menu-keymap): New.
6298         (mode-line-unbury-buffer): New.
6299         (mode-line-other-buffer): New.
6300         (mode-line-kill-buffer): New.
6301         (mode-line-buffer-menu-1): New.
6302         (mode-line-mode-menu-1): New.
6303         (make-mode-line-mouse-sensitive): New.
6305 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6307         * help.el (describe-key-briefly): Handle mode line strings
6308         with local-map properties.
6309         (describe-key): Ditto.
6310         (mode-line-key-binding): New.
6312 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6314         * scroll-bar.el (scroll-bar-timer): New.
6315         (scroll-bar-toolkit-scroll): Start and cancel scroll-bar-timer.
6317 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6319         * scroll-bar.el (scroll-bar-toolkit-scroll): Handle `top'
6320         and `bottom'.
6322 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6324         * scroll-bar.el (scroll-bar-toolkit-scroll): New.
6325         (global): Use different key bindings if using tookit scroll bars.
6327 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6329         * faces.el (modeline): Define mode line face with relief for
6330         class color, only.
6331         (toolbar): New face.
6333 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6335         * frame.el (frame-initialize): Set frame-creation-function to
6336         tty-create-frame-with-faces.
6338         * faces.el (frame-set-background-mode): Make it work for
6339         window-system nil.
6341         * faces.el (tty-create-frame-with-faces): New.
6342         (face-set-after-frame-default): Make it work for TTY frames.
6344 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6346         * faces.el (face-valid-attribute-values): Use tty-defined-colors.
6347         Return a list of one font family for TTYs.  Don't return bitmap
6348         file paths for TTY frames.
6350         * faces.el: Add face specs for tty displays to basic faces.
6352         * font-lock.el (font-lock-comment-face): Add spec for color tty.
6353         (font-lock-string-face): Ditto.
6354         (font-lock-keyword-face): Ditto.
6355         (font-lock-builtin-face): Ditto.
6356         (font-lock-function-name-face): Ditto.
6357         (font-lock-variable-name-face): Ditto.
6358         (font-lock-type-face): Ditto.
6359         (font-lock-constant-face): Ditto.
6360         (font-lock-warning-face): Ditto.
6362 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6364         * startup.el (command-line): Register default tty colors.
6366         * faces.el (face-spec-set-match-display): Recognize `type tty'.
6368 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6370         * faces.el (modeline): For X frames, use a modeline with relief.
6372 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6374         * faces.el (frame-update-faces): Copied from 20.2.
6375         (frame-update-face-colors): Ditto.  Code removed that isn't
6376         applicable in the new face implementation.
6378 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6380         * frame.el (show-trailing-whitespace): New.
6382         * faces.el (trailing-whitespace): New basic face.
6384 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6386         * cus-face.el (custom-facep): Always define as alias for facep.
6388         * cus-face.el (custom-face-attributes): Use choice widgets.
6389         Remove :bold and :italic.
6391 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6393         * faces.el (face-charset-registries): Removed since fontset.el
6394         is no always loaded.
6396 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6398         * faces.el (internal-get-face): Added as obsolete function for
6399         compatibility.
6401 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6403         * frame.el (blink-cursor-end): Call show-cursor.
6404         (blink-cursor-mode): Ditto.
6406 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6408         * faces.el (face-spec-reset-face): Reset all attributes to
6409         `unspecified'.
6410         (face-spec-set): Use it.
6412 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6414         * faces.el (read-all-face-attributes): Bug fix.
6415         (face-read-integer): Allow nil default value.
6416         (face-valid-attribute-values): Use symbol names of attribute
6417         values for completion list.
6419 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6421         * faces.el (internal-find-face): Define for compatibility with
6422         20.2.
6423         (face-id): Likewise.
6425         * faces.el (face-id): Return the ID of a realized face for ASCII.
6427         * fontset.el (x-charset-registries): Removed.  Now in faces.el.
6428         (x-complement-fontset-spec): Use face-charset-registries.
6430         * faces.el (face-font-selection-order): Set font selection order
6431         from Lisp.
6432         (face-alternative-font-family-alist): Set alternative font
6433         families from Lisp.
6435 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6437         * faces.el (set-face-charset-registries): Set symbol value.
6439 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6441         * faces.el (face-set-after-frame-default): Call function
6442         internal-merge-in-global-face.
6444 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6446         * faces.el (face-list): Return symbols from face-global-alist.
6448         * faces.el (face-list): Return a copy of the face name list so
6449         that it cannot be modified from outside (facemenu.el uses
6450         nreverse, for example).
6452         * cus-face.el (custom-face-attributes): Add :bold and :italic
6453         for compatibility with old code.
6455         * faces.el (set-face-attributes-from-resources): Additional
6456         frame parameter.
6457         (make-face-x-resource-internal): Set attributes from resources
6458         for a given frame or all frames.
6460 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6462         * faces.el (all-faces): Removed.
6464         * custom.el (defface): Add new face attributes to function
6465         comment.
6467         * font-lock.el (font-lock-comment-face): Use new face attribute
6468         names.
6469         (font-lock-string-face): Ditto.
6470         (font-lock-keyword-face): Ditto.
6471         (font-lock-builtin-face): Ditto.
6472         (font-lock-function-name-face): Ditto.
6473         (font-lock-variable-name-face): Ditto.
6474         (font-lock-type-face): Ditto.
6475         (font-lock-reference-face): Ditto.
6476         (font-lock-warning-face): Ditto.
6477         ((boundp 'font-lock-face-attributes)): Ditto.
6479         * cus-face.el (custom-face-attributes): Use new face attributes.
6481         * faces.el (set-face-attribute-from-resource): Initialize
6482         from resources only for X and W32.
6484         * cus-face.el (custom-declare-face): Don't make frame-local
6485         faces.
6487         * faces.el (describe-face): Use princ instead of insert.
6489         * faces.el: Add XLFD manipulation functions from 20.2 again
6490         because fontset.el uses them.
6491         (face-set-after-frame-default): Add empty definition.
6493 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6495         * faces.el (make-face): Correct typo.
6496         (set-face-attribute-from-resource): Use let*.
6497         (face-underline-p): Correct typo.
6498         (face-inverse-video-p): Ditto.
6499         (set-face-stipple): Ditto.
6500         (face-read-string): Make completion-list optional parameter.
6502 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6504         * faces.el (face-charset-registries): Alist mapping charset
6505         symbols to registries and encoding.
6507 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6509         * frame.el (blink-cursor-mode): Use interactive spec "P".
6511 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6513         * frame.el (blink-cursor-mode): Function to toggle blinking cursor
6514         mode.  The cursor of selected_window blinks if the mode is enabled.
6516 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6518         * simple.el (next-history-element): Set point to the end of the
6519         prompt if minibuffer-prompt-in-buffer.
6521 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6523         * faces.el (x-font-regexp): Add sub-expression parentheses for
6524         several font name components.
6526 1999-07-21  Gerd Moellmann  <gerd@acm.org>
6528         * faces.el (set-face-relief): Use index 12 for relief.
6529         (face-fill-in): Set relief from data.
6530         (internal-make-face): Init relief to zero.
6532         * faces.el (face-spec-set): Call modify-face with additional
6533         parameters for relief and fixed-p.
6535 1999-07-21  Gerd Moellmann  <gerd@acm.org>
6537         * cus-face.el: ':fixed and ':relief added.
6539         * faces.el (describe-face): Add fixed font attribute and relief.
6540         (face-attr-match-p): Ditto.
6541         (face-attr-construct): Ditto.
6542         (face-spec-set): Ditto.
6544 1999-07-21  Gerd Moellmann  <gerd@acm.org>
6546         * faces.el (internal-make-face): Function to create a Lisp vector
6547         suitable for representing a face.
6548         (make-face): Use it instead of make-vector.
6549         (x-create-frame-with-faces): Use it instead of vector.
6550         (internal-facep): Increase vector size to 14.
6551         (internal-make-face): Ditto.
6552         (face-relief): Access relief thickness.
6553         (face-fixed-p): Access fixed font attribute.
6554         (set-face-fixed-p): Set fixed font attribute.
6555         (set-face-relief): Set relief attribute.
6556         (internal-face-interactive-int): Read int attribute of face.
6557         (modify-face): Add fixed-p and relief parameters.
6558         (copy-face): Handle fixed-p and relief.
6559         (face-equal): Compare fixed-p and relief.
6560         (face-differs-from-default-p): Ditto.
6561         (face-nontrivial-p): Add fixed-p and relief.
6563 1999-07-21  Gerd Moellmann  <gerd@acm.org>
6565         * faces.el (eval-when-compile): Add set-face-shadow-thickness.
6566         (internal-facep): Increase vector size.
6567         (make-face): Ditto.
6568         (face-shadow-thickness): Added.
6569         (set-face-shadow-thickness): Added.
6570         (modify-face): Add optional shadow-thickness parameter.
6571         (make-face-x-resource-internal): Add shadows.
6572         (copy-face): Ditto.
6573         (face-equal): Ditto.
6574         (face-differs-from-default-p): Ditto.
6575         (face-nontrivial-p): Ditto.
6576         (face-attr-match-p): Ditto.
6577         (face-attr-construct): Ditto.
6578         (face-spec-set): Ditto.
6579         (face-fill-in): Ditto.
6581 1999-07-21  Gerd Moellmann  <gerd@acm.org>
6583         * bench.el (bench-mark-split-window): New bench mark.
6585 1999-07-21  Gerd Moellmann  <gerd@acm.org>
6587         * faces.el (set-face-font): Don't pass default font to
6588         x-resolve-font so that font will not have to be of the same
6589         size.
6591 1999-07-20  Dave Love  <fx@gnu.org>
6593         * wid-edit.el (widget-use-overlay-change): Uncustomize and make it
6594         unconditionally t.
6596 1999-07-20  Karl Heuer  <kwzh@gnu.org>
6598         * font-lock.el (c++-font-lock-extra-types): Add "type_info".
6600 1999-07-20  Dave Love  <fx@gnu.org>
6602         * help.el (describe-variable): Fix test for customizability.
6604         * simple.el (append-to-buffer, prepend-to-buffer, copy-to-buffer):
6605         Check for readonly buffer in interactive spec.
6606         (zap-to-char, kill-line, kill-region, comment-region, kill-word)
6607         (backward-kill-word): Add * to interactive spec.
6609         * underline.el (underline-region, ununderline-region): Add * to
6610         interactive spec.
6612         * fill.el (canonically-space-region, justify-current-line): Add *
6613         to interactive spec.
6614         (fill-region-as-paragraph, fill-paragraph, fill-region)
6615         (fill-nonuniform-paragraphs, fill-individual-paragraphs): Check
6616         readonly buffer in interactive spec.
6618         * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
6619         (backward-kill-sentence, kill-sentence): Add * to interactive
6620         spec.
6622 1999-07-19  Richard M. Stallman  <rms@gnu.org>
6624         * dired-aux.el (dired-do-shell-command): Doc fix.
6626         * shell.el (shell-unquote-argument): New function.
6627         (shell-directory-tracker): Use shell-unquote-argument.
6628         * comint.el (comint-arguments): Handle \ followed by space or tab.
6630 1999-07-19  John Wiegley  <jwiegley@borland.com>
6632         * term.el (ansi-term-fg-faces-vector): Added support for ANSI
6633         color codes 39 and 49, which by the way lynx uses them seem to
6634         mean "foreground reset" and "background reset".
6636 1999-07-19  Karl Heuer  <kwzh@gnu.org>
6638         * font-lock.el (c++-keywords): Add "typeid".
6640         * term/w32-win.el (mouse-set-font): If user uses w32 dialog but
6641         selects no font, treat that as zero selections, not one.
6643 1999-07-19  Dave Love  <fx@gnu.org>
6645         * info.el (Info-search): Don't lose with empty regexp.
6647         * version.el: Cater for (free) `ident' program, not `which'.
6649         * hl-line.el: New file.
6651         * mouse.el (mouse-major-mode-menu): Default to menu-bar-edit-menu
6652         for modes which don't define menus.
6654 1999-07-16  Richard M. Stallman  <rms@gnu.org>
6656         * webjump.el (webjump-sample-sites): Update some URLs.
6658 1999-07-14  Richard Stallman  <rms@gnu.org>
6660         * Version 20.4 released.
6662 1999-07-14  Andreas Schwab  <schwab@gnu.org>
6664         * compare-w.el (compare-windows): Try to find the next window in
6665         the current frame before looking at the other frames.
6667 1998-07-12  Oleg S. Tihonov  <ost@benetnash.ffke-campus.mipt.ru>
6669         * language/cyrillic.el ("Cyrillic-KOI8", "Cyrillic-ALT"):
6670         Use cyrillic-jcuken as default input method.
6672 1999-07-12  Richard Stallman  <rms@gnu.org>
6674         * progmodes/cc-engine.el (c-inside-bracelist-p): Tighter test for
6675         Java anonymous array expressions ("new Foo[] {.. bracelist ..}").
6677         * ispell.el (ispell-dictionary-alist-6): Change charset for Russian.
6678         (ispell-local-dictionary-alist): Add koi8-r for character set.
6680         * textmodes/flyspell.el (flyspell-get-word):
6681         Add special handling for when ispell-otherchars is empty.
6683 1999-07-12  Espen Skoglund  <espensk@stud.cs.uit.no>
6685         * progmodes/pascal.el (pascal-beg-of-defun): More intuitive behavior
6686         when having nested functons.
6687         (pascal-indent-nested-functions) (pascal-indent-line)
6688         (pascal-calculate-indent) (pascal-get-lineup-indent): Support for
6689         indenting nested functions.
6691 1999-07-09  Richard Stallman  <rms@gnu.org>
6693         * add-log.el (add-log-current-defun): Remove trailing `=' in C modes.
6695 1999-07-08  Espen Skoglund  <espensk@stud.cs.uit.no>
6697         * pascal.el (pascal-calculate-indent): Fixed a bug occuring when
6698         the `end' keyword was in the very beginning of the buffer.
6700 1999-07-08  Richard Stallman  <rms@gnu.org>
6702         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Doc fix.
6704         * term.el (term-emulate-terminal): Avoid infinite loop
6705         in strange case where minibuffer window is selected but not active.
6707 1999-07-07  Stephen Eglen  <stephen@gnu.org>
6709         * progmodes/octave-inf.el (inferior-octave-directory-tracker):
6710         Change regexp so that it doesn't match commands beginning with `cd'.
6712 1999-07-07  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
6714         * mail/rmail.el (mail-unsent-separator): Add a missing \\|.
6716 1999-07-06  Richard Stallman  <rms@gnu.org>
6718         * hscroll.el (hscroll-minibuffer-hook): New function.
6719         (hscroll-global-mode): Add and remove that hook.
6720         Set hscroll-old-truncate-was-global's default value.
6722 1999-07-05  Richard Stallman  <rms@gnu.org>
6724         * files.el (revert-buffer): Don't preserve point here.
6725         (revert-buffer-insert-file-contents-function): Doc fix.
6727         * isearch.el (isearch-process-search-char): Write octal 200 correctly.
6729         * startup.el (normal-top-level-add-subdirs-to-load-path): Avoid
6730         doing a `stat' when it isn't necessary because that can cause
6731         trouble when an NFS server is down.
6733 1999-07-04  Richard Stallman  <rms@gnu.org>
6735         * hscroll.el (hscroll-window-maybe): Do nothing in the minibuffer.
6737 1999-07-03  Richard Stallman  <rms@gnu.org>
6739         * isearch.el (isearch-quote-char): Call unibyte-char-to-multibyte
6740         for \200...\240 also.
6741         (isearch-printing-char): Use unibyte-char-to-multibyte.
6743 1999-07-02  Richard Stallman  <rms@gnu.org>
6745         * frame.el (minibuffer-frame-alist): Use defcustom.
6746         (pop-up-frame-alist): Likewise.
6747         (initial-frame-alist): Specify * in the doc string.
6749         * hscroll.el (hscroll-mode): Make it a permanent local.
6750         (hscroll-mode): Don't cancel the timer
6751         if HScroll mode is enabled in some other buffer.
6753         * isearch.el (isearch-done): If search ends in middle of intangible
6754         text (due to text property), move on to the limit of that text.
6756 1999-07-01  Andrew Innes  <andrewi@gnu.org>
6758         * man.el (Man-build-man-command): Use value of null-device,
6759         instead of hard-coding "/dev/null".
6761         * dos-w32.el (untranslated-canonical-name): Avoid expanding
6762         ange-ftp file names, which might force ange-ftp to prompt for a
6763         password.
6765         * ange-ftp.el (ange-ftp-load): Bind load-force-doc-strings to t,
6766         to prevent references to temp files.
6768 1999-06-30  Richard Stallman  <rms@gnu.org>
6770         * progmodes/sh-script.el (sh-feature): If nothing is known
6771         about the given shell, use the values for `sh'.
6773 1999-06-30  Andre Spiegel  <spiegel@inf.fu-berlin.de>
6775         * vc.el (vc-fetch-cvs-status): Use "-l" option for "cvs status",
6776         to make it non-recursive.
6778         * vc-hooks.el (vc-find-cvs-master): Set case-fold-search correctly.
6780 1999-06-29  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
6782         * auto-show.el (auto-show-mode): Fix Typo in :set.
6784 1999-06-29  Richard M. Stallman  <rms@gnu.org>
6786         * progmodes/sh-script.el (sh-mode): When setting syntax
6787         table, default to the standard one.
6789 1999-06-27  Richard M. Stallman  <rms@gnu.org>
6791         * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
6793 1999-06-27  Stefan Monnier  <monnier@cs.yale.edu>
6795         * textmodes/reftex.el (reftex-pop-to-bibtex-entry): Don't pop up
6796         a frame when `return' is requested (even if pop-up-frames = t)
6797         * textmodes/bibtex.el (bibtex-mode): `font-lock-mark-block-function'
6798         should only be set for the bibtex buffer.
6800         * emacs-lisp/autoload.el (generated-autoload-file): Doc fix.
6802         * progmodes/compile.el: Deal with compilation-error-screen-columns
6803         being buffer-local.
6805 1999-06-27  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
6807         * comint.el (comint-password-prompt-regexp): Allow "(again)".
6809 1999-06-27  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
6811         * cal-x.el (calendar-only-one-frame-setup): New function.
6812         * calendar.el (calendar): Call it if requested.
6814 1999-06-24  Karl Heuer  <kwzh@gnu.org>
6816         * startup.el (iso-8859-n-locale-regexp): Doc fix.
6818 1999-06-22  Richard M. Stallman  <rms@gnu.org>
6820         * mail/supercite.el (sc-emacs-features): Doc fix.
6822 1999-06-22  Karl Heuer  <kwzh@gnu.org>
6824         * files.el (auto-mode-alist): Add pike-mode.
6826 1999-06-20  Paul R. Eggert  <eggert@twinsun.com>
6828         * tar-mode.el (tar-header-block-tokenize): Don't assume that the
6829         last byte of a numeric field is a space or a NUL.  Parse it as
6830         potentially part of the number.  This is used by GNU tar
6831         1.12.64012 to handle larger values.
6833 1999-06-20  Karl Heuer  <kwzh@gnu.org>
6835         * custom.el (custom-handle-keyword): Fix error message.
6837 1999-06-18  Andrew Innes  <andrewi@gnu.org>
6839         * mail/smtpmail.el (smtpmail-send-it): Use
6840         convert-standard-filename to make file names for queued mail safe
6841         on Windows (`:' is invalid in file names on Windows).
6843 1999-06-17  Kenichi Handa  <handa@etl.go.jp>
6845         * international/mule-cmds.el (describe-current-input-method):
6846         Current-input-method is string.
6847         (toggle-input-method): Docstring fixed.
6849         * international/mule-diag.el
6850         (describe-current-coding-system-briefly): Fix format string.
6852         * international/mule-util.el (coding-system-eol-type-mnemonic):
6853         Docstring modified.  Return a string.
6855 1999-06-17  Alex Schroeder  <a.schroeder@bsiag.ch>
6857         * sql.el (sql-input-ring-file-name): Doc fix.
6859 1999-06-17  Richard M. Stallman  <rms@gnu.org>
6861         * calendar/cal-x.el (special-display-buffer-names):
6862         Don't put (get-file-buffer diary-file) on this list.
6864 1999-06-17  Mark W Maimone  <mwm@helios.jpl.nasa.gov>
6866         * play/mpuz.el (mpuz-try-proposal): Fix message call.
6867         Don't penalize player for certain impossible guesses.
6869 1999-06-16  Andrew Innes  <andrewi@gnu.org>
6871         * ls-lisp.el (ls-lisp-format-time): If timestamp is invalid,
6872         return the string "Unk  0  0000" so at least it appears to be a
6873         valid timestamp to `dired-move-to-filename-regexp'.
6875 1999-06-15  Ken'ichi Handa  <handa@gnu.org>
6877         * ps-print.el (ps-control-character): Fix previous change.
6879 1999-06-15  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
6881         * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Avoid
6882         multiple output of the last message.
6884 1999-06-14  Eli Zaretskii  <eliz@gnu.org>
6886         * term/internal.el (IT-display-table-setup): Do not remap \222 to
6887         the ASCII apostrophe, as most DOS codepages have some other glyph
6888         there.
6890 1999-06-14  Ken'ichi Handa  <handa@gnu.org>
6892         * language/ethio-util.el (setup-ethiopic-environment-internal):
6893         Use quail-activate-hook instead of obsolete hook quail-mode-hook.
6894         (exit-ethiopic-environment): Likewize.
6896 1999-06-12  Richard M. Stallman  <rms@gnu.org>
6898         * cus-start.el (scroll-preserve-screen-position): Fix typo in type.
6900 1999-06-12  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
6902         * emulation/crisp.el (crisp-mode): (defcustom) Initialize with
6903         custom-initialize-default to avoid infinite loop.
6904         (crisp-mode): (defun) Call transient-mark-mode here, not when
6905         loading the file.  Run crisp-mode-hook here, and run
6906         crisp-load-hook when loading the file.
6908         * mail/rmailout.el (rmail-output-read-rmail-file-name): If in
6909         rmail-summary buffer, search for pattern in rmail-file.
6911         * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Fix typo.
6913         * progmodes/cperl-mode.el (cperl-invalid-face): Fix custom type.
6915         * ps-print.el (ps-printer-name): Fix custom type.
6917 1999-06-12  Reto Zimmermann  <reto@synopsys.com>
6919         * progmodes/vhdl-mode.el (vhdl-port-copy): Fix parsing bug.
6920         (vhdl-port-paste-generic-map): Fix indentation bug.
6921         (vhdl-port-paste-port-map): Fix indentation bug.
6922         (vhdl-scan-file-contents): Make scanning case insensitive.
6924 1999-06-11  Richard M. Stallman  <rms@gnu.org>
6926         * files.el (write-file): When buffer is not already visiting a file,
6927         don't put buffer name in the minibuffer, just make it the default.
6928         Also handle just directory as arg usefully in that case.
6930         * simple.el (sendmail-user-agent-compose):
6931         Ignore case when inserting the rest of the "other" headers.
6933         * help.el (help-for-help): Mention C-h C-i.  Clear up C-h n.
6935         * info-look.el (info-lookup-file, info-lookup-symbol): Doc fix.
6936         (info-lookup-interactive-arguments): Never insert the default
6937         into the minibuffer automatically.
6939         * emacs-lisp/cl-extra.el (getf): Don't call get*.
6941 1999-06-09  Richard M. Stallman  <rms@gnu.org>
6943         * simple.el (shell-command): Avoid printing "mark set" message.
6945 1999-06-09  Dave Love  <fx@gnu.org>
6947         * progmodes/compile.el (compilation-error-regexp-alist): Allow
6948         digits in program name in first pattern.
6950 1999-06-09  Andre Spiegel  <spiegel@inf.fu-berlin.de>
6952         * vc.el (vc-dired-mode): Don't match anything before the date in
6953         dired-move-to-filename-regexp.
6955 1999-06-07  Ken'ichi Handa  <handa@gnu.org>
6957         * international/quail.el (quail-define-rules): Fix typo in
6958         docstring.
6960 1999-06-05  Stephen Eglen  <stephen@gnu.org>
6962         * iswitchb.el (iswitchb-default-keybindings): Add
6963         iswitchb-minibuffer-setup to minibuffer-setup-hook here rather
6964         than when package is loaded.
6966 1999-06-04  Richard M. Stallman  <rms@gnu.org>
6968         * startup.el (command-line): Don't set user-init-file directly;
6969         tell `load' to set it.
6971         * ange-ftp.el (ange-ftp-shell-command): Handle error-buffer arg.
6973         * simple.el (next-history-element):
6974         Handle minibuffer-text-before-history properly when reading sexps.
6976         * disp-table.el (standard-display-european):
6977         For an interactive call by the user,
6978         don't set enable-multibyte-characters,
6979         and don't set the terminal coding system.
6981         * textmodes/refbib.el: Don't print any messages or display
6982         a buffer when loading the library.
6983         (r2b-help): Doc fix.
6984         (r2b-help-message): Update the documentation.
6985         (r2b-load-quietly): Variable deleted.
6986         (r2b-convert-buffer): Doc fix.
6988 1999-06-04  Dave Love  <fx@gnu.org>
6990         * help.el (help-xref-interned): Fix insertion of fdoc and revamp.
6992         * auto-show.el: Don't change hooks on loading.
6993         (auto-show-mode): Autoload.  Default to nil.  Add :set &c.
6994         (auto-show-mode): Add to hooks here.
6996 1999-06-04  Richard Sharman  <rsharman@pobox.com>
6998         * emacs-lisp/regexp-opt.el (regexp-opt-group): Avoid infinite
6999         recursion on bogus input.
7001 1999-06-04  Eric M. Ludlam  <zappo@ultranet.com>
7003         * speedbar.el (speedbar-hack-buffer-menu): Fixed so if the user
7004         does not select a buffer from the buffers menu, then the attached
7005         frame is not switched to anything.
7007 1999-06-03  Ken'ichi Handa  <handa@gnu.org>
7009         * language/vietnamese.el (ccl-encode-vscii): Typo fixed
7010         (viet-viscii-...->viet-vscii...).
7012         * international/mule-conf.el (iso-2022-7bit-lock-ss2): Typo fixed.
7014 1999-06-01  Dave Love  <fx@gnu.org>
7016         * progmodes/fortran.el: Add :link to defgroup.
7017         (fortran-blink-matching-if): Match ELSE statements too.
7018         (fortran-fill-statement, fortran-fill): Bind auto-fill-function so
7019         that filling is always done.
7021 1999-05-31  Richard M. Stallman  <rms@gnu.org>
7023         * simple.el (append-next-kill): Use an arg to distinguish
7024         interactive calls from Lisp calls, rather than (interactive-p).
7026         * international/iso-transl.el (iso-transl-language-alist):
7027         Interchange n and N.
7029 1999-05-31  Dave Love  <fx@gnu.org>
7031         * msb.el Add to minor-mode-map-alist.  Remove hook installation
7032         and keymap munging on load.
7033         (msb-mode): New option.
7034         (msb-files-by-directory, msb-sort-by-name, msb-sort-by-directory):
7035         Doc fix.
7036         (msb-mode-map): New variable.
7037         (msb-mode): New command.
7039 1999-05-31  Dave Love  <fx@gnu.org>
7041         * ispell.el: (ispell-alternate-dictionary): Fix custom type.
7042         (ispell-complete-word-dict): Likewise.
7044 1999-05-31  Eli Zaretskii  <eliz@gnu.org>
7046         * forms.el (forms-save-buffer): Call set-buffer-modified-p to
7047         force the data buffer to be saved, even if the data didn't
7048         change, in case the write filter was modified.  Restore the
7049         current record after read-file-filter finishes.
7051 1999-05-29  Karl Heuer  <kwzh@gnu.org>
7053         * ispell4.el: Obsolete; file deleted.
7055         * textmodes/texinfmt.el (texinfo-format-direntry): Avoid blank line.
7057         * font-lock.el (font-lock-apply-syntactic-highlight): Don't die if
7058         VALUE is a syntax table.
7060         * emacs-lisp/cl.el (custom-print-functions): Add autoload cookie.
7062         * simple.el (zap-to-char): Doc fix.
7064 1999-05-27  Ken'ichi Handa  <handa@gnu.org>
7066         * isearch.el (isearch-quote-char): Don't assume character codes
7067         0200 - 0237 stand for characters in some single-byte character
7068         charset.
7070 1999-05-27  Dave Love  <fx@gnu.org>
7072         * startup.el: (iso-8859-n-locale-regexp): Don't match 8859-15 &c.
7074 1999-05-27  Andreas Schwab  <schwab@gnu.org>
7076         * dired-aux.el (dired-insert-subdir-doinsert): Check that the
7077         headerline does not exist already.
7079 1999-05-26  Richard Stallman  <rms@gnu.org>
7081         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
7082         Avoid nested null-loops.
7084 1999-05-26  Ken'ichi Handa  <handa@gnu.org>
7086         * international/characters.el: Typo fixed; prefered->preferred.
7088         * international/mule-cmds.el (find-coding-systems-for-charsets):
7089         Typo fixed; prefered->preferred.
7091         * map-ynp.el (map-y-or-n-p): Don't inherit the current input
7092         method in read-event.
7094         * international/mule.el (charset-info): Doc-string fixed.
7096 1999-05-25  Ken'ichi Handa  <handa@gnu.org>
7098         * mail/smtpmail.el (smtpmail-send-it): Bind
7099         smtpmail-code-conv-from properly.
7100         (smtpmail-send-data-1): If DATA is a multibyte string, encode it
7101         by smtpmail-code-conv-from.
7103 1999-05-24  Richard Stallman  <rms@gnu.org>
7105         * emulation/crisp.el (crisp-submit-bug-report): Function deleted.
7106         Binding deleted also.
7108 1999-05-24  Karl Heuer  <kwzh@gnu.org>
7110         * comint.el (comint-bol-or-process-mark): Doc fix.
7112 1999-05-23  Dave Love  <fx@gnu.org>
7114         * emulation/crisp.el (crisp-mode-map): Don't inherit global-map.
7115         Enter it on minor-mode-map-alist.
7116         (crisp-mode): Re-named from `crsip-mode-enabled'.  Users changed.
7117         Autoload.  Add custom setter.
7118         (crisp-mark-line): Doc fix.
7119         (crisp-mode): Autoload.  Re-write not to frob keymaps directly.
7120         (crisp-mode-hook): Define.
7122 1999-05-23  Ken'ichi Handa  <handa@gnu.org>
7124         * files.el (recover-file): Recover buffer-file-coding-system.
7126 1999-05-22  Richard Stallman  <rms@gnu.org>
7128         * vc.el (vc-dired-mode): Make the dired-move-to-filename-regexp
7129         regexp match the date, to avoid treating date as file size.
7130         Add YYYY S option to WESTERN/
7132         * bookmark.el: Delete some XEmacs compatibility code.
7133         (bookmark-jump-noselect): Check vc-backend.
7135         * subr.el (add-to-list): Doc fix.
7137 1999-05-21  Stephen Eglen  <stephen@gnu.org>
7139         * diary-lib.el (diary-mail-entries): Use fancy-diary-buffer.
7141 1999-05-18  Richard Stallman  <rms@gnu.org>
7143         * textmodes/texinfmt.el (texinfo-anchor): Don't delete a
7144         non-space after the @anchor command.
7145         (texinfo-format-var): Handle other nested constructs, using
7146         texinfo-parse-expanded-arg and texinfo-discard-command, not
7147         texinfo-parse-arg-discard.
7149         * emacs-lisp/debug.el (debugger-outer-inhibit-redisplay): New variable.
7150         (debug): Bind and use debugger-outer-inhibit-redisplay.
7151         Bind inhibit-redisplay to nil.
7152         (debugger-env-macro): Treat inhibit-redisplay like other outside vars.
7154 1999-05-17  Dave Love  <fx@gnu.org>
7156         * help.el (describe-function-1): Extra arg, interactive-p.
7157         (describe-key, describe-function): Use it.
7159 1999-05-17  Karl Heuer  <kwzh@gnu.org>
7161         * ispell.el (ispell-local-dictionary-alist): Add autoload cookie.
7163 1999-05-16  Dave Love  <fx@gnu.org>
7165         * cus-start.el (all): Delete selective-display.  Add scroll-margin,
7166         scroll-preserve-screen-position, scroll-conservatively.
7168 1999-05-16  Dave Love  <fx@gnu.org>
7170         * emacs-lisp/byte-opt.el (byte-optimize-plus): Fix 1-arg case.
7172 1999-05-15  Reto Zimmermann  <reto@Synopsys.COM>
7174         * progmodes/vhdl-mode.el: Completely revised and massively extended.
7176 1999-05-15  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
7178         * progmodes/sh-script.el (sh-mode): Do not fail if buffer has no
7179         magic number and is not associated with a file.
7181 1999-05-14  Richard M. Stallman  <rms@gnu.org>
7183         * files.el (find-file-noselect-1): Fix previous change.
7185 1999-05-14  Simon Marshall  <simon@gnu.org>
7187         * fast-lock.el (fast-lock-cache-name): Fix test for `windows-nt'.
7189 1999-05-13  Ken'ichi Handa  <handa@gnu.org>
7191         * international/mule-diag.el (mule-diag): Change MULE to Mule in
7192         docstring.
7194         * international/mule-cmds.el: Change MULE to Mule in docstrings
7195         and menus.
7197 1999-05-10  Kenichi HANDA  <handa@etl.go.jp>
7199         * ps-mule.el (ps-mule-prologue): Fix the definition of DefFontMule
7200         to correctly reflect the value of BaseLineOffset in
7201         RelativeCompose.  Now the value of RelativeCompose is an array of
7202         low and high positions.
7203         (ps-mule-cmpchar-prologue): Adjust the definition of BC, EC, and
7204         RLC for the above change.
7206 1995-05-11  Joel N. Weber II  <devnull@melange.gnu.org>
7208         * comint.el (comint-password-prompt-regexp): Modified to match the
7209         output of ksu and ssh-add.
7211 1999-05-11  Kenichi HANDA  <handa@etl.go.jp>
7213         * language/korea-util.el (isearch-toggle-korean-input-method):
7214         Adjusted for the change of input method handling in isearch.el.
7215         (isearch-hangul-switch-symbol-ksc): Likewise.
7216         (isearch-hangul-switch-hanja): Likewise.
7218 1999-05-10  Dave Love  <fx@gnu.org>
7220         * help.el (help-make-xrefs): Fix typo.
7222 1999-05-10  Andreas Schwab  <schwab@gnu.org>
7224         * emacs-lisp/byte-opt.el (byte-boolean-vars): Add
7225         unibyte-display-via-language-environment.
7227         * help.el (help-make-xrefs): Handle more cases when looking for
7228         commands in a keymap description.
7230 1999-05-10  Eli Zaretskii  <eliz@gnu.org>
7232         * loadup.el: For ms-dos systems, load ccl and codepage.
7234 1999-05-09  Ken'ichi Handa  <handa@gnu.org>
7236         * ps-print.el (ps-control-character): Call
7237         ps-mule-prepare-ascii-font to setup ASCII fonts.
7239         * ps-mule.el (ps-mule-begin-job): Redo this change "if
7240         ps-multibyte-buffer is nil, use
7241         ps-mule-font-info-database-default."
7243 1999-05-08  Ken Stevens  <k.stevens@ieee.org>
7245         * ispell.el (ispell-local-dictionary-alist): New variable for
7246         customizing local dictionaries not accessable by everyone.
7247         (ispell-dictionary-alist): Loads `ispell-local-dictionary-alist'.
7248         (ispell-required-version): Changed format `(major minor
7249         revision)' to support general pattern matching.
7250         (ispell-tex-skip-alists): AMS Tex block comment and `\author'
7251         skip region commented out due to incorrect skip potential in std latex.
7252         (ispell-word): Removed `when' macro.  Fixed bug of not restoring
7253         cursor point on small words for calls from `ispell-minor-mode'.
7254         (check-ispell-version): Tests and accepts versions major.minor
7255         and above, with adjustments for interactions in 3.1.0-3.1.11.
7256         (ispell-get-line): No longer skips ispell process special characters.
7257         (ispell-comments-and-strings): Removed `when' macro call.
7258         (ispell-minor-check): Requires ispell-word to restore cursor point.
7259         (ispell-buffer-local-parsing): Supports checking comments only.
7261 1999-05-08  Karl Heuer  <kwzh@gnu.org>
7263         * comint.el (comint-password-prompt-regexp): Fix last change to be
7264         more specific.
7266 1999-05-07  Richard M. Stallman  <rms@gnu.org>
7268         * subr.el (with-temp-message): Fix the other call to message
7269         to use %s.
7271 1999-05-07  Michael Ernst  <mernst@alum.mit.edu>
7273         * gud.el (gud-format-command): "%F" means file sans extension.
7274         (jdb): Use %F, not %f, for gud-break.
7276 1999-05-07  Joel N. Weber II  <devnull@melange.gnu.org>
7278         * comint.el (comint-password-prompt-regexp): Modified so that it
7279         matches the output of kinit.
7281 1999-05-06  Greg Stark  <gsstark@mit.edu>
7283         * timezone.el (timezone-parse-date): Recognize new format used in
7284         internet cookies.
7286 1999-05-04  Tudor Hulubei  <tudor@cs.unh.edu>
7288         * international/iso-acc.el (iso-languages): Add latin-2 cedillas.
7290 1999-05-04  Andrew Innes  <andrewi@gnu.org>
7292         * time.el (display-time-update): Allow for wrap-around when
7293         checking against display-time-server-down-time.
7295 1999-05-04  Ken'ichi Handa  <handa@gnu.org>
7297         * international/mule-diag.el (describe-coding-system): Fix English
7298         message.
7300 1999-05-03  Jason Rumney <jasonr@altavista.net>
7302         * term/w32-win.el: Change the x-charset-registry property for the
7303         Japanese charsets that are supported by Japanese Windows fonts.
7305 1999-05-03  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
7307         * diary-lib.el (diary-remind): Rewritten to behave sensibly for
7308         diary-block diary entries for which the reminders and the diary
7309         entries can overlap.
7311 1999-05-02  Jason Rumney <jasonr@altavista.net>
7313         * term/w32-win.el (mouse-set-font): Ensure constructed fontset
7314         matches the font selected in the dialog.
7316 1999-05-02  Dave Love  <fx@gnu.org>
7318         * browse-url.el (browse-url-browser-function): Add :version.
7320         * international/mule.el (auto-coding-alist): Add .tgz.
7322 1999-05-2  Eli Zaretskii  <eliz@is.elta.co.il>
7324         * international/codepage.el (cp-coding-system-for-codepage-1):
7325         Make the magnification parameter for the -dos encoder be 2.
7327 1999-05-2  Andrew Innes  <andrewi@gnu.org>
7329         * term/w32-win.el (w32-drag-n-drop): Select file in window where
7330         it is dropped, rather than current window.
7332         * mail/smtpmail.el (smtpmail-deduce-address-list): Bind variables
7333         after switching buffer, as case-fold-search is a buffer local
7334         variable.
7336         * w32-fns.el (convert-standard-filename): Only convert directory
7337         separators to backslash if the interactive shell is one of the
7338         standard Windows shells that has DOS semantics.
7340         * ls-lisp.el (ls-lisp-format-time): Trap errors from
7341         format-time-string, and return a suitable string to indicate the
7342         timestamp was invalid.
7344         * hexl.el (hexlify-command): Apply shell-quote-argument after
7345         expanding hexl-program in case exec-directory contains a space.
7346         (dehexlify-command): Ditto.
7348         * dos-w32.el (file-name-buffer-file-type-alist): Remove various
7349         file extension regexps which aren't necessarily binary files.
7350         (direct-print-region-helper): Use subst-char-in-string instead of
7351         binding directory-sep-char to convert filenames to DOS syntax.
7352         (direct-print-region-use-command-dot-com): New variable.
7353         (direct-print-region-helper): Use it to control whether to invoked
7354         command.com to print on Windows 9x.
7356         * browse-url.el (browse-url-browser-function): Default to
7357         browse-url-default-windows-browser on windows-nt.
7358         (browse-url-default-windows-browser): New function.
7360 1999-04-30  Eli Zaretskii  <eliz@is.elta.co.il>
7362         * forms.el (forms-mode): Don't call forms-first-record or
7363         forms-last-record if the data file has zero records.
7365 1999-04-29  Richard M. Stallman  <rms@gnu.org>
7367         * files.el (find-file-noselect-1): If buffer-file-name has changed
7368         after find-file-not-found-hooks runs, recompute the truename.
7369         And don't use FILENAME after that point.
7371 1999-04-27  Dave Love  <fx@gnu.org>
7373         * paren.el (show-paren-mode)
7374         * which-func.el (which-func-mode-global)
7375         * type-break.el (type-break-mode)
7376         * time.el (display-time-mode)
7377         * rsz-mini.el (resize-minibuffer-mode)
7378         * mouse-sel.el (mouse-sel-mode)
7379         * icomplete.el (icomplete-mode)
7380         * hscroll.el (hscroll-global-mode)
7381         * help.el (temp-buffer-resize-mode)
7382         * font-lock.el (global-font-lock-mode)
7383         * delsel.el (delete-selection-mode)
7384         * avoid.el (mouse-avoidance-mode)
7385         * autoinsert.el (auto-insert-mode)
7386         * winner.el (winner-mode): Doc fix.
7388 1999-04-26  Karl Heuer  <kwzh@gnu.org>
7390         * mail/rmail.el (rmail-next-same-subject): When searching, ignore
7391         the same whitespace that was ignored in choosing the subject string.
7393 1999-04-26  Richard M. Stallman  <rms@gnu.org>
7395         * info.el (Info-find-node): Position properly after finding anchor.
7397         * cus-start.el (all): Handle unibyte-display-via-language-environment.
7399         * simple.el (indent-new-comment-line): Fix previous change.
7401         * complete.el: Delete the wildcard expansion feature
7402         since that is now standard in find-file.
7403         (PC-try-load-many-files): Function deleted.
7404         (PC-after-load-many-files): Function deleted.
7405         (PC-many-files-list): Variable deleted.
7406         (PC-disable-wildcards): Variable deleted.
7407         (partial-completion-mode): Don't enable the wildcard feature.
7409         * complete.el (PC-look-for-include-file): Don't set global variables
7410         `error', `buf' and `filename' here.
7412         * mail/sendmail.el (mail-sent-via): Use copy-marker not make-marker.
7414 1999-04-26  John Wiegley  <johnw@oneworld.new-era.com>
7416         * textmodes/outline.el (outline-regexp): Doc fix.
7418 1999-04-26  John Wiegley  <johnw@borland.com>
7420         * progmodes/compile.el (compilation-error-regexp-alist): Recognize
7421         C++Builder 4.0 error message syntax.
7423 1999-04-26  Mark Diekhans  <markd@Grizzly.COM>
7425         * progmodes/compile.el (grep-compute-defaults): If xargs -e isn't
7426         supported, use find -exec.
7428 1999-04-26  Yoshiki Hayashi  <g740685@komaba.ecc.u-tokyo.ac.jp>
7430         * textmodes/texinfmt.el (texinfo-format-buffer): Bind
7431         coding-system-for-write, to avoid hanging when non-interactive.
7433 1999-04-26  Dirk Herrmann  <D.Herrmann@tu-bs.de>
7435         * textmodes/bibtex.el (bibtex-reference-head): Allow entries to
7436         start with a newline.
7438 1999-04-13  Ken'ichi Handa  <handa@gnu.org>
7440         * international/mule-conf.el (x-ctext): New coding system.
7442 1999-04-12  Richard M. Stallman  <rms@gnu.org>
7444         * international/mule-cmds.el (input-method-function):
7445         Add permanent-local property.
7447 1999-04-12  Dave Love  <fx@gnu.org>
7449         * jka-compr.el (jka-compr-insert-file-contents): Fix previous
7450         change to use jka-compr-byte-compiler-base-file-name.
7452         * supercite.el (sc-scan-info-alist): Revert last change.
7453         (sc-attrib-selection-list): Fix :type here instead.
7455 1999-04-11  Eli Zaretskii  <eliz@gnu.org>
7457         * international/mule.el (auto-coding-alist-lookup): Include ms-dos
7458         in the list of case-insensitive filesystems.
7460 1999-04-09  Kenichi Handa  <handa@etl.go.jp>
7462         * international/fontset.el (create-fontset-from-fontset-spec):
7463         Don't register duplicated alias fontset names.
7465 1999-04-08  Richard Stallman  <rms@gnu.org>
7467         * international/mule.el (auto-coding-alist-lookup): New function.
7468         (set-auto-coding): Use auto-coding-alist-lookup.
7470         * jka-compr.el (jka-compr-insert-file-contents):
7471         Use auto-coding-alist-lookup to check for files that
7472         should not have eol conversion, in the unibyte case.
7474 1999-04-07  Dave Love  <fx@gnu.org>
7476         * help.el (describe-variable): Check custom-loads property as well
7477         as custom-type.
7479         * abbrev.el (abbrev-mode): Customizing sets the default value.
7481 1999-04-08  Andre Spiegel  <spiegel@inf.fu-berlin.de>
7483         * vc.el (vc-backend-revert): For CVS files that were made
7484         writeable with "cvs edit", call "cvs unedit" to undo that.
7486 1999-04-08  Dave Love  <fx@gnu.org>
7488         * mail/supercite.el: (sc-attrib-selection-list): Fix custom type
7489         more.
7490         (sc-emacs-features): Recognize Emacs 20.
7491         (sc-read-string): Use history arg.
7492         (sc-scan-info-alist): Check for rtnvalue a cons.
7494 1999-04-08  Kenichi HANDA  <handa@etl.go.jp>
7496         * gnus/gnus-mule.el (gnus-mule-message-send-mail-function): Find a
7497         coding system to encode the message by
7498         select-message-coding-system.
7500 1999-04-07  Richard Stallman  <rms@gnu.org>
7502         * progmodes/sql.el (sql-send-paragraph): Delete duplicate definition.
7504         * winner.el: Reorder definitions.
7506         * mail/mh-utils.el (mh-find-progs): Try /etc/nmh and lib/nmh dirs.
7508         * mail/rmail.el (rmail-decode-babyl-format):
7509         Undo previous change.
7511 1999-04-06  Richard Stallman  <rms@gnu.org>
7513         * info.el (Info-find-node): Check for an anchor at the
7514         proper place, before reading an indirect file.
7516         * imenu.el (imenu--mouse-menu): Use assq when searching in FINAL.
7518         * jka-compr.el (jka-compr-insert-file-contents):
7519         Use raw-text-unix when we want no conversion.
7521 1999-04-06  Thierry Emery <Thierry.Emery@nmu.alcatel.fr>
7523         * timezone.el (timezone-parse-date): Corrected regexp for
7524         style (5) date format so that tenths of seconds are optional.
7526 1999-04-05  Eli Zaretskii  <eliz@gnu.org>
7528         * term/internal.el (dos-cpNNN-setup): New function, with the guts
7529         of dos-codepage-setup.
7530         (cjk-codepages-alist): New variable, an alist of Far-Eastern
7531         codepages for which there's no need to set up cpNNN coding
7532         systems.
7533         (dos-codepage-setup): Support Far-Eastern DOS terminals.
7535 1999-04-05  Richard Stallman  <rms@gnu.org>
7537         * mail/rmail.el (rmail-ignored-headers): Doc fix.
7539 1999-04-02  Richard Stallman  <rms@gnu.org>
7541         * progmodes/compile.el (compilation-handle-exit): Do right thing
7542         if (car status) doesn't end in a newline.
7544 1999-04-01  Dave Love  <fx@gnu.org>
7546         * progmodes/sql.el (SQL): Add defgroup :version.
7548 1999-03-31  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
7550         * emacs-lisp/bytecomp.el (byte-compile-file): Clear
7551         buffer-file-coding-system.  If the coding system used is raw-text,
7552         etc., make the *Compiler Input* buffer unibyte.
7554         * international/mule.el (find-new-buffer-file-coding-system): Doc fix.
7556         * loadup.el: Don't write the fns-...el file if not dumping.
7558 1999-03-31  Dave Love  <fx@gnu.org>
7560         * snmp-mode.el (snmp): Fix defgroup :version.
7562         * hilit-chg.el (highlight-changes): Add defgroup :version.
7564 1999-03-31  Andreas Schwab  <schwab@gnu.org>
7566         * gnus/gnus-sum.el (gnus-data-compute-positions): Move down after
7567         the gnus-save-hidden-threads macro.
7569 1999-03-30  Per Abrahamsen  <abraham@dina.kvl.dk>
7571         * faces.el (face-set-after-frame-default): Obey the
7572         `customized-face' for new faces.
7574 1999-03-30  Dave Love  <fx@gnu.org>
7576         * international/mule-cmds.el (current-language-environment): Doc fix.
7577         * abbrev.el (abbrev-mode): Doc fix.
7578         * autoinsert.el (auto-insert-mode): Doc fix.
7579         * complete.el (partial-completion-mode): Doc fix.
7580         * avoid.el (mouse-avoidance-mode): Doc fix.
7581         * delsel.el (delete-selection-mode): Doc fix.
7582         * font-lock.el (global-font-lock-mode): Doc fix.
7583         * help.el (temp-buffer-resize-mode): Doc fix.
7584         * hscroll.el (hscroll-global-mode): Doc fix.
7585         * icomplete.el (icomplete-mode): Doc fix.
7586         * mouse-sel.el (mouse-sel-mode): Doc fix.
7587         * paren.el (show-paren-mode): Doc fix.
7588         * rsz-mini.el (resize-minibuffer-mode): Doc fix.
7589         * time.el (display-time-mode): Doc fix.
7590         * type-break.el (type-break-mode): Doc fix.
7591         * which-func.el (which-func-mode-global): Doc fix.
7592         * winner.el (winner-mode): Doc fix.
7594 1999-03-30  Michael Ernst  <mernst@alum.mit.edu>
7596         * wid-edit.el (widget-before-change): Signal text-read-only rather
7597         than an ordinary error.
7599 1999-03-30  Richard M. Stallman  <rms@gnu.org>
7601         * repeat.el: Don't require advice.
7602         (repeat): Do function-indirection in check for kbd macro.
7603         In self-insert case, use the *last* char in INSERTION.
7605 1999-03-30  Karl Heuer  <kwzh@gnu.org>
7607         * progmodes/cc-cmds.el (c-indent-command): Doc fix.
7609 1999-03-29  Andreas Schwab  <schwab@gnu.org>
7611         * textmodes/tex-mode.el (tex-start-shell): Use add-hook for
7612         comint-input-filter-functions.  Make variables related to shell
7613         directory tracking local.
7615 1999-03-26  Andreas Schwab  <schwab@gnu.org>
7617         * emacs-lisp/debug.el (debug): Make *Backtrace* buffer writable.
7619         * simple.el (shell-command-on-region): Cope with exit-status being
7620         nil, which happens if call-process-region was interrupted.
7622 1999-03-26  Richard M. Stallman  <rms@gnu.org>
7624         * simple.el (indent-new-comment-line): Handle use at a point
7625         after a comment-end.  Handle multiple comments.
7627         * mail/rmail.el (rmail-decode-babyl-format):
7628         To prevent locking, bind buffer-file-name to nil.
7630 1999-03-26  Karl Fogel  <kfogel@red-bean.com>
7632         * mail-hist.el (mail-hist-current-header-name): Don't make
7633         off-by-one-error when determining if in message body.
7635 1999-03-25  Andrew Innes  <andrewi@gnu.org>
7637         * w32-fns.el (set-default-process-coding-system): Copied from
7638         dos-w32.el, but modified to use Unix line endings for process
7639         input, and to add a suitable entry to process-coding-system-alist
7640         for DOS shells.
7642         * dos-fns.el (set-default-process-coding-system): Copied from
7643         dos-w32.el.
7645         * dos-w32.el (set-default-process-coding-system): Move function to
7646         dos-fns.el; a different version is used in w32-fns.el.
7648 1999-03-24  Dave Love  <fx@gnu.org>
7650         * info.el (Info-directory-list): Revert change to re-writing
7651         Info-default-directory-list, but put `alternative' first.
7652         (Info-insert-dir): Modify selecting the top dir file as a consequence.
7654 1999-03-23  Simon Marshall  <simon@gnu.org>
7656         * font-lock.el (c-font-lock-keywords-2): Only fontify a label if it is
7657         on the line by itself.
7658         (java-font-lock-keywords-2): Likewise.  Don't fontify a class name if
7659         it is not in a declarative context.
7661 1999-03-22  Per Abrahamsen  <abraham@dina.kvl.dk>
7663         * cus-edit.el (custom-variable-prompt): Allow customization of
7664         autoloaded symbols.
7666 1999-03-22  Kenichi HANDA  <handa@etl.go.jp>
7668         * simple.el (what-cursor-position): Don't cause error when point
7669         is at invalid multibyte sequence.
7671 1999-03-21  Karl Heuer  <kwzh@gnu.org>
7673         * complete.el (partial-completion-mode): Doc fix.
7675 1999-03-19  Richard M. Stallman  <rms@gnu.org>
7677         * progmodes/cplus-md.el (old-c++): Remove :group.
7679         * progmodes/c-mode.el (old-c): Remove :group.
7681 1999-03-18  Simon Marshall  <simon@gnu.org>
7683         * font-lock.el (c-font-lock-keywords-2): Added "complex" type.
7684         (java-font-lock-keywords-2): Added "strictfp" keyword.
7686 1999-03-17  Jason Rumney <jasonr@altavista.net>
7688         * w32-fns.el (set-w32-system-coding-system) New function.
7689         (w32-system-coding-system) Initialize to 'iso-latin-1.
7691 1999-03-17  Eli Zaretskii  <eliz@gnu.org>
7693         * international/mule-cmds.el (set-language-environment): Fix
7694         previous change: don't use dos-codepage when unbound.
7696 1999-03-17  Karl Heuer  <kwzh@gnu.org>
7698         * calendar/appt.el (appt-make-list): Fix previous change.
7700 1999-03-16  Richard M. Stallman  <rms@gnu.org>
7702         * window.el (shrink-window-if-larger-than-buffer):
7703         Don't try to redisplay with the cursor at the end
7704         on its own line--that would force a scroll and spoil things.
7706 1999-03-16  Eli Zaretskii  <eliz@gnu.org>
7708         * international/mule-cmds.el (set-language-environment): Don't use
7709         cpNNN-nonascii-translation-table if it is unbound.
7711         * term/internal.el (dos-codepage-setup): Compute the unibyte
7712         syntax table and bind unibyte-display-via-language-environment
7713         here, rather than at top level, so that resetting to unibyte in
7714         .emacs works as expected.
7716 1999-03-15  Simon Marshall  <simon@gnu.org>
7718         * font-lock.el (c-font-lock-keywords-2): Added "restrict" keyword.
7720 1999-03-14  Milan Zamazal <pdm@pvt.net>
7722         * abbrev.el (inverse-add-abbrev): Inherit the current input method.
7724 1999-03-14  Kenichi Handa  <handa@etl.go.jp>
7726         * international/mule-util.el (detect-coding-with-priority):
7727         Restore the internal database.
7729 1999-03-14  Stephen Eglen  <stephen@gnu.org>
7731         * mail/sendmail.el (sendmail-send-it): Fix typo in error string
7732         if mail-from-style has invalid value.
7734 1999-03-12  Karl Heuer  <kwzh@gnu.org>
7736         * vc.el (vc-delete-logbuf-window): New var.
7737         (vc-finish-logentry): Use it.
7739 1999-03-12  Richard M. Stallman  <rms@gnu.org>
7741         * startup.el (command-line-1): Improve startup msg.
7743 1999-03-12  Eric M. Ludlam  <zappo@ultranet.com>
7745         * speedbar.el: Added commentary about stealthy functions.
7746         (speedbar-message) new function.
7747         (speedbar-y-or-n-p): New function
7748         (speedbar-with-attached-buffer) Moved macro before reference.
7749         Now uses `save-selected-window'.
7750         (speedbar-mouse-hscroll, speedbar-track-mouse, speedbar-refresh,
7751         speedbar-generic-item-info, speedbar-item-info-file-helper,
7752         speedbar-item-delete, speedbar-insert-generic-list,
7753         speedbar-timer-fn, speedbar-check-vc-this-line,
7754         speedbar-check-obj-this-line, speedbar-fetch-dynaic-etags,
7755         speedbar-buffers-item-info) Use speedbar-message.
7756         (speedbar-item-info) Limit `message-log-max'.
7757         (speedbar-item-load, speedbar-item-copy, speedbar-item-rename,
7758         speedbar-item-delete, speedbar-item-object-delete,
7759         speedbar-buffer-kill-buffer) Use speedbar-y-or-n-p.
7761 1999-03-10  Kenichi Handa  <handa@mulelab.etl.go.jp>
7763         * server.el (server-start): Set coding system for the server
7764         process to raw-text.
7765         (server-process-filter): Decode file names if necessary.
7767 1999-03-12  Dave Love  <fx@gnu.org>
7769         * textmodes/fill.el (sentence-end-double-space): Doc fix.
7771         * textmodes/paragraphs.el (sentence-end): Doc fix.
7773 1999-03-11  Karl Heuer  <kwzh@gnu.org>
7775         * comint.el (comint-password-prompt-regexp): Accept "login password:"
7777 1999-03-09  Karl Heuer  <kwzh@gnu.org>
7779         * ispell.el (ispell-dictionary-alist-1): Shorten autoloaded line.
7780         (ispell-dictionary-alist-2): Likewise.
7781         (ispell-dictionary-alist-3, ispell-dictionary-alist-4): New vars.
7782         (ispell-dictionary-alist-5, ispell-dictionary-alist-6): New vars.
7783         (ispell-dictionary-alist): Build from six pieces, not just two.
7785         * ps-bdf.el (bdf-directory-list): Doc fix.
7787         * enriched.el (enriched-mode): Make var permanent-local.
7789 1999-03-09  Dave Love  <fx@gnu.org>
7791         * textmodes/sgml-mode.el (html-mode): Use
7792         sentence-end-double-space when setting sentence-end.
7794 1999-03-09  Ken'ichi Handa  <handa@gnu.org>
7796         * language/thai.el (tis-620): New alias coding system for thai-tis620.
7798 1999-03-08  Felix Lee  <flee@cygnus.com>
7800         * textmodes/flyspell.el (flyspell-mode-on): Use change-major-mode-hook.
7802         * textmodes/outline.el (outline-back-to-heading): Fix invisible-ok.
7804 1999-03-08  Karl Heuer  <kwzh@gnu.org>
7806         * dired-aux.el (dired-do-copy-regexp): Doc fix.
7807         (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
7809         * dired.el (dired-do-copy-regexp): Doc fix.
7810         (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
7812 1999-03-08  Roger Breitenstein  <roger.breitenstein@starfish.com>
7814         * mail/smtpmail.el (smtpmail-do-bcc): Fix regexp.
7816 1999-03-08  Jason Rumney <jasonr@altavista.net>
7818         * international/codepage.el (cp1250-decode-table)
7819         (cp1251-decode-table, cp1253-decode-table)
7820         (cp1257-decode-table): New translation tables for MS Windows codepages.
7821         (cp-make-coding-systems-for-codepage): Accept 4 digit codepages.
7823 1999-03-07  Yoshiki Hayashi  <g740685@komaba.ecc.u-tokyo.ac.jp>
7825         * textmodes/texinfmt.el (texinfo-append-refill): Check @c correctly.
7827 1999-03-07  Eli Zaretskii  <eliz@gnu.org>
7829         * ps-bdf.el (bdf-directory-list): Different value for ms-dos.
7831         * term/internal.el (top level): Display character 255 as 8bit as well.
7833 1999-03-06  Dave Love  <fx@gnu.org>
7835         * progmodes/cc-cmds.el (c-outline-level): Bind
7836         buffer-invisibility-spec.
7838         * progmodes/c-mode.el (c-outline-level): Likewise.
7840         * progmodes/ada-mode.el (ada-outline-level): Likewise.
7842 1999-03-05  Felix Lee  <flee@cygnus.com>
7844         * textmodes/outline.el (outline-get-last-sibling): Doc fix.
7846 1999-03-05  Richard M. Stallman  <rms@gnu.org>
7848         * bindings.el (complete-symbol): Invert meaning of prefix arg.
7850 1999-03-05  Andrew Innes  <andrewi@gnu.org>
7852         * w32-fns.el (convert-standard-filename): Convert directory
7853         separators to Windows format.
7855 1999-03-05  Andreas Schwab  <schwab@gnu.org>
7857         * international/skkdic-cnv.el: Provide skkdic-cnv.
7858         (skkdic-convert): Emit code to require skkdic-cnv at compile time.
7859         (batch-skkdic-convert): Doc fix.
7861 1999-03-04  Dave Love  <fx@gnu.org>
7863         * custom.el (custom-set-variables): Protect against setter errors.
7865 1999-03-04  Eli Zaretskii  <eliz@gnu.org>
7867         * ls-lisp.el (ls-lisp-insert-directory): Protect the sum total of
7868         the file sizes from overflowing.
7869         (ls-lisp-format): If file size is a float, use %8.0f to print it.
7870         Under -s, print the size in blocks with %4.0f, in case they have
7871         a *really* huge file.
7873 1999-03-03  Dave Love  <fx@gnu.org>
7875         * options.el (edit-options): Doc fix.
7876         (list-options): Don't lose with unbound symbols.  Maintain
7877         Edit-options-mode.
7879 1999-03-01  Dave Love  <fx@gnu.org>
7881         * mail/supercite.el (sc-attrib-selection-list): Fix custom type.
7883 1999-02-28  Richard M. Stallman  <rms@gnu.org>
7885         * ispell.el (ispell-dictionary-alist-override): New variable.
7886         (ispell-dictionary-alist): Don't setq it,
7887         if ispell-dictionary-alist-override is set.
7889         * simple.el (shell-command-default-error-buffer): Renamed from
7890         shell-command-on-region-default-error-buffer.
7891         (shell-command-on-region): Mention in echo area when there
7892         is some error output.  Mention success or failure, too.
7893         Accumulate multiple error outputs
7894         going forward, with formfeed in between.  Display the error buffer
7895         when we have put something in it.
7896         (shell-command): Add the ERROR-BUFFER argument feature.
7898 1999-02-28  Karl Heuer  <kwzh@gnu.org>
7900         * mail/mh-utils.el (mh-lib): Doc fix.
7901         (mh-lib-progs, mh-nmh-p): New vars.
7902         (mh-find-progs): Set mh-lib-progs along with other vars.
7903         (mh-path-search): New arg FUNC-P; if specified, use that instead
7904         of mh-file-command-p.
7905         (mh-install, mh-exec-lib-cmd-output): Use mh-lib-progs.
7907         * mail/mh-comp.el (mh-repl-formfile): New var.
7908         (mh-smail-batch): Don't ignore all arguments.
7909         (mh-reply): Do the right thing when using nmh.
7911 1999-02-27  Kenichi Handa  <handa@etl.go.jp>
7913         * international/mule-cmds.el (select-safe-coding-system): Be sure
7914         to show a buffer being decoded.
7916 1999-02-26  Ken'ichi Handa  <handa@gnu.org>
7918         * ps-bdf.el (bdf-directory-list): Initialize it to
7919         '("/usr/local/share/emacs/fonts/bdf").
7921 1999-02-25  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
7923         * ps-print.el: PostScript programming fix.
7924         (ps-print-prologue-1): Fix BeginDoc PostScript procedure (don't use
7925         setpagedevice operator).
7927 1999-02-25  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
7929         * ps-print.el: Doc fix, font size specifies landscape and portrait
7930         sizes.
7931         (ps-print-version): New version number (4.1.4).
7932         (ps-font-size, ps-header-font-size, ps-header-title-font-size):
7933         Specifies landscape and portrait sizes.
7934         (ps-setup, ps-print-quote, ps-line-lengths-internal, ps-nb-pages)
7935         (ps-get-page-dimensions, ps-begin-file, ps-begin-job, ps-generate): Fun
7936         fix.
7937         (ps-get-font-size): New fun.
7938         (ps-font-size-internal, ps-header-font-size-internal)
7939         (ps-header-title-font-size-internal): New vars.
7941         * ps-mule.el: Change of ps-print font size variable name.
7942         (ps-mule-generate-font): Fun fix.
7943         (ps-mule-begin-job): Programming uniformization.
7945 1999-02-25  Dave Love  <fx@gnu.org>
7947         * help.el (help-xref-info-regexp): Allow linebreaks and capital.
7948         (help-make-xrefs): Do Info case first.
7950         * repeat.el: Don't require advice.
7951         (repeat-last-kill-command): Variable deleted.
7953 1999-02-25  Richard Stallman  <rms@gnu.org>
7955         * simple.el (shell-command-on-region): Don't go into the REPLACE = t
7956         case just because the current buffer is the output buffer.
7958 1999-02-25  Kenichi Handa  <handa@etl.go.jp>
7960         * simple.el (what-cursor-position): To show the character's
7961         encoding, use encoded-string-description instead of information
7962         of chaset-origin-alist.
7964         * international/mule-cmds.el (iso-2022-control-alist): New variable.
7965         (encoded-code-description): New function.
7966         (encoded-string-description): New function.
7967         (encode-coding-char): New function.
7969 1999-02-25  Andrew Innes  <andrewi@gnu.org>
7971         * startup.el (command-line) [windows-nt]: Fix typo in regexp
7972         checking for .emacs[.el[c]].
7974 1999-02-24  Richard Stallman  <rms@gnu.org>
7976         * help.el (describe-function-1): Don't print a whole lambda-function.
7978 1999-02-23  Ken'ichi Handa  <handa@gnu.org>
7980         * international/encoded-kb.el (encoded-kbd-handle-8bit): Allow
7981         inputting ?\240.
7983 1999-02-23  Karl Heuer  <kwzh@gnu.org>
7985         * term/vt100.el (vt100-wide-mode): Use defvar, not defconst.
7987         * midnight.el (clean-buffer-list-kill-regexps): Doc fix.
7988         (clean-buffer-list-kill-buffer-names): Doc fix.
7990         * gud.el (gud-jdb-massage-args): Spelling fix.
7992 1999-02-23  Richard M. Stallman  <rms@gnu.org>
7994         * subr.el (with-temp-message): Use %s so % in old msg won't fool us.
7996 1999-02-22  Eli Zaretskii  <eliz@gnu.org>
7998         * arc-mode.el (archive-set-buffer-as-visiting-file): Save
7999         excursion while calling set-auto-coding-function.
8001         * play/handwrite.el (handwrite): Require ps-print, and use
8002         ps-printer-name and ps-lpr-command.  Call ps-print-region-function
8003         if it's defined, instead of forking ps-lpr-command unconditionally.
8005 1999-02-22  Kenichi Handa  <handa@etl.go.jp>
8007         * international/codepage.el (cp-coding-system-for-codepage-1): Put
8008         charset-origin-alist property to a coding system for the codepage.
8010         * international/mule.el: Modify comment for charset-origin-alist
8011         property of a coding system.
8013         * simple.el (what-cursor-position): charset-origin-alist property
8014         of a coding system may be a translation table or a symbol of which
8015         `translation-table' property is a translation table.
8017 1999-02-21  Richard Stallman  <rms@gnu.org>
8019         * textmodes/sgml-mode.el (html-tag-alist): Add /head and /body
8020         to the "html" template.
8022 1999-02-21  Peter Breton  <pbreton@ne.mediaone.net>
8024         * dirtrack.el (dirtrack): Added docstring.  Now returns input.
8026 1999-02-18  Peter Breton  <pbreton@ne.mediaone.net>
8028         * dirtrack.el (dirtrack): Check for the prompt in the input string
8029         instead of the buffer.
8031 1999-02-18  Alex Schroeder  <a.schroeder@bsiag.ch>
8033         * sql.el: Set version to 1.4.1.  Changed mail address to
8034         alex@gnu.org.  Mention the mailing list sql.el@gnu.org.
8035         (sql-input-ring-separator): Doc fix.
8036         (sql-mode-syntax-table): double-dash starts comments is defined as
8037         ". 56" instead of ". 12b" for XEmacs.
8038         (sql-stop, sql-interactive-mode): Doc fixes.
8039         (sql-postgres): Queries for database and server, not just one.
8040         (sql-set-sqli-buffer): sql-set-sqli-hook must be quoted.
8042         * sql.el (sql-set-sqli-hook): A hook run when sql-buffer is
8043         changed.  This is needed for master.el to work.
8044         (sql-set-sqli-buffer): Use the new hook.
8046         * sql.el (sql-make-alternate-buffer-name): Function that sets
8047         sql-alternate-buffer-name.
8048         (sql-alternate-buffer-name): Possible name of SQLi buffers.
8049         (sql-interactive-mode): Set sql-alternate-buffer-name.
8050         (sql-rename-buffer): New command.
8051         (sql-interactive-mode-menu): Menu for SQLi buffers.
8053         * sql.el (sql-interactive-mode): Doc fix.  sql-input-ring-separator
8054         and sql-input-ring-file-name are used to temporarily set
8055         comint-input-ring-file-name and comint-input-ring-separator when
8056         reading and writing input history files.
8058         (sql-stop): Use sql-input-ring-separator and sql-input-ring-file-name.
8059         (sql-input-ring-file-name): New variable with customization.
8060         (sql-input-ring-separator): New variable with customization.
8061         (sql-set-sqli-buffer): Renamed from sql-change-sqli-buffer.
8062         Callers changed.
8063         (sql-show-sqli-buffer): The message for "sql-buffer is not set"
8064         now includes the name of the current buffer.
8066         (sql-mode): Set paragraph-separate and paragraph-start so that
8067         sql-send-paragraph sends the entire SQL statements, even if it
8068         contains indented lines.
8070 1999-02-18  Dave Love  <fx@gnu.org>
8072         * format.el (format-encode-run-method, format-decode-run-method):
8073         Fix previous change.
8075 1999-02-18  Ken'ichi Handa  <handa@gnu.org>
8077         * international/mule.el (coding-system-list): Moved here from
8078         mule-util.el to avoid autoloading mule-util by the call of
8079         select-safe-coding-system.
8081 1999-02-17  Per Abrahamsen  <abraham@dina.kvl.dk>
8083         * simple.el (turn-on-auto-fill): Mark it as an option for
8084         `text-mode-hook'.
8086 1999-02-17  Richard Stallman  <rms@gnu.org>
8088         * emacs-lisp/easymenu.el (easy-menu-get-map):
8089         Don't crash if (current-local-map) is nil.
8091 1999-02-17  Peter Breton  <pbreton@ne.mediaone.net>
8093         * filecache.el (file-cache-filter-regexps): Added .class.
8095 1999-02-17  Ken'ichi Handa  <handa@gnu.org>
8097         * international/mule-util.el (decompose-region): Use
8098         insert-buffer-substring instead of insert-buffer to avoid putting
8099         mark.
8101 1999-02-17  Andreas Schwab  <schwab@gnu.org>
8103         * calendar/cal-move.el (scroll-calendar-left): Don't set
8104         displayed-month and displayed-year here, let generate-calendar do
8105         it, after range checking.
8107 1999-02-17  Simon Marshall  <simon@gnu.org>
8109         * progmodes/cc-engine.el (c-at-toplevel-p): New function.
8111         * font-lock.el (c++-font-lock-keywords-3): Use it to distinguish
8112         correctly between an object declared via a constructor and a method.
8113         (font-lock-defaults-alist): Don't give `.' word syntax for Java.
8114         (java-font-lock-keywords-1): Fontify package names individually.
8115         (java-font-lock-extra-types): Ensure regexp matches capitalised only.
8116         (java-font-lock-keywords-2): Simplify type fontification.
8117         (java-font-lock-keywords-3): Likewise.
8119 1999-02-17  Kenichi Handa  <handa@etl.go.jp>
8121         * language/japanese.el (iso-2022-jp-2): New coding system.
8122         ("Japanese"): Put iso-2022-jp-2 in coding-priority property.
8124 1999-02-16  Dave Love  <fx@gnu.org>
8126         * help.el (describe-function-1): Accept non-symbols.
8128 1999-02-16  Paul Eggert  <eggert@twinsun.com>
8130         * dired.el (dired-move-to-filename-regexp): Prepend .* so that we
8131         find the last match if there are multiple matches.
8133 1999-02-16  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8135         * tex-mode.el (tex-run-command, latex-run-command)
8136         (slitex-run-command, tex-command): Doc changes.
8137         (tex-start-options-string): Autoload it.  Doc change.  Provide
8138         a menu for customization.  Allow nil.  Quote backslashes only once.
8139         (tex-start-tex): Handle nil value of tex-start-options-string
8140         and apply shell-quote-argument to it.
8142 1999-02-16  Eli Zaretskii  <eliz@gnu.org>
8144         * ls-lisp.el (ls-lisp-insert-directory): Call fceiling to round
8145         the size in blocks, since it can be a float.
8146         (ls-lisp-format): Likewise
8148 1999-02-16  Ken'ichi Handa  <handa@gnu.org>
8150         * language/japanese.el (japanese-shift-jis): Add
8151         charset-origin-alist property.
8153 1999-02-15  Richard Stallman  <rms@gnu.org>
8155         * progmodes/compile.el (compile-internal): Use save-selected-window.
8157         * subr.el (momentary-string-display): Bind inhibit-read-only.
8159         * speedbar.el (speedbar-item-info-tag-helper): Scan the whole line.
8161 1999-02-15  Eli Zaretskii  <eliz@is.elta.co.il>
8163         * mail/rmail.el (rmail-show-message): If an unseen message has a
8164         Summary-line in its header, get past one more line before looking
8165         for the X-Coding-System header.
8167 1999-02-15  Geoff Voelker  <voelker@cs.washington.edu>
8169         * makefile.nt (INSTALL): Copy the handful of uncompiled lisp files
8170         explicitly to accomodate Windows 9X lack of a useful copy program.
8172 1999-02-15  Per Abrahamsen  <abraham@dina.kvl.dk>
8174         * wid-edit.el (widget-choice-value-create): Use `equal'
8175         instead of `eq'.
8177 1999-02-14  Richard Stallman  <rms@gnu.org>
8179         * international/iso-transl.el:
8180         (iso-transl-ae): Renamed from iso-transl-e-slash.
8181         (iso-transl-a-ring): Renamed from iso-transl-a-slash.
8182         (iso-transl-AE): Renamed from iso-transl-E-slash.
8183         (iso-transl-A-ring): Renamed from iso-transl-A-slash.
8184         (iso-transl-char-map): Related changes.
8186         * format.el (format-replace-strings): Fix value of TO in REVERSE case.
8188 1999-02-13  Richard Stallman  <rms@gnu.org>
8190         * textmodes/texinfmt.el (texinfo-alias): New function.
8191         (texinfo-fold-nodename-case): Add defvar.
8192         (texinfo-format-node): Do case folding if specified.
8194         * ffap.el (ffap-file-at-point): Test local file names
8195         immediately.  Strip off line numbers.
8197 1999-02-12  Alex Schroeder  <a.schroeder@bsiag.ch>
8199         * sql.el: Set version to 1.3.2
8200         (sql-solid-program): Added support for solid.
8201         (sql-help): Doc mentions sql-solid.
8202         (sql-solid): Entry function for Solid.
8203         (sql-buffer): Doc explains the use of the variable and how to
8204         change it.
8205         (sql-mode-menu): Included entries for sql-show-sqli-buffer and
8206         sql-change-sqli-buffer; sql-send-region and sql-send-buffer are
8207         disabled if sql-buffer doesn't have a process; sql-send-paragraph
8208         is new.
8209         (sql-show-sqli-buffer): New function to display the value of
8210         sql-buffer.
8211         (sql-change-sqli-buffer): New function to change sql-buffer.
8212         (sql-mode): Doc explains how to change sql-buffer.
8213         (sql-send-paragraph): New function to send a paragraph.
8214         (sql-mode-map): Added keybinding for sql-send-paragraph.
8215         (sql-mysql): Doc corrected.
8216         (sql-ms): Doc corrected.
8218         * sql.el (sql-server): Doc fix.
8219         (sql-mysql): Added the use of sql-server to specify the host,
8220         sql-database now specifies database instead of host.
8221         (sql-mode-menu): Send... menu items are only active if sql-buffer
8222         is non-nil.
8223         (sql-help): Changed tag of entry functions a bit.
8225         * sql.el: Added keywords from `finder-by-keyword'.
8226         (sql-mode): Made sql-buffer a local variable, changed the
8227         documentation: removed instructions to add *.sql files to
8228         auto-mode-alist, added documentation for having mutliple SQL
8229         buffers sending their stuff to different SQLi buffers, each
8230         running a different process.
8231         (sql-postgres): Quoted *SQL* in doc string.
8232         (sql-ms): Likewise.
8233         (sql-ingres): Likewise.
8234         (sql-ingres): Quoted *SQL* in doc string, added references to
8235         sql-user and sql-password used during login.
8236         (sql-sybase): Quoted *SQL* in doc string, added comma.
8237         (sql-oracle): Likewise.
8238         (sql-interactive-mode): Added extensive documentation for having
8239         mutliple SQL buffers sending their stuff to different SQLi
8240         buffers, each running a different process.
8241         (sql-buffer): Changed doc from *SQL* to SQLi.
8242         (sql-get-login): Doc fix.
8244 1999-02-12  Ken'ichi Handa  <handa@gnu.org>
8246         * international/mule-conf.el (undecided): Set ascii in
8247         safe-charsets property.
8249 1999-02-12  Richard Stallman  <rms@gnu.org>
8251         * textmodes/paragraphs.el (paragraph-separate): Doc fix.
8253 1999-02-12  Ken'ichi Handa  <handa@gnu.org>
8255         * ps-mule.el (ps-mule-font-info-database-default): Set the initial
8256         value to ps-mule-font-info-database-latin.
8258 1999-02-13  Kenichi HANDA  <handa@etl.go.jp>
8260         * ps-mule.el (ps-multibyte-buffer): Doc-string modified.
8261         (ps-mule-font-info-database-default): New variable.
8262         (ps-mule-begin-job): If ps-multibyte-buffer is nil, use
8263         ps-mule-font-info-database-default.
8265 1999-02-12  Dave Love  <fx@gnu.org>
8267         * timezone.el (timezone-make-date-sortable)
8268         (timezone-make-date-arpa-standard): Doc fix.
8270 1999-02-12  Ken'ichi Handa  <handa@gnu.org>
8272         * international/quail.el (quail-show-kbd-layout): Bind
8273         blink-matching-paren to nil.
8275         * ps-mule.el (ps-mule-font-info-database-bdf): Fix ENCODING field
8276         for ASCII and Latin-1.
8278 1999-02-12  Andreas Schwab  <schwab@gnu.org>
8280         * gud.el (jdb): Fix regexp for comint-prompt-regexp.
8282 1999-02-12  Kenichi Handa  <handa@etl.go.jp>
8284         * international/mule-cmds.el (language-info-alist): Remove
8285         description about charset-origin-alist.
8287         * international/mule.el: Comment added for a new coding system
8288         property `charset-origin-alit'.
8289         (make-translation-table): This variable deleted.
8291         * language/chinese.el (chinese-big5): Add charset-origin-alist
8292         property.
8293         ("Chinese-CNS"): Remove charset-origin-alist property.
8295         * language/cyrillic.el (cyrillic-koi8): Add charset-origin-alist
8296         property.
8297         (cyrillic-alternativnyj): Likewise.
8298         ("Cyrillic-KOI8"): Remove charset-origin-alist property.
8299         ("Cyrillic-ALT"): Likewise.
8301         * language/vietnamese.el (vietnamese-viqr): Add
8302         charset-origin-alist property.
8303         ("Vietnamese"): Remove charset-origin-alist property.
8305         * simple.el (what-cursor-position): Don't use the varialbe
8306         charset-origin-alist, but use charset-origin-alist property of
8307         buffer-file-coding-system to decide external character set code.
8309 1999-02-10  Richard Stallman  <rms@gnu.org>
8311         * shadowfile.el: Don't turn on the mode when the file is loaded.
8313 1999-02-09  Richard Stallman  <rms@gnu.org>
8315         * progmodes/compile.el (compile-auto-highlight): Customize.
8317         * add-log.el (add-log-file-name-function): New variable.
8318         (add-change-log-entry): Call that function, if non-nil.
8320 1999-02-09  Michael Ernst  <mernst@alum.mit.edu>
8322         * rmail.el (rmail-search): Track match with a marker, not an integer.
8324 1999-02-08  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8326         * progmodes/compile.el (compilation-setup): Set value of
8327         compilation-directory-stack as in compilation-forget-errors.
8328         (compile-reinitialize-errors): Bind buffer-undo-list and
8329         deactivate-mark.
8330         (compilation-forget-errors): Likewise.
8332 1999-02-08  Jim Blandy  <jimb@savonarola.red-bean.com>
8334         * textmodes/texinfo.el (texinfo-environment-regexp): Add the
8335         def... constructs.
8337         * texnfo-upd.el (texinfo-all-menus-update, texinfo-master-menu):
8338         Remove calls to sleep-for.
8340 1999-02-08  Eli Zaretskii  <eliz@gnu.org>
8342         * international/codepage.el (cp-coding-system-for-codepage-1): On
8343         MS-DOS, use dos-unsupported-char-glyph for characters not
8344         supported by the codepage.
8345         (cp-make-coding-systems-for-codepage): Likewise.
8347 1999-02-08  Andreas Schwab  <schwab@gnu.org>
8349         * international/mule-util.el (coding-system-list): Don't sort
8350         coding-system-list here.
8352         * international/mule.el (coding-system-lessp): Moved here from
8353         mule-util.el
8354         (add-to-coding-system-list): New function.
8355         (make-subsidiary-coding-system, make-coding-system,
8356         define-coding-system-alias): Use it instead of setting
8357         coding-system-list directly.
8359 1999-02-07  Dave Love  <fx@gnu.org>
8361         * calendar/appt.el (appt-make-list): Don't splice quotes and date
8362         onto message.
8364 1999-02-06  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8366         * imenu.el (imenu--last-menubar-index-alist): Add doc.
8367         (imenu-add-to-menubar):  Reset imenu--last-menubar-index-alist.
8369 1999-02-06  Richard Stallman  <rms@gnu.org>
8371         * language/european.el (setup-slovenian-environment): New function.
8372         ("Slovenian"): New language environment.
8374         * progmodes/sql.el (sql-help): Doc fix.
8375         (sql-mysql): Doc fix.
8377 1999-02-05  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8379         * tex-mode.el: When compiling, require compare-w and skeleton
8380         to pacify the byte-compiler.  Move the def's of the tex-commands
8381         together.  Add a comment on kill-process vs. quit-process.
8383 1999-02-05  Dave Love  <fx@gnu.org>
8385         * progmodes/compile.el (compile-mouse-goto-error): Don't lose with
8386         null markers.
8387         (compile-goto-error): Likewise.
8389 1999-02-05  Stephen Gildea  <gildea@alum.mit.edu>
8391         * time-stamp.el (time-stamp-format): Format doc tighter.
8392         (time-stamp-line-limit): 0 searches the entire buffer (careful!).
8393         (time-stamp): Don't re-write the time stamp if it didn't change.
8395 1999-02-05  Alex Schroeder  <asc@bsiag.com>
8397         * progmodes/sql.el: Changed version to 1.2.1.
8398         (sql-pop-to-buffer-after-send-region): Improved documentation.
8399         (sql-mysql-program): Added MySQL support.
8400         (sql-prompt-length): Made prompt-length configurable.
8401         (sql-mode-syntax-table): Made apostrophe (') be a string delimiter.
8402         (sql-help): Added MySQL support, changed documentation.
8403         (sql-send-region): A message is displayed if something is sent.
8404         (sql-mode): Added buffer-local comment-start.
8405         (sql-interactive-mode): Use sql-prompt-length to set left-margin.
8406         (sql-interactive-mode): Added buffer-local comment-start.
8407         (sql-oracle): Set sql-prompt-length.
8408         (sql-sybase): Set sql-prompt-length.
8409         (sql-mysql): Added MySQL support.
8410         (sql-ingres): Set sql-prompt-length.
8411         (sql-ms): Set sql-prompt-length.
8412         (sql-postgres): Set sql-prompt-length.
8414 1999-02-04  Eli Zaretskii  <eliz@gnu.org>
8416         * term/internal.el (dos-codepage-setup): Set selection coding
8417         system to cpNNN-dos.
8419 1999-02-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8421         * international/characters.el: Let ethiopic use iso-2022-7bit.
8423 1999-02-02  Dave Love  <fx@gnu.org>
8425         * progmodes/fortran.el (mark-fortran-subprogram): Activate mark here...
8426         (fortran-narrow-to-subprogram, fortran-indent-subprogram): ...not here.
8428 1999-02-02  Karl Heuer  <kwzh@gnu.org>
8430         * terminal.el (terminal-emulator): Doc fix.
8432 1999-02-02  Ken'ichi Handa  <handa@gnu.org>
8434         * international/mule-util.el (compose-chars): Doc-string
8435         modified.  Correctly handle a composition character in ARGS.
8437 1999-02-01  Richard Stallman  <rms@gnu.org>
8439         * progmodes/make-mode.el (makefile-imenu-generic-expression): New var.
8440         (makefile-menu-index-function): Function deleted.
8441         (makefile-mode): Use makefile-imenu-generic-expression.
8443 1999-02-01  Geoff Voelker  <voelker@cs.washington.edu>
8445         * term/w32-win.el (w32-create-initial-fontsets): Back out previous
8446         change, invoke from before-init-hook.
8448 1999-02-01  Dan Nicolaescu  <done@ece.arizona.edu>
8450         * subr.el (remove-from-invisibility-spec): Cope with the case when
8451         buffer-invisibility-spec is t.
8453 1999-02-01  Ed Reingold  <reingold@cs.uiuc.edu>
8455         * calendar/calendar.el (calendar-mode-map): Fix bindings for
8456         appt-add and appt-delete.
8458 1999-02-01  Eli Zaretskii  <eliz@gnu.org>
8460         * term/pc-win.el (msdos-approximate-color): New function.
8461         (msdos-color-translate): Call it to find a DOS color that best
8462         approximates an X-style "#NNNNNN" color specification.
8464 1999-02-01  Ken'ichi Handa  <handa@gnu.org>
8466         * international/mule-util.el (compose-chars-component): Add
8467         autoload cookie.
8469 1999-01-31  Ken'ichi Handa  <handa@gnu.org>
8471         * international/quail.el (quail-lookup-key): If cdr of MAP is a
8472         function, replace cdr of MAP by the return value of the function
8473         unconditionally.
8475 1999-01-31  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8477         * progmodes/compile.el (compilation-next-error-locus): Don't
8478         decrease argument FIND-AT-LEAST of compilation-next-error-locus.
8480 1999-01-31  Eli Zaretskii  <eliz@gnu.org>
8482         * mail/rmail.el (rmail-mime-charset-pattern): Add optional TABs
8483         and NLs before "charset", and allow the charset name be in double
8484         quotes.
8486 1999-01-31  Richard Stallman  <rms@gnu.org>
8488         * imenu.el (imenu-sort-function): Fix custom type.
8490 1999-01-30  Richard Stallman  <rms@gnu.org>
8492         * speedbar.el (speedbar-line-token): Match {...} instead of [...].
8493         (speedbar-line-token): Likewise.
8495         * play/gametree.el (gametree-default-score): Use defcustom.
8496         (gametree-score-regexp, gametree-score-closer): Likewise.
8497         (gametree-score-manual-flag, gametree-score-opener): Likewise.
8499 1999-01-29  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8501         * mail/rmail.el (rmail-decode-babyl-format): Avoid locking when
8502         decoding.
8504 1999-01-29  Markus Rost  <rost@gnu.org>
8506         * tex-mode.el (tex-mode-map): Replace validate-tex-buffer by
8507         tex-validate-buffer.
8508         (plain-tex-mode, latex-mode, slitex-mode): Likewise.
8509         (tex-validate-buffer): Renamed from validate-tex-buffer.  Works
8510         now with recent occur-mode.
8511         (tex-validate-region): Really walk through all Sexps.
8512         (tex-region): Bind shell-dirtrack-verbose.
8513         (tex-file, tex-bibtex-file): Likewise.
8515 1999-01-29  Dave Love  <fx@gnu.org>
8517         * finder.el: (finder-commentary): Fix interactive spec.  Try
8518         appending .el to file name.
8519         (finder-find-library, finder-commentary): Doc fixes.
8521 1999-01-29  Andrew Innes  <andrewi@gnu.org>
8523         * mail/rmail.el (rmail-insert-inbox-text): Handle POP mailboxes
8524         where the userid contains directory separators.
8526 1999-01-29  Dave Love  <fx@gnu.org>
8528         * emacs-lisp/lisp-mnt.el (lm-verify): Fix arg list.
8529         (lm-commentary): Doc fix.
8531 1999-01-29  Andreas Schwab  <schwab@gnu.org>
8533         * files.el (file-expand-wildcards): Never consider `.' and `..' a
8534         wildcard match.  Fix regexp that tests if dirpart contains
8535         wildcard characters.
8537 1999-01-28  Richard Stallman  <rms@gnu.org>
8539         * font-lock.el (font-lock-default-unfontify-region):
8540         If not font-lock-syntactic-keywords, don't remove syntax-table prop.
8542 1999-01-27  Jason Rumney <jasonr@altavista.net>
8544         * term/w32-win.el (w32-standard-fontset-spec): Remove wildcard
8545         from FAMILY field.
8546         (w32-create-initial-fontsets): Do not use before-init-hook.
8547         (mouse-set-font): Document.  Automatically create and use fontsets.
8549         * dos-w32.el (direct-print-region-helper): Check for printer
8550         being t as well as a string.
8552 1999-01-27  Kenichi Handa  <handa@etl.go.jp>
8554         * mail/rmail.el (rmail-decode-mime-charset): New variable.
8555         (rmail-mime-charset-pattern): New variable.
8556         (rmail-convert-to-babyl-format): Decode by MIME-charset if
8557         rmail-decode-mime-charset is non-nil.
8559 1999-01-27  Ken'ichi Handa  <handa@gnu.org>
8561         * international/characters.el: Set category `q' for all characters
8562         in tibetan and tibetan-1-column.
8564 1999-01-27  Andrew Innes  <andrewi@gnu.org>
8566         * frame.el (select-frame-by-name): Obey focus-follows-mouse.
8567         (select-frame-by-name) [windows-nt]: Use w32-focus-frame.
8569 1999-01-27  Dave Love  <fx@gnu.org>
8571         * international/mule-cmds.el (current-language-environment):
8572         Provide :link, :type (choices) and appropriate :get.
8574 1999-01-27  Eli Zaretskii  <eliz@gnu.org>
8576         * startup.el (command-line): Set default eol-mnemonic-* strings to
8577         display end-of-line format in mode line.
8579         * cus-start.el (all): Add eol-mnemonic-* variables.
8581 1999-01-26  Dave Love  <fx@gnu.org>
8583         * startup.el (command-line-1): Up-date copyright.
8585         * paths.el (Info-default-directory-list): Use configdir twice.
8587         * info.el (Info-directory-list): Don't set path-separator now
8588         we're not shipped with Texinfo.  Simplify path definition.
8589         Substitute all occurrences of instdir in Info-default-directory-list.
8591 1999-01-25  Richard Stallman  <rms@gnu.org>
8593         * startup.el (normal-top-level-add-subdirs-to-load-path):
8594         Record the inode numbers of the dirs processed, to avoid loop.
8596         * textmodes/tex-mode.el (tex-run-command): Doc fix.
8598 1999-01-25  Dave Love  <fx@gnu.org>
8600         * browse-url.el (browse-url-netscape-program): Doc addition.
8602         * help.el (help-make-xrefs): Default info references to an `(emacs)'
8603         prefix.
8605         * snmp-mode.el (snmpv2-mode, snmpv-mode): Add autoload cookies -- see
8606         auto-mode-alist.
8608 1999-01-25  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
8610         * calendar/diary-lib.el (mark-diary-entries): Use
8611         assoc-ignore-case and do not capitalize when matching month and
8612         day names.
8614         * calendar/calendar.el (calendar-read-date): Ditto.
8616         * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
8617         (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
8619         * calendar/cal-coptic.el (coptic-prompt-for-date): Ditto.
8621         * calendar/cal-french.el (calendar-goto-french-date): Ditto.
8623         * calendar/cal-islam.el (calendar-goto-islamic-date)
8624         (mark-islamic-diary-entries): Ditto.
8626         * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
8628         * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
8629         (calendar-read-mayan-tzolkin-date): Ditto.
8631         * calendar/cal-persia.el (persian-prompt-for-date): Ditto.
8633 1999-01-22  Michael Ernst  <mernst@alum.mit.edu>
8635         * texnfo-upd.el (texinfo-make-menu): Make region-end a marker.
8637 1999-01-25  Karl Heuer  <kwzh@gnu.org>
8639         * faces.el (list-faces-display): Multiline case of previous fix.
8641 1999-01-25  Andreas Schwab  <schwab@gnu.org>
8643         * mail/mailalias.el (mail-complete-alist): Use alist as customize type.
8645 1999-01-24  Richard M. Stallman  <rms@borg.ai.mit.edu>
8647         * files.el (find-file): If find-file-noselect returns a list,
8648         do switch-to-buffer on each element.
8649         (find-file-other-window): Likewise for all but the first element.
8650         (find-file-other-frame): Same.
8651         (find-file-noselect): When we expand a wildcard, return a list
8652         of buffers.
8654 1999-01-24  Eli Zaretskii  <eliz@gnu.org>
8656         * term/internal.el (dos-codepage-setup): Call prefer-coding-system
8657         to set the appropriate cpNNN-dos coding system as the
8658         highest-priority coding system.
8660 1999-01-23  Ken'ichi Handa  <handa@gnu.org>
8662         * international/fontset.el (generate-fontset-menu): Return a
8663         sorted list by plain names of fontsets.
8665         * international/mule-diag.el (list-fontsets): Sort fontsets by
8666         plain names.
8668         * language/tibet-util.el (tibetan-vertical-stacking): If the arg
8669         FIRST is a composite character, decompose it at first.
8671 1999-01-23  Dave Love  <fx@gnu.org>
8673         * format.el: Doc fixes.
8674         (format-encode-run-method): Have things happen in the right buffer.
8675         Deal with errors from method.  Set coding-system-for-write.
8676         (format-decode-run-method): Have things happen in the right buffer.
8677         Deal with errors from method.  Set coding-system-for-read.
8678         (format-alist): Use nil instead of unmatchable regexps.
8680         * simple.el (shell-command-on-region): Return command's exit status.
8682 1999-01-23  Eric Ludlam  <zappo@gnu.org>
8684         * speedbar.el (speedbar-item-info-file-helper): Add optional arg
8685         of the file whose info we want to display.
8686         (speedbar-easymenu-definition-trailer) Fix list issue w/ customize.
8687         (speedbar-add-mode-functions-list) Improve doc.
8688         (speedbar-line-token) New function.
8689         (speedbar-dired) Fix order of directories in -shown-directories.
8690         (speedbar-line-path): Default return is default-directory
8691         (speedbar-buffers-line-path): Return is dir name only.
8692         (speedbar-mode-functions-list): New variable.
8693         (speedbar-mouse-item-info): Rewrote to be a replaceable fn.
8694         (speedbar-item-info-file-helper, speedbar-item-info-tag-helper
8695         speedbar-files-item-info speedbar-buffers-item-info): New functions.
8696         (speedbar-fetch-replacement-function,speedbar-add-mode-functions-list):
8697         New functions.
8698         (speedbar-line-file): Broke out part that fetches file from a line.
8699         (speedbar-line-text): New function extracted from speedbar-line-file.
8700         (speedbar-line-path): Converted into a replaceable function.
8701         (speedbar-files-line-path, speedbar-buffers-line-path): New functions.
8703 1999-01-23  Ken'ichi Handa  <handa@gnu.org>
8705         * international/fontset.el (create-fontset-from-x-resource): Make
8706         style variants.
8708 1999-01-22  Dave Love  <fx@gnu.org>
8710         * paths.el (Info-default-directory-list): Put sysdir after start.
8712 1999-01-22  Sam Steingold  <sds@goems.com>
8714         * midnight.el (clean-buffer-list): Do not kill a buffer if it has
8715         a process associated with it.
8717 1999-01-22  Jason Rumney <jasonr@altavista.net>
8719         * term/w32-win.el (w32-standard-fontset-spec): Simplified.
8721 1999-01-22  Felix Lee  <flee@cygnus.com>
8723         * vc.el (vc-annotate-display): Delete old overlays.  Fix check for
8724         major-mode.
8725         (vc-annotate-mode): Delete variable.
8727 1999-01-22  Andrew Innes  <andrewi@gnu.org>
8729         * startup.el (command-line): [windows-nt]: Check for existence of
8730         .emacs file so as to notice .emacs.el or .emacs.elc and use them
8731         in preference to _emacs.
8733 1999-01-22  Dave Love  <fx@gnu.org>
8735         * textmodes/texinfo.el (texinfo-font-lock-keywords): Match @ref.
8737 1999-01-20  Richard Stallman  <rms@gnu.org>
8739         * files.el (find-file-noselect): Do wildcard processing only
8740         if new arg WILDCARDS is non-nil.
8741         (find-file, find-file-other-window): New arg WILDCARDS.
8742         Default it to non-nil if interactive.
8743         (find-file-other-frame): Likewise.
8744         (find-file-read-only): Likewise.
8745         (find-file-read-only-other-window): Likewise.
8746         (find-file-read-only-other-frame): Likewise.
8748         * wid-edit.el (widget-alist-convert-option): Delete spurious comma.
8749         (widget-plist-convert-option): Delete spurious comma.
8751 1999-01-19  Jason Rumney <jasonr@altavista.net>
8753         * term/w32-win.el (w32-standard-fontspec-spec): Change
8754         iso8859-5 to koi8-r.  Add iso8859-9.
8756 1999-01-19  Dave Love  <fx@gnu.org>
8758         * browse-url.el (browse-url-maybe-new-window): Delete macro and
8759         its uses.
8761         * progmodes/fortran.el (fortran-narrow-to-subprogram): Ensure mark
8762         is active.
8763         (fortran-indent-subprogram): Likewise.
8765 1999-01-19  Dave Love  <d.love@dl.ac.uk>
8767         * paths.el (Info-default-directory-list): Perhaps add /usr/info.
8769 1999-01-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
8771         * wid-edit.el (alist): Use sexp as default key-type.
8773 1999-01-18  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8775         * textmodes/tex-mode.el (tex-define-common-keys):
8776         Remove key binding of tex-feed-input.
8777         (tex-mode-map): Bind tex-feed-input here.
8778         (tex-start-shell): Use compilation-shell-minor-mode.  Set
8779         comint-input-filter-functions before running tex-shell-hook.
8780         (tex-start-tex): Forget compilation errors.
8781         (tex-compilation-parse-errors): Rewritten to work also with
8782         compile-mouse-goto-error and compile-goto-error.  Adjusted to
8783         change in tex-region.
8784         (tex-region): For the temp file use file-name without directory.
8785         (tex-file): Expand file name of tex-print-file.
8787 1999-01-18  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8789         * emacs-lisp/edebug.el (with-temp-message):  Add def-edebug-spec call.
8791 1999-01-18  Espen Skoglund  <espensk@stud.cs.uit.no>
8793         * progmodes/pascal.el (pascal-calculate-indent): Code with an invalid
8794         beginning could cause Emacs to hang.  Fixed.
8796 1999-01-18  Ken'ichi Handa  <handa@gnu.org>
8798         * international/ccl.el (ccl-compile-translate-character): Handle
8799         the case that a tranlation table is CCL register correctly.
8801         * international/mule-cmds.el (select-safe-coding-system):
8802         Hightlight at most 256 characters.
8804 1999-01-18  Dave Love  <fx@gnu.org>
8806         * startup.el (command-line): If the init file changes operation to
8807         unibyte, make all buffers unibyte and re-set language environment.
8809         * disp-table.el (standard-display-european): Make all existing
8810         buffers unibyte.  Fix doc.
8812 1999-01-17  Richard Stallman  <rms@psilocin.ai.mit.edu>
8814         * wid-edit.el (coding-system): Define this unconditionally.
8816         * simple.el (shell-command-on-region-default-error-buffer): New var.
8817         (shell-command-on-region): Use that variable as interactive
8818         value of ERROR-BUFFER argument.
8820 1999-01-17  Sam Steingold  <sds@goems.com>
8822         * mail/rmail.el (rmail-quit): Run `rmail-quit-hook'.
8824 1999-01-17  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8826         * progmodes/compile.el (compilation-goto-locus): If already in the
8827         compilation buffer's window, keep it in that window.
8828         (compile-mouse-goto-error): Add Doc.  Don't play with windows.
8829         (compile-goto-error): Don't play with windows.
8831         * textmodes/tex-mode.el (latex-run-command): Doc fix.
8832         (tex-command): Doc fix.
8833         (tex-compilation-parse-errors): Doc fix.
8834         (tex-generate-zap-file-name): Don't start the name with -.
8835         (tex-expand-files): Works now also with strings ending with ":".
8837 1999-01-17  Ian T Zimmerman  <itz@transbay.net>
8839         Patch failed to install:
8840         * gametree.el: Document scoring functionality.
8841         (gametree-score-regexp): Add optional plus sign.
8842         (gametree-score-opener): Replace `:' with `=' as the former
8843         conflicts with gametree-half-ply-regexp.
8844         (gametree-transpose-following-leaves): Add.
8845         (gametree-insert-new-leaf): Make modifying commands barf in read
8846         only buffers.
8847         (gametree-break-line-here): Add a call to
8848         `gametree-transpose-following-leaves'.  This maintains the
8849         necessary invariant that on each level all leaf children precede
8850         all nonleaf children.  This has always been implied, but left to
8851         the user, and, unfortunately, undocumented.
8853 1999-01-17  Per Abrahamsen  <abraham@dina.kvl.dk>
8855         * wid-edit.el (plist, alist): New widget types.
8857 1999-01-17  Dave Love  <fx@gnu.org>
8859         * progmodes/fortran.el: Tidy up font-lock-keywords definitions and
8860         fix scope of condition-case therein.
8862 1999-01-17  Andrew Innes  <andrewi@gnu.org>
8864         * dos-w32.el: (find-buffer-file-type-coding-system): Use
8865         default-buffer-file-coding-system when file doesn't exist (and
8866         isn't covered by a special case) instead of forcing undecided-dos
8867         against the user's wishes.
8869         * dos-w32.el (direct-print-region-helper): New function based on
8870         direct-print-region-function; sends data to specified printer port
8871         without further translation.  Recognize and handle specially the
8872         standard `print' and `nprint' programs, as well as `lpr' and
8873         similar programs.  Only write directly to the printer port if no
8874         print program is specified.  Work around a bug in Windows 9x
8875         affecting Win32 version of Emacs by invoking command.com to write
8876         to the printer port instead of writing directly.
8877         (direct-print-region-function): Use direct-print-region-helper to
8878         do most of the work.
8879         (direct-ps-print-region-function): New function; analogue of
8880         direct-print-region-function for ps-print.
8881         (ps-lpr-command): Comment out setq; leave as example usage.
8882         (ps-lpr-switches): Ditto.
8884         * lpr.el: (printer-name): Update docstring about usage on MS-DOS
8885         and MS-Windows.
8886         (lpr-command) [ms-dos, windows-nt]: Initialize to empty string on
8887         DOS and Windows platforms, to indicate direct printing.  Update
8888         the docstring accordingly.
8890         * ps-print.el: (ps-printer-name): Update docstring about usage on
8891         MS-DOS and MS-Windows.
8892         (ps-lpr-command): Update docstring as for lpr-command.
8893         (ps-print-region-function): New variable.
8894         (ps-do-despool): Use it.
8895         (ps-do-despool) [ms-dos, windows-nt]: Remove special case code for
8896         DOS/Windows.
8898         * subr.el (subst-char-in-string): New function.
8900 1999-01-17  Eli Zaretskii  <eliz@gnu.org>
8902         * international/codepage.el (cp852-decode-table): Fill a nil entry.
8904         * ps-bdf.el (bdf-cache-file): Use convert-standard-filename.
8905         (bdf-find-font-info): New function, looks for the first readable
8906         file from a list of alternatives.
8907         (bdf-get-bitmaps, bdf-generate-font): Call bdf-find-font-info
8908         instead of bdf-get-font-info.
8909         (bdf-generate-glyphs): If font-name is a cons cell, pass its car
8910         to ps-mule-generate-bitmap-glyph.
8912         * ps-mule.el (ps-mule-font-info-database-bdf): Add alternative
8913         file names that avoid clashes in DOS 8+3 namespace.  FONT-NAME can
8914         now be a list of alternative names.
8915         (ps-mule-generate-font): If FONT-NAME is a cons cell, use its car.
8916         (ps-mule-prepare-font): Likewise.
8918         * international/codepage.el (cp855-decode-table,
8919         cp850-decode-table): Fill some nil entries.
8921 1999-01-16  Dave Love  <fx@gnu.org>
8923         * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Revert
8924         last change.
8926 1999-01-15  Dave Love  <fx@gnu.org>
8928         * help.el (help-make-xrefs): Avoid infloop in keymap substitutions
8929         and change regexp for command names.
8930         (help-xref-go-back, function-called-at-point, symbol-file)
8931         (where-is): Doc fixes.
8932         (help-xref-go-back): Remove interactive spec.
8933         (describe-function-1): Fix message for alias.  Buttomize alias
8934         name.
8936         * simple.el (join-line): New alias.
8938 1999-01-15  Johan Vromans  <jvromans@squirrel.nl>
8940         * forms.el: (forms--show-record): Convert integers to string
8941         expicitly since concat will no longer accept integers.
8942         (forms-print): Use local `total-nb-records' since
8943         `forms--total-records' will be inaccessible after buffer switching.
8945 1998-01-14  Felix Lee  <flee@cygnus.com>
8947         * textmodes/flyspell.el (make-flyspell-overlay): Fix front stickiness.
8949 1999-01-14  Richard Stallman  <rms@psilocin.ai.mit.edu>
8951         * emacs-lisp/easymenu.el (easy-menu-get-map): Fix bugs in prev change.
8953 1999-01-14  Eli Zaretskii  <eliz@gnu.org>
8955         * international/codepage.el (cp850-decode-table): Fix previous change.
8957 1999-01-14  Simon Marshall  <simon@gnu.org>
8959         * shell.el (shell-dirtrack-verbose): New custom variable.
8960         (shell-dirstack-message): Use it.
8962 1999-01-14  Kenichi Handa  <handa@etl.go.jp>
8964         * international/mule-conf.el: Coding system alias `dos' for
8965         `undecided-dos', `mac' for `undecided-mac'.
8967         * international/mule-cmds.el (describe-language-environment):
8968         Don't alter input-method-alist.
8970 1999-01-13  Eli Zaretskii  <eliz@gnu.org>
8972         * international/codepage.el (cp850-decode-table): Replace nil
8973         entries with codes of similary looking glyphs.  (Suggested by
8974         Jason Rumney <jasonr@altavista.net>.)
8976 1999-01-13  Dave Love  <fx@gnu.org>
8978         * browse-url.el (browse-url-netscape): Fix ineffective "-noraise".
8980         * emacs-lisp/find-func.el (find-function-on-key): Fix previous change.
8982 1999-01-12  Karl Heuer  <kwzh@gnu.org>
8984         * files.el (auto-save-hook): Defvar this.
8986 1999-01-12  Alex Schroeder  <asc@bsiag.com>
8988         * progmodes/sql.el (sql-mode-ansi-font-lock-keywords): Quote font-lock
8989         faces, eliminating the need to load font-lock before loading sql.
8990         (sql-mode-oracle-font-lock-keywords): Likewise.
8991         (sql-mode-postgres-font-lock-keywords): Likewise.
8993 1999-01-11  Dave Love  <fx@gnu.org>
8995         * cus-start.el: Add inhibit-eol-conversion.
8997         * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Swap
8998         the values round.
9000 1999-01-11  Richard Stallman  <rms@psilocin.ai.mit.edu>
9002         * help.el (help-mode-finish): Renamed from help-mode-maybe.
9003         Don't switch to Help mode here.
9004         (temp-buffer-setup-hook): Use help-mode-finish.
9005         (help-mode-setup): New function.
9006         (temp-buffer-setup-hook): Use help-mode-setup.
9008         * progmodes/sql.el: New file.
9010         * files.el (auto-mode-alist): Add sql-mode.
9012         * faces.el (list-faces-display): Improve the formatting
9013         by computing the maximum length required for any face-name.
9015 1999-01-10  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
9017         * progmodes/compile.el (compilation-shell-minor-mode): New function.
9019 1999-01-10  Dan Nicolaescu  <dann@ics.uci.edu>
9021         * term.el (term_send_home): Change the string to
9022         be the same as the one emitted by xterm and consistent with the
9023         ones emitted by prior and next.
9024         (term_send_end): Likewise.
9026 1999-01-10  Dave Love  <fx@gnu.org>
9028         * emacs-lisp/find-func.el (find-function-on-key): DTRT for mouse
9029         bindings.
9031 1999-01-10  Eli Zaretskii  <eliz@gnu.org>
9033         * international/codepage.el (codepage-setup): Doc fix.
9034         (cp-decoding-vector-for-codepage): Likewise.
9036 1999-01-10  Markus Rost  <rost@gnu.org>
9038         * cus-edit.el (custom-save-delete): First scan the custom-file.
9040 1999-01-08  Richard Stallman  <rms@psilocin.ai.mit.edu>
9042         * international/iso-transl.el: Define a "function name" for
9043         each translation that isn't ASCII.  Use these function names
9044         in iso-transl-char-map.
9046 1999-01-08  Kenichi Handa  <handa@etl.go.jp>
9048         * international/mule-util.el (decompose-region): Do decomposition
9049         on temporary unibyte buffer.
9051         * international/mule.el (make-char): Doc-string modified.
9053 1999-01-07  Richard Stallman  <rms@psilocin.ai.mit.edu>
9055         * simple.el (comment-region): Delete spaces only if we
9056         deleted a comment starter.
9058 1999-01-07  Dave Love  <fx@gnu.org>
9060         * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
9062         * emacs-lisp/edebug.el (edebug-eval-defun): Deal with defcustom
9063         like eval-defun does.
9065         * dired.el (dired-mode-map): Fix duplicate [menu-bar regexp mark].
9067         * generic.el: Re-write `(make-variable-buffer-local (defvar ...'
9068         constructions.  Doc fixes.
9069         (generic-create-generic-function): Use defalias, not fset.
9071         * find-func.el: More doc fixes.
9073 1999-01-06  Stephen Eglen  <stephen@gnu.org>
9075         * files.el (save-buffers-kill-emacs): Show the list of current
9076         processes before prompting to kill them and exit.
9078 1999-01-06  Dave Love  <fx@gnu.org>
9080         * emacs-lisp/find-func.el: Doc fixes.
9081         (find-function-regexp): Extend for define-generic-mode,
9082         define-derived-mode, easy-mmode-define-minor-mode.
9084 1999-01-06  Dave Love  <fx@gnu.org>
9086         * progmodes/fortran.el (fortran-window-create): Account for scroll
9087         bar width.
9089         * browse-url.el: Require (noerror) w3-auto when compiling.
9090         (browse-url-maybe-new-window): Make it a macro and revert last
9091         change to callers.
9092         (browse-url-w3): Require w3 for w3-fetch-other-window.
9094 1999-01-06 Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
9096         * browse-url.el (browse-url-w3): Give w3-fetch-other-window the
9097         argument.
9099 1999-01-06  Simon Marshall  <simon@gnu.org>
9101         * subr.el (with-temp-message): Don't display MESSAGE if nil.  Doc fix.
9103         * font-lock.el (font-lock-default-fontify-buffer): When using
9104         with-temp-message, use nil rather than current-message.
9106         * lazy-lock.el (lazy-lock-unstall):
9107         (lazy-lock-fontify-after-idle): When using with-temp-message, use nil
9108         rather than current-message.
9110         * fast-lock.el (fast-lock-save-cache-1):
9111         (fast-lock-cache-data): When using with-temp-message, use nil rather
9112         than current-message.
9114 1999-01-06  Eli Zaretskii  <eliz@gnu.org>
9116         * international/codepage.el (cp-coding-system-for-codepage-1): Add
9117         the valid-codes property.
9119         * international/mule-cmds.el (prefer-coding-system): Call
9120         set-coding-priority, so that the internal array of priorities is
9121         also updated.
9123         * international/mule-util.el:
9124         (coding-system-change-eol-conversion,
9125         coding-system-change-text-conversion): Don't define here.
9127         * international/mule-cmds.el: Define them here.  Remove the
9128         autoload cookies.
9130 1999-01-06  Andreas Schwab  <schwab@gnu.org>
9132         * emacs-lisp/debug.el (debug): Leave recursive minibuffer enabled
9133         if it was enabled before.
9135         * view.el (View-revert-buffer-scroll-page-forward): Bind
9136         view-scroll-auto-exit instead of obsolete view-mode-auto-exit.
9138         * files.el (recover-session): Preserve point when inserting
9139         explanation.
9141 1999-01-06  Richard Stallman  <rms@psilocin.ai.mit.edu>
9143         * cus-edit.el (custom-save-delete): Don't delete whitespace
9144         and comments before the sexp that is replaced.
9146 1999-01-05  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
9148         * calendar/diary-lib.el (diary-float): Better fix of end-of-year error.
9150 1999-01-05  Andre Spiegel  <spiegel@inf.fu-berlin.de>
9152         * vc.el (vc-dired-hook): Use the original value of
9153         dired-move-to-filename-regexp on lines that have not been
9154         reformatted yet.
9155         (vc-dired-toggle-terse-mode): Tell vc-dired-hook whether the
9156         file lines have already been reformatted.
9158 1999-01-05  Dave Love  <fx@gnu.org>
9160         * progmodes/f90.el (f90-mode): Make imenu-case-fold-search
9161         buffer-local.
9163 1998-01-05  Torbjorn Einarsson  <T.Einarsson@clab.ericsson.se>
9165         * progmodes/f90.el: Change of regular expressions for type to
9166         correct highlighting and identation. Some small fixes for
9167         compatibility with XEmacs.
9169 1999-01-05  Stephen Eglen  <stephen@gnu.org>
9171         * mspools.el (mspools-vm-system-mail): Provide an alternative
9172         value based on rmail-spool-directory if $MAIL is not defined.
9174 1999-01-05  Carsten Dominik  <dominik@strw.leidenuniv.nl>
9176         * textmodes/reftex.el (reftex-section-levels): Allow negative levels.
9177         (reftex-section-info): Handle negative section levels.
9178         (reftex-view-crossref-extra): New option.
9179         (reftex-view-crossref): Generalized to work in more places.
9180         (reftex-find-citation-regexp-format, reftex-find-reference-format,
9181         reftex-macros-with-labels, reftex-global-search-marker): New variables.
9182         (reftex-view-cite-locations-from-bibtex): New command.
9183         (reftex-view-regexp-match, reftex-global-search,
9184         reftex-global-search-continue): New functions.
9185         (reftex-extract-bib-entries): No error for non-existing BibTeX
9186         file, just a message.
9187         (reftex-extract-bib-entries): Better error handling.
9188         (reftex-select-with-char): Use `*RefTeX Select*' for selection
9189         help and force it on current frame.
9190         (reftex-default-bibliography): New function.
9191         (reftex-access-parse-file): Check consistency after loading a
9192         parse file.  When inconsistent, enfore rescan.
9193         (reftex-check-parse-consistency): New function.
9194         (easy-menu-define): Options section drastically shortened.
9196 1999-01-05  Kenichi Handa  <handa@etl.go.jp>
9198         * language/thai-util.el (thai-compose-string): New function.
9200 1999-01-04  Inge Frick  <inge@nada.kth.se>
9202         * easymenu.el (easy-menu-define): Doc fix.
9203         (easy-menu-create-menu): New keyword :included.
9204         (easy-menu-do-add-item): New keyword :included.  SUFFIX may
9205         be an expression, not only a string.  Simulate style `button'.
9206         Use easy-menu-define-key-intern instead of easy-menu-define-key.
9207         (easy-menu-define-key-intern): New function.
9208         (easy-menu-add-item): Understand value returned from
9209         easy-menu-item-present-p and easy-menu-remove-item.
9210         (easy-menu-return-item): New function.
9211         (easy-menu-item-present-p, easy-menu-remove-item): Use it.
9213 1999-01-03  Richard Stallman  <rms@psilocin.ai.mit.edu>
9215         * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
9216         Use rmail-output-read-rmail-file-name to read the file name.
9217         Always call rmail-output-to-rmail-file noninteractively.
9218         When count > 1, do the loop here.
9219         Handle rmail-delete-after-output here.
9220         (rmail-summary-output): Similar changes.
9222         * mail/rmailout.el: Provide `rmailout'.
9223         (rmail-output-read-rmail-file-name): New function.
9224         (rmail-output-to-rmail-file): Use that.
9225         (rmail-output-read-file-name): New function.
9226         (rmail-output): Use that.
9228         * files.el (find-file-noselect): Let /: suppress wildcard matching.
9229         Error if wildcard matches no files.
9231 1999-01-02  Richard Stallman  <rms@psilocin.ai.mit.edu>
9233         * menu-bar.el (clipboard-yank): Doc fix.
9235         * info.el (Info-insert-dir): Chase symlinks for file-attributes.
9237 1998-12-31  Markus Rost  <rost@delysid.gnu.org>
9239         * textmodes/page-ext.el (pages-copy-header-and-position): Fix typo.
9241 1998-12-31  Andrew Innes  <andrewi@harlequin.co.uk>
9243         * rmail.el (rmail-encode-string): Make sure mask value is
9244         positive; (emacs-pid) returns a negative number on Windows 9x
9245         which causes odd behaviour.
9247 1998-12-31  Eli Zaretskii  <eliz@mescaline.gnu.org>
9249         * cus-start.el: Don't warn about dos-* variables unless on MS-DOS,
9250         and about w32-* variables unless on Windows/NT.
9252 1998-12-31  Boris Goldowsky  <boris@alum.mit.edu>
9254         * textmodes/sgml-mode.el (sgml-validate): Ask whether to save only
9255         if buffer is modified; ask about all modified buffers.
9257 1998-12-30  Richard Stallman  <rms@psilocin.ai.mit.edu>
9259         * simple.el (what-cursor-position): Fix previous change.
9261 1998-12-30  Richard Stallman  <rms@sucrose.ai.mit.edu>
9263         * mail/sendmail.el (mail-mode): Eliminate ambiguous match
9264         from paragraph-start.
9266 1998-12-30  Eli Zaretskii  <eliz@mescaline.gnu.org>
9268         * international/mule-cmds.el (prefer-coding-system): If the
9269         argument requires specific EOL conversion type, make the default
9270         coding systems use that.
9272 1998-12-30  Drew Csillag <drew_csillag@geocities.com>
9274         * progmodes/m4-mode.el (m4-m4-region, m4-m4-buffer):
9275         Use shell-command-on-region.
9276         (m4-start-m4, m4-end-m4): Functions deleted.
9278 1998-12-30  Michael Ernst  <mernst@alum.mit.edu>
9280         * vc.el (vc-backend-diff): Use `diff-switches-list' throughout.
9282 1998-12-29  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
9284         * browse-url.el (browse-url-mail): Give argument SEND-ACTION
9285         to compose-mail in the correct places and as a list.
9287 1998-12-29  Masatake Yamato  <masata-y@tori.aist-nara.ac.jp>
9289         * page-ext.el: Added mouse-selection feature for pages directory buffer.
9290         (pages-directory-map): Bind mouse-2
9291         (pages-copy-header-and-position): Put text property.
9292         (pages-directory-goto-with-mouse): New function.
9294 1998-12-29  Eli Zaretskii  <eliz@mescaline.gnu.org>
9296         * international/codepage.el (cp-make-coding-systems-for-codepage):
9297         Doc fix.
9298         (cp-coding-system-for-codepage-1): Likewise.
9300 1998-12-29  Kenichi Handa  <handa@etl.go.jp>
9302         * language/thai-util.el (thai-post-read-conversion): Handle Thai
9303         composition sequence correctly here instead of calling
9304         thai-compose-region.
9306         * textmodes/fill.el (fill-region-as-paragraph): While deleting a
9307         newline in multibyte buffer, if previous or next character is a
9308         composite char, check the first component of the composite char.
9310 1998-12-28  Andreas Schwab  <schwab@delysid.gnu.org>
9312         * emacs-lisp/advice.el (ad-special-forms): Add save-current-buffer
9313         and track-mouse.
9315 1998-12-27  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
9317         * mail/sendmail.el (mail-yank-original): Remove text properties
9318         after insertion.
9319         (mail-yank-region): Barf if no mark is set in the message
9320         being replied to.
9322         * help.el (function-called-at-point): First look for function at point.
9324 1998-12-27  Richard Stallman  <rms@psilocin.ai.mit.edu>
9326         * edmacro.el (edit-kbd-macro): Recognize electric-view-lossage.
9328 1998-12-26  Richard Stallman  <rms@psilocin.ai.mit.edu>
9330         * simple.el (what-cursor-position): Print character encoding also.
9332 1998-12-26  Dave Love  <fx@gnu.org>
9334         * textmodes/flyspell.el: If local-maps work, don't put
9335         flyspell-mode-map in minor-mode-map-alist; bind mouse-2 and M-TAB
9336         in flyspell-mouse-map (only).
9337         (flyspell-use-local-map): New variable.
9338         Use a different mouse-2 binding in that case,
9339         and don't add to minor-mode-map-alist.
9340         (make-flyspell-overlay, flyspell-correct-word):
9341         Test flyspell-use-local-map.
9343 1998-12-26  Richard Stallman  <rms@psilocin.ai.mit.edu>
9345         * files.el (file-expand-wildcards): Handle wildcards in directory name.
9346         Be careful about whether to return a relative file name,
9347         and if so, relative to what directory.
9349 1998-12-25  Richard Stallman  <rms@psilocin.ai.mit.edu>
9351         * emacs-lisp/easymenu.el (easy-menu-get-map):
9352         Change global map only if this menu exists in the global map already,
9353         and not in the local map.
9354         (easy-menu-do-add-item): Fix error message.
9356         * foldout.el (foldout-inhibit-key-bindings):
9357         Avoid concatenating onto outline-minor-mode-prefix.
9358         Make a new keymap for that prefix, if it does not already have one.
9360 1998-12-25  Ilya Zakharevich  <ilya@math.ohio-state.edu>
9362         * cperl-mode.el:
9363         Can use linear algorithm for indentation if Emacs supports it.
9364         (cperl-after-expr-p):   It is BLOCK if we reach lim when backup sexp.
9365         (cperl-after-block-p):  Likewise.
9366         (cperl-after-block-and-statement-beg): Likewise.
9367         (cperl-after-block-p):  After END/BEGIN we are a block.
9368         (cperl-after-expr-p):   Skip labels when checking
9369         (cperl-indent-region):  Make a marker for END - text added/removed.
9370         Disable hooks during the call (how to call them later?).
9371         Now indents 820-line-long function in 6.5 sec (including
9372         syntaxification) the first time (when buffer has few
9373         properties), 7.1 sec the second time.
9374         (cperl-indent-region):  Do not indent whitespace lines
9375         (cperl-style-alist)
9376                 Include `cperl-merge-trailing-else' where the value is clear.
9377         (cperl-styles-entries): Likewise.
9378         (cperl-problems):       Improvements to docs.
9379         (cperl-tips):           Likewise.
9380         (cperl-non-problems):   Likewise.
9381         (cperl-mode):           Make lazy syntaxification possible.
9382         Loads pseudo-faces for the sake of `cperl-find-pods-heres' (for 19.30).
9383         `font-lock-unfontify-region-function' was set to a wrong function.
9385         (cperl-find-pods-heres): Safe a position in buffer where it is safe to
9386         restart syntaxification.  Changed so that -d ?foo? is a RE. Do
9387         not warn on `=cut' if doing a chunk only. 1 << 6 was OK,
9388         but 1<<6 was considered as HERE-doc.
9389         <file/glob> made into a string.
9390         Postpone addition of faces after syntactic step.
9391         Recognition of <FH> was wrong.
9392         Highlight `gem' in s///gem as a keyword.  `qr' recognized.
9393         Knows that split// is null-RE.
9394         Highlights separators in 3-parts expressions as labels.
9395         <> was considered as a glob.
9396         Would err if the last line is `=head1'.
9397         $a-1 ? foo : bar; was a considered a regexp.
9398         `<< (' was considered a start of HERE-doc.
9399         mark qq[]-etc sections as syntax-type=string
9400         Was not processing sub protos after a comment ine.
9401         Was treating $a++ <= 5 as a glob.
9402         Tolerate unfinished REx at end-of-buffer.
9403         `unwind-protect' was left commented.
9404         / and ? after : start a REx.
9406         (cperl-syntaxify-by-font-lock): Set to t, should be safe now.
9407         Better default, customizes to `message' too, off in text-mode.
9409         (cperl-array-face): Renamed from `font-lock-emphasized-face',
9410         `defface'd.
9411         (cperl-hash-face): Renamed from `font-lock-other-emphasized-face'.
9412         `defface'd.
9413         (cperl-emacs-can-parse):        New state variable.
9414         (cperl-indent-line):    Corrected to use global state.
9415         (cperl-calculate-indent):       Likewise.
9416         (cperl-fix-line-spacing):       Likewise (not used yet).
9417         (cperl-calculate-indent):       Did not consider `,' as
9418         continuation mark for statements.
9419         (cperl-calculate-indent): Avoid parse-data optimization at toplevel.
9420         Remove another parse-data optimization at toplevel: would
9421         indent correctly.
9422         Correct for labels when calculating indentation of continuations.
9423         Docstring updated.
9424         (cperl-choose-color):   Converted to a function (to be
9425         compilable in text-mode).
9426         (cperl-dark-background):        Disable without window-system.
9427         Do `defface' only if window-system.
9428         (cperl-fix-line-spacing):       Sped up to bail out early.
9429         (x-color-defined-p): Was not compiling on XEmacs
9430         Was defmacro'ed with a tick.  Remove another def.
9431         (cperl-clobber-lisp-bindings): If set, C-c variants are the old ones
9432         (cperl-unwind-to-safe): New function.
9433         (cperl-fontify-syntaxically): Use `cperl-unwind-to-safe' to start at reasonable position.
9434         (cperl-fontify-syntaxically): Unwinds start and end to go out of
9435                                      long strings (not very successful).
9436         (cperl-forward-re):     Highlight the trailing / in s/foo// as string.
9437         Highlight the starting // in s//foo/ as function-name.
9438         Emit a meaningful error instead of a cryptic one for an
9439         uncomplete REx near end-of-buffer.
9441         (cperl-electric-keyword):       `qr' recognized.
9442         (cperl-electric-else):          Likewise
9443         (cperl-to-comment-or-eol):      Likewise
9444         (cperl-make-regexp-x):  Likewise
9445         (cperl-init-faces):     Likewise, and `lock' (as overridable?).
9446         Corrected to use new macros;
9447         `if' for copying `reference-face' to `constant-face' was backward.
9448         remove init `font-lock-other-emphasized-face',
9449         `font-lock-emphasized-face', `font-lock-keyword-face'.
9450         Interpolate `cperl-invalid-face'.
9451         (cperl-make-regexp-x):  Misprint in a message.
9452         (cperl-syntaxify-unwind): New configuration variable
9453         (cperl-fontify-m-as-s): New configuration variable
9454         (cperl-electric-pod):   Check for after-expr was performed
9455         inside of POD too.
9456         (cperl-backward-to-noncomment): Cetter treatment of PODs and HEREs.
9457         (cperl-clobber-mode-lists): New configuration variable.
9458         (cperl-not-bad-style-regexp):   Updated.
9459         Init:                   `cperl-is-face' was busted.
9460         (cperl-make-face):      New macros.
9461         (cperl-force-face):     New macros.
9462         (font-lock-other-type-face): Done via `defface' too.
9463         (cperl-nonoverridable-face):    New face.  Renamed from
9464         `font-lock-other-type-face'.
9465         (cperl-init-faces-weak):        Use `cperl-force-face'.
9466         (cperl-comment-indent): Commenting __END__ was not working.
9467         (cperl-indent-for-comment):     Likewise.
9468         (cperl-write-tags):     Correct for XEmacs's `visit-tags-table-buffer'.
9469         When removing old TAGS info was not relativizing filename.
9470         (cperl-tags-hier-init): Gross hack to pretend we work (are we?).
9471         Another try to work around XEmacs problems.  Better progress messages.
9472         (toplevel):             Require custom unprotected => failure on 19.28.
9473         (cperl-xemacs-p):       Defined when compile too
9474         (cperl-find-tags):      Was writing line/pos in a wrong order,
9475         pos off by 1 and not at beg-of-line.
9476         (cperl-etags-snarf-tag): New macro
9477         (cperl-etags-goto-tag-location): New macro
9478         (cperl-version):        New variable.  New menu entry
9479         random docstrings:      References to "future" 20.3 removed.
9480         Menu was described as `CPerl' instead of `Perl'
9481         (perl-font-lock-keywords): Would not highlight `sub foo($$);'.
9482         (cperl-toggle-construct-fix): Was toggling to t instead of 1.
9483         (cperl-ps-print-init):  Associate `cperl-array-face', `cperl-hash-face'
9484         Remove `font-lock-emphasized-face', `font-lock-other-emphasized-face',
9485         `font-lock-reference-face', `font-lock-keyword-face'.
9486         Use `eval-after-load'.
9487         Remove not-CPerl-related faces.
9488         (cperl-tips-faces):     New variable and an entry into Mini-docs.
9489         (cperl-indent-exp):     Was not processing else-blocks.
9490         (cperl-get-state):      NOP line removed.
9491         (cperl-ps-print):       New function and menu entry.
9492         (cperl-ps-print-face-properties):       New configuration variable.
9493         (cperl-invalid-face):   New configuration variable.
9494         (perl-font-lock-keywords):      Highlight trailing whitespace
9495         (cperl-contract-levels):        Documentation corrected.
9496         (cperl-contract-level):         Likewise.
9497         (cperl-ps-extend-face-list):    New macro.
9498         (cperl-invalid-face):   Change to ''underline.
9500 1998-12-25  Markus Rost  <rost@delysid.gnu.org>
9502         * mail/rmailout.el (rmail-output): Abbreviate name of default-file
9503         for read-file-name.
9504         (rmail-output-to-rmail-file): Likewise.
9506 1998-12-25  Richard Stallman  <rms@psilocin.ai.mit.edu>
9508         * emacs-lisp/easymenu.el (easy-menu-get-map):
9509         If MENU is nil, use global menu-bar map.
9510         (easy-menu-add-item, easy-menu-remove-item): Argument renamed.
9511         (easy-menu-item-present-p, easy-menu-get-map): Argument renamed.
9513 1998-12-22  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9515         * ps-mule.el (ps-mule-begin-job): Programming uniformization.
9517 1998-12-22  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9519         * ps-print.el (ps-print-version): New version number (4.1.3).
9521 1998-12-21  Eli Zaretskii  <eliz@mescaline.gnu.org>
9523         * international/mule-cmds.el: Use make-sparse-keymap instead of
9524         define-prefix-key when defining MULE menu items.
9526         * info.el (Info-node-at-bob-matching): New function.
9527         (Info-find-node, Info-build-node-completions): Call it.
9529 1998-12-21  Andreas Schwab  <schwab@delysid.gnu.org>
9531         * help.el (describe-function-1): Say "keymap", not "Lisp macro",
9532         when this is an autoloaded keymap.
9534 1998-12-20  Eli Zaretskii  <eliz@mescaline.gnu.org>
9536         * international/codepage.el (cp-coding-system-for-codepage-1):
9537         Create separate encoders and decoders, for DOS and Unix.  Make the
9538         usual family of 3 coding systems, so that automatic detection of
9539         EOL type works.
9540         (cp-make-coding-systems-for-codepage): Don't intern DOS- and
9541         Unix-specific symbols here, and don't call
9542         cp-coding-system-for-codepage-1 twice.  (Suggested by Ken'ichi
9543         Handa <handa@etl.go.jp>.)
9545         * dos-vars.el (dos-codepage-setup-hook): New defcustom.
9547         * term/internal.el (IT-character-translations): New variable, an
9548         alist used to display characters for which there's no glyphs in
9549         the current codepage.
9550         (IT-display-table-setup): New function, sets up the DOS terminal
9551         for a given codepage.
9552         (dos-codepage-setup): New function, sets up the MULE environment
9553         for the current value of dos-codepage.
9554         (top-level if): In the multibyte mode, turn on
9555         unibyte-display-via-language-environment.  In the unibyte mode,
9556         set up the special syntax tables to map lower- to upper case and
9557         back.
9559 1998-12-19  Eric Ludlam  <zappo@delysid.gnu.org>
9561         * speedbar.el: (speedbar-frame-parameters) Add : to custom prompt.
9562         (speedbar-frame-plist) Remove useless comments.
9563         (speedbar-frame-mode) Do not specify height if it is in the param list.
9564         Use default y position w/out changing it.
9565         If default x position is a list, keep, calculate the non-list X
9566         value when devining an initial position.
9567         (speedbar-this-file-in-vc) Fix SCCS to use s. not p. files.
9568         (speedbar-tag-group-name-minimum-length): New variable.
9569         (speedbar-frame-parameter): New compatibility function.
9570         (speedbar-frame-mode): Updated to use speedbar-frame-parameter.
9571         (speedbar-apply-one-tag-hierarchy-method): Fixed up taging sub
9572         groups to keep things in the right order, and to help with some
9573         naming conventions.
9574         (speedbar-create-tag-hierarchy): Enable buffer local version of
9575         `speedbar-tag-hierarchy-method' in the buffer we are tagging.
9576         (speedbar-line-path) Make DEPTH param optional.  Devine it if absent.
9577         the case, derive it from the cursor location in speedbar.
9579 1998-12-17  Eli Zaretskii  <eliz@mescaline.gnu.org>
9581         * international/mule-cmds.el (set-language-environment): On MS-DOS
9582         terminals, install DOS-specific nonascii-translation-table if the
9583         language info doesn't specify one.  Pass the default eol-type to
9584         set-language-environment-coding-systems.
9585         (set-default-coding-systems): Copy the eol-type property for the
9586         new default values of {buffer-file,process}-coding-system from the
9587         old defaults.
9588         (set-language-environment-coding-systems): Accept an optional
9589         argument EOL-TYPE, and set the eol-type property of the default
9590         coding systems accordingly.
9591         (set-terminal-coding-system): Enable menu item on MS-DOS terminals.
9592         (set-keyboard-coding-system): Likewise.
9593         (set-default-coding-systems): Don't set
9594         default-terminal-coding-system on MS-DOS to anything but nil.
9595         (prefer-coding-system): Describe in the doc string that
9596         default-terminal-coding-system is not changed on MS-DOS.
9597         (set-language-environment): For MS-DOS, set standard syntax table
9598         and display table for all characters with code above 127.
9599         (standard-display-european-internal): For MS-DOS, pass all
9600         characters with code above 127 directly to the terminal, and don't
9601         remap characters 160 and 146 in the unibyte case.
9603         * international/codepage.el: New file.
9605 1998-12-16  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
9607         * diary-lib.el (diary-float): Fix end-of-year error and typos in
9608         comments.
9610 1998-12-16  Oleg S. Tihonov  <tihonov@ffke-campus.mipt.ru>
9612         * map-ynp.el (map-y-or-n-p): Ignore input methods.
9614         * subr.el (read-passwd): Likewise.
9616 1998-12-16  Eli Zaretskii  <eliz@mescaline.gnu.org>
9618         * info.el (Info-find-node): Add 1 to the position read from the
9619         tag table.  Don't fail if the node delimiter ^_ is the first
9620         character in the file.
9621         (Info-insert-dir): Don't fail when the node delimiter ^_ is the
9622         first character in the file.
9623         (Info-read-subfile): Likewise.
9624         (Info-select-node): Likewise.
9625         (Info-build-node-completions): Likewise.
9627 1998-12-16  Richard Stallman  <rms@gnu.org>
9629         * term/x-win.el (x-cut-buffer-or-selection-value):
9630         If clipboard is enabled, try it before PRIMARY selection.
9632 1998-12-15  Emilio Lopes  <Emilio.Lopes@Physik.TU-Muenchen.DE>
9634         * international/iso-acc.el (iso-languages): For Portuguese ~c and ~C
9635         insert c-cedilla and C-cedilla respectively, like in latin-1.
9637 1998-12-15  Eli Zaretskii  <eliz@delysid.gnu.org>
9639         * language/hebrew.el: Don't use sublists in the flags argument
9640         passed to make-coding-system.
9642 1998-12-15  Kenichi Handa  <handa@etl.go.jp>
9644         * ps-mule.el (ps-mule-begin-job): Delete nil and unknown from a
9645         list of character sets found by find-charset-region.
9647         * ps-mule.el: Always require ps-print.  Move some function
9648         definitions for Emacs 20.2 and the earlier to ps-print.el.
9649         (ps-mule-find-wrappoint): Make it work also with Emacs 20.2.
9651         * ps-print.el: Define several functions for Emacs 20.2 and the
9652         earlier version.
9653         (ps-printer-name): Check if printer-name is bound.
9655 1998-12-15  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9657         * ps-mule.el: Programming uniformization and little code improvement.
9658         (ps-mule-prepare-font): Programming uniformization.
9659         (ps-mule-find-wrappoint, ps-mule-plot-rule-cmpchar)
9660         (ps-mule-string-encoding, ps-mule-begin-job): Little code improvement.
9662         * ps-bdf.el: Programming uniformization and little code improvement.
9663         (bdf-search-and-read): New fun.
9664         (bdf-write-cache, bdf-initialize, bdf-info-absolute-path)
9665         (bdf-info-mod-time, bdf-info-size, bdf-info-font-bounding-box)
9666         (bdf-info-relative-compose, bdf-info-baseline-offset)
9667         (bdf-info-code-range, bdf-info-maxlen, bdf-info-offset-vector)
9668         (bdf-read-bitmap, bdf-get-bitmaps): Programming uniformization.
9669         (bdf-expand-file-name, bdf-file-newer-than-time, bdf-find-file)
9670         (bdf-read-cache, bdf-read-font-info, bdf-generate-glyphs): Little code
9671         improvement.
9673 1998-12-15  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9675         * ps-print.el: (ps-print-version): New version number (4.1.2), doc fix
9676         and mule related code extraction. Autoload ps-mule funs.
9678         * ps-mule.el: Doc fix. Require ps-print only when compiled.
9679         (ps-mule-prologue-generated): New fun.
9680         (ps-mule-plot-string): Add autoload cookie.
9681         (ps-mule-begin-job): Call ps-mule-prologue-generated.
9683 1998-12-15  Kenichi Handa  <handa@etl.go.jp>
9685         * ps-bdf.el: Require ps-mule instead of ps-print.
9686         (bdf-directory-list): Add autoload cookie.
9688         * ps-mule.el: New file.  Mule related code extracted from
9689         ps-print.el.  Require ps-print, provide ps-mule.
9690         (ps-multibyte-buffer): Add autoload cookie.
9691         (ps-mule-prepare-ascii-font): New fun.
9692         (ps-mule-set-ascii-font): New fun.
9693         (ps-mule-skip-same-charset): Fun deleted.
9694         (ps-mule-plot-string): Set ps-mule-current-charset.
9695         (ps-mule-initialize): Add autload cookie.  Don't set
9696         ps-mule-font-info-database here.
9697         (ps-mule-begin-job): Renamed from ps-mule-begin.  Update
9698         ps-mule-font-info-database and ps-control-or-escape-regexp.
9699         (ps-mule-begin-page): New fun.
9701         * ps-print.el: Mule related code moved to ps-mule.el.
9702         (ps-begin-job): While setting ps-control-or-escape-regexp, don't
9703         check ps-mule-charset-list.
9704         (ps-begin-page): Don't set ps-mule-current-charset, instead call
9705         ps-mule-begin-page.
9706         (ps-basic-plot-string): Call ps-mule-prepare-ascii-font.
9707         (ps-plot-region): Don't set ps-mule-current-charset, instead call
9708         ps-mule-set-ascii-font.  Don't call ps-mule-skip-same-charset,
9709         instead skip same charsets by itself.
9710         (ps-generate): Call ps-mule-initialize of needs-begin-file is
9711         non-nil.  Call ps-mule-begin-job.
9713 1998-12-15  Kenichi Handa  <handa@etl.go.jp>
9715         * ps-bdf.el: File name changed from bdf.el.  Provide ps-bdf
9716         instead of bdf.
9718         * ps-print.el (ps-mule-font-info-database): Doc-string modified.
9719         (ps-mule-external-libraries): New element FEATURE.
9720         (ps-mule-init-external-library): Ajusted for the above change.
9721         (ps-mule-generate-font): Likewise.
9722         (ps-mule-generate-glyphs): Likewise.
9723         (ps-mule-prepare-font): Likewise.
9724         (ps-mule-initialize): Likewise.
9725         (ps-begin-file): Superfluous tailing parenthesis deleted.
9727 1998-12-15  Kenichi Handa  <handa@etl.go.jp>
9729         * international/fontset.el (x-decompose-font-name): If PATTERN
9730         doesn't have any wild cards, return a vector made from a name that
9731         is found by x-resolve-font-name found.  Comments added.
9733         * international/mule-cmds.el (find-coding-systems-for-charsets):
9734         Handle the case of unknown charset.
9735         (find-multibyte-characters): If invalid multibyte characters are
9736         found, return the corresponding strings instead of character
9737         codes.
9738         (find-multibyte-characters): Adjusted for the above change.
9739         (select-safe-coding-system): For a unibyte buffer, always returns
9740         DEFAULT-CODING-SYSTEM.
9741         (get-charset-property): Fix previous change.  Make it a function.
9742         (put-charset-property): Make it a function.
9744         * international/mule.el (make-coding-system): Set mime-charset
9745         property of *-with-esc coding system to nil.
9747         * international/quail.el (quail-point-in-conversion-region): New
9748         function.
9749         (quail-conversion-backward-delete-char): When a key sequence is
9750         being translated, call quail-delete-last-char.
9752         * language/devan-util.el
9753         (devanagari-reorder-glyphs-for-decomposition): Fix the way to
9754         handle devanagari-decomposition-rules.
9756 1998-12-14  Andreas Schwab  <schwab@delysid.gnu.org>
9758         * textmodes/texinfo.el (texinfo-tex-buffer): Bind
9759         tex-start-options-string to empty string.
9760         (texinfo-tex-region): Use texinfo-tex-trailer as documented.
9762 1998-12-14  Andrew Innes  <andrewi@delysid.gnu.org>
9764         * gnus/nntp.el (nntp-request-group): Undo previous change (4xx and
9765         5xx responses are already handled properly).
9767 1998-12-13  Richard Stallman  <rms@gnu.org>
9769         * progmodes/compile.el (compilation-error-regexp-alist): Insist
9770         on a non-digit in the file name.
9772         * simple.el (comment-region): Handle comment-padding
9773         separately for insertion and for deletion, in the right way for each.
9775 1998-12-13  Felix Lee  <flee@cygnus.com>
9777         * progmodes/compile.el (compilation-error-regexp-alist): Fix
9778         regexp to match "ChangeLog:1:1998-12-09 ..."
9780 1998-12-13  Eli Zaretskii  <eliz@delysid.gnu.org>
9782         * cus-start.el (dos-unsupported-char-glyph): Add.
9784 1998-12-11  Dave Love  <fx@gnu.org>
9786         * progmodes/fortran.el (fortran-font-lock-keywords-3): Wrap
9787         forward-sexp in condition-case.
9789         * emacs-lisp/find-func.el (find-function-search-for-symbol):
9790         Remove unnecessary test on `library' for explicit file name.
9791         Widen scope of save-match-data.
9793 1998-12-10  Eli Zaretskii  <eliz@delysid.gnu.org>
9795         * international/mule.el (load-with-code-conversion): If the loaded
9796         file was inserted  with no-conversion or raw-text coding system,
9797         make the buffer unibyte.
9799 1998-12-09  Richard Stallman  <rms@gnu.org>
9801         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
9802         Get rid of nested loops.
9804         * mouse.el (mouse-drag-vertical-line):
9805         If WHICH-SIDE is not `right', then scroll bars are on the left.
9807         * loadhist.el (load-history-loaded): defvar moved to help.el.
9809         * help.el (symbol-file-load-history-loaded): Variable renamed,
9810         and defvar moved from loadhist.el.
9811         (symbol-file): Renamed from describe-function-find-file.
9812         Load fns-VERSION.el here.
9813         (describe-variable, describe-function-1): Use symbol-file.
9815         * textmodes/tex-mode.el (tex-generate-zap-file-name):
9816         Don't start the name with #.
9818         * ispell.el: Take out the eval-when's.
9820 1998-12-09  Peter Breton  <pbreton@ne.mediaone.net>
9822         * dirtrack.el (dirtrack-directory-change-hook): New hook.
9823         (dirtrack): Run it.  Make debug message more verbose.
9825 1998-12-09  Kurt Hornik  <Kurt.Hornik@ci.tuwien.ac.at>
9827         * progmodes/octave-mod.el (octave-abbrev-start): Use the correct
9828         name of the abbrev table, and provide support for XEmacs.
9829         (octave-xemacs-p): New variable.
9831 1998-12-09  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
9833         * mail/sendmail.el (sendmail-send-it): Don't wait for sendmail to
9834         exit, when mail-interactive is nil.
9836 1998-12-09  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
9838         * files.el (after-find-file): Message fix.
9840 1998-12-09  Ken Stevens  <stevens@kdstevens.com>
9842         * ispell.el (ispell-kill-ispell): Don't send newline after EOF.
9844 1998-12-09  Geoff Voelker  <voelker@cs.washington.edu>
9846         * ange-ftp.el (ange-ftp-expand-file-name) [windows-nt]: Handle
9847         filenames using backslashes.
9849 1998-12-09  Dave Love  <fx@gnu.org>
9851         * browse-url.el (browse-url-mail): Call compose-mail-other-window
9852         with correct number of args.
9853         (browse-url-maybe-new-window): New arg.  Callers changed.
9855         * progmodes/fortran.el (fortran-check-end-prog-re): Allow trailing
9856         comment.
9858 1998-12-08  Geoff Voelker  <voelker@cs.washington.edu>
9860         * makefile.nt (install) [COPY_LISP_SOURCE]: Fix end of conditional.
9862 1998-12-08  Markus Rost  <rost@delysid.gnu.org>
9864         * vc.el (vc-rcs-release): Fix Type.
9865         (vc-sccs-release): Fix Type.
9866         (vc-cvs-release): Fix Type.
9868         * mail/rmailsum.el (rmail-summary-output): Simplify. Make prefix
9869         arg work right.
9871         * mail/rmailout.el (rmail-output-to-rmail-file): Avoid multiple
9872         output of last undeleted message.
9874 1998-12-07  Geoff Voelker  <voelker@cs.washington.edu>
9876         * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
9877         (buffer-undo-list) [windows-nt]: Use different relative path.
9879 1998-12-07  Simon Marshall  <simon@gnu.org>
9881         * font-lock.el (java-font-lock-keywords-2): Wrap java-minor-types.
9883 1998-12-05  Markus Rost  <rost@delysid.gnu.org>
9885         * xt-mouse.el (xterm-mouse-mode): Pacify the byte compiler.
9887         * emacs-lisp/byte-opt.el: Require bytecomp for byte-goto-ops.
9889 1998-12-04  Markus Rost  <rost@delysid.gnu.org>
9891         * info.el (Info-menu): Don't return error if point is between menu
9892         header and first menu item.
9894 1998-12-04  Dave Love  <fx@gnu.org>
9896         * help.el (describe-function-1): Fix description for alias.
9898 1998-12-03  Andreas Schwab  <schwab@delysid.gnu.org>
9900         * emacs-lisp/lisp-mnt.el (lm-summary): Strip off -*-
9901         specifications from summary line.
9903         * rect.el (delete-whitespace-rectangle): Mark for autoload.
9904         (close-rectangle): Define alias only once in loaddefs.el.
9906 1998-12-03  Eli Zaretskii  <eliz@mescaline.gnu.org>
9908         * term/internal.el: Remove code which sets up a special syntax
9909         table for non-ASCII characters.
9911 1998-12-02  Andrew Innes  <andrewi@delysid.gnu.org>
9913         * dos-w32.el (direct-print-region-function): Try to ensure that
9914         printer-name is expanded to a file name on a local drive;
9915         sometimes printing a file loaded from a network volume fails.
9916         (direct-print-region-function): Add a function to
9917         write-region-annotate-functions to append a formfeed character to
9918         the region being printed, if the region doesn't end with a
9919         formfeed already.  This avoids creating a second print job
9920         containing a blank page when print spooling is enabled on Windows.
9922 1998-12-02  Dave Love  <fx@gnu.org>
9924         * help.el (help-make-xrefs): Use `info', not the non-autoloaded
9925         `Info-goto-node'.
9927 1998-12-02  Richard Stallman  <rms@gnu.org>
9929         * help.el (temp-buffer-resize-mode): Doc fix.
9931         * cus-edit.el (custom-save-delete): Save point before
9932         reading a sexp, rather than backing up.
9934         * international/iso-transl.el: Fix previous change.
9936 1998-12-02  Andre Spiegel  <spiegel@inf.fu-berlin.de>
9938         * vc.el (vc-dired-window-configuration, vc-ediff-windows,
9939         vc-ediff-result, vc-dired-switches, vc-dired-terse-mode):
9940         Added defvars to suppress compilation warnings.
9942 1998-11-30  Ken Stevens  <k.stevens@ieee.org>
9944         * ispell.el: Improved and fixed customize for variables:
9945         ispell-highlight-p, ispell-check-comments, ispell-help-in-bufferp,
9946         ispell-dictionary-alist, ispell-skip-sgml.
9947         Improved and fixed comments in variables and messages for
9948         functions: ispell-help-in-bufferp, ispell-local-dictionary,
9949         ispell-menu-map, ispell-checking-message, ispell-parser,
9950         ispell-word, lookup-words, ispell-change-dictionary, ispell-region,
9951         ispell-begin-tex-skip-regexp, ispell-begin-skip-region,
9952         ispell-comments-and-strings, ispell-continue, ispell-complete-word,
9953         ispell-message-text-end, ispell-add-per-file-word-list.
9954         (ispell-dictionary-alist-1): (ispell-dictionary-alist2): A coding
9955         system is now required for all languages.  Casechars improved for
9956         castellano, castellano8, and norsk dictionaries.  Dictionary
9957         norsk7-tex added.  Dictionary polish added.
9958         (ispell-dictionary-alist): Redefined at load-time to support
9959         dictionary changes.
9960         (ispell-menu-map): Redefined at load-time to support menu changes.
9961         (ispell-check-version): New alias for `check-ispell-version'.
9962         (ispell-parse-output): Fixed matching for ispell error messages.
9963         Correctly returns spelling suggestions in order generated by ispell
9964         process.
9965         (check-ispell-version): Ensure `case-fold-search' doesn't get
9966         redefined.
9967         (ispell-complete-word): Ensure `case-fold-search' doesn't get
9968         redefined.  Fix bug that didn't respect case of word being completed.
9969         (ispell-init-process): Set process coding system to be compatible
9970         with emacs processes and the ispell process.
9971         (ispell-kill-ispell): Ensures ispell process has terminated before
9972         starting new process.  This can otherwise confuse process filters
9973         and hang the ispell process.
9974         (ispell-begin-skip-region-regexp): (ispell-skip-region): Improved
9975         skipping support for sgml.
9976         (ispell-minor-check): Support sgml labels.  Fix mapping ^M to \r
9977         which could cause `ispell-complete-word' to hang.
9978         (ispell-message): Improved message reference matching.  Ensure
9979         `case-fold-search' doesn't get redefined.
9980         (ispell-buffer-local-parsing): Ensure `case-fold-search' doesn't
9981         get redefined.  Fixed bug in returning to nroff mode from tex mode.
9982         (ispell-add-per-file-word-list): Ensure `case-fold-search' doesn't
9983         get redefined.
9985 1998-11-30  Richard Stallman  <rms@psilocin.ai.mit.edu>
9987         * textmodes/flyspell.el (flyspell-check-word-p):
9988         Don't delay inside a kbd macro.
9990         * subr.el (make-local-hook): Return the hook variable.
9992 1998-11-30  Emilio Lopes  <Emilio.Lopes@Physik.TU-Muenchen.DE>
9994         * hscroll.el (hscroll-mode, hscroll-global-mode, hscroll-window-maybe):
9995         Use a timer instead of post-command-hook.
9996         (hscroll-timer): New variable.
9998 1998-11-30  Dave Love  <fx@gnu.org>
10000         * help.el (help-xref-button): Do nothing if text already has the
10001         help-xref property.
10002         (describe-variable): Revert previous change to hyperlink to source.
10004 1998-11-29  Richard Stallman  <rms@psilocin.ai.mit.edu>
10006         * bindings.el (features): Add `base64' to this list.
10008         * loadhist.el (symbol-file): Doc fix.
10010         * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
10012         * files.el (hack-one-local-variable): Cope with non-file buffers.
10014 1998-11-28  Richard Stallman  <rms@psilocin.ai.mit.edu>
10016         * help.el (describe-mode): Put major mode first.
10018         * calendar/appt.el (appt-disp-window): Use pop-to-buffer,
10019         to support special-display and same-window features.
10021 1998-11-27  Richard Stallman  <rms@psilocin.ai.mit.edu>
10023         * simple.el (transpose-subr, transpose-subr-1): Rename variables
10024         bound in one function and used in the other.
10025         (transpose-subr-start1, transpose-subr-start2): Add defvars.
10026         (transpose-subr-end1, transpose-subr-end2): Add defvars.
10028 1998-11-26  Richard Stallman  <rms@psilocin.ai.mit.edu>
10030         * autoinsert.el (auto-insert-alist): Use user-mail-address.
10032 1998-11-26  Kenichi Handa  <handa@etl.go.jp>
10034         * international/ccl.el (ccl-dump-translate-character-const-tbl):
10035         Give format correct control string.
10037         * international/mule.el (define-translation-table): Fix bug of
10038         setting incorrect translation-table-id.  If the first element of
10039         ARGS is a translation table, just register it.
10041         * language/chinese.el ("Chinese-BIG5"): Add charset-origin-alist
10042         property.
10044 1998-11-24  Michael Ernst  <mernst@alum.mit.edu>
10046         * thingatpt.el (thing-at-point-url-at-point): Don't use current
10047         syntax table to determine what is whitespace.
10049 1998-11-24  Richard Stallman  <rms@psilocin.ai.mit.edu>
10051         * frame.el (frame-parameter): Doc fix.
10053         * textmodes/tex-mode.el (tex-feed-input): New function.
10054         (tex-define-common-keys): Add binding for C-c C-m.
10056 1998-11-23  Dave Love  <fx@gnu.org>
10058         * progmodes/fortran.el: Various minor doc fixes.
10059         (fortran-font-lock-keywords-1): Add `d' to comment-chars.
10060         (fortran-with-subprogram-narrowing): New macro.
10061         (fortran-check-for-matching-do): Use it.
10062         (fortran-end-do): Use fortran-check-end-prog-re.
10063         (fortran-beginning-do, fortran-end-if, fortran-beginning-if)
10064         (fortran-calculate-indent, fortran-calculate-indent): Likewise.
10066 1998-11-23  Simon Marshall  <simon@gnu.org>
10068         * font-lock.el (font-lock-defaults): Doc fix.
10069         (font-lock-default-fontify-buffer): Rewritten to use with-temp-message.
10070         (lisp-font-lock-keywords-2): Fontify with-temp-message as a keyword.
10072         * lazy-lock.el (lazy-lock-unstall):
10073         (lazy-lock-fontify-after-idle): Rewritten to use with-temp-message.
10075         * fast-lock.el (fast-lock-save-cache-1):
10076         (fast-lock-cache-data): Rewritten to use with-temp-message.
10078 1998-11-22  Andrew Innes  <andrewi@delysid.gnu.org>
10080         * mail/rmail.el (rmail-set-message-counters-counter): Detect
10081         messages that have been added with DOS line endings and convert
10082         the line endings for such messages.
10084 1998-11-22  Emilio Lopes  <Emilio.Lopes@Physik.TU-Muenchen.DE>
10086         * help.el: Add resizing of temporary buffers.
10087         (temp-buffer-resize-mode): New command and variable.
10088         (temp-buffer-max-height): New variable.
10089         (resize-temp-buffer-window): New function.
10091         * window.el (window-buffer-height): New function, split from
10092         shrink-window-if-larger-than-buffer.
10093         (shrink-window-if-larger-than-buffer): Use window-buffer-height.
10095 1998-11-22  Richard Stallman  <rms@psilocin.ai.mit.edu>
10097         * frame.el (initial-frame-alist): Add defcustom.
10099         * shell.el (shell-prompt-pattern): Add defcustom.
10101 1998-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10103         * message.el (message-ignored-supersedes-headers): Remove
10104         NNTP-Posting-Date.
10106 1998-11-21  Richard Stallman  <rms@psilocin.ai.mit.edu>
10108         * help.el (describe-mode): Don't avoid loop indirecting thru
10109         value of INDICATOR.
10111 1998-11-20  Richard Stallman  <rms@psilocin.ai.mit.edu>
10113         * help.el (describe-variable): Allow any variable with a defcustom,
10114         even if it is not a user variable.
10116         * mail/rmail.el (mail-unsent-separator): Additional alternative.
10118 1998-11-20  Andrew Innes  <andrewi@delysid.gnu.org>
10120         * gnus/nntp.el (nntp-request-group): Allow for failures when
10121         requesting a new group.
10123 1998-11-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
10125         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Doc fix.
10127 1998-11-19  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
10129         * emacs-lisp/find-func.el (find-function-regexp): Handle skeletons.
10131 1998-11-19  Simon Marshall  <simon@gnu.org>
10133         * subr.el (with-temp-message): New macro.
10135         * emacs-lisp/lisp-mode.el (with-temp-message):
10136         Add lisp-indent-function property.
10138 1998-11-18  Dave Love  <fx@gnu.org>
10140         * progmodes/fortran.el (fortran-end-prog-re): Fix typo.
10142 1998-11-18  Richard Stallman  <rms@psilocin.ai.mit.edu>
10144         * emacs-lisp/bytecomp.el (temp-buffer-show-hook):
10145         This is not obsolete.
10147 1998-11-18  Kenichi Handa  <handa@etl.go.jp>
10149         * textmodes/picture.el: Make a new map by make-keymap.
10150         (picture-desired-column): New variable.
10151         (picture-update-desired-column): New function.
10152         (picture-beginning-of-line): Set picture-desired-column to 0.
10153         (picture-end-of-line): Set picture-desired-column to the current
10154         column.
10155         (picture-forward-column): Pay attention to multi-column character.
10156         (picture-backward-column): Likewise.
10157         (picture-move-down): Likewise.
10158         (picture-move-up): Likewise.
10159         (picture-movement-nw): With prefix arg, move twice columns.
10160         (picture-movement-ne): Likewise.
10161         (picture-movement-sw): Likewise.
10162         (picture-movement-se): Likewise.
10163         (picture-set-motion): Handle two-column movements.
10164         (picture-move): Call picture-move-down or picture-forward-column
10165         only when necessary.
10166         (picture-insert): Pay attention to picture-desired-column.
10167         (picture-self-insert): Likewise.
10168         (picture-clear-column): Pay attention to multi-column character.
10169         (picture-mode): Modify doc-string for two-column movement.
10171         * rect.el (move-to-column-force): New function.
10172         (operate-on-rectangle): If coerce-tabs is non-nil, call
10173         move-to-column-force instead of move-to-column.
10174         (insert-rectangle): Call move-to-column-force instead of
10175         move-to-column.
10176         (open-rectangle-line): If begextra is not zero, call
10177         move-to-column-force.
10180 1998-11-16  Dave Love  <fx@gnu.org>
10182         * textmodes/sgml-mode.el Require skeleton when compiling.
10183         (sgml-font-lock-keywords-1): Accept single-letter tags.
10184         (v2): Defvar free variable.
10186 1998-11-16  Sam Steingold  <sds@goems.com>
10188         * emacs-lisp/cl-indent.el: Indent `with-output-to-string' as a CL
10189         macro, not ELisp one.
10191 1998-11-16  Kenichi Handa  <handa@etl.go.jp>
10193         * emacs-lisp/lisp-mode.el: Set syntaxes all non-word multibyte
10194         characters to symbol.
10196         * language/japan-util.el (japanese-zenkaku-region): New optional
10197         arg KATAKANA-ONLY.
10199 1998-11-16  Kenichi Handa  <handa@etl.go.jp>
10201         * international/mule.el
10202         (after-insert-file-set-buffer-file-coding-system): If the buffer
10203         is changed to unibyte, return inserted bytes.
10205         * tar-mode.el (tar-header-block-tokenize): Decode codes of file
10206         and link names if necessary.
10207         (tar-header-block-summarize): Handle the case that file or link
10208         names are multibyte.
10209         (tar-summarize-buffer): At first set the current buffer unibyte,
10210         then if there are multibyte file names, change it to multibyte.
10211         (tar-mode): Get char position from tar-header-offset.
10212         (tar-extract): Avoid multibyte<->unibyte conversion in
10213         insert-buffer-subsring by setting both buffers unibyte
10214         temporarily.
10215         (tar-copy): Set the buffer unibyte while doing a work.  Write
10216         without code conversion.
10217         (tar-expunge): Set the buffer unibyte while doing a work.
10218         (tar-alter-one-field): Likewise.
10219         (tar-clear-modification-flags): Compare byte position with
10220         tar-header-offset.
10221         (tar-subfile-save-buffer): Avoid multibyte<->unibyte conversion in
10222         insert-buffer-subsring by setting both buffers unibyte
10223         temporarily.  Pay attention to multibyteness while updating the
10224         descriptor-line.
10225         (tar-mode-write-file): Write without code conversion.
10227 1998-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10229         * nngateway.el: Require cl.
10231 1998-11-15  Dave Love  <fx@gnu.org>
10233         * progmodes/fortran.el: Fix previous change:
10234         (fortran-end-prog-re1): Changed.
10235         (fortran-check-end-prog-re): New function.
10236         (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Use it.
10238 1998-11-13  Tom Breton  <tob@world.std.com>
10240         * autoinsert.el (auto-insert-alist): Don't assume *.el is part of
10241         GNU Emacs.
10243 1998-11-13  Carsten Dominik  <cd@delysid.gnu.org>
10245         * textmodes/reftex.el: (reftex-finding-files): Group documentation
10246         fixed.
10247         (reftex-toc-toggle-file-boundary,
10248         reftex-toc-toggle-labels,
10249         reftex-toc-toggle-context,reftex-find-start-point): New functions.
10250         (reftex-toc-include-labels, reftex-toc-include-context,
10251         reftex-toc-include-file-boundaries,
10252         reftex-toc-keep-other-windows): New options.
10253         (reftex-use-text-after-label-as-context): Option removed.
10254         (reftex-extract-bib-entries): Protect use in non-latex
10255         buffers.
10256         (reftex-toc-visit-location): Renamed from
10257         `reftex-toc-visit-line'.
10258         (reftex-latin1-to-ascii): Works now with and without Mule.
10259         (reftex-truncate): Removed special stuff for Emacs 20.2.
10260         (reftex-get-offset): Made more general.
10261         (reftex-show-label-location): Renamed from
10262         `reftex-select-label-callback'.
10263         (reftex-pop-to-label): Function removed (using
10264         `reftex-show-label-location' instead.
10265         (reftex-insert-docstruct): Renamed from
10266         `reftex-make-and-insert-label-list'.  Function args changed.
10267         (reftex-toc): Now uses `reftex-insert-docstruct' and
10268         `reftex-find-start-point'.
10269         (reftex-select-item): Use `reftex-find-start-point'.
10270         (reftex-toc-visit-line): Can display labels and file
10271         boundaries.
10272         (reftex-TeX-master-file): `(TeX-master-file)' protected.
10274 1998-11-12  Sam Steingold  <sds@goems.com>
10276         * browse-url.el (browse-url): Handle the case when
10277         `browse-url-browser-function' is a lambda list.
10279 1998-11-12  Eli Zaretskii  <eliz@mescaline.gnu.org>
10281         * loadup.el (buffer-undo-list): For ms-dos, use fns.el without the
10282         version string.
10283         * loadhist.el (symbol-file): Likewise
10285 1998-11-11  Richard Sharman  <Richard_Sharman@Mitel.COM>
10287         * ediff-init.el (ediff-even-diff-face-A): Fix stipple spelling.
10289 1998-11-11  Sam Steingold  <sds@goems.com>
10291         * inf-lisp.el (switch-to-lisp): If no inferior lisp present, call
10292         `run-lisp' instead of signalling an error.
10294 1998-11-11  Karl Heuer  <kwzh@gnu.org>
10296         * desktop.el (desktop-save, desktop-create-buffer): Undo 10-22 change.
10298 1998-11-11  Richard Stallman  <rms@gnu.org>
10300         * vc-hooks.el (vc-toggle-read-only): Doc fix.
10302 1998-11-11  Per Starback  <starback@update.uu.se>
10304         * ispell.el: (ispell-dictionary-alist-2): Removed svenska,
10305         renamed svenska8 to svenska, and fixed and extended CASECHARS
10306         for it.
10308 1998-11-11  Andrew Innes  <andrewi@delysid.gnu.org>
10310         * ps-print.el (ps-print-prologue-1): Only use old LandscapeMode
10311         handling if setpagedevice is not available.
10312         (ps-begin-file): Fix typo.
10314 1998-11-11  Kenichi Handa  <handa@etl.go.jp>
10316         * international/mule-util.el (compose-chars-component): Signal
10317         error if CH is a rule-based composition character.
10318         (compose-chars): Signal error if an already compsed character is
10319         going to be composed by rule-base.
10321         * term/x-win.el: If a resolved ASCII font name doesn't conform to
10322         full XLFD, don't try to get information of WEIGHT and SLANT from
10323         that font name.
10325 1998-11-10  Andrew Innes  <andrewi@harlequin.co.uk>
10327         * dos-w32.el (set-default-process-coding-system): Use function on
10328         before-init-hook to set default-process-coding-system based on
10329         enable-multibyte-characters.
10331         * term/w32-win.el ([language-change]): For now ignore
10332         keyboard language-change events.
10334 1998-11-10  Eli Zaretskii  <eliz@delysid.gnu.org>
10336         * ediff-util.el (ediff-make-temp-file): Run the prefix through
10337         convert-standard-file-name, but leave the results of
10338         make-temp-name unaltered.  For MS-DOS, truncate the prefix to 2
10339         characters if the original name already exists, or has a special
10340         handler.
10342 1998-11-10  Karl Heuer  <kwzh@gnu.org>
10344         * international/iso-insert.el: Delete autoload cookies.
10346         * international/iso-transl.el: Add autoload cookies.
10348 1998-11-10  Richard Stallman  <rms@gnu.org>
10350         * ispell.el (ispell-get-coding-system): Default to iso-latin-1.
10351         (ispell-process-line): Don't treat multibyte
10353 1998-11-09  Andrew Innes  <andrewi@harlequin.co.uk>
10355         * ps-print.el (ps-print-prologue-1): In BeginDoc procedure, call
10356         setpagedevice to specify the page size if setpagedevice is
10357         available.  This is necessary to select the correct paper tray on
10358         Level 2 printers with multiple paper sizes available.
10360         (ps-begin-file): Cope with font names that contain spaces, and
10361         call BeginDoc in a BeginSetup/EndSetup block.
10363 1998-11-08  Eli Zaretskii  <eliz@mescaline.gnu.org>
10365         * loadup.el (buffer-undo-list): Run fns-VERSION.el through
10366         convert-standard-filename.
10368         * loadhist.el (symbol-file): Run fns-VERSION.el through
10369         convert-standard-filename.
10371 1998-11-06  Richard Stallman  <rms@gnu.org>
10373         * textmodes/texinfmt.el (texinfo-format-scan):
10374         Detect the case of two @-commands in a row; process just the first.
10375         (texinfo-append-refill): If line has a @c, insert the @refill
10376         before it.
10377         (texinfo-format-refill): Return with point where the @refill was.
10379         * files.el (hack-local-variables): Test local-enable-local-variables.
10380         (hack-local-variables-prop-line): Likewise.
10381         (set-auto-mode): Don't test local-enable-local-variables here.
10382         (enable-local-variables): Doc fix.
10383         (local-enable-local-variables): Doc fix.
10384         (normal-mode): Doc fix.
10386 1998-11-06  Karl Heuer  <kwzh@gnu.org>
10388         * emacs-lisp/find-func.el (find-variable-noselect): Autoload.
10390 1998-11-06  Richard Sharman  <Richard_Sharman@Mitel.COM>
10392         * simple.el (line-number-mode): Doc fix.
10394 1998-11-06  Kenichi Handa  <handa@etl.go.jp>
10396         * international/fontset.el (create-fontset-from-fontset-spec):
10397         Give correct arg to `error'.
10399 1998-11-06  Andreas Schwab  <schwab@delysid.gnu.org>
10401         * textmodes/sgml-mode.el (html-mode): Doc fix.
10402         (sgml-name-8bit-mode): Fix missing format character in message string.
10404 1998-11-05  Karl Heuer  <kwzh@gnu.org>
10406         * mail/sendmail.el (sendmail-send-it): Check for failure.
10408 1998-11-05  Richard Stallman  <rms@gnu.org>
10410         * man.el (Man-page-header-regexp): Alternate value for Solaris 2.6.
10412         * rect.el (delete-whitespace-rectangle): close-rectangle renamed.
10413         (close-rectangle): Define as alias.
10415 1998-11-05  Richard M. Heiberger  <rmh@fisher.stat.temple.edu>
10417         * textmodes/tex-mode.el (tex-start-shell): Track directory changes.
10419 1998-11-05  Dave Love  <fx@gnu.org>
10421         * help.el (describe-variable): Don't quote link to source.
10423 1998-11-04  Richard Stallman  <rms@sucrose.ai.mit.edu>
10425         * gud.el (gud-common-init): Use pop-to-buffer.
10426         (same-window-regexps): Add an element that matches all gud buffers.
10428 1998-11-04  Jason Rumney  <jasonr@altavista.net>
10430         * term/w32-win.el (x-get-selection-value): Alias to
10431         x-cut-buffer-or-selection-value.
10432         (w32-standard-fontset-spec): New variable.
10433         (w32-create-initial-fontsets, mouse-set-font): Check whether
10434         new-fontset is available.
10435         (w32-use-w32-font-dialog): Enable use of set-variable.
10437 1998-11-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
10439         * vc.el (with-vc-file, edit-vc-file): New macros.
10441 1998-11-04  Kenichi Handa  <handa@etl.go.jp>
10443         * international/quail.el (quail-show-guidance-buf): Call
10444         set-minibuffer-window to set minibuffer window of the current
10445         frame correctly.
10447 1998-11-03  Theodore Jump <tjump@tertius.com>
10449         * term/w32-win.el: Require fontset.
10451 1998-11-03  Andrew Innes  <andrewi@delysid.gnu.org>
10453         * faces.el (set-face-font): Call resolve-fontset-name on w32.
10454         (set-face-font-auto): Ditto.
10456 1998-11-03  Andreas Schwab  <schwab@delysid.gnu.org>
10458         * mouse.el (mouse-drag-region): Fix typo.
10460 1998-11-02  Dave Love  <fx@gnu.org>
10462         * progmodes/fortran.el Fix for fontification of strings lost somehow:
10463         (fortran-fontify-string): New function.
10464         (fortran-font-lock-keywords-1): Use it.
10466 1998-11-02  Markus Rost  <rost@delysid.gnu.org>
10468         * comint.el (comint-file-name-quote-list): Doc fix.
10470 1998-11-01  Richard Stallman  <rms@psilocin.ai.mit.edu>
10472         * loadup.el (buffer-undo-list): Write fns-VERSION.el into
10473         build directory, not source directory.
10475         * mouse.el (mouse-drag-region): Fake up a mouse-motion event
10476         if we did not get one for the final move.
10478 1998-11-01  Dave Love  <fx@gnu.org>
10480         * goto-addr.el (goto-address-at-point, goto-address-at-mouse):
10481         Don't funcall browse-url-browser-function.
10483         * gnus/gnus-art.el (gnus-button-embedded-url, gnus-button-url):
10484         Don't funcall browse-url-browser-function.
10486         * fortran.el (fortran-end-prog-re1): Fix the regexp.
10488 1998-11-01  Richard Stallman  <rms@psilocin.ai.mit.edu>
10490         * files.el (revert-buffer): Doc fix.
10492 1998-10-31  Richard Stallman  <rms@psilocin.ai.mit.edu>
10494         * textmodes/tex-mode.el (tex-start-options-string):
10495         Quote the backslashes with more backslashes.
10497 1998-10-31  Dave Love  <fx@gnu.org>
10499         * webjump.el (webjump-sample-sites): Fix Lisp archive site.
10500         (webjump): Don't funcall browse-url-browser-function.
10502 1998-10-30  Kenichi Handa  <handa@etl.go.jp>
10504         * international/quail.el (quail-start-translation): Handle
10505         switching of the frame in read-key-sequence.
10506         (quail-start-conversion): Likewise.
10507         (quail-show-guidance-buf): Detach quail-guidance-buf from any
10508         windows before setting an appropriate window for it.
10509         (quail-hide-guidance-buf): Use window-minibuffer-p.  Set
10510         quail-guidance-win to nil.
10511         (quail-update-guidance): If quail-guidance-buf is not in the
10512         selected frame, call quail-show-guidance-buf again.
10514 1998-10-30  Espen Skoglund  <espensk@stud.cs.uit.no>
10516         * progmodes/pascal.el (pascal-mode):
10517         `blink-matching-paren-dont-ignore-comments' set to t.
10519 1998-10-30  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
10521         * calendar/cal-menu.el (cal-menu-update): Fix menu wording.
10523 1998-10-30  Dave Love  <fx@gnu.org>
10525         * vc.el (vc-backend-merge-news): Check for "P" output.
10527         * help.el (describe-variable): Hyperlink the definition.
10529 1998-10-30  Andreas Schwab  <schwab@delysid.gnu.org>
10531         * progmodes/sh-script.el (sh-canonicalize-shell): Fix regexp.
10532         (sh-set-shell): Likewise.
10534         * gnus/nnweb.el: Don't require 'w3 and 'url unprotected.
10536         * emacs-lisp/edebug.el (edebug-initial-mode): Fix customize type.
10537         (edebug-on-error): Fix customize type to match that of
10538         debug-on-error.
10540         * emacs-lisp/eldoc.el (eldoc-argument-case): Fix customize type.
10542         * emacs-lisp/lisp-mnt.el (lm-report-bug): Use
10543         report-emacs-bug-address instead of undefined bug-gnu-emacs.
10545         * international/mule-cmds.el (select-message-coding-system): Doc
10546         fix.
10548         * international/mule-diag.el (describe-coding-system): Describe
10549         all flags.
10551         * mail/sendmail.el (sendmail-coding-system,
10552         default-sendmail-coding-system): Doc fix.
10554         * simple.el (shell-command-on-region): Doc fix.
10556         * loadup.el: Write fns-*.el in current directory instead of
10557         data-directory since no installation directory exists yet.  Mark
10558         buffer unmodified afterwards.
10560         * loadhist.el (symbol-file): Load fns-*.el from exec-directory
10561         instead of data-directory since it is architecture dependent.
10562         (load-history-loaded): Update doc string.
10564 1998-10-29  Geoff Voelker  <voelker@cs.washington.edu>
10566         * ange-ftp.el (ange-ftp-canonicalize-filename): Do not use a UNC
10567         path as a default directory when canonicalizing names.
10569         * w32-fns.el: Remove a dangling reference to a directory on the
10570         build machine.
10572 1998-10-27  Richard Stallman  <rms@psilocin.ai.mit.edu>
10574         * progmodes/tcl-mode.el (tcl-font-lock-keywords): Added itcl and
10575         namespace related keywords such as `class', `body', `private',
10576         `variable', `namespace eval', etc.
10577         (tcl-imenu-generic-expression): Handle itcl body and class definitions.
10578         (tcl-mode): Added ":" as a word constituent to the syntax-alist of
10579         imenu and font-lock so that searches for \sw would find words
10580         containing colons.
10582         * progmodes/etags.el (initialize-new-tags-table):
10583         Do not alter find-tag-marker-ring and tags-location-ring.
10585 1998-10-27  Geoff Voelker  <voelker@cs.washington.edu>
10587         * term/w32-win.el: Require fontset.
10588         (w32-init-fontsets): New function (code from x-win.el).
10590 1998-10-26  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
10592         * cal-x.el (diary-frame-parameters, calendar-frame-parameters,
10593         calendar-and-diary-frame-parameters):  Add title parameter.
10595 1998-10-26  Richard Stallman  <rms@psilocin.ai.mit.edu>
10597         * completion.el (dynamic-completion-mode): New function to enable
10598         the mode.  (Just loading the file now does not change anything.)
10600 1998-10-26  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
10602         * ps-print.el: User option for multibyte buffer handling and doc fix.
10603         (ps-multibyte-buffer): New user option.
10604         (ps-setup): Print new user option.
10605         (ps-print-quote): New fun.
10606         (ps-color-p, ps-mule-font-info-database-latin): New var.
10607         (ps-default-color, ps-mule-font-info-database)
10608         (ps-mule-font-info-database-ps-bdf): Adjust initialization.
10609         (ps-mule-get-font-spec, ps-mule-begin, ps-begin-file)
10610         (ps-plot-with-face, ps-generate-postscript-with-faces, ps-generate):
10611         Little code improvement.
10612         (ps-mule-initialize): Initialize ps-mule-font-info-database.
10613         (ps-print-prologue-header, ps-font-family, ps-font-size)
10614         (ps-header-font-family, ps-header-font-size, ps-header-title-font-size)
10615         (ps-build-face-reference, ps-mule-font-info-database-bdf)
10616         (ps-mule-external-libraries, ps-mule-init-external-library)
10617         (ps-mule-prepare-font, ps-mule-find-wrappoint, ps-mule-plot-string):
10618         Doc fix.
10619         (ps-print-version): New version number (4.1.1) and doc fix.
10620         (ps-print-prologue-header): New user option.
10621         (ps-color-values, ps-xemacs-face-kind-p, ps-mapper, ps-extent-sorter):
10622         Conditional compilation for GNU Emacs and emacsens.
10623         (ps-generate-postscript-with-faces): Skip invisible text better.
10624         (ps-setup): Print new user option.
10625         (ps-print-preprint): Check if input file name exists and is unwritable.
10626         (ps-begin-file): Adjust PostScript prologue header for duplex printers
10627         and insert user PostScript prologue header comments.
10628         (ps-mule-encode-bit, ps-mule-string-ascii, ps-mule-string-encoding):
10629         New funs.
10630         (dos-ps-printer, lazy-lock-fontify-buffer): Eliminated.
10631         (ps-mule-prologue, ps-mule-cmpchar-prologue, ps-mule-bitmap-prologue):
10632         PostScript programming normalization.
10633         (ps-mule-encode-7bit, ps-mule-encode-8bit, ps-mule-generate-font)
10634         (ps-mule-generate-glyphs, ps-mule-prepare-font, ps-mule-plot-string)
10635         (ps-mule-skip-same-charset, ps-mule-plot-rule-cmpchar)
10636         (ps-mule-plot-cmpchar, ps-mule-prepare-cmpchar-font)
10637         (ps-mule-initialize, ps-mule-begin, ps-face-bold-p, ps-do-despool):
10638         Programming style normalization.
10640 1998-10-26  Kenichi Handa <handa@etl.go.jp>
10642         * ps-print.el: To make it work also on Emacs 20.2 and the earlier
10643         version, check the value of mule-version.
10645         * international/mule-util.el (compose-region): Insert then delete
10646         to preserve markers.
10647         (decompose-region): Use search-forward for efficiency.
10649         * language/chinese.el (pre-write-encode-hz): Cancel previous
10650         change, use generate-new-buffer instead of get-buffer-create.
10651         * language/devan-util.el
10652         (in-is13194-devanagari-pre-write-conversion): Likewise.
10653         * language/thai-util.el (thai-pre-write-conversion): Likewise.
10654         * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
10655         * language/viet-util.el (viqr-pre-write-conversion): Likewise.
10657 1998-10-26  Richard Stallman  <rms@psilocin.ai.mit.edu>
10659         * mail/rmailsum.el (rmail-message-subject-p):
10660         Handle message whose header has not been reformatted.
10662         * desktop.el (desktop-buffer-dired): Use dired-maybe-insert-subdir.
10664 1998-10-25  Jason Rumney  <jasonr@altavista.net>
10666         * term/w32-win.el (w32-use-w32-font-dialog, w32-fixed-font-alist):
10667         New variables.
10668         (mouse-set-font): Use font menus instead of dialog according to
10669         w32-use-w32-font-dialog.
10671 1998-10-21  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
10673         * calendar/calendar.el (calendar-day-name-array): Add doc string
10674         correctly!
10675         (calendar-month-name-array): Add doc string correctly!
10677 1998-10-21  Richard Stallman  <rms@psilocin.ai.mit.edu>
10679         * net-utils.el (whois-get-tld): Rewrite not to use `do'.
10681 1998-10-21  Markus Rost  <rost@delysid.gnu.org>
10683         * lisp/info.el (Info-next-menu-item): Stay on top of node.
10685         * mail/rmailout.el (rmail-output): Insert newline only if necessary.
10687         * mail/rmail.el (rmail-get-new-mail): Delete garbage in any case.
10689         * menu-bar.el (menu-bar-options-menu): Add option for truncate-lines.
10691 1998-10-21  Andreas Schwab  <schwab@delysid.gnu.org>
10693         * emacs-lisp/cl-specs.el (function-form): Fix spec for "function*".
10695 1998-10-21  Karl Heuer  <kwzh@gnu.org>
10697         * emacs-lisp/profile.el (profile-timer-program): Var deleted.
10698         (profile-timer-process, profile-temp-result-, profile-time): Likewise.
10699         (profile-filter, profile-reset-timer): Functions deleted.
10700         (profile-check-zero-init-times, profile-get-time): Likewise.
10701         (profile-find-function, profile-quit): Likewise.
10702         (profile-distinct, profile-call-stack, profile-last-time): New vars.
10703         (profile-time-list, profile-init-list): Doc fix.
10704         (profile-functions): Simplify.
10705         (profile-print): Use float.  Make output include space separators.
10706         (profile-add-time): New helper function.
10707         (profile-function-prolog): Renamed from profile-start-function.
10708         Handle profile-distinct.
10709         (profile-function-epilog): Renamed from profile-update-function.
10710         Handle profile-distinct.
10711         (profile-a-function): If the function to be profiled is an
10712         autoload form, load it.  If it's lazy-loaded, fetch it.
10713         (profile-fix-fun): Simplify profiling wrapper, and unwind-protect it.
10714         (profile-restore-fun): Arg FUN is now a function symbol, as was
10715         documented, rather than a one-element list.
10716         (profile-finish): Call profile-restore-fun properly.
10718 1998-10-21  Kenichi Handa  <handa@etl.go.jp>
10720         * international/characters.el: Setup charset property
10721         nospace-between-words.
10723         * international/mule-cmds.el (get-charset-property): If CHARSET is
10724         composition, return nil.
10725         (put-charset-property): If CHARSET is composition, do nothing.
10727         * language/chinese.el (pre-write-encode-hz): Use with-temp-buffer.
10728         * language/devan-util.el
10729         (in-is13194-devanagari-pre-write-conversion): Likewise.
10730         * language/thai-util.el (thai-pre-write-conversion): Likewise.
10731         * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
10732         * language/viet-util.el (viqr-pre-write-conversion): Likewise.
10734         * textmodes/fill.el (sentence-end-without-period): New variable.
10735         (canonically-space-region): Pay attention to
10736         sentence-end-without-period.
10737         (fill-find-break-point): The first argument CHARSET deleted.
10738         Caller changed.
10739         (fill-region-as-paragraph): Pay attention to charset property
10740         nospace-between-words and text property nospace-between-words.
10742 1998-10-20  Richard Stallman  <rms@psilocin.ai.mit.edu>
10744         * progmodes/sh-script.el (sh-font-lock-keywords): Don't crash for
10745         an unrecognized shell.
10747 1998-10-20  Thien-Thi Nguyen  <ttn@delysid.gnu.org>
10749         * desktop.el (desktop-save): Include minor modes symbolically.
10750         (desktop-create-buffer): Turn on all minor modes in `mim'.
10752 1998-10-20  Richard Stallman  <rms@psilocin.ai.mit.edu>
10754         * progmodes/sh-script.el (sh-mode): Handle .spec and .mspec files.
10755         (sh-font-lock-keywords): Handle rpm and rpm2.
10756         (sh-ancestor-alist): Handle rpm.
10758         * files.el (auto-mode-alist): Recognize .rpm files.
10759         Also .spec and .mspec files.
10761 1998-10-20  Eli Zaretskii  <eliz@mescaline.gnu.org>
10763         * faces.el (frame-set-background-mode): Enable the function for
10764         MSDOS frames.
10766 1998-10-20  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
10768         * calendar/calendar.el (calendar-day-name-array): Add doc string.
10769         (calendar-month-name-array): Add doc string.
10771 1998-10-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
10773         * simple.el (kill-ring-max): Increased to 60.
10775 1998-10-17  Kenichi Handa  <handa@etl.go.jp>
10777         * international/characters.el: Setup auto-fill-chars.
10779         * international/kinsoku.el (kinsoku): Check the variable
10780         enable-kinsoku.
10782         * simple.el (do-auto-fill): Don't check kinsoku-enable here.
10783         Don't call kinsoku directly, intead call fill-find-break-point.
10785         * textmodes/fill.el: Setup `fill-find-break-point-function'
10786         property to character sets which require `kinsoku' processing for
10787         filling.
10788         (fill-find-break-point): New function.
10789         (fill-region-as-paragraph): Don't check kinsoku-enable here.
10790         Don't call kinsoku directly, intead call fill-find-break-point.
10792 1998-10-18  Richard Stallman  <rms@psilocin.ai.mit.edu>
10794         * faces.el (modify-face-read-string): Return (nil) for "none".
10795         (modify-face): Don't get error if (nil) is the argument.
10796         (face-try-color-list): Don't check whether nil is a valid color.
10798 1998-10-17  Richard Stallman  <rms@psilocin.ai.mit.edu>
10800         * emacs-lisp/bytecomp.el (byte-recompile-directory):
10801         Print message about each directory, even in batch mode.
10803         * gnus/nntp.el: Require `cl' before using nnoo-declare.
10805         * ps-print.el (ps-mule-chars-in-string): No need to use sref.
10806         (ps-mule-string-char): No need to use sref.
10807         (ps-mule-next-index): No need to use sref.
10809         * ange-ftp.el (ange-ftp-waiting-flag): defvar moved.
10811         * files.el (revert-buffer-internal-hook): Add defvar.
10813         * arc-mode.el (archive-mode): Locally set file-precious-flag.
10815         * tar-mode.el (tar-mode): Locally set file-precious-flag.
10817 1998-10-16  Markus Rost  <rost@delysid.gnu.org>
10819         * international/mule-cmds.el (default-input-method): Fix custom type.
10821         * net-utils.el (whois-server-list): Fix customization type.
10823         * shell.el (shell-input-autoexpand): Fix customization group.
10825 1998-10-16  Richard Stallman  <rms@psilocin.ai.mit.edu>
10827         * repeat.el (repeat): Handle keyboard macros properly.
10828         Handle new prefix arg after self-insert command.
10830         * repeat.el: Don't include cl even at compile time.
10831         (repeat): Avoid using `loop'.
10833         * simple.el (shell-command-on-region): Doc fix.
10834         (next-history-element): Special error message if no default.
10836 1998-10-15  Richard Stallman  <rms@psilocin.ai.mit.edu>
10838         * ps-print.el (ps-print-buffer): Doc fix.
10839         (ps-despool): Likewise.
10841         * arc-mode.el (arc-mode): Provide arc-mode.
10843 1998-10-14  Richard Stallman  <rms@psilocin.ai.mit.edu>
10845         * ps-print.el (ps-print-buffer): Doc fix.
10847 1998-10-14  Dave Love  <fx@gnu.org>
10849         * ange-ftp.el (ange-ftp-read-passwd): Function deleted.
10850         (ange-ftp-set-passwd): Use read-passwd, not ange-ftp-read-passwd.
10851         (ange-ftp-get-passwd, ange-ftp-set-account): Likewise.
10853         * progmodes/fortran.el (fortran-mode-map): Change "Join
10854         Continuation Line" to "Join Line".
10855         (fortran-font-lock-keywords-1): Add "cycle", "exit".
10857 1998-10-14  Emilio Lopes  <Emilio.Lopes@Physik.TU-Muenchen.DE>
10859         * progmodes/fortran.el (fortran-join-line): Use
10860         `delete-indentation' instead of issuing an error message if not on
10861         a continuation line.  Provide for joining several lines using
10862         prefix arg.
10864 1998-10-14  Eli Zaretskii  <eliz@mescaline.gnu.org>
10866         * term/pc-win.el (msdos-color-values): New variable.
10867         (x-color-values): New function, emulates its namesake from
10868         src/xfns.c.
10869         (msdos-bg-mode): Add all dark colors to those which return
10870         "dark".
10872 1998-10-14  Richard Stallman  <rms@psilocin.ai.mit.edu>
10874         * replace.el (keep-lines, flush-lines, how-many):
10875         Don't ignore case if arg has upper case letters.
10877 1998-10-11  Reto Zimmermann  <zimmi@iis.ee.ethz.ch>
10879         * progmodes/vhdl-mode.el
10880         (vhdl-add-index-menu): Reverse order in imenu-generic-expression.
10881         (vhdl-template-assert, vhdl-block, vhdl-configuration-spec)
10882         (vhdl-elsif, vhdl-generate, vhdl-if, vhdl-map)
10883         (vhdl-selected-signal-assignment, vhdl-use, vhdl-while-loop)
10884         (vhdl-get-port, vhdl-get-generic): Replace (undo 0) by (undo).
10885         (vhdl-when): Fix indentation problem.
10886         (vhdl-outer-space): Add "_" to syntax table for expand-abbrev.
10887         (vhdl-get-port, vhdl-get-generic): Bug fix in template.
10888         (vhdl-hooked-abbrev): Bug fix in hooked abbrev.
10890 1998-10-13  Geoff Voelker  <voelker@cs.washington.edu>
10892         * ls-lisp.el (ls-lisp-use-insert-directory-program): New variable.
10893         (ls-lisp-insert-directory): Renamed from insert-directory.
10894         (insert-directory): New function.
10896 1998-10-13  Richard Stallman  <rms@psilocin.ai.mit.edu>
10898         * simple.el (completion-fixup-function): Variable deleted.
10899         (completion-setup-function): Delete code for completion-fixup-function.
10900         * emacs-lisp/lisp.el (lisp-complete-symbol):
10901         Don't bind completion-fixup-function.
10903         * files.el (find-file-wildcards): New option.
10904         (find-file-noselect): Handle wild cards, if enabled.
10905         (file-expand-wildcards): New function.
10907         * simple.el (set-fill-column): Doc fix.
10909 1998-10-13  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
10911         * mail/uce.el (uce-reply-to-uce): Bind case-fold-search.
10913 1998-10-13  Andreas Schwab  <schwab@mescaline.gnu.org>
10915         * progmodes/hideif.el: (hide-ifdef-env, hif-outside-read-only):
10916         Move declaration before first use.
10917         (hif-parse-if-exp, hif-nexttoken, hif-expr, hif-term, hif-eq-expr,
10918         hif-math, hif-factor): Rename token to hif-token and token-list to
10919         hif-token-list.
10920         (hif-token, hif-token-list): Declare them.
10921         (hif-find-ifdef-block): Return cons of top and bottom point
10922         instead of setting dynamically bound variables.
10923         (hide-ifdef-block, show-ifdef-block): Use return value of
10924         hif-find-ifdef-block.
10926 1998-10-12  Richard Stallman  <rms@psilocin.ai.mit.edu>
10928         * subr.el (read-passwd): Use clear-this-command-keys.
10930         * telnet.el (telnet-initial-filter): Use clear-this-command-keys.
10932         * gnus/pop3.el (pop3-open-server): Bind coding-system-for-read
10933         and ...-for-write.
10935 1998-10-12  Andrew Innes  <andrewi@harlequin.co.uk>
10937         * gnus/nntp.el (nntp-possibly-change-group): Allow for unexpected
10938         responses to GROUP command, since this may be called from a timer
10939         with quit inhibited.
10941 1998-10-12  Kenichi Handa  <handa@etl.go.jp>
10943         * international/ccl.el (ccl-compile-if): If there's no false-cmds,
10944         set unconditional-jump to nil.
10945         (ccl-compile-read-multibyte-character): Return nil.
10946         (ccl-compile-write-multibyte-character): Likewise.
10947         (ccl-compile-translate-character): Likewise
10948         (ccl-compile-map-multiple): Likewise.
10949         (ccl-compile-map-single): Likewise.
10951         * international/kinsoku.el: Add coding tag.
10952         (kinsoku-bol): Remove superfluous TAB in a string.
10954         * international/mule-cmds.el (find-coding-systems-for-charsets):
10955         Delete `composition' (if any) from CHARSETS.
10957 1998-10-12  Richard Stallman  <rms@psilocin.ai.mit.edu>
10959         * international/mule-cmds.el (setup-specified-language-environment):
10960         Add apropos-inhibit property.
10961         (describe-specified-language-support): Likewise.
10963 1998-10-11  Kenichi HANDA  <handa@etl.go.jp>
10965         * international/mule.el (make-coding-system): Create -with-esc
10966         variant coding system.
10968 1998-10-11  Richard Stallman  <rms@sucrose.ai.mit.edu>
10970         * progmodes/etags.el (tags-loop-revert-buffers): New variable.
10971         (next-file): Optionally offer to revert a file's buffer,
10972         if it has an existing buffer but the file has changed.
10974         * info.el (Info-insert-dir): Detect and report problems
10975         in input files, such as "No Top node".  Return with point
10976         at the beginning of the text.
10977         (Info-find-node): Reinsert the code to handle files
10978         with no tags table; it was deleted by mistake.
10980 1998-10-11  Richard Stallman  <rms@sucrose.ai.mit.edu>
10982         * textmodes/texnfo-upd.el (texinfo-make-menu): Don't let
10983         texinfo-find-higher-level-node repeatedly find the same node.
10984         (texinfo-find-higher-level-node): Doc fix.
10986 1998-10-10  Richard Stallman  <rms@psilocin.ai.mit.edu>
10988         * mail/smtpmail.el (smtpmail-send-data-1): Use encode-coding-string.
10989         (smtpmail-address-buffer): Add defvar.
10990         (smtpmail-recipient-address-list, smtpmail-read-point): Likewise.
10992         * mail/feedmail.el (feedmail-queue-runner-is-active): Definition moved.
10994         * ffap.el (ffap-machine-p-local): Fix editing error.
10996 1998-10-09  Richard Stallman  <rms@psilocin.ai.mit.edu>
10998         * faces.el (frame-set-background-mode):
10999         Don't do anythung for text-only or MSDOS frame.
11001 1998-10-08  Kenichi Handa  <handa@etl.go.jp>
11003         * international/quail.el (quail-defrule): New optional arg APPEND.
11004         (quail-defrule-internal): Fix bug of handling the argument APPEND.
11006 1998-10-08  Richard Stallman  <rms@psilocin.ai.mit.edu>
11008         * gnus/pop3.el (pop3-open-server):
11009         Set process-coding-system-alist around open-network-stream.
11011 1998-10-07  Richard Stallman  <rms@psilocin.ai.mit.edu>
11013         * files.el (save-buffer): Doc fix.
11015 1998-10-07  Karl Heuer  <kwzh@gnu.org>
11017         * emacs-lisp/profile.el (profile-fix-fun): If already profiled,
11018         return DEF unchanged, not nil.  Simplify.
11020 1998-10-06  Geoff Voelker  <voelker@cs.washington.edu>
11022         * dos-w32.el (file-name-buffer-file-type-alist): Fix typo in regexp.
11024 1998-10-06  Peter Breton  <pbreton@ne.mediaone.net>
11026         * generic.el (generic-mode-with-type): Added hooks for generic-modes.
11028         * net-utils.el (ftp, nslookup): Require comint.
11029         (network-service-connection): Likewise.
11030         (whois-server-name): Defaults to whois.arin.net
11031         (whois-server-list, whois-server-tld, whois-guess-server): New var.
11032         (whois): Tries to guess the appropriate top-level domain server.
11033         (whois-get-tld): New function.
11035         * dirtrack.el: Mentioned dirtrack-debug-toggle in the docs.
11036         (dirtrack-debug-toggle): Added this function.
11038 1998-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11040         * files.el (find-file-noselect): Switch to the correct buffer
11041         before checking find-file-literally, and allow non-nil non-t
11042         rawfile params.
11044 1998-10-06  Karl Heuer  <kwzh@gnu.org>
11046         * midnight.el (clean-buffer-list): Add autoload cookie.
11048         * arc-mode.el (archive-mode-revert): Arg no-auto-save renamed from
11049         no-autosave.
11050         * tar-mode.el (tar-mode-revert): Likewise.
11051         * ediff-util.el (ediff-arrange-auto-save-in-merge-jobs): Renamed
11052         from ediff-arrange-autosave-in-merge-jobs.  Callers changed.
11053         * gnus/message.el (message-auto-save-directory): Renamed from
11054         message-autosave-directory.  All references changed.
11056 1998-10-06  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
11058         * mail/rmail.el (rmail-retry-failure): Allow blanks in boundary
11059         string.  Expose mime stuff while searching.
11061 1998-10-06  Richard Stallman  <rms@gnu.org>
11063         * emacs-lisp/lisp-mode.el (eval-defun): Return the evaluation result.
11065         * replace.el (perform-replace): Position point properly
11066         before and after the recursive edit of C-r.
11068         * progmodes/etags.el (tags-reset-tags-tables): Properly
11069         find the markers in the old rings that are being discarded.
11071 1998-10-06  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
11073         * apropos.el (apropos-print): Control invalid characters.
11075         * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
11076         Renamed from lm-font-lock-O-face, lm-font-lock-X-face to avoid
11077         confusing customize.
11079 1998-10-06  Eli Zaretskii  <eliz@mescaline.gnu.org>
11081         * generic-x.el (bat-generic-mode): Fix regexps for keywords and
11082         built-in commands.  Add more built-in commands and fix face names.
11084 1998-10-05  Simon Marshall  <simon@gnu.org>
11086         * menu-bar.el (menu-bar-tools-menu): Added entry for Speedbar.
11088 1998-10-04  Eric Ludlam  <zappo@gnu.org>
11090         * speedbar.el (speedbar-initial-expansion-list-name): Remove
11091         customization since it is not useful in this case.
11092         (speedbar-frame-mode): Check if cfx or cfy is a list, and make
11093         sure it gets evalled to a number.  Also verify that set-frame-name
11094         fn exists before calling it.
11096         * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
11097         Protect a `forward-sexp' call which could fail, and improved regex
11098         for ie, and eg abbreviations.
11100 1998-10-02  Noah Friedman  <friedman@splode.com>
11102         * rlogin.el (rlogin-send-Ctrl-C): Use process-send-string, not
11103         send-string.
11104         (rlogin-send-Ctrl-D): Here also.
11105         (rlogin-send-Ctrl-Z): Here also.
11106         (rlogin-send-Ctrl-backslash): Here also.
11108 1998-10-02  Dave Love  <fx@gnu.org>
11110         * outline.el (hide-region-body): Bind
11111         outline-view-change-hook to nil while making repeated calls to
11112         outline-flag-region.  Run it once at the end.
11113         (hide-other, hide-sublevels, show-children): Likewise.
11115         * info-look.el: Remove duplicate scheme-mode entry.
11116         (info-lookup-make-completions): When looking for entries, check
11117         that `item' isn't null or "Menu".
11119 1998-10-01  Karl Heuer  <kwzh@gnu.org>
11121         * net-utils.el: Don't require ffap.
11122         (net-utils-machine-at-point, net-utils-url-at-point): New functions.
11123         (ping, nslookup-host, finger, network-connection-to-service): Use them.
11125 1998-09-30  Richard Stallman  <rms@gnu.org>
11127         * ispell.el (check-ispell-version): No need to bind default-major-mode.
11129         * imenu.el (imenu--generic-function): Sort each submenu by position.
11130         (imenu--sort-by-position): New function.
11132         * cus-edit.el (Custom-mode-menu): Fix info node name.
11133         (customize group): Fix info node name.
11135         * mail/mailalias.el (build-mail-aliases): Don't allow
11136         a newline in the alias name.  Don't define an alias
11137         if the definition would be empty.
11139         * which-func.el (which-func-mode-global): Make :set function
11140         more reliable.
11142         * custom.el (custom-set-variables): Load the requests first,
11143         then check the symbol's `set' function.
11145         * ffap.el: Doc fixes.
11147 1998-09-30  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
11149         * gnus.el: (gnus-valid-select-methods): Fix type.
11150         * gnus-sum.el (gnus-summary-respool-default-method): Fix type.
11151         * gnus-score.el (gnus-orphan-score): Fix type.
11152         (gnus-score-default-header, gnus-score-default-type): Fix type.
11153         * gnus-art.el (gnus-article-x-face-too-ugly): Fix type.
11154         (gnus-saved-headers): Fix type.
11156         * lisp/textmodes/fill.el (fill-individual-paragraphs-prefix):
11157         Avoid nil value of `two-lines-citation-part'.
11159 1998-09-30  Roman Belenov  <roman@nstl.nnov.ru>
11161         * which-func.el (which-function): Handle case when
11162         (car imenu--index-alist) is nil.
11164 1998-09-29  Dave Love  <fx@gnu.org>
11166         * jka-compr.el (jka-compr-compression-info-list): Remove "-c" from
11167         bzip2 args.
11169 1998-09-29  Simon Marshall  <simon@gnu.org>
11171         * comint.el (comint-mode): Use make-local-hook for pre-command-hook and
11172         comint-exec-hook.
11174 1998-09-29  Stephen Eglen  <stephen@gnu.org>
11176         * info-look.el: Add support for Octave.
11178 1998-09-28  Carsten Dominik  <cd@delysid.gnu.org>
11180         * textmodes/reftex.el (reftex-finding-files): New customize group.
11181         (reftex-texpath-environment-variables,
11182         reftex-use-external-file-finders, reftex-external-file-finders,
11183         reftex-search-unrecursed-path-first): New options.
11184         (reftex-process-string, reftex-find-file-externally): New
11185         functions.
11186         (reftex-access-search-path): Execute shell commands to find the
11187         search path.
11188         (reftex-toggle-auto-view-crossref): When turning on, make sure
11189         `reftex-auto-view-crossref' becomes non-nil.
11190         (reftex-abbrev-regexp): Constant removed.
11191         (reftex-convert-string): Abbrev regexp calculated locally.
11193 1998-09-28  Dave Love  <fx@gnu.org>
11195         * progmodes/fortran.el: Don't call regexp-opt when deriving
11196         font-lock patterns with keywords that aren't all literal.
11198 1998-09-27  Kurt Hornik  <Kurt.Hornik@ci.tuwien.ac.at>
11200         * octave-inf.el (inferior-octave-prompt):  Also match prompts of
11201         the form `octave.bin:1>' which come from using precopiled binary
11202         versions.
11204 1998-09-27  Richard Stallman  <rms@psilocin.ai.mit.edu>
11206         * help.el (help-for-help): Use %THIS-KEY%.
11207         (help-quit): Add doc.
11209         * help-macro.el (make-help-screen): Keep HELP-TEXT
11210         in a separate function definition, not in the help command FNAME.
11211         Replace %THIS-KEY% with the key sequence that ran FNAME.
11213 1998-09-25  Richard Stallman  <rms@gnu.org>
11215         * textmodes/texinfo.el (texinfo-show-structure):
11216         Bind inhibit-read-only.
11218         * isearch.el (isearch-search-and-update): Properly
11219         handle upper case letters in the reverse-search special case.
11221 1998-09-25  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
11223         * gnus.el: Extend the list of autoloaded functions.
11225         * gnus/gnus-start.el (gnus-check-first-time-used): Change current
11226         buffer before creating help group. (from Gnus v5.6.43, fix by
11227         1998-08-20 Per Starback <starback@update.uu.se>)
11229         * gnus-util.el (gnus-output-to-rmail): Adjust to
11230         `rmail-output-to-rmail-file'.
11232 1998-09-25  Karl Heuer  <kwzh@gnu.org>
11234         * hexl.el (hexl-mode-map): More of previous change.
11236         * textmodes/tex-mode.el (tex-run-command): Doc fix.
11237         (tex-start-tex): Don't use tex-start-options-string in star case.
11238         Quote file name in star case as well as in non-star.
11239         Add blank and quoting of option string here.
11240         (tex-start-options-string): Not here.
11242 1998-09-23  Karl Heuer  <kwzh@gnu.org>
11244         * term.el (term-delimiter-argument-list): Doc fix.
11245         (term-emulate-terminal): Escape literal semicolon.
11246         * progmodes/asm-mode.el (asm-mode): Doc fix.
11247         (asm-comment-char): Escape literal semicolon.
11248         * emulation/viper-cmd.el (viper-movement-commands): Likewise.
11250 1998-09-23  Richard Stallman  <rms@gnu.org>
11252         * hexl.el (hexl-mode-map): Don't override all ESC bindings,
11253         only those that normally modify the buffer.
11255         * dabbrev.el (dabbrev--find-expansion): Don't scan the current buffer
11256         over again.
11258 1998-09-23  E. Jay Berkenbilt  <ejb@ql.org>
11260         * ispell.el (check-ispell-version): Ensure same buffer is current
11261         when let-binding of case-fold-search ends.
11263 1998-09-23  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
11265         * ps-print.el: Skip invisible overlay.
11266         Test for set-buffer-multibyte rather than using mule-version.
11267         (ps-print-version): New version number (4.1) and doc fix.
11268         (ps-generate-postscript-with-faces): Skip invisible overlay.
11270 1998-09-23  Fritz Knabe  <knabe@cs.virginia.edu>
11272         * mail/mh-mime.el (mh-mhn-compose-insertion): Use quotes.
11274 1998-09-22  Kenichi Handa  <handa@etl.go.jp>
11276         * international/quail.el (quail-update-guidance): Check for the
11277         return value of (quail-guidance) fixed.
11278         (quail-update-translation): Bind quail-current-str locally when it
11279         calls quail-update-guidance.
11280         (quail-update-translation): If input-method-exit-on-first-char is
11281         non-nil, terminate translation only when the current input method
11282         is simple.
11284 1998-09-22  Paul Eggert  <eggert@twinsun.com>
11286         * startup.el (locale-translation-file-name): Prefer X-related names
11287         to the name used by GNU/Linux sans X.  Set to nil if no file found.
11288         (command-line): Use locale-translation-file-name if it is not nil,
11289         instead of testing for its existence again.
11290         regexp-quote the ctype before using it in a regexp.
11291         Allow a colon to appear after the ctype in the aliases file,
11292         as is done in X11R6.4.
11294 1998-09-21  Richard Stallman  <rms@gnu.org>
11296         * mail/rmail.el (rmail-resend): Work properly if invoked from summary.
11298         * calendar/appt.el (appt-interval): Variable deleted.
11299         (appt-check): For minutes in between appt-display-interval times,
11300         do check, but don't display anything except an updated mode line.
11301         Count against appt-display-interval based on minutes since
11302         first display of this appointment, not based on time of day.
11303         If appt-display-mode-line, force mode line redisplay
11304         whenever appt-mode-string has changed.
11305         (appt-add, appt-delete): Add autoload cookies.
11306         (appt-check): Catch errors from calling `diary'.
11307         (appt-max-time): Renamed from max-time.
11308         (appt-now-displayed, appt-display-count): New variables.
11309         (appt-timer): Don't create one if we already have one.
11311         * textmodes/tex-mode.el (tex-compilation-parse-errors):
11312         More general code to use the source buffer instead of the zap file.
11314         * hilit-chg.el (highlight-compare-with-file): Renamed from
11315         compare-with-file.
11317         * loadhist.el (load-history-loaded): New variable.
11318         (symbol-file): Load etc/fns-VERSION.el if that has not been done.
11320         * loadup.el: Write load-history into etc/fns-VERSION.el, then clear it.
11322         * emacs-lisp/find-func.el (find-function-search-for-symbol):
11323         Fix error messages.
11325 1998-09-21  Markus Armbruster  <armbru@pond.sub.org>
11327         * avoid.el (mouse-avoidance-banish-hook): Don't move unless in an
11328         Emacs frame.
11330 1998-09-21  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
11332         * mail/rmail.el (rmail-decode-babyl-format): Recognize both
11333         `undecided' and `undecided-unix'.
11335 1998-09-21  Dave Love  <fx@gnu.org>
11337         * help.el (help-make-xrefs): Fix typo affecting Info references.
11339         * subr.el (remove-hook): Check list values to avoid errors.
11341 1998-09-18  Noah Friedman  <friedman@splode.com>
11343         * emacs-lisp/eldoc.el (eldoc-message): Check for 1-arg case, and
11344         store string in eldoc-last-message without consing a new string.
11345         Rearrange logic from nested if's into cond's.
11346         (eldoc-print-fnsym-args): Renamed to eldoc-get-fnsym-args-string.
11347         Do not print message; just return string.
11348         (eldoc-get-var-docstring): Renamed from eldoc-print-var-docstring.
11349         Do not print message; just return string.
11350         Cache that string in eldoc-last-data.
11351         (eldoc-last-data): Make into a vector.
11352         (eldoc-get-fnsym-args-string): Use new data form of structure.
11353         (eldoc-get-var-docstring): Here also.
11354         (eldoc-last-data-store): New function.
11355         (eldoc-get-fnsym-args-string): Use it.
11356         (eldoc-get-var-docstring): Here also.
11357         (eldoc-docstring-first-line): Minimize interim string consing.
11358         Call substitute-command-keys on the result.
11359         (eldoc-print-var-docstrings, eldoc-print-docstring,
11360         eldoc-docstring-message): Functions removed.
11361         (eldoc-docstring-format-sym-doc): New function, functionality
11362         ripped out of eldoc-docstring-message.
11363         (eldoc-get-fnsym-args-string, eldoc-get-var-docstring): Use it.
11365 1998-09-18  Kenichi Handa  <handa@etl.go.jp>
11367         * international/mule.el (make-coding-system): Doc-string modified.
11369 1998-09-18  Andreas Schwab  <schwab@delysid.gnu.org>
11371         * progmodes/vhdl-mode.el (vhdl-header-file): Fix customize type.
11373         * progmodes/cpp.el (cpp-face-light-list, cpp-face-dark-list): Fix
11374         customize type.
11376         * progmodes/cperl-mode.el (cperl-lazy-help-time): Fix customize
11377         type.
11379         * progmodes/compile.el (compilation-error-screen-columns): New
11380         variable.
11381         (compilation-next-error-locus): Use it to decide whether to use
11382         forward-char or move-to-column.
11384         * mail/rmail.el (rmail-movemail-program): Fix customize type.
11386         * mail/feedmail.el (feedmail-x-mailer-line-user-appendage,
11387         feedmail-fiddle-plex-user-list,
11388         feedmail-spray-address-fiddle-plex-list,
11389         feedmail-prompt-before-queue-user-alist,
11390         feedmail-prompt-before-queue-help-supplement,
11391         feedmail-queue-reminder-alist, feedmail-queue-default-file-slug,
11392         feedmail-queue-alternative-mail-header-separator): Fix customize
11393         type.
11395         * startup.el (site-run-file): Fix customize type.
11397         * speedbar.el (speedbar-initial-expansion-list-name): Fix
11398         customize type.
11400         * shell.el (shell-input-autoexpand): Fix customize type.
11402         * ps-print.el (ps-font-info-database): Add missing dots in value.
11403         Improve layout of customize type.
11405         * net-utils.el (traceroute-program-options, ping-program-options,
11406         ipconfig-program-options, netstat-program-options,
11407         arp-program-options, route-program-options,
11408         nslookup-program-options, ftp-program-options): Fix customize
11409         type.
11411         * midnight.el (clean-buffer-list-kill-regexps,
11412         clean-buffer-list-kill-buffer-names,
11413         clean-buffer-list-kill-never-buffer-names,
11414         clean-buffer-list-kill-never-regexps): Fix customize type.
11416         * man.el (Man-init-defvars): Avoid trailing nil on
11417         Man-filter-list.
11419         * lpr.el (printer-name): Fix customize type.
11421 1998-09-16  Kenichi Handa  <handa@etl.go.jp>
11423         * international/mule-cmds.el (reset-language-environment): Call
11424         update-coding-systems-internal.
11426         * international/mule-conf.el: Call update-coding-systems-internal
11427         at the tail.
11429 1998-09-14  Dave Love  <fx@gnu.org>
11431         * vc-hooks.el (vc-menu-map): Change the vc-directory label.  Don't
11432         use the menu-enable properties, pending doing it correctly and
11433         acceptably fast.
11435         * map-ynp.el (map-y-or-n-p): Mention RET, `q' in the help text.
11437 1998-09-13  Dave Love  <d.love@dl.ac.uk>
11439         * progmodes/hideshow.el (hs-grok-mode-type): Check
11440         comment-{start,end} non-nil as well as bound.  Report an error if
11441         we can't grok the mode.
11443 1998-09-13  Richard Stallman  <rms@gnu.org>
11445         * simple.el (blink-matching-open): Don't log paren matching
11446         messages in *Messages*.
11448 1998-09-12  Richard Stallman  <rms@gnu.org>
11450         * scroll-bar.el (scroll-bar-scroll-down, scroll-bar-scroll-up):
11451         Set point-before-scroll at end even if there was an error.
11453         * ange-ftp.el (ange-ftp-insert-file-contents):
11454         Use binary mode for dumb-unix hosts as for unix hosts.
11455         (ange-ftp-copy-file-internal): Likewise.
11457         * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
11459         * emacs-lisp/pp.el: Doc fixes.
11461         * wid-edit.el (widget-menu-max-shortcuts): New variable.
11462         (widget-choose): Don't use single-char shortcuts if # items
11463         exceeds that many.  Use minibuffer instead.
11465 1998-09-12  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
11467         * calendar/diary-lib.el (mark-sexp-diary-entries): Fix previous chg.
11469 1998-09-12  Eric Ludlam  <zappo@mescaline.gnu.org>
11471         * speedbar.el (speedbar-frame-mode): Do not set frame position if
11472         in terminal mode.
11474 1998-09-10  Noah Friedman  <friedman@splode.com>
11476         * rsz-mini.el (resize-minibuffer-mode): Remove :version field from
11477         defcustom declaration.  It's wreaking too much havoc with XEmacs
11478         and older versions of Emacs, which share this code.
11480         * type-break.el (type-break-mode): Here also.
11482         * rlogin.el (rlogin): If using make-local-hook, pass the 4th arg
11483         `t' to add-hook also to modify the new local value.
11485 1998-09-10  Dave Love  <fx@gnu.org>
11487         * vc.el (vc-insert-headers): Doc fix.
11489 1998-09-10  Richard Stallman  <rms@gnu.org>
11491         * textmodes/flyspell.el (flyspell-mode-on): Make the
11492         ispell-... variables permanent locals.
11493         (flyspell-mode-off): Add autoload cookie.
11495         * ange-ftp.el (ange-ftp-write-region): For `dumb-unix' host,
11496         do use binary mode, just as for `unix'.
11497         (ange-ftp-host-type): If HOST is nil, return `unix'.
11499         * dired.el (dired-mark-files-containing-regexp):
11500         Don't scan directories.  Ignore non-readable files.
11502         * progmodes/compile.el (compilation-error-regexp-alist):
11503         Fix previous change: allow . and _ in command name.
11505         * dired.el (dired-mark-files-containing-regexp): Fix previous change.
11507         * uncompress.el (uncompress-while-visiting):
11508         Use just the car of what find-operation-coding-system returns.
11510         * textmodes/tex-mode.el (tex-start-tex): Call comint-quote-filename.
11512         * shell.el (shell-file-name-quote-list): Add # to the value.
11514 1998-09-10  E. Jay Berkenbilt  <ejb@ql.org>
11516         * textmodes/flyspell.el (flyspell-mode-on): Fix kill-buffer-hook
11517         to make killing of ispell process work even if
11518         kill-all-local-variables has been run.
11520 1998-09-10  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
11522         * calendar/diary-lib.el (mark-sexp-diary-entries): Avoid infinite
11523         loop when sexp entry ends at end of file with no newline.
11525 1998-09-10  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
11527         * cus-edit.el (Custom-save, Custom-reset-current, Custom-reset-saved)
11528         (Custom-reset-standard): Fix menu inconsistency.
11530         * mail/feedmail.el (feedmail-from-line): Allow t.
11531         (feedmail-message-id-suffix): Allow nil.
11533         * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
11534         Simplify.  Make prefix arg work right.
11536 1998-09-09  Dave Love  <fx@gnu.org>
11538         * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
11540         * help.el (help-xref-interned): Bind inhibit-read-only when inserting.
11542 1998-09-08  Dave Love  <fx@gnu.org>
11544         * add-log.el (change-log-font-lock-keywords): Do parenthesized
11545         stuff only after file names or at start of line.  Allow parens
11546         around e-mail, as well as angles.
11548         * gnus/nnweb.el (require): Wrap requirement of w3 and url in
11549         ignore-errors too, eval'd when compile.  Require w3 stuff at load
11550         time for nicer failure if it's not available.
11552 1998-09-07  Geoff Voelker  <voelker@cs.washington.edu>
11554         * comint.el (comint-arguments): Ignore backslashes when using
11555         w32 shells that expect backslashes as the directory separator.
11557 1998-09-04  Kenichi Handa  <handa@etl.go.jp>
11559         * international/fontset.el (resolved-ascii-font): New variable.
11560         (x-complement-fontset-spec): By side effect, set
11561         `resolved-ascii-font' to the resolved name of ASCII font."
11562         (create-fontset-from-fontset-spec): Don't get a value for
11563         resolved-ascii-font from the list full-fontlist.  It is set by
11564         x-complement-fontset-spec now.
11566         * ps-print.el: To make it work also on Emacs 20.2 and the earlier
11567         version, check the value of mule-version.
11569 1998-09-07  Carsten Dominik  <cd@delysid.gnu.org>
11571         * textmodes/reftex.el (reftex-view-crossref): Split up into
11572         several functions.  No longer moves to find a macro.
11573         (reftex-view-cr-cite, reftex-view-cr-ref,
11574         reftex-end-of-bib-entry): New functions.
11575         (reftex-auto-view-crossref): New value `window' allowed.
11576         (reftex-view-crossref-when-idle): Process new `window' option in
11577         (reftex-translate-to-ascii-function): New default.
11578         (reftex-label-illegal-re): Default changed, removed Latin1.
11579         (reftex-latin1-to-ascii): New function.
11580         (reftex-what-environment): Check for section regexp before use.
11581         (reftex-find-tex-file, reftex-find-bib-file): Fixed bug with
11582         absolute path names.
11583         (reftex-TeX-master-file): Changed sequence of file checks.
11584         (reftex-do-citation): bibview cache only with RefTeX mode on.
11586 1998-09-06  Richard Stallman  <rms@gnu.org>
11588         * progmodes/compile.el (compilation-error-regexp-alist):
11589         In first pattern (GNU utilities and other things),
11590         allow a space after the optional program name at the beginning.
11592         * mail/mail-hist.el (mail-hist-current-header-contents):
11593         Fix previous change: use mail-header-end.
11595 1998-09-06  Bill Richter  <richter@math.nwu.edu>
11597         * international/ccl.el: Doc fixes.
11598         * international/encoded-kb.el: Doc fixes.
11599         * international/fontset.el: Doc fixes.
11600         * international/kinsoku.el: Doc fixes.
11601         * international/kkc.el: Doc fixes.
11602         * international/mule-cmds.el: Doc fixes.
11603         * international/mule-conf.el: Doc fixes.
11604         * international/mule-util.el: Doc fixes.
11605         * international/mule.el: Doc fixes.
11607 1998-09-05  Eric Ludlam  <zappo@gnu.org>
11609         * emacs-lisp/checkdoc.el: (checkdoc-buffer-label): New function.
11610         (checkdoc-start-section, checkdoc-error): Use `checkdoc-buffer-label'.
11611         (checkdoc-this-string-valid-engine): Permit ? as terminating
11612         punctuation for first line sentence breaking.
11613         (checkdoc-this-string-valid): When converting a comment into a doc
11614         string, make sure " chars are \".
11615         (checkdoc-sentencespace-region-engine): Only do double space check
11616         if based on the variable `sentence-end-double-space'
11617         (checkdoc-this-string-valid-engine): ? ends valid sentence.
11618         (checkdoc-proper-noun-region-engine): Exclude items in URLs
11620 1998-09-04  Richard Stallman  <rms@gnu.org>
11622         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
11623         Recognize define-skeleton as a function definer.
11625         * cus-edit.el (customize-option): Refuse to customize
11626         a variable that has no defcustom.  But if variable is autoloaded,
11627         first try to load the library that defines it.
11629         * international/iso-insert.el: Use `string' before calling `insert'
11630         so that in multibyte buffers we insert multibyte chars.
11632         * dired.el (dired-mark-files-containing-regexp):
11633         Don't use find-file; instead, insert the file in a temp buffer.
11635         * textmodes/tex-mode.el (tex-start-options-string): New option.
11636         (tex-start-tex): Use that variable.
11638         * mail/rmail.el (rmail-primary-inbox-list): Make the initial
11639         value in the `repeat' alternative a list.
11641         * textmodes/fill.el (fill-individual-paragraphs): Before deleting
11642         the inserted newline, verify that one was really inserted.
11644         * textmodes/flyspell.el (flyspell-mode): Do nothing if mode
11645         remains on or remains off.
11646         (flyspell-multi-language-p): Default changed to nil.
11648         * progmodes/ada-mode.el (ada-search-ignore-string-comment):
11649         In "found in comment" case, don't beginning-of-line after forward-line.
11651         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
11652         If the function definition is not a lambda, return original FORM
11653         with no error.
11655 1998-09-04  Peter Breton  <pbreton@ne.mediaone.net>
11657         * net-utils.el (netstat-program-options): Changed from nil to "-a"
11658         so that by default netstat shows all network connections.
11660 1998-09-04  Bob Weiner  <weiner@altrasoft.com>
11662         * international/quail.el: Doc fixes.
11664         * info.el (info): Don't add parens if FILE already has them.
11666 1998-09-04  Geoff Voelker  <voelker@cs.washington.edu>
11668         * mail/smtpmail.el (smtpmail-via-smtp): Parse out the first word
11669         on extension lines.
11671 1998-09-03  Geoff Voelker  <voelker@cs.washington.edu>
11673         * w32-fns.el (w32-shell-dos-semantics): New function.
11675 1998-09-03  Bill Richter  <richter@brouwer.math.nwu.edu>
11677         * international/quail.el (quail-choose-completion-string): Store
11678         completion `choice' in `quail-current-str'; don't insert it.
11680 1998-09-02  Kenichi Handa  <handa@etl.go.jp>
11682         * bdf.el (bdf-generate-font): New argument CHARSET.  Give WIDTH
11683         argument to ps-mule-generate-bitmap-font.
11685         * ps-print.el (ps-mule-font-info-database-bdf): The include ASCII
11686         entry and change Latin-1 entry in the default value.
11687         (ps-mule-font-info-database-ps-bdf): New variable.
11688         (ccl-encode-ethio-unicode): Bug of CCL code fixed.
11689         (ps-mule-generate-font): Give CHARSET arg to FONT-FUNC function
11690         registerd in FONT-SPEC.
11691         (ps-mule-bitmap-prologue): Fix PostScript code to realize correct
11692         charcter width of bitmap fonts.
11693         (ps-mule-generate-bitmap-font): Give COLUMNS arg to PostScript
11694         procedure NF.
11695         (ps-begin-file): Output PostScript code for setting
11696         SpaceWidthRatio.
11697         (ps-plot-region): Use line-beginning-position to get a position of
11698         the beginning of the current line.
11700         * international/mule-cmds.el (register-input-method): Doc-string
11701         modified.
11703 1998-09-01  Dave Love  <fx@gnu.org>
11705         * international/mule-cmds.el (current-language-environment): Fix
11706         setter function.
11708 1998-09-01  Simon Marshall  <simon@gnu.org>
11710         * font-lock.el (tex-font-lock-keywords-2): Fontify \nocite like \cite.
11711         (lisp-font-lock-keywords-2): Fontify abort, assert, etc., separately.
11712         ({c,c++,objc,java}-font-lock-keywords-{2,3}): Fontify only type/class
11713         names with font-lock-type-face.  Fontify type specs, etc., with
11714         font-lock-keyword-face.
11716 1998-08-31  Kenichi Handa  <handa@etl.go.jp>
11718         * international/fontset.el (x-complement-fontset-spec): If ASCII
11719         font is specified in FONTLIST, don't substitute it for the
11720         resolved name.
11722 1998-08-31  Paul Eggert  <eggert@twinsun.com>
11724         * international/mule.el (charset-description): Doc fix.
11726         * language/chinese.el, language/cyrillic.el, language/czech.el,
11727         language/devanagari.el, language/ethiopic.el,
11728         language/european.el, language/hebrew.el, language/indian.el,
11729         language/japanese.el, language/korean.el, language/lao.el,
11730         language/slovak.el, language/thai.el, language/tibetan.el,
11731         language/vietnamese.el:
11732         Add coding: local variable, to avoid bootstrapping problem
11733         if you need to recompile all the Lisp files using interpreted code.
11735 1998-08-29  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
11737         * cal-china.el (chinese-year-cache): Change range of years from
11738         1989-2000 to 1990-2010.
11740 1998-08-29  Dave Love  <d.love@dl.ac.uk>
11742         * mail/smtpmail.el (smtpmail-send-it): Add autoload cookie.
11743         (smtpmail-via-smtp): Check that smtpmail-smtp-server is defined.
11745 1998-08-28  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
11747         * ps-print.el (ps-print-control-characters): Doc-string modified.
11748         (ps-output-string-prim): Comment format changed.
11749         (ps-do-despool): Indentation of source code changed.
11751 1998-08-28  Kenichi Handa  <handa@etl.go.jp>
11753         * subr.el (sref): Make it an alias of aref.  Make the
11754         byte-compiler warn that it is obsolete.
11755         (char-bytes): Make the byte-compiler warn that it is obsolete.
11757         * emacs-lisp/bytecomp.el (byte-compile-output-as-comment):
11758         Calculate the total bytes using position-bytes instead of
11759         char-bytes.
11761 1998-08-27  Karl Heuer  <kwzh@gnu.org>
11763         * snmp-mode.el: New file.
11764         * files.el (auto-mode-alist): Add snmp-mode patterns.
11766 1998-08-27  Karl Eichwalder  <ke@suse.de>
11768         * dired-aux.el (dired-compress-file-suffixes): Add `bz2'.
11770 1998-08-27  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
11772         * calendar/diary-lib.el (diary-block): Doc fix..
11773         * calendar/calendar.el (diary-list-include-blanks): Doc fix..
11775 1998-08-27  Richard Stallman  <rms@gnu.org>
11777         * calendar/cal-tex.el (cal-tex-cursor-filofax-daily): Don't use oddp.
11778         * calendar/appt.el (appt-check): Start the appt-mode-string w/ space.
11779         Clear appt-mode-string if we don't put something in it.
11781 1998-08-27  Dave Love  <fx@gnu.org>
11783         * ange-ftp.el (ange-ftp-allow-child-lookup): Reinstate checking
11784         dired-local-variables-file for dired-x.
11786         * emacs-lisp/find-func.el (find-function-search-for-symbol): Look
11787         for compressed library files too.
11789 1998-08-26  Kenichi Handa  <handa@etl.go.jp>
11791         * language/european.el ("Latin-1"): Modify `documentation' key value.
11792         ("Latin-2"): Likewise.
11794 1998-08-26  Karl Heuer  <kwzh@gnu.org>
11796         * dired-x.el (dired-guess-shell-alist-default): Fix regexp.
11798 1998-08-26  Albert L. Ting  <alt@artisan.com>
11800         * mail/mail-hist.el (mail-hist-current-header-name): Fix test.
11801         (mail-hist-current-header-contents): Use mail-text-start.
11803 1998-08-26  Richard Stallman  <rms@gnu.org>
11805         * cus-edit.el (customize-version-lessp): Handle a number as VERSION2.
11806         (customize-changed-options-previous-release): New variable.
11807         (customize-changed-options): Use that variable as default arg.
11809 1998-08-26  Karl Eichwalder  <ke@suse.de>
11811         * midnight.el: Require `timer' not only when compiling.
11813 1998-08-26  Per Starback  <starback@update.uu.se>
11815         * gnus/gnus-start.el (gnus-check-first-time-used): Change current
11816         buffer before creating help group.
11818 1998-08-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11820         * gnus/gnus-start.el (gnus-save-newsrc-file): Bind
11821         coding-system-for-write before saving.
11823 1998-08-26  Kevin Rodgers <kevinr@ihs.com>
11825         * isearch.el (isearch-forward): Doc fix.
11827 1998-08-26  Andreas Schwab  <schwab@delysid.gnu.org>
11829         * emacs-lisp/find-func.el: Fix :version tags to have a string
11830         value, not a float.
11832         * cus-dep.el: Fix typo in output.
11834 1998-08-25  Dave Love  <fx@gnu.org>
11836         * repeat.el (repeat): Doc fix.
11837         [From rms:]
11838         (repeat-previous-repeated-command): New variable.
11839         (repeat): Check for real-last-command being null or repeat.  Set
11840         repeat-previous-repeated-command.
11842         * browse-url.el (browse-url-netscape): Fix format for hex escapes.
11844 1998-08-25  Kenichi Handa  <handa@etl.go.jp>
11846         * gnus/message.el (message-send-mail-with-sendmail): Bind
11847         coding-system-for-write by the return value of
11848         select-message-coding-system.
11849         (message-send-mail-with-qmail): Likewise.
11851 1998-08-24  Andreas Schwab  <schwab@delysid.gnu.org>
11853         * emacs-lisp/autoload.el: Fix doc-string-elt property on
11854         define-derived-mode.
11856         * files.el (file-name-invalid-regexp):
11857         Fix regex for ms-dos without long file names.
11859 1998-08-24  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
11861         * ps-print.el: Multi-byte buffer handling.
11862         (ps-print-version): New version number (4.0) and doc fix.
11863         (ps-color-device, ps-face-bold-p, ps-face-italic-p): Conditional
11864         compilation for GNU Emacs and emacsens.
11865         (ps-generate-postscript-with-faces): Force invisible text to be
11866         visible.
11867         (dos-ps-printer): New var to avoid compilation gripes.
11869 1998-08-24  Kenichi Handa  <handa@etl.go.jp>
11871         * ps-print.el (ps-mule-plot-string): Pay attention to the case
11872         that no more characters can't be printed in the current line.
11874 1998-08-24  Kenichi Handa  <handa@etl.go.jp>
11876         * ps-print.el (ps-mule-find-wrappoint): ENDPOS should not be
11877         greater than TO.
11879 1998-08-24  Kenichi Handa  <handa@etl.go.jp>
11881         * ps-print.el: Add codes to make ps-print.el work also on Emacs
11882         20.2 and the earlier version.
11883         (ps-mule-encode-7bit, ps-mule-encode-8bit): Modified for 20.2.
11884         (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Likewise.
11885         (ps-mule-find-wrappoint): Likewise.
11886         (ps-mule-generate-font): Change `X' to `x' in format
11887         control-string.
11888         (ps-generate): Call ps-mule-begin before calling ps-begin-job.
11889         (ps-mule-cmpchar-prologue): Delete unnecessary `gsave' and
11890         `restore' form procedures `BC' and `EC'.
11892 1998-08-24  Kenichi Handa  <handa@etl.go.jp>
11894         * ps-print.el (ps-print-prologue-1): Handle the case that FontBBox
11895         is an executable procedure.  Make LineThickness, Xshadow, and
11896         Yshadow relative to FontHeight.  Set SpaceWidth in BeginDoc.
11897         (ps-mule-font-info-database, ps-mule-font-info-database-ps,
11898         ps-mule-font-info-database-bdf): New vars.
11899         (ps-mule-encode-7bit, ps-mule-encode-8bit): New funs.
11900         (ccl-encode-ethio-unicode): New CCL program.
11901         (ps-mule-encode-ethiopic): New fun.
11902         (ps-mule-current-charset): New var.
11903         (ps-mule-get-font-spec, ps-mule-font-spec-src,
11904         ps-mule-font-spec-name, ps-mule-font-spec-encoding,
11905         ps-mule-font-spec-bytes, ps-mule-printable-p): New funs.
11906         (ps-mule-external-libraries): New var.
11907         (ps-mule-init-external-library): New fun.
11908         (ps-mule-font-cache): New var.
11909         (ps-mule-generate-font, ps-mule-generate-glyphs): New funs.
11910         (ps-last-font): New var.
11911         (ps-mule-prepare-font): New fun.
11912         (ps-mule-charset-list): New var.
11913         (ps-mule-prologue-generated, ps-mule-prologue): New vars.
11914         (ps-mule-skip-same-charset, ps-mule-find-wrappoint,
11915         ps-mule-plot-string): New funs.
11916         (ps-mule-cmpchar-prologue-generated, ps-mule-cmpchar-prologue):
11917         New vars.
11918         (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
11919         ps-mule-prepare-cmpchar-font): New funs.
11920         (ps-mule-bitmap-prologue-generated, ps-mule-bitmap-prologue): New
11921         vars.
11922         (ps-mule-generate-bitmap-prologue, ps-mule-generate-bitmap-font,
11923         ps-mule-generate-bitmap-glyph): New funs.
11924         (ps-mule-initialize, ps-mule-begin): New funs.
11925         (ps-output-string-prim): Insert string as unibyte.
11926         (ps-output-prologue): New fun.
11927         (ps-flush-output): Handle the case of 'prologue.
11928         (ps-begin-file): Call ps-mule-initialize.
11929         (ps-begin-job): Set ps-control-or-escape-regexp differently if
11930         printing multibyte characters.
11931         (ps-begin-page): Set ps-mule-current-charset to 'ascii.
11932         (ps-basic-plot-string): Handle the case of printing ASCII
11933         characters by external libraries (e.g. BDF).
11934         (ps-set-font): Set ps-last-font.
11935         (ps-plot-region): Handle multibyte characters, use
11936         ps-mule-plot-string for them.
11937         (ps-generate): Set the spool buffer unibyte.  Call ps-mule-begin.
11939         * bdf.el: New file.
11941 1998-08-23  Kenichi HANDA  <handa@etl.go.jp>
11943         * international/mule-cmds.el (select-message-coding-system): New
11944         function.
11945         (set-language-environment-coding-systems): Set
11946         default-sendmail-coding-system.
11948         * mail/sendmail.el (sendmail-coding-system): Doc-string modified.
11949         (default-sendmail-coding-system): New variable.
11950         (sendmail-send-it): Encode the message by a coding system
11951         select-message-coding-system returns.
11953 1998-08-23  Eric Ludlam  <zappo@gnu.org>
11955         * speedbar.el: (speedbar-with-writable): Remove `toggle-read-only'.
11956         (speedbar-mode): Set buffer to read only.
11957         (speedbar-temp-buffer-show-function): For emacs don't call hook
11958         with arguments.
11959         (speedbar-stealthy-updates): Do all updates w/ the the buffer writable.
11961 1998-08-19  Dan Nicolaescu  <done@ece.arizona.edu>
11963         * speedbar.el (speedbar-key-map): Fix typo.
11965 See ChangeLog.7 for earlier changes.