(browse-url): Re-fix case of
[emacs.git] / lisp / ChangeLog
blob7e441cd66e324c25a4bd7b598a395217ae2a287c
1 2000-03-26  Dave Love  <fx@gnu.org>
3         * net/browse-url.el (browse-url): Re-fix case of
4         browse-url-browser-function being an alist.
5         (browse-url): Add :link to defgroup.
7         * files.el: Doc fixes.
8         (file-truename): Include `[' in wildcard characters.
9         (automount-dir-prefix): Customize.
10         (find-file-wildcards): Add :version.
11         (find-file-noselect): Simplify a mapcar call.
13         * emacs-lisp/lisp-mode.el (lisp-eval-defun): Make arglist
14         compatible with inf-lisp version.
15         (eval-defun-1): Fix custom-declare-variable case.
17 2000-03-24  Gerd Moellmann  <gerd@gnu.org>
19         * Makefile (COMPILE_FIRST): New macro.
20         (compile-files): Compile files from COMPILE_FIRST first.
22         * emacs-lisp/bytecomp.el (byte-compile-eval): Disable new
23         code.
25         * emacs-lisp/lisp.el (beginning-of-defun-raw): Add regexp
26         matching open parenthesis in column 0 to defun-prompt-regexp
27         only if open-paren-in-column-0-is-defun-start is set.
29         * sun-curs.el: Require CL at compile-time only.
31         * msb.el (msb--choose-file-menu): Use `(apply #'list ...)'
32         instead of copy-list which is a function from CL.
33         (msb--choose-menu, msb--mode-menu-cond)
34         (msb--create-buffer-menu-2): Use dolist instead of mapc.
35         (msb--init-file-alist): Use mapcar instead of mapcan.
36         (msb--aggregate-alist): Use mapcar instead of mapcan.  Fix
37         `(' in column 0 in doc string.
38         (msb--add-separators): Use mapcar instead of mapcan.
40         * cus-dep.el: Require CL at compile-time only.
42 2000-03-24  Stefan Monnier  <monnier@cs.yale.edu>
44         * emacs-lisp/bytecomp.el (byte-compile-warning-types)
45         (byte-compile-warnings): New warning `noruntime'.
46         (byte-compile-constants, byte-compile-variables): Fix docstring.
47         (byte-compile-initial-macro-environment): Use `byte-compile-eval' to
48         execute `eval-whenc-compile's body.
49         (byte-compile-unresolved-functions): Fix docstring.
50         (byte-compile-eval): New function.
51         (byte-compile-callargs-warn): Check if the function will be available
52         at runtime (via property `byte-compile-noruntime').
53         (byte-compile-print-syms): New function.
54         (byte-compile-warn-about-unresolved-functions): Also warn about
55         `noruntime' functions (and use `byte-compile-print-syms').
56         (byte-compile-file): Capitalize the message.
58 2000-03-24  Gerd Moellmann  <gerd@gnu.org>
60         * mail/rmail.el (rmail-confirm-expunge): New user-option.
61         (rmail-expunge): Ask for confirmation depending on the setting
62         of rmail-confirm-expunge.
64 2000-03-23  Gerd Moellmann  <gerd@gnu.org>
66         * Makefile (bootstrap-clean): If $(emacs) exists, build
67         loaddefs.el first.  A loaddefs.el that's not up-to-date might
68         cause a bootstrap failure because things don't autoload as
69         expected.
71 2000-03-23  Dave Love  <fx@gnu.org>
73         * net/browse-url.el: Restore previous use of
74         browse-url-maybe-new-window.
76 2000-03-23  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
78         * ps-print.el: Skip banner page fix.
79         (ps-print-version): New version number (5.1.2).
80         (ps-begin-file, ps-end-file, ps-generate): Code fix.
81         
82 2000-03-23  Dave Pearson  <davep@davep.org>
84         * net/quickurl.el Changed the type of parameter passed to the
85         function defined by `quickurl-format-function'. Before only the
86         text of the URL was passed. Now the whole URL structure is passed
87         and the function is responsible for extracting the parts it
88         requires.  Changed the default of `quickurl-format-function'
89         accordingly.
90         (quickurl-insert): Changed the `funcall' of
91         `quickurl-format-function' to match the above change.
92         (quickurl-list-insert): Changed the `url' case so that it makes
93         use of `quickurl-format-function', previous to this the format was
94         hard wired.
95         
96 2000-03-22  Gerd Moellmann  <gerd@gnu.org>
98         * startup.el: Change some spellings for the X Window System.
100 2000-03-22  Stefan Monnier  <monnier@cs.yale.edu>
102         * progmodes/make-mode.el (makefile-warn-suspicious-lines): clean
103         up the code and the regexp and make sure the cursor is temporarily
104         moved to the suspicious line while querying the user.
106 2000-03-22  Jason Rumney  <jasonr@gnu.org>
108         * w32-fns.el (w32-charset-info-alist): Initialize.
110 2000-03-22  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
112         * ps-print.el: N-up last page fix.
113         (ps-print-version): New version number (5.1.1).
114         (ps-end-file, ps-end-job, ps-generate): Code fix.
115         
116 2000-03-21  Stefan Monnier  <monnier@cs.yale.edu>
118         * files.el (find-file-run-dired): Update docstring.
119         (find-directory-functions): New hook.
120         (find-file-noselect): Run find-directory-functions rather than
121         calling dired directly.
123         * menu-bar.el (pcl-cvs): Add an entry for PCL-CVS' global menu.
125         * pcvs.el: Add a minimal leading commentary.
126         (cvs-make-cvs-buffer): Change the header part by removing the startup
127         message and adding a `Module' entry.  Also replace the FOOTER and
128         HEADER special fileinfos with the new support in ewoc for updating
129         its own footer and header.
130         (cvs-update-header): Update to use the header/footer of the ewoc.
131         (cvs-mode): Use define-derived-mode and set truncate-lines to t.
132         (cvs-is-within-p): New function.
133         (cvs-mode-run): Take advantage of `save-some-buffers's new ability
134         to only examine some subset of the buffers.
136         * pcvs-info.el (cvs-fileinfo-pp): Use the new property-preserving
137         `format' instead of our own ad-hoc functions.
138         Remove HEADER and FOOTER cases, now handled in the EWOC.
139         (cvs-fileinfo<): Remove HEADER and FOOTER cases.
141         * pcvs-parse.el (cvs-parse-run-table): Change message for unknown
142         output to avoid scaring the user.
143         (cvs-parse-table): Catch message for non-up-to-date commits.
145         * pcvs-defs.el (cvs-startup-message): Remove.
146         (cvs-global-menu): New autoloaded menu.
148         * pcvs-util.el (cvs-string-fill): Remove.
150         * emacs-lisp/ewoc.el (ewoc--create-special-node): Remove.
151         (ewoc--refresh-node): Don't take the whole EWOC but only the relevant
152         PP part of it and also make it work for footers and headers.
153         (ewoc-create): Drop POS and BUFFER arguments.
154         Use the DLL's dummy node to store the end-of-footer position.
155         (ewoc-map, ewoc-invalidate): Update call to ewoc--refresh-node.
156         (ewoc-refresh): Remove unused `header' variable.
157         (ewoc-(get|set)-hf): New functions.
159         * log-view.el (log-view-(msg|file)-(prev|next)): Rename from
160         log-view-*-(message|file) and use easy-mmode-define-navigation.
161         (log-view-message-re): Match SCCS format as well.
162         And match the revision line rather than the dashed separator line.
163         (log-view-mode): Use the new define-derived-mode.
164         (log-view-current-tag): Fill in with an actual implementation.
166         * cvs-status.el (cvs-status-(prev|next)): Rename from
167         cvs-status-(prev|next)-entry and use easy-mmode-define-navigation.
168         (cvs-tree-dstr-*): Rename from cvstree-dstr-* and use two ascii chars
169         to let the output "breathe" a little more (more readable).
170         (cvs-status-mode): Use the new define-derived-mode.
172         * smerge-mode.el (smerge-auto-leave): New function and variable.
173         (smerge-basic-map): Rename from smerge-basic-keymap.
174         Change the bindings for smerge-diff-*.
175         (smerge-*-map): Use easy-mmode-defmap.
176         (smerge-(next|prev)): Use easy-mmode-define-navigation.
177         (smerge-keep-*): Use smerge-auto-leave.
179 2000-03-21  Jason Rumney  <jasonr@gnu.org>
181         * cus-edit.el (custom-button-face): Use 3D look for w32.
182         (custom-button-pressed-face): Likewise.
184 2000-03-21  Gerd Moellmann  <gerd@gnu.org>
186         * progmodes/etags.el (tags-case-fold-search): New user-option.
187         (tags-loop-eval): New function.  Bind case-fold-search around eval
188         depending on the value of tags-case-fold-search.
189         (tags-loop-continue): Use tags-loop-eval.
190         (find-tag-in-order): Bind case-fold-search depending on the value
191         of tags-case-fold-search.
193 2000-03-21  Stefan Monnier  <monnier@cs.yale.edu>
195         * diff-mode.el (diff-mode-*-map): use `easy-mmode-defmap'.
196         (diff-end-of-hunk): Return the end position for use in
197         `easy-mmode-define-navigation'.
198         (diff-recenter): Remove.
199         (diff-(next|prev)-*): Rename `diff-*-(prev|next)' and defined in terms
200         of `easy-mmode-define-navigation'.
201         (diff-kill-*): Rename `diff-*-kill' (for consistency with the
202         previous renaming) and fix to use new names.
203         (diff-merge-strings): Use \n as separator: simpler, faster.
204         (diff-mode): Use `define-derived-mode'.
206         * derived.el (define-derived-mode): Don't autoload anymore.
207         Prefer the macro-only version provided by easy-mmode.el.
209         * emacs-lisp/easy-mmode.el (define-derived-mode): New name for
210         `easy-mmode-define-derived-mode'.
211         Use `combine-run-hooks'.
212         (easy-mmode-define-navigation): New macro.
214         * subr.el (combine-run-hooks): New function.
216 2000-03-21  Kenichi HANDA  <handa@etl.go.jp>
218         * term/x-win.el: Fontsets related initialization is simplified.
220         * international/mule-diag.el (describe-font): Don't refer to
221         global-fontset-alist, instead call font-list.
222         (describe-fontset, list-fontsets, mule-diag): Likewise.
223         (print-fontset): Adjusted for the change of fontset
224         implementation.
226         * international/fontset.el (x-charset-registries): Variable
227         removed, instead the corresponding data is stored in the default
228         fontset.
229         (register-alternate-fontnames): Function removed.
230         (resolved-ascii-font): Variable removed.
231         (x-compose-font-name): Ignore the second argument REDOCE.
232         (x-complement-fontset-spec): Complement only an ASCII font and
233         element for those charsets than can use that ASCII font.
234         (generate-fontset-menu): Don't refer to global-fontset-alist,
235         instead call fontset-list.
236         (uninstantiated-fontset-alist): Variable removed.
237         (x-style-funcs-alist): Likewise.
238         (fontset-default-styles): Likewise.
239         (x-modify-font-name): Function removed.
240         (create-fontset-from-fontset-spec): Ignore the argument
241         STYLE-VARIANT.
242         (create-fontset-from-ascii-font): Docsting adjusted for the above
243         change.
244         (instantiate-fontset, resolve-fontset-name): Functions removed.
245         (fontset-list): Now implemented by C code.
246         
247         * faces.el (read-face-font): Fix TABLE arg to completing-read.
248         (describe-face): Include `font' attribute in the description.
250 2000-03-21  Kenichi Handa  <handa@etl.go.jp>
252         * international/quail.el (quail-set-keyboard-layout): Typo fixed.
254 2000-03-20  Gerd Moellmann  <gerd@gnu.org>
256         * rcompile.el, rlogin.el, telnet.el, net-utils.el, quickurl.el,
257         ange-ftp.el, browse-url.el, goto-addr.el, webjump.el,
258         zone-mode.el, snmp-mode.el: Moved to net subdirectory.
259         
260         * jit-lock.el (with-buffer-prepared-for-font-lock): Add comment
261         about behavior of set-buffer-modified-p wrt redisplay.
263 2000-03-19  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
265         * view.el (view-mode-disable): Kill local binding of view-read-only.
267 2000-03-18  Gerd Moellmann  <gerd@gnu.org>
269         * font-lock.el (font-lock-apply-syntactic-highlight): if VALUE
270         is a string, convert it to a syntax cell using string-to-syntax.
272         * simple.el (syntax-code-table, syntax-flag-table): New variables.
273         (string-to-syntax): New function.
275         * ange-ftp.el (ange-ftp-try-passive-mode): New user-option.
276         (ange-ftp-get-process): If ange-ftp-try-passive-mode is set,
277         try to use passive ftp mode.
279 2000-03-17  Gerd Moellmann  <gerd@gnu.org>
281         * progmodes/awk-mode.el (awk-font-lock-keywords): Add `else'.
283         * simple.el (append-to-buffer): Update point of windows after
284         insertion.
286         * abbrev.el (inverse-add-abbrev): Identify word by first moving
287         forward then moving backward.  Reindent.
289         * frame.el (other-frame): Call x-focus-frame only if
290         focus-follows-mouse is off.
292 2000-03-17  Dave Love  <fx@gnu.org>
294         * pcvs-util.el (cvs-strings->string): Rename
295         replace-regexps-in-string.
297 2000-03-17  Stefan Monnier  <monnier@cs.yale.edu>
299         * mail/rmailsum.el (rmail-summary-font-lock-keywords): Make sure the
300         regexp for labels cannot span several lines.
302         * emacs-lisp/cl-macs.el (cl-do-arglist): Don't add useless
303         `(setq :<key> ':<key>)' to the macro expansion.
305 2000-03-16  Dave Love  <fx@gnu.org>
307         * progmodes/f90.el (f90): Put custom group under `languages', not
308         `fortran'.
309         (f90-mode-hook): Customize.
310         (f90-mode): Set add-log-current-defun-function.
311         (f90-current-defun): New function.
313 2000-03-16  Gerd Moellmann  <gerd@gnu.org>
315         * cus-edit.el (custom-variable-tag-face): Handle case that
316         default face's height is not a number.
317         (custom-face-tag-face, custom-group-tag-face-1)
318         (custom-group-tag-face): Ditto.
319         (custom-group-tag-face-1): Add :group.
320         
321         * info.el (Info-fontify-maximum-menu-size): Increase to 100000.
323 2000-03-15  Gerd Moellmann  <gerd@gnu.org>
325         * pcvs-defs.el (toplevel): Remove autoload cookie for form
326         requiring easymenu.
328 2000-03-15  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
330         * ps-print.el: PostScript user-defined prologue, PostScript error
331         handler, doc fix.
332         (ps-print-version): New version number (5.1).
333         (ps-user-defined-prologue, ps-error-handler-message)
334         (ps-print-prologue-0, ps-error-handler-alist): New vars.
335         (ps-setup, ps-begin-file, ps-begin-job): Code fix.
336         (ps-insert-string): New function.
337         
338 2000-03-15  Kenichi Handa  <handa@etl.go.jp>
340         * international/ccl.el (ccl-compile-expression): Don't generate
341         invalid self-assignment code.
343 2000-03-14  Dave Love  <fx@gnu.org>
345         * subr.el (replace-regexp-in-string): Renamed from
346         replace-regexps-in-string.  Doc fix.
348 2000-03-12  Dave Love  <fx@gnu.org>
350         * cus-edit.el: Doc fixes.
351         (customize-set-variable, customize-save-variable): Rename args for
352         doc.
353         (custom-variable-tag-face, custom-face-tag-face)
354         (custom-group-tag-face-1, custom-group-tag-face): Modify from
355         style which user identify as hyperlink.
356         (hook): Don't add undefined functions to the hook.
357         (debug-ignored-errors): Transfer message from bindings.el.
359 2000-03-12  Gerd Moellmann  <gerd@gnu.org>
361         * recentf.el (recentf-keep-non-readable-files-p): Remove
362         double/nested definition.
364 2000-03-12  Dave Love  <fx@gnu.org>
366         * facemenu.el (facemenu-get-face): Use display-color-p.
367         * enriched.el (enriched-decode-foreground): Likewise.
368         (enriched-decode-background): Likewise.
369         * isearch.el (isearch-highlight): Likewise.
370         * info-look.el (info-lookup): Likewise.
371         * simple.el (completion-setup-function): Likewise.
373         * textmodes/text-mode.el (text-mode-hook): Add flyspell-mode to
374         :options.
376         * bindings.el (mode-line-format): Fix line-number and
377         column-number items.  Add help-echo for the background.
378         (mode-line-mule-info): Modify help-echo.
380         * avoid.el (mouse-avoidance-mode): Add autoload cookie to
381         defcustom.
383         * files.el (load-file): Allow completion to .elc.
385         * man.el: Doc fixes.
386         (Man-init-defvars): Use display-color-p to set fontification.
388         * play/hanoi.el (hanoi-internal): Don't use oddp.
390 2000-03-12  Gerd Moellmann  <gerd@gnu.org>
392         * arc-mode.el (archive-zip-update): Add `-P' for pkzip.
394         * emacs-lisp/re-builder.el: Remove RCS Id, remove history comment.
396 2000-03-12  Detlev Zundel <detlev.zundel@stud.uni-karlsruhe.de>
398         * emacs-lisp/re-builder.el (reb-re-syntax): Fix typo in `:type'.
399         Fix comment.
401 2000-03-10  Stefan Monnier  <monnier@cs.yale.edu>
403         * font-lock.el (font-lock-keywords): Fix the doc now that
404         regexp-opt-depth is unnecessary.
405         (save-buffer-state): Set an edebug spec.
406         (font-lock-fontify-anchored-keywords): Properly handle the case when
407         the matcher goes past the limit.
409         * cvs-status, log-edit.el, log-view.el, pcvs-defs.el, pcvs-info.el,
410         pcvs-parse.el, pcvs-util.el, pcvs.el: New files.
412         * emacs-lisp/ewoc.el: New file.  This is a merge of elib-node.el,
413         dll.el and cookie.el (from Elib) with heavy renaming and other
414         massaging.
416         * emacs-lisp/easy-mmode.el (easy-mmode-defmap, easy-mmode-defsyntax):
417         Autoload the functions used.
418         (easy-mmode-define-syntax): Fix CL typo.
419         (easy-mmode-define-derived-mode): Improve the docstring generation.
421 2000-03-10  Gerd Moellmann  <gerd@gnu.org>
423         * textmodes/texinfo.el (texinfo-version): Variable and function
424         removed.
426 2000-03-09  Stefan Monnier  <monnier@cs.yale.edu>
428         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Extend to
429         allow more flexibility.
430         (easy-mmode-set-keymap-parents, easy-mmode-define-syntax): New
431         fns.
432         (easy-mmode-defmap, easy-mmode-defsyntax)
433         (easy-mmode-define-derived-mode): New macros.
435 2000-03-09  Didier Verna  <didier@xemacs.org>
437         * rect.el (replace-rectangle): New function.
439 2000-03-09  Dave Love  <fx@gnu.org>
441         * progmodes/fortran.el (fortran-comment-line-start): Define as
442         "C".
443         (fortran-comment-line-start-skip): Don't match cpp stuff.
444         (font-lock-keywords): Add * to comment-chars.  Grok cpp stuff.
445         (fortran-mode-map): Remove over-eager custom-menu-create for now.
446         (fortran-mode): Don't set fortran-comment-line-start-skip,
447         fortran-comment-line-start here.  Set comment-start,
448         add-log-current-defun.
449         (fortran-fill-paragraph): Adjust to try to DTRT with cpp stuff.
450         (fortran-current-defun): New function.
452 2000-03-09  Gerd Moellmann  <gerd@gnu.org>
454         * emacs-lisp/re-builder.el: New file.
456         * mouse.el (mouse-drag-region): Don't run up-event handler
457         if hscroll has changed.
459         * octave-mod.el (octave-font-lock-keywords): To font-lock the
460         builtin operators, use `font-lock-builtin-face' for Emacs and
461         `font-lock-preprocessor-face' otherwise.
462         
463         * font-lock.el (lisp-font-lock-keywords-1): Highlight 
464         `(defun (setf foo)' differently.
466 2000-03-08  Stefan Monnier  <monnier@cs.yale.edu>
468         * emacs-lisp/regexp-opt.el: Update copyright and leading comment.
469         (regexp-opt): Update comment and adapt the code the new meaning of
470         the `paren' argument of regex-opt-group for shy-groups.
471         (regexp-opt-depth): Handle shy groups as well as backslashed
472         backslashes.
473         (regexp-opt-group): Turn the leading comment into a docstring.
474         Allow `paren' to be a string (the string to use to open a group).
475         Remove open-presuf and close-presuf.  Instead of checking for `all
476         one-char' and then later on check for `several one-char', handle
477         both cases close together.  Also apply a more generic algorithm
478         for suffixes (the mirror image of the algorithm used for
479         prefixes).  Use shy-groups.  Use nreverse rather than reverse.
480         (regexp-opt-try-suffix): Removed.
482         * cmuscheme.el (inferior-scheme-mode-map): Define it independently
483         from comint-mode-map, so we can just inherit from it.  Also, move
484         the initialization into the `defvar' since there's no docstring
485         anyway and it's fairly short.
486         (inferior-scheme-mode): Define it as derived-mode: the code is
487         shorter and this way we inherit from comint-mode-map rather than
488         copying it.
490         * subr.el (replace-regexps-in-string): Properly handle the case
491         where we match an empty string.
493         * comint.el (comint-exec-1): Add the current-dir to the exec-path
494         when the command has a directory component (such as "./testml").
495         Also fix a typo in the comment.
497 2000-03-08  Gerd Moellmann  <gerd@gnu.org>
499         * Makefile (compile-files): Compile files one by one because
500         that's the only way to ensure a clean compilation environment for
501         each individual file.
503         * frame.el (other-frame): Call x-focus-frame.
505 2000-03-07  Dave Love  <fx@gnu.org>
507         * recentf.el (recentf-keep-non-readable-files-p): Add :set,
508         :require to defcustom.
510         * emacs-lisp/cl.el: Remove expt, delete, rassoc from autoloads
511         lists.
513         * files.el (auto-mode-alist): Add configure.in.
515         * progmodes/autoconf.el: New file.
517 2000-03-07  Gerd Moellmann  <gerd@gnu.org>
519         * mail/mh-e.el: Change maintainer to `none'.
521         * recentf.el (recentf-keep-non-readable-files-p): Quote args
522         to remove-hook and add-hook.
524 2000-03-07  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
526         * sendmail.el (mail-send-nonascii): Add a new value `mime' and use
527         it as the default.
528         (mail-send): Test mail-send-nonascii also for the new `mime' value.
529         (sendmail-send-it): Conditionally add MIME headers specifying the
530         used character set.
531         
532 2000-03-07  Dave Love  <fx@gnu.org>
534         * winner.el: Fix keywords, autoload cookies.  Split
535         eval-when-compile form to avoid compilation failure.
537 2000-03-07  Miyashita Hisashi  <himi@bird.scphys.kyoto-u.ac.jp>
539         * international/mule.el: Modify comment about coding system
540         property `coding-category'.
541         (make-coding-system): New argument EOL-TYPE.  Pay attention to
542         coding-category property of PROPERTIES.
544         * international/mule-conf.el (coding-category-utf-8,
545         coding-category-utf-16-be, coding-category-utf-16-le): New coding
546         categories.  Include them in the argument for set-coding-priority.
548         * international/mule-cmds.el (reset-language-environment): Include
549         coding-category-utf-8, coding-category-utf-16-be, and
550         coding-category-utf-16-le in the argument for set-coding-priority.
551         (reset-language-environment): Initialize coding-category-utf-8,
552         coding-category-utf-16-be, and coding-category-utf-16-le to nil.
554 2000-03-06  Karl Fogel  <kfogel@red-bean.com>
556         * bookmark.el (bookmark-file-or-variation-thereof): New func, for
557         code abstracted out of `bookmark-jump-noselect'.  Now tries info
558         extensions as well as compression extensions.
559         (bookmark-jump-noselect): Use above new func.
560         
561 2000-03-03  Gerd Moellmann  <gerd@gnu.org>
563         * strokes.el: Change maintainer's mail address.
565 2000-03-03  Kenichi Handa  <handa@etl.go.jp>
567         * international/mule-diag.el (list-character-sets): Make help-echo
568         string by substitute-command-keys.
569         (list-character-sets): Likewise.
570         (sort-listed-character-sets): Call help-setup-xref.
572 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
574         * time.el (display-time-mail-file): Add `none' to the list of
575         choices.
577 2000-03-01  Dave Love  <fx@gnu.org>
579         * help.el (help-xref-go-back): Don't try to set position.
581         * international/mule-diag.el (list-character-sets): Call
582         help-setup-xref.  Add help-echo to xrefs.
583         (list-character-sets-1): Add help-echo to xrefs.
585 2000-03-02  Gerd Moellmann  <gerd@gnu.org>
587         * frame.el (blink-cursor-mode): Switch cursor on when turning
588         the mode off.
590         * add-log.el (add-log-current-defun): Add support for
591         Autoconf mode.
593         * mail/rmail.el (rmail-quit-hook): New variable.
595 2000-03-01  Dave Love  <fx@gnu.org>
597         * emacs-lisp/lisp-mode.el (lisp-mode-syntax-table): Fix syntax of |.
599         * help.el (help-xref-button): Add help-echo arg.
600         (describe-function-1, describe-variable, help-make-xrefs): Use it.
602         * faces.el (list-faces-display): Supply help-echo with
603         help-make-xrefs.
605         * facemenu.el (list-text-properties-at): Set help-xref-stack to
606         nil.
608 2000-03-01  Gerd Moellmann  <gerd@gnu.org>
610         * image.el (defimage): Look for image files in load-path.
612         * frame.el (busy-cursor-delay-seconds): Change type to 
613         `number'.
615 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
617         * recentf.el (recentf): Added version tag to the defgroup of
618         recentf.
620 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
622         * recentf.el (recentf-cleanup): Changed to remove excluded file
623         too.
624         (recentf-edit-list-action): `recentf-edit-list' checkbox widget
625         action to select/unselect a file.
626         (recentf-edit-list): Code cleanup and improvement.
627         (recentf-open-more-files-action): `recentf-open-more-files' button
628         widget action to open a file.
629         (recentf-open-more-files): No more use standard completion but
630         widgets.
631         (recentf-more-collection): Deleted.
632         (recentf-more-history): Deleted.
633         (recentf-setup-more-completion): Deleted.
635 2000-03-01  David Ponce  <david.ponce@wanadoo.fr>
637         * recentf.el (recentf-mode): No more needs that Emacs is running
638         under a window-system.
640 1999-03-01  David Ponce  <david.ponce@wanadoo.fr>
642         * recentf.el (recentf-edit-list): New command to edit the recent
643         list which allow the user to remove files.
644         (recentf-edit-selected-items): New global variable, used by
645         `recentf-edit-list' to hold the list of files to be removed from
646         the recent list.
647         (recentf-make-menu-items): Updated to display a "Edit list..."
648         menu item.  Minor code cleanup.
650 1999-03-01  David Ponce  <david.ponce@wanadoo.fr>
652         * recentf.el (recentf-open-more-files): New command to open files
653         that are not displayed in the menu.
654         (recentf-more-collection): New global variable holding the set of
655         permissible completions used by `recentf-open-more-files'.
656         (recentf-more-history): New global variable holding the history list
657         used by `recentf-open-more-files' completion.
658         (recentf-setup-more-completion): New function to setup completion for
659         `recentf-open-more-files'.
660         (recentf-make-menu-items): Updated to display a "More..." menu item.
662 1999-03-01  David Ponce  <david.ponce@wanadoo.fr>
664         * recentf.el (recentf-menu-action): Doc fixed.
666 1999-03-01  David Ponce  <david.ponce@wanadoo.fr>
668         * recentf.el (recentf-menu-filter): Doc updated.
669         (recentf-update-menu-hook): Allow menu filters to force menu update.
670         (recentf-make-menu-items): New menu filter handling.
671         (recentf-make-menu-item): New helper function.
672         (recentf-menu-elements): New menu handling function.
673         (recentf-sort-ascending): Updated to new menu filter handling.
674         (recentf-sort-descending): Updated to new menu filter handling.
675         (recentf-sort-basenames-ascending): New menu filter function.
676         (recentf-sort-basenames-descending): New menu filter function.
677         (recentf-show-basenames): New menu filter function.
678         (recentf-show-basenames-ascending): New menu filter function.
679         (recentf-show-basenames-descending): New menu filter function.
681 2000-02-29  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
683         * diary-lib.el (list-diary-entries): Don't try to go forward at
684         the end of the buffer.
686 2000-02-29  Kenichi Handa  <handa@etl.go.jp>
688         * international/mule-diag.el (list-character-sets): Completely
689         rewritten.
690         (sort-listed-character-sets): New function.
691         (list-character-sets-1): Completely rewritten.
692         (list-character-sets-2): New function.
693         (non-iso-charset-alist): New variable.
694         (decode-codepage-char): New function.
695         (charset-history): New variable.
696         (read-charset) (list-block-of-chars)
697         (list-iso-charset-chars)
698         (list-non-iso-charset-chars)
699         (list-charset-chars): New functions.
700         (mule-diag): Call list-character-sets-2, not
701         list-character-sets-2.
702         (dump-charsets): Likewise.
704 2000-02-29  Gerd Moellmann  <gerd@gnu.org>
706         * dired-x.el (dired-filename-at-point): Add `@' to valid
707         file name characters.
708         (dired-filename-at-point): Handle ange-ftp file names.
710         * frame.el (frame-notice-user-settings): Use assq-delete-all
711         instead of assoc-delete-all.
712         (frame-notice-user-settings): Ditto.
714         * subr.el (assq-delete-all): Renamed from assoc-delete-all.
715         Don't copy alist.
717 2000-02-28  Eli Barzilay  <eli@cs.cornell.edu>
719         * calculator.el (calculator-use-menu): New option.
720         (calculator-initial-bindings): Changed some bindings to work as
721         macros.
722         (calculator-forced-input): Removed.
723         (calculator-restart-other-mode): New variable.
724         (calculator-mode-map): Set up menu.
725         
726 2000-02-28  Jari Aalto  <jari.aalto@poboxes.com>
728         * font-lock.el (java-keywords): Added missing java 1.2.2 Javadoc
729         tags.
730         
731 2000-02-28  Michael Kifer  <kifer@cs.sunysb.edu>
732         
733         * viper-cmd.el (viper-envelop-ESC-key): added the option to
734         translate all ESC key sequences.
735         (viper-goto-mark-subr): restore markers for files for which
736         they were saved.
737         * viper-init.el (viper-translate-all-ESC-keysequences): new variable.
738         * viper-util.el (viper-set-replace-overlay-glyphs,
739         viper-set-replace-overlay): always check if the replacement
740         overlay is live.
741         * viper.el (viper-vi-state-mode-list): added major modes.
742         * ediff-wind.el: minor comment changes.
743         * ediff.el: copyright notice date fix.
744         
745 2000-02-27  Jason Rumney  <jasonr@gnu.org>
747         * faces.el (face-font-family-alternatives): Add arial to helv.
748         (mode-line, header-line, tool-bar): Same default as x for w32.
749         (fixed-pitch, variable-pitch): Remove wildcard as it prevents
750         face-font-family-alternatives from working.
751         * term/w32-win.el (mouse-set-font): Do not build fontset from
752         chosen font.
754 2000-02-25  Sam Steingold  <sds@goems.com>
756         * emacs-lisp/cl-indent.el (toplvel): Indent `pprint-logical-block'
757         properly.
758         
759 2000-02-25  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
761         * mail/rmail.el (rmail-resend): Verify buffer is really Rmail.
763 2000-02-25  Gerd Moellmann  <gerd@gnu.org>
765         * emacs-lisp/helper.el (Helper-describe-mode): Make buffer
766         writable.
768         * frame.el (busy-cursor-delay-seconds): New option.
770 2000-02-24  Gerd Moellmann  <gerd@gnu.org>
772         * frame.el (show-cursor-in-non-selected-windows): New option.
774 2000-02-24  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
776         * diary-lib.el (include-other-diary-files): Undo the selective
777         display in any included file and don't kill it.
779 2000-02-24  Eli Zaretskii  <eliz@is.elta.co.il>
781         * dired.el (dired-mode-map): Don't remove "Edit" from the menu
782         bar.  Menu items converted to (menu-item format, help strings
783         added.
784         [downcase, upcase]: Don't enable on MS-DOS.
785         [symlink, symlinks]: Don't show if make-symbolic-link is not
786         bound.
787         [chown, chgrp]: Don't show on MS-DOS and MS-Windows.
789 2000-02-23  Dave Love  <fx@gnu.org>
791         * simple.el (zap-to-char, kill-line, kill-region, kill-word)
792         (backward-kill-word): Revert addition of * to interactive spec --
793         it's a feature.
795         * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
796         (backward-kill-sentence, kill-sentence): Likewise.
798         * gud.el (gud-jdb-build-class-source-alist): Prepend space to
799         scratch buffer name.
800         (gud-format-command): Use int-to-string in ?l case.  Simplify
801         slightly.
803         * term/w32-win.el (internal-face-interactive): Update prompt for
804         new read-face-name.
806         * mail/footnote.el (footnote): Add :version to defgroup.
807         (footnote-section-tag-regexp): Customize.
808         (footnote-start-tag, footnote-end-tag): New option.
809         (footnote-latin-regexp): New variable.
810         (Footnote-latin): New function.
811         (footnote-style-alist): Add element for latin style.
812         (footnote-style): Moved.
813         (Footnote-goto-footnote): Use eq to test arg.
815         * mouse.el (mouse-drag-mode-line-1): Remove `growth =' message.
817         * emacs-lisp/byte-opt.el: Change old backquote syntax.
818         (byte-compile-trueconstp): Include keywords.
819         (byte-optimize-quote, byte-optimize-lapcode): Use
820         byte-compile-const-symbol-p.
821         (byte-optimize-char-before): New optimization.
823         * emacs-lisp/bytecomp.el: Change old backquote syntax.
824         (byte-compile-const-symbol-p): New function.
825         (byte-compile-constp, byte-compile-out-toplevel)
826         (byte-compile-form, byte-compile-form, byte-compile-variable-ref):
827         Use it.
829         * subr.el (define-key-after): Default AFTER to t.  Doc fix.
831 2000-02-23  Kenichi Handa  <handa@etl.go.jp>
833         * international/encoded-kb.el: Be sure to update minor-mode-alist
834         and minor-mode-map-alist.
835         (encoded-kbd-self-insert-iso2022-8bit): Handle ISO's single shift
836         codes SS2 and SS3 correctly.
837         (encoded-kbd-self-insert-ccl): New function.
838         (encoded-kbd-setup-keymap): New function.
839         (encoded-kbd-mode): Handle CCL based coding system.  Setup keymap
840         by calling encoded-kbd-setup-keymap.
842         * emacs-lisp/lisp-mode.el: Don't change syntax of multibyte
843         characters.
844         (lisp-mode-variables): Set multibyte-syntax-as-symbol to t
845         locally.
847 2000-02-22  Dave Love  <fx@gnu.org>
849         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table)
850         (lisp-mode-map, lisp-interaction-mode-map): Define all inside
851         defvar.
852         (lisp-mode-syntax-table): Set up for #|...|# comments.
853         (lisp-imenu-generic-expression): Purecopy strings.  Use syntax
854         classes.  Match `defface'.
855         (emacs-lisp-mode-hook): Add checkdoc-minor-mode to options.
856         (eval-defun-1): Fix for defcustom.
857         (lisp-indent-region): Doc fix.
859         * subr.el (when, unless, split-string): Doc fix.
860         (read-passwd): Move call of clear-this-command-keys to the right
861         place.
862         (replace-regexps-in-string): New function.
864 2000-02-22  Gerd Moellmann  <gerd@gnu.org>
866         * help.el (describe-variable): Set syntax table to
867         emacs-lisp-mode-syntax-table when moving forward over the
868         symbol's name.
870 2000-02-22  Dave Love  <fx@gnu.org>
872         * xt-mouse.el: Doc fixes.
873         (xterm-mouse-position-function): New function, replacing advice of
874         mouse-position.
875         (xterm-mouse-mode): Use it.  Don't turn on under a window system.
877         * emacs-lisp/cl-indent.el: Remove bogus spec for define-condition.
879 2000-02-21  Gerd Moellmann  <gerd@gnu.org>
881         * format.el (format-annotate-single-property-change): Handle
882         properties.with dotted-list values.
883         (format-proper-list-p): New function.
885         * enriched.el (enriched-face-ans): Handle '(foreground-color
886         . COLOR) and (background-color . COLOR).
888 2000-02-20  Dave Love  <fx@gnu.org>
890         * textmodes/flyspell.el (flyspell-mouse-map): Change definition
891         and assignments to it.
892         (flyspell-mode-on): Define flyspell-local-mouse-map, inheriting
893         current local map.
894         (make-flyspell-overlay): Use it.
895         (flyspell-correct-word/mouse-keymap): Change XEmacs test.
897         * emacs-lisp/lisp-mnt.el: Don't require emacsbug at top level.
898         (lm-get-header-re): Defun, not defsubst.
899         (lm-get-package-name): Defun, not defsubst.  Simplify.
900         (lm-version): Doc fix.  Simplify.
901         (lm-header, lm-header-multiline, lm-header-multiline, lm-summary)
902         (lm-crack-address, lm-last-modified-date, lm-commentary)
903         (lm-verify, lm-synopsis): Simplify.
904         (lm-report-bug): Require emacsbug.  Use compose-mail.
906 2000-02-20  Gerd Moellmann  <gerd@gnu.org>
908         * dired.el (dired-mode): Call propertized-buffer-identification
909         to set mode-line-buffer-identification to something having
910         the right text properties.
912         * bindings.el (propertized-buffer-identification): New function.
914 2000-02-20  Dave Love  <fx@gnu.org>
916         * frame.el (display-mouse-p): Use variable xterm-mouse-mode and
917         check for t-mouse too.
919         * cus-start.el: Make echo-keystrokes `number'.
921 2000-02-20  Eli Zaretskii  <eliz@is.elta.co.il>
923         * menu-bar.el (menu-bar-goto-menu) [next-tag, next-tag-otherw]:
924         Don't call ring-empty-p unless tags-location-ring is bound.
925         From Noah Friedman <friedman@splode.com>.
927 2000-02-18  Thien-Thi Nguyen  <ttn@gnu.org>
929         * progmodes/hideshow.el (hs-flag-region): No longer use
930         `intangible' overlay property.
932         (hs-toggle-hiding): New command.
933         (hs-mouse-toggle-hiding): Use `hs-toggle-hiding'.
935         (hs-minor-mode): Move call to `hs-grok-mode-type' early on.
936         Fix omission bug: Run `hs-minor-mode-hook' for both activation
937         and deactivation.
939 2000-02-18  Gerd Moellmann  <gerd@gnu.org>
941         * emacs-lisp/cl-macs.el (caar, cadr, cdar, cddr): Add defsetfs.
943 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
945         * emacs-lisp/cl-indent.el (lisp-indent-259): Indentation fix.
947         * progmodes/pascal.el (pascal-mode-syntax-table): Change syntax
948         of `*' to handle `(* ... *)' comments.
950 2000-02-17  Eli Zaretskii  <eliz@is.elta.co.il>
952         * faces.el (list-faces-display): Use display-mouse-p instead of
953         window-system.
955         * menu-bar.el (global-map): Menu-bar items converted to the new
956         format (menu-item..., rearranged for better CUA compliance, and
957         their names changed for better clarity.  Help strings added.
959         * international/mule-cmds.el (mule-menu-keymap)
960         (describe-language-environment-map, set-coding-system-map)
961         (setup-language-environment-map): Convert to new (menu-item...
962         form, add help strings.  Change names of menu items for better
963         clarity.  "Mule" menu-bar item removed (it's now in the "Options"
964         submenu).
966 2000-02-17  Gerd Moellmann  <gerd@gnu.org>
968         * dired-aux.el (dired-do-copy): Remove spurious character.`n'
969         within the code.
971 2000-02-16  Dave Love  <fx@gnu.org>
973         * faces.el: Don't require custom.  Add more specific :groups to
974         various deffaces.
975         (set-face-attribute): Purecopy args.
976         (read-face-name): Default to name at point and use it in prompt.
977         Remove colon from arg in all callers.
978         (list-faces-display): Hyperlink to face descriptions and customize
979         buffers.
981 2000-02-16  Per Abrahamsen  <abraham@dina.kvl.dk>
983         * wid-edit.el (widget-match-inline): An atom never matches a
984         list.
986 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
988         * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
989         at ':' characters by call to split-string.
991 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
993         * textmodes/bibtex.el: Added RCS version identification.
995 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
997         * textmodes/bibtex.el: Some temporary comments removed.
998         (bibtex-field-name, bibtex-entry-type): Made the relationship
999         explicit.
1000         (bibtex-field-const): Allow capital letters.
1001         (bibtex-start-of-string): Deleted because unused.
1003         * textmodes/bibtex.el: Unified some nomenclature.  We no longer
1004         use the term 'reference' to describe a bibtex entry as a whole.
1005         Further, reference keys are no longer called 'labels'.
1006         (bibtex-keys): Renamed to bibtex-reference-keys.
1007         (bibtex-reformat-previous-labels): Renamed to
1008         bibtex-reformat-previous-reference-keys.
1009         (bibtex-reference-type): Renamed to bibtex-entry-type.
1010         (bibtex-reference-head): Renamed to bibtex-entry-head.
1011         (bibtex-reference-maybe-empty-head): Renamed to
1012         bibtex-entry-maybe-empty-head.
1013         (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
1014         (bibtex-search-reference): Renamed to bibtex-search-entry.
1015         (bibtex-enclosing-reference-maybe-empty-head): Renamed to
1016         bibtex-enclosing-entry-maybe-empty-head.
1017         (bibtex-entry-field-alist, bibtex-entry-head,
1018         bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
1019         bibtex-map-entries, bibtex-search-entry,
1020         bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
1021         bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
1022         bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
1023         bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
1024         bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
1025         bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
1026         bibtex-complete-key, bibtex-String) : Use the new nomenclature.
1028 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1030         * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
1031         comment.
1032         (bibtex-format-field-delimiters): New function, functionality
1033         extracted from bibtex-format-entry.
1034         (bibtex-autokey-get-yearfield-digits): New function, functionality
1035         extracted from bibtex-autokey-get-yearfield.
1037         * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
1038         entries in order to avoid stack overflow in the regexp matcher if
1039         field contents become large.
1040         (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
1041         bibtex-field-string-part-not-braced,
1042         bibtex-field-string-part-no-inner-braces,
1043         bibtex-field-string-part-1-inner-brace,
1044         bibtex-field-string-part-2-inner-braces,
1045         bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
1046         bibtex-field-string-quoted, bibtex-field-string,
1047         bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
1048         bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
1049         bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
1050         as parsing is now performed by the following functions.
1051         (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
1052         bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
1053         bibtex-parse-field-string, bibtex-search-forward-field-string,
1054         bibtex-parse-association, bibtex-field-name-for-parsing,
1055         bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
1056         bibtex-search-forward-field, bibtex-search-backward-field,
1057         bibtex-start-of-field, bibtex-end-of-field,
1058         bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
1059         bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
1060         bibtex-parse-string-prefix, bibtex-parse-string-postfix,
1061         bibtex-parse-string, bibtex-search-forward-string,
1062         bibtex-search-backward-string, bibtex-start-of-string,
1063         bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
1064         bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
1065         bibtex-end-of-text-in-string): New functions for the parsing of bibtex
1066         entries.  Instead of reporting the results of the parsing by
1067         match-beginning or match-end, these functions return data structures
1068         that hold the corresponding positions.
1069         (bibtex-enclosing-field): Changed to also report field boundaries by
1070         return values rather than by match-beginning or match-end.  The
1071         following functions have been adapted to use the new parsing
1072         functions.
1073         (bibtex-skip-to-valid-entry, bibtex-search-reference,
1074         bibtex-enclosing-field, bibtex-format-entry,
1075         bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
1076         bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
1077         bibtex-print-help-message, bibtex-end-of-entry,
1078         bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
1079         bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
1080         bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
1081         method for parsing.
1082         (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
1083         bibtex-map-entries, bibtex-flash-head,
1084         bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
1085         bibtex-autokey-change, bibtex-autokey-get-namefield,
1086         bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
1087         bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
1088         bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
1089         bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
1090         bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
1091         order to make the new binding of case-fold-search immediately
1092         visible.
1094 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1096         * textmodes/bibtex.el: Copyright notice is up to date.
1097         Added constant 'bibtex-maintainer-salutation.
1099         * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
1100         than make-temp-name, use match-string-no-properties and eliminate
1101         a quadratic behavior when building bibtex-strings.
1103         * bibtex.el (bibtex-reference-key): Accept string entries whose
1104         reference key contains upper case letters.
1106 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1108         * bibtex.el (bibtex-reference-head): Allow entries to start with
1109         a new line.
1111 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1113         * bibtex.el: Hiding of entry bodies is not longer provided by
1114         bibtex.el directly.  Instead the hideshow package can be used.
1115         Added a special bibtex entry to hs-special-modes-alist.
1116         (bibtex-hs-forward-sexp): Added for hideshow.el.
1118 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1120         * textmodes/bibtex.el (bibtex-mode): Replaced manual splitting of path
1121         at ':' characters by call to split-string.
1123 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1125         * textmodes/bibtex.el: Added RCS version identification.
1127 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1129         * textmodes/bibtex.el: Some temporary comments removed.
1130         (bibtex-field-name, bibtex-entry-type): Made the relationship
1131         explicit.
1132         (bibtex-field-const): Allow capital letters.
1133         (bibtex-start-of-string): Deleted because unused.
1134         
1135         * textmodes/bibtex.el: Unified some nomenclature.  We no longer
1136         use the term 'reference' to describe a bibtex entry as a whole.
1137         Further, reference keys are no longer called 'labels'.
1138         (bibtex-keys): Renamed to bibtex-reference-keys.
1139         (bibtex-reformat-previous-labels): Renamed to
1140         bibtex-reformat-previous-reference-keys.
1141         (bibtex-reference-type): Renamed to bibtex-entry-type.
1142         (bibtex-reference-head): Renamed to bibtex-entry-head.
1143         (bibtex-reference-maybe-empty-head): Renamed to
1144         bibtex-entry-maybe-empty-head.
1145         (bibtex-key-in-reference): Renamed to bibtex-key-in-entry.
1146         (bibtex-search-reference): Renamed to bibtex-search-entry.
1147         (bibtex-enclosing-reference-maybe-empty-head): Renamed to
1148         bibtex-enclosing-entry-maybe-empty-head.
1149         (bibtex-entry-field-alist, bibtex-entry-head,
1150         bibtex-font-lock-keywords, bibtex-skip-to-valid-entry,
1151         bibtex-map-entries, bibtex-search-entry,
1152         bibtex-enclosing-entry-maybe-empty-head, bibtex-format-entry,
1153         bibtex-generate-autokey, bibtex-parse-keys, bibtex-pop, bibtex-mode,
1154         bibtex-submit-bug-report, bibtex-entry, bibtex-print-help-message,
1155         bibtex-make-field, bibtex-end-of-entry, bibtex-sort-buffer,
1156         bibtex-find-entry-location, bibtex-validate, bibtex-find-text,
1157         bibtex-kill-entry, bibtex-clean-entry, bibtex-reformat,
1158         bibtex-complete-key, bibtex-String) : Use the new nomenclature.
1160 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1162         * textmodes/bibtex.el (bibtex-strings, bibtex-keys): Removed redundant
1163         comment.
1164         (bibtex-format-field-delimiters): New function, functionality
1165         extracted from bibtex-format-entry.
1166         (bibtex-autokey-get-yearfield-digits): New function, functionality
1167         extracted from bibtex-autokey-get-yearfield.
1168         
1169         * textmodes/bibtex.el: Completely reimplemented parsing of bibtex
1170         entries in order to avoid stack overflow in the regexp matcher if
1171         field contents become large.
1172         (bibtex-cfield, bibtex-name-in-cfield, bibtex-text-in-cfield,
1173         bibtex-field-string-part-not-braced,
1174         bibtex-field-string-part-no-inner-braces,
1175         bibtex-field-string-part-1-inner-brace,
1176         bibtex-field-string-part-2-inner-braces,
1177         bibtex-field-string-part-3-inner-braces, bibtex-field-string-braced,
1178         bibtex-field-string-quoted, bibtex-field-string,
1179         bibtex-field-string-or-const, bibtex-field-text, bibtex-field,
1180         bibtex-name-in-field, bibtex-text-in-field, bibtex-reference-infix,
1181         bibtex-string, bibtex-key-in-string, bibtex-text-in-string): Deleted
1182         as parsing is now performed by the following functions.
1183         (bibtex-parse-nested-braces, bibtex-parse-field-string-braced,
1184         bibtex-parse-quoted-string, bibtex-parse-field-string-quoted,
1185         bibtex-parse-field-string, bibtex-search-forward-field-string,
1186         bibtex-parse-association, bibtex-field-name-for-parsing,
1187         bibtex-parse-field-name, bibtex-parse-field-text, bibtex-parse-field,
1188         bibtex-search-forward-field, bibtex-search-backward-field,
1189         bibtex-start-of-field, bibtex-end-of-field,
1190         bibtex-start-of-name-in-field, bibtex-end-of-name-in-field,
1191         bibtex-start-of-text-in-field, bibtex-end-of-text-in-field,
1192         bibtex-parse-string-prefix, bibtex-parse-string-postfix,
1193         bibtex-parse-string, bibtex-search-forward-string,
1194         bibtex-search-backward-string, bibtex-start-of-string,
1195         bibtex-end-of-string, bibtex-start-of-reference-key-in-string,
1196         bibtex-end-of-reference-key-in-string, bibtex-start-of-text-in-string,
1197         bibtex-end-of-text-in-string): New functions for the parsing of bibtex
1198         entries.  Instead of reporting the results of the parsing by
1199         match-beginning or match-end, these functions return data structures
1200         that hold the corresponding positions.
1201         (bibtex-enclosing-field): Changed to also report field boundaries by
1202         return values rather than by match-beginning or match-end.  The
1203         following functions have been adapted to use the new parsing
1204         functions.
1205         (bibtex-skip-to-valid-entry, bibtex-search-reference,
1206         bibtex-enclosing-field, bibtex-format-entry,
1207         bibtex-autokey-get-namefield, bibtex-autokey-get-titlestring,
1208         bibtex-parse-keys, bibtex-complete, bibtex-pop, bibtex-mode,
1209         bibtex-print-help-message, bibtex-end-of-entry,
1210         bibtex-ispell-abstract, bibtex-validate, bibtex-next-field,
1211         bibtex-find-text, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
1212         bibtex-kill-field, bibtex-empty-field, bibtex-fill-entry): Use the new
1213         method for parsing.
1214         (bibtex-assoc-of-regexp, bibtex-skip-to-valid-entry,
1215         bibtex-map-entries, bibtex-flash-head,
1216         bibtex-enclosing-reference-maybe-empty-head, bibtex-format-entry,
1217         bibtex-autokey-change, bibtex-autokey-get-namefield,
1218         bibtex-autokey-get-names, bibtex-autokey-get-titlestring,
1219         bibtex-autokey-get-titles, bibtex-parse-keys, bibtex-pop, bibtex-mode,
1220         bibtex-end-of-entry, bibtex-ispell-abstract, bibtex-sort-buffer,
1221         bibtex-validate, bibtex-remove-OPT-or-ALT, bibtex-remove-delimiters,
1222         bibtex-kill-field, bibtex-kill-entry): Use let* instead of let in
1223         order to make the new binding of case-fold-search immediately
1224         visible.
1226 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1228         * textmodes/bibtex.el: Copyright notice is up to date.
1229         Added constant 'bibtex-maintainer-salutation.
1230         
1231         * textmodes/bibtex.el (bibtex-mode): use with-temp-buffer rather
1232         than make-temp-name, use match-string-no-properties and eliminate
1233         a quadratic behavior when building bibtex-strings.
1234         
1235         * bibtex.el (bibtex-reference-key): Accept string entries whose
1236         reference key contains upper case letters.
1238 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1240         * bibtex.el (bibtex-reference-head): Allow entries to start with
1241         a new line.
1243 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1245         * bibtex.el: Hiding of entry bodies is not longer provided by
1246         bibtex.el directly.  Instead the hideshow package can be used.
1247         Added a special bibtex entry to hs-special-modes-alist.
1248         (bibtex-hs-forward-sexp): Added for hideshow.el.
1250 2000-02-15  Dirk Herrmann  <D.Herrmann@tu-bs.de>
1252         * bibtex.el (bibtex-entry-field-alist): Added booktitle field to
1253         proceedings entry type (for cross referencing). Thanks to Wagner
1254         Toledo Correa for the suggestion.
1256         * bibtex.el: Added `reftex-view-crossref-from-bibtex' to menu.
1258 2000-02-14  Kenichi Handa  <handa@etl.go.jp>
1260         * international/characters.el: Setup case table for Vietnamese.
1262 2000-02-12  Gerd Moellmann  <gerd@gnu.org>
1264         * uniquify.el (toplevel): Require CL at compile time.
1265         (uniquify-push): Removed.
1267         * shadowfile.el (shadow-when): Removed.
1269         * tempo.el (tempo-dolist, tempo-mapc): Removed.
1270         (tempo-process-and-insert-string): Use dolist instead of
1271         tempo-dolist.
1273         * textmodes/sgml-mode.el (sgml-mode-common): Remove `$' from
1274         regexp for paragraph-start.
1276         * mail/mail-utils.el (rmail-dont-reply-to): Remove leading
1277         commas as well.
1279 2000-02-10  Dave Love  <fx@gnu.org>
1281         * wid-edit.el: (widgets) [defgroup]: Remove url link.
1282         (widget-color-choice-list, widget-color-history, widget-mouse-help):
1283         Deleted.
1284         (widget-specify-field, widget-specify-button): Don't use
1285         widget-mouse-help as help-echo property.
1286         (default): Use #'ignore for :validate and :mouse-down-action.
1287         (checkbox): Add help-echo.
1288         (widget-sexp-validate): Rewritten to clarify error messages.
1289         (character): Use char-valid-p in :match function.
1290         (widget-color-complete): Use facemenu-color-alist.
1291         (widget-color-action): Use facemenu-read-color.
1293         * emacs-lisp/cl-macs.el: Don't bother testing for defalias.  Don't
1294         set up `caar' &c that we now have.
1296 2000-02-09  Ray Blaak  <blaak@gnu.org>
1298         * delphi.el: Make resourcestring a declaration region, like const
1299         and var.
1301 2000-02-09  Dave Love  <fx@gnu.org>
1303         * bindings.el (mode-line-input-method-map): New variable.
1304         (mode-line-mule-info): Use it; fix last change.
1305         (mode-line-mode-menu): Move definition.
1306         (mode-line-mouse-sensitive-p): Deleted.
1307         (mode-line-mode-name): Don't use mode-line-mouse-sensitive-p.
1308         (make-mode-line-mouse-sensitive): Deleted.  Body moved to top
1309         level.
1311         * startup.el (command-line-1): Don't call
1312         make-mode-line-mouse-sensitive.
1314 2000-02-07  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
1316         * mail/rmail.el (rmail-retry-failure): Use
1317         rmail-beginning-of-message before rmail-toggle-header, because the
1318         former toggles headers.
1320 2000-02-06  Stefan Monnier  <monnier@cs.yale.edu>
1322         * diff-mode.el (diff-kill-junk): New interactive function.
1323         (diff-reverse-direction): Use delete-and-extract-region.
1324         (diff-post-command-hook): Restrict the area so that the hook also works
1325         outside of any diff hunk.  This is necessary for the minor-mode.
1326         (diff-mode): Use toggle-read-only and minor-mode-overriding-map-alist.
1327         (diff-minor-mode): Setup the hooks for header-hunk rewriting.
1329         * font-lock.el (font-lock-keywords): Fix doc for multiline matches.
1330         (font-lock-add-keywords): Make it work even if font-lock-mode is nil,
1331         so that it can be used more easily in <foo>-mode-hook.  Also make sure
1332         to avoid duplicate entries.
1333         (font-lock-update-removed-keyword-alist): Renamed `major-mode'->`mode'.
1334         (font-lock-remove-keywords): Just as was done for `add', allow it to
1335         work even if font-lock-mode is nil.  Also make sure we don't modify
1336         any pre-existing list by forcing a copy-sequence.  Finally rename
1337         `major-mode' to `mode'.
1338         (font-lock-fontify-syntactic-anchored-keywords)
1339         (font-lock-fontify-anchored-keywords)
1340         (font-lock-fontify-keywords-region): Use line-end-position.
1341         Don't make `font-lock-multiline' local (it's now done in
1342         font-lock-set-defaults).
1343         (font-lock-set-defaults): Make `font-lock-multiline' local.  Also
1344         move the `font-lock-fontified' creation to inside the `unless'.
1346 2000-02-06  Andrew Innes  <andrewi@gnu.org>
1348         * term/w32-win.el (x-handle-args): Comment out call to message,
1349         which occurs before window system is initialized.
1351         * makefile.nt: Add support for recompiling lisp code.
1353 2000-02-04  Dave Love  <fx@gnu.org>
1355         * bindings.el (mode-line-mule-info): Fix/extend last change.
1357         * completion.el: Replace completion-dolist with dolist.
1359         * tar-mode.el: Replace tar-dolist, tar-dotimes with dolist,
1360         dotimes.
1362 2000-02-04  Carsten Dominik  <dominik@strw.leidenuniv.nl>
1364         * textmodes/reftex.el (reftex-compile-variables): regexp-quote the
1365         environment names before they go into the section regexp.
1367         * textmodes/reftex-global.el (reftex-change-label): add `A-Z' to
1368         char class in regexp.
1370         * textmodes/reftex-parse.el (reftex-with-special-syntax): Bind
1371         `case-fold-search' to nil.
1373         * progmodes/idlwave.el (idlwave-template): Respect
1374         `idlwave-abbrev-change-case'.
1375         (idlwave-rw-case, idlwave-elif, idlwave-case, idlwave-for,
1376         idlwave-if, idlwave-procedure, idlwave-function, idlwave-repeat,
1377         idlwave-while): respect `idlwave-reserved-word-upcase'.
1378         (idlwave-rw-case): New function.
1379         (idlwave-statement-match): Fixed problem with assignment regexp.
1380         (idlwave-font-lock-keywords): Improved regexp for keyword
1381         parameters.
1382         (idlwave-surround): New argument LENGTH to support padding of
1383         operators longer than 1 char.
1385         * progmodes/idlw-shell.el (idlwave-shell-print): Fixed bug with
1386         idlwave-shell-expression-overlay.  Implemented printing of
1387         expressions on higher levels of the calling stack.
1388         (idlwave-shell-display-level-in-calling-stack): Restore stack
1389         level.
1390         (idlwave-retrieve-expression-from-level): New function.
1391         (idlwave-shell-last-calling-stack): Variable removed.
1392         (idlwave-shell-reset): Argument action reversed (`visible' to
1393         `hidden').  Also remove stop-line overlay.
1394         (idlwave-shell-calling-stack-routine): New variable.
1395         (idlwave-shell-parse-stack-and-display): Messages now display
1396         negative level numbers.
1397         (idlwave-shell-mode): Set `modeline-format'.
1398         (idlwave-shell-display-line): Set `idlwave-shell-mode-line-info'.
1399         (idlwave-shell-make-new-bp-overlay): Fixed glyph display for Emacs
1400         21.
1401         (idlwave-shell-print-expression-function): New option.
1403         * progmodes/idlw-toolbar.el (idlwave-toolbar-add-everywhere,
1404         idlwave-toolbar-remove-everywhere): Keybindings prefix is now
1405         `tool-bar' instead of `toolbar'.
1407 2000-02-02  Dave Love  <fx@gnu.org>
1409         * emacs-lisp/cl.el: Use bytecomp-load-hook, not
1410         emacs-lisp-mode-hook.  Don't check for defalias being defined.
1412         * emacs-lisp/cl-extra.el (cl-builtin-gethash, cl-builtin-remhash)
1413         (cl-builtin-maphash, cl-builtin-clrhash): Remove definitions.  Use
1414         the new builtins directly.
1416         * whitespace.el (whitespace): Add :version to defgroup.
1418         * tooltip.el (tooltip-gud-tips-p, tooltip-gud-toggle-dereference):
1419         Doc fix.
1421         * thingatpt.el (sexp-at-point, symbol-at-point)
1422         (number-at-point, list-at-point): Add autoload cookie.
1424         * recentf.el (recentf): Add :version to defgroup.
1426         * quickurl.el (quickurl): Add :version to defgroup.
1428         * elide-head.el (elide-head): Use point-marker more.
1430         * bs.el (bs): Add :version to defgroup.
1432         * autorevert.el (global-auto-revert-mode): Add autoload cookie.
1434         * progmodes/delphi.el (delphi): Add :version to defgroup.
1436 2000-02-02  Gerd Moellmann  <gerd@gnu.org>
1438         * ange-ftp.el (ange-ftp-write-region): Handle case that
1439         succeeding process operation sets a different coding system.
1441         * calculator.el: New file.
1443 2000-02-02  Eli Zaretskii  <eliz@is.elta.co.il>
1445         * frame.el (frames-on-display-list, framep-on-display): New
1446         functions.
1447         (display-mouse-p, display-popup-menus-p, display-graphic-p)
1448         (display-selections-p, display-screens, display-pixel-width)
1449         (display-pixel-height, display-mm-width, display-mm-height)
1450         (display-backing-store, display-save-under, display-planes)
1451         (display-color-cells, display-visual-class): New functions.
1453         * term/tty-colors.el (tty-color-gray-shades): New function.
1455         * faces.el (display-color-p): Use framep-on-display.
1456         (display-grayscale-p): New function.
1458 2000-01-31  Dave Love  <fx@gnu.org>
1460         * emacs-lisp/fontset.el (standard-fontset-spec): Purecopy it.
1461         (create-fontset-from-x-resource): Don't concat integers.
1463 2000-01-31  Inge Frick  <inge@nada.kth.se>
1465         * view.el: Some changes in documentation.  Removed some trailing
1466         whitespace. Changed some parameter names to agree with
1467         documentation.
1468         (view-mode-exit): Keep entry in `view-return-to-alist' only when a
1469         window is not deleted.  Modifies change 1998-04-26.
1471 2000-01-31  Gerd Moellmann  <gerd@gnu.org>
1473         * windmove.el: New file.
1475         * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
1476         progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
1477         progmodes/ebnf-yac.el: Update copyright and license info.
1479         * jit-lock.el (jit-lock-function): Widen before calculating end
1480         position.
1481         (jit-lock-stealth-chunk-start): Rewritten.
1483         * info.el (Info-title-face-alist): Removed.
1484         (Info-title-1-face, Info-title-2-face, Info-title-3-face): New
1485         faces.
1486         (Info-fontify-node): Use these faces.
1488 2000-01-30  Gerd Moellmann  <gerd@gnu.org>
1490         * emacs-lisp/cl-specs.el (cl-lambda-list, cl-macro-list)
1491         (cl-macro-list1): Recognize `&allow-other-keys' instead of
1492         `&allow-other-keywords'.
1494         * mail/mh-utils.el (mh-find-progs): Add directory `etc' to
1495         the list of directories scanned heuristically.
1497         * Makefile (DONTCOMPILE): Remove term-nasty.el; doesn't seem to
1498         exist.
1500 2000-01-30  Jason Rumney  <jasonr@gnu.org>
1502         * w32-fns.el: Define w32-tty-standard-colors.
1504         * startup.el (command-line): Use w32-tty-standard-colors when in
1505         w32 console mode.
1507 2000-01-30  Dave Love  <fx@gnu.org>
1509         * jka-compr.el (jka-compr-load): Fix up load-history.
1511         * emacs-lisp/cl.el: Replace autoloads for dolist, dotimes.
1513         * emacs-lisp/cl-macs.el: Revert previous change.
1515 2000-01-29  Dave Love  <fx@gnu.org>
1517         * facemenu.el: Purecopy various strings.
1519         * timezone.el (timezone-fix-time): Window against 69 for two-digit
1520         years.  Deal with three-digit years.
1522         * help.el (help-xref-symbol-regexp, help-xref-info-regexp): Use
1523         defconst, purecopy.
1524         (help-back-label): Purecopy it.
1526 2000-01-18  Gerd Moellmann  <gerd@gnu.org>
1528         * iswitchb.el (iswitchb-use-frame-buffer-list): New configuration
1529         variable. If non-nil, order the buffer list according to the
1530         currently selected frame.
1531         (iswitchb-make-buflist): If iswitchb-use-frame-buffer-list is
1532         non-nil, pass the selected frame to function buffer-list.
1534 2000-01-29  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
1536         * progmodes/ebnf2ps.el (ebnf-syntax): Doc fix
1538 2000-01-28  Dave Love  <fx@gnu.org>
1540         * emacs-lisp/cl-macs.el: Remove dotimes, dolist.
1542         * emacs-lisp/cl.el: Remove stuff for dotimes, dolist, push, pop.
1543         Don't use lisp-indent-hook property.
1544         (cl-abs): Remove.
1546         * subr.el: Move out indent and edebug specs for when and unless.
1548         * emacs-lisp/lisp-mode.el: Add indent specs for dolist, dotimes,
1549         when, unless.
1551         * emacs-lisp/edebug.el: Add specs for push, pop, dotimes, dolist,
1552         unless, when.
1554 2000-01-28  Gerd Moellmann  <gerd@gnu.org>
1556         * emacs-lisp/cl-macs.el (cl-parse-loop-clause): Recognize
1557         `collecting' as synonym for `collect'.
1559         * ange-ftp.el (ange-ftp-copy-file-internal): Quote new name
1560         for the case it contains spaces.
1562         * simple.el (what-cursor-position): Change formatting of
1563         messages.
1565         * frame.el (delete-other-frames): New function.
1566         (toplevel): Bind it to C-x 5 1.
1568         * sort.el (sort-numeric-base): New option.
1569         (sort-numeric-fields): If number starts with `0' or `0[xX[',
1570         interpret it as octal or hexadecimal.  Use sort-numeric-base
1571         as default base.
1573         * progmodes/glasses.el: New file.
1575 2000-01-27  Gerd Moellmann  <gerd@gnu.org>
1577         * mail/mail-utils.el (rmail-dont-reply-to): Replace matched
1578         userids differently.
1580         * progmodes/ebnf2ps.el, progmodes/ebnf-bnf.el,
1581         progmodes/ebnf-iso.el, progmodes/ebnf-otz.el,
1582         progmodes/ebnf-yac.el: New files.
1584 2000-01-26  Dave Love  <fx@gnu.org>
1586         * emacs-lisp/checkdoc.el (checkdoc-interactive-loop): Don't lose
1587         on a function with an empty body.  [From Eric Ludlam.]
1589 2000-01-25  Andre Spiegel  <spiegel@gnu.org>
1591         * vc.el (vc-version-diff): Make sure file name is expanded.
1593 2000-01-25  Gerd Moellmann  <gerd@gnu.org>
1595         * scroll-bar.el (scroll-bar-timer): Variable removed.
1596         (scroll-bar-toolkit-scroll): Don't use a timer.
1598 2000-01-25  Kenichi Handa  <handa@etl.go.jp>
1600         * language/thai-util.el (thai-composition-function): Delete
1601         superfluous `a'.
1603 2000-01-24  Dave Love  <fx@gnu.org>
1605         * fortran.el (fortran-mode): Use beginning-of-defun-function,
1606         end-of-defun-function.
1608         * font-lock.el (turn-on-font-lock): Don't depend on window-system
1609         &c.
1611 2000-01-22  Jason Rumney  <jasonr@gnu.org>
1613         * term/w32-win.el (w32_create_initial_fontsets): Disabled as it
1614         conflicts with new face support.
1616 2000-01-22  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1618         * replace.el (query-replace): Rename last arg to DELIMITED.
1619         (map-query-replace-regexp, query-replace-regexp-eval): Likewise.
1620         (query-replace-regexp): Likewise.
1622 2000-01-20  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1624         * subr.el (with-syntax-table): Use make-symbol, not gensym.
1626         * emacs-lisp/lisp.el (beginning-of-defun-function):
1627         Variable renamed from beginning-of-defun.
1628         Do not call make-variable-buffer-local.
1629         (beginning-of-defun-raw): Use new variable name; doc fix.
1630         (beginning-of-defun): Doc fix.
1631         (end-of-defun-function): Variable renamed from end-of-defun.
1632         Do not call make-variable-buffer-local.
1633         (end-of-defun): Use new variable name; doc fix.
1635         * subr.el (dolist, dotimes): Copied from cl-macs.el
1636         and made to work.
1638         * mail/undigest.el (rmail-digest-end-regexps):
1639         Variable replaces rmail-digest-end-regexp.
1640         Allows multiple regexps for detecting the end line.
1641         (undigestify-rmail-message): Corresponding changes.
1643 2000-01-19  Dave Love  <fx@gnu.org>
1645         * files.el (user-init-file): Don't declare here -- is primitive.
1647         * startup.el (command-line): Check for compiled user-init-file and
1648         set to uncompiled version if necessary.
1650 2000-01-18  Gerd Moellmann  <gerd@gnu.org>
1652         * mail/undigest.el (rmail-digest-end-regexp): New user option.
1653         (undigestify-rmail-message): Use it.
1655         * ange-ftp.el (ange-ftp-skip-msgs): Add regexp for EPRT.
1657 2000-01-17  Gerd Moellmann  <gerd@gnu.org>
1659         * tmm.el (tmm-goto-completions): Adapt to prompt being part
1660         of mini-buffer.
1662 2000-01-14  Gerd Moellmann  <gerd@gnu.org>
1664         * emacs-lisp/copyright.el (copyright-update): Removed the
1665         requirement for a trailing space from `copyright-regexp', to
1666         support copyrights with owner specified on a separate line..
1668         * align.el: New file.
1670         * menu-bar.el (menu-bar-tools-menu): Add EUDC submenu.
1672         * net/eudc.el (toplevel): Define EUDC menu for Emacs.
1674 2000-01-13  Dave Love  <fx@gnu.org>
1676         * ph.el: Removed.  (Obsoleted by EUDC.)
1678 2000-01-13  Gerd Moellmann  <gerd@gnu.org>
1680         * net/eudc.el (toplevel): Remove autoloaded code installing
1681         menu with easymenu, because that causes build problems.
1683         * frame.el (frame-notice-user-settings): New variable.
1684         (frame-notice-user-settings): Don't modify frame parameters
1685         if called a second time.
1687 2000-01-13  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1689         * frame.el (frame-notice-user-settings):
1690         Notice default-frame-parameters even for non-window frames.
1692 2000-01-13  Gerd Moellmann  <gerd@gnu.org>
1694         * net/eudc-bob.el (eudc-bob-play-sound-at-point): Play sounds
1695         for Emacs.
1696         (eudc-bob-can-display-inline-images): Extend for Emacs.
1697         (eudc-bob-toggle-inline-display): Ditto.
1698         (eudc-bob-display-jpeg): Ditto.
1700 2000-01-12  Gerd Moellmann  <gerd@gnu.org>
1702         * net/eudc-bob.el, net/eudc-export.el, net/eudc-hotlist.el,
1703         net/eudc-vars.el, net/eudc.el, net/eudcb-bbdb.el,
1704         net/eudcb-ldap.el, net/eudcb-ph.el, net/ldap.el: New files.
1706         * add-log.el (add-change-log-entry): Fix error trying an `(insert
1707         nil)'.
1709         * subdirs.el: Add `net' directory.
1711         * net: New directory.
1713         * emacs-lisp/lisp-mode.el (eval-last-sexp-1): Renamed from
1714         eval-last-sexp.  Don't bind debug-on-error here.
1715         (eval-last-sexp): New function.  Bind debug-on-error if
1716         eval-expression-debug-on-error is non-nil.
1717         (eval-defun-2, eval-defun): Likewise.
1719         * simple.el (eval-expression): Don't bind debug-on-error if
1720         eval-expression-debug-on-error is nil.  Detect changed
1721         debug-on-error, and propagate new value to global binding, if
1722         eval-expression-debug-on-error is non-nil,
1723         (eval-expression-debug-on-error): Change doc string.
1725 2000-01-11  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1727         * emacs-lisp/edebug.el (with-syntax-table): Add a def-edebug-spec.
1729         * emacs-lisp/lisp-mode.el (with-syntax-table):
1730         Set up lisp-indent-function property.
1732         * subr.el (with-syntax-table): Moved from simple.el.
1734         * simple.el (with-syntax-table): Moved to subr.el.
1736 2000-01-11  Gerd Moellmann  <gerd@gnu.org>
1738         * tmm.el (tmm-shortcut): Delete region after prompt instead
1739         of erasing buffer.
1741         * textmodes/fill.el (fill-common-string-prefix): New function.
1742         (fill-context-prefix): Use the longest common prefix of first
1743         and second line fill prefix, if there is one.
1745 2000-01-11  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1747         * array.el (array-mode): Don't use make-variable-buffer-local.
1748         Use make-local-variable for `truncate-lines'.
1750 2000-01-11  Jari Aalto  <jari.aalto@poboxes.com>
1752         * add-log.el (add-log-current-defun): Handle user-defined
1753         add-log-current-function returning nil,
1755         * add-log.el (add-change-log-entry): Insert version number
1756         if having found a current function
1758         * add-log.el (add-log-current-defun): Call
1759         `add-log-current-defun-function'.  Try matches at level 0 and
1760         level 1.  Strip whitespace from defun found.
1762 2000-01-10  John Wiegley  <johnw@gnu.org>
1764         * allout.el (isearch-done/outline-provisions): Added `edit'
1765         argument to correspond with the current definition of
1766         `isearch-done'.
1768 2000-01-10  Dave Love  <fx@gnu.org>
1770         * elide-head.el (elide-head): Use point-marker, not point.
1772 2000-01-10  Gerd Moellmann  <gerd@gnu.org>
1774         * vc-hooks.el (vc-parse-buffer): Handle mixtures of dates
1775         before and after the year 2000.
1777         * textmodes/ispell-merged.el (xemacsp, version18p, version-20p):
1778         Add ispell- prefix.
1780 2000-01-10  Ken Stevens  <k.stevens@ieee.org>
1782         * ispell.el:  Only define dictionaries in menus when they exist.
1783         (version18p): New variable.
1784         (version20p): New variable.
1785         (xemacsp): New variable.
1786         (ispell-choices-win-default-height): Fix for XEmacs visibility.
1787         (ispell-dictionary-alist1): Added Brasileiro dictionary.
1788         (ispell-dictionary-alist6): Russian command lines no longer accept
1789         run-together words.
1790         (ispell-local-dictionary-alist): Add koi8-r to customize definition.
1791         (ispell-dictionary-alist): Add koi8-r to customize definition.
1792         (check-ispell-version): Added documentation string.  Returns
1793         library path when called non-interactively.
1794         (ispell-menu-map-needed): Uses new variables.
1795         (ispell-library-path): New variable.
1796         (ispell-decode-string): XEmacs fix for bogus variable bindings.
1797         (ispell-word): Improved documentation string.  Test for valid
1798         character mappings.  Correctly check typed in word changes that can
1799         result in single words split into multiple words.  Returns
1800         replacement word.
1801         (ispell-command-loop): Fixes XEmacs display bugs.  Show word to
1802         replace in recursive query replace mode.  Help message for
1803         recursive edit mode.
1804         (ispell-show-choices): Protect against bad framepop bindings.
1805         (ispell-help): Fix to work with XEmacs.
1806         (ispell-highlight-spelling-error): Use new variables.
1807         (ispell-overlay-window): Fix to work with XEmacs.
1808         (ispell-parse-output): Passed and returns location information
1809         tracking spelling corrections.  Doesn't recheck same word on
1810         current line.
1811         (ispell-init-process): Protect against bogus XEmacs variable binding.
1812         Fix call to single argument in sleep-for.  Use new variables.
1813         (ispell-region): Passed and returns location information tracking
1814         spelling corrections.  Doesn't check same word on current line.
1815         Improved documentation string.  Doesn't resend a line already
1816         checked to the ispell process - fixes bug in LaTeX parsing.
1817         (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML.
1818         (ispell-skip-region): No longer skips <TT> in SGML.
1819         (ispell-process-line): Tracks location information with spelling
1820         corrections.  Added documentation string.  Accounts for words
1821         already accepted on this line.  Don't allow query-replace on line
1822         starting with math characters.  Doesn't resend a line already sent
1823         to ispell process.  Fixes alignment error bug.
1825 2000-01-10  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
1827         * dired-x.el (dired-guess-shell-alist-default):
1828         Suggest xloadimage, which is free, not xv, which isn't.
1830         * ange-ftp.el (ange-ftp-file-name-nondirectory):
1831         Don't ever include the host name or user name in the value.
1833 2000-01-09  Gerd Moellmann  <gerd@gnu.org>
1835         * textmodes/texinfmt.el (texinfo-format-scan): Use ?\n instead
1836         of a real newline.
1838 2000-01-09  Stephen Eglen  <stephen@gnu.org>
1840         * dired-x.el (dired-guess-shell-alist-default): Suggest xv
1841         for .png files.
1843 2000-01-09  Per Abrahamsen  <abraham@dina.kvl.dk>
1845         * cus-edit.el (custom-hook-convert-widget): Fix comment.
1847 2000-01-09  Gerd Moellmann  <gerd@gnu.org>
1849         * progmodes/cperl-mode.el: Replace ^F with ^L.
1851         * sendmail.el (toplevel): Provide `sendmail' when compiling
1852         before `require'ing rmail and mailalias to prevent infinite
1853         recursion.
1855 2000-01-08  Dave Love  <fx@gnu.org>
1857         * emacs-lisp/backquote.el: Remove inappropriate customization
1858         (allowing custom.el to use backquote).
1860 2000-01-07  Dave Love  <fx@gnu.org>
1862         * add-log.el (add-log-debugging): Deleted.
1863         (add-change-log-entry): Treat a backup FILE-NAME as its parent
1864         file.  Remove debugging code.
1865         (change-log-get-method-definition, change-log-name): Add doc.
1866         (change-log-sortable-date-at): New function.
1867         (change-log-merge): New command.
1869         * time.el (display-time-string-forms): Make the Mail string active.
1870         (display-time-update): Provide help-echo for load average.
1872         * bindings.el (make-mode-line-mouse2-map): New function.
1873         (mode-line-modified): Use it and simplify.
1874         (mode-line-mule-info): Provide help-echo info.
1875         (minor-mode-alist): Activate the strings.
1876         (make-mode-line-mouse-sensitive): Simplify for
1877         mode-line-buffer-identification.
1879 2000-01-07  Gerd Moellmann  <gerd@gnu.org>
1881         * play/pong.el: New file.
1883 2000-01-06  Dave Love  <fx@gnu.org>
1885         * array.el: Assorted cleanups for compiler warnings, doc strings,
1886         `array-' prefix for symbols.
1888 2000-01-05  Dave Love  <fx@gnu.org>
1890         * textmodes/outline.el (outline-mode-menu-bar-map): Add
1891         outline-headers-as-kill.
1892         (outline-mode): Define imenu-generic-expression.
1893         (outline-headers-as-kill): New command.
1895         * textmodes/otext-mode.el (text-mode): Remove page-delimiter's `^'
1896         from paragraph-start.
1897         (paragraph-indent-minor-mode): New command.
1899         * progmodes/fortran.el (fortran-mode-map): Don't bind M-C-a,
1900         M-C-e, M-C-h, C-j, C-xnd, TAB.
1901         (fortran-mode): Set beginning-of-defun, end-of-defun.
1902         (fortran-column-ruler): Simplify.
1903         (fortran-mark-subprogram, fortran-narrow-to-subprogram): Deleted.
1904         (fortran-with-subprogram-narrowing): Likewise.
1905         (fortran-indent-subprogram): Call mark-defun.
1906         (fortran-check-for-matching-do): Change narrowing.
1908         * emacs-lisp/cl-extra.el (cl-make-hash-table): Use make-hash-table.
1909         (cl-lucid-hash-tag): Delete.
1910         (cl-hash-table-p): Correct test for native table.
1911         (cl-hash-table-count): Use hash-table-count.
1913         * browse-url.el (browse-url): Fix case of
1914         browse-url-browser-function being an alist.
1916 2000-01-05  Carsten Dominik  <cd@gnu.org>
1918         * textmodes/reftex-vars.el (reftex-parse-file-extension)
1919         (reftex-index-phrase-file-extension): New options.
1921         * textmodes/reftex-index.el (reftex-index-visit-phrases-buffer):
1922         Use new option `reftex-index-phrase-file-extension'.
1924         * textmodes/reftex.el (reftex-access-parse-file): Use new option
1925         `reftex-parse-file-extension'.
1927 2000-01-05  Dave Love  <fx@gnu.org>
1929         * emacs-lisp/lisp.el (beginning-of-defun): New variable.
1930         (beginning-of-defun-raw): Use it.
1931         (end-of-defun): New variable.
1932         (end-of-defun): Use it.
1933         (check-parens): New command.
1935 2000-01-05  Thien-Thi Nguyen  <ttn@delysid.gnu.org>
1937         * progmodes/hideshow.el (hs-discard-overlays, hs-flag-region)
1938         (hs-show-block): Don't use `mapcar' when not accumulating.
1940         Fix buglet in local variables initialization.
1942 2000-01-05  Andreas Schwab  <schwab@suse.de>
1944         * hscroll.el (hscroll): Doc fix.
1946 2000-01-05  Carsten Dominik  <cd@gnu.org>
1948         * progmodes/idlw-shell.el (idlwave-shell-toggle-toolbar): require
1949         idlw-toolbar.
1951         * progmodes/idlwave.el (idlwave-load-system-rinfo): load must read
1952         file idlw-rinfo.el.
1953         (idlwave-customize): load must read file idlw-shell.el.
1954         (idlwave-create-customize-menu): load must read file idlw-shell.el.
1956 2000-01-05  Carsten Dominik  <dominik@astro.uva.nl>
1958         * progmodes/idlw-shell.el: Also provide idlwave-shell
1959         * progmodes/idlw-rinfo.el: Also provide idlwave-rinfo
1960         * progmodes/idlw-toolbar.el: Also provide idlwave-toolbar
1962         * textmodes/reftex-dcr.el: renamed from reftex-vcr.el, provide
1963         both reftex-dcr and reftex-vcr.
1965         * textmodes/reftex.el: Renamed reftex-vcr.el to reftex-dcr.el
1967 2000-01-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
1969         * ps-print.el: PostScript code now is in separate files, doc fix.
1970         (ps-print-version): New version number (5.0.3).
1971         (ps-header-lines, ps-left-header, ps-right-header): No more buffer
1972         local.
1973         (ps-spool-config): Initialization fix.
1974         (ps-print-prologue-1, ps-print-prologue-2)
1975         (ps-print-duplex-feature): PostScript code moved to separated file.
1976         (ps-background-image): Little code reformating.
1977         (ps-begin-file, ps-begin-job): Fix code.
1978         (ps-postscript-code-directory, ps-mark-code-directory): New vars.
1979         (ps-prologue-file): New fun.
1981 2000-01-05  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
1983         * ps-vars.el: Eliminated.
1985         * ps-mule.el: ps-vars eliminated, ps-multibyte-buffer now is
1986         `;;;###autoload'.
1988         * ps-print.el: ps-vars eliminated, doc fix.
1989         (ps-print-version): New version number (5.0.2).
1990         (ps-spool-config): Initialization fix.
1991         (ps-print-customize): New fun.
1993 2000-01-04  Gerd Moellmann  <gerd@gnu.org>
1995         * autorevert.el (auto-revert-mode): Return value of
1996         auto-revert-mode.
1998 2000-01-04  Dave Love  <fx@gnu.org>
2000         * bindings.el (make-mode-line-mouse-sensitive): Fix the toggle
2001         menu items.
2003 2000-01-03  Dave Love  <fx@gnu.org>
2005         * elide-head.el (elide-head) [defgroup]: Add :version.
2007         * emacs-lisp/cl-extra.el (cl-emacs-type): Remove defvar.
2008         (cl-not-hash-table, cl-clrhash, cl-maphash, cl-hash-table-count): Use
2009         `cl-hash-table-p', not `hash-table-p'.
2010         (cl-map-keymap, cl-map-keymap-recursively): Remove compatibility code.
2012 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
2014         * faces.el (face-read-integer, read-face-attribute)
2015         (color-defined-p, color-values): unspecified-{f,b}g are now
2016         strings.
2018 2000-01-03  Martin Stjernholm  <bug-cc-mode@gnu.org>
2020         * progmodes/cc-cmds.el (c-fill-paragraph): Count number of spaces
2021         at comment end, and re-insert them after filling.
2023 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
2025         * progmodes/idlwave.el: Rename idlwave-*.el into idlw-*.el
2026         * progmodes/idlw-rinfo.el, progmodes/idlw-shell.el,
2027         progmodes/idlw-toolbar.el: Renamed from idlwave-*.el.
2029 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
2031         * term/x-win.el (xw-defined-colors): Call color-supported-p,
2032         the new name of face-color-supported-p.
2034         * term/w32-win.el (xw-defined-colors): Likewise.
2036 2000-01-03  Eli Zaretskii  <eliz@is.elta.co.il>
2038         * simple.el (completion-setup-function): Count completion-size
2039         from minibuffer-prompt-end, not from point-min.
2041 2000-01-02  Eli Zaretskii  <eliz@is.elta.co.il>
2043         * faces.el (read-face-attribute, defined-colors, color-defined-p):
2044         Pass the frame to tty-color-* functions.
2045         (display-color-p, frame-set-background-mode): Pass the frame to
2046         tty-display-color-p.
2048         * term/tty-colors.el (tty-defined-color-alist): Renamed from
2049         tty-color-alist.
2050         (tty-color-alist, tty-modify-color-alist): New functions.
2051         (tty-color-define,  tty-color-clear, tty-color-approximate)
2052         (tty-color-translate, tty-color-by-index, tty-color-desc): Accept
2053         an optional parameter FRAME.
2055 2000-01-01  Gerd Moellmann  <gerd@gnu.org>
2057         * image.el (create-image, defimage): Don't assume image data is a
2058         string.
2060         * image.el (defimage): Handle specifications containing :data
2061         instead of :file.
2062         (image-type-from-data): New function.
2063         (image-type-from-file-header): Use it.
2064         (create-image): Add parameter DATA-P.
2066 1999-12-31  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
2068         * echistory.el (electric-command-history): Call Command-history-setup
2069         and command-history-mode using their new conventions.
2071         * chistory.el (Command-history-setup): Don't switch buffers.  Take
2072         no args, and do not set major-mode, mode-name or the local map.
2073         (command-history-mode): New function, does some of those things
2074         Command-history-setup used to do.
2075         (list-command-history): Call command-history-mode, not
2076         Command-history-setup.
2077         (command-history): Renamed from command-history-mode.
2079 1999-12-31  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
2081         * arc-mode.el (archive-mode-map): Bind q to quit-window.
2083 1999-12-31  William M. Perry  <wmperry@aventail.com>
2085         * image.el (defimage): Images with the `:data' keyword should be
2086         considered valid as well.
2088 1999-12-31  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
2090         * dired.el (dired-get-filename): Don't call file-name-absolute-p
2091         with FILE if FILE is nil.
2093 1999-12-30  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
2095         * simple.el (choose-completion-string): In minibuffer,
2096         do not delete the prompt string.
2098 1999-12-30  Gerd Moellmann  <gerd@gnu.org>
2100         * bindings.el (make-mode-line-mouse-sensitive): Copy keymap
2101         assigned to mode-line-mode-menu because bindings.el is dumped with
2102         Emacs, and thus the lists used for menu-item definition will be
2103         copied to pure space.  Emacs' menu code (parse_menu_item) doesn't
2104         like pure menu item definitions.
2106         * expand.el (expand-abbrev-hook): Return t if expansion was
2107         done, nil otherwise.
2109 1999-12-29  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
2111         * tar-mode.el (tar-mode-map): Bind q to quit-window, not tar-quit.
2112         (tar-quit): Function deleted.
2114 1999-12-29  Thien-Thi Nguyen  <ttn@delysid.gnu.org>
2116         * progmodes/hideshow.el (hs-minor-mode-menu): Fix omission bug;
2117         was used but not declared.
2119         (hs-discard-overlays, hs-isearch-show, hs-isearch-show-temporary,
2120         hs-find-block-beginning): Add or modify docstrings.
2122         (hs-isearch-show): Rewrite.
2124 1999-12-28  Gerd Moellmann  <gerd@gnu.org>
2126         * icomplete.el (icomplete-exhibit): Adapt to prompt in buffer.
2128         * progmodes/cc-cmds.el (c-fill-paragraph): Don't delete white
2129         space in front of a C-style comment end.
2131 1999-12-28  Eli Zaretskii  <eliz@is.elta.co.il>
2133         * startup.el (command-line-1): Make mode line mouse-sensitive for
2134         the MS-DOS version as well.
2136 1999-12-28  Gerd Moellmann  <gerd@gnu.org>
2138         * bs.el: New file.
2140 1999-12-28  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
2142         * textmodes/ispell.el (ispell-process-line):
2143         Add local var line-offset to adjust for the change
2144         in positions within the line, due to previous replacements.
2146 1999-12-27  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
2148         * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
2149         Doc fixes.
2151 1999-12-27  Gerd Moellmann  <gerd@gnu.org>
2153         * add-log.el (change-log-version-number-regexp-list)
2154         (change-log-version-info-enabled): Change :version to 21.1.
2155         (toplevel): Require CL when compiling.
2157 1999-12-27  Jari Aalto  <jari.aalto@poboxes.com>
2159         * add-log.el (change-log-version-number-regexp-list): Added tag
2160         :version 20.6
2161         (change-log-version-info-enabled): Added tag :version 20.6
2163 1999-12-27  Jari Aalto  <jari.aalto@poboxes.com>
2165         * add-log.el: More general version number search with
2166         user-configurable regexp list.
2167         (change-log-version-number-regexp-list): New user variable.
2168         (change-log-find-version): Rewritten.  Use user-configurable
2169         version numbering regexp list
2170         change-log-version-number-regexp-list.
2171         (change-log-find-version): Renamed to
2172         change-log-version-number-search
2173         (add-log-file-name-function): New.
2174         (change-log-search-vc-number): Added END paramaeter.  Added doc
2175         string to function.
2176         (change-log-version-rcs): Renamed.  Was
2177         change-log-search-vc-number.
2179 1999-12-26  Thien-Thi Nguyen  <ttn@delysid.gnu.org>
2181         * progmodes/compile.el (compilation-goto-locus): Delete hideshow
2182         overlays if they interfere.
2183         (compilation-find-file): Make intangible overlays tangible.
2185         * progmodes/hideshow.el: Generally, synch w/ maintainer
2186         version 5.9.
2188         (hs-show-hidden-short-form): Delete var; hard-code uses as `t'.
2190         (hs-minor-mode-hook): Don't initialize.
2192         (hs-special-modes-alist): Rewrite value and docstring.
2194         (hs-minor-mode-prefix): Delete unused var.
2196         (hs-block-start-mdata-select): New var, buffer local.
2198         (hs-headline): New var.
2200         (hs-match-data, hs-forward-sexp): New funcs.
2202         (hs-hide-comment-region): New func.
2204         (hs-discard-overlays, hs-flag-region, hs-hide-block-at-point,
2205         hs-safety-is-job-n, hs-hide-initial-comment-block,
2206         hs-inside-comment-p, hs-grok-mode-type, hs-find-block-beginning,
2207         hs-hide-level-recursive, hs-life-goes-on, hs-already-hidden-p,
2208         hs-c-like-adjust-block-beginning, hs-hide-all, hs-show-all,
2209         hs-hide-block, hs-show-block, hs-show-region, hs-hide-level,
2210         hs-mouse-toggle-hiding, hs-minor-mode): Rewrite.
2212         (hs-isearch-show): Renamed from `hs-isearch-open-invisible'.
2213         (hs-isearch-show-temporary): New funcs.
2215         (hs-show-block-at-point, java-hs-forward-sexp): Delete funcs.
2217         (hs-hide-all, hs-mouse-toggle-hiding): Don't autoload.
2219         When constructing menu, use `[(shift button2)]' notation.
2221 1999-12-25  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
2223         * jka-compr.el (jka-compr-info-file-magic-bytes): New function.
2224         (jka-compr-compression-info-list): Add new elt to each vector.
2225         (jka-compr-write-region): Don't compress the data if it is
2226         already compressed.
2228         * jka-compr.el (jka-compr-really-do-compress): New variable.
2229         (jka-compr-insert-file-contents): Set jka-compr-really-do-compress
2230         if visiting.
2231         (jka-compr-write-region): Set jka-compr-really-do-compress
2232         if visiting.  Test it when deciding to compress.
2234 1999-12-22  Gerd Moellmann  <gerd@gnu.org>
2236         * progmodes/sh-script.el (sh-mode): Don't call sh-set-shell
2237         with third argument t.
2239 1999-12-21  Christoph Wedler  <Christoph.Wedler@sap.com>
2241         * antlr-mode.el: Version 1.2 is released.
2242         (antlr): This package has a web page.
2244 1999-12-21  Christoph Wedler  <Christoph.Wedler@sap.com>
2246         * antlr-mode.el: Menu/keymap additions for commenting/uncommenting
2247         regions.  Suggested by Dale Davis <Dale_Davis@securify.com>.
2248         (antlr-mode-map): New binding [C-c C-c].
2249         (antlr-mode-menu): New entries.
2251 1999-12-21  Christoph Wedler  <Christoph.Wedler@sap.com>
2253         * antlr-mode.el: Respect Emacs conventions.
2254         ((require 'cl)): Only use during compilation.
2255         (antlr-language-for-option): New function to avoid using `find'.
2256         (antlr-mode): Use it.
2257         (antlr-with-syntax-table): Define new instead using XEmacs' one.
2258         (antlr-imenu-create-index-function): Change accordingly.
2259         (antlr-inside-rule-p): Ditto.
2260         (antlr-end-of-rule): Ditto.
2261         (antlr-end-of-body): Ditto.
2262         (antlr-beginning-of-rule): Ditto.
2263         (antlr-indent-line): Ditto.
2265 1999-11-21  Christoph Wedler  <Christoph.Wedler@sap.com>
2267         * antlr-mode.el: Really use `antlr-tab-offset-alist'.
2268         (antlr-set-tabs): Don't use hard-coded values.
2270         * antlr-mode.el: Minor navigation changes.  Not perfect, but this
2271         won't be possible without a huge time penalty.
2272         (antlr-skip-exception-part): Be more specific.
2273         (antlr-skip-file-prelude): Don't skip action prelude of next rule.
2274         Renamed from `antlr-skip-grammar-header'.
2275         (antlr-next-rule): Change accordingly.
2276         (antlr-end-of-body): Ditto.  Better error message.
2277         (antlr-beginning-of-body): Better error message.
2278         (antlr-imenu-create-index-function): Skip rule action prelude.
2280         * antlr-mode.el: Minor syntax highlighting changes.
2281         (antlr-font-lock-default-face): Deletia.
2282         (antlr-font-lock-tokendef-face): Changed color.
2283         (antlr-font-lock-tokenref-face): Changed color.
2284         (antlr-font-lock-literal-face): Changed color.
2285         (antlr-font-lock-additional-keywords): Minor changes.
2287 1999-12-20  Carsten Dominik  <cd@gnu.org>
2289         * progmodes/idlwave.el: New file.
2291         * progmodes/idlwave-rinfo.el: New file.
2293         * progmodes/idlwave-shell.el: New file.
2295         * progmodes/idlwave-toolbar.el: New file.
2297         * files.el (auto-mode-alist): idlwave-mode default for .pro files.
2299 1999-12-21  Gerd Moellmann  <gerd@gnu.org>
2301         * progmodes/cwarn.el: New file.
2303 1999-12-19  Gerd Moellmann  <gerd@gnu.org>
2305         * bindings.el (completion-ignored-extensions): Add .pdf.
2307 1999-12-19  Eli Zaretskii  <eliz@is.elta.co.il>
2309         * version.el: Put the version info into binary on MS-DOS as well.
2311 1999-12-19  Gerd Moellmann  <gerd@gnu.org>
2313         * emacs-lisp/debug.el (debugger-continue): Don't continue if
2314         debugger-may-continue is nil.
2316 1999-12-18  Dave Love  <fx@gnu.org>
2318         * emacs-lisp/cl-macs.el: Remove conditional definition of
2319         eval-when-compile.  Don't specify abs, expt, gethash,
2320         hash-table-count, hash-table-p as side-effect-free here.
2321         (cl-emacs-type): Don't declare.
2322         (cl-compile-time-init): Remove Emacs 18 compiler patch.
2323         (cl-parse-loop-clause): Remove compatibility code.
2325         * emacs-lisp/byte-opt.el: Don't put optimization info on `eql'.
2326         (side-effect-free-fns): Add gethash, hash-table-count.
2327         (side-effect-and-error-free-fns): Add hash-table-p.
2329         * emacs-lisp/cl.el: Remove Emacs 18 compatibility code.  Prepend
2330         `cl-' to autoload names for some hash functions.  Don't autoload
2331         eval-when-compile.  Don't provide mini-cl.
2332         (cl-emacs-type): Remove.
2333         (cl-map-extents): Remove compatibility code.
2335         * emacs-lisp/float.el: Bind free variables.
2337         * emacs-lisp/bytecomp.el (byte-compile-constp): Include keywords.
2339 1999-12-16  Gerd Moellmann  <gerd@gnu.org>
2341         * bindings.el (completion-ignored-extensions): Add .tfm.
2343 1999-12-16  Dave Love  <fx@gnu.org>
2345         * faces.el (set-face-attribute): Purecopy the attributes set.
2347         * custom.el (custom-declare-variable): Purecopy value.
2349         * emacs-lisp/bytecomp.el (byte-compile-bound-variables): Doc fix.
2350         (byte-extrude-byte-code-vectors): Use remprop.
2351         (byte-compile-lambda): Check that arg is a lambda.
2353 1999-11-16  Anders Lindgren  <AndersL@andersl.com>
2355         * font-lock.el: System for adding and removing keywords.
2356         Both local (previously added keyword) and global keywords
2357         can be removed.
2358         (font-lock-remove-keywords): New user-level function.
2359         (font-lock-update-removed-keyword-alist): New internal function.
2360         (font-lock-removed-keywords-alist): New variable.
2361         (font-lock-add-keywords): Updates `font-lock-removed-keywords-alist'.
2362         Empty `font-lock-keywords-alist' when `append' is `set' to avoid
2363         growing datastructures.
2364         (font-lock-set-defaults): Removes keywords stored in
2365         `font-lock-removed-keywords-alist' after local keywords added.
2367 1999-12-16  Anders Lindgren  <andersl@andersl.com>
2369         * font-lock.el (c-keywords, c++-keywords): Better "case" support for
2370         complex constant expressions, e.g. "case 1<<A_BIT_NO:".
2372         * font-lock.el (c-keywords): Only highlight preprocessor
2373         directives when spelled correctly.
2375         * font-lock.el (font-lock-match-c++-structor-declaration,
2376         c++-keywords): Fontify constructors and destructors with function
2377         face inside C++ class declarations.
2379 1999-12-16  Gerd Moellmann  <gerd@gnu.org>
2381         * progmodes/sh-script.el (sh-mode): If there is no #!-line, use
2382         the shell from sh-shell-file.
2384         * font-lock.el (java-keywords): Add Javadoc tags as of JDK 1.2.1.
2386 1999-12-16  Eli Zaretskii  <eliz@is.elta.co.il>
2388         * ls-lisp.el (ls-lisp-insert-directory): Print an explicit message
2389         if one of the files specified cannot be accessed by
2390         file-attributes.  Do not strip any leading directories from the
2391         file names, to behave more like `ls' does.
2393         * dired.el (dired-get-filename): Handle absolute file names.
2394         (dired-readin-insert): If argument is a cons, don't print
2395         "wildcard" on the ``total'' line.
2397 1999-12-15  Eli Zaretskii  <eliz@is.elta.co.il>
2399         * faces.el (face-read-integer, read-face-attribute)
2400         (color-defined-p, color-values): Allow color values unspecified-fg
2401         and unspecified-bg, handle them as unspecified.
2403 1999-12-15  Carsten Dominik  <dominik@astro.uva.nl>
2405         * textmodes/reftex.el: (reftex-compile-variables): respect new
2406         structure of `reftex-index-macro'
2407         (reftex-compile-variables): Use the changed structure of
2408         `reftex-label-alist'.
2410         * textmodes/reftex-vars.el (reftex-index-math-format,
2411         (reftex-toc-max-level): New option.
2412         reftex-index-phrases-search-whole-words,
2413         reftex-index-phrases-case-fold-search,
2414         reftex-index-phrases-skip-indexed-matches,
2415         reftex-index-phrases-wrap-long-lines,
2416         reftex-index-phrases-sort-prefers-entry,
2417         reftex-index-phrases-sort-in-blocks): New options.
2418         (reftex-index-macros): Option structure changed.
2419         (reftex-index-macros-builtin): Added `repeat' item to each entry.
2420         (reftex-label-alist): Additional item in each entry to specify if
2421         the environment should be listed in the TOC.
2422         (eval-when-compile (require 'cl)) added.
2424         * textmodes/reftex-index.el (reftex-index-selection-or-word): No
2425         longer deals with "repeat".
2426         (reftex-index): "repeat property in `reftex-index-macro-alist' is
2427         now used.
2428         (reftex-index-phrases-comment-regexp,
2429         reftex-index-phrases-macrodef-regexp,
2430         reftex-index-phrases-phrase-regexp1,
2431         reftex-index-phrases-phrase-regexp2,
2432         reftex-index-phrases-phrase-regexp12, reftex-index-phrases-help):
2433         New constants.
2434         (reftex-index-phrases-macro-data, reftex-index-phrases-files,
2435         reftex-index-phrases-font-lock-keywords,
2436         reftex-index-phrases-font-lock-defaults, reftex-index-phrases-map,
2437         reftex-index-phrases-restrict-file): New variables.
2438         (reftex-index-phrase-selection-or-word,
2439         reftex-index-visit-phrases-buffer,
2440         reftex-index-initialize-phrases-buffer,
2441         reftex-index-phrases-save-and-return, reftex-index-phrases-mode,
2442         reftex-index-next-phrase, reftex-index-this-phrase,
2443         reftex-index-all-phrases, reftex-index-region-phrases,
2444         reftex-index-phrases-parse-header,
2445         reftex-index-phrases-toggle-restricted, reftex-index-new-phrase,
2446         reftex-index-find-next-conflict-phrase, reftex-index-phrases-info,
2447         reftex-index-phrases-set-macro-key, reftex-index-sort-phrases,
2448         reftex-compare-phrase-lines, reftex-index-make-phrase-regexp,
2449         reftex-index-simplify-phrase, reftex-index-phrases-find-dup-re,
2450         reftex-index-make-replace-string,
2451         reftex-query-index-phrase-globally, reftex-query-index-phrase,
2452         reftex-index-phrase-match-is-indexed,
2453         reftex-index-phrases-fixup-line,
2454         reftex-index-phrases-replace-space,
2455         reftex-index-select-phrases-macro): New functions.
2456         (reftex-index-globalize, reftex-index-globally): functions removed
2457         (eval-when-compile (require 'cl)) added.
2459          * textmodes/reftex-toc.el (reftex-toc-mode): Create new indicator
2460          for max level.
2461          (reftex-toc-max-level-indicator): New variable.
2462          (reftex-toc-max-level): New command.
2463          (reftex-toc-map): New keybinding `t'.
2464          (reftex-toc-help): Constant updated.
2465          (eval-when-compile (require 'cl)) added.
2467          * textmodes/reftex-ref.el (reftex-offer-label-menu): Prefix to
2468          `t' command key can change `reftex-toc-max-level'
2469          (eval-when-compile (require 'cl)) added.
2471          * textmode/reftex-sel (reftex-insert-docstruct): Respect
2472          `reftex-toc-max-level'
2473          (eval-when-compile (require 'cl)) added.
2475          * textmodes/reftex-auc.el (eval-when-compile (require 'cl))
2476          added.
2478          * textmodes/reftex-vcr.el (eval-when-compile (require 'cl))
2479          added.
2481          * textmodes/reftex-cite.el (reftex-citep, reftex-citet): New
2482          commands.
2483          (reftex-citation, reftex-do-citation,
2484          reftex-figure-out-cite-format): Additional argument FORMAT-KEY to
2485          preselect a citation format.
2486          (eval-when-compile (require 'cl)) added.
2488          * textmodes/reftex-parse.el (reftex-context-substring): Optional
2489          parameter to-end
2490          (reftex-section-info): Deal with environment matches.
2491          (eval-when-compile (require 'cl)) added.
2493          * reftex-global.el (eval-when-compile (require 'cl)) added.
2495 1999-12-15  Kenichi Handa  <handa@etl.go.jp>
2497         The following changes are for the new composition mechanism.  We
2498         have deleted `composition' charset and composite characters,
2499         instead introduced a special text property `composition'.
2501         * composite.el: New file.
2503         * ps-mule.el: Define encode-composition-rule and find-composition
2504         for Emacs 20.4 and the earlier versions.
2505         (ps-mule-init-external-library): Just require a feature for
2506         external libraries.
2507         (ps-mule-prologue): Postscript code modified for new composition.
2508         (ps-mule-find-wrappoint): New arg COMPOSITION.
2509         (ps-mule-plot-string): Delete code for composite characaters.
2510         (ps-mule-plot-composition): New funcion.
2511         (ps-mule-prepare-font-for-components): New function.
2512         (ps-mule-plot-components): New function.
2513         (ps-mule-composition-prologue-generated): Renamed from
2514         ps-mule-cmpchar-prologue-generated.
2515         (ps-mule-composition-prologue): New named from
2516         ps-mule-cmpchar-prologue.  Modified for new composition.
2517         (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
2518         ps-mule-prepare-cmpchar-font): Deleted.
2519         (ps-mule-string-encoding): New arg NO-SETFONT.
2520         (ps-mule-bitmap-prologue): In Postscript code of BuildGlyphCommon,
2521         check Composing, not Cmpchar
2522         (ps-mule-initialize): Set ps-mule-composition-prologue-generated
2523         to nil.
2524         (ps-mule-begin-job): Check existence of new composition.
2526         * ps-print.el (ps-plot-region): Handle new composition.
2528         * simple.el (what-cursor-position): Show "(composed)" if the
2529         character is composed.
2531         * international/characters.el: Fix cateogries of Lao symbols.
2533         * international/fontset.el (vertical-centering-font-regexp): New
2534         variable.
2536         * international/mule.el (mule-version): Updated to 5.0 (AOI).
2537         (mule-version-date): Updated to 1999.12.7.
2538         (with-category-table): New macro.
2540         * international/mule-cmds.el (encode-coding-char): Don't check
2541         composite character.
2543         * international/mule-conf.el (iso-2022-7bit, iso-2022-7bit-ss2
2544         iso-2022-7bit-lock, iso-2022-7bit-lock-ss2, iso-2022-8bit-ss2,
2545         x-ctext): Give `composition' property t.
2547         * international/mule-util.el (set-nested-alist): Set BRANCHES (if
2548         non-nil) at the tail of ALIST.
2549         (compose-region, decompose-region, decompse-string,
2550         reference-point-alist, compose-chars): Moved to composite.el.
2551         (compose-chars-component, compose-chars-rule,
2552         decompose-composite-char): Deleted.
2554         * international/quail.el (quail-install-map): New optional arg
2555         NAME.
2556         (quail-get-translation): If DEF is a symbol but not a function,
2557         ignore it.
2558         (quail-start-translation): Put a key sequence undefined in the
2559         translation keymap in unread-command-events, not generated-events.
2560         Return parameterized event (compose-last-chars N) if the input
2561         characters should be composed.
2562         (quail-map-definition): If DEF is t, treat it as nil.
2563         (quail-delete-last-char): Delete the quail region.
2564         (quail-show-translations): Don't show list of translations if the
2565         quail package is deterministic.
2566         (quail-completion-max-depth): New variable.
2567         (quail-completion-1): Pay attention to the above variable.  Fix
2568         for the case that a translation is a function.
2569         (quail-map-from-table, quail-map-from-table-1,
2570         quail-map-from-table-2): New functions.
2571         (quail-lookup-map-and-concat): New function
2573         * language/devan-util.el: Mostly rewritten.
2575         * language/lao.el: Register lao-composition-function in
2576         composition-function-table.
2578         * language/lao-util.el: Mostly rewritten.
2580         * language/thai.el: Register thai-composition-function in
2581         composition-function-table.
2582         (thai-tis620): Delete `pre-write-conversion' property.
2584         * language/thai-util.el: (thai-category-table): Make it by
2585         make-category-table.
2586         (thai-composition-pattern): New variable.
2587         (thai-compose-region, thai-compose-string): Use
2588         with-category-table.
2589         (thai-post-read-conversion): Just call thai-compose-region.
2590         (thai-pre-write-conversion): Deleted.
2591         (thai-composition-function): New funciton.
2593         * language/tibet-util.el: Most functions rewritten.
2594         (tibetan-char-p): Renamed from tibetan-char-examin.
2595         (tibetan-composable-examin) (tibetan-complete-char-examin)
2596         (tibetan-vertical-stacking) (tibetan-composition): Deleted.
2597         (tibetan-add-components): New function.
2598         (tibetan-composition-function): New function.
2600         * language/tibetan.el: Register tibetan-composition-function in
2601         composition-function-table.
2602         (tibetan-composable-pattern): New variable.
2603         (tibetan-subjoined-transcription-alist): Change key "R" to "+R".
2604         (tibetan-precomposition-rule-alist): Move punctuations to
2605         tibetan-punctuation-transcription-alist and
2606         tibetan-obsolete-glyphs.
2607         (tibetan-punctuation-transcription-alist): New variable.
2608         (tibetan-obsolete-glyphs): New variable.
2609         (tibetan-regexp): Improve the initialization code.
2611         * textmodes/fill.el (fill-find-break-point): Delete codes for
2612         composite characters.
2613         (fill-region-as-paragraph): Likewise.
2615 1999-12-14  Gerd Moellmann  <gerd@gnu.org>
2617         * international/mule-cmds.el (default-input-method): Specify
2618         that it should be set after current-language-environment.
2620         * custom.el (custom-handle-keyword): Add :set-after.
2621         (custom-add-dependencies): New function.
2622         (custom-set-variables): Take dependencies between args into
2623         account.
2625         * battery.el (battery): Doc fix.
2627 1999-12-12  Gerd Moellmann  <gerd@gnu.org>
2629         * progmodes/cc-make.el: Removed.
2631 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2633         * Release of cc-mode 5.26
2635 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2637         * cc-cmds.el (c-forward-conditional): Handle an arbitrary
2638         target depth.  Optionally count #else lines as clause limits,
2639         as suggested by don provan <provan@lucent.com>.  #elif
2640         handling fixed.
2642         * cc-cmds.el (c-up-conditional-with-else, c-down-conditional)
2643         (c-down-conditional-with-else): New commands that uses the
2644         added functionality in `c-forward-conditional'.
2646 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2648         * cc-align.el (c-lineup-comment): Preserve the alignment with
2649         a comment on the previous line instead of preserving the
2650         comment-column.
2652 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2654         * Fixes to IDL mode after input from Eric Eide
2655         <eeide@cs.utah.edu>:
2656         * cc-engine.el (c-beginning-of-statement-1): Allow
2657         `c-conditional-key' to be nil, for the benefit of IDL mode.
2658         * cc-engine.el (c-guess-basic-syntax): Ditto.
2659         cc-langs.el (C-IDL-class-key): Fixed.  Don't match `class'
2660         but do match CORBA 2.3 `valuetype'.
2661         * cc-langs.el (c-IDL-access-key): New defconst.  Should be nil
2662         for IDL.
2663         * cc-langs.el (c-IDL-conditional-key): New defconst.  Should
2664         be nil for IDL.
2665         * cc-langs.el (c-IDL-comment-start-regexp): New defconst.
2666         Like C++.
2667         * cc-mode.el (idl-mode): Use new `c-IDL-*' defconsts.  Also,
2668         set `c-method-key' and `c-baseclass-key' to nil.
2670 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2672         * cc-menus.el (cc-imenu-c++-generic-expression): Match classes
2673         with nonhanging open braces.
2675 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2677         * cc-align.el: Added docstrings to all lineup functions.
2679         * cc-align.el (c-lineup-java-throws): Handle a hanging throws
2680         keyword.
2682         * cc-align.el (c-lineup-C-comments): Handle free form text
2683         comments.  Use c-comment-prefix-regexp and comment-start-skip
2684         instead of hardcoded regexps.
2686 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2688         * cc-cmds.el (c-beginning-of-defun, c-end-of-defun): Fixed eob
2689         behavior and return value as documented.
2691 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2693         * Changes for new style variable init system:
2694         * cc-langs.el (c-common-init): Dito.
2695         * cc-styles.el: c-offsets-alist moved to cc-vars.el since it's
2696         now customizable.
2697         * cc-vars.el: Style variables may now take a value
2698         'set-from-style to make them take their value from the style
2699         system. This value is now the default on all these variables.
2700         * cc-vars.el (c-valid-offset): New function to verify a
2701         syntactic symbol offset setting.
2702         * cc-vars.el (c-offsets-alist): Variable moved from
2703         cc-styles.el since it's now customizable in a similar way to
2704         the other style variables.
2705         * cc-vars.el (c-old-style-variable-behavior): New variable to
2706         revert to the old style init behavior.
2708         * cc-vars.el (c-file-style, c-file-offsets): Made always
2709         buffer local.
2711         * cc-menus.el (cc-imenu-c++-generic-expression): Don't match
2712         the throws clause that might follow the function prototype in
2713         C++.
2715 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2717         * cc-defs.el (c-beginning-of-macro): Fixed bug where point
2718         could move forward for macros that doesn't start in column 0.
2720 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2722         * cc-align.el (c-indent-multi-line-block,
2723         c-lineup-whitesmith-in-block): Two new lineup functions for
2724         use in whitesmith style.
2726         * cc-styles.el (c-style-alist): More fixes to whitesmith
2727         style.  It should now handle all different braces uniformly in
2728         both hanging and non-hanging cases.
2730 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2732         * cc-cmds.el (c-indent-exp): Use a marker to save point to
2733         make it stay in the same position relative to the surrounding
2734         text.
2736         * cc-cmds.el (c-fill-paragraph): Force the line comment prefix
2737         when adaptive-fill-mode doesn't manage to get it correct.
2739         * cc-menus.el (cc-imenu-java-generic-expression): Handle types
2740         with dotted notation, e.g. foo.bar.Gnu.
2742         * cc-mode.el (c-initialize-cc-mode): Wrap all function calls
2743         within unwind-protect (previously only some were wrapped so it
2744         would be possible to register mode initialization when full
2745         initialization did not finish).
2747         * cc-styles.el (c-style-alist): Corrected the brace placement
2748         in the whitesmith style.  Thanks to Sean Luke
2749         <seanl@cs.umd.edu>.  Also extended the bsd and whitesmith
2750         styles with consistent brace placement for all constructs.
2752 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2754         * cc-cmds.el (c-context-line-break): Continue C++ comments too
2755         when point is in the middle of them.
2757         * cc-cmds.el: Line breaking and paragraph filling code
2758         rewritten:
2759         (c-guess-fill-prefix): New function that uses various
2760         heuristics to guess the comment prefix.
2761         (c-fill-paragraph): Rewritten to use `c-guess-fill-prefix'.
2762         It now assumes adaptive filling is active to preserve the line
2763         prefix inside comments.
2764         (c-indent-new-comment-line): Replacement for the now
2765         obsolete `c-comment-line-break-function' that uses
2766         `c-guess-fill-prefix' when appropriate.  It now observes the
2767         setting of `comment-multi-line', which has effect in C-style
2768         block comments.
2770         * cc-cmds.el (c-context-line-break): New function intended to
2771         be put on RET.  It's essentially `newline-and-indent', but
2772         continues C block comments with the appropriate line prefix.
2774         * cc-cmds.el (c-do-auto-fill): New function put on
2775         `normal-auto-fill-function' to implement the
2776         `c-ignore-auto-fill' variable.
2778         * cc-cmds.el (c-beginning-of-statement): Use
2779         `c-comment-prefix-regexp' to avoid ending up inside the
2780         comment prefix.  Better handling of comment starters and
2781         enders. Catch comments better when traversing code.  Stop at
2782         preprocessor directives.
2784         * cc-defs.el (c-forward-comment): New subst to hide platform
2785         dependent quirks in `forward-comment'.
2787         * cc-engine.el (c-literal-limits): Added NOT-IN-DELIMITER
2788         argument.
2789         (c-literal-limits-fast): Implemented NEAR and NOT-IN-DELIMITER
2790         arguments. Activate this function by default when
2791         `parse-partial-sexp' supports it (currently Emacs 20.x).
2793         * cc-engine.el (c-guess-basic-syntax): Anchor the `c' syntax
2794         on the comment opener to make constants usable as lineup
2795         arguments.
2797         * cc-align.el (c-lineup-C-comments): Fixes to handle the
2798         changed anchor position in the `c' syntactic symbol.  Handle
2799         more than stars in the comment prefix; use the new variable
2800         `c-comment-prefix-regexp'.  Don't indent text not preceded by
2801         a comment prefix to the right of the comment opener if it's
2802         long.
2804         * cc-langs.el: Fixes to mode initialization for new line
2805         breaking and paragraph filling method.  Adaptive fill mode is
2806         now activated at startup instead of deactivated.  The
2807         variables used for adaptive filling and paragraph movement are
2808         also changed to incorporate the value of
2809         `c-comment-prefix-regexp'.  `substitute-key-definition' is
2810         used to override some functions in the global map instead of
2811         overriding their default bindings.
2813         * cc-mode.el (java-mode): Modify `paragraph-start' for the
2814         javadoc markup at mode init.
2816         * cc-mode.el (c-setup-filladapt): A new convenience function
2817         to configure Kyle E. Jones' Filladapt mode for CC Mode.  This
2818         function is intended to be used explicitly by the end user
2819         only.
2821         * cc-vars.el (c-comment-prefix-regexp): New variable used to
2822         recognize the comment fill prefix inside comments.
2823         (c-block-comment-prefix): New name for
2824         `c-comment-contiuation-stars', which is now obsolete.  It's
2825         generalized to handle any character sequence.
2826         (c-ignore-auto-fill): New variable used to selectively disable
2827         Auto Fill mode in specific contexts.
2829 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2831         * cc-cmds.el (c-comment-indent): Leave at least one space
2832         between the comment and the last nonblank character in the
2833         case where we look at the indentation of the comment on the
2834         previous line (case 4).
2836         * cc-engine.el (c-beginning-of-statement-1): Added ``' to the
2837         list of characters that may start a statement (it's a sort of
2838         prefix operator in Pike, and isn't used at all in any of the
2839         other languages).
2841 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2843         * cc-engine.el (c-guess-basic-syntax): Report brace list opens
2844         inside continued statements as statement-cont instead of
2845         brace-list-open.  The reason is that one normally adjusts
2846         brace-list-open for brace lists as top-level constructs, and
2847         brace lists inside statements is a completely different
2848         context.  Case 10B.2 changed.  Also changed (the somewhat
2849         esoteric) case 9A to cope with this.
2851 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2853         * cc-cmds.el (c-electric-brace): Added electric handling of
2854         the open brace for brace-elseif-brace.
2856 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2858         * cc-defs.el (c-with-syntax-table): New macro to easily switch
2859         syntax tables temporarily.
2861         * cc-engine.el (c-guess-basic-syntax): Handle template and
2862         member init argument lists split over several lines.  Case 5D
2863         changed.
2865         * cc-langs.el (c-Java-javadoc-paragraph-start): Added new tag
2866         @throws introduced in Javadoc 1.2.
2868         * cc-menus.el (cc-imenu-java-generic-expression): Applied
2869         patch from RMS to avoid infinite backtracking.
2871 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2873         * cc-align.el (c-lineup-arglist): Handle "arglists" surrounded
2874         by [ ].
2876 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2878         * cc-align.el (c-lineup-dont-change): Compensate properly for
2879         the column in langelem.
2881         * cc-engine.el (c-syntactic-information-on-region): New
2882         function to help debugging the syntactic analysis.
2884 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2886         * cc-align.el (c-lineup-template-args): Handle nested template
2887         arglists.
2889         * cc-langs.el (c++-template-syntax-table): New syntax table
2890         that makes `<' and `>' parenthesis characters, which is useful
2891         to switch to temporarily when analyzing template arglists.
2893         * cc-styles.el: Changed default alignment of labels in the
2894         java style to conform to the examples in the Java Language
2895         Specification.
2897         * cc-styles.el (c-offsets-alist): Use `c-lineup-template-args'
2898         by default.
2900 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2902         * cc-engine.el (c-guess-basic-syntax): Pike allows a comma
2903         immediately before the closing paren in an arglist, so don't
2904         check that in Pike mode.  Case 7A changed.
2906 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2908         * cc-cmds.el (c-indent-region): Fixed bug where comment-only
2909         lines were ignored under certain conditions.
2911 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2913         * cc-align.el (c-lineup-template-args): New function for
2914         aligning continued template argument lists.
2916         * cc-engine.el (c-guess-basic-syntax): Fix for member init
2917         lists containing function arglists split over several lines.
2918         Case 5D.1 changed.
2920         * cc-engine.el (c-guess-basic-syntax): Fixed bug where
2921         template-args-cont didn't get recognized when the first
2922         arglist opener line doesn't contain a template argument.  New
2923         case 5K.
2925 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2927         * cc-defs.el (c-point): Changed from subst to macro for
2928         efficiency.
2929         (c-beginning-of-defun-1, c-end-of-defun-1): New
2930         beginning-of-defun/end-of-defun wrappers separated from
2931         c-point.
2933         * cc-menus.el (imenu-generic-expression,
2934         imenu-case-fold-search, imenu-progress-message): Dummy
2935         definitions to avoid compiler warnings if imenu can't be
2936         loaded.
2937         * cc-menus.el (cc-imenu-init): New function called at mode
2938         init.
2939         * cc-mode.el (c-mode, c++-mode, objc-mode, java-mode): Moved
2940         imenu initializations to cc-imenu-init.
2942 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2944         * cc-engine.el (c-guess-basic-syntax): Slightly better check
2945         for lambda-intro-cont in Pike mode.  Case 6 changed.
2947         * cc-engine.el (c-looking-at-inexpr-block): Fixed bug where
2948         anything following "new Foo()" was considered an anonymous
2949         class body in Java mode.
2951 1999-12-12  Barry A. Warsaw  <bug-cc-mode@gnu.org>
2953         * cc-cmds.el (c-comment-line-break-function): When breaking in
2954         a string, don't insert a new line.
2956 1999-12-12  Barry A. Warsaw  <bug-cc-mode@gnu.org>
2958         * cc-engine.el (c-at-toplevel-p): New interface function which
2959         returns information useful to add-on authors.  It tells you
2960         whether you're at a toplevel statement or not.
2962 1999-12-12  Barry A. Warsaw  <bug-cc-mode@gnu.org>
2964         * cc-cmds.el (c-comment-line-break-function): It is possible
2965         that forward-line does not land us at the bol, say if we're on
2966         the last line in a file.  In that case, do a
2967         back-to-indentation instead of a forward-comment -1.
2969 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2971         * cc-engine.el (c-beginning-of-statement-1): Don't catch
2972         "default:" as normal label in case 4.
2974 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2976         * cc-engine.el (c-guess-basic-syntax): Use c-bitfield-key to
2977         recognize continued bitfield declarations.  Case 5D.1 changed.
2978         * cc-langs.el: New variable c-bitfield-key.
2979         * cc-mode.el: New variable c-bitfield-key.
2981 1999-12-12  Martin Stjernholm  <bug-cc-mode@gnu.org>
2983         * cc-engine.el (c-inside-bracelist-p): Tighter test for Java
2984         anonymous array expressions (i.e. "new Foo[] {.. bracelist
2985         ..}").
2987 1999-12-12  Dave Love  <fx@gnu.org>
2989         * mail/footnote.el: Require cl when compiling.  Don't autoload
2990         keymap and minor-mode-alist stuff.  Don't set zmacs-region-stays.
2991         (footnote-insert-text-marker, Footnote-insert-pointer-marker):
2992         Avoid `acons'.
2993         (footnote-mode-line-string, Footnote-add-footnote): Remove
2994         autoload cookie.
2996 1999-12-12  Richard Sharman  <rsharman@pobox.com>
2998         * sh-script.el: Fix for when font-lock mode is active.
2999         (sh-font-lock-unfontify-region-function): New function.
3001 1999-12-12  Eli Zaretskii  <eliz@is.elta.co.il>
3003         * menu-bar.el (menu-bar-edit-menu): Define the Spell submenu even
3004         if start-process is not bound, since Ispell now supports such
3005         platforms as well.
3007 1999-12-12  Gerd Moellmann  <gerd@gnu.org>
3009         * mail/rmailsum.el (rmail-summary-mode-map): Bind RET to
3010         rmail-summary-goto-msg.
3012         * files.el (after-find-file): Fix previous change.
3014 1999-12-11  Dave Love  <fx@gnu.org>
3016         * help.el (where-is): Use `commandp' as predicate for
3017         `completing-read'
3019 1999-12-10  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3021         * cus-edit.el (custom-save-delete): Delete all occurrences,
3022         leave point where the first occurrence was.
3023         (custom-save-faces): Insert a newline at the end of the comment.
3024         Avoid a double newline there.
3025         If final closeparen is at bol, put a space before it.
3026         (custom-save-variables): Likewise.
3027         (custom-file): Doc fix.
3029 1999-12-10  Gerd Moellmann  <gerd@gnu.org>
3031         * dos-w32.el (file-name-buffer-file-type-alist): Add `$' at end of
3032         regexp matching image and audio files.
3034 1999-12-09  Dave Love  <fx@gnu.org>
3036         * mail/footnote.el: New file.
3038 1999-12-09  Gerd Moellmann  <gerd@gnu.org>
3040         * files.el (after-find-file): Use auto-save-visited-file-name if
3041         set.
3043         * mail/feedmail.el (feedmail-find-eoh): Take
3044         feedmail-queue-alternative-mail-header-separator into account.
3046 1999-12-09  Stefan Monnier  <monnier@cs.yale.edu>
3048         * smerge-mode.el: New file.
3050         * font-lock.el (font-lock-multiline): New variable.
3051         (font-lock-add-keywords): Rename `major-mode' into `mode'.
3052         (font-lock-remove-keywords): Added a dummy `mode' argument for
3053         potential future support.
3054         (font-lock-fontify-anchored-keywords,
3055         (font-lock-fontify-keywords-region): Only handle multiline strings
3056         if necessary (avoids a pathological behavior in (f.ex) diff-mode).
3058 1999-12-08  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3060         * bookmark.el (bookmark-bmenu-mode-map): Bind RET like f.
3062         * dired-aux.el (dired-insert-subdir): Add autoload cookie.
3064 1999-12-07  Dave Love  <fx@gnu.org>
3066         * help.el (view-emacs-problems): New command, bound to C-h P.
3068         * menu-bar.el (menu-bar-manuals-menu): Add view-emacs-problems.
3070 1999-12-07  Stefan Monnier  <monnier@cs.yale.edu>
3072         * diff-mode.el (diff-mode-shared-map): Fset'd and doc change.
3073         (diff-minor-mode, diff-minor-mode-prefix, diff-minor-mode-map):
3074         New code to support the minor mode version.
3075         (diff-recenter): New function.
3076         (diff-next-hunk, diff-next-file): Use it.
3077         (diff-remembered-files-alist): New var.
3078         (diff-merge-strings): New function.
3079         (diff-find-file-name): Make it smarter and use the user's input more.
3080         (diff-mode): Cosmetic changes.
3082         * files.el (save-some-buffers): Turn EXITING into the more general
3083         PRED argument to allow specifying a subset of buffers.
3085         * simple.el (kill-region): Use the new `delete-and-extract-region'
3086         rather than the undo log (which is incorrect with *-change-functions).
3088         * font-lock.el (font-lock-default-fontify-region): Fix subtle
3089         off-by-one problem that could force re-fontifying the whole buffer.
3090         (font-lock-remove-keywords): New function.
3091         (font-lock-add-keywords): Use the new function to ensure idempotence.
3093 1999-12-06  Michael Kifer  <kifer@cs.sunysb.edu>
3095         * viper-cmd.el (viper-minibuffer-standard-hook,
3096         viper-minibuffer-real-start): Mew functions.
3097         (viper-read-string-with-history,viper-file-add-suffix,
3098         viper-trim-replace-chars-to-delete-if-necessary): Adapt to the
3099         change in the status of the minibuffer prompt.
3101 1999-12-06  Gerd Moellmann  <gerd@gnu.org>
3103         * comint.el (comint-redirect-results-list)
3104         (comint-redirect-results-list-from-process): Remove interactive
3105         spec.
3107 1999-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
3109         * info.el (info-node, info-menu-5, info-xref): Define colors for
3110         Info faces if the display supports them.
3112 1999-12-06  Eli Zaretskii  <eliz@is.elta.co.il>
3114         Changes for automatic remapping of X colors on terminal frames:
3116         * term/pc-win.el (msdos-setup-initial-frame): New function, run by
3117         term-setup-hook.  Call msdos-remember-default-colors and
3118         msdos-handle-reverse-video.
3119         (msdos-face-setup): Parts of code moved to
3120         msdos-setup-initial-frame.
3121         (msdos-handle-reverse-video): New function, modeled after
3122         x-handle-reverse-video.
3123         (make-msdos-frame): Don't use initial-frame-alist and
3124         default-frame-alist.  Call msdos-handle-reverse-video.
3125         (msdos-color-aliases): Remove.
3126         (msdos-color-translate, msdos-approximate-color): Remove.
3127         (msdos-color-values): Use 16-bit RGB values.  RGB values updated
3128         for better approximation of X colors.
3129         (msdos-face-setup): Call tty-color-clear.  Remove code that sets
3130         up tty-color-alist (it is now on startup.el).
3131         (x-display-color-p, x-color-defined-p, x-color-values,
3132         x-defined-colors, face-color-supported-p, face-color-gray-p):
3133         Remove.
3135         * facemenu.el (facemenu-read-color, list-colors-display): Use
3136         defined-colors for all frame types.
3137         (facemenu-color-equal): Use color-values for all frame types.
3139         * faces.el (read-face-attribute): For :foreground and :background
3140         attributes and frames on character terminals, translate the color
3141         to the closest supported one before looking it up in the list of
3142         valid values.
3143         (face-valid-attribute-values): Call defined-colors for all types
3144         of frames.
3145         (defined-colors, color-defined-p, color-values, display-color-p):
3146         New finctions.
3147         (x-defined-colors, x-color-defined-p, x-color-values,
3148         x-display-color-p): Aliases for the above.
3150         * startup.el (command-line): Register terminal colors for frame
3151         types other than x and w32, but only if the terminal supports
3152         colors.  Call tty-color-define instead of face-register-tty-color.
3154         * term/x-win.el (xw-defined-colors): Renamed from
3155         x-defined-colors.
3156         * term/w32-win.el (xw-defined-colors): Likewise.
3158         * term/tty-colors.el: New file.
3159         * loadup.el: Load term/tty-colors.
3161 1999-12-06  Dave Love  <fx@gnu.org>
3163         * ffap.el: Autoload the ffap alias directly.
3165 1999-12-06  Inge Frick  <inge@nada.kth.se>
3167         * dired-aux.el (dired-do-shell-command): Changed documentation.
3168         (dired-shell-stuff-it): A `?' in COMMAND has now the same
3169         meaning as `*'.
3171 1999-12-06  Gerd Moellmann  <gerd@gnu.org>
3173         * simple.el (insert-buffer): Doc fix.
3175         * apropos.el (apropos-mode): Add autoload cookie.
3177 1999-12-06  Sam Steingold  <sds@goems.com>
3179         * progmodes/etags.el (etags-tags-completion-table): Modified the
3180         regexp to allow for the CL symbols starting with `+*'.
3181         (tags-completion-table): Doc fix (it's an obarray, not an alist).
3182         (tags-completion-table, tags-recognize-empty-tags-table): Remove
3183         `function' quoting lambda.
3184         (tags-with-face): New macro.
3185         (list-tags, tags-apropos): Use it.
3186         (tags-apropos-additional-actions): New user option.
3187         (etags-tags-apropos-additional): Use it.
3188         (tags-apropos): Call etags-tags-apropos-additional.
3189         (tags-apropos-verbose): New user option.
3190         (etags-tags-apropos): Use it.
3191         (visit-tags-table-buffer, next-file): Use `unless'.
3192         (recognize-empty-tags-table): Renamed to
3193         tags-recognize-empty-tags-table.
3194         (complete-tag): Call tags-complete-tag bypassing try-completion.
3196 1999-12-06  Kenichi Handa  <handa@etl.go.jp>
3198         * international/mule.el (set-buffer-file-coding-system): Docstring
3199         modified.
3201 1999-12-05  Dirk Herrmann  <D.Herrmann@tu-bs.de>
3203         * textmodes/bibtex.el (bibtex-hs-forward-sexp): Added to support
3204         using the hideshow package.
3205         (hs-special-modes-alist): Added entry for bibtex to allow the use
3206         of the hideshow package.
3207         (bibtex-hide-entry-bodies): Deleted as hiding of entry bodies is
3208         not longer provided by bibtex.el directly.  Instead the hideshow
3209         package should be used.
3210         (bibtex-mode-map, bibtex-edit-menu, bibtex-mode): Delete
3211         references to bibtex-hide-entry-bodies.
3213 1999-12-05  Dirk Herrmann  <D.Herrmann@tu-bs.de>
3215         * textmodes/bibtex.el: Copyright notice is up to date.  Moved
3216         maintainer information closer to the beginning of the bibtex.el
3217         file.
3218         (bibtex-maintainer-salutation): New constant.
3219         (bibtex-version): New constant.
3220         (bibtex-submit-bug-report): Use bibtex-version and
3221         bibtex-maintainer-salutation.
3222         (bibtex-entry-field-alist): Made booktitle field optional for
3223         @inproceedings entries when crossreferenced.
3224         (bibtex-entry-field-alist): Added booktitle field to proceedings
3225         entry type (for cross referencing). Thanks to Wagner Toledo Correa
3226         for the suggestion.
3227         (bibtex-string-file-path): Fixed typo.
3229 1999-12-05  Carsten Dominik  <dominik@strw.leidenuniv.nl>
3231         * textmodes/bibtex.el (bibtex-mode-map): Reserved the key `C-c &'
3232         for reftex.el.
3233         (bibtex-edit-menu): Added `reftex-view-crossref-from-bibtex'
3234         to menu.
3236 1999-12-04  Dave Love  <fx@gnu.org>
3238         * delsel.el: Revert previous change -- region is significant to
3239         skeleton.
3241 1999-12-04  Michael Kifer  <kifer@cs.sunysb.edu>
3243         * viper-cmd.el (viper-change-state): Use
3244         viper-ESC-moves-cursor-back to decide whether to move the cursor
3245         back.
3247 1999-12-03  Kenichi Handa  <handa@mule.m17n.org>
3249         * international/mule-util.el (truncate-string-to-width): Docsting
3250         fixed.
3252 1999-12-02  Stefan Monnier  <monnier@cs.yale.edu>
3254         * emacs-lisp/lisp-mnt.el (lm-header-multiline): Fix spurious
3255         use of `cond'.
3256         (lm-with-file): Move all the find-file...kill-buffer stuff into
3257         this macro.  Make it use `find-file-noselect' and make it kill
3258         the buffer only if it wasn't already displayed somewhere.
3259         (lm-summary, lm-authors, lm-maintainer, lm-creation-date)
3260         (lm-last-modified-date, lm-version, lm-keywords, lm-adapted-by)
3261         (lm-commentary, lm-verify, lm-synopsis): Use lm-with-file.
3262         (lm-commentary): Fix to handle the case when the change log is
3263         at the end of the file.
3265 1999-12-02  Kenichi Handa  <handa@etl.go.jp>
3267         * international/mule.el (charsetp): Fix typo in docstring.
3269         * international/mule-diag.el (list-coding-categories): Fix typo;
3270         automatic -> autoload.
3272 1999-12-02  Gerd Moellmann  <gerd@gnu.org>
3274         * vc.el (vc-update-change-log): Look for rcs2log under
3275         exec-directory.
3277         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Change
3278         outline-regexp, add outline-level.
3279         (lisp-outline-level): New.
3281         * calendar/appt.el (appt-convert-time): Handle "12:MMam",
3282         remove extraneous string-match.
3284         * finder.el (finder-commentary): Activate Finder mode.
3286 1999-12-01  Anders Lindgren  <andersl@andersl.com>
3288         * autorevert.el (auto-revert-buffers): Auto-revert mode was turned
3289         off when reverting buffers that contained mode specifiers.
3290         `revert-buffer' is now called with non-nil PRESERVE-MODES
3291         argument.
3293 1999-12-01  Dave Love  <fx@gnu.org>
3295         * delsel.el: Grok skeleton-pair-insert-maybe.
3297 1999-11-30  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3299         * progmodes/cperl-mode.el (cperl-under-as-char):
3300         Use nil as default.
3302 1999-11-30  Gerd Moellmann  <gerd@gnu.org>
3304         * speedbar.el (toplevel): Remove compatibility code for Emacs
3305         versions without custom.el.
3307 1999-11-30  Dave Love  <fx@gnu.org>
3309         * progmodes/fortran.el (fortran-strip-sequence-nos): New command.
3311         * autoinsert.el: Minor doc fixes.
3312         (auto-insert): Return nil.
3314         * faces.el (set-face-documentation): Purecopy STRING.
3316 1999-11-29  Dave Love  <fx@gnu.org>
3318         * derived.el: Doc fixes, remove old backquote syntax.
3320         * cus-edit.el (custom-save-variables, custom-save-faces): Write a
3321         comment warning about editing.
3323         * help.el (help-mode-hook): Define.
3325 1999-11-29  Gerd Moellmann  <gerd@gnu.org>
3327         * emacs-lisp/edebug.el (edebug-make-enter-wrapper): Correct
3328         invalid translation of old-style backquote syntax to new syntax.
3330 1999-11-28  Eli Zaretskii  <eliz@is.elta.co.il>
3332         * Makefile (DONTCOMPILE): Add term/internal.el.
3334 1999-11-26  Dave Love  <fx@gnu.org>
3336         * comint.el: Fix last change.
3338         * emacs-lisp/advice.el: Fix last change.
3340 1999-11-26  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3342         * cus-edit.el (Custom-reset-standard): Doc fix.
3343         (custom-variable-reset-standard): Doc fix.
3344         (custom-face-reset-standard): Doc fix.
3345         (custom-face-menu): "Reset to Standard" => "Erase Customization".
3346         (custom-variable-menu): Likewise.
3347         (custom-reset-menu): Likewise.
3348         (custom-buffer-create-internal): Likewise.
3350 1999-11-26  Dave Love  <fx@gnu.org>
3352         * progmodes/make-mode.el (makefile-mode-hook): Customize.
3354         * font-lock.el: Doc fixes.
3356         * menu-bar.el (menu-bar-mode): Customize.
3358         * cus-start.el: Add use-dialog-box.
3360         * add-log.el (change-log-mode-hook): Customize.
3361         (add-log-current-defun): Use
3362         fortran-{beginning,end}-of-subprogram.
3364 1999-11-26  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3366         * emacs-lisp/advice.el: Many doc fixes.
3368         * comint.el (comint-preoutput-filter-functions): Doc fix.
3370 1999-11-26  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3372         * emacs-lisp/checkdoc.el (checkdoc-this-string-valid-engine):
3373         Improve messages for capitalization of arg names,
3374         for flag variables, for t and nil, for imperatives.
3375         Call them imperatives rather than infinitives sans "to".
3376         (checkdoc-common-verbs-wrong-voice): Add "moves".
3377         (checkdoc-message-text-engine): Improve messages for y-or-n-p.
3379         * emacs-lisp/checkdoc.el (checkdoc-file-comments-engine):
3380         Don't convert comments from 3-semicolon to 2-semicolon.
3381         That is a matter of style.
3382         (checkdoc-triple-semi-comment-check-flag): Variable deleted.
3383         (checkdoc-comments): Don't bind that variable.
3385 1999-11-26  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3387         * files.el (write-file-hooks): Doc fix.
3389 1999-11-26  Gerd Moellmann  <gerd@gnu.org>
3391         * progmodes/f90.el (f90-abbrev-start): Use `eq' instead of `='.
3393 1999-11-25  Dave Love  <fx@gnu.org>
3395         * hippie-exp.el: Require comint when compiling.
3396         (hippie-expand): Add :links.
3397         (hippie-expand-try-functions-list): Customize.
3399 1999-11-24  Michael Kifer  <kifer@cs.sunysb.edu>
3401         * viper*el: Replaced old-style backquotes.
3403         * ediff*el: Replaced old-style backquotes.
3405         * ediff-merge
3406         (ediff-looks-like-combined-merge,ediff-get-combined-region):
3407         Changed to support the new format for ediff-combination-pattern.
3409         * ediff-diff (ediff-set-fine-overlays-in-one-buffer):
3410         Changed to support the new format for ediff-combination-pattern.
3412 1999-11-24  Dave Love  <fx@gnu.org>
3414         * custom.el (custom-declare-group): Purecopy DOC.
3415         (custom-handle-keyword): Purecopy VALUE.
3416         (custom-add-link): Purecopy WIDGET.
3417         (custom-add-version): Purecopy VERSION.
3418         (custom-add-load): Purecopy LOAD.
3420         * cus-face.el (custom-declare-face): Purecopy DOC.
3422         * info.el:
3423         (Info-build-node-completions, Info-search, Info-follow-reference)
3424         (Info-complete-menu-item, Info-menu, Info-index, Info-get-token)
3425         (Info-find-emacs-command-nodes): Avoid properties on matched text
3426         which may appear in minibuffer.
3428 1999-11-24  Gerd Moellmann  <gerd@gnu.org>
3430         * locate.el (locate-with-filter): Doc fix.
3432 1999-11-24  Alex Schroeder  <alex@gnu.org>
3434         * sql.el (sql-find-sqli-buffer): New function.
3435         (sql-set-sqli-buffer-generally): New function.
3436         (sql-set-sqli-buffer): Better checking of new-buffer.
3437         (sql-copy-column): Add comma after INTO clause, too.
3439 1999-11-24  Alex Schroeder  <alex@gnu.org>
3441         * sql.el (sql-imenu-generic-expression): New, used to set
3442         imenu-generic-expression.
3444         * sql.el (sql-mode): Use ?_ and ?. instead of 95 and 46 when
3445         setting font-lock-defaults' SYNTAX-ALIST.  Set
3446         imenu-generic-expression, imenu-case-fold-search, and
3447         imenu-syntax-alist.
3449         * sql.el (sql-interactive-mode): Use ?_ and ?. instead of 95
3450         and 46 when setting font-lock-defaults' SYNTAX-ALIST.
3452 1999-11-23  Andrew Innes  <andrewi@gnu.org>
3454         * w32-win.el (w32-drag-n-drop): Load files in current window, if
3455         drop coords aren't over a specific window.
3457 1999-11-23  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
3459         * ps-print.el: Define mule funs without checking if mule package is
3460         loaded.
3461         (ps-print-version): New version number (5.0.1).
3462         (ps-header-dirpart): Now uses abbreviate-file-name.
3464 1999-11-23  Dave Love  <fx@gnu.org>
3466         * progmodes/fortran.el (fortran-comment-line-start): Renamed from
3467         comment-line-start.
3468         (fortran-comment-line-start-skip): Renamed from
3469         comment-line-start-skip.
3470         (fortran-mode-map): Use renamed functions.  Add manual and custom
3471         entries to menu.
3472         (fortran-mode-hook): Customize.
3473         (fortran-comment-indent-function): Renamed from
3474         fortran-comment-hook.
3475         (delete-horizontal-regexp): Function deleted.
3476         (fortran-electric-line-number): Simplified.
3477         (fortran-beginning-of-subprogram): Renamed from
3478         beginning-of-fortran-subprogram.
3479         (fortran-end-of-subprogram): Renamed from
3480         end-of-fortran-subprogram.
3481         (fortran-mark-subprogram): Renamed from mark-fortran-subprogram.
3482         (fortran-previous-statement, fortran-next-statement): Simplified.
3483         (fortran-blink-match): New function.
3484         (fortran-blink-matching-if, fortran-blink-matching-do): Use it.
3485         (fortran-indent-to-column): Don't use delete-horizontal-regexp.
3486         (fortran-find-comment-start-skip, fortran-is-in-string-p): Use
3487         line-end-position.
3488         (fortran-fill): No longer interactive.  Simplified.
3489         (fortran-break-line): Simplified.
3490         (fortran-analyze-file-format): Use char-after, not looking-at.
3492         * emacs-lisp/find-func.el (find-function-regexp): Use
3493         `define-minor-mode' after easy-menu change.
3495 1999-11-23  Gerd Moellmann  <gerd@gnu.org>
3497         * comint.el: Add redirection.from active comint buffers into
3498         another buffer.  Written by Peter Breton.
3500 1999-11-23  Stefan Monnier  <monnier@cs.yale.edu>
3502         * emacs-lisp/autoload.el (make-autoload): Recognize the new
3503         `define-minor-mode'.
3504         (define-minor-mode): Specify `doc-string-elt'.
3506         * emacs-lisp/easy-mmode.el: Changed maintainer.
3507         (easy-mmode-define-toggle): New BODY arg; Never append `-mode';
3508         Use defcustom for the hooks; Improve the auto-generated docstrings.
3509         (easy-mmode-define-minor-mode): Renamed `define-minor-mode'.
3510         (define-minor-mode): Add BODY arg; Only declare the keymap if
3511         provided; Improve the auto-generated docstrings.
3513 1999-11-22  Gerd Moellmann  <gerd@gnu.org>
3515         * textmodes/text-mode.el (text-mode): Construct paragraph-start so
3516         that the leading `^' is at the start.  This is necessary because
3517         paragraphs.el tries to remove anchors, but can find them only if
3518         they are the first character.
3520         * progmodes/antlr-mode.el: New file.
3522         * calendar/calendar.el: Fix autoload for
3523         calendar-absolute-from-astro.  Add autoload for
3524         calendar-print-astro-day-number.
3526 1999-11-21  Anders Lindgren  <andersl@andersl.com>
3528         * follow.el: Use modern backquote syntax.  Minor comment update.
3530 1999-11-21  Gerd Moellmann  <gerd@gnu.org>
3532         * simple.el (with-syntax-table): Don't switch buffers.
3534         * emacs-lisp/edebug.el, emacs-lisp/cust-print.el,
3535         progmodes/hideif.el: Use new backquote syntax.
3537 1999-11-21  Ken Manheimer  <klm@python.org>
3539         * icomplete.el (icomplete-completions): Use an explicit variable
3540         `icomplete-prospects-length', obviating the need to use an
3541         apparently faulty throw/catch arrangement.
3543 1999-11-21  Eli Zaretskii  <eliz@is.elta.co.il>
3545         * term/internal.el (IT-display-table-setup): Don't overstep
3546         character code 255.
3548 1999-11-20  Kenichi Handa  <handa@mule.m17n.org>
3550         * ps-mule.el (ps-mule-font-info-database-bdf): Default BDF font
3551         for the charset chinese-sisheng is 7bit encoding, not 8bit.
3553 1999-11-19  Stefan Monnier  <monnier@cs.yale.edu>
3555         * scroll-bar.el (scroll-bar-toolkit-scroll): Add handling of the
3556         `ratio' event for Xaw and Xaw3d(without arrows) scrollbars.
3558         * files.el (auto-mode-alist): Add patterns for diff-mode.
3560         * complete.el (PC-do-complete-and-exit): Use minibuffer-prompt-end
3561         to detect an empty prompt.
3563 1999-11-18  Dave Love  <fx@gnu.org>
3565         * simple.el (input-mode-8-bit): Fix the customization.
3567 1999-11-18  Gerd Moellmann  <gerd@gnu.org>
3569         * international/iso-acc.el (iso-languages): Add more
3570         characters for Portuguese.
3572         * speedbar.el: Clean up comment at the start of the file.
3573         Remove RCS id.
3575         * progmodes/compile.el (compilation-parse-errors): Use
3576         compilation-buffer-p instead of testing major-mode.
3578 1999-11-18  Dave Pearson  <davep@hagbard.demon.co.uk>
3580         * quickurl.el Added defcustom of quickurl-completion-ignore-case.
3581         (quickurl-ask): completion-ignore-case is set to the value of
3582         quickurl-completion-ignore-case for the duration of the call to
3583         completing-read.
3585 1999-11-18  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3587         * mail/rmailedit.el (rmail-cease-edit): Run rmail-mode-hook.
3589 1999-11-18  Kenichi Handa  <handa@etl.go.jp>
3591         * ps-vars.el: Renamed from ps-print-def.el.  Provide ps-vars
3592         instead of ps-print-def.
3594         * ps-print.el: Require ps-vars instead of ps-print-def.
3596         * ps-mule.el: Require ps-vars instead of ps-print-def.
3598 1999-11-17  Gerd Moellmann  <gerd@gnu.org>
3600         * simple.el (with-syntax-table): Save buffer explicitly instead of
3601         using save-excursion.
3603 1999-11-16  Gerd Moellmann  <gerd@gnu.org>
3605         * mail/supercite.el: New maintainer.
3607 1999-11-16  Reto Zimmermann  <reto@synopsys.com>
3609         * progmodes/vhdl-mode.el: Use new backquote syntax.
3611 1999-11-16  Gerd Moellmann  <gerd@gnu.org>
3613         * simple.el (with-syntax-table): New.
3615 1999-11-15  Sam Steingold  <sds@ksp.com>
3617         * dabbrev.el (dabbrev-filter-elements): Use the new backquote syntax.
3619 1999-02-22  Sam Steingold  <sds@goems.com>
3621         * goto-addr.el (goto-address-at-mouse,
3622         goto-address-find-address-at-point): Use compose-mail.
3623         (goto-address-mail-method): Removed variable.
3624         (goto-address-send-using-mh-e, goto-address-send-using-mhe,
3625         goto-address-send-using-mail): Removed functions.
3627 1998-11-03  Sam Steingold  <sds@goems.com>
3629         * simple.el (backward-delete-char-untabify):
3630         backward-delete-char-untabify-method can be `all' now - to delete
3631         hungrily including newlines.
3633 1999-11-15  Sam Steingold  <sds@ksp.com>
3635         * mail/rnews.el, mail/mh-utils.el: Use the new backquote syntax.
3637 1999-11-15  Dave Love  <fx@gnu.org>
3639         * cus-edit.el (customize-face, customize-face-other-window):
3640         Require match from completing-read.
3641         (custom-buffer-done-function): Default to custom-bury-buffer, not
3642         bury-buffer.
3644 1999-11-15  Gerd Moellmann  <gerd@gnu.org>
3646         * mail/rmail.el, iswitchb.el, hippie-exp.el,
3647         progmodes/cperl-mode.el: Use new backquote syntax.
3649 1998-09-14  Michael Ernst  <mernst@alum.mit.edu>
3651         * uniquify.el: Use new backquote syntax.
3653 1999-11-14  Markus Rost  <rost@ias.edu>
3655         * ispell.el (ispell-dictionary-alist): Fix type by adding koi8-r
3656         as in ispell-local-dictionary-alist.
3658 1999-11-14  Alex Schroeder  <alex@gnu.org>
3660         * ansi-color.el (ansi-color-apply): Updated regexps to include
3661         highlighted face.
3663 1999-01-14  Johan Vromans  <jvromans@squirrel.nl>
3665         * forms.el (forms--make-format-elt-using-text-properties):
3666         Treat `intangible' differently.
3668         * forms.el: Use new backquote syntax.
3670 1999-11-13  Gerd Moellmann  <gerd@gnu.org>
3672         * textmodes/scribe.el (scribe-mode): Doc-fix.
3674 1999-11-13  Peter Breton  <pbreton@ne.mediaone.net>
3676         * net-utils.el (run-network-program, net-utils-run-program): Use
3677         the new backquote syntax.
3678         (smbclient-program, smbclient-program-options)
3679         (smbclient-prompt-regexp, smbclient-font-lock-keywords): New
3680         variables
3681         (smbclient, smbclient-list-shares): New functions
3683 1999-11-12  Sam Steingold  <sds@ksp.com>
3685         * emulation/viper-init.el (viper-deflocalvar, viper-loop)
3686         (viper-buffer-live-p, viper-kbd-buf-alist, viper-kbd-buf-pair)
3687         (viper-kbd-buf-definition, viper-kbd-mode-alist)
3688         (viper-kbd-mode-pair, viper-kbd-mode-definition)
3689         (viper-kbd-global-pair, viper-kbd-global-definition):
3690         Use the new backquote syntax.
3692         * emulation/viper-cmd.el (viper-test-com-defun)
3693         (viper-prefix-arg-value, viper-prefix-arg-com):
3694         Use the new backquote syntax.
3696         * emacs-lisp/debug.el (debugger-env-macro):
3697         Use the new backquote syntax.
3699         * emacs-lisp/easymenu.el (easy-menu-make-symbol):
3700         Use the new backquote syntax.
3702         * calendar/calendar.el (calendar-remove-frame-by-deleting):
3703         New user variable.
3704         (calendar-hide-window): Use it.
3705         (increment-calendar-month, calendar-for-loop, calendar-sum):
3706         Use the new backquote syntax.
3708 1999-11-12  Andrew Innes  <andrewi@gnu.org>
3710         * select.el (x-set-selection): Call buffer-substring, not
3711         substring.  Also fix docstring
3713 1999-11-12  Peter Kleiweg  <kleiweg@let.rug.nl>
3715         * progmodes/ps-mode.el (ps-mode-submit-bug-report): Added list
3716         of customizable variables to bug report message. Added
3717         system-type to package name in bug report.
3719 1999-11-12  Gerd Moellmann  <gerd@gnu.org>
3721         * buff-menu.el (list-buffers-noselect): Use abbreviate-file-name
3722         to display file names.
3724 1999-11-11  Gerd Moellmann  <gerd@gnu.org>
3726         * mwheel.el: Fix copyright notice, don't require 'cl at run time.
3728         * isearch.el: Add lazy-highlighting feature.
3730 1999-11-10  Peter Kleiweg  <kleiweg@let.rug.nl>
3732         * progmodes/ps-mode.el (ps-mode-maintainer-address): New
3733         constant.
3734         (ps-mode-submit-bug-report): New function. Entry added to menu.
3736 1999-11-10  William M. Perry  <wmperry@aventail.com>
3738         * mwheel.el: New file to support the new style wheeled mice.
3740 1999-11-10  Gerd Moellmann  <gerd@gnu.org>
3742         * startup.el (initial-scratch-message): Add ";;" to the front of
3743         lines in the message.
3745         * files.el (file-local-copy): Remove optional BUFFER argument
3746         because that's not used by anything.
3748         * mail/mh-comp.el (mh-smail-batch): If TO is nil, use "" as
3749         to-address.
3751 1999-11-08  Markus Rost  <rost@ias.edu>
3753         * wid-edit.el (widget-button-click): Wrap with save-excursion
3754         to restore track-mouse in the correct buffer.
3756 1999-11-08  Gerd Moellmann  <gerd@gnu.org>
3758         * mail/mh-e.el: Changed maintainer to billcurtis@hotmail.com.
3760 1999-11-08  Peter Kleiweg  <kleiweg@let.rug.nl>
3762         * progmodes/ps-mode.el (ps-mode-print-function): Changed default
3763         lpr-command to "lp" for some system-types. (copied from lpr.el
3764         Emacs version 20.2.1).
3766 1999-11-04  Markus Rost  <rost@ias.edu>
3768         * simple.el (comment-region): Strip off white space at end of
3769         comment-start.
3771 1999-11-04  Gerd Moellmann  <gerd@gnu.org>
3773         * faces.el (secondary-selection): Fix wrong color name.
3775 1999-11-04  John Tobey  <jtobey@epsilondev.com>
3777         * gud.el (gud-perldb-massage-args): Handle the case "perl -e 0",
3778         the default when invoking perldb in a non-Perl buffer, and other
3779         cases involving -e or --.
3781 1999-11-04  Gerd Moellmann  <gerd@gnu.org>
3783         * simple.el (previous-matching-history-element)
3784         (next-history-element): Use delete-field instead of erase-field.
3786         * isearch.el (isearch-ring-advance-edit, isearch-complete-edit):
3787         Use delete-field instead of erase-field.
3789         * faces.el (secondary-selection): Change background to yellow.
3791         * complete.el (PC-do-completion): Use minibuffer-prompt-end to
3792         find the start of the text.  Use field-string to read the user
3793         input.
3795 1999-11-03  Gerd Moellmann  <gerd@gnu.org>
3797         * faces.el (make-face-bold, make-face-unbold, make-face-italic)
3798         (make-face-unitalic, make-face-bold-italic): Add NOERROR argument
3799         for compatibility with old face implementation.
3801         * isearch.el (isearch-complete-edit, isearch-ring-advance-edit):
3802         Use erase-field instead of erase-buffer.
3804         * frame.el (blink-cursor-mode, blink-cursor-end): Use
3805         internal-show-cursor with new interface.
3806         (blink-cursor-timer-function): New.
3807         (blink-cursor-start): Use blink-cursor-timer-function.
3809 1999-11-03  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
3811         * calendar.el (redraw-calendar): Move to nearest date before
3812         redrawing.
3814         * diary-lib.el (simple-diary-display): Reset modeline even if
3815         there are no diary entries since the diary buffer may be displayed.
3817 1999-11-03  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3819         * emacs-lisp/debug.el (debug): If noninteractive, display the
3820         backtrace using `message', then exit Emacs.
3821         (debugger-batch-max-lines): New variable.
3822         (debugger-setup-buffer): New subroutine, broken out of `debug'.
3823         Change the messages put at the start, to say that the debugger
3824         was entered.
3826 1999-11-02  Sam Steingold  <sds@ksp.com>
3828         * progmodes/cmacexp.el (c-macro-preprocessor): Find the Solaris cpp.
3830 1999-11-01  John Tobey  <jtobey@epsilondev.com>
3832         * gud.el: (gud-perldb-massage-args): Massage correctly in the
3833         presence of perl switches other than "-e".
3835 1999-11-01  Markus Rost  <rost@ias.edu>
3837         * dired-x.el (dired-smart-shell-command): Use
3838         shell-command-history as in shell-command.
3840 1999-11-01  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3842         * userlock.el (ask-user-about-lock): Doc fix.
3844         * frame.el: Doc fixes.
3846 1999-11-01  Gerd Moellmann  <gerd@gnu.org>
3848         * frame.el (blink-cursor-mode): Call internal-show-cursor instead
3849         of show-cursor.
3850         (blink-cursor-start, blink-cursor-end): Ditto.
3852         * textmodes/tex-mode.el (tex-default-mode): Changed to latex-mode.
3854 1999-11-01  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3856         * window.el (walk-windows): If ALL-FRAMES is a frame,
3857         start on that frame.  Use save-selected-window.
3859 1999-11-01  Gerd Moellmann  <gerd@gnu.org>
3861         * simple.el (end-of-buffer): Use window-end to find the window end
3862         instead of vertical-motion because this handles variable-height
3863         lines correctly.
3865 1999-11-01  Michael Kifer  <kifer@cs.sunysb.edu>
3867         * ediff.el: Version change.
3869         * ediff-util.el (ediff-cleanup-mess): Fixed the case of dead windows.
3870         make sure you are in a good frame before deleting other
3871         windows.
3872         (ediff-file-checked-in-p): Don't consider CVS
3873         files checked in.
3874         (ediff-make-temp-file,ediff-make-empty-tmp-file):  Make sure you
3875         are writing to a newly created empty file.
3877         * ediff-mult.el (ediff-show-session-group-hook): New default.
3879         * ediff-vers.el (ediff-pcl-cvs-view-revision):
3880         First cd to the file directory. reportedly works
3881         better with remote files.
3883         * ediff-vers.el (ediff-pcl-cvs-internal, ediff-pcl-cvs-merge-internal):
3884         Use file-name-nondirectory when passing files to CVS.
3886         * ediff-diff.el (ediff-cmp-options): New variable.
3887         (ediff-same-file-contents): Use ediff-cmp-options.
3889         * ediff-ptch.el (ediff-prompt-for-patch-buffer,
3890         ediff-get-patch-buffer): Use current buffer if it appears to be a
3891         patch.
3893         * viper-keym.el: Fixed calls to viper-ex, change key C-c g to C-c
3894         C-g
3896         * viper-util.el (viper-nontrivial-find-file-function): Deleted.
3897         (viper-glob-unix-files, viper-glob-mswindows-files): New functions.
3898         (viper-save-cursor-color,viper-restore-cursor-color):
3899         Improved cursor color handling.
3900         (viper-get-saved-cursor-color-in-replace-mode,
3901         viper-get-saved-cursor-color-in-insert-mode): New functions for
3902         better cursor color handling.
3904         * viper-ex.el (ex-read,ex-edit):
3905         Fixes for correct interpretation of #,%.
3906         (viper-ex): Now works correctly when called from other functions.
3907         (viper-glob-function): New variable.
3908         (viper-ex): Save excursion before doing :global.
3910         * viper-mous.el (viper-counting-clicks-p): Bug fixes.
3912         * viper-cmd.el (viper-post-command-sentinel,
3913         viper-insert-state-post-command-sentinel,
3914         viper-insert-state-pre-command-sentinel): Takes better care of
3915          cursor colors.
3917         * viper.el: Version change.
3919 1999-10-31  Rajesh Vaidheeswarran  <rv@dsmit.com>
3921         * whitespace.el (whitespace-update-modeline): Bugfix to ensure
3922         that the modeline display was updated *only* when
3923         `whitespace-display-in-modeline' was set, not otherwise.
3925 1999-10-30  Gerd Moellmann  <gerd@gnu.org>
3927         * textmodes/sgml-mode.el (sgml-char-names): Change "half" to
3928         "frac12".
3930         * emacs-lisp/advice.el (ad-activate-on): Make it an alias for
3931         ad-activate.
3933 1999-10-30  Rajesh Vaidheeswarran  <rv@dsmit.com>
3935         * whitespace.el: Test for existence of `defcustom' and `defgroup'
3936         using fboundp instead of assuming that these are not present in
3937         particular flavors of emacs.
3938         (whitespace-version): Update to 2.8
3939         (whitespace-display-in-modeline): Add custom variable to control
3940         displaying the whitespace errors on the modeline based on
3941         suggestion from <klaus.berndl@sdm.de>
3942         (whitespace-buffer): Now returns `t' if unclean and `nil' if
3943         clean, to enable using as a hook function, as suggested by Puneet
3944         Goel <puneet@computer.org>
3945         (whitespace-buffer): Fix a subtle bug that cleaned up only if
3946         quiet was not set, even with whitespace-auto-cleanup set.
3947         (whitespace-mode-line): Now uses less modeline real estate and
3948         shows whitespaces as W:<x>!<y> where <x> is any type of whitespace
3949         which is present in the file, and <y> is any type of whitespace
3950         whose check has been suppressed by setting
3951         `whitespace-check-<whitespace-type>' to nil.
3952         (whitespace-unchecked-whitespaces): New function to return the
3953         list of whitespaces for whom checks have been suppressed.
3954         (whitespace-display-unchecked-whitespaces): Renamed to
3955         `whitespace-update-modeline' to reflect its functionality.
3957 1999-10-30  Gerd Moellmann  <gerd@gnu.org>
3959         * progmodes/compile.el (compilation-error-regexp-alist):
3960         Undo previous change.
3962 1999-10-28  Dave Love  <fx@gnu.org>
3964         * help.el (help-follow): Make arg optional again and really
3965         default to point.
3967 1999-10-28  Gerd Moellmann  <gerd@gnu.org>
3969         * paths.el (rmail-file-name): Make it an option.
3971         * progmodes/ada-mode.el, progmodes/ada-prj.el,
3972         progmodes/ada-stmt.el, progmodes/ada-xref.el: Doc-string and
3973         comment fixes.
3975         * progmodes/compile.el (compilation-error-regexp-alist): Recognize
3976         MIPS Pro 7.3 compiler error message syntax.
3978 1999-10-27  Dave Love  <fx@gnu.org>
3980         * progmodes/compile.el: Checkdoc-inspired fixes.
3982 1999-10-27  Gerd Moellmann  <gerd@gnu.org>
3984         * lpr.el (print-buffer): Doc-string fix.
3986 1999-10-27  Dave Love  <fx@gnu.org>
3988         * emacs-lisp/advice.el: Doc fixes.
3989         (ad-lemacs-p): Removed.
3990         (advice): Add :link to defgroup.
3992 1999-10-27  Kenichi Handa  <handa@etl.go.jp>
3994         * ange-ftp.el (ange-ftp-insert-file-contents): Don't change
3995         last-coding-system-used by the call of ange-ftp-set-ascii-mode.
3997 1999-10-24  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
3999         * window.el (walk-windows): If ALL-FRAMES is a frame,
4000         start on that frame.  Use save-selected-window.
4002 1999-10-27  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4004         * emacs-lisp/advice.el (ad-activate-internal): Renamed from
4005         ad-activate.  All callers changed, including those in data.c.
4006         (ad-activate-internal-off): Renamed from ad-activate-off.
4007         All uses changed.
4008         (ad-activate): Renamed from ad-activate-on.  All uses changed.
4009         (ad-start-advice, ad-stop-advice, ad-recover-normality):
4010         Alter the definition of ad-activate-internal, not ad-activate.
4012 1999-10-26  Gerd Moellmann  <gerd@gnu.org>
4014         * startup.el (command-line-1): Add support for command line
4015         arguments `file' and `execute'.  Fix handling of `visit'.
4017 1999-10-26  Kenichi Handa  <handa@etl.go.jp>
4019         * international/mule-cmds.el (read-input-method-name): Handle the
4020         case that the arg DEFAULT is symbol.
4022         * international/mule-diag.el (mule-diag): Handle the case that
4023         default-input-method is symbol.
4025 1999-10-26  Gerd Moellmann  <gerd@gnu.org>
4027         * textmodes/tildify.el: New file.
4029 1999-10-25  Sam Steingold  <sds@ksp.com>
4031         * Makefile (compile-files): Fixed the "tr" strings.
4032         (EMACS): Set to ../src/emacs.
4034 1999-10-25  Gerd Moellmann  <gerd@gnu.org>
4036         * info.el (Info-build-node-completions): Add '("*") to the
4037         completion list.
4039 1999-10-25  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4041         * frame.el (auto-raise-mode): When enabling the mode,
4042         immediately raise the selected frame.
4044         * indent.el (indent-region): Doc fix.
4046         * comint.el (comint-output-filter): Make the Comint buffer current
4047         for the comint-preoutput-filter-functions.
4049         * mail/reporter.el: Doc fix.
4051 1999-10-24  Stephen Eglen  <stephen@gnu.org>
4053         * progmodes/octave-mod.el (octave-auto-indent): Remove :version so
4054         that Octave lisp files can also run under XEmacs 20.
4055         (require 'custom) added so that files can run under Emacs 19.34.
4057         * iswitchb.el (iswitchb-default-keybindings): No need to use
4058         read-kbd-macro in keybindings.
4060 1999-10-23  Dave Love  <fx@gnu.org>
4062         * elide-head.el: New file.
4064 1999-10-23  Gerd Moellmann  <gerd@gnu.org>
4066         * Makefile (compile-files, backup-compiled-files): New targets.
4067         (bootstrap, bootstrap-clean): Ditto.
4069 1999-10-22  Paul Eggert  <eggert@twinsun.com>
4071         * international/mule-cmds.c (locale-language-names):
4072         Use Latin-1 (not Latin-3) for Afrikaans, Galician.
4073         Use Latin-5 (not Cyrillic-ISO) for Byelorussian, Bulgarian,
4074         Macedonian, Russian, Ukrainian, Serbian (Cyrillic alphabet).
4075         Use Latin-8 for Welsh.
4076         Use Latin-1 for English if "en" is explicitly specified.
4077         Use Latin-1 for Scots Gaelic, Tagalog.
4078         Use Latin-1 (not Latin-4) for Greenlandic.
4079         Use Latin-1 (not Latin-2) for Albanian.
4080         (locale-preferred-coding-systems, locale-language-names):
4081         Remove generic ISO 8859 locales; locale-charset-language-names now
4082         does this.
4083         (locale-charset-language-names): New variable.
4084         (set-locale-environment): Use language name specified by
4085         locale-charset-language-names if its charsets disagree with the
4086         language name specified by locale-language-names.
4088 1999-10-22  Dave Love  <fx@gnu.org>
4090         * make-mode.el: Minor doc fixes.
4092         * latin-9.el: Avoid non-ASCII characters to prevent loadup failure.
4094 1999-10-21  Dave Love  <fx@gnu.org>
4096         * loadup.el: Add latin-8, latin-9.
4098 1999-10-20  Paul Eggert  <eggert@twinsun.com>
4100         * disp-table.el (standard-display-european): Remove undocumented
4101         arg AUTO; no longer used by startup.el.  Do not attempt to treat
4102         all non-English language environments as coding system names.
4103         Instead, use the downcased language environment name as a coding
4104         system name if it is one; otherwise, use latin-1.
4106 1999-10-20  Gerd Moellmann  <gerd@gnu.org>
4108         * dired.el (dired-move-to-filename-regexp): Fix long comment lines
4109         that were split so that part of the comment appeared as Lisp code.
4111 1999-10-20  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
4113         * ps-bdf.el: Doc fix.
4115         * ps-print-def.el: New file: common definitions for all parts of
4116         ps-print.
4117         (ps-multibyte-buffer): Moved from ps-mule.
4119         * ps-mule.el: File dependence fix.
4120         (ps-multibyte-buffer): Moved to ps-print-def.
4122         * ps-print.el: Doc fix, better customization.
4123         (ps-print-region-function, ps-number-of-columns, ps-spool-tumble)
4124         (ps-print-color-p, ps-printing-region-p, ps-n-up-database)
4125         (ps-end-file): Doc fix.
4126         (ps-setup, ps-begin-file): Fun fix.
4127         (postscript): New group.
4128         (ps-zebra-gray, ps-banner-page-when-duplexing): New vars.
4129         (ps-print-prologue-1): Adjust PostScript programming.
4130         (ps-print): Adjust group hierarchy.
4131         (ps-print-n-up, ps-print-zebra, ps-print-background,
4132         ps-print-printer)
4133         (ps-print-page): New subgroups.
4134         (ps-print-prologue-header, ps-printer-name, ps-lpr-command)
4135         (ps-lpr-switches, ps-page-dimensions-database, ps-paper-type)
4136         (ps-landscape-mode, ps-print-control-characters, ps-n-up-printing)
4137         (ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling, ps-zebra-stripes)
4138         (ps-zebra-stripe-height, ps-print-background-image)
4139         (ps-print-background-text, ps-spool-config): Adjust customization.
4140         (dos-ps-printer): Definition eliminated.
4142 1999-10-20  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
4144         * ps-mule.el: Doc fix, define functions properly if mule package is
4145         loaded or not.
4146         (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Define properly if
4147         mule package is loaded or not.
4149         * ps-print.el: Doc fix, n-up printing.
4150         (ps-print-version): New version number (5.0).
4151         (ps-page-dimensions-database): Added document media.
4152         (ps-n-up-printing, ps-n-up-margin, ps-n-up-border-p, ps-n-up-filling)
4153         (ps-page-order, ps-printing-region-p): New vars.
4154         (ps-n-up-printing, ps-n-up-filling, ps-header-sheet, ps-end-job): New
4155         funs.
4156         (ps-page-dimensions-get-media, ps-n-up-landscape, ps-n-up-lines)
4157         (ps-n-up-columns, ps-n-up-missing, ps-n-up-xcolumn, ps-n-up-ycolumn)
4158         (ps-n-up-xline, ps-n-up-yline, ps-n-up-repeat, ps-n-up-end)
4159         (ps-n-up-xstart, ps-n-up-ystart): New macros.
4160         (ps-print-begin-sheet-hook): New hook.
4161         (ps-boundingbox-re, ps-n-up-database, ps-n-up-filling-database): New
4162         const.
4163         (ps-setup, ps-begin-file, ps-get-buffer-name, ps-begin-job)
4164         (ps-end-file, ps-dummy-page, ps-generate): Fix funs.
4165         (ps-print-prologue-1): Adjust PostScript programming for n-up printing.
4166         (ps-count-lines): Changed to defun.
4167         (ps-header-page): Changed to defsubst, fix fun.
4168         (ps-printing-region): Doc fix, adjust programming code.
4169         (ps-output-boolean, ps-background-pages, ps-background-text)
4170         (ps-background-image, ps-background, ps-get-boundingbox): Adjust
4171         programming code.
4173 1999-10-20  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
4175         * ps-print.el: Doc fix, duplex and setpagedevice configuration.
4176         (ps-print-version): New version number (4.2).
4177         (ps-spool-config, ps-spool-tumble): New vars.
4178         (ps-print-prologue-1): Changed to defconst, adjust PostScript
4179         programming, new PostScript procedure to handle errors.
4180         (ps-print-prologue-2): Changed to defconst.
4181         (ps-print-duplex-feature): New const: duplex and tumble setting.
4182         (ps-setup, ps-begin-file): Fix funs.
4183         (ps-boolean-capitalized): New fun.
4185 1999-10-19  Stefan Monnier  <monnier@cs.yale.edu>
4187         * Makefile (dontcompilefiles): Obsoleted.
4188         (DONTCOMPILE): Added emacs-lisp/cl-specs.el.
4189         (EL): Unused.
4190         (temacs): Removed (unused).
4191         (cus-load.el, finder-inf.el, loaddefs.el): New targets to build a dummy
4192         version of the file (necessary for the update to work properly).
4193         (autoloads): Force the use of `pwd`/loaddefs.el.
4194         (updates); Redefined in terms of other targets to reduce redundancy.
4195         (.el.elc): New default rule, just in case you want it.
4196         (compile): Use a single invocation of Emacs.
4197         (bootstrap-compile); Unneeded.
4198         (autoloads-with-other-emacs): Unneeded now that autoloads is fixed.
4200 1999-10-19  Dave Love  <fx@gnu.org>
4202         * emacs-lisp/eval-reg.el: Removed -- not now needed by edebug.
4204 1999-10-19  Sam Steingold  <sds@ksp.com>
4206         * map-ynp.el (map-y-or-n-p): Remove extraneous `not' to
4207         comply with the comment.
4209 1999-10-19  Gerd Moellmann  <gerd@gnu.org>
4211         * autorevert.el (auto-revert-mode): Make auto-revert-mode
4212         permanent-local.
4214 1999-10-19  Peter Kleiweg  <kleiweg@let.rug.nl>
4216         * progmodes/ps-mode.el (ps-mode-print-function): Fix default
4217         value: \"lpr\" changed to "lpr"
4218         (ps-mode-version): New constant
4219         (ps-mode-show-version): New function, added key in ps-mode-map
4220         (ps-run-messages): Removed
4221         (ps-run-font-lock-keywords-2): New defcustom variable replacing
4222         ps-run-messages. These keywords now include the value of
4223         ps-run-prompt, making its fontification customizable.
4224         (ps-run-init): Removed \\n from docstring, it is now added when
4225         the value is used
4226         (ps-run-font-lock-keywords-1): Added checking for initial ^ in
4227         ps-run-prompt
4228         (ps-mode): Added ps-run-font-lock-keywords-2 to list of
4229         customizable variables in doc-string (its equivalent
4230         ps-run-messages was missing in previous version of the doc-string)
4231         (ps-run-mode): Simplified assignment to font-lock-defaults, using
4232         symbols only
4234 1999-10-19  Alex Schroeder  <alex@gnu.org>
4236         * ansi-color.el: Complete rewrite.
4238 1999-10-19  Paul Eggert  <eggert@twinsun.com>
4240         Fix bootstrapping problems.
4241         Use the system locale to specify Emacs locale defaults.
4243         * international/mule-cmds.el (global-map):
4244         Do not use backquote, because that makes a bootstrapping
4245         problem if you need to recompile all Lisp files using interpreted code.
4246         * international/mule.el (charset-id, charset-bytes,
4247         charset-dimension, charset-chars, charset-width,
4248         charset-direction, charset-iso-final-char,
4249         charset-iso-graphic-plane, charset-reverse-charset,
4250         charset-short-name, charset-long-name, charset-description,
4251         charset-plist): Likewise.
4252         * subr.el (save-match-data): Likewise.
4254         * international/mule-cmds.el
4255         (set-display-table-and-terminal-coding-system): New function,
4256         containing code migrated out of set-language-environment.
4257         (set-language-environment, set-locale-environment): Use it.
4258         (locale-translation-file-name): Moved here from startup.el.
4259         (locale-language-names, locale-preferred-coding-systems):
4260         New vars.
4261         (locale-name-match, set-locale-environment): New functions.
4263         * language/japan-util.el (setup-japanese-environment-internal):
4264         Prefer japanese-iso-8bit if the system-type is usg-unix-v.
4266         * startup.el (iso-8859-n-locale-regexp): Remove.
4267         (locale-translation-file-name): Move to mule-cmds.el.
4268         (command-line): Move locale-stuff into set-locale-environment.
4270 1999-10-18  Dave Love  <fx@gnu.org>
4272         * abbrev.el (add-abbrev, inverse-add-abbrev)
4273         (expand-region-abbrevs): Remove properties from buffer text.
4275 1999-10-17  Gerd Moellmann  <gerd@gnu.org>
4277         * iswitchb.el (iswitchb-exhibit): Extract user-input only
4278         from the mini-buffer, without the prompt.
4280         * simple.el (minibuffer-prompt-end): Return the position
4281         after the prompt, not the position of that last character
4282         of the prompt.
4284 1999-10-17  Miles Bader  <miles@gnu.org>
4286         * simple.el: Doc fixes.
4288 1999-10-17  Miles Bader  <miles@gnu.org>
4290         * simple.el (previous-matching-history-element, next-history-element):
4291         Change to work correctly even if the point is in the prompt.
4292         (choose-completion-string): Likewise.
4293         (minibuffer-prompt-width): New function (compatibility with old subr).
4295         * textmodes/paragraphs.el (forward-sentence, forward-paragraph):
4296         When constraining the final position to the current field,
4297         don't use the ONLY-IN-LINE mode of constrain-to-field.
4299 1999-10-17  Miles Bader  <miles@gnu.org>
4301         * simple.el (line-move): Supply new ESCAPE-FROM-EDGE argument to
4302         constrain-to-field.
4303         * textmodes/paragraphs.el (forward-sentence): Likewise.
4305 1999-10-17  Miles Bader  <miles@gnu.org>
4307         * simple.el (line-move): Use constrain-to-field to avoid
4308         moving into a prompt.
4309         (previous-complete-history-element): Clarify doc string.
4310         (next-complete-history-element): Likewise.
4311         Use field-beginning instead of point-min.
4312         (next-matching-history-element): Use field-beginning and
4313         erase-field instead of point-min and erase-buffer.
4314         * textmodes/paragraphs.el
4315         (forward-paragraph, forward-sentence): Likewise.
4316         (backward-kill-paragraph, backward-kill-sentence): Remove code to
4317         constrain the kill to an field, as the movement commands now
4318         do this.
4320 1999-10-17  Miles Bader  <miles@gnu.org>
4322         * simple.el (previous-matching-history-element): Get the
4323         minibuffer input with field-string instead of buffer-string.
4324         (choose-completion-string): Likewise.
4325         (next-history-element): Likewise.
4326         Erase the minibuffer input with erase-field, not erase-buffer.
4327         Use field-beginning to find the beginning of the input.
4328         * textmodes/paragraphs.el (backward-kill-sentence):
4329         Remove minibuffer-prompt hack.
4330         Constrain to any input field.
4332 1999-10-17  Sam Steingold  <sds@ksp.com>
4334         * bindings.el (completion-ignored-extensions): Added ".sparcf"
4335         for CMUCL on sparc and ".ufsl" for LispWorks.
4336         (bound-and-true-p): Bugfix: free variable `v'.
4338 1999-10-16  Dave Love  <d.love@dl.ac.uk>
4340         * emacs-lisp/edebug.el (edebug-install-read-eval-functions)
4341         (edebug-uninstall-read-eval-functions): Use load-read-function,
4342         avoiding elisp-eval.
4344 1999-10-16  Sam Steingold  <sds@ksp.com>
4346         * emacs-lisp/cl-indent.el (common-lisp-indent-function): Use `eq'
4347         instead of `eql'.
4349 1999-10-14  Stefan Monnier  <monnier@cs.yale.edu>
4351         * ange-ftp.el (ange-ftp-make-tmp-name, ange-ftp-del-tmp-name):
4352         * browse-url.el (browse-url-of-buffer, browse-url-delete-temp-file),
4353         (browse-url-temp-file-list, browse-url-delete-temp-file-list):
4354         * ediff-util.el (ediff-make-temp-file):
4355         * ediff-vers.el (ediff-pcl-cvs-view-revision):
4356         * emerge.el (emerge-make-temp-file):
4357         * jka-compr.el (jka-compr-make-temp-name, jka-compr-delete-temp-file):
4358         * vc.el (vc-update-change-log):
4359         * mail/mailpost.el (post-mail-send-it):
4360         * mail/metamail.el (metamail-region):
4361         * progmodes/cmacexp.el (c-macro-expansion):
4362         * textmodes/makeinfo.el (makeinfo-region): Use make-temp-file.
4364 1999-10-15  Gerd Moellmann  <gerd@gnu.org>
4366         * smtpmail.el (smtpmail-via-smtp): Add support for
4367         automatically appending a domain to RCPT TO: addresses.
4369 1999-10-14  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4371         * dired.el (dired-insert-directory): Insert the amount of
4372         free space after the total size.
4373         (dired-free-space-program, dired-free-space-args): New variables.
4375 1999-10-14  Karl Heuer  <kwzh@gnu.org>
4377         * mail/rmail.el (rmail-pop-password-error): Add new pattern.
4379 1999-10-14  Dave Love  <fx@gnu.org>
4381         * international/characters.el:
4382         * international/fontset.el:
4383         * international/mule-conf.el: Add latin-iso8859-1[45].
4385         * language/european.el: Add Latin-8, Latin-9.  Modify some doc
4386         strings.
4388         * startup.el (iso-8859-n-locale-regexp): Modify for Latin-[89].
4389         (command-line): Detect Latin-[89] locales.
4391 1999-10-13  Stefan Monnier  <monnier@cs.yale.edu>
4393         * international/mule-cmds.el (select-safe-coding-system)
4394         (leim-list-header): Avoid the use of strings that start with backslash
4395         newline since lread.c:read1 has a hack to turn those strings into
4396         integer 0 during the loadup.el process.
4398         * diff-mode.el (diff-find-file-name): Use `Index:' preferentially.
4400 1999-10-13  Dave Love  <fx@gnu.org>
4402         * image.el (insert-image): Copy the image spec and add an
4403         intangible property.
4405 1999-10-13  Stefan Monnier  <monnier@cs.yale.edu>
4407         * help.el (help-xref-interned): Make it also work on variable-only
4408         and function-only symbols.
4409         (help-make-xrefs): Take advantage of the new `help-xref-interned'.
4410         (help-follow): If the point under mouse is not highlighted, try
4411         `help-xref-interned' on the pointed-to symbol anyway.
4413         * info.el (Info-on-current-buffer): New entry point.
4414         (Info-find-node): Split into two for Info-on-current-buffer to
4415         hook into it.
4416         (Info-current-file, Info-set-mode-line, Info-up):
4417         Info-current-file can now be t.
4418         (Info-clone-buffer-hook): Function for `clone-buffer'.
4419         (Info-goto-node, Info-menu, Info-mode-map, Info-mode):
4420         Make `clone-buffer' available in various ways to the user.
4422 1999-10-12  Stefan Monnier  <monnier@cs.yale.edu>
4424         * simple.el (shell-command, shell-command-on-region): Use
4425         make-temp-file.
4426         (clone-buffer, clone-process, clone-buffer-hook): New functions.
4428         * subr.el (with-current-buffer): Don't use backquotes to avoid
4429         bootstrapping problems.
4431         * loadup.el (load-path): Add subdirs for bootstrapping.
4432         (docstrings): Ignore errors during bootstrapping.
4433         (args): New `bootstrap' argument (for use in place of `dump').
4435 1999-10-12  Emmanuel Briot  <briot@gnat.com>
4437         * ada-stmt.el: Doc-string fixes.
4439 1999-10-12  Gerd Moellmann  <gerd@gnu.org>
4441         * recentf.el: New file.
4443         * ps-mode.el: New file.
4445         * files.el (auto-mode-alist): Add ps-mode for .eps and .ps,
4446         case insensitive.
4448 1999-10-12  Richard Sharman  <rsharman@pobox.com>
4450         * sh-script.el: Added support for indenting existing scripts.
4451         (sh-mode-map): Added new bindings.
4452         (sh-mode): Updated mode doc-string for new commands, added
4453         make-local-variable calls, initialize mode-specific variables.
4454         (sh-indent-line):  Renamed to sh-basic-indent-line;  sh-indent-line
4455         is now a different function.
4456         (sh-header-marker):  Changed docstring.
4457         (sh-set-shell): Initialize mode-specific variables.
4458         (sh-case, sh-for, sh-if, sh-indexed-loop, sh-repeat, sh-select)
4459         (sh-tmp-file, sh-until, sh-until, sh-while, sh-while-getopts):
4460         Changed these define-skeleton calls to work with user-specified
4461         indentation settings.
4462         (sh-basic-indent-line, sh-blink, sh-calculate-indent)
4463         (sh-check-paren-in-case, sh-check-rule, sh-do-nothing)
4464         (sh-electric-hash, sh-electric-less, sh-electric-rparen)
4465         (sh-find-prev-matching, sh-find-prev-switch, sh-get-indent-info)
4466         (sh-get-indent-var-for-line, sh-get-kw, sh-get-word)
4467         (sh-goto-match-for-done, sh-goto-matching-case, sh-goto-matching-if)
4468         (sh-guess-basic-offset, sh-handle-after-case-label)
4469         (sh-handle-prev-case, sh-handle-prev-case-alt-end, sh-handle-prev-do)
4470         (sh-handle-prev-done, sh-handle-prev-else, sh-handle-prev-esac)
4471         (sh-handle-prev-fi, sh-handle-prev-if, sh-handle-prev-open)
4472         (sh-handle-prev-rc-case, sh-handle-prev-then, sh-handle-this-close)
4473         (sh-handle-this-do, sh-handle-this-done, sh-handle-this-else)
4474         (sh-handle-this-esac, sh-handle-this-fi, sh-handle-this-rc-case)
4475         (sh-handle-this-then, sh-help-string-for-variable)
4476         (sh-in-comment-or-string, sh-indent-line, sh-learn-buffer-indent)
4477         (sh-learn-line-indent, sh-load-style, sh-make-vars-local, sh-mark-init)
4478         (sh-mark-line, sh-mkword-regexpr, sh-mkword-regexp)
4479         (sh-must-be-shell-mode, sh-must-support-indent, sh-name-style)
4480         (sh-prev-line, sh-prev-stmt, sh-prev-thing, sh-read-variable)
4481         (sh-remove-our-text-properties, sh-rescan-buffer)
4482         (sh-reset-indent-vars-to-global-values, sh-safe-backward-sexp)
4483         (sh-safe-forward-sexp, sh-save-styles-to-buffer, sh-scan-buffer)
4484         (sh-scan-case, sh-search-word, sh-set-char-syntax)
4485         (sh-set-here-doc-region, sh-set-indent, sh-set-var-value)
4486         (sh-show-indent, sh-this-is-a-continuation, sh-var-value): New
4487         functions.
4488         (sh-debug, sh-electric-rparen-needed, sh-here-doc-syntax)
4489         (sh-indent-supported, sh-kw, sh-kw-alist, sh-kws-for-done)
4490         (sh-learned-buffer-hook, sh-make-vars-local, sh-regexp-for-done)
4491         (sh-special-keywords, sh-special-syntax, sh-st-punc, sh-styles-alist)
4492         (sh-var-list): New variables.
4494 1999-10-12  Dave Pearson  <davep@hagbard.demon.co.uk>
4496         * quickurl.el (quickurl-list-insert): `count-lines' was returning
4497         a value one line to high if the cursor wasn't at the start of a
4498         line. A `beginning-of-line' is now performed before making the
4499         call to `count-lines'.
4501 1999-10-11  Stefan Monnier  <monnier@cs.yale.edu>
4503         * diff-mode.el (vc-backend-diff): Get rid of the autoloaded advice.
4505 1999-10-09  Stefan Monnier  <monnier@cs.yale.edu>
4507         * Makefile (setwins): Abstract out the command to find subdirectories
4508         and fix it to also ignore subdirectories of CVS (f.ex. CVS/Base).
4509         (custom-deps, finder-data, autoloads, update-subdirs, updates)
4510         (autoloads-with-other-emacs): Use it.
4512         * diff-mode.el: New file.  A mode for viewing/editing context diffs.
4514 1999-10-09  Gerd Moellmann  <gerd@gnu.org>
4516         * Makefile (bootstrap-compile): New target.  Compile Lisp
4517         files with ../src/temacs.
4519 1999-10-08  Dave Love  <fx@gnu.org>
4521         * ange-ftp.el: Require dired when compiling.
4522         (ange-ftp-normal-login): Allow EFS-style port specification.
4524 1999-10-08  Simon Marshall  <simon@gnu.org>
4526         * emacs-lisp/regexp-opt.el (regexp-opt-try-suffix): New function.
4527         (regexp-opt-group): Use it to get common suffixes in STRINGS.
4528         If STRINGS is nil, return "" rather than nil.
4530 1999-10-08  Gerd Moellmann  <gerd@gnu.org>
4532         * Makefile (compile): Compile files one by one.  Set load-path to
4533         current directory and subdirectories when compiling.
4535 1999-10-08  Gerd Moellmann  <gerd@gnu.org>
4537         * Makefile (EMACSOPT, DONTCOMPILE, EL): New.
4538         (emacs): Use it everywhere instead of EMACS.
4539         (compile): New target.  Compile all Lisp files from scratch.
4540         (recompile): New target.  Recompile lisp directory.
4541         (autoloads-with-other-emacs): New target.  Build loaddefs.el with
4542         an Emacs executable not built in the current directory tree.
4544 1999-10-07  Peter Breton  <pbreton@ne.mediaone.net>
4546         * filecache.el (file-cache-completion-ignore-case): New variable,
4547         defaulting to the value of completion-ignore-case.
4548         (file-cache-minibuffer-complete): Use it.
4549         (file-cache-files-matching, file-cache-files-matching-internal):
4550         New functions.
4552 1999-10-07  Emmanuel Briot  <briot@gnat.com>
4554         * ada-xref.el: New file
4556         * ada-prj.el: New file
4558         * ada-stmt.el (ada-stmt-add-to-ada-menu): New function
4560         * ada-stmt.el (ada-subprogram-body): Correctly find the name of the
4561         subprogram being created.
4563         * ada-mode.el (ada-get-indent-*, ada-indent-current, ada-goto-*,
4564         ada-indent-newline-indent): Rewritten to support the new indentation
4565         scheme
4567         * ada-mode.el (ada-case-read-exceptions, ada-create-case-exceptions):
4568         New functions
4570         * ada-mode.el (ada-fill-comment-paragraph): Add support for the
4571         justification parameter
4573         * ada-mode.el (ada-make-body, ada-gen-treat-proc,
4574         ada-make-subprogram-body): Rewritten to benefit from the gnatstub
4575         external program
4577 1999-10-07  Dave Love  <fx@gnu.org>
4579         * bindings.el (bound-and-true-p): New macro.
4580         (make-mode-line-mouse-sensitive): Don't require easymenu.
4582 1999-10-07  Gerd Moellmann  <gerd@gnu.org>
4584         * custom.el (defface): Extend documentation for new values of
4585         `type'.
4587         * faces.el (face-spec-set-match-display): Recognize `type' of
4588         `motif', `lucid', `x-toolkit'.
4589         (menu): New face.
4591 1999-10-05  Dave Love  <fx@gnu.org>
4593         * files.el: Recognize temporary crontab files.
4595         * info.el: Require jka-compr when compiling.
4596         (Info-suffix-list): Add bzip2 files (non-ms-dos only).
4598 1999-10-04  Dave Love  <fx@gnu.org>
4600         * cus-start.el: Add x-stretch-cursor, indicate-empty-lines,
4601         scroll-up-aggressively, scroll-down-aggressively.
4603         * time.el (display-time-mode): Add autoload cookie.
4605         * rect.el (delete-extract-rectangle): Doc fix from verna.
4607         * help-macro.el (three-step-help): Customize.
4609 1999-10-04  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4611         * hexl.el (hexlify-buffer): Move point in proper range
4612         if it is too large.
4613         (hexl-after-revert-hook): Update hexl-max-address.
4614         (hexl-address-to-marker): Doc fix.
4616 1999-10-03  Dave Love  <fx@gnu.org>
4618         * image.el (defimage): Remove redundant code.  Substitute file in
4619         image plist.
4621 1999-10-02  Andre Spiegel  <spiegel@inf.fu-berlin.de>
4623         * vc.el (vc-backend-checkout): Use coding system 'no-conversion
4624         when doing with-temp-file.
4626 1999-10-01  Dave Love  <fx@gnu.org>
4628         * cus-edit.el (custom-comment-create): Fill :from and :to slots.
4630         * help.el: Require view when compiling.
4631         (view-emacs-FAQ): Use Info version.
4633 1999-09-29  Ken'ichi Handa  <handa@gnu.org>
4635         * ps-mule.el (ps-mule-font-info-database-ps): Typo fixed
4636         (normat->normal).  Use correct font names for Korean
4637         (Munhwa-Regular-KSC-EUC-H and Munhwa-Bold-KSC-EUC-H).
4639 1999-09-29  Kenichi Handa  <handa@etl.go.jp>
4641         * language/cyrillic.el (cyrillic-koi8-r-decode-table): Map 8-bit
4642         code not used by KOI8 to the same 8-bit code instead of mapping to
4643         SPC.
4644         (cyrillic-alternativnyj-decode-table): Likewise.
4646 1999-09-29  Alex Schroeder  <alex@gnu.org>
4648         * sql.el (sql-imenu-generic-expression): Aew, used to set
4649         imenu-generic-expression.
4650         (sql-mode): Use ?_ and ?. instead of 95 and 46 when setting
4651         font-lock-defaults' SYNTAX-ALIST.  Set imenu-generic-expression,
4652         imenu-case-fold-search, and imenu-syntax-alist.
4653         (sql-interactive-mode): Use ?_ and ?. instead of 95 and 46 when
4654         setting font-lock-defaults' SYNTAX-ALIST.
4656 1999-09-28  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4658         * map-ynp.el (map-y-or-n-p): If we read -1, for end of keyboard
4659         macro, try again.
4661 1999-09-28  Dave Love  <fx@gnu.org>
4663         * cus-edit.el (custom-comment): Change widget definition.
4664         (custom-comment-create, custom-comment-show)
4665         (custom-comment-invisible-p): Don't use :comment-overlay.
4666         (custom-comment-hide): New function.
4667         (custom-variable-set, custom-variable-save)
4668         (custom-variable-reset-standard, custom-face-set)
4669         (custom-face-save): Use it.
4671 1999-09-27  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4673         * hexl.el (hexl-mode): Do nothing if already in hexl mode.
4675 1999-09-27  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4677         * faces.el (region): Doc fix.
4679 1999-09-27  Dave Love  <fx@gnu.org>
4681         * isearch.el (isearch): Add :links in defgroup.
4682         (isearch-mode-map): Bind mouse-2 to isearch-mouse-yank.
4683         (isearch-switch-frame-handler): Comment out (unused).
4684         (isearch-yank-x-selection, isearch-ring-advance-edit): Doc fix.
4685         (isearch-ring-retreat-edit): Doc fix.
4686         (isearch-mouse-yank): New command.
4687         (isearch-last-command-char): Removed.  Callers changed to use
4688         last-command-char.
4689         (isearch-char-to-string): Removed.  Callers changed to use
4690         char-to-string.
4692 1999-09-26  Oleg S. Tihonov  <tihonov@ffke-campus.mipt.ru>
4694         * ispell.el (ispell-dictionary-alist-6): Don't use "-C"
4695         option for Russian.
4697 1999-09-25  Gerd Moellmann  <gerd@gnu.org>
4699         * faces.el (face-differs-from-default-p): Compare face
4700         attributes individually.
4702         * image.el (put-image, insert-image): Add string argument.
4704 1999-09-24  Gerd Moellmann  <gerd@gnu.org>
4706         * ange-ftp.el (ange-ftp-date-regexp): Make it work for
4707         LANG=de_DE.iso88591 on HPUX 11.0.
4709         * dired.el (dired-move-to-filename-regexp): Make it work
4710         for LANG=de_DE.iso88591 on HPUX 11.0.
4712 1999-09-24  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
4714         * info.el (info-initialize): Don't test existence of ALTERNATIVE
4715         if we know for some other reason it should not be used.
4717         * emacs-lisp/edebug.el (edebug-outside-current-prefix-arg):
4718         New variable.
4719         (edebug-recursive-edit): Save current-prefix-arg there,
4720         bind it, and set it back at the end.
4721         (edebug-outside-excursion): Restore and update the outside
4722         value of current-prefix-arg.
4723         (edebug-emacs-version-specific): Delete support for Epoch.
4725 1999-09-24  Howard Melman  <howard@silverstream.com>
4727         * imenu.el (imenu-after-jump-hook): New variable.
4728         (imenu): Run menu-after-jump-hook.
4729         (imenu-name-lookup-function): New variable.
4730         * imenu.el (imenu--in-alist): Use those variables.
4732 1999-09-24  Carsten Dominik  <cd@gnu.org>
4734         * textmodes/reftex-parse.el (reftex-parse-from-file): Scan for
4735         multiple thebibliography environments.
4737         * textmodes/reftex-cite.el (reftex-pop-to-bibtex-entry): Fixed bug
4738         with recentering window.
4739         (reftex-extract-bib-entries-from-thebibliography,
4740         reftex-offer-bib-menu,reftex-bibtex-selection-callback):  Deal
4741         with multiple thebibliography environments.
4743         * textmodes/reftex-vars.el
4744         (reftex-section-levels): Function allowed as cdr.
4745         (reftex-max-section-depth) New option.
4747         * textmodes/reftex-vcr.el (reftex-view-cr-cite): Deal
4748         with multiple thebibliography environments.
4750 1999-09-23  Gerd Moellmann  <gerd@gnu.org>
4752         * iswitchb.el (iswitchb-complete): Use minibuffer-prompt-end
4753         instead of point-min in call to delete-region.
4755 1999-09-22  Andre Spiegel  <spiegel@inf.fu-berlin.de>
4757         * vc.el (vc-backend-checkout): Use with-temp-file when checking
4758         out into arbitrary file names.
4760 1999-09-19  Ken'ichi Handa  <handa@gnu.org>
4762         * language/european.el ("Turkish"): New language environment.
4764 1999-09-19  Dave Love  <fx@gnu.org>
4766         * delim-col.el: New file.
4768 1999-09-17  Richard Stallman  <rms@gnu.org>
4770         * files.el (after-find-file): When visiting a backup file,
4771         make it read-only.
4773         * apropos.el (apropos-symbol-face): Non-nil even for ttys.
4774         (apropos-keybinding-face, apropos-label-face): Likewise.
4775         (apropos-property-face, apropos-match-face): Likewise.
4776         (apropos-label-properties): New variable.
4777         (apropos-print-doc): Use apropos-label-properties.
4778         (apropos-print): Set apropos-label-properties.
4780 1999-09-15  Richard Stallman  <rms@gnu.org>
4782         * winner.el: Use aref instead of sref.
4784         * whitespace.el (whitespace-mode, whitespace-mode-line): Add defvars.
4786 1999-09-14  Gerd Moellmann  <gerd@gnu.org>
4788         * lisp-mode.el (eval-last-sexp): Use prin1 instead of print.
4790 1999-09-14  Richard Stallman  <rms@gnu.org>
4792         * font-lock.el (lisp-font-lock-keywords-1): Recognize an autoload
4793         cookie, even if followed by a letter.
4795 1999-09-14  Stephen Eglen  <stephen@gnu.org>
4797         * progmodes/octave-inf.el (inferior-octave-startup): Ensure -i and
4798         --no-line-editing are passed to Octave by including them here
4799         rather than storing them in inferior-octave-startup-args.
4801 1999-09-14  Eli Zaretskii  <eliz@gnu.org>
4803         * textmodes/texinfo.el (texinfo-font-lock-keywords): Add uref,
4804         command, option, env and sc.
4806         * subr.el (shell-quote-argument): Quote argument with double
4807         quotes for ms-dos.
4809 1999-09-14  Richard Stallman  <rms@gnu.org>
4811         * simple.el (eval-expression-print-level): New variable.
4812         (eval-expression-print-length): New variable.
4813         (eval-expression-debug-on-error): New variable.
4814         (eval-expression): Bind print-level, print-length and
4815         debug-on-error from those vars.
4817         * emacs-lisp/lisp-mode.el (eval-defun, eval-last-sexp):
4818         Bind print-level, print-length and debug-on-error.
4820 1999-09-14  Inge Frick  <inge@nada.kth.se>
4822         * dired.el (dired-recursive-deletes): New custom variable.
4823         (dired-re-no-dot): New variable.
4824         (dired-delete-file): New function deletes files and directories
4825         recursively.
4826         (dired-internal-do-deletions): Use `dired-delete-file' to delete files.
4828         * dired-aux.el (dired-recursive-copies): New custom variable.
4829         (dired-handle-overwrite): Broke a long line.
4830         (dired-copy-file): Call `dired-copy-file-recursive' instead of
4831         `copy-file'.
4832         (dired-copy-file-recursive): New function.  Copy directories
4833         recursively.
4834         (dired-do-create-files): Added support for generalized directory
4835         target.  How-to function may now return a function.  New fluid
4836         variable `dired-one-file'.
4837         (dired-copy-how-to-fn): New variable.
4838         (dired-do-copy): Bind `dired-recursive-copies' to preserve it.
4839         Use dired-copy-how-to-fn as how-to argument to dired-do-create-files.
4840         (dired-do-copy-regexp): No recursive copies.
4842 1999-09-14  Rajesh Vaidheeswarran  <rv@dsmit.com>
4844         * whitespace.el (whitespace-version): Update version to 2.4
4846         * whitespace.el: Add customization variables to conditionally test
4847         any of the five whitespaces, per request from Rune Kleveland
4848         <runekl@math.uio.no> and Klaus Berndl <berndl@sdm.de>.
4850         * whitespace.el (whitespace-spacetab-regexp): Fix doc string.
4852         * whitespace.el (whitespace-modes): Add `change-log-mode' to the
4853         list of modes to be checked for bogus whitespaces.
4855         * whitespace.el (whitespace-rescan-timer-time): Update
4856         documentation.
4858         * whitespace.el (whitespace-display-unchecked-whitespaces):
4859         New function to update modeline with untested whitespaces.
4861         * whitespace.el (whitespace-buffer): Test only whitespaces whose
4862         checking is turned on, and update modeline using the newly created
4863         `whitespace-display-unchecked-whitespaces'.
4865         * whitespace.el (whitespace-cleanup): Cleanup only whitespaces
4866         whose checking is turned on, and update modeline using the newly
4867         created `whitespace-display-unchecked-whitespaces'.
4869         * whitespace.el (whitespace-describe): Update documentation.
4871         * whitespace.el (whitespace-tickle-timer): Test if
4872         `whitespace-rescan-timer-time' is non-zero before tickling timer.
4874 1999-09-13  Dave Love  <fx@gnu.org>
4876         * hideif.el (hide-ifdef-mode): Add autoload cookie.
4878         * checkdoc.el (checkdoc-display-status-buffer): Avoid Help mode
4879         for temp buffer.
4880         (checkdoc-this-string-valid): Don't assume default comment-start.
4882 1999-09-13  Gerd Moellmann  <gerd@gnu.org>
4884         * rsz-mini.el: Remove code, keep the interface.
4886 1999-09-13  Dave Love  <fx@gnu.org>
4888         * help.el (help-highlight-p): Doc fix.
4890         * faces.el (mode-line, header-line, tool-bar): Add :version.
4891         (highlight, secondary-selection): Add :group.
4892         (trailing-whitespace): Add :group, :version.
4894         * wid-edit.el: Remove some compatibility code and checks.
4895         (widget-specify-field, widget-specify-button): Don't use XEmacs
4896         properties.
4897         (widget-overlay-inactive): Change error message.
4898         (widget-button-pressed-face): New variable.
4899         (widget-button-click): Use it.
4900         (widget-documentation-link-add): Specify mouse and button faces.
4901         (widget-echo-help-mouse, widget-stop-mouse-tracking): Functions
4902         removed now the functionality is built in.
4904         * cus-edit.el: Don't define-widget-keywords.
4905         (multimedia): New group.
4906         (custom-last): Function removed.
4907         (custom-quote): Add vectorp case, comment out characterp case.
4908         (custom-buffer-done-function, custom-raised-buttons): New option.
4909         (Custom-buffer-done): New function.
4910         (custom-buffer-create-internal): Obey custom-raised-buttons,
4911         Custom-buffer-done.
4912         (custom-button-face): Make it `released-button'.
4913         (custom-button-pressed-face): Make it `pressed-button'
4914         (custom-mode-map): Bind "q" to Custom-buffer-done.
4915         (custom-mode): Deal with raised/pressed buttons.
4917         Changes from Didier Verna:
4918         (custom-prompt-variable): Optional third arg makes prompt for a
4919         comment string.
4920         (customize-set-value, customize-set-variable,
4921         customize-save-variable): Optional prefix makes function handle
4922         variable comments.
4923         (customize-customized, customize-saved, custom-variable-state-set)
4924         (custom-variable-set, custom-variable-save, custom-face-state-set)
4925         (custom-variable-reset-saved, custom-variable-reset-standard)
4926         (custom-face-set, custom-face-save, custom-face-reset-saved)
4927         (custom-face-reset-standard, customize-save-customized): Handle
4928         custom comments.
4929         (custom-comment-face, custom-comment-tag-face): New face.
4930         (custom-comment): New widget.
4931         (custom-comment-create, custom-comment-delete)
4932         (custom-comment-value-set, custom-comment-show)
4933         ()custom-comment-invisible-p): New functions.
4934         (custom-variable-value-create, custom-face-value-create): Create a
4935         comment field widget.
4936         (custom-variable-menu, custom-face-menu): New entry for custom
4937         comment.
4938         (custom-face-value-create): Remove compatibility code.
4939         (custom-save-variables, custom-save-faces): Possibly save custom
4940         comments.
4942         * cus-face.el (custom-face-attributes): Simplify :underline,
4943         :overline, :inverse-video cases.  Fix up :box case (probably needs
4944         more work).
4946         Change from Didier Verna:
4947         (custom-set-faces): The arguments can now have a custom comment as
4948         fourth argument.
4950         * custom.el: Don't define-widget-keywords.
4951         Change from Didier Verna:
4952         (custom-set-variables): The arguments can now have a
4953         custom comment as fifth element.
4955 1999-09-13  Richard Stallman  <rms@gnu.org>
4957         * info.el (Info-find-node): Cope better if guesspos is too large.
4959 1999-09-12  Gerd Moellmann  <gerd@gnu.org>
4961         * iswitchb.el (iswitchb-exhibit): Use buffer-string instead
4962         of buffer-substring because buffer-string doesn't copy the
4963         prompt.
4965         * faces.el (mode-line): Replaces `modeline'.
4966         (toplevel): Make `modeline' an alias for `mode-line'.
4968 1999-09-12  Gerd Moellmann  <gerd@gnu.org>
4970         * gs.el: Change `ghostscript' to `postscript' in comment.
4972 1999-09-11  Rob Riepel  <riepel@Stanford.EDU>
4974         * emulation/tpu-edt.el (tpu-version): New version.
4975         (tpu-search-overlay, tpu-replace-overlay): New variables.
4976         (tpu-search-highlight, tpu-toggle-direction): New functions.
4977         (tpu-lm-replace): Set tpu-replace-overlay.
4978         (tpu-edt-on, tpu-edt-off): Add/remove tpu-search-highlight post
4979         command hook.
4981 1999-09-11  Richard Stallman  <rms@gnu.org>
4983         * isearch.el (isearch-mode-map): Undo previous change.
4985         * emacs-lisp/lisp-mode.el (eval-last-sexp): If after ?\LETTER,
4986         use all of that as the sexp.
4988         * files.el (find-file-noselect): Catch errors in file-expand-wildcards,
4989         and use the initial argument as file name directly.
4990         Likewise if nothing matches.
4992 1999-09-11  Ivar Rummelhoff  <ivarru@math.uio.no>
4994         * winner.el: Major changes.  Avoid changing point and mark.
4995         Save configurations after they change, not before.
4997 1999-09-10  Keisuke Nishida  <kxn30@po.cwru.edu>
4999         * emacs-lisp/bytecomp.el (byte-compile-output-docform):
5000         Bind print-continuous-numbering and print-number-table.
5002 1999-09-10  Dave Love  <fx@gnu.org>
5004         * bindings.el (debug-ignored-errors): Restore BBDB stuff.
5006 1999-09-09  Richard Stallman  <rms@gnu.org>
5008         * whitespace.el: Finish making it fit Emacs conventions.
5009         Add autoloads.
5011 1999-09-09  Eli Zaretskii  <eliz@is.elta.co.il>
5013         * generic-x.el (bat-generic-mode): "::"-style comments don't
5014         need to begin with "-".  Fix the font-lock definitions of ON/OFF
5015         after BREAK/VERIFY.  Remove built-in commands like CALL and ECHO
5016         from the list of keywords.  Add DO to the list of keywords.
5018 1999-09-09  Dave Love  <fx@gnu.org>
5020         * emacs-lisp/byte-opt.el (byte-optimize-backward-char):
5021         (byte-optimize-backward-word): New optimizations.
5022         (side-effect-free-fns, side-effect-and-error-free-fns): Add
5023         entries.
5025 1999-09-09  Gerd Moellmann  <gerd@gnu.org>
5027         * image.el (put-image): Remove optional buffer parameter.
5029         * faces.el (face-italic-p): Return t only for values `italic'
5030         and `oblique'.
5032         * mouse.el (mouse-drag-mode-line-1): Extension of former
5033         mouse-drag-mode-line that also drags the header line.
5034         (mouse-drag-mode-line): Call it.
5035         (mouse-drag-header-line): New.
5036         (toplevel): Bind down-mouse-1 on header lines to
5037         mouse-drage-header-line.
5039 1999-09-08  Gerd Moellmann  <gerd@gnu.org>
5041         * bindings.el (mode-line-unbury-buffer): Use aref instead of sref.
5042         (make-mode-line-mouse-sensitive): Replace `top-line' by
5043         `header-line'.
5045 1998-09-08  Michael Ernst  <mernst@alum.mit.edu>
5047         * help.el (describe-function-1): Don't return empty string for keymaps.
5049         * fill.el (fill-region-as-paragraph, canonically-space-region):
5050         Respect colon-double-space at end of line.
5052 1999-09-08  Stephen Gildea  <gildea@alum.mit.edu>
5054         * files.el (backup-by-copying-when-privileged-mismatch): New variable.
5055         (backup-buffer): Use it.
5057 1999-09-08  Peter Breton  <pbreton@ne.mediaone.net>
5059         * generic-x.el (generic-define-unix-modes): Added new modes:
5060         inetd-conf-generic-mode, etc-services-generic-mode,
5061         etc-passwd-generic-mode.  These are all defined for Unix by default.
5062         (apache-generic-mode): Use an imenu-generic-expression to list
5063         Configuration keywords.
5064         (samba-generic-mode): Use both ; and # as comment characters.
5065         (samba-generic-mode): Font-lock expressions now highlight name
5066         value pairs.
5067         (bat-generic-mode): Keywords are now case-insensitive through
5068         font-lock-defaults setting.
5069         (java-properties-generic-mode): Supports both ! and # as comment
5070         characters.
5071         (java-properties-generic-mode): Added an imenu-generic-expression
5072         (java-properties-generic-mode): Reworked to support the various
5073         different ways to separate name and value (viz, '=', ':' and
5074         whitespace).
5075         (show-tabs-generic-mode): Added this new generic-mode.
5077 1999-09-08  Richard Stallman  <rms@gnu.org>
5079         * progmodes/inf-lisp.el: Moved from top directory.
5081         * tar-mode.el (tar-header-block-tokenize):
5082         Use `when' instead of `and'.  Fix some clobbered text.
5084         * gud.el (gud-make-debug-menu): Make a child for the
5085         local menu, for its menu bar, and the debug menu.
5086         (gdb, sdb, dbx, xdb, perldb, pdb, jdb):
5087         Use the history in the simple way.
5089 1999-09-07  Kenichi Handa  <handa@etl.go.jp>
5091         * language/korea-util.el (default-korean-keyboard): Initialize it
5092         according to the environment variable HANGUL_KEYBOARD_TYPE.
5094 1999-09-07  Richard Stallman  <rms@gnu.org>
5096         * subr.el (make-temp-file): New function.
5098 1999-09-07  Stefan Monnier  <monnier@cs.yale.edu>
5100         * font-lock.el (font-lock-multiline): New text property contains
5101         a boolean to indicate if the char is part of a multiline match.
5102         (font-lock-default-fontify-region): Extend the region appropriately
5103         for multiline keywords.
5104         (font-lock-default-unfontify-region): Also remove the new
5105         font-lock-multiline text property.
5106         (font-lock-fontify-anchored-keywords): Mark multiline anchored matches.
5107         (font-lock-fontify-keywords-region): Mark multiline regexp matches.
5109 1999-09-07  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
5111         * diary-lib.el (list-diary-entries): Make sure two-digit years
5112         have leading zeros.
5114 1999-09-07  Gerd Moellmann  <gerd@gnu.org>
5116         * faces.el (face-set-after-frame-default): Initialize some
5117         attributes of some faces from frame parameters.
5119         * faces.el (scroll-bar, border, cursor, mouse): New faces.
5121 1999-09-07  Gerd Moellmann  <gerd@gnu.org>
5123         * faces.el (fringe): Replaces face `margin'.
5125 1999-09-07  Dave Love  <fx@gnu.org>
5127         * tar-mode.el (tar-header-block-tokenize): Bind linkname.
5129 1999-09-07  Richard Stallman  <rms@gnu.org>
5131         * subr.el (push): Doc fix.
5133 1999-09-06  Richard Stallman  <rms@gnu.org>
5135         * vc.el (vc-annotate-display): Use < 69 not < 70
5136         to distinguish 20YY from 19YY.
5138         * timezone.el (timezone-parse-date): Use < 69 not < 70
5139         to distinguish 20YY from 19YY.
5141         * tar-mode.el (tar-extract): Don't assume buffer is visiting a file.
5143 1999-09-07  Dave Pearson  <davep@hagbard.demon.co.uk>
5145         * quickurl.el: (quickurl-list-focused-line): Removed.
5146         (quickurl-list-insert): Now works out the focused line using
5147         `count-lines' instead of using `quickurl-list-focused-line'.
5149 1999-09-06  Richard Stallman  <rms@gnu.org>
5151         * mail/rmail.el (rmail-retry-failure): Unconditionally move
5152         to beginning of message.
5154 1999-09-06  Dave Love  <fx@gnu.org>
5156         * isearch.el (isearch-mode-map): Add mouse-2.
5158         * mail/rmail.el (rmail-read-password): Deleted.
5159         (rmail-get-pop-password): Use read-password.
5161         * quickurl.el: Don't conditionally define caddr.
5162         (quickurl-url-comment): Use nth, not caddr in function and
5163         defsetf.
5165 1999-09-06  Richard Stallman  <rms@gnu.org>
5167         * auto-show.el: Doc fixes.
5169 1999-09-06  Stephen Eglen  <stephen@gnu.org>
5171         * progmodes/octave-inf.el (inferior-octave-startup-args): Add
5172         --no-line-editing so that TABs in source files are not interpreted
5173         as completion requests.
5175 1999-09-06  Gerd Moellmann  <gerd@gnu.org>
5177         * hscroll.el, auto-show.el: Remove all code, keep the public
5178         interface as no-ops.
5180         * faces.el (face-bold-p): Don't return t if face has lighter
5181         weight than normal.
5183 1999-09-06  Eli Zaretskii  <eliz@gnu.org>
5185         * startup.el (command-line): Make small-temporary-file-directory
5186         be nil except on ms-dos.
5188         * files.el (small-temporary-file-directory): Ditto.  Also doc fix.
5190         * progmodes/sh-script.el (sh-tmp-file): For sh, use $TMPDIR if it
5191         is defined.
5193         * dired.el (dired-re-dir, dired-re-sym): Don't match DOS drive
5194         letters with a colon after d or l.
5196 1999-09-06  Dave Love  <fx@gnu.org>
5198         * emacs-lisp/byte-opt.el (byte-boolean-vars): Removed.  (Now
5199         primitive.)
5201 1999-09-05  Richard Stallman  <rms@gnu.org>
5203         * vc.el (vc-annotate-display): Treat 2-digit years under 70 as 20YY.
5205         * textmodes/paragraphs.el (backward-kill-sentence):
5206         Don't test minibuffer-prompt-end here.
5207         (forward-sentence): Do handle it here.
5208         (backward-kill-paragraph): Don't test it here.
5209         (forward-paragraph): Handle it here.
5211         * mouse.el (font-menu-add-default): Simplify code.
5213 1999-09-05  Gerd Moellmann  <gerd@gnu.org>
5215         * faces.el (header-line): Renamed from `top-line'.
5217 1999-09-05  Gerd Moellmann  <gerd@gnu.org>
5219         * faces.el (tool-bar): Change face `toolbar' to `tool-bar'.
5221 1999-09-04  Richard Stallman  <rms@gnu.org>
5223         * whitespace.el: New file.
5225 1999-09-04  Dave Love  <fx@gnu.org>
5227         * paths.el: Make some doc strings obey the make-docfile convention.
5229         * bindings.el: Likewise.
5230         (debug-ignored-errors): Remove BBDB ones.
5232 1999-09-03  Richard Stallman  <rms@gnu.org>
5234         * mail/mh-comp.el (mh-forward): Get new subject line from the original,
5235         not from the draft to forward.
5237         * emacs-lisp/autoload.el (make-autoload): Handle defun* like defun.
5239 1999-09-03  Dave Love  <fx@gnu.org>
5241         * double.el (double-mode): Customize the variable.
5243 1999-09-03  Kenichi Handa  <handa@etl.go.jp>
5245         * international/characters.el: Delete duplicated code.
5247 1999-09-02  Richard Stallman  <rms@gnu.org>
5249         * indent.el (indent-relative): Doc fix.
5251         * quickurl.el (quickurl): Doc fix.
5253 1999-09-02  Gerd Moellmann  <gerd@gnu.org>
5255         * faces.el (margin): Change background to "gray" for mono (this is
5256         drawn with a stipple pattern).
5258 1999-09-02  Gerd Moellmann  <gerd@gnu.org>
5260         * simple.el (next-history-element): Use minibuffer-prompt-end once
5261         again.  Remove test for minibuffer-prompt-in-buffer.
5263 1999-09-02  Eli Zaretskii  <eliz@gnu.org>
5265         * files.el (small-temporary-file-directory): New variable.
5267         * startup.el (command-line): Compute the value of
5268         small-temporary-file-directory.
5270         * ediff-init.el (ediff-temp-file-prefix): Use
5271         small-temporary-file-directory if non-nil.
5273         * vc.el (vc-update-change-log): Likewise.
5275         * progmodes/cmacexp.el (c-macro-expansion): Likewise.
5277         * simple.el (shell-command, shell-command-on-region): Use
5278         make-temp-name properly.  Use small-temporary-file-directory if
5279         non-nil, otherwise temporary-file-directory, to generate temporary
5280         files.
5282         * dos-w32.el (direct-print-region-helper): Use
5283         temporary-file-directory.  (From Stefan Monnier.)
5285 1999-09-02  Richard Stallman  <rms@gnu.org>
5287         * progmodes/asm-mode.el (asm-mode): Set comment-start properly
5288         from asm-comment-char.
5289         (asm-font-lock-keywords): Recognize instruction width suffixes.
5291 1999-09-01  Richard Stallman  <rms@gnu.org>
5293         * play/fortune.el: New file.
5295 1999-08-31  Dave Love  <fx@gnu.org>
5297         * help.el (help-make-xrefs): Don't lose on non-empty blank line
5298         after key table.
5300         * emacs-lisp/byte-opt.el (byte-boolean-vars): Add several w32 and
5301         redisplay variables.
5303         * subr.el (push): Fix typo.
5305 1999-08-30  Kevin Blake  <kblake@ticnet.com>
5307         * emacs-lisp/ring.el: Many doc fixes.
5308         (ring-size, ring-copy): New functions.
5310 1999-08-29  Richard Stallman  <rms@gnu.org>
5312         * progmodes/etags.el (tags-loop-continue):
5313         After tags-loop-operate returns, force skip to next file.
5315         * mail/mail-extr.el (mail-extr-all-letters-but-separators)
5316         (mail-extr-first-letters, mail-extr-last-letters):
5317         Use character classes [:alpha:] and [:alnum:].
5319         * subr.el (push, pop): New macros.
5321         * progmodes/compile.el (compilation-error-regexp-alist):
5322         New item for SGI IRIX MipsPro compilers.
5324         * speedbar.el (speedbar-directory-buttons): Recognize
5325         device names when checking for file names.
5327         * array.el (array-reconfigure-rows): Use generate-new-buffer.
5329         * emacs-lisp/lisp-mode.el (eval-defun): Expand macros,
5330         and specially handle defvar inside their expansions.
5331         (eval-defun-1): New subroutine.
5333         * progmodes/compile.el (compilation-error-regexp-alist):
5334         Fix the Perl -w entry to allow period after line number.
5335         Don't allow newlines in file name, but allow them after line number
5336         for Perl debugging traces.
5338         * which-func.el (which-func-cleanup-function): New variable.
5339         (which-function): Call that function.
5341         * emacs-lisp/find-func.el (find-function-regexp): Allow a ) or (
5342         to end a function name.
5344         * informat.el (Info-tagify): Don't insert more than one newline
5345         before the tag table.
5347 1999-08-29  Stefan Monnier  <monnier@cs.yale.edu>
5349         * textmodes/bibtex.el (bibtex-mode): Use with-temp-buffer rather
5350         than make-temp-name, use match-string-no-properties, and eliminate
5351         a quadratic behavior when building bibtex-strings.
5353 1999-08-29  Alex Schroeder  <alex@gnu.org>
5355         * comint.el (comint-input-ring-separator): New variable.
5356         (comint-read-input-ring): Doc change; use
5357         comint-input-ring-separator when reading file.
5358         (comint-write-input-ring): Use
5359         comint-input-ring-separator when writing file.
5361 1999-08-29  Marc Girod  <girod@shire.ntc.nokia.com>
5363         * informat.el (Info-tagify): Start by widening.
5364         Match node headers that don't list the file name,
5365         and more kinds of page separations.
5366         Strip properties during tagification.
5367         Use start of node header line as tag's position.
5368         Fix the "done" message.
5370         (Info-validate): Save and restore match data around narrowing down.
5372 1999-08-28  Richard M. Stallman  <rms@gnu.org>
5374         * emacs-lisp/easy-mmode.el (easy-mmode-define-minor-mode):
5375         On repeated call, override previous values put into
5376         minor-mode-map-alist and minor-mode-alist.
5378 1999-08-28  Michael Ernst  <mernst@alum.mit.edu>
5380         * dired-x.el (dired-guess-shell-alist-default): Support bzip2 format.
5382 1999-08-27  Andreas Schwab  <schwab@gnu.org>
5384         * vc.el (vc-backend-merge-news): Fix regexp to also match P marker
5385         from cvs update.
5387 1999-08-27  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
5389         * calendar/calendar.el (calendar-move-hook): New hook.
5391         * calendar/cal-move.el: Call the new hook in every movement function.
5393         * calendar/calendar.el (calendar-goto-astro-day-number): Autoload
5394         the right function name.
5396 1999-08-26  Stephen Gildea  <gildea@alum.mit.edu>
5398         * time-stamp.el: Put quote-backquote around all symbol names
5399         in doc strings, for mousing.
5400         (time-stamp): Support multi-line patterns.
5401         (time-stamp-inserts-lines): New variable.
5402         (time-stamp-count): New variable.
5403         (time-stamp-string-preprocess): Fixed bug where "%%a" becomes
5404         "Thu" instead of "%a".
5406 1999-08-25  Gerd Moellmann  <gerd@gnu.org>
5408         * simple.el (kill-word): Undo previous change.
5410 1999-08-25  Gerd Moellmann  <gerd@gnu.org>
5412         * jit-lock.el (jit-lock-function): Extend the fontified range
5413         to the beginning of the line containing the range start and
5414         the beginning of the line following the range end.
5416 1999-08-24  Dave Love  <fx@gnu.org>
5418         * timezone.el: Move provide to end.
5419         (timezone-parse-date): Simplify somewhat.  Assume 2-digit years
5420         <70 are 2000+.
5421         (timezone-parse-time): Simplify somewhat.
5423 1999-08-24  Gerd Moellmann  <gerd@gnu.org>
5425         * faces.el (margin): Renamed from bitmap-area.
5427 1999-08-24  Alex Schroeder  <alex@gnu.org>
5429         * sql.el: Doc changes.
5430         (sql-sybase): Use sql-server instead of sql-database.
5432 1999-08-23  Dave Love  <fx@gnu.org>
5434         * rect.el: Add/fix various doc strings.  Add `*' to all the
5435         interactive specs.
5437 1999-08-21  Gerd Moellmann  <gerd@gnu.org>
5439         * jit-lock.el (jit-lock-function): Use line-beginning-position.
5440         Don't unwind-protect font-lock-fontify-region.
5442         * paragraphs.el (backward-kill-paragraph): Don't move
5443         point into mini-buffer prompt.
5444         (backward-kill-sentence): Ditto.
5446         * simple.el (next-history-element): Use minibuffer-prompt-end.
5447         Remove test for minibuffer-prompt-in-buffer.
5448         (kill-word): Don't move point into mini-buffer prompt.
5450 1999-08-21  Dave Love  <fx@gnu.org>
5452         * Makefile: Exclude CVS dirs like RCS.
5454 1999-08-19  Dave Love  <fx@gnu.org>
5456         * tooltip.el (tooltip-mode): Customize this, per convention.
5457         (tooltip-active): Option deleted.
5459         * font-lock.el (global-font-lock-mode): Autoload.  Add :initialize.
5461         * hanoi.el, page-ext.el: Declare dynamic vars.
5463         * term.el: Avoid ange-ftp related compilation warnings.
5465 1999-08-18  Gerd Moellmann  <gerd@gnu.org>
5467         * font-lock.el (font-lock-support-mode): Make `jit-lock-mode'
5468         the default so that beginners can benefit from it without
5469         searching in manuals.
5471 1999-08-18  Ray Blaak  <blaak@gnu.org>
5473         * progmodes/delphi.el: Consider assembly sections as blocks, to
5474         indent them better. Make auto-indent on newline optional.
5476 1999-08-17  Gerd Moellmann  <gerd@gnu.org>
5478         * bindings.el (mode-line-modified): Look up key binding for C-x
5479         C-q.  If it's bound call that binding, otherwise call
5480         toggle-read-only.
5482 1999-08-17  Dave Love  <fx@gnu.org>
5484         * info.el (info): Doc fix.
5486         * finder.el (finder-known-keywords): Add `multimedia'.
5488         * apropos.el: Don't capitalize custom group name.
5490         * info-look.el: Remove compatibility code.
5491         (info-lookup-guess-default*): DTRT for point at start of symbol.
5492         (info-complete): Don't lose with point not at end of symbol.
5494 1999-08-16  Gerd Moellmann  <gerd@gnu.org>
5496         * term.el (toplevel): Make face `term-default' an empty face.
5497         The code relied on the fact that Emacs ignored invalid faces in
5498         face text properties in 20.4.
5500 1999-08-16  Richard M. Stallman  <rms@gnu.org>
5502         * subr.el (point-at-eol, point-at-bol): New aliases.
5504         * simple.el: Functions reordered.
5506         * rect.el (delete-rectangle-line): Use line-end-position.
5508 1999-08-16  Karl Heuer  <kwzh@gnu.org>
5510         * subr.el (assoc-ignore-case, assoc-ignore-representation): Moved
5511         here from simple.el.
5513 1999-08-16  Dave Love  <fx@gnu.org>
5515         * mouse.el: Provide `mldrag' for compatibility.
5516         (mldrag-drag-mode-line, mldrag-drag-vertical-line): New aliases,
5517         marked obsolete.
5519         * mldrag.el: Removed since the features are in mouse.el.
5521         * jka-compr.el (auto-compression-mode): New variable for
5522         customization.
5524         * bindings.el (mode-line-mule-info): Doc fix.
5526         * msb.el (msb--choose-file-menu): Use `completion-ignore-case' in
5527         name comparisons.
5529         * files.el (interpreter-mode-alist): Add make, guile, clisp.
5530         (find-file): Doc fix.
5532 1999-08-16  Carsten Dominik  <cd@gnu.org>
5534         * textmodes/reftex.el: Most of the code moved to other files.
5535         * textmodes/reftex-auc.el: New file, split out from reftex.el
5536         * textmodes/reftex-cite.el: New file, split out from reftex.el
5537         * textmodes/reftex-global.el: New file, split out from reftex.el
5538         * textmodes/reftex-index.el: New file, split out from reftex.el
5539         * textmodes/reftex-parse.el: New file, split out from reftex.el
5540         * textmodes/reftex-ref.el: New file, split out from reftex.el
5541         * textmodes/reftex-sel.el: New file, split out from reftex.el
5542         * textmodes/reftex-toc.el: New file, split out from reftex.el
5543         * textmodes/reftex-vars.el: New file, split out from reftex.el
5544         * textmodes/reftex-vcr.el: New file, split out from reftex.el
5546 1999-08-16  Carsten Dominik  <cd@gnu.org>
5548         * textmodes/reftex.el: (reftex-pop-to-bibtex-entry): Fixed
5549         conflict with pop-up-frames.
5550         (reftex-special-environment-parsers): New constant.
5551         (reftex-label-alist): car of an entry can also be a function.
5552         (reftex-what-special-env): Cew function.
5553         (reftex-label-location): Call `reftex-what-special-env'.
5554         (reftex-compile-variables): Check for symbol in
5555         `reftex-label-alist'.
5556         (reftex-what-environment): Fixed bug with stacked environments of
5557         same kind (e.g. enumerate).
5558         (reftex-process-string): Preserve default directory.
5559         (reftex-label-alist-builtin): Changed prefixes of endnote and
5560         footnote.  Also the magic words.
5561         (reftex-reference): Interprete new option
5562         `reftex-fref-is-default'.
5563         (reftex-replace-prefix-escapes): Interprete new `%S' format.
5564         (reftex-toc-mouse-view-line): Command removed (had no binding).
5565         (reftex-everything-regexp): New function.
5566         (reftex-nearest-match): Made better.
5567         (reftex-toc-find-section): Use new version of
5568         `reftex-nearest-match'.
5569         (reftex-insert-docstruct): Adapted to work with the index stuff.
5570         (reftex-parse-from-file): Find index entries as well.
5571         (reftex-toc-toggle-index): New function
5572         (reftex-toc-map): `i' is now used to togle the index, File
5573         boundaries has been moved to `F'.
5574         (reftex-select-label-map): Toggling display of file boundaries is
5575         now on the `F' key, for consistency with `reftex-toc-map'.
5576         (reftex-erase-all-selection-and-index-buffers): Renamed from
5577         `reftex-erase-all-selection-buffer'.  Now also kills the index
5578         buffers.
5579         (reftex-viewing-cross-references): Customization group renamed
5580         from reftex-viewing-cross-references-and-citations.
5581         (reftex-index-macro-regexp,
5582         reftex-find-index-entry-regexp-format): New variables
5583         (reftex-macros-with-index): New variable
5584         (reftex-add-index-macros): New function
5585         (reftex-renumber-simple-labels, reftex-translate): Allow for
5586         multiple labels in a single ref command.
5587         (reftex-index-support): New customization group
5588         (reftex-support-index, reftex-index-special-chars,
5589         reftex-index-macros, reftex-index-default-macro,
5590         reftex-index-default-tag, reftex-index-math-format,
5591         reftex-index-section-letters, reftex-index-include-context,
5592         reftex-index-follow-mode, reftex-index-header-face,
5593         reftex-index-section-face, reftex-index-tag-face,
5594         reftex-index-face): New options
5595         (reftex-index-map, reftex-index-menu, reftex-last-index-file,
5596         reftex-index-tag, reftex-index-return-marker,
5597         reftex-index-restriction-indicator, reftex-index-restriction-data,
5598         reftex-index-macro-regexp, reftex-index-level-re,
5599         reftex-index-key-end-re, reftex-find-index-entry-regexp-format,
5600         reftex-everything-regexp-no-index, reftex-index-re,
5601         reftex-macros-with-index, reftex-index-macro-alist): New variables
5602         (reftex-index-help, reftex-index-macros-builtin,
5603         reftex-key-to-index-macro-alist, reftex-query-index-macro-prompt,
5604         reftex-query-index-macro-help): New constants
5605         (reftex-index-selection-or-word, reftex-index,
5606         reftex-default-index, reftex-update-default-index,
5607         reftex-index-complete-tag, reftex-index-select-tag,
5608         reftex-index-complete-key, reftex-index-update-taglist,
5609         reftex-index-globally, reftex-index-mode, reftex-index-show-entry,
5610         reftex-display-index, reftex-insert-index,
5611         reftex-index-insert-new-letter, reftex-get-restriction,
5612         reftex-index-pre-command-hook, reftex-index-post-command-hook,
5613         reftex-index-show-help, reftex-index-next, reftex-index-previous,
5614         reftex-index-toggle-follow, reftex-index-toggle-context,
5615         reftex-index-view-entry, reftex-index-goto-entry-and-hide,
5616         reftex-index-goto-entry, reftex-index-mouse-goto-line-and-hide,
5617         reftex-index-quit, reftex-index-quit-and-kill,
5618         reftex-index-goto-toc, reftex-index-rescan, reftex-index-Rescan,
5619         reftex-index-revert, reftex-index-switch-index-tag,
5620         reftex-index-restrict-to-section, reftex-index-widen,
5621         reftex-index-restriction-forward,
5622         reftex-index-restriction-backward, reftex-index-visit-location,
5623         reftex-index-analyze-entry, reftex-index-globalize,
5624         reftex-index-edit, reftex-index-toggle-range-beginning,
5625         reftex-index-toggle-range-end, reftex-index-edit-key,
5626         reftex-index-edit-attribute, reftex-index-edit-visual,
5627         reftex-index-edit-part, reftex-index-level-down,
5628         reftex-index-level-up, reftex-index-kill, reftex-index-undo,
5629         reftex-index-change-entry, reftex-index-goto-letter,
5630         reftex-add-index-macros, reftex-ensure-index-support,
5631         reftex-index-info-safe, reftex-index-info): New functions.
5634 1999-08-15  Richard M. Stallman  <rms@gnu.org>
5636         * paren.el (show-paren-mode): Support making show-paren-mode
5637         a buffer-local variable.  Don't check for a window system.
5638         (show-paren-function): Check whether show-paren-function is
5639         enabled in current buffer; do the right thing if not.
5640         Don't check for a window system.
5641         (show-paren-mode): Make it a user variable.
5643         * add-log.el (add-log-current-defun): Exclude all trailing whitespace.
5644         Handle `enum' like `struct'.
5646         * server.el (server-process-filter): If a client visits no buffers,
5647         close it immediately before recording it.
5649         * mail/mail-utils.el (mail-unquote-printable): Make it autoload.
5650         Optimize by calling concat just once.  Handle =\n sequence.
5651         (mail-unquote-printable-region): New command.
5652         (mail-quote-printable): Make it autoload.
5654 1999-08-15  Karl Heuer  <kwzh@gnu.org>
5656         * progmodes/octave-mod.el (octave-maintainer-address): Use gnu.org.
5658 1999-08-15  Yoshiki Hayashi  <t90553@mail.ecc.u-tokyo.ac.jp>
5660         * lisp/texinfmt.el: Handle @ifnottex.
5662 1999-08-15  Eli Zaretskii  <eliz@gnu.org>
5664         * frame.el (blink-cursor): Don't turn on cursor blinking for
5665         ms-dos.
5667         * faces.el (face-valid-attribute-values): Look in
5668         x-bitmap-file-path only for x and w32 window systems.
5670         * term/pc-win.el (x-list-fonts): Return "ms-dos", not "default".
5671         Do that if width is nil as well.
5672         (x-display-mm-height, x-display-mm-width): Update values.
5673         (x-colors): Compute the list from msdos-color-values.
5674         (x-select-enable-clipboard): Doc fix.
5675         (x-frob-font-weight, x-font-family-list): New functions.
5677 1999-08-15  Toby Speight  <Toby.Speight@streapadair.freeserve.co.uk>
5679         * window.el (shrink-window-if-larger-than-buffer): Don't try to
5680         back up from beginning of buffer.
5682 1999-08-13  Karl Heuer  <kwzh@gnu.org>
5684         * emacs-lisp/advice.el (ad-special-forms): Use track-mouse iff bound.
5686 1999-08-13  Alakazam Petrofsky  <Alakazam@Petrofsky.Berkeley.CA.US>
5688         * play/hanoi.el: Mostly rewritten.  Customized.  To support an s2G
5689         doomsday clock, speed control is added and changes are made to
5690         allow large numbers of rings: rings now show the whole ring
5691         number, not just the last digit; consecutive rings are allowed to
5692         be the same size when necessary to fit all the rings in the
5693         window; and poles can be oriented horizontally.  Face support is
5694         thrown in gratuitously.
5695         (hanoi): Changed default number of rings back to 3.
5696         (hanoi-unix, hanoi-unix-64): New commands
5697         (hanoi-horizontal-flag, hanoi-move-period, hanoi-use-faces,
5698         hanoi-pole-face, hanoi-base-face, hanoi-even-ring-face,
5699         hanoi-odd-ring-face): New variables.
5700         (hanoi-internal, hanoi-current-time-float, hanoi-put-face,
5701         hanoi-n, hanoi-insert-ring, hanoi-goto-char, hanoi-sit-for,
5702         hanoi-ring-to-pos, hanoi-pos-on-tower-p): New functions.
5703         (hanoi-0): Renamed from hanoi0, for symmetry with hanoi-n.
5704         (hanoi-topos, hanoi-draw-ring): Removed.
5706 1999-08-12  Gerd Moellmann  <gerd@gnu.org>
5708         * faces.el (face-valid-attribute-values): Return an alist for
5709         families on ttys.
5710         (face-read-integer): Handle unspecified face attributes.  Add
5711         completion for `unspecified'.
5712         (read-face-attribute): Handle unspecified font attributes.
5713         (face-valid-attribute-values): Add `unspecified' to lists so that
5714         it can be chosen via completion.
5715         (face-read-string): Don't recognize "none" as input.
5717 1999-08-10  Dave Love  <fx@gnu.org>
5719         * sendmail.el (mail-specify-envelope-from): Fix quoting of doc
5720         string.
5722         * sun-curs.el: Require sun-fns.
5724 1999-08-10  Dave Love  <fx@gnu.org>
5726         * autorevert.el (auto-revert-mode): Add autoload cookie.
5728         * hscroll.el, auto-show.el: Files deleted -- we have built-in
5729         hscroll.
5731         * simple.el (hscroll-step, hscroll-point-visible)
5732         (hscroll-window-column): Remove now we have the mentioned real
5733         horizontal autoscrolling.
5735 1999-08-10  Richard M. Stallman  <rms@gnu.org>
5737         * mail/sendmail.el (sendmail-send-it): Let mail-specify-envelope-from
5738         control use of -f option.
5739         (mail-specify-envelope-from): New variable.
5740         (mail-from-style): Doc fix.
5742         * emacs-lisp/easymenu.el (easy-menu-get-map-look-for-name): New fn.
5743         (easy-menu-get-map): New arg TO-MODIFY helps choose
5744         between local and global maps.
5745         (easy-menu-add-item): Pass TO-MODIFY arg to easy-menu-get-map.
5746         (easy-menu-change): Doc fix.
5748         * info-look.el (info-lookup-guess-c-symbol): Use skip-syntax-backward.
5749         (info-lookup-guess-default): Simplified and cleaned up.
5750         (info-lookup-guess-default*): Preserve point.
5752         * view.el (view-mode-disable): If buffer-read-only is nil,
5753         don't change it.
5755         * files.el (after-find-file): Disable View mode if buffer is no
5756         longer read-only.
5758         * view.el (view-mode-enable, view-mode-disable):
5759         Call force-mode-line-update.
5761 1999-08-10  Karl Heuer  <kwzh@gnu.org>
5763         * language/european.el, emacs-lisp/byte-opt.el: Fix provide call.
5764         * array.el, play/landmark.el, international/latin-3.el: Likewise.
5765         * sun-curs.el, term/sun-mouse.el, progmodes/simula.el: Likewise.
5767 1999-08-10  Alex Schroeder  <asc@bsiag.com>
5769         * ansi-color.el (ansi-color-to-text-properties): Added New state 5
5770         to prevent m-eating-bug.
5772 1999-08-10  Eli Zaretskii  <eliz@gnu.org>
5774         * term/pc-win.el (msdos-bg-mode): Remove.  Call
5775         frame-set-background-mode instead.  All callers changed.
5776         (msdos-face-setup): Don't force color display parameter, it is set
5777         by frame-set-background-mode.
5778         (make-msdos-frame): Call x-handle-reverse-video and
5779         face-set-after-frame-default.  Delete frame if creation failed.
5781         * faces.el (face-set-after-frame-default): Don't call
5782         make-face-x-resource-internal for the pc window-system.
5784 1999-08-10  Dave Love  <fx@melange.gnu.org>
5786         * emacs-lisp/advice.el (ad-make-single-advice-docstring): Treat
5787         case with no docstring specially.
5789 1999-08-09  Eli Zaretskii  <eliz@gnu.org>
5791         * complete.el (PC-do-completion): If completing on file name,
5792         reproduce str by concatenating its directory and basename parts.
5794 1999-08-07  Dave Love  <fx@gnu.org>
5796         * man.el (Man-softhyphen-to-minus): Revert previous change.  Avoid
5797         unibyte to multibyte conversion of search-forward (from Handa),
5798         but avoid the replacement if the language is Latin-N.
5800 1999-08-06  Richard Stallman  <rms@gnu.org>
5802         * emacs-lisp/eval-reg.el (elisp-eval-buffer): Handle all 5 args
5803         of eval-buffer.
5805         * international/mule.el (load-with-code-conversion):
5806         Pass t to eval-buffer for DO-ALLOW-PRINT.
5808 1999-08-06  Geoff Voelker  <voelker@cs.washington.edu>
5810         * ls-lisp.el (ls-lisp-delete-matching): List argument is now alist
5811         of filenames and attributes.
5812         (ls-lisp-insert-directory): Use directory-files-and-attributes
5813         for speed.
5815 1999-08-05  Dave Love  <fx@gnu.org>
5817         * auto-show.el (auto-show-mode): Fix :set.
5819         * widget.el (define-widget-keywords): Make dummy definition and
5820         comment-out its use.
5822 1999-08-04  Richard Stallman  <rms@gnu.org>
5824         * progmodes/tcl.el: Customized.
5826         * sql.el (sql-accumulate-and-indent): Instead of testing
5827         whether this is Emacs 20 before calling comint-accumulate,
5828         test whether comint-accumulate is defined.
5830 1999-08-04  Dave Love  <fx@gnu.org>
5832         * sgml-mode.el: Require outline when compiling.
5833         (sgml-mode-hook, html-mode-hook): Customize.
5834         (sgml-validate-command): Fix :version.
5835         (html-autoview-mode): Doc fix.
5837         * man.el (Man-softhyphen-to-minus): Fix for multibyte case, do
5838         nothing in Latin-N environment.
5840         * info.el (Info-find-node): Call info-initialize here.
5841         (info): Not here.
5842         (Info-file-list-for-emacs): Add message, dired-x, c, viper.
5844 1999-08-04  Richard Stallman  <rms@gnu.org>
5846         * ansi-color.el: New file.
5848 1999-08-04  Stefan Monnier  <monnier@cs.yale.edu>
5850         * dired.el (dired-string-replace-match): Return `nil' when no match
5851         found with global search.
5853         * ledit.el (ledit-zap-file, ledit-read-file, ledit-compile-file):
5854         * terminal.el (te-terminfo-directory):
5855         * mail/mailpost.el (post-mail-send-it):
5856         * mail/metamail.el (metamail-region):
5857         * progmodes/ada-mode.el (ada-tmp-directory):
5858         Use temporary-file-directory.
5860         * progmodes/compile.el (compilation-parsing-end,compilation-setup)
5861         (compilation-filter, compilation-forget-errors)
5862         (compilation-parse-errors): Use a marker instead of an integer for
5863         `compilation-parsing-end'.
5865         * progmodes/diff.el (diff-parse-differences):
5866         Use a marker instead of an integer for `compilation-parsing-end'.
5867         * textmodes/tex-mode.el (tex-compilation-parse-errors):
5868         Use a marker instead of an integer for `compilation-parsing-end'.
5870 1999-08-03  Richard Stallman  <rms@gnu.org>
5872         * buff-menu.el (Buffer-menu-mode-map): Add V for Buffer-menu-View.
5873         (Buffer-menu-mode): Doc fix.
5874         (Buffer-menu-view): New command.
5875         (Buffer-menu-view-other-window): New command.
5877 1999-08-03  Christopher J. Madsen  <chris_madsen@geocities.com>
5879         * replace.el (query-replace-regexp-eval)
5880         (replace-eval-replacement, replace-loop-through-replacements)
5881         (replace-match-string-symbols): New functions.
5882         (perform-replace): Allow REPLACEMENTS to be (FUNCTION . DATA).
5883         Use replace-loop-through-replacements.
5885 1999-08-03  Dave Pearson  <davep@hagbard.demon.co.uk>
5887         * play/5x5.el (5x5-mode-map): Bind C-p, C-n, C-b, C-f.
5888         (5x5): Doc fix.
5890 1999-08-03  Dave Love  <fx@gnu.org>
5892         * fortran.el (fortran-indent-new-line): Make it an alias
5893         for reindent-then-newline-and-indent.
5895 1999-08-03  Didier Verna  <verna@inf.enst.fr>
5897         * rect.el: All functions rewritten, except when noted above
5898         their declaration.  Below is a list of interface changes.
5899         (apply-on-rectangle): New function, mostly replaces
5900         `operate-on-rectangle'.  All callers changed.
5901         (move-to-column-force): Pass new second argument to `move-to-column'.
5902         (kill-rectangle): Added optional prefix arg to fill lines.
5903         (delete-rectangle): Ditto.
5904         (delete-whitespace-rectangle): Ditto.
5905         (delete-extract-rectangle): Ditto.
5906         (open-rectangle): Ditto.
5907         (clear-rectangle): Ditto.
5908         (delete-whitespace-rectangle-line): New function.
5909         (delete-rectangle-line): Added third arg FILL.
5910         (delete-extract-rectangle-line): Ditto.
5911         (open-rectangle-line): Ditto.
5912         (clear-rectangle-line): Ditto.
5914 1999-08-03  Ray Blaak  <blaak@gnu.org>
5916         * progmodes/delphi.el: New file.
5918 1999-08-02  Richard Stallman  <rms@gnu.org>
5920         * textmodes/outline.el (outline-previous-heading): New function.
5921         (outline-up-heading-all): Use outline-previous-heading.
5922         (outline-next-heading): Delete definition inserted yesterday.
5924 1999-08-01  Richard Stallman  <rms@gnu.org>
5926         * textmodes/outline.el (outline-next-heading): New function.
5927         (outline-up-heading-all): New function.
5928         (outline-font-lock-level): Using outline-up-heading-all.
5929         Tell outline-back-to-heading to accept invisible headings.
5931         * simple.el (shell-command-on-region): EXIT-STATUS can be a string.
5933         * mail/mh-utils.el (mh-find-path-run): New variable.
5934         (mh-find-path): Test and set that.
5935         Set mail-user-agent only the first time this function is run.
5936         (mail-user-agent): Defvar deleted.
5938         * info.el (info-initialize): New function.
5939         (info): Call info-initialize.
5940         (Info-directory-list): Initialize to nil,
5941         so info-initialize will set it up for real.
5943 1999-08-01  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
5945         * calendar/calendar.el (european-date-diary-pattern): Fix pattern so it
5946         does not interpret a time as the year in a day-month entry.
5948         * calendar/diary-lib.el: Change syntax table entry for colon in
5949         the diary as part of the european-date-diary-pattern fix.
5951 1999-08-01  Eli Zaretskii  <eliz@gnu.org>
5953         * international/mule.el (set-auto-coding): Allow whitespace before
5954         and after the "variable: value" pair.
5956 1999-07-30  Ken'ichi Handa  <handa@gnu.org>
5958         * mail/sendmail.el (sendmail-coding-system): Doc-string fixed.
5959         (default-sendmail-coding-system): Doc-string fixed.
5961 1999-07-30  Dave Love  <fx@gnu.org>
5963         * subr.el (assoc-delete-all): New function, renamed from
5964         frame-delete-all.
5966         * frame.el: Change comments to doc strings and other doc fixes.
5967         (frame-delete-all): Moved to subr.el as `assoc-delete-all'.
5968         Callers changed.
5969         (set-background-color, set-foreground-color, set-cursor-color)
5970         (set-mouse-color, set-border-color): Offer completion of colours.
5971         (cursor): Add :version to defgroup.
5973         * facemenu.el (list-colors-display): Make it work on ttys.
5974         (facemenu-read-color): Likewise.
5976 1999-07-30  Richard M. Stallman  <rms@gnu.org>
5978         * frame.el (frame-notice-user-settings): If background
5979         color has been changed, update background-mode from it,
5980         then update faces.
5982 1999-07-30  Wolfgang Rupprecht  <wolfgang@wsrcc.com>
5984         * net-utils.el (finger): Don't do indirect fingering.
5986 1999-07-30  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
5988         * cal-tex.el (cal-tex-cursor-filofax-daily): Add possibility of
5989         rules.  Add separator at end of holidays.
5990         (cal-tex-rules): New customizable variable.
5991         (cal-tex-latexify-list): Add optional parameter to put separator
5992         at end.
5994 1999-07-30  Bill Richter  <richter@steenrod.math.nwu.edu>
5996         * textmodes/fill.el (fill-individual-paragraphs): Calculate new
5997         fill prefix on each line while looping to the end of paragraph.
5998         End paragraph if it's longer than the existing fill prefix.
6000         * textmodes/fill.el (fill-context-prefix): Doc fix.
6002 1999-07-30  Dave Love  <fx@gnu.org>
6004         * font-lock.el (jit-lock): Fix :load, add :version.
6006 1999-07-30  Eli Zaretskii  <eliz@gnu.org>
6008         * term/pc-win.el (msdos-face-setup): Register standard colors in
6009         Vface_tty_color_alist.
6010         (face-color-supported-p, face_color_gray_p): New functions.
6012         * loadup.el: Don't load scroll-bar unless x-toolkit-scroll-bars-p
6013         is bound.
6015         * startup.el (command-line): Don't register default colors for
6016         MSDOS window-system.
6018 1999-07-29  Dave Love  <fx@gnu.org>
6020         * f90.el (f90-mode-syntax-table): Change backslash to escape, not
6021         charquote.
6023         * lisp-mode.el (eval-defun): Re-written to avoid
6024         capturing variables.
6026         * picture.el (picture-beginning-of-line): Don't call
6027         hscroll-point-visible now we have real autoscrolling.
6028         (picture-end-of-line, picture-newline, picture-open-line):
6029         Likewise.
6031         * international/latin-8.el: New file.
6032         * international/latin-9.el: New file.
6034 1999-07-28  Dave Love  <fx@gnu.org>
6036         * mouse.el (x-fixed-font-alist): Add lucidasanstypewriter.
6038         * msb.el: Require cl only when compiling.
6039         (msb--home-dir): Deleted.
6040         (msb--format-title): Use abbreviate-file-name.
6041         (msb--choose-file-menu): Simplify string comparison.
6043 1999-07-28  Gerd Moellmann  <gerd@gnu.org>
6045         * faces.el (toolbar): Add face definition for mono displays.
6047 1999-07-27  Richard M. Stallman  <rms@gnu.org>
6049         * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
6051         * frame.el (frame-initialize): When setting frame-initial-frame-alist,
6052         force copying of default-frame-alist.
6054 1999-07-26  Ken'ichi Handa  <handa@gnu.org>
6056         * ps-mule.el (ps-mule-begin-job): Fix malformed regexp.
6058 1999-07-26  Richard M. Stallman  <rms@gnu.org>
6060         * frame.el (set-mouse-color): If new color is nil,
6061         really respecify the current color.
6063 1999-07-26  Gerd Moellmann  <gerd@gnu.org>
6065         * faces.el (bitmap-area): Change background of face `bitmap-area'
6066         to white for mono displays.
6068 1999-07-26  Kenichi Handa  <handa@etl.go.jp>
6070         * international/ccl.el (ccl-embed-symbol): New function.
6071         (ccl-program-p): Deleted.  Now it's implemented in C code.
6072         (ccl-compile-call): Use ccl-embed-symbol to embed a symbol.
6073         (ccl-compile-translate-character): Likewise.
6074         (ccl-compile-map-single): Likewise.
6075         (ccl-compile-multiple-map-function): Likewise.
6076         (declare-ccl-program): Doc-string modified.
6077         (check-ccl-program): Check compiled CCL code by ccl-program-p.
6079 1999-07-25  Ken'ichi Handa  <handa@etl.go.jp>
6081         * textmodes/fill.el (fill-region-as-paragraph): Fix previous change.
6083 1999-07-25  Markus Rost  <rost@gnu.org>
6085         * cus-edit.el (custom-save-variables, custom-save-faces):  Sort
6086         the entries to make custom-file more readable.
6088 1999-07-25  Richard M. Stallman  <rms@gnu.org>
6090         * cus-edit.el (custom-save-delete): Avoid error for empty .emacs.
6092         * emacs-lisp/edebug.el: Delete compatibility code.
6093         (edebug-next-token-class): If . is followed by a digit,
6094         return `symbol' for the token class.
6096         * startup.el (command-line): If we don't find the user's init file,
6097         set user-init-file to nil.
6099 1999-07-25  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
6101         * info-look.el (info-lookup-interactive-arguments): Add optional
6102         argument query for new choice of help mode.
6103         (info-lookup-symbol):  Use it.
6104         (info-lookup-file): Ditto.
6105         (info-lookup): Don't switch to other window, if already in Info
6106         buffer.
6108 1999-07-23  Dave Love  <fx@gnu.org>
6110         * fortran.el (fortran-mode-syntax-table): Change `\' to `\'
6111         syntax.
6112         (fortran-fontify-string, fortran-match-!-comment): Deleted.
6113         (fortran-font-lock-syntactic-keywords): New variable.
6114         (fortran-mode): Use it.
6115         (fortran-font-lock-keywords-1): Don't do comments.
6116         (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Save
6117         match data.
6119         * textmodes/sgml-mode.el (sgml-validate-command): Use nsgmls.
6121         * msb.el (msb-menu-bar-update-buffers): Renamed from
6122         menu-bar-update-buffers.
6123         (msb-custom-set, msb--toggle-menu-type): Call
6124         msb-menu-bar-update-buffers.
6125         (msb-mode): Revise the hook setting.
6127         * font-lock.el (turn-on-font-lock): Use tty-display-color-p.
6129 1999-07-23  Gerd Moellmann  <gerd@gnu.org>
6131         * font-lock.el, help.el, simple.el: Re-integrate previously
6132         described changes that were lost due to errors while checking them
6133         in.
6135 1999-07-23  Kevin Blake  <kblake@ticnet.com>
6137         * font-lock.el (lisp-font-lock-keywords-2): Fix regexp.
6139 1999-07-23  Ken'ichi Handa  <handa@etl.go.jp>
6141         * international/encoded-kb.el
6142         (encoded-kbd-self-insert-iso2022-7bit): Don't insert the character
6143         but push it to unread-command-events.
6144         (encoded-kbd-self-insert-iso2022-8bit): Likewise.
6145         (encoded-kbd-self-insert-sjis): Likewise.
6146         (encoded-kbd-self-insert-big5): Likewise.
6148         * textmodes/fill.el (fill-region-as-paragraph): Avoid backing up
6149         before left margin and fill-prefix by fill-find-break-point.
6151 1999-07-21  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
6153         * info-look.el (info-lookup-setup-mode): Don't give up, if
6154         info-lookup-make-completions returns an error.
6155         (info-lookup-maybe-add-help :mode 'latex-mode): Use Info file
6156         name latex, not latex2e.
6158 1999-07-21  Richard M. Stallman  <rms@gnu.org>
6160         * replace.el (perform-replace): Turn off case-fold-search
6161         if FROM-STRING argument has uppercase in it.
6163 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6165         * jit-lock.el (jit-lock-after-change): Do it only if jit-lock
6166         mode is on.  Don't use end of changed text.
6168 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6170         * cl-extra.el (cl-make-hash-table): Renamed from make-hash-table.
6171         (cl-hash-table-p): Renamed from hash-table-p.
6172         (cl-hash-table-count): Renamed from hash-table-count.
6173         (maphash): Alias to cl-maphash removed.
6174         (gethash): Likewise.
6175         (puthash): Likewise.
6176         (remhash): Likewise.
6177         (clrhash): Likewise.
6179 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6181         * jit-lock.el (jit-lock-stealth-fontify): Don't call sit-for with
6182         third arg non-nil.  See comment there why this isn't a good idea.
6184 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6186         * jit-lock.el (jit-lock-stealth-fontify): Use with-temp-message.
6188         * jit-lock.el (jit-lock-stealth-fontify): Widen buffer, and call
6189         sit-for with 3rd arg non-nil to prevent redisplay.
6191 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6193         * image.el (image-type-from-file-header): If file doesn't
6194         have a directory part, add data-directory.
6196 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6198         * tooltip.el (tooltip-gud-tips-p): Set default to nil.
6199         (tooltip-activate-mouse-motions-if-enabled): Don't activate mouse
6200         motion handling when tooltip-gud-tips-p is nil.
6202 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6204         * tooltip.el (tooltip-mode): Don't use `plusp'.
6205         (tooltip-active): Use initial value of nil.
6207         * jit-lock.el (jit-lock-mode): Don't use `plusp'.
6209 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6211         * bindings.el (make-mode-line-mouse-sensitive): Add key
6212         definitions for `top-line'.
6214 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6216         * faces.el (top-line): New face.
6218 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6220         * image.el (image-type-regexps): Add regexp for PS files.
6222 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6224         * faces.el (set-face-attribute): Fix wrong handling of frame
6225         begin equal to t.
6227 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6229         * image.el (image-type-regexps): Add PNG format.
6231 1999-07-21  Dave Love  <fx@gnu.org>
6233         * bindings.el (mode-line-modified): New variable.
6234         (mode-line-mode-menu-1): Switch to appropriate window before
6235         showing menu.
6237 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6239         * faces.el (face-underline): Removed.
6240         (face-underline-color): Ditto.
6242 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6244         * faces.el (face-x-resources): Fix typo.
6246 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6248         * faces.el: Remove handling of `:relief', extend handling of
6249         `:box'.
6250         (frame-set-background-mode): Choose new defface specs after
6251         frame parameters have changed.
6253         * cus-face.el: Ditto.
6255 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6257         * custom.el (defface): Extend documentation to include new
6258         face attributes.
6260         * cus-face.el (custom-face-attributes): Add overline,
6261         strike-through, box.
6263         * faces.el (face-valid-attribute-values): Handle overline,
6264         strike-through, box.
6265         (face-attribute-name-alist): Add pairs for new face attributes.
6266         (describe-face): Handle new face attributes.
6268 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6270         * faces.el (face-x-resources): Add overline, strike-through, box.
6272 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6274         * enriched.el (enriched-translations): Add `display' and
6275         "x-display".
6276         (enriched-handle-display-prop): New.
6277         (enriched-decode-display-prop): New.
6279         * format.el (top-level): Give `display' property
6280         `format-list-atomic-p.
6281         (format-annotate-single-property-change): Test that property.
6282         If present, treat list property values like atoms.
6284 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6286         * cus-face.el (custom-face-attributes): Use `choice' everywhere
6287         so that "*" can be entered.
6289 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6291         * cus-face.el (custom-face-attributes): Don't use `#''.
6293 1999-07-21  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
6295         * cus-face.el (custom-face-attributes): Return underline
6296         face attribute directly from the second lambda of underline.
6298 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6300         * jit-lock.el (jit-lock-stealth-verbose): Set to nil.
6302         * frame.el (after-setting-font-hooks): New variable.
6303         (set-frame-font): Run those hooks.
6305         * jit-lock.el (jit-lock-function): Use font-lock-fontify-region.
6307         * faces.el (set-face-attribute): Fix doc string.
6309 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6311         * cus-face.el (custom-face-attributes): Accept color name.
6313         * faces.el (face-underline-p): Accept unspecified underlining.
6314         (face-underline): Ditto.  Fix doc string.
6316 1999-07-21  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
6318         * faces.el (face-underline-color): New function.
6320 1999-07-21  Masatake Yamato  <masata-y@is.aist-nara.ac.jp>
6322         * cus-face.el (custom-face-attributes): Support underline coloring.
6323         Added slot to choose a color.
6325         * faces.el (face-underline): New function.
6326         (face-underline-p): Support underline coloring.
6327         Return nil only if the underline attribute is 'normal.
6328         (set-face-underline): New function.
6329         (face-valid-attribute-values): Support underline coloring.
6331 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6333         * image.el (insert-image): Use `display' instead of `glyph'
6334         as text property name.
6335         (put-image): Ditto.
6336         (image-type-from-file-header): Use insert-file-contents-literally.
6338 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6340         * easymenu.el (easy-menu-do-add-item): Don't use the empty
6341         string to indicate separators.
6343 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6345         * jit-lock.el (jit-lock-stealth-fontify): Bind message-log-max
6346         instead of message-log.
6348 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6350         * faces.el (bitmap-area): New face.
6352 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6354         * image.el (insert-image): New.
6356 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6358         * frame.el (blink-cursor): Set the symbol's value.
6359         (show-trailing-whitespace): Change group to font-lock.
6361 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6363         * jit-lock.el: New.
6364         * font-lock.el: Add jit-mode as new support mode.
6366         * font-lock.el (font-lock-fontify-keywords-region): Stop when
6367         reaching end instead of letting re-search-forward signal an error.
6368         (demand-lock-mode): New.
6369         (font-lock-turn-on-thing-lock): Add demand-lock-mode.
6370         (font-lock-turn-off-thing-lock): Ditto.
6371         (font-lock-after-fontify-buffer): Ditto.
6372         (font-lock-after-unfontify-buffer): Ditto.
6374 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6376         * gs.el: New file.
6378         * startup.el (command-line-1): Activate tooltip mode if
6379         interactive.
6381 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6383         * faces.el (toolbar): Grey default background.
6384         (modeline): Ditto.
6386         * image.el (image-type-regexps): New.
6387         (image-type-from-file-header): New.
6388         (create-image): Call it.
6390 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6392         * image.el: New file.
6394 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6396         * bindings.el (mode-line-format): Replace `mode-name' with
6397         `(:eval mode-line-mode-name)'.
6398         (mode-line-mode-name): New.
6399         (make-mode-line-mouse-sensitive): Don't change default value
6400         of `mode-name'.
6402 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6404         * tooltip.el: New file.
6406 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6408         * bindings.el (make-mode-line-mouse-sensitive): Use down-mouse-3
6409         instead of mouse-3 to pop up menus.
6410         (mode-line-kill-buffer): Removed.
6411         (make-mode-line-mouse-sensitive): Pop mouse buffer menu over
6412         buffer name.
6413         (mode-line-buffer-menu-1): Removed.
6415         * startup.el (command-line-1): Call make-mode-line-mouse-sensitive.
6417         * bindings.el (mode-line-buffer-identification-keymap): New.
6418         (mode-line-buffer-menu-keymap): New.
6419         (mode-line-mode-menu-keymap): New.
6420         (mode-line-unbury-buffer): New.
6421         (mode-line-other-buffer): New.
6422         (mode-line-kill-buffer): New.
6423         (mode-line-buffer-menu-1): New.
6424         (mode-line-mode-menu-1): New.
6425         (make-mode-line-mouse-sensitive): New.
6427 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6429         * help.el (describe-key-briefly): Handle mode line strings
6430         with local-map properties.
6431         (describe-key): Ditto.
6432         (mode-line-key-binding): New.
6434 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6436         * scroll-bar.el (scroll-bar-timer): New.
6437         (scroll-bar-toolkit-scroll): Start and cancel scroll-bar-timer.
6439 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6441         * scroll-bar.el (scroll-bar-toolkit-scroll): Handle `top'
6442         and `bottom'.
6444 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6446         * scroll-bar.el (scroll-bar-toolkit-scroll): New.
6447         (global): Use different key bindings if using tookit scroll bars.
6449 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6451         * faces.el (modeline): Define mode line face with relief for
6452         class color, only.
6453         (toolbar): New face.
6455 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6457         * frame.el (frame-initialize): Set frame-creation-function to
6458         tty-create-frame-with-faces.
6460         * faces.el (frame-set-background-mode): Make it work for
6461         window-system nil.
6463         * faces.el (tty-create-frame-with-faces): New.
6464         (face-set-after-frame-default): Make it work for TTY frames.
6466 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6468         * faces.el (face-valid-attribute-values): Use tty-defined-colors.
6469         Return a list of one font family for TTYs.  Don't return bitmap
6470         file paths for TTY frames.
6472         * faces.el: Add face specs for tty displays to basic faces.
6474         * font-lock.el (font-lock-comment-face): Add spec for color tty.
6475         (font-lock-string-face): Ditto.
6476         (font-lock-keyword-face): Ditto.
6477         (font-lock-builtin-face): Ditto.
6478         (font-lock-function-name-face): Ditto.
6479         (font-lock-variable-name-face): Ditto.
6480         (font-lock-type-face): Ditto.
6481         (font-lock-constant-face): Ditto.
6482         (font-lock-warning-face): Ditto.
6484 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6486         * startup.el (command-line): Register default tty colors.
6488         * faces.el (face-spec-set-match-display): Recognize `type tty'.
6490 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6492         * faces.el (modeline): For X frames, use a modeline with relief.
6494 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6496         * faces.el (frame-update-faces): Copied from 20.2.
6497         (frame-update-face-colors): Ditto.  Code removed that isn't
6498         applicable in the new face implementation.
6500 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6502         * frame.el (show-trailing-whitespace): New.
6504         * faces.el (trailing-whitespace): New basic face.
6506 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6508         * cus-face.el (custom-facep): Always define as alias for facep.
6510         * cus-face.el (custom-face-attributes): Use choice widgets.
6511         Remove :bold and :italic.
6513 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6515         * faces.el (face-charset-registries): Removed since fontset.el
6516         is no always loaded.
6518 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6520         * faces.el (internal-get-face): Added as obsolete function for
6521         compatibility.
6523 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6525         * frame.el (blink-cursor-end): Call show-cursor.
6526         (blink-cursor-mode): Ditto.
6528 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6530         * faces.el (face-spec-reset-face): Reset all attributes to
6531         `unspecified'.
6532         (face-spec-set): Use it.
6534 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6536         * faces.el (read-all-face-attributes): Bug fix.
6537         (face-read-integer): Allow nil default value.
6538         (face-valid-attribute-values): Use symbol names of attribute
6539         values for completion list.
6541 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6543         * faces.el (internal-find-face): Define for compatibility with
6544         20.2.
6545         (face-id): Likewise.
6547         * faces.el (face-id): Return the ID of a realized face for ASCII.
6549         * fontset.el (x-charset-registries): Removed.  Now in faces.el.
6550         (x-complement-fontset-spec): Use face-charset-registries.
6552         * faces.el (face-font-selection-order): Set font selection order
6553         from Lisp.
6554         (face-alternative-font-family-alist): Set alternative font
6555         families from Lisp.
6557 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6559         * faces.el (set-face-charset-registries): Set symbol value.
6561 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6563         * faces.el (face-set-after-frame-default): Call function
6564         internal-merge-in-global-face.
6566 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6568         * faces.el (face-list): Return symbols from face-global-alist.
6570         * faces.el (face-list): Return a copy of the face name list so
6571         that it cannot be modified from outside (facemenu.el uses
6572         nreverse, for example).
6574         * cus-face.el (custom-face-attributes): Add :bold and :italic
6575         for compatibility with old code.
6577         * faces.el (set-face-attributes-from-resources): Additional
6578         frame parameter.
6579         (make-face-x-resource-internal): Set attributes from resources
6580         for a given frame or all frames.
6582 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6584         * faces.el (all-faces): Removed.
6586         * custom.el (defface): Add new face attributes to function
6587         comment.
6589         * font-lock.el (font-lock-comment-face): Use new face attribute
6590         names.
6591         (font-lock-string-face): Ditto.
6592         (font-lock-keyword-face): Ditto.
6593         (font-lock-builtin-face): Ditto.
6594         (font-lock-function-name-face): Ditto.
6595         (font-lock-variable-name-face): Ditto.
6596         (font-lock-type-face): Ditto.
6597         (font-lock-reference-face): Ditto.
6598         (font-lock-warning-face): Ditto.
6599         ((boundp 'font-lock-face-attributes)): Ditto.
6601         * cus-face.el (custom-face-attributes): Use new face attributes.
6603         * faces.el (set-face-attribute-from-resource): Initialize
6604         from resources only for X and W32.
6606         * cus-face.el (custom-declare-face): Don't make frame-local
6607         faces.
6609         * faces.el (describe-face): Use princ instead of insert.
6611         * faces.el: Add XLFD manipulation functions from 20.2 again
6612         because fontset.el uses them.
6613         (face-set-after-frame-default): Add empty definition.
6615 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6617         * faces.el (make-face): Correct typo.
6618         (set-face-attribute-from-resource): Use let*.
6619         (face-underline-p): Correct typo.
6620         (face-inverse-video-p): Ditto.
6621         (set-face-stipple): Ditto.
6622         (face-read-string): Make completion-list optional parameter.
6624 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6626         * faces.el (face-charset-registries): Alist mapping charset
6627         symbols to registries and encoding.
6629 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6631         * frame.el (blink-cursor-mode): Use interactive spec "P".
6633 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6635         * frame.el (blink-cursor-mode): Function to toggle blinking cursor
6636         mode.  The cursor of selected_window blinks if the mode is enabled.
6638 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6640         * simple.el (next-history-element): Set point to the end of the
6641         prompt if minibuffer-prompt-in-buffer.
6643 1999-07-21  Gerd Moellmann  <gerd@gnu.org>
6645         * faces.el (x-font-regexp): Add sub-expression parentheses for
6646         several font name components.
6648 1999-07-21  Gerd Moellmann  <gerd@acm.org>
6650         * faces.el (set-face-relief): Use index 12 for relief.
6651         (face-fill-in): Set relief from data.
6652         (internal-make-face): Init relief to zero.
6654         * faces.el (face-spec-set): Call modify-face with additional
6655         parameters for relief and fixed-p.
6657 1999-07-21  Gerd Moellmann  <gerd@acm.org>
6659         * cus-face.el: ':fixed and ':relief added.
6661         * faces.el (describe-face): Add fixed font attribute and relief.
6662         (face-attr-match-p): Ditto.
6663         (face-attr-construct): Ditto.
6664         (face-spec-set): Ditto.
6666 1999-07-21  Gerd Moellmann  <gerd@acm.org>
6668         * faces.el (internal-make-face): Function to create a Lisp vector
6669         suitable for representing a face.
6670         (make-face): Use it instead of make-vector.
6671         (x-create-frame-with-faces): Use it instead of vector.
6672         (internal-facep): Increase vector size to 14.
6673         (internal-make-face): Ditto.
6674         (face-relief): Access relief thickness.
6675         (face-fixed-p): Access fixed font attribute.
6676         (set-face-fixed-p): Set fixed font attribute.
6677         (set-face-relief): Set relief attribute.
6678         (internal-face-interactive-int): Read int attribute of face.
6679         (modify-face): Add fixed-p and relief parameters.
6680         (copy-face): Handle fixed-p and relief.
6681         (face-equal): Compare fixed-p and relief.
6682         (face-differs-from-default-p): Ditto.
6683         (face-nontrivial-p): Add fixed-p and relief.
6685 1999-07-21  Gerd Moellmann  <gerd@acm.org>
6687         * faces.el (eval-when-compile): Add set-face-shadow-thickness.
6688         (internal-facep): Increase vector size.
6689         (make-face): Ditto.
6690         (face-shadow-thickness): Added.
6691         (set-face-shadow-thickness): Added.
6692         (modify-face): Add optional shadow-thickness parameter.
6693         (make-face-x-resource-internal): Add shadows.
6694         (copy-face): Ditto.
6695         (face-equal): Ditto.
6696         (face-differs-from-default-p): Ditto.
6697         (face-nontrivial-p): Ditto.
6698         (face-attr-match-p): Ditto.
6699         (face-attr-construct): Ditto.
6700         (face-spec-set): Ditto.
6701         (face-fill-in): Ditto.
6703 1999-07-21  Gerd Moellmann  <gerd@acm.org>
6705         * bench.el (bench-mark-split-window): New bench mark.
6707 1999-07-21  Gerd Moellmann  <gerd@acm.org>
6709         * faces.el (set-face-font): Don't pass default font to
6710         x-resolve-font so that font will not have to be of the same
6711         size.
6713 1999-07-20  Dave Love  <fx@gnu.org>
6715         * wid-edit.el (widget-use-overlay-change): Uncustomize and make it
6716         unconditionally t.
6718 1999-07-20  Karl Heuer  <kwzh@gnu.org>
6720         * font-lock.el (c++-font-lock-extra-types): Add "type_info".
6722 1999-07-20  Dave Love  <fx@gnu.org>
6724         * help.el (describe-variable): Fix test for customizability.
6726         * simple.el (append-to-buffer, prepend-to-buffer, copy-to-buffer):
6727         Check for readonly buffer in interactive spec.
6728         (zap-to-char, kill-line, kill-region, comment-region, kill-word)
6729         (backward-kill-word): Add * to interactive spec.
6731         * underline.el (underline-region, ununderline-region): Add * to
6732         interactive spec.
6734         * fill.el (canonically-space-region, justify-current-line): Add *
6735         to interactive spec.
6736         (fill-region-as-paragraph, fill-paragraph, fill-region)
6737         (fill-nonuniform-paragraphs, fill-individual-paragraphs): Check
6738         readonly buffer in interactive spec.
6740         * paragraphs.el: (kill-paragraph, backward-kill-paragraph)
6741         (backward-kill-sentence, kill-sentence): Add * to interactive
6742         spec.
6744 1999-07-19  Richard M. Stallman  <rms@gnu.org>
6746         * dired-aux.el (dired-do-shell-command): Doc fix.
6748         * shell.el (shell-unquote-argument): New function.
6749         (shell-directory-tracker): Use shell-unquote-argument.
6750         * comint.el (comint-arguments): Handle \ followed by space or tab.
6752 1999-07-19  John Wiegley  <jwiegley@borland.com>
6754         * term.el (ansi-term-fg-faces-vector): Added support for ANSI
6755         color codes 39 and 49, which by the way lynx uses them seem to
6756         mean "foreground reset" and "background reset".
6758 1999-07-19  Karl Heuer  <kwzh@gnu.org>
6760         * font-lock.el (c++-keywords): Add "typeid".
6762         * term/w32-win.el (mouse-set-font): If user uses w32 dialog but
6763         selects no font, treat that as zero selections, not one.
6765 1999-07-19  Dave Love  <fx@gnu.org>
6767         * info.el (Info-search): Don't lose with empty regexp.
6769         * version.el: Cater for (free) `ident' program, not `which'.
6771         * hl-line.el: New file.
6773         * mouse.el (mouse-major-mode-menu): Default to menu-bar-edit-menu
6774         for modes which don't define menus.
6776 1999-07-16  Richard M. Stallman  <rms@gnu.org>
6778         * webjump.el (webjump-sample-sites): Update some URLs.
6780 1999-07-14  Richard Stallman  <rms@gnu.org>
6782         * Version 20.4 released.
6784 1999-07-14  Andreas Schwab  <schwab@gnu.org>
6786         * compare-w.el (compare-windows): Try to find the next window in
6787         the current frame before looking at the other frames.
6789 1998-07-12  Oleg S. Tihonov  <ost@benetnash.ffke-campus.mipt.ru>
6791         * language/cyrillic.el ("Cyrillic-KOI8", "Cyrillic-ALT"):
6792         Use cyrillic-jcuken as default input method.
6794 1999-07-12  Richard Stallman  <rms@gnu.org>
6796         * progmodes/cc-engine.el (c-inside-bracelist-p): Tighter test for
6797         Java anonymous array expressions ("new Foo[] {.. bracelist ..}").
6799         * ispell.el (ispell-dictionary-alist-6): Change charset for Russian.
6800         (ispell-local-dictionary-alist): Add koi8-r for character set.
6802         * textmodes/flyspell.el (flyspell-get-word):
6803         Add special handling for when ispell-otherchars is empty.
6805 1999-07-12  Espen Skoglund  <espensk@stud.cs.uit.no>
6807         * progmodes/pascal.el (pascal-beg-of-defun): More intuitive behavior
6808         when having nested functons.
6809         (pascal-indent-nested-functions) (pascal-indent-line)
6810         (pascal-calculate-indent) (pascal-get-lineup-indent): Support for
6811         indenting nested functions.
6813 1999-07-09  Richard Stallman  <rms@gnu.org>
6815         * add-log.el (add-log-current-defun): Remove trailing `=' in C modes.
6817 1999-07-08  Espen Skoglund  <espensk@stud.cs.uit.no>
6819         * pascal.el (pascal-calculate-indent): Fixed a bug occuring when
6820         the `end' keyword was in the very beginning of the buffer.
6822 1999-07-08  Richard Stallman  <rms@gnu.org>
6824         * emacs-lisp/easy-mmode.el (easy-mmode-define-keymap): Doc fix.
6826         * term.el (term-emulate-terminal): Avoid infinite loop
6827         in strange case where minibuffer window is selected but not active.
6829 1999-07-07  Stephen Eglen  <stephen@gnu.org>
6831         * progmodes/octave-inf.el (inferior-octave-directory-tracker):
6832         Change regexp so that it doesn't match commands beginning with `cd'.
6834 1999-07-07  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
6836         * mail/rmail.el (mail-unsent-separator): Add a missing \\|.
6838 1999-07-06  Richard Stallman  <rms@gnu.org>
6840         * hscroll.el (hscroll-minibuffer-hook): New function.
6841         (hscroll-global-mode): Add and remove that hook.
6842         Set hscroll-old-truncate-was-global's default value.
6844 1999-07-05  Richard Stallman  <rms@gnu.org>
6846         * files.el (revert-buffer): Don't preserve point here.
6847         (revert-buffer-insert-file-contents-function): Doc fix.
6849         * isearch.el (isearch-process-search-char): Write octal 200 correctly.
6851         * startup.el (normal-top-level-add-subdirs-to-load-path): Avoid
6852         doing a `stat' when it isn't necessary because that can cause
6853         trouble when an NFS server is down.
6855 1999-07-04  Richard Stallman  <rms@gnu.org>
6857         * hscroll.el (hscroll-window-maybe): Do nothing in the minibuffer.
6859 1999-07-03  Richard Stallman  <rms@gnu.org>
6861         * isearch.el (isearch-quote-char): Call unibyte-char-to-multibyte
6862         for \200...\240 also.
6863         (isearch-printing-char): Use unibyte-char-to-multibyte.
6865 1999-07-02  Richard Stallman  <rms@gnu.org>
6867         * frame.el (minibuffer-frame-alist): Use defcustom.
6868         (pop-up-frame-alist): Likewise.
6869         (initial-frame-alist): Specify * in the doc string.
6871         * hscroll.el (hscroll-mode): Make it a permanent local.
6872         (hscroll-mode): Don't cancel the timer
6873         if HScroll mode is enabled in some other buffer.
6875         * isearch.el (isearch-done): If search ends in middle of intangible
6876         text (due to text property), move on to the limit of that text.
6878 1999-07-01  Andrew Innes  <andrewi@gnu.org>
6880         * man.el (Man-build-man-command): Use value of null-device,
6881         instead of hard-coding "/dev/null".
6883         * dos-w32.el (untranslated-canonical-name): Avoid expanding
6884         ange-ftp file names, which might force ange-ftp to prompt for a
6885         password.
6887         * ange-ftp.el (ange-ftp-load): Bind load-force-doc-strings to t,
6888         to prevent references to temp files.
6890 1999-06-30  Richard Stallman  <rms@gnu.org>
6892         * progmodes/sh-script.el (sh-feature): If nothing is known
6893         about the given shell, use the values for `sh'.
6895 1999-06-30  Andre Spiegel  <spiegel@inf.fu-berlin.de>
6897         * vc.el (vc-fetch-cvs-status): Use "-l" option for "cvs status",
6898         to make it non-recursive.
6900         * vc-hooks.el (vc-find-cvs-master): Set case-fold-search correctly.
6902 1999-06-29  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
6904         * auto-show.el (auto-show-mode): Fix Typo in :set.
6906 1999-06-29  Richard M. Stallman  <rms@gnu.org>
6908         * progmodes/sh-script.el (sh-mode): When setting syntax
6909         table, default to the standard one.
6911 1999-06-27  Richard M. Stallman  <rms@gnu.org>
6913         * emacs-lisp/lisp-mode.el (eval-defun): Doc fix.
6915 1999-06-27  Stefan Monnier  <monnier@cs.yale.edu>
6917         * textmodes/reftex.el (reftex-pop-to-bibtex-entry): Don't pop up
6918         a frame when `return' is requested (even if pop-up-frames = t)
6919         * textmodes/bibtex.el (bibtex-mode): `font-lock-mark-block-function'
6920         should only be set for the bibtex buffer.
6922         * emacs-lisp/autoload.el (generated-autoload-file): Doc fix.
6924         * progmodes/compile.el: Deal with compilation-error-screen-columns
6925         being buffer-local.
6927 1999-06-27  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
6929         * comint.el (comint-password-prompt-regexp): Allow "(again)".
6931 1999-06-27  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
6933         * cal-x.el (calendar-only-one-frame-setup): New function.
6934         * calendar.el (calendar): Call it if requested.
6936 1999-06-24  Karl Heuer  <kwzh@gnu.org>
6938         * startup.el (iso-8859-n-locale-regexp): Doc fix.
6940 1999-06-22  Richard M. Stallman  <rms@gnu.org>
6942         * mail/supercite.el (sc-emacs-features): Doc fix.
6944 1999-06-22  Karl Heuer  <kwzh@gnu.org>
6946         * files.el (auto-mode-alist): Add pike-mode.
6948 1999-06-20  Paul R. Eggert  <eggert@twinsun.com>
6950         * tar-mode.el (tar-header-block-tokenize): Don't assume that the
6951         last byte of a numeric field is a space or a NUL.  Parse it as
6952         potentially part of the number.  This is used by GNU tar
6953         1.12.64012 to handle larger values.
6955 1999-06-20  Karl Heuer  <kwzh@gnu.org>
6957         * custom.el (custom-handle-keyword): Fix error message.
6959 1999-06-18  Andrew Innes  <andrewi@gnu.org>
6961         * mail/smtpmail.el (smtpmail-send-it): Use
6962         convert-standard-filename to make file names for queued mail safe
6963         on Windows (`:' is invalid in file names on Windows).
6965 1999-06-17  Kenichi Handa  <handa@etl.go.jp>
6967         * international/mule-cmds.el (describe-current-input-method):
6968         Current-input-method is string.
6969         (toggle-input-method): Docstring fixed.
6971         * international/mule-diag.el
6972         (describe-current-coding-system-briefly): Fix format string.
6974         * international/mule-util.el (coding-system-eol-type-mnemonic):
6975         Docstring modified.  Return a string.
6977 1999-06-17  Alex Schroeder  <a.schroeder@bsiag.ch>
6979         * sql.el (sql-input-ring-file-name): Doc fix.
6981 1999-06-17  Richard M. Stallman  <rms@gnu.org>
6983         * calendar/cal-x.el (special-display-buffer-names):
6984         Don't put (get-file-buffer diary-file) on this list.
6986 1999-06-17  Mark W Maimone  <mwm@helios.jpl.nasa.gov>
6988         * play/mpuz.el (mpuz-try-proposal): Fix message call.
6989         Don't penalize player for certain impossible guesses.
6991 1999-06-16  Andrew Innes  <andrewi@gnu.org>
6993         * ls-lisp.el (ls-lisp-format-time): If timestamp is invalid,
6994         return the string "Unk  0  0000" so at least it appears to be a
6995         valid timestamp to `dired-move-to-filename-regexp'.
6997 1999-06-15  Ken'ichi Handa  <handa@gnu.org>
6999         * ps-print.el (ps-control-character): Fix previous change.
7001 1999-06-15  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
7003         * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Avoid
7004         multiple output of the last message.
7006 1999-06-14  Eli Zaretskii  <eliz@gnu.org>
7008         * term/internal.el (IT-display-table-setup): Do not remap \222 to
7009         the ASCII apostrophe, as most DOS codepages have some other glyph
7010         there.
7012 1999-06-14  Ken'ichi Handa  <handa@gnu.org>
7014         * language/ethio-util.el (setup-ethiopic-environment-internal):
7015         Use quail-activate-hook instead of obsolete hook quail-mode-hook.
7016         (exit-ethiopic-environment): Likewize.
7018 1999-06-12  Richard M. Stallman  <rms@gnu.org>
7020         * cus-start.el (scroll-preserve-screen-position): Fix typo in type.
7022 1999-06-12  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
7024         * emulation/crisp.el (crisp-mode): (defcustom) Initialize with
7025         custom-initialize-default to avoid infinite loop.
7026         (crisp-mode): (defun) Call transient-mark-mode here, not when
7027         loading the file.  Run crisp-mode-hook here, and run
7028         crisp-load-hook when loading the file.
7030         * mail/rmailout.el (rmail-output-read-rmail-file-name): If in
7031         rmail-summary buffer, search for pattern in rmail-file.
7033         * mail/rmailsum.el (rmail-summary-output-to-rmail-file): Fix typo.
7035         * progmodes/cperl-mode.el (cperl-invalid-face): Fix custom type.
7037         * ps-print.el (ps-printer-name): Fix custom type.
7039 1999-06-12  Reto Zimmermann  <reto@synopsys.com>
7041         * progmodes/vhdl-mode.el (vhdl-port-copy): Fix parsing bug.
7042         (vhdl-port-paste-generic-map): Fix indentation bug.
7043         (vhdl-port-paste-port-map): Fix indentation bug.
7044         (vhdl-scan-file-contents): Make scanning case insensitive.
7046 1999-06-11  Richard M. Stallman  <rms@gnu.org>
7048         * files.el (write-file): When buffer is not already visiting a file,
7049         don't put buffer name in the minibuffer, just make it the default.
7050         Also handle just directory as arg usefully in that case.
7052         * simple.el (sendmail-user-agent-compose):
7053         Ignore case when inserting the rest of the "other" headers.
7055         * help.el (help-for-help): Mention C-h C-i.  Clear up C-h n.
7057         * info-look.el (info-lookup-file, info-lookup-symbol): Doc fix.
7058         (info-lookup-interactive-arguments): Never insert the default
7059         into the minibuffer automatically.
7061         * emacs-lisp/cl-extra.el (getf): Don't call get*.
7063 1999-06-09  Richard M. Stallman  <rms@gnu.org>
7065         * simple.el (shell-command): Avoid printing "mark set" message.
7067 1999-06-09  Dave Love  <fx@gnu.org>
7069         * progmodes/compile.el (compilation-error-regexp-alist): Allow
7070         digits in program name in first pattern.
7072 1999-06-09  Andre Spiegel  <spiegel@inf.fu-berlin.de>
7074         * vc.el (vc-dired-mode): Don't match anything before the date in
7075         dired-move-to-filename-regexp.
7077 1999-06-07  Ken'ichi Handa  <handa@gnu.org>
7079         * international/quail.el (quail-define-rules): Fix typo in
7080         docstring.
7082 1999-06-05  Stephen Eglen  <stephen@gnu.org>
7084         * iswitchb.el (iswitchb-default-keybindings): Add
7085         iswitchb-minibuffer-setup to minibuffer-setup-hook here rather
7086         than when package is loaded.
7088 1999-06-04  Richard M. Stallman  <rms@gnu.org>
7090         * startup.el (command-line): Don't set user-init-file directly;
7091         tell `load' to set it.
7093         * ange-ftp.el (ange-ftp-shell-command): Handle error-buffer arg.
7095         * simple.el (next-history-element):
7096         Handle minibuffer-text-before-history properly when reading sexps.
7098         * disp-table.el (standard-display-european):
7099         For an interactive call by the user,
7100         don't set enable-multibyte-characters,
7101         and don't set the terminal coding system.
7103         * textmodes/refbib.el: Don't print any messages or display
7104         a buffer when loading the library.
7105         (r2b-help): Doc fix.
7106         (r2b-help-message): Update the documentation.
7107         (r2b-load-quietly): Variable deleted.
7108         (r2b-convert-buffer): Doc fix.
7110 1999-06-04  Dave Love  <fx@gnu.org>
7112         * help.el (help-xref-interned): Fix insertion of fdoc and revamp.
7114         * auto-show.el: Don't change hooks on loading.
7115         (auto-show-mode): Autoload.  Default to nil.  Add :set &c.
7116         (auto-show-mode): Add to hooks here.
7118 1999-06-04  Richard Sharman  <rsharman@pobox.com>
7120         * emacs-lisp/regexp-opt.el (regexp-opt-group): Avoid infinite
7121         recursion on bogus input.
7123 1999-06-04  Eric M. Ludlam  <zappo@ultranet.com>
7125         * speedbar.el (speedbar-hack-buffer-menu): Fixed so if the user
7126         does not select a buffer from the buffers menu, then the attached
7127         frame is not switched to anything.
7129 1999-06-03  Ken'ichi Handa  <handa@gnu.org>
7131         * language/vietnamese.el (ccl-encode-vscii): Typo fixed
7132         (viet-viscii-...->viet-vscii...).
7134         * international/mule-conf.el (iso-2022-7bit-lock-ss2): Typo fixed.
7136 1999-06-01  Dave Love  <fx@gnu.org>
7138         * progmodes/fortran.el: Add :link to defgroup.
7139         (fortran-blink-matching-if): Match ELSE statements too.
7140         (fortran-fill-statement, fortran-fill): Bind auto-fill-function so
7141         that filling is always done.
7143 1999-05-31  Richard M. Stallman  <rms@gnu.org>
7145         * simple.el (append-next-kill): Use an arg to distinguish
7146         interactive calls from Lisp calls, rather than (interactive-p).
7148         * international/iso-transl.el (iso-transl-language-alist):
7149         Interchange n and N.
7151 1999-05-31  Dave Love  <fx@gnu.org>
7153         * msb.el Add to minor-mode-map-alist.  Remove hook installation
7154         and keymap munging on load.
7155         (msb-mode): New option.
7156         (msb-files-by-directory, msb-sort-by-name, msb-sort-by-directory):
7157         Doc fix.
7158         (msb-mode-map): New variable.
7159         (msb-mode): New command.
7161 1999-05-31  Dave Love  <fx@gnu.org>
7163         * ispell.el: (ispell-alternate-dictionary): Fix custom type.
7164         (ispell-complete-word-dict): Likewise.
7166 1999-05-31  Eli Zaretskii  <eliz@gnu.org>
7168         * forms.el (forms-save-buffer): Call set-buffer-modified-p to
7169         force the data buffer to be saved, even if the data didn't
7170         change, in case the write filter was modified.  Restore the
7171         current record after read-file-filter finishes.
7173 1999-05-29  Karl Heuer  <kwzh@gnu.org>
7175         * ispell4.el: Obsolete; file deleted.
7177         * textmodes/texinfmt.el (texinfo-format-direntry): Avoid blank line.
7179         * font-lock.el (font-lock-apply-syntactic-highlight): Don't die if
7180         VALUE is a syntax table.
7182         * emacs-lisp/cl.el (custom-print-functions): Add autoload cookie.
7184         * simple.el (zap-to-char): Doc fix.
7186 1999-05-27  Ken'ichi Handa  <handa@gnu.org>
7188         * isearch.el (isearch-quote-char): Don't assume character codes
7189         0200 - 0237 stand for characters in some single-byte character
7190         charset.
7192 1999-05-27  Dave Love  <fx@gnu.org>
7194         * startup.el: (iso-8859-n-locale-regexp): Don't match 8859-15 &c.
7196 1999-05-27  Andreas Schwab  <schwab@gnu.org>
7198         * dired-aux.el (dired-insert-subdir-doinsert): Check that the
7199         headerline does not exist already.
7201 1999-05-26  Richard Stallman  <rms@gnu.org>
7203         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
7204         Avoid nested null-loops.
7206 1999-05-26  Ken'ichi Handa  <handa@gnu.org>
7208         * international/characters.el: Typo fixed; prefered->preferred.
7210         * international/mule-cmds.el (find-coding-systems-for-charsets):
7211         Typo fixed; prefered->preferred.
7213         * map-ynp.el (map-y-or-n-p): Don't inherit the current input
7214         method in read-event.
7216         * international/mule.el (charset-info): Doc-string fixed.
7218 1999-05-25  Ken'ichi Handa  <handa@gnu.org>
7220         * mail/smtpmail.el (smtpmail-send-it): Bind
7221         smtpmail-code-conv-from properly.
7222         (smtpmail-send-data-1): If DATA is a multibyte string, encode it
7223         by smtpmail-code-conv-from.
7225 1999-05-24  Richard Stallman  <rms@gnu.org>
7227         * emulation/crisp.el (crisp-submit-bug-report): Function deleted.
7228         Binding deleted also.
7230 1999-05-24  Karl Heuer  <kwzh@gnu.org>
7232         * comint.el (comint-bol-or-process-mark): Doc fix.
7234 1999-05-23  Dave Love  <fx@gnu.org>
7236         * emulation/crisp.el (crisp-mode-map): Don't inherit global-map.
7237         Enter it on minor-mode-map-alist.
7238         (crisp-mode): Re-named from `crsip-mode-enabled'.  Users changed.
7239         Autoload.  Add custom setter.
7240         (crisp-mark-line): Doc fix.
7241         (crisp-mode): Autoload.  Re-write not to frob keymaps directly.
7242         (crisp-mode-hook): Define.
7244 1999-05-23  Ken'ichi Handa  <handa@gnu.org>
7246         * files.el (recover-file): Recover buffer-file-coding-system.
7248 1999-05-22  Richard Stallman  <rms@gnu.org>
7250         * vc.el (vc-dired-mode): Make the dired-move-to-filename-regexp
7251         regexp match the date, to avoid treating date as file size.
7252         Add YYYY S option to WESTERN/
7254         * bookmark.el: Delete some XEmacs compatibility code.
7255         (bookmark-jump-noselect): Check vc-backend.
7257         * subr.el (add-to-list): Doc fix.
7259 1999-05-21  Stephen Eglen  <stephen@gnu.org>
7261         * diary-lib.el (diary-mail-entries): Use fancy-diary-buffer.
7263 1999-05-18  Richard Stallman  <rms@gnu.org>
7265         * textmodes/texinfmt.el (texinfo-anchor): Don't delete a
7266         non-space after the @anchor command.
7267         (texinfo-format-var): Handle other nested constructs, using
7268         texinfo-parse-expanded-arg and texinfo-discard-command, not
7269         texinfo-parse-arg-discard.
7271         * emacs-lisp/debug.el (debugger-outer-inhibit-redisplay): New variable.
7272         (debug): Bind and use debugger-outer-inhibit-redisplay.
7273         Bind inhibit-redisplay to nil.
7274         (debugger-env-macro): Treat inhibit-redisplay like other outside vars.
7276 1999-05-17  Dave Love  <fx@gnu.org>
7278         * help.el (describe-function-1): Extra arg, interactive-p.
7279         (describe-key, describe-function): Use it.
7281 1999-05-17  Karl Heuer  <kwzh@gnu.org>
7283         * ispell.el (ispell-local-dictionary-alist): Add autoload cookie.
7285 1999-05-16  Dave Love  <fx@gnu.org>
7287         * cus-start.el (all): Delete selective-display.  Add scroll-margin,
7288         scroll-preserve-screen-position, scroll-conservatively.
7290 1999-05-16  Dave Love  <fx@gnu.org>
7292         * emacs-lisp/byte-opt.el (byte-optimize-plus): Fix 1-arg case.
7294 1999-05-15  Reto Zimmermann  <reto@Synopsys.COM>
7296         * progmodes/vhdl-mode.el: Completely revised and massively extended.
7298 1999-05-15  Francesco Potorti`  <F.Potorti@cnuce.cnr.it>
7300         * progmodes/sh-script.el (sh-mode): Do not fail if buffer has no
7301         magic number and is not associated with a file.
7303 1999-05-14  Richard M. Stallman  <rms@gnu.org>
7305         * files.el (find-file-noselect-1): Fix previous change.
7307 1999-05-14  Simon Marshall  <simon@gnu.org>
7309         * fast-lock.el (fast-lock-cache-name): Fix test for `windows-nt'.
7311 1999-05-13  Ken'ichi Handa  <handa@gnu.org>
7313         * international/mule-diag.el (mule-diag): Change MULE to Mule in
7314         docstring.
7316         * international/mule-cmds.el: Change MULE to Mule in docstrings
7317         and menus.
7319 1999-05-10  Kenichi HANDA  <handa@etl.go.jp>
7321         * ps-mule.el (ps-mule-prologue): Fix the definition of DefFontMule
7322         to correctly reflect the value of BaseLineOffset in
7323         RelativeCompose.  Now the value of RelativeCompose is an array of
7324         low and high positions.
7325         (ps-mule-cmpchar-prologue): Adjust the definition of BC, EC, and
7326         RLC for the above change.
7328 1995-05-11  Joel N. Weber II  <devnull@melange.gnu.org>
7330         * comint.el (comint-password-prompt-regexp): Modified to match the
7331         output of ksu and ssh-add.
7333 1999-05-11  Kenichi HANDA  <handa@etl.go.jp>
7335         * language/korea-util.el (isearch-toggle-korean-input-method):
7336         Adjusted for the change of input method handling in isearch.el.
7337         (isearch-hangul-switch-symbol-ksc): Likewise.
7338         (isearch-hangul-switch-hanja): Likewise.
7340 1999-05-10  Dave Love  <fx@gnu.org>
7342         * help.el (help-make-xrefs): Fix typo.
7344 1999-05-10  Andreas Schwab  <schwab@gnu.org>
7346         * emacs-lisp/byte-opt.el (byte-boolean-vars): Add
7347         unibyte-display-via-language-environment.
7349         * help.el (help-make-xrefs): Handle more cases when looking for
7350         commands in a keymap description.
7352 1999-05-10  Eli Zaretskii  <eliz@gnu.org>
7354         * loadup.el: For ms-dos systems, load ccl and codepage.
7356 1999-05-09  Ken'ichi Handa  <handa@gnu.org>
7358         * ps-print.el (ps-control-character): Call
7359         ps-mule-prepare-ascii-font to setup ASCII fonts.
7361         * ps-mule.el (ps-mule-begin-job): Redo this change "if
7362         ps-multibyte-buffer is nil, use
7363         ps-mule-font-info-database-default."
7365 1999-05-08  Ken Stevens  <k.stevens@ieee.org>
7367         * ispell.el (ispell-local-dictionary-alist): New variable for
7368         customizing local dictionaries not accessable by everyone.
7369         (ispell-dictionary-alist): Loads `ispell-local-dictionary-alist'.
7370         (ispell-required-version): Changed format `(major minor
7371         revision)' to support general pattern matching.
7372         (ispell-tex-skip-alists): AMS Tex block comment and `\author'
7373         skip region commented out due to incorrect skip potential in std latex.
7374         (ispell-word): Removed `when' macro.  Fixed bug of not restoring
7375         cursor point on small words for calls from `ispell-minor-mode'.
7376         (check-ispell-version): Tests and accepts versions major.minor
7377         and above, with adjustments for interactions in 3.1.0-3.1.11.
7378         (ispell-get-line): No longer skips ispell process special characters.
7379         (ispell-comments-and-strings): Removed `when' macro call.
7380         (ispell-minor-check): Requires ispell-word to restore cursor point.
7381         (ispell-buffer-local-parsing): Supports checking comments only.
7383 1999-05-08  Karl Heuer  <kwzh@gnu.org>
7385         * comint.el (comint-password-prompt-regexp): Fix last change to be
7386         more specific.
7388 1999-05-07  Richard M. Stallman  <rms@gnu.org>
7390         * subr.el (with-temp-message): Fix the other call to message
7391         to use %s.
7393 1999-05-07  Michael Ernst  <mernst@alum.mit.edu>
7395         * gud.el (gud-format-command): "%F" means file sans extension.
7396         (jdb): Use %F, not %f, for gud-break.
7398 1999-05-07  Joel N. Weber II  <devnull@melange.gnu.org>
7400         * comint.el (comint-password-prompt-regexp): Modified so that it
7401         matches the output of kinit.
7403 1999-05-06  Greg Stark  <gsstark@mit.edu>
7405         * timezone.el (timezone-parse-date): Recognize new format used in
7406         internet cookies.
7408 1999-05-04  Tudor Hulubei  <tudor@cs.unh.edu>
7410         * international/iso-acc.el (iso-languages): Add latin-2 cedillas.
7412 1999-05-04  Andrew Innes  <andrewi@gnu.org>
7414         * time.el (display-time-update): Allow for wrap-around when
7415         checking against display-time-server-down-time.
7417 1999-05-04  Ken'ichi Handa  <handa@gnu.org>
7419         * international/mule-diag.el (describe-coding-system): Fix English
7420         message.
7422 1999-05-03  Jason Rumney <jasonr@altavista.net>
7424         * term/w32-win.el: Change the x-charset-registry property for the
7425         Japanese charsets that are supported by Japanese Windows fonts.
7427 1999-05-03  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
7429         * diary-lib.el (diary-remind): Rewritten to behave sensibly for
7430         diary-block diary entries for which the reminders and the diary
7431         entries can overlap.
7433 1999-05-02  Jason Rumney <jasonr@altavista.net>
7435         * term/w32-win.el (mouse-set-font): Ensure constructed fontset
7436         matches the font selected in the dialog.
7438 1999-05-02  Dave Love  <fx@gnu.org>
7440         * browse-url.el (browse-url-browser-function): Add :version.
7442         * international/mule.el (auto-coding-alist): Add .tgz.
7444 1999-05-2  Eli Zaretskii  <eliz@is.elta.co.il>
7446         * international/codepage.el (cp-coding-system-for-codepage-1):
7447         Make the magnification parameter for the -dos encoder be 2.
7449 1999-05-2  Andrew Innes  <andrewi@gnu.org>
7451         * term/w32-win.el (w32-drag-n-drop): Select file in window where
7452         it is dropped, rather than current window.
7454         * mail/smtpmail.el (smtpmail-deduce-address-list): Bind variables
7455         after switching buffer, as case-fold-search is a buffer local
7456         variable.
7458         * w32-fns.el (convert-standard-filename): Only convert directory
7459         separators to backslash if the interactive shell is one of the
7460         standard Windows shells that has DOS semantics.
7462         * ls-lisp.el (ls-lisp-format-time): Trap errors from
7463         format-time-string, and return a suitable string to indicate the
7464         timestamp was invalid.
7466         * hexl.el (hexlify-command): Apply shell-quote-argument after
7467         expanding hexl-program in case exec-directory contains a space.
7468         (dehexlify-command): Ditto.
7470         * dos-w32.el (file-name-buffer-file-type-alist): Remove various
7471         file extension regexps which aren't necessarily binary files.
7472         (direct-print-region-helper): Use subst-char-in-string instead of
7473         binding directory-sep-char to convert filenames to DOS syntax.
7474         (direct-print-region-use-command-dot-com): New variable.
7475         (direct-print-region-helper): Use it to control whether to invoked
7476         command.com to print on Windows 9x.
7478         * browse-url.el (browse-url-browser-function): Default to
7479         browse-url-default-windows-browser on windows-nt.
7480         (browse-url-default-windows-browser): New function.
7482 1999-04-30  Eli Zaretskii  <eliz@is.elta.co.il>
7484         * forms.el (forms-mode): Don't call forms-first-record or
7485         forms-last-record if the data file has zero records.
7487 1999-04-29  Richard M. Stallman  <rms@gnu.org>
7489         * files.el (find-file-noselect-1): If buffer-file-name has changed
7490         after find-file-not-found-hooks runs, recompute the truename.
7491         And don't use FILENAME after that point.
7493 1999-04-27  Dave Love  <fx@gnu.org>
7495         * paren.el (show-paren-mode)
7496         * which-func.el (which-func-mode-global)
7497         * type-break.el (type-break-mode)
7498         * time.el (display-time-mode)
7499         * rsz-mini.el (resize-minibuffer-mode)
7500         * mouse-sel.el (mouse-sel-mode)
7501         * icomplete.el (icomplete-mode)
7502         * hscroll.el (hscroll-global-mode)
7503         * help.el (temp-buffer-resize-mode)
7504         * font-lock.el (global-font-lock-mode)
7505         * delsel.el (delete-selection-mode)
7506         * avoid.el (mouse-avoidance-mode)
7507         * autoinsert.el (auto-insert-mode)
7508         * winner.el (winner-mode): Doc fix.
7510 1999-04-26  Karl Heuer  <kwzh@gnu.org>
7512         * mail/rmail.el (rmail-next-same-subject): When searching, ignore
7513         the same whitespace that was ignored in choosing the subject string.
7515 1999-04-26  Richard M. Stallman  <rms@gnu.org>
7517         * info.el (Info-find-node): Position properly after finding anchor.
7519         * cus-start.el (all): Handle unibyte-display-via-language-environment.
7521         * simple.el (indent-new-comment-line): Fix previous change.
7523         * complete.el: Delete the wildcard expansion feature
7524         since that is now standard in find-file.
7525         (PC-try-load-many-files): Function deleted.
7526         (PC-after-load-many-files): Function deleted.
7527         (PC-many-files-list): Variable deleted.
7528         (PC-disable-wildcards): Variable deleted.
7529         (partial-completion-mode): Don't enable the wildcard feature.
7531         * complete.el (PC-look-for-include-file): Don't set global variables
7532         `error', `buf' and `filename' here.
7534         * mail/sendmail.el (mail-sent-via): Use copy-marker not make-marker.
7536 1999-04-26  John Wiegley  <johnw@oneworld.new-era.com>
7538         * textmodes/outline.el (outline-regexp): Doc fix.
7540 1999-04-26  John Wiegley  <johnw@borland.com>
7542         * progmodes/compile.el (compilation-error-regexp-alist): Recognize
7543         C++Builder 4.0 error message syntax.
7545 1999-04-26  Mark Diekhans  <markd@Grizzly.COM>
7547         * progmodes/compile.el (grep-compute-defaults): If xargs -e isn't
7548         supported, use find -exec.
7550 1999-04-26  Yoshiki Hayashi  <g740685@komaba.ecc.u-tokyo.ac.jp>
7552         * textmodes/texinfmt.el (texinfo-format-buffer): Bind
7553         coding-system-for-write, to avoid hanging when non-interactive.
7555 1999-04-26  Dirk Herrmann  <D.Herrmann@tu-bs.de>
7557         * textmodes/bibtex.el (bibtex-reference-head): Allow entries to
7558         start with a newline.
7560 1999-04-13  Ken'ichi Handa  <handa@gnu.org>
7562         * international/mule-conf.el (x-ctext): New coding system.
7564 1999-04-12  Richard M. Stallman  <rms@gnu.org>
7566         * international/mule-cmds.el (input-method-function):
7567         Add permanent-local property.
7569 1999-04-12  Dave Love  <fx@gnu.org>
7571         * jka-compr.el (jka-compr-insert-file-contents): Fix previous
7572         change to use jka-compr-byte-compiler-base-file-name.
7574         * supercite.el (sc-scan-info-alist): Revert last change.
7575         (sc-attrib-selection-list): Fix :type here instead.
7577 1999-04-11  Eli Zaretskii  <eliz@gnu.org>
7579         * international/mule.el (auto-coding-alist-lookup): Include ms-dos
7580         in the list of case-insensitive filesystems.
7582 1999-04-09  Kenichi Handa  <handa@etl.go.jp>
7584         * international/fontset.el (create-fontset-from-fontset-spec):
7585         Don't register duplicated alias fontset names.
7587 1999-04-08  Richard Stallman  <rms@gnu.org>
7589         * international/mule.el (auto-coding-alist-lookup): New function.
7590         (set-auto-coding): Use auto-coding-alist-lookup.
7592         * jka-compr.el (jka-compr-insert-file-contents):
7593         Use auto-coding-alist-lookup to check for files that
7594         should not have eol conversion, in the unibyte case.
7596 1999-04-07  Dave Love  <fx@gnu.org>
7598         * help.el (describe-variable): Check custom-loads property as well
7599         as custom-type.
7601         * abbrev.el (abbrev-mode): Customizing sets the default value.
7603 1999-04-08  Andre Spiegel  <spiegel@inf.fu-berlin.de>
7605         * vc.el (vc-backend-revert): For CVS files that were made
7606         writeable with "cvs edit", call "cvs unedit" to undo that.
7608 1999-04-08  Dave Love  <fx@gnu.org>
7610         * mail/supercite.el: (sc-attrib-selection-list): Fix custom type
7611         more.
7612         (sc-emacs-features): Recognize Emacs 20.
7613         (sc-read-string): Use history arg.
7614         (sc-scan-info-alist): Check for rtnvalue a cons.
7616 1999-04-08  Kenichi HANDA  <handa@etl.go.jp>
7618         * gnus/gnus-mule.el (gnus-mule-message-send-mail-function): Find a
7619         coding system to encode the message by
7620         select-message-coding-system.
7622 1999-04-07  Richard Stallman  <rms@gnu.org>
7624         * progmodes/sql.el (sql-send-paragraph): Delete duplicate definition.
7626         * winner.el: Reorder definitions.
7628         * mail/mh-utils.el (mh-find-progs): Try /etc/nmh and lib/nmh dirs.
7630         * mail/rmail.el (rmail-decode-babyl-format):
7631         Undo previous change.
7633 1999-04-06  Richard Stallman  <rms@gnu.org>
7635         * info.el (Info-find-node): Check for an anchor at the
7636         proper place, before reading an indirect file.
7638         * imenu.el (imenu--mouse-menu): Use assq when searching in FINAL.
7640         * jka-compr.el (jka-compr-insert-file-contents):
7641         Use raw-text-unix when we want no conversion.
7643 1999-04-06  Thierry Emery <Thierry.Emery@nmu.alcatel.fr>
7645         * timezone.el (timezone-parse-date): Corrected regexp for
7646         style (5) date format so that tenths of seconds are optional.
7648 1999-04-05  Eli Zaretskii  <eliz@gnu.org>
7650         * term/internal.el (dos-cpNNN-setup): New function, with the guts
7651         of dos-codepage-setup.
7652         (cjk-codepages-alist): New variable, an alist of Far-Eastern
7653         codepages for which there's no need to set up cpNNN coding
7654         systems.
7655         (dos-codepage-setup): Support Far-Eastern DOS terminals.
7657 1999-04-05  Richard Stallman  <rms@gnu.org>
7659         * mail/rmail.el (rmail-ignored-headers): Doc fix.
7661 1999-04-02  Richard Stallman  <rms@gnu.org>
7663         * progmodes/compile.el (compilation-handle-exit): Do right thing
7664         if (car status) doesn't end in a newline.
7666 1999-04-01  Dave Love  <fx@gnu.org>
7668         * progmodes/sql.el (SQL): Add defgroup :version.
7670 1999-03-31  Richard M. Stallman  <rms@caffeine.ai.mit.edu>
7672         * emacs-lisp/bytecomp.el (byte-compile-file): Clear
7673         buffer-file-coding-system.  If the coding system used is raw-text,
7674         etc., make the *Compiler Input* buffer unibyte.
7676         * international/mule.el (find-new-buffer-file-coding-system): Doc fix.
7678         * loadup.el: Don't write the fns-...el file if not dumping.
7680 1999-03-31  Dave Love  <fx@gnu.org>
7682         * snmp-mode.el (snmp): Fix defgroup :version.
7684         * hilit-chg.el (highlight-changes): Add defgroup :version.
7686 1999-03-31  Andreas Schwab  <schwab@gnu.org>
7688         * gnus/gnus-sum.el (gnus-data-compute-positions): Move down after
7689         the gnus-save-hidden-threads macro.
7691 1999-03-30  Per Abrahamsen  <abraham@dina.kvl.dk>
7693         * faces.el (face-set-after-frame-default): Obey the
7694         `customized-face' for new faces.
7696 1999-03-30  Dave Love  <fx@gnu.org>
7698         * international/mule-cmds.el (current-language-environment): Doc fix.
7699         * abbrev.el (abbrev-mode): Doc fix.
7700         * autoinsert.el (auto-insert-mode): Doc fix.
7701         * complete.el (partial-completion-mode): Doc fix.
7702         * avoid.el (mouse-avoidance-mode): Doc fix.
7703         * delsel.el (delete-selection-mode): Doc fix.
7704         * font-lock.el (global-font-lock-mode): Doc fix.
7705         * help.el (temp-buffer-resize-mode): Doc fix.
7706         * hscroll.el (hscroll-global-mode): Doc fix.
7707         * icomplete.el (icomplete-mode): Doc fix.
7708         * mouse-sel.el (mouse-sel-mode): Doc fix.
7709         * paren.el (show-paren-mode): Doc fix.
7710         * rsz-mini.el (resize-minibuffer-mode): Doc fix.
7711         * time.el (display-time-mode): Doc fix.
7712         * type-break.el (type-break-mode): Doc fix.
7713         * which-func.el (which-func-mode-global): Doc fix.
7714         * winner.el (winner-mode): Doc fix.
7716 1999-03-30  Michael Ernst  <mernst@alum.mit.edu>
7718         * wid-edit.el (widget-before-change): Signal text-read-only rather
7719         than an ordinary error.
7721 1999-03-30  Richard M. Stallman  <rms@gnu.org>
7723         * repeat.el: Don't require advice.
7724         (repeat): Do function-indirection in check for kbd macro.
7725         In self-insert case, use the *last* char in INSERTION.
7727 1999-03-30  Karl Heuer  <kwzh@gnu.org>
7729         * progmodes/cc-cmds.el (c-indent-command): Doc fix.
7731 1999-03-29  Andreas Schwab  <schwab@gnu.org>
7733         * textmodes/tex-mode.el (tex-start-shell): Use add-hook for
7734         comint-input-filter-functions.  Make variables related to shell
7735         directory tracking local.
7737 1999-03-26  Andreas Schwab  <schwab@gnu.org>
7739         * emacs-lisp/debug.el (debug): Make *Backtrace* buffer writable.
7741         * simple.el (shell-command-on-region): Cope with exit-status being
7742         nil, which happens if call-process-region was interrupted.
7744 1999-03-26  Richard M. Stallman  <rms@gnu.org>
7746         * simple.el (indent-new-comment-line): Handle use at a point
7747         after a comment-end.  Handle multiple comments.
7749         * mail/rmail.el (rmail-decode-babyl-format):
7750         To prevent locking, bind buffer-file-name to nil.
7752 1999-03-26  Karl Fogel  <kfogel@red-bean.com>
7754         * mail-hist.el (mail-hist-current-header-name): Don't make
7755         off-by-one-error when determining if in message body.
7757 1999-03-25  Andrew Innes  <andrewi@gnu.org>
7759         * w32-fns.el (set-default-process-coding-system): Copied from
7760         dos-w32.el, but modified to use Unix line endings for process
7761         input, and to add a suitable entry to process-coding-system-alist
7762         for DOS shells.
7764         * dos-fns.el (set-default-process-coding-system): Copied from
7765         dos-w32.el.
7767         * dos-w32.el (set-default-process-coding-system): Move function to
7768         dos-fns.el; a different version is used in w32-fns.el.
7770 1999-03-24  Dave Love  <fx@gnu.org>
7772         * info.el (Info-directory-list): Revert change to re-writing
7773         Info-default-directory-list, but put `alternative' first.
7774         (Info-insert-dir): Modify selecting the top dir file as a consequence.
7776 1999-03-23  Simon Marshall  <simon@gnu.org>
7778         * font-lock.el (c-font-lock-keywords-2): Only fontify a label if it is
7779         on the line by itself.
7780         (java-font-lock-keywords-2): Likewise.  Don't fontify a class name if
7781         it is not in a declarative context.
7783 1999-03-22  Per Abrahamsen  <abraham@dina.kvl.dk>
7785         * cus-edit.el (custom-variable-prompt): Allow customization of
7786         autoloaded symbols.
7788 1999-03-22  Kenichi HANDA  <handa@etl.go.jp>
7790         * simple.el (what-cursor-position): Don't cause error when point
7791         is at invalid multibyte sequence.
7793 1999-03-21  Karl Heuer  <kwzh@gnu.org>
7795         * complete.el (partial-completion-mode): Doc fix.
7797 1999-03-19  Richard M. Stallman  <rms@gnu.org>
7799         * progmodes/cplus-md.el (old-c++): Remove :group.
7801         * progmodes/c-mode.el (old-c): Remove :group.
7803 1999-03-18  Simon Marshall  <simon@gnu.org>
7805         * font-lock.el (c-font-lock-keywords-2): Added "complex" type.
7806         (java-font-lock-keywords-2): Added "strictfp" keyword.
7808 1999-03-17  Jason Rumney <jasonr@altavista.net>
7810         * w32-fns.el (set-w32-system-coding-system) New function.
7811         (w32-system-coding-system) Initialize to 'iso-latin-1.
7813 1999-03-17  Eli Zaretskii  <eliz@gnu.org>
7815         * international/mule-cmds.el (set-language-environment): Fix
7816         previous change: don't use dos-codepage when unbound.
7818 1999-03-17  Karl Heuer  <kwzh@gnu.org>
7820         * calendar/appt.el (appt-make-list): Fix previous change.
7822 1999-03-16  Richard M. Stallman  <rms@gnu.org>
7824         * window.el (shrink-window-if-larger-than-buffer):
7825         Don't try to redisplay with the cursor at the end
7826         on its own line--that would force a scroll and spoil things.
7828 1999-03-16  Eli Zaretskii  <eliz@gnu.org>
7830         * international/mule-cmds.el (set-language-environment): Don't use
7831         cpNNN-nonascii-translation-table if it is unbound.
7833         * term/internal.el (dos-codepage-setup): Compute the unibyte
7834         syntax table and bind unibyte-display-via-language-environment
7835         here, rather than at top level, so that resetting to unibyte in
7836         .emacs works as expected.
7838 1999-03-15  Simon Marshall  <simon@gnu.org>
7840         * font-lock.el (c-font-lock-keywords-2): Added "restrict" keyword.
7842 1999-03-14  Milan Zamazal <pdm@pvt.net>
7844         * abbrev.el (inverse-add-abbrev): Inherit the current input method.
7846 1999-03-14  Kenichi Handa  <handa@etl.go.jp>
7848         * international/mule-util.el (detect-coding-with-priority):
7849         Restore the internal database.
7851 1999-03-14  Stephen Eglen  <stephen@gnu.org>
7853         * mail/sendmail.el (sendmail-send-it): Fix typo in error string
7854         if mail-from-style has invalid value.
7856 1999-03-12  Karl Heuer  <kwzh@gnu.org>
7858         * vc.el (vc-delete-logbuf-window): New var.
7859         (vc-finish-logentry): Use it.
7861 1999-03-12  Richard M. Stallman  <rms@gnu.org>
7863         * startup.el (command-line-1): Improve startup msg.
7865 1999-03-12  Eric M. Ludlam  <zappo@ultranet.com>
7867         * speedbar.el: Added commentary about stealthy functions.
7868         (speedbar-message) new function.
7869         (speedbar-y-or-n-p): New function
7870         (speedbar-with-attached-buffer) Moved macro before reference.
7871         Now uses `save-selected-window'.
7872         (speedbar-mouse-hscroll, speedbar-track-mouse, speedbar-refresh,
7873         speedbar-generic-item-info, speedbar-item-info-file-helper,
7874         speedbar-item-delete, speedbar-insert-generic-list,
7875         speedbar-timer-fn, speedbar-check-vc-this-line,
7876         speedbar-check-obj-this-line, speedbar-fetch-dynaic-etags,
7877         speedbar-buffers-item-info) Use speedbar-message.
7878         (speedbar-item-info) Limit `message-log-max'.
7879         (speedbar-item-load, speedbar-item-copy, speedbar-item-rename,
7880         speedbar-item-delete, speedbar-item-object-delete,
7881         speedbar-buffer-kill-buffer) Use speedbar-y-or-n-p.
7883 1999-03-10  Kenichi Handa  <handa@mulelab.etl.go.jp>
7885         * server.el (server-start): Set coding system for the server
7886         process to raw-text.
7887         (server-process-filter): Decode file names if necessary.
7889 1999-03-12  Dave Love  <fx@gnu.org>
7891         * textmodes/fill.el (sentence-end-double-space): Doc fix.
7893         * textmodes/paragraphs.el (sentence-end): Doc fix.
7895 1999-03-11  Karl Heuer  <kwzh@gnu.org>
7897         * comint.el (comint-password-prompt-regexp): Accept "login password:"
7899 1999-03-09  Karl Heuer  <kwzh@gnu.org>
7901         * ispell.el (ispell-dictionary-alist-1): Shorten autoloaded line.
7902         (ispell-dictionary-alist-2): Likewise.
7903         (ispell-dictionary-alist-3, ispell-dictionary-alist-4): New vars.
7904         (ispell-dictionary-alist-5, ispell-dictionary-alist-6): New vars.
7905         (ispell-dictionary-alist): Build from six pieces, not just two.
7907         * ps-bdf.el (bdf-directory-list): Doc fix.
7909         * enriched.el (enriched-mode): Make var permanent-local.
7911 1999-03-09  Dave Love  <fx@gnu.org>
7913         * textmodes/sgml-mode.el (html-mode): Use
7914         sentence-end-double-space when setting sentence-end.
7916 1999-03-09  Ken'ichi Handa  <handa@gnu.org>
7918         * language/thai.el (tis-620): New alias coding system for thai-tis620.
7920 1999-03-08  Felix Lee  <flee@cygnus.com>
7922         * textmodes/flyspell.el (flyspell-mode-on): Use change-major-mode-hook.
7924         * textmodes/outline.el (outline-back-to-heading): Fix invisible-ok.
7926 1999-03-08  Karl Heuer  <kwzh@gnu.org>
7928         * dired-aux.el (dired-do-copy-regexp): Doc fix.
7929         (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
7931         * dired.el (dired-do-copy-regexp): Doc fix.
7932         (dired-do-hardlink-regexp, dired-do-symlink-regexp): Doc fix.
7934 1999-03-08  Roger Breitenstein  <roger.breitenstein@starfish.com>
7936         * mail/smtpmail.el (smtpmail-do-bcc): Fix regexp.
7938 1999-03-08  Jason Rumney <jasonr@altavista.net>
7940         * international/codepage.el (cp1250-decode-table)
7941         (cp1251-decode-table, cp1253-decode-table)
7942         (cp1257-decode-table): New translation tables for MS Windows codepages.
7943         (cp-make-coding-systems-for-codepage): Accept 4 digit codepages.
7945 1999-03-07  Yoshiki Hayashi  <g740685@komaba.ecc.u-tokyo.ac.jp>
7947         * textmodes/texinfmt.el (texinfo-append-refill): Check @c correctly.
7949 1999-03-07  Eli Zaretskii  <eliz@gnu.org>
7951         * ps-bdf.el (bdf-directory-list): Different value for ms-dos.
7953         * term/internal.el (top level): Display character 255 as 8bit as well.
7955 1999-03-06  Dave Love  <fx@gnu.org>
7957         * progmodes/cc-cmds.el (c-outline-level): Bind
7958         buffer-invisibility-spec.
7960         * progmodes/c-mode.el (c-outline-level): Likewise.
7962         * progmodes/ada-mode.el (ada-outline-level): Likewise.
7964 1999-03-05  Felix Lee  <flee@cygnus.com>
7966         * textmodes/outline.el (outline-get-last-sibling): Doc fix.
7968 1999-03-05  Richard M. Stallman  <rms@gnu.org>
7970         * bindings.el (complete-symbol): Invert meaning of prefix arg.
7972 1999-03-05  Andrew Innes  <andrewi@gnu.org>
7974         * w32-fns.el (convert-standard-filename): Convert directory
7975         separators to Windows format.
7977 1999-03-05  Andreas Schwab  <schwab@gnu.org>
7979         * international/skkdic-cnv.el: Provide skkdic-cnv.
7980         (skkdic-convert): Emit code to require skkdic-cnv at compile time.
7981         (batch-skkdic-convert): Doc fix.
7983 1999-03-04  Dave Love  <fx@gnu.org>
7985         * custom.el (custom-set-variables): Protect against setter errors.
7987 1999-03-04  Eli Zaretskii  <eliz@gnu.org>
7989         * ls-lisp.el (ls-lisp-insert-directory): Protect the sum total of
7990         the file sizes from overflowing.
7991         (ls-lisp-format): If file size is a float, use %8.0f to print it.
7992         Under -s, print the size in blocks with %4.0f, in case they have
7993         a *really* huge file.
7995 1999-03-03  Dave Love  <fx@gnu.org>
7997         * options.el (edit-options): Doc fix.
7998         (list-options): Don't lose with unbound symbols.  Maintain
7999         Edit-options-mode.
8001 1999-03-01  Dave Love  <fx@gnu.org>
8003         * mail/supercite.el (sc-attrib-selection-list): Fix custom type.
8005 1999-02-28  Richard M. Stallman  <rms@gnu.org>
8007         * ispell.el (ispell-dictionary-alist-override): New variable.
8008         (ispell-dictionary-alist): Don't setq it,
8009         if ispell-dictionary-alist-override is set.
8011         * simple.el (shell-command-default-error-buffer): Renamed from
8012         shell-command-on-region-default-error-buffer.
8013         (shell-command-on-region): Mention in echo area when there
8014         is some error output.  Mention success or failure, too.
8015         Accumulate multiple error outputs
8016         going forward, with formfeed in between.  Display the error buffer
8017         when we have put something in it.
8018         (shell-command): Add the ERROR-BUFFER argument feature.
8020 1999-02-28  Karl Heuer  <kwzh@gnu.org>
8022         * mail/mh-utils.el (mh-lib): Doc fix.
8023         (mh-lib-progs, mh-nmh-p): New vars.
8024         (mh-find-progs): Set mh-lib-progs along with other vars.
8025         (mh-path-search): New arg FUNC-P; if specified, use that instead
8026         of mh-file-command-p.
8027         (mh-install, mh-exec-lib-cmd-output): Use mh-lib-progs.
8029         * mail/mh-comp.el (mh-repl-formfile): New var.
8030         (mh-smail-batch): Don't ignore all arguments.
8031         (mh-reply): Do the right thing when using nmh.
8033 1999-02-27  Kenichi Handa  <handa@etl.go.jp>
8035         * international/mule-cmds.el (select-safe-coding-system): Be sure
8036         to show a buffer being decoded.
8038 1999-02-26  Ken'ichi Handa  <handa@gnu.org>
8040         * ps-bdf.el (bdf-directory-list): Initialize it to
8041         '("/usr/local/share/emacs/fonts/bdf").
8043 1999-02-25  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
8045         * ps-print.el: PostScript programming fix.
8046         (ps-print-prologue-1): Fix BeginDoc PostScript procedure (don't use
8047         setpagedevice operator).
8049 1999-02-25  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
8051         * ps-print.el: Doc fix, font size specifies landscape and portrait
8052         sizes.
8053         (ps-print-version): New version number (4.1.4).
8054         (ps-font-size, ps-header-font-size, ps-header-title-font-size):
8055         Specifies landscape and portrait sizes.
8056         (ps-setup, ps-print-quote, ps-line-lengths-internal, ps-nb-pages)
8057         (ps-get-page-dimensions, ps-begin-file, ps-begin-job, ps-generate): Fun
8058         fix.
8059         (ps-get-font-size): New fun.
8060         (ps-font-size-internal, ps-header-font-size-internal)
8061         (ps-header-title-font-size-internal): New vars.
8063         * ps-mule.el: Change of ps-print font size variable name.
8064         (ps-mule-generate-font): Fun fix.
8065         (ps-mule-begin-job): Programming uniformization.
8067 1999-02-25  Dave Love  <fx@gnu.org>
8069         * help.el (help-xref-info-regexp): Allow linebreaks and capital.
8070         (help-make-xrefs): Do Info case first.
8072         * repeat.el: Don't require advice.
8073         (repeat-last-kill-command): Variable deleted.
8075 1999-02-25  Richard Stallman  <rms@gnu.org>
8077         * simple.el (shell-command-on-region): Don't go into the REPLACE = t
8078         case just because the current buffer is the output buffer.
8080 1999-02-25  Kenichi Handa  <handa@etl.go.jp>
8082         * simple.el (what-cursor-position): To show the character's
8083         encoding, use encoded-string-description instead of information
8084         of chaset-origin-alist.
8086         * international/mule-cmds.el (iso-2022-control-alist): New variable.
8087         (encoded-code-description): New function.
8088         (encoded-string-description): New function.
8089         (encode-coding-char): New function.
8091 1999-02-25  Andrew Innes  <andrewi@gnu.org>
8093         * startup.el (command-line) [windows-nt]: Fix typo in regexp
8094         checking for .emacs[.el[c]].
8096 1999-02-24  Richard Stallman  <rms@gnu.org>
8098         * help.el (describe-function-1): Don't print a whole lambda-function.
8100 1999-02-23  Ken'ichi Handa  <handa@gnu.org>
8102         * international/encoded-kb.el (encoded-kbd-handle-8bit): Allow
8103         inputting ?\240.
8105 1999-02-23  Karl Heuer  <kwzh@gnu.org>
8107         * term/vt100.el (vt100-wide-mode): Use defvar, not defconst.
8109         * midnight.el (clean-buffer-list-kill-regexps): Doc fix.
8110         (clean-buffer-list-kill-buffer-names): Doc fix.
8112         * gud.el (gud-jdb-massage-args): Spelling fix.
8114 1999-02-23  Richard M. Stallman  <rms@gnu.org>
8116         * subr.el (with-temp-message): Use %s so % in old msg won't fool us.
8118 1999-02-22  Eli Zaretskii  <eliz@gnu.org>
8120         * arc-mode.el (archive-set-buffer-as-visiting-file): Save
8121         excursion while calling set-auto-coding-function.
8123         * play/handwrite.el (handwrite): Require ps-print, and use
8124         ps-printer-name and ps-lpr-command.  Call ps-print-region-function
8125         if it's defined, instead of forking ps-lpr-command unconditionally.
8127 1999-02-22  Kenichi Handa  <handa@etl.go.jp>
8129         * international/codepage.el (cp-coding-system-for-codepage-1): Put
8130         charset-origin-alist property to a coding system for the codepage.
8132         * international/mule.el: Modify comment for charset-origin-alist
8133         property of a coding system.
8135         * simple.el (what-cursor-position): charset-origin-alist property
8136         of a coding system may be a translation table or a symbol of which
8137         `translation-table' property is a translation table.
8139 1999-02-21  Richard Stallman  <rms@gnu.org>
8141         * textmodes/sgml-mode.el (html-tag-alist): Add /head and /body
8142         to the "html" template.
8144 1999-02-21  Peter Breton  <pbreton@ne.mediaone.net>
8146         * dirtrack.el (dirtrack): Added docstring.  Now returns input.
8148 1999-02-18  Peter Breton  <pbreton@ne.mediaone.net>
8150         * dirtrack.el (dirtrack): Check for the prompt in the input string
8151         instead of the buffer.
8153 1999-02-18  Alex Schroeder  <a.schroeder@bsiag.ch>
8155         * sql.el: Set version to 1.4.1.  Changed mail address to
8156         alex@gnu.org.  Mention the mailing list sql.el@gnu.org.
8157         (sql-input-ring-separator): Doc fix.
8158         (sql-mode-syntax-table): double-dash starts comments is defined as
8159         ". 56" instead of ". 12b" for XEmacs.
8160         (sql-stop, sql-interactive-mode): Doc fixes.
8161         (sql-postgres): Queries for database and server, not just one.
8162         (sql-set-sqli-buffer): sql-set-sqli-hook must be quoted.
8164         * sql.el (sql-set-sqli-hook): A hook run when sql-buffer is
8165         changed.  This is needed for master.el to work.
8166         (sql-set-sqli-buffer): Use the new hook.
8168         * sql.el (sql-make-alternate-buffer-name): Function that sets
8169         sql-alternate-buffer-name.
8170         (sql-alternate-buffer-name): Possible name of SQLi buffers.
8171         (sql-interactive-mode): Set sql-alternate-buffer-name.
8172         (sql-rename-buffer): New command.
8173         (sql-interactive-mode-menu): Menu for SQLi buffers.
8175         * sql.el (sql-interactive-mode): Doc fix.  sql-input-ring-separator
8176         and sql-input-ring-file-name are used to temporarily set
8177         comint-input-ring-file-name and comint-input-ring-separator when
8178         reading and writing input history files.
8180         (sql-stop): Use sql-input-ring-separator and sql-input-ring-file-name.
8181         (sql-input-ring-file-name): New variable with customization.
8182         (sql-input-ring-separator): New variable with customization.
8183         (sql-set-sqli-buffer): Renamed from sql-change-sqli-buffer.
8184         Callers changed.
8185         (sql-show-sqli-buffer): The message for "sql-buffer is not set"
8186         now includes the name of the current buffer.
8188         (sql-mode): Set paragraph-separate and paragraph-start so that
8189         sql-send-paragraph sends the entire SQL statements, even if it
8190         contains indented lines.
8192 1999-02-18  Dave Love  <fx@gnu.org>
8194         * format.el (format-encode-run-method, format-decode-run-method):
8195         Fix previous change.
8197 1999-02-18  Ken'ichi Handa  <handa@gnu.org>
8199         * international/mule.el (coding-system-list): Moved here from
8200         mule-util.el to avoid autoloading mule-util by the call of
8201         select-safe-coding-system.
8203 1999-02-17  Per Abrahamsen  <abraham@dina.kvl.dk>
8205         * simple.el (turn-on-auto-fill): Mark it as an option for
8206         `text-mode-hook'.
8208 1999-02-17  Richard Stallman  <rms@gnu.org>
8210         * emacs-lisp/easymenu.el (easy-menu-get-map):
8211         Don't crash if (current-local-map) is nil.
8213 1999-02-17  Peter Breton  <pbreton@ne.mediaone.net>
8215         * filecache.el (file-cache-filter-regexps): Added .class.
8217 1999-02-17  Ken'ichi Handa  <handa@gnu.org>
8219         * international/mule-util.el (decompose-region): Use
8220         insert-buffer-substring instead of insert-buffer to avoid putting
8221         mark.
8223 1999-02-17  Andreas Schwab  <schwab@gnu.org>
8225         * calendar/cal-move.el (scroll-calendar-left): Don't set
8226         displayed-month and displayed-year here, let generate-calendar do
8227         it, after range checking.
8229 1999-02-17  Simon Marshall  <simon@gnu.org>
8231         * progmodes/cc-engine.el (c-at-toplevel-p): New function.
8233         * font-lock.el (c++-font-lock-keywords-3): Use it to distinguish
8234         correctly between an object declared via a constructor and a method.
8235         (font-lock-defaults-alist): Don't give `.' word syntax for Java.
8236         (java-font-lock-keywords-1): Fontify package names individually.
8237         (java-font-lock-extra-types): Ensure regexp matches capitalised only.
8238         (java-font-lock-keywords-2): Simplify type fontification.
8239         (java-font-lock-keywords-3): Likewise.
8241 1999-02-17  Kenichi Handa  <handa@etl.go.jp>
8243         * language/japanese.el (iso-2022-jp-2): New coding system.
8244         ("Japanese"): Put iso-2022-jp-2 in coding-priority property.
8246 1999-02-16  Dave Love  <fx@gnu.org>
8248         * help.el (describe-function-1): Accept non-symbols.
8250 1999-02-16  Paul Eggert  <eggert@twinsun.com>
8252         * dired.el (dired-move-to-filename-regexp): Prepend .* so that we
8253         find the last match if there are multiple matches.
8255 1999-02-16  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8257         * tex-mode.el (tex-run-command, latex-run-command)
8258         (slitex-run-command, tex-command): Doc changes.
8259         (tex-start-options-string): Autoload it.  Doc change.  Provide
8260         a menu for customization.  Allow nil.  Quote backslashes only once.
8261         (tex-start-tex): Handle nil value of tex-start-options-string
8262         and apply shell-quote-argument to it.
8264 1999-02-16  Eli Zaretskii  <eliz@gnu.org>
8266         * ls-lisp.el (ls-lisp-insert-directory): Call fceiling to round
8267         the size in blocks, since it can be a float.
8268         (ls-lisp-format): Likewise
8270 1999-02-16  Ken'ichi Handa  <handa@gnu.org>
8272         * language/japanese.el (japanese-shift-jis): Add
8273         charset-origin-alist property.
8275 1999-02-15  Richard Stallman  <rms@gnu.org>
8277         * progmodes/compile.el (compile-internal): Use save-selected-window.
8279         * subr.el (momentary-string-display): Bind inhibit-read-only.
8281         * speedbar.el (speedbar-item-info-tag-helper): Scan the whole line.
8283 1999-02-15  Eli Zaretskii  <eliz@is.elta.co.il>
8285         * mail/rmail.el (rmail-show-message): If an unseen message has a
8286         Summary-line in its header, get past one more line before looking
8287         for the X-Coding-System header.
8289 1999-02-15  Geoff Voelker  <voelker@cs.washington.edu>
8291         * makefile.nt (INSTALL): Copy the handful of uncompiled lisp files
8292         explicitly to accomodate Windows 9X lack of a useful copy program.
8294 1999-02-15  Per Abrahamsen  <abraham@dina.kvl.dk>
8296         * wid-edit.el (widget-choice-value-create): Use `equal'
8297         instead of `eq'.
8299 1999-02-14  Richard Stallman  <rms@gnu.org>
8301         * international/iso-transl.el:
8302         (iso-transl-ae): Renamed from iso-transl-e-slash.
8303         (iso-transl-a-ring): Renamed from iso-transl-a-slash.
8304         (iso-transl-AE): Renamed from iso-transl-E-slash.
8305         (iso-transl-A-ring): Renamed from iso-transl-A-slash.
8306         (iso-transl-char-map): Related changes.
8308         * format.el (format-replace-strings): Fix value of TO in REVERSE case.
8310 1999-02-13  Richard Stallman  <rms@gnu.org>
8312         * textmodes/texinfmt.el (texinfo-alias): New function.
8313         (texinfo-fold-nodename-case): Add defvar.
8314         (texinfo-format-node): Do case folding if specified.
8316         * ffap.el (ffap-file-at-point): Test local file names
8317         immediately.  Strip off line numbers.
8319 1999-02-12  Alex Schroeder  <a.schroeder@bsiag.ch>
8321         * sql.el: Set version to 1.3.2
8322         (sql-solid-program): Added support for solid.
8323         (sql-help): Doc mentions sql-solid.
8324         (sql-solid): Entry function for Solid.
8325         (sql-buffer): Doc explains the use of the variable and how to
8326         change it.
8327         (sql-mode-menu): Included entries for sql-show-sqli-buffer and
8328         sql-change-sqli-buffer; sql-send-region and sql-send-buffer are
8329         disabled if sql-buffer doesn't have a process; sql-send-paragraph
8330         is new.
8331         (sql-show-sqli-buffer): New function to display the value of
8332         sql-buffer.
8333         (sql-change-sqli-buffer): New function to change sql-buffer.
8334         (sql-mode): Doc explains how to change sql-buffer.
8335         (sql-send-paragraph): New function to send a paragraph.
8336         (sql-mode-map): Added keybinding for sql-send-paragraph.
8337         (sql-mysql): Doc corrected.
8338         (sql-ms): Doc corrected.
8340         * sql.el (sql-server): Doc fix.
8341         (sql-mysql): Added the use of sql-server to specify the host,
8342         sql-database now specifies database instead of host.
8343         (sql-mode-menu): Send... menu items are only active if sql-buffer
8344         is non-nil.
8345         (sql-help): Changed tag of entry functions a bit.
8347         * sql.el: Added keywords from `finder-by-keyword'.
8348         (sql-mode): Made sql-buffer a local variable, changed the
8349         documentation: removed instructions to add *.sql files to
8350         auto-mode-alist, added documentation for having mutliple SQL
8351         buffers sending their stuff to different SQLi buffers, each
8352         running a different process.
8353         (sql-postgres): Quoted *SQL* in doc string.
8354         (sql-ms): Likewise.
8355         (sql-ingres): Likewise.
8356         (sql-ingres): Quoted *SQL* in doc string, added references to
8357         sql-user and sql-password used during login.
8358         (sql-sybase): Quoted *SQL* in doc string, added comma.
8359         (sql-oracle): Likewise.
8360         (sql-interactive-mode): Added extensive documentation for having
8361         mutliple SQL buffers sending their stuff to different SQLi
8362         buffers, each running a different process.
8363         (sql-buffer): Changed doc from *SQL* to SQLi.
8364         (sql-get-login): Doc fix.
8366 1999-02-12  Ken'ichi Handa  <handa@gnu.org>
8368         * international/mule-conf.el (undecided): Set ascii in
8369         safe-charsets property.
8371 1999-02-12  Richard Stallman  <rms@gnu.org>
8373         * textmodes/paragraphs.el (paragraph-separate): Doc fix.
8375 1999-02-12  Ken'ichi Handa  <handa@gnu.org>
8377         * ps-mule.el (ps-mule-font-info-database-default): Set the initial
8378         value to ps-mule-font-info-database-latin.
8380 1999-02-13  Kenichi HANDA  <handa@etl.go.jp>
8382         * ps-mule.el (ps-multibyte-buffer): Doc-string modified.
8383         (ps-mule-font-info-database-default): New variable.
8384         (ps-mule-begin-job): If ps-multibyte-buffer is nil, use
8385         ps-mule-font-info-database-default.
8387 1999-02-12  Dave Love  <fx@gnu.org>
8389         * timezone.el (timezone-make-date-sortable)
8390         (timezone-make-date-arpa-standard): Doc fix.
8392 1999-02-12  Ken'ichi Handa  <handa@gnu.org>
8394         * international/quail.el (quail-show-kbd-layout): Bind
8395         blink-matching-paren to nil.
8397         * ps-mule.el (ps-mule-font-info-database-bdf): Fix ENCODING field
8398         for ASCII and Latin-1.
8400 1999-02-12  Andreas Schwab  <schwab@gnu.org>
8402         * gud.el (jdb): Fix regexp for comint-prompt-regexp.
8404 1999-02-12  Kenichi Handa  <handa@etl.go.jp>
8406         * international/mule-cmds.el (language-info-alist): Remove
8407         description about charset-origin-alist.
8409         * international/mule.el: Comment added for a new coding system
8410         property `charset-origin-alit'.
8411         (make-translation-table): This variable deleted.
8413         * language/chinese.el (chinese-big5): Add charset-origin-alist
8414         property.
8415         ("Chinese-CNS"): Remove charset-origin-alist property.
8417         * language/cyrillic.el (cyrillic-koi8): Add charset-origin-alist
8418         property.
8419         (cyrillic-alternativnyj): Likewise.
8420         ("Cyrillic-KOI8"): Remove charset-origin-alist property.
8421         ("Cyrillic-ALT"): Likewise.
8423         * language/vietnamese.el (vietnamese-viqr): Add
8424         charset-origin-alist property.
8425         ("Vietnamese"): Remove charset-origin-alist property.
8427         * simple.el (what-cursor-position): Don't use the varialbe
8428         charset-origin-alist, but use charset-origin-alist property of
8429         buffer-file-coding-system to decide external character set code.
8431 1999-02-10  Richard Stallman  <rms@gnu.org>
8433         * shadowfile.el: Don't turn on the mode when the file is loaded.
8435 1999-02-09  Richard Stallman  <rms@gnu.org>
8437         * progmodes/compile.el (compile-auto-highlight): Customize.
8439         * add-log.el (add-log-file-name-function): New variable.
8440         (add-change-log-entry): Call that function, if non-nil.
8442 1999-02-09  Michael Ernst  <mernst@alum.mit.edu>
8444         * rmail.el (rmail-search): Track match with a marker, not an integer.
8446 1999-02-08  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8448         * progmodes/compile.el (compilation-setup): Set value of
8449         compilation-directory-stack as in compilation-forget-errors.
8450         (compile-reinitialize-errors): Bind buffer-undo-list and
8451         deactivate-mark.
8452         (compilation-forget-errors): Likewise.
8454 1999-02-08  Jim Blandy  <jimb@savonarola.red-bean.com>
8456         * textmodes/texinfo.el (texinfo-environment-regexp): Add the
8457         def... constructs.
8459         * texnfo-upd.el (texinfo-all-menus-update, texinfo-master-menu):
8460         Remove calls to sleep-for.
8462 1999-02-08  Eli Zaretskii  <eliz@gnu.org>
8464         * international/codepage.el (cp-coding-system-for-codepage-1): On
8465         MS-DOS, use dos-unsupported-char-glyph for characters not
8466         supported by the codepage.
8467         (cp-make-coding-systems-for-codepage): Likewise.
8469 1999-02-08  Andreas Schwab  <schwab@gnu.org>
8471         * international/mule-util.el (coding-system-list): Don't sort
8472         coding-system-list here.
8474         * international/mule.el (coding-system-lessp): Moved here from
8475         mule-util.el
8476         (add-to-coding-system-list): New function.
8477         (make-subsidiary-coding-system, make-coding-system,
8478         define-coding-system-alias): Use it instead of setting
8479         coding-system-list directly.
8481 1999-02-07  Dave Love  <fx@gnu.org>
8483         * calendar/appt.el (appt-make-list): Don't splice quotes and date
8484         onto message.
8486 1999-02-06  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8488         * imenu.el (imenu--last-menubar-index-alist): Add doc.
8489         (imenu-add-to-menubar):  Reset imenu--last-menubar-index-alist.
8491 1999-02-06  Richard Stallman  <rms@gnu.org>
8493         * language/european.el (setup-slovenian-environment): New function.
8494         ("Slovenian"): New language environment.
8496         * progmodes/sql.el (sql-help): Doc fix.
8497         (sql-mysql): Doc fix.
8499 1999-02-05  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8501         * tex-mode.el: When compiling, require compare-w and skeleton
8502         to pacify the byte-compiler.  Move the def's of the tex-commands
8503         together.  Add a comment on kill-process vs. quit-process.
8505 1999-02-05  Dave Love  <fx@gnu.org>
8507         * progmodes/compile.el (compile-mouse-goto-error): Don't lose with
8508         null markers.
8509         (compile-goto-error): Likewise.
8511 1999-02-05  Stephen Gildea  <gildea@alum.mit.edu>
8513         * time-stamp.el (time-stamp-format): Format doc tighter.
8514         (time-stamp-line-limit): 0 searches the entire buffer (careful!).
8515         (time-stamp): Don't re-write the time stamp if it didn't change.
8517 1999-02-05  Alex Schroeder  <asc@bsiag.com>
8519         * progmodes/sql.el: Changed version to 1.2.1.
8520         (sql-pop-to-buffer-after-send-region): Improved documentation.
8521         (sql-mysql-program): Added MySQL support.
8522         (sql-prompt-length): Made prompt-length configurable.
8523         (sql-mode-syntax-table): Made apostrophe (') be a string delimiter.
8524         (sql-help): Added MySQL support, changed documentation.
8525         (sql-send-region): A message is displayed if something is sent.
8526         (sql-mode): Added buffer-local comment-start.
8527         (sql-interactive-mode): Use sql-prompt-length to set left-margin.
8528         (sql-interactive-mode): Added buffer-local comment-start.
8529         (sql-oracle): Set sql-prompt-length.
8530         (sql-sybase): Set sql-prompt-length.
8531         (sql-mysql): Added MySQL support.
8532         (sql-ingres): Set sql-prompt-length.
8533         (sql-ms): Set sql-prompt-length.
8534         (sql-postgres): Set sql-prompt-length.
8536 1999-02-04  Eli Zaretskii  <eliz@gnu.org>
8538         * term/internal.el (dos-codepage-setup): Set selection coding
8539         system to cpNNN-dos.
8541 1999-02-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8543         * international/characters.el: Let ethiopic use iso-2022-7bit.
8545 1999-02-02  Dave Love  <fx@gnu.org>
8547         * progmodes/fortran.el (mark-fortran-subprogram): Activate mark here...
8548         (fortran-narrow-to-subprogram, fortran-indent-subprogram): ...not here.
8550 1999-02-02  Karl Heuer  <kwzh@gnu.org>
8552         * terminal.el (terminal-emulator): Doc fix.
8554 1999-02-02  Ken'ichi Handa  <handa@gnu.org>
8556         * international/mule-util.el (compose-chars): Doc-string
8557         modified.  Correctly handle a composition character in ARGS.
8559 1999-02-01  Richard Stallman  <rms@gnu.org>
8561         * progmodes/make-mode.el (makefile-imenu-generic-expression): New var.
8562         (makefile-menu-index-function): Function deleted.
8563         (makefile-mode): Use makefile-imenu-generic-expression.
8565 1999-02-01  Geoff Voelker  <voelker@cs.washington.edu>
8567         * term/w32-win.el (w32-create-initial-fontsets): Back out previous
8568         change, invoke from before-init-hook.
8570 1999-02-01  Dan Nicolaescu  <done@ece.arizona.edu>
8572         * subr.el (remove-from-invisibility-spec): Cope with the case when
8573         buffer-invisibility-spec is t.
8575 1999-02-01  Ed Reingold  <reingold@cs.uiuc.edu>
8577         * calendar/calendar.el (calendar-mode-map): Fix bindings for
8578         appt-add and appt-delete.
8580 1999-02-01  Eli Zaretskii  <eliz@gnu.org>
8582         * term/pc-win.el (msdos-approximate-color): New function.
8583         (msdos-color-translate): Call it to find a DOS color that best
8584         approximates an X-style "#NNNNNN" color specification.
8586 1999-02-01  Ken'ichi Handa  <handa@gnu.org>
8588         * international/mule-util.el (compose-chars-component): Add
8589         autoload cookie.
8591 1999-01-31  Ken'ichi Handa  <handa@gnu.org>
8593         * international/quail.el (quail-lookup-key): If cdr of MAP is a
8594         function, replace cdr of MAP by the return value of the function
8595         unconditionally.
8597 1999-01-31  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8599         * progmodes/compile.el (compilation-next-error-locus): Don't
8600         decrease argument FIND-AT-LEAST of compilation-next-error-locus.
8602 1999-01-31  Eli Zaretskii  <eliz@gnu.org>
8604         * mail/rmail.el (rmail-mime-charset-pattern): Add optional TABs
8605         and NLs before "charset", and allow the charset name be in double
8606         quotes.
8608 1999-01-31  Richard Stallman  <rms@gnu.org>
8610         * imenu.el (imenu-sort-function): Fix custom type.
8612 1999-01-30  Richard Stallman  <rms@gnu.org>
8614         * speedbar.el (speedbar-line-token): Match {...} instead of [...].
8615         (speedbar-line-token): Likewise.
8617         * play/gametree.el (gametree-default-score): Use defcustom.
8618         (gametree-score-regexp, gametree-score-closer): Likewise.
8619         (gametree-score-manual-flag, gametree-score-opener): Likewise.
8621 1999-01-29  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8623         * mail/rmail.el (rmail-decode-babyl-format): Avoid locking when
8624         decoding.
8626 1999-01-29  Markus Rost  <rost@gnu.org>
8628         * tex-mode.el (tex-mode-map): Replace validate-tex-buffer by
8629         tex-validate-buffer.
8630         (plain-tex-mode, latex-mode, slitex-mode): Likewise.
8631         (tex-validate-buffer): Renamed from validate-tex-buffer.  Works
8632         now with recent occur-mode.
8633         (tex-validate-region): Really walk through all Sexps.
8634         (tex-region): Bind shell-dirtrack-verbose.
8635         (tex-file, tex-bibtex-file): Likewise.
8637 1999-01-29  Dave Love  <fx@gnu.org>
8639         * finder.el: (finder-commentary): Fix interactive spec.  Try
8640         appending .el to file name.
8641         (finder-find-library, finder-commentary): Doc fixes.
8643 1999-01-29  Andrew Innes  <andrewi@gnu.org>
8645         * mail/rmail.el (rmail-insert-inbox-text): Handle POP mailboxes
8646         where the userid contains directory separators.
8648 1999-01-29  Dave Love  <fx@gnu.org>
8650         * emacs-lisp/lisp-mnt.el (lm-verify): Fix arg list.
8651         (lm-commentary): Doc fix.
8653 1999-01-29  Andreas Schwab  <schwab@gnu.org>
8655         * files.el (file-expand-wildcards): Never consider `.' and `..' a
8656         wildcard match.  Fix regexp that tests if dirpart contains
8657         wildcard characters.
8659 1999-01-28  Richard Stallman  <rms@gnu.org>
8661         * font-lock.el (font-lock-default-unfontify-region):
8662         If not font-lock-syntactic-keywords, don't remove syntax-table prop.
8664 1999-01-27  Jason Rumney <jasonr@altavista.net>
8666         * term/w32-win.el (w32-standard-fontset-spec): Remove wildcard
8667         from FAMILY field.
8668         (w32-create-initial-fontsets): Do not use before-init-hook.
8669         (mouse-set-font): Document.  Automatically create and use fontsets.
8671         * dos-w32.el (direct-print-region-helper): Check for printer
8672         being t as well as a string.
8674 1999-01-27  Kenichi Handa  <handa@etl.go.jp>
8676         * mail/rmail.el (rmail-decode-mime-charset): New variable.
8677         (rmail-mime-charset-pattern): New variable.
8678         (rmail-convert-to-babyl-format): Decode by MIME-charset if
8679         rmail-decode-mime-charset is non-nil.
8681 1999-01-27  Ken'ichi Handa  <handa@gnu.org>
8683         * international/characters.el: Set category `q' for all characters
8684         in tibetan and tibetan-1-column.
8686 1999-01-27  Andrew Innes  <andrewi@gnu.org>
8688         * frame.el (select-frame-by-name): Obey focus-follows-mouse.
8689         (select-frame-by-name) [windows-nt]: Use w32-focus-frame.
8691 1999-01-27  Dave Love  <fx@gnu.org>
8693         * international/mule-cmds.el (current-language-environment):
8694         Provide :link, :type (choices) and appropriate :get.
8696 1999-01-27  Eli Zaretskii  <eliz@gnu.org>
8698         * startup.el (command-line): Set default eol-mnemonic-* strings to
8699         display end-of-line format in mode line.
8701         * cus-start.el (all): Add eol-mnemonic-* variables.
8703 1999-01-26  Dave Love  <fx@gnu.org>
8705         * startup.el (command-line-1): Up-date copyright.
8707         * paths.el (Info-default-directory-list): Use configdir twice.
8709         * info.el (Info-directory-list): Don't set path-separator now
8710         we're not shipped with Texinfo.  Simplify path definition.
8711         Substitute all occurrences of instdir in Info-default-directory-list.
8713 1999-01-25  Richard Stallman  <rms@gnu.org>
8715         * startup.el (normal-top-level-add-subdirs-to-load-path):
8716         Record the inode numbers of the dirs processed, to avoid loop.
8718         * textmodes/tex-mode.el (tex-run-command): Doc fix.
8720 1999-01-25  Dave Love  <fx@gnu.org>
8722         * browse-url.el (browse-url-netscape-program): Doc addition.
8724         * help.el (help-make-xrefs): Default info references to an `(emacs)'
8725         prefix.
8727         * snmp-mode.el (snmpv2-mode, snmpv-mode): Add autoload cookies -- see
8728         auto-mode-alist.
8730 1999-01-25  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
8732         * calendar/diary-lib.el (mark-diary-entries): Use
8733         assoc-ignore-case and do not capitalize when matching month and
8734         day names.
8736         * calendar/calendar.el (calendar-read-date): Ditto.
8738         * calendar/cal-hebrew.el (calendar-goto-hebrew-date)
8739         (mark-hebrew-diary-entries, list-yahrzeit-dates): Ditto.
8741         * calendar/cal-coptic.el (coptic-prompt-for-date): Ditto.
8743         * calendar/cal-french.el (calendar-goto-french-date): Ditto.
8745         * calendar/cal-islam.el (calendar-goto-islamic-date)
8746         (mark-islamic-diary-entries): Ditto.
8748         * calendar/cal-julian.el (calendar-goto-julian-date): Ditto.
8750         * calendar/cal-mayan.el (calendar-read-mayan-haab-date)
8751         (calendar-read-mayan-tzolkin-date): Ditto.
8753         * calendar/cal-persia.el (persian-prompt-for-date): Ditto.
8755 1999-01-22  Michael Ernst  <mernst@alum.mit.edu>
8757         * texnfo-upd.el (texinfo-make-menu): Make region-end a marker.
8759 1999-01-25  Karl Heuer  <kwzh@gnu.org>
8761         * faces.el (list-faces-display): Multiline case of previous fix.
8763 1999-01-25  Andreas Schwab  <schwab@gnu.org>
8765         * mail/mailalias.el (mail-complete-alist): Use alist as customize type.
8767 1999-01-24  Richard M. Stallman  <rms@borg.ai.mit.edu>
8769         * files.el (find-file): If find-file-noselect returns a list,
8770         do switch-to-buffer on each element.
8771         (find-file-other-window): Likewise for all but the first element.
8772         (find-file-other-frame): Same.
8773         (find-file-noselect): When we expand a wildcard, return a list
8774         of buffers.
8776 1999-01-24  Eli Zaretskii  <eliz@gnu.org>
8778         * term/internal.el (dos-codepage-setup): Call prefer-coding-system
8779         to set the appropriate cpNNN-dos coding system as the
8780         highest-priority coding system.
8782 1999-01-23  Ken'ichi Handa  <handa@gnu.org>
8784         * international/fontset.el (generate-fontset-menu): Return a
8785         sorted list by plain names of fontsets.
8787         * international/mule-diag.el (list-fontsets): Sort fontsets by
8788         plain names.
8790         * language/tibet-util.el (tibetan-vertical-stacking): If the arg
8791         FIRST is a composite character, decompose it at first.
8793 1999-01-23  Dave Love  <fx@gnu.org>
8795         * format.el: Doc fixes.
8796         (format-encode-run-method): Have things happen in the right buffer.
8797         Deal with errors from method.  Set coding-system-for-write.
8798         (format-decode-run-method): Have things happen in the right buffer.
8799         Deal with errors from method.  Set coding-system-for-read.
8800         (format-alist): Use nil instead of unmatchable regexps.
8802         * simple.el (shell-command-on-region): Return command's exit status.
8804 1999-01-23  Eric Ludlam  <zappo@gnu.org>
8806         * speedbar.el (speedbar-item-info-file-helper): Add optional arg
8807         of the file whose info we want to display.
8808         (speedbar-easymenu-definition-trailer) Fix list issue w/ customize.
8809         (speedbar-add-mode-functions-list) Improve doc.
8810         (speedbar-line-token) New function.
8811         (speedbar-dired) Fix order of directories in -shown-directories.
8812         (speedbar-line-path): Default return is default-directory
8813         (speedbar-buffers-line-path): Return is dir name only.
8814         (speedbar-mode-functions-list): New variable.
8815         (speedbar-mouse-item-info): Rewrote to be a replaceable fn.
8816         (speedbar-item-info-file-helper, speedbar-item-info-tag-helper
8817         speedbar-files-item-info speedbar-buffers-item-info): New functions.
8818         (speedbar-fetch-replacement-function,speedbar-add-mode-functions-list):
8819         New functions.
8820         (speedbar-line-file): Broke out part that fetches file from a line.
8821         (speedbar-line-text): New function extracted from speedbar-line-file.
8822         (speedbar-line-path): Converted into a replaceable function.
8823         (speedbar-files-line-path, speedbar-buffers-line-path): New functions.
8825 1999-01-23  Ken'ichi Handa  <handa@gnu.org>
8827         * international/fontset.el (create-fontset-from-x-resource): Make
8828         style variants.
8830 1999-01-22  Dave Love  <fx@gnu.org>
8832         * paths.el (Info-default-directory-list): Put sysdir after start.
8834 1999-01-22  Sam Steingold  <sds@goems.com>
8836         * midnight.el (clean-buffer-list): Do not kill a buffer if it has
8837         a process associated with it.
8839 1999-01-22  Jason Rumney <jasonr@altavista.net>
8841         * term/w32-win.el (w32-standard-fontset-spec): Simplified.
8843 1999-01-22  Felix Lee  <flee@cygnus.com>
8845         * vc.el (vc-annotate-display): Delete old overlays.  Fix check for
8846         major-mode.
8847         (vc-annotate-mode): Delete variable.
8849 1999-01-22  Andrew Innes  <andrewi@gnu.org>
8851         * startup.el (command-line): [windows-nt]: Check for existence of
8852         .emacs file so as to notice .emacs.el or .emacs.elc and use them
8853         in preference to _emacs.
8855 1999-01-22  Dave Love  <fx@gnu.org>
8857         * textmodes/texinfo.el (texinfo-font-lock-keywords): Match @ref.
8859 1999-01-20  Richard Stallman  <rms@gnu.org>
8861         * files.el (find-file-noselect): Do wildcard processing only
8862         if new arg WILDCARDS is non-nil.
8863         (find-file, find-file-other-window): New arg WILDCARDS.
8864         Default it to non-nil if interactive.
8865         (find-file-other-frame): Likewise.
8866         (find-file-read-only): Likewise.
8867         (find-file-read-only-other-window): Likewise.
8868         (find-file-read-only-other-frame): Likewise.
8870         * wid-edit.el (widget-alist-convert-option): Delete spurious comma.
8871         (widget-plist-convert-option): Delete spurious comma.
8873 1999-01-19  Jason Rumney <jasonr@altavista.net>
8875         * term/w32-win.el (w32-standard-fontspec-spec): Change
8876         iso8859-5 to koi8-r.  Add iso8859-9.
8878 1999-01-19  Dave Love  <fx@gnu.org>
8880         * browse-url.el (browse-url-maybe-new-window): Delete macro and
8881         its uses.
8883         * progmodes/fortran.el (fortran-narrow-to-subprogram): Ensure mark
8884         is active.
8885         (fortran-indent-subprogram): Likewise.
8887 1999-01-19  Dave Love  <d.love@dl.ac.uk>
8889         * paths.el (Info-default-directory-list): Perhaps add /usr/info.
8891 1999-01-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
8893         * wid-edit.el (alist): Use sexp as default key-type.
8895 1999-01-18  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8897         * textmodes/tex-mode.el (tex-define-common-keys):
8898         Remove key binding of tex-feed-input.
8899         (tex-mode-map): Bind tex-feed-input here.
8900         (tex-start-shell): Use compilation-shell-minor-mode.  Set
8901         comint-input-filter-functions before running tex-shell-hook.
8902         (tex-start-tex): Forget compilation errors.
8903         (tex-compilation-parse-errors): Rewritten to work also with
8904         compile-mouse-goto-error and compile-goto-error.  Adjusted to
8905         change in tex-region.
8906         (tex-region): For the temp file use file-name without directory.
8907         (tex-file): Expand file name of tex-print-file.
8909 1999-01-18  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8911         * emacs-lisp/edebug.el (with-temp-message):  Add def-edebug-spec call.
8913 1999-01-18  Espen Skoglund  <espensk@stud.cs.uit.no>
8915         * progmodes/pascal.el (pascal-calculate-indent): Code with an invalid
8916         beginning could cause Emacs to hang.  Fixed.
8918 1999-01-18  Ken'ichi Handa  <handa@gnu.org>
8920         * international/ccl.el (ccl-compile-translate-character): Handle
8921         the case that a tranlation table is CCL register correctly.
8923         * international/mule-cmds.el (select-safe-coding-system):
8924         Hightlight at most 256 characters.
8926 1999-01-18  Dave Love  <fx@gnu.org>
8928         * startup.el (command-line): If the init file changes operation to
8929         unibyte, make all buffers unibyte and re-set language environment.
8931         * disp-table.el (standard-display-european): Make all existing
8932         buffers unibyte.  Fix doc.
8934 1999-01-17  Richard Stallman  <rms@psilocin.ai.mit.edu>
8936         * wid-edit.el (coding-system): Define this unconditionally.
8938         * simple.el (shell-command-on-region-default-error-buffer): New var.
8939         (shell-command-on-region): Use that variable as interactive
8940         value of ERROR-BUFFER argument.
8942 1999-01-17  Sam Steingold  <sds@goems.com>
8944         * mail/rmail.el (rmail-quit): Run `rmail-quit-hook'.
8946 1999-01-17  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
8948         * progmodes/compile.el (compilation-goto-locus): If already in the
8949         compilation buffer's window, keep it in that window.
8950         (compile-mouse-goto-error): Add Doc.  Don't play with windows.
8951         (compile-goto-error): Don't play with windows.
8953         * textmodes/tex-mode.el (latex-run-command): Doc fix.
8954         (tex-command): Doc fix.
8955         (tex-compilation-parse-errors): Doc fix.
8956         (tex-generate-zap-file-name): Don't start the name with -.
8957         (tex-expand-files): Works now also with strings ending with ":".
8959 1999-01-17  Ian T Zimmerman  <itz@transbay.net>
8961         Patch failed to install:
8962         * gametree.el: Document scoring functionality.
8963         (gametree-score-regexp): Add optional plus sign.
8964         (gametree-score-opener): Replace `:' with `=' as the former
8965         conflicts with gametree-half-ply-regexp.
8966         (gametree-transpose-following-leaves): Add.
8967         (gametree-insert-new-leaf): Make modifying commands barf in read
8968         only buffers.
8969         (gametree-break-line-here): Add a call to
8970         `gametree-transpose-following-leaves'.  This maintains the
8971         necessary invariant that on each level all leaf children precede
8972         all nonleaf children.  This has always been implied, but left to
8973         the user, and, unfortunately, undocumented.
8975 1999-01-17  Per Abrahamsen  <abraham@dina.kvl.dk>
8977         * wid-edit.el (plist, alist): New widget types.
8979 1999-01-17  Dave Love  <fx@gnu.org>
8981         * progmodes/fortran.el: Tidy up font-lock-keywords definitions and
8982         fix scope of condition-case therein.
8984 1999-01-17  Andrew Innes  <andrewi@gnu.org>
8986         * dos-w32.el: (find-buffer-file-type-coding-system): Use
8987         default-buffer-file-coding-system when file doesn't exist (and
8988         isn't covered by a special case) instead of forcing undecided-dos
8989         against the user's wishes.
8991         * dos-w32.el (direct-print-region-helper): New function based on
8992         direct-print-region-function; sends data to specified printer port
8993         without further translation.  Recognize and handle specially the
8994         standard `print' and `nprint' programs, as well as `lpr' and
8995         similar programs.  Only write directly to the printer port if no
8996         print program is specified.  Work around a bug in Windows 9x
8997         affecting Win32 version of Emacs by invoking command.com to write
8998         to the printer port instead of writing directly.
8999         (direct-print-region-function): Use direct-print-region-helper to
9000         do most of the work.
9001         (direct-ps-print-region-function): New function; analogue of
9002         direct-print-region-function for ps-print.
9003         (ps-lpr-command): Comment out setq; leave as example usage.
9004         (ps-lpr-switches): Ditto.
9006         * lpr.el: (printer-name): Update docstring about usage on MS-DOS
9007         and MS-Windows.
9008         (lpr-command) [ms-dos, windows-nt]: Initialize to empty string on
9009         DOS and Windows platforms, to indicate direct printing.  Update
9010         the docstring accordingly.
9012         * ps-print.el: (ps-printer-name): Update docstring about usage on
9013         MS-DOS and MS-Windows.
9014         (ps-lpr-command): Update docstring as for lpr-command.
9015         (ps-print-region-function): New variable.
9016         (ps-do-despool): Use it.
9017         (ps-do-despool) [ms-dos, windows-nt]: Remove special case code for
9018         DOS/Windows.
9020         * subr.el (subst-char-in-string): New function.
9022 1999-01-17  Eli Zaretskii  <eliz@gnu.org>
9024         * international/codepage.el (cp852-decode-table): Fill a nil entry.
9026         * ps-bdf.el (bdf-cache-file): Use convert-standard-filename.
9027         (bdf-find-font-info): New function, looks for the first readable
9028         file from a list of alternatives.
9029         (bdf-get-bitmaps, bdf-generate-font): Call bdf-find-font-info
9030         instead of bdf-get-font-info.
9031         (bdf-generate-glyphs): If font-name is a cons cell, pass its car
9032         to ps-mule-generate-bitmap-glyph.
9034         * ps-mule.el (ps-mule-font-info-database-bdf): Add alternative
9035         file names that avoid clashes in DOS 8+3 namespace.  FONT-NAME can
9036         now be a list of alternative names.
9037         (ps-mule-generate-font): If FONT-NAME is a cons cell, use its car.
9038         (ps-mule-prepare-font): Likewise.
9040         * international/codepage.el (cp855-decode-table,
9041         cp850-decode-table): Fill some nil entries.
9043 1999-01-16  Dave Love  <fx@gnu.org>
9045         * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Revert
9046         last change.
9048 1999-01-15  Dave Love  <fx@gnu.org>
9050         * help.el (help-make-xrefs): Avoid infloop in keymap substitutions
9051         and change regexp for command names.
9052         (help-xref-go-back, function-called-at-point, symbol-file)
9053         (where-is): Doc fixes.
9054         (help-xref-go-back): Remove interactive spec.
9055         (describe-function-1): Fix message for alias.  Buttomize alias
9056         name.
9058         * simple.el (join-line): New alias.
9060 1999-01-15  Johan Vromans  <jvromans@squirrel.nl>
9062         * forms.el: (forms--show-record): Convert integers to string
9063         expicitly since concat will no longer accept integers.
9064         (forms-print): Use local `total-nb-records' since
9065         `forms--total-records' will be inaccessible after buffer switching.
9067 1998-01-14  Felix Lee  <flee@cygnus.com>
9069         * textmodes/flyspell.el (make-flyspell-overlay): Fix front stickiness.
9071 1999-01-14  Richard Stallman  <rms@psilocin.ai.mit.edu>
9073         * emacs-lisp/easymenu.el (easy-menu-get-map): Fix bugs in prev change.
9075 1999-01-14  Eli Zaretskii  <eliz@gnu.org>
9077         * international/codepage.el (cp850-decode-table): Fix previous change.
9079 1999-01-14  Simon Marshall  <simon@gnu.org>
9081         * shell.el (shell-dirtrack-verbose): New custom variable.
9082         (shell-dirstack-message): Use it.
9084 1999-01-14  Kenichi Handa  <handa@etl.go.jp>
9086         * international/mule-conf.el: Coding system alias `dos' for
9087         `undecided-dos', `mac' for `undecided-mac'.
9089         * international/mule-cmds.el (describe-language-environment):
9090         Don't alter input-method-alist.
9092 1999-01-13  Eli Zaretskii  <eliz@gnu.org>
9094         * international/codepage.el (cp850-decode-table): Replace nil
9095         entries with codes of similary looking glyphs.  (Suggested by
9096         Jason Rumney <jasonr@altavista.net>.)
9098 1999-01-13  Dave Love  <fx@gnu.org>
9100         * browse-url.el (browse-url-netscape): Fix ineffective "-noraise".
9102         * emacs-lisp/find-func.el (find-function-on-key): Fix previous change.
9104 1999-01-12  Karl Heuer  <kwzh@gnu.org>
9106         * files.el (auto-save-hook): Defvar this.
9108 1999-01-12  Alex Schroeder  <asc@bsiag.com>
9110         * progmodes/sql.el (sql-mode-ansi-font-lock-keywords): Quote font-lock
9111         faces, eliminating the need to load font-lock before loading sql.
9112         (sql-mode-oracle-font-lock-keywords): Likewise.
9113         (sql-mode-postgres-font-lock-keywords): Likewise.
9115 1999-01-11  Dave Love  <fx@gnu.org>
9117         * cus-start.el: Add inhibit-eol-conversion.
9119         * help.el (temp-buffer-setup-hook, temp-buffer-show-hook): Swap
9120         the values round.
9122 1999-01-11  Richard Stallman  <rms@psilocin.ai.mit.edu>
9124         * help.el (help-mode-finish): Renamed from help-mode-maybe.
9125         Don't switch to Help mode here.
9126         (temp-buffer-setup-hook): Use help-mode-finish.
9127         (help-mode-setup): New function.
9128         (temp-buffer-setup-hook): Use help-mode-setup.
9130         * progmodes/sql.el: New file.
9132         * files.el (auto-mode-alist): Add sql-mode.
9134         * faces.el (list-faces-display): Improve the formatting
9135         by computing the maximum length required for any face-name.
9137 1999-01-10  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
9139         * progmodes/compile.el (compilation-shell-minor-mode): New function.
9141 1999-01-10  Dan Nicolaescu  <dann@ics.uci.edu>
9143         * term.el (term_send_home): Change the string to
9144         be the same as the one emitted by xterm and consistent with the
9145         ones emitted by prior and next.
9146         (term_send_end): Likewise.
9148 1999-01-10  Dave Love  <fx@gnu.org>
9150         * emacs-lisp/find-func.el (find-function-on-key): DTRT for mouse
9151         bindings.
9153 1999-01-10  Eli Zaretskii  <eliz@gnu.org>
9155         * international/codepage.el (codepage-setup): Doc fix.
9156         (cp-decoding-vector-for-codepage): Likewise.
9158 1999-01-10  Markus Rost  <rost@gnu.org>
9160         * cus-edit.el (custom-save-delete): First scan the custom-file.
9162 1999-01-08  Richard Stallman  <rms@psilocin.ai.mit.edu>
9164         * international/iso-transl.el: Define a "function name" for
9165         each translation that isn't ASCII.  Use these function names
9166         in iso-transl-char-map.
9168 1999-01-08  Kenichi Handa  <handa@etl.go.jp>
9170         * international/mule-util.el (decompose-region): Do decomposition
9171         on temporary unibyte buffer.
9173         * international/mule.el (make-char): Doc-string modified.
9175 1999-01-07  Richard Stallman  <rms@psilocin.ai.mit.edu>
9177         * simple.el (comment-region): Delete spaces only if we
9178         deleted a comment starter.
9180 1999-01-07  Dave Love  <fx@gnu.org>
9182         * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
9184         * emacs-lisp/edebug.el (edebug-eval-defun): Deal with defcustom
9185         like eval-defun does.
9187         * dired.el (dired-mode-map): Fix duplicate [menu-bar regexp mark].
9189         * generic.el: Re-write `(make-variable-buffer-local (defvar ...'
9190         constructions.  Doc fixes.
9191         (generic-create-generic-function): Use defalias, not fset.
9193         * find-func.el: More doc fixes.
9195 1999-01-06  Stephen Eglen  <stephen@gnu.org>
9197         * files.el (save-buffers-kill-emacs): Show the list of current
9198         processes before prompting to kill them and exit.
9200 1999-01-06  Dave Love  <fx@gnu.org>
9202         * emacs-lisp/find-func.el: Doc fixes.
9203         (find-function-regexp): Extend for define-generic-mode,
9204         define-derived-mode, easy-mmode-define-minor-mode.
9206 1999-01-06  Dave Love  <fx@gnu.org>
9208         * progmodes/fortran.el (fortran-window-create): Account for scroll
9209         bar width.
9211         * browse-url.el: Require (noerror) w3-auto when compiling.
9212         (browse-url-maybe-new-window): Make it a macro and revert last
9213         change to callers.
9214         (browse-url-w3): Require w3 for w3-fetch-other-window.
9216 1999-01-06 Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
9218         * browse-url.el (browse-url-w3): Give w3-fetch-other-window the
9219         argument.
9221 1999-01-06  Simon Marshall  <simon@gnu.org>
9223         * subr.el (with-temp-message): Don't display MESSAGE if nil.  Doc fix.
9225         * font-lock.el (font-lock-default-fontify-buffer): When using
9226         with-temp-message, use nil rather than current-message.
9228         * lazy-lock.el (lazy-lock-unstall):
9229         (lazy-lock-fontify-after-idle): When using with-temp-message, use nil
9230         rather than current-message.
9232         * fast-lock.el (fast-lock-save-cache-1):
9233         (fast-lock-cache-data): When using with-temp-message, use nil rather
9234         than current-message.
9236 1999-01-06  Eli Zaretskii  <eliz@gnu.org>
9238         * international/codepage.el (cp-coding-system-for-codepage-1): Add
9239         the valid-codes property.
9241         * international/mule-cmds.el (prefer-coding-system): Call
9242         set-coding-priority, so that the internal array of priorities is
9243         also updated.
9245         * international/mule-util.el:
9246         (coding-system-change-eol-conversion,
9247         coding-system-change-text-conversion): Don't define here.
9249         * international/mule-cmds.el: Define them here.  Remove the
9250         autoload cookies.
9252 1999-01-06  Andreas Schwab  <schwab@gnu.org>
9254         * emacs-lisp/debug.el (debug): Leave recursive minibuffer enabled
9255         if it was enabled before.
9257         * view.el (View-revert-buffer-scroll-page-forward): Bind
9258         view-scroll-auto-exit instead of obsolete view-mode-auto-exit.
9260         * files.el (recover-session): Preserve point when inserting
9261         explanation.
9263 1999-01-06  Richard Stallman  <rms@psilocin.ai.mit.edu>
9265         * cus-edit.el (custom-save-delete): Don't delete whitespace
9266         and comments before the sexp that is replaced.
9268 1999-01-05  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
9270         * calendar/diary-lib.el (diary-float): Better fix of end-of-year error.
9272 1999-01-05  Andre Spiegel  <spiegel@inf.fu-berlin.de>
9274         * vc.el (vc-dired-hook): Use the original value of
9275         dired-move-to-filename-regexp on lines that have not been
9276         reformatted yet.
9277         (vc-dired-toggle-terse-mode): Tell vc-dired-hook whether the
9278         file lines have already been reformatted.
9280 1999-01-05  Dave Love  <fx@gnu.org>
9282         * progmodes/f90.el (f90-mode): Make imenu-case-fold-search
9283         buffer-local.
9285 1998-01-05  Torbjorn Einarsson  <T.Einarsson@clab.ericsson.se>
9287         * progmodes/f90.el: Change of regular expressions for type to
9288         correct highlighting and identation. Some small fixes for
9289         compatibility with XEmacs.
9291 1999-01-05  Stephen Eglen  <stephen@gnu.org>
9293         * mspools.el (mspools-vm-system-mail): Provide an alternative
9294         value based on rmail-spool-directory if $MAIL is not defined.
9296 1999-01-05  Carsten Dominik  <dominik@strw.leidenuniv.nl>
9298         * textmodes/reftex.el (reftex-section-levels): Allow negative levels.
9299         (reftex-section-info): Handle negative section levels.
9300         (reftex-view-crossref-extra): New option.
9301         (reftex-view-crossref): Generalized to work in more places.
9302         (reftex-find-citation-regexp-format, reftex-find-reference-format,
9303         reftex-macros-with-labels, reftex-global-search-marker): New variables.
9304         (reftex-view-cite-locations-from-bibtex): New command.
9305         (reftex-view-regexp-match, reftex-global-search,
9306         reftex-global-search-continue): New functions.
9307         (reftex-extract-bib-entries): No error for non-existing BibTeX
9308         file, just a message.
9309         (reftex-extract-bib-entries): Better error handling.
9310         (reftex-select-with-char): Use `*RefTeX Select*' for selection
9311         help and force it on current frame.
9312         (reftex-default-bibliography): New function.
9313         (reftex-access-parse-file): Check consistency after loading a
9314         parse file.  When inconsistent, enfore rescan.
9315         (reftex-check-parse-consistency): New function.
9316         (easy-menu-define): Options section drastically shortened.
9318 1999-01-05  Kenichi Handa  <handa@etl.go.jp>
9320         * language/thai-util.el (thai-compose-string): New function.
9322 1999-01-04  Inge Frick  <inge@nada.kth.se>
9324         * easymenu.el (easy-menu-define): Doc fix.
9325         (easy-menu-create-menu): New keyword :included.
9326         (easy-menu-do-add-item): New keyword :included.  SUFFIX may
9327         be an expression, not only a string.  Simulate style `button'.
9328         Use easy-menu-define-key-intern instead of easy-menu-define-key.
9329         (easy-menu-define-key-intern): New function.
9330         (easy-menu-add-item): Understand value returned from
9331         easy-menu-item-present-p and easy-menu-remove-item.
9332         (easy-menu-return-item): New function.
9333         (easy-menu-item-present-p, easy-menu-remove-item): Use it.
9335 1999-01-03  Richard Stallman  <rms@psilocin.ai.mit.edu>
9337         * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
9338         Use rmail-output-read-rmail-file-name to read the file name.
9339         Always call rmail-output-to-rmail-file noninteractively.
9340         When count > 1, do the loop here.
9341         Handle rmail-delete-after-output here.
9342         (rmail-summary-output): Similar changes.
9344         * mail/rmailout.el: Provide `rmailout'.
9345         (rmail-output-read-rmail-file-name): New function.
9346         (rmail-output-to-rmail-file): Use that.
9347         (rmail-output-read-file-name): New function.
9348         (rmail-output): Use that.
9350         * files.el (find-file-noselect): Let /: suppress wildcard matching.
9351         Error if wildcard matches no files.
9353 1999-01-02  Richard Stallman  <rms@psilocin.ai.mit.edu>
9355         * menu-bar.el (clipboard-yank): Doc fix.
9357         * info.el (Info-insert-dir): Chase symlinks for file-attributes.
9359 1998-12-31  Markus Rost  <rost@delysid.gnu.org>
9361         * textmodes/page-ext.el (pages-copy-header-and-position): Fix typo.
9363 1998-12-31  Andrew Innes  <andrewi@harlequin.co.uk>
9365         * rmail.el (rmail-encode-string): Make sure mask value is
9366         positive; (emacs-pid) returns a negative number on Windows 9x
9367         which causes odd behaviour.
9369 1998-12-31  Eli Zaretskii  <eliz@mescaline.gnu.org>
9371         * cus-start.el: Don't warn about dos-* variables unless on MS-DOS,
9372         and about w32-* variables unless on Windows/NT.
9374 1998-12-31  Boris Goldowsky  <boris@alum.mit.edu>
9376         * textmodes/sgml-mode.el (sgml-validate): Ask whether to save only
9377         if buffer is modified; ask about all modified buffers.
9379 1998-12-30  Richard Stallman  <rms@psilocin.ai.mit.edu>
9381         * simple.el (what-cursor-position): Fix previous change.
9383 1998-12-30  Richard Stallman  <rms@sucrose.ai.mit.edu>
9385         * mail/sendmail.el (mail-mode): Eliminate ambiguous match
9386         from paragraph-start.
9388 1998-12-30  Eli Zaretskii  <eliz@mescaline.gnu.org>
9390         * international/mule-cmds.el (prefer-coding-system): If the
9391         argument requires specific EOL conversion type, make the default
9392         coding systems use that.
9394 1998-12-30  Drew Csillag <drew_csillag@geocities.com>
9396         * progmodes/m4-mode.el (m4-m4-region, m4-m4-buffer):
9397         Use shell-command-on-region.
9398         (m4-start-m4, m4-end-m4): Functions deleted.
9400 1998-12-30  Michael Ernst  <mernst@alum.mit.edu>
9402         * vc.el (vc-backend-diff): Use `diff-switches-list' throughout.
9404 1998-12-29  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
9406         * browse-url.el (browse-url-mail): Give argument SEND-ACTION
9407         to compose-mail in the correct places and as a list.
9409 1998-12-29  Masatake Yamato  <masata-y@tori.aist-nara.ac.jp>
9411         * page-ext.el: Added mouse-selection feature for pages directory buffer.
9412         (pages-directory-map): Bind mouse-2
9413         (pages-copy-header-and-position): Put text property.
9414         (pages-directory-goto-with-mouse): New function.
9416 1998-12-29  Eli Zaretskii  <eliz@mescaline.gnu.org>
9418         * international/codepage.el (cp-make-coding-systems-for-codepage):
9419         Doc fix.
9420         (cp-coding-system-for-codepage-1): Likewise.
9422 1998-12-29  Kenichi Handa  <handa@etl.go.jp>
9424         * language/thai-util.el (thai-post-read-conversion): Handle Thai
9425         composition sequence correctly here instead of calling
9426         thai-compose-region.
9428         * textmodes/fill.el (fill-region-as-paragraph): While deleting a
9429         newline in multibyte buffer, if previous or next character is a
9430         composite char, check the first component of the composite char.
9432 1998-12-28  Andreas Schwab  <schwab@delysid.gnu.org>
9434         * emacs-lisp/advice.el (ad-special-forms): Add save-current-buffer
9435         and track-mouse.
9437 1998-12-27  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
9439         * mail/sendmail.el (mail-yank-original): Remove text properties
9440         after insertion.
9441         (mail-yank-region): Barf if no mark is set in the message
9442         being replied to.
9444         * help.el (function-called-at-point): First look for function at point.
9446 1998-12-27  Richard Stallman  <rms@psilocin.ai.mit.edu>
9448         * edmacro.el (edit-kbd-macro): Recognize electric-view-lossage.
9450 1998-12-26  Richard Stallman  <rms@psilocin.ai.mit.edu>
9452         * simple.el (what-cursor-position): Print character encoding also.
9454 1998-12-26  Dave Love  <fx@gnu.org>
9456         * textmodes/flyspell.el: If local-maps work, don't put
9457         flyspell-mode-map in minor-mode-map-alist; bind mouse-2 and M-TAB
9458         in flyspell-mouse-map (only).
9459         (flyspell-use-local-map): New variable.
9460         Use a different mouse-2 binding in that case,
9461         and don't add to minor-mode-map-alist.
9462         (make-flyspell-overlay, flyspell-correct-word):
9463         Test flyspell-use-local-map.
9465 1998-12-26  Richard Stallman  <rms@psilocin.ai.mit.edu>
9467         * files.el (file-expand-wildcards): Handle wildcards in directory name.
9468         Be careful about whether to return a relative file name,
9469         and if so, relative to what directory.
9471 1998-12-25  Richard Stallman  <rms@psilocin.ai.mit.edu>
9473         * emacs-lisp/easymenu.el (easy-menu-get-map):
9474         Change global map only if this menu exists in the global map already,
9475         and not in the local map.
9476         (easy-menu-do-add-item): Fix error message.
9478         * foldout.el (foldout-inhibit-key-bindings):
9479         Avoid concatenating onto outline-minor-mode-prefix.
9480         Make a new keymap for that prefix, if it does not already have one.
9482 1998-12-25  Ilya Zakharevich  <ilya@math.ohio-state.edu>
9484         * cperl-mode.el:
9485         Can use linear algorithm for indentation if Emacs supports it.
9486         (cperl-after-expr-p):   It is BLOCK if we reach lim when backup sexp.
9487         (cperl-after-block-p):  Likewise.
9488         (cperl-after-block-and-statement-beg): Likewise.
9489         (cperl-after-block-p):  After END/BEGIN we are a block.
9490         (cperl-after-expr-p):   Skip labels when checking
9491         (cperl-indent-region):  Make a marker for END - text added/removed.
9492         Disable hooks during the call (how to call them later?).
9493         Now indents 820-line-long function in 6.5 sec (including
9494         syntaxification) the first time (when buffer has few
9495         properties), 7.1 sec the second time.
9496         (cperl-indent-region):  Do not indent whitespace lines
9497         (cperl-style-alist)
9498                 Include `cperl-merge-trailing-else' where the value is clear.
9499         (cperl-styles-entries): Likewise.
9500         (cperl-problems):       Improvements to docs.
9501         (cperl-tips):           Likewise.
9502         (cperl-non-problems):   Likewise.
9503         (cperl-mode):           Make lazy syntaxification possible.
9504         Loads pseudo-faces for the sake of `cperl-find-pods-heres' (for 19.30).
9505         `font-lock-unfontify-region-function' was set to a wrong function.
9507         (cperl-find-pods-heres): Safe a position in buffer where it is safe to
9508         restart syntaxification.  Changed so that -d ?foo? is a RE. Do
9509         not warn on `=cut' if doing a chunk only. 1 << 6 was OK,
9510         but 1<<6 was considered as HERE-doc.
9511         <file/glob> made into a string.
9512         Postpone addition of faces after syntactic step.
9513         Recognition of <FH> was wrong.
9514         Highlight `gem' in s///gem as a keyword.  `qr' recognized.
9515         Knows that split// is null-RE.
9516         Highlights separators in 3-parts expressions as labels.
9517         <> was considered as a glob.
9518         Would err if the last line is `=head1'.
9519         $a-1 ? foo : bar; was a considered a regexp.
9520         `<< (' was considered a start of HERE-doc.
9521         mark qq[]-etc sections as syntax-type=string
9522         Was not processing sub protos after a comment ine.
9523         Was treating $a++ <= 5 as a glob.
9524         Tolerate unfinished REx at end-of-buffer.
9525         `unwind-protect' was left commented.
9526         / and ? after : start a REx.
9528         (cperl-syntaxify-by-font-lock): Set to t, should be safe now.
9529         Better default, customizes to `message' too, off in text-mode.
9531         (cperl-array-face): Renamed from `font-lock-emphasized-face',
9532         `defface'd.
9533         (cperl-hash-face): Renamed from `font-lock-other-emphasized-face'.
9534         `defface'd.
9535         (cperl-emacs-can-parse):        New state variable.
9536         (cperl-indent-line):    Corrected to use global state.
9537         (cperl-calculate-indent):       Likewise.
9538         (cperl-fix-line-spacing):       Likewise (not used yet).
9539         (cperl-calculate-indent):       Did not consider `,' as
9540         continuation mark for statements.
9541         (cperl-calculate-indent): Avoid parse-data optimization at toplevel.
9542         Remove another parse-data optimization at toplevel: would
9543         indent correctly.
9544         Correct for labels when calculating indentation of continuations.
9545         Docstring updated.
9546         (cperl-choose-color):   Converted to a function (to be
9547         compilable in text-mode).
9548         (cperl-dark-background):        Disable without window-system.
9549         Do `defface' only if window-system.
9550         (cperl-fix-line-spacing):       Sped up to bail out early.
9551         (x-color-defined-p): Was not compiling on XEmacs
9552         Was defmacro'ed with a tick.  Remove another def.
9553         (cperl-clobber-lisp-bindings): If set, C-c variants are the old ones
9554         (cperl-unwind-to-safe): New function.
9555         (cperl-fontify-syntaxically): Use `cperl-unwind-to-safe' to start at reasonable position.
9556         (cperl-fontify-syntaxically): Unwinds start and end to go out of
9557                                      long strings (not very successful).
9558         (cperl-forward-re):     Highlight the trailing / in s/foo// as string.
9559         Highlight the starting // in s//foo/ as function-name.
9560         Emit a meaningful error instead of a cryptic one for an
9561         uncomplete REx near end-of-buffer.
9563         (cperl-electric-keyword):       `qr' recognized.
9564         (cperl-electric-else):          Likewise
9565         (cperl-to-comment-or-eol):      Likewise
9566         (cperl-make-regexp-x):  Likewise
9567         (cperl-init-faces):     Likewise, and `lock' (as overridable?).
9568         Corrected to use new macros;
9569         `if' for copying `reference-face' to `constant-face' was backward.
9570         remove init `font-lock-other-emphasized-face',
9571         `font-lock-emphasized-face', `font-lock-keyword-face'.
9572         Interpolate `cperl-invalid-face'.
9573         (cperl-make-regexp-x):  Misprint in a message.
9574         (cperl-syntaxify-unwind): New configuration variable
9575         (cperl-fontify-m-as-s): New configuration variable
9576         (cperl-electric-pod):   Check for after-expr was performed
9577         inside of POD too.
9578         (cperl-backward-to-noncomment): Cetter treatment of PODs and HEREs.
9579         (cperl-clobber-mode-lists): New configuration variable.
9580         (cperl-not-bad-style-regexp):   Updated.
9581         Init:                   `cperl-is-face' was busted.
9582         (cperl-make-face):      New macros.
9583         (cperl-force-face):     New macros.
9584         (font-lock-other-type-face): Done via `defface' too.
9585         (cperl-nonoverridable-face):    New face.  Renamed from
9586         `font-lock-other-type-face'.
9587         (cperl-init-faces-weak):        Use `cperl-force-face'.
9588         (cperl-comment-indent): Commenting __END__ was not working.
9589         (cperl-indent-for-comment):     Likewise.
9590         (cperl-write-tags):     Correct for XEmacs's `visit-tags-table-buffer'.
9591         When removing old TAGS info was not relativizing filename.
9592         (cperl-tags-hier-init): Gross hack to pretend we work (are we?).
9593         Another try to work around XEmacs problems.  Better progress messages.
9594         (toplevel):             Require custom unprotected => failure on 19.28.
9595         (cperl-xemacs-p):       Defined when compile too
9596         (cperl-find-tags):      Was writing line/pos in a wrong order,
9597         pos off by 1 and not at beg-of-line.
9598         (cperl-etags-snarf-tag): New macro
9599         (cperl-etags-goto-tag-location): New macro
9600         (cperl-version):        New variable.  New menu entry
9601         random docstrings:      References to "future" 20.3 removed.
9602         Menu was described as `CPerl' instead of `Perl'
9603         (perl-font-lock-keywords): Would not highlight `sub foo($$);'.
9604         (cperl-toggle-construct-fix): Was toggling to t instead of 1.
9605         (cperl-ps-print-init):  Associate `cperl-array-face', `cperl-hash-face'
9606         Remove `font-lock-emphasized-face', `font-lock-other-emphasized-face',
9607         `font-lock-reference-face', `font-lock-keyword-face'.
9608         Use `eval-after-load'.
9609         Remove not-CPerl-related faces.
9610         (cperl-tips-faces):     New variable and an entry into Mini-docs.
9611         (cperl-indent-exp):     Was not processing else-blocks.
9612         (cperl-get-state):      NOP line removed.
9613         (cperl-ps-print):       New function and menu entry.
9614         (cperl-ps-print-face-properties):       New configuration variable.
9615         (cperl-invalid-face):   New configuration variable.
9616         (perl-font-lock-keywords):      Highlight trailing whitespace
9617         (cperl-contract-levels):        Documentation corrected.
9618         (cperl-contract-level):         Likewise.
9619         (cperl-ps-extend-face-list):    New macro.
9620         (cperl-invalid-face):   Change to ''underline.
9622 1998-12-25  Markus Rost  <rost@delysid.gnu.org>
9624         * mail/rmailout.el (rmail-output): Abbreviate name of default-file
9625         for read-file-name.
9626         (rmail-output-to-rmail-file): Likewise.
9628 1998-12-25  Richard Stallman  <rms@psilocin.ai.mit.edu>
9630         * emacs-lisp/easymenu.el (easy-menu-get-map):
9631         If MENU is nil, use global menu-bar map.
9632         (easy-menu-add-item, easy-menu-remove-item): Argument renamed.
9633         (easy-menu-item-present-p, easy-menu-get-map): Argument renamed.
9635 1998-12-22  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9637         * ps-mule.el (ps-mule-begin-job): Programming uniformization.
9639 1998-12-22  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9641         * ps-print.el (ps-print-version): New version number (4.1.3).
9643 1998-12-21  Eli Zaretskii  <eliz@mescaline.gnu.org>
9645         * international/mule-cmds.el: Use make-sparse-keymap instead of
9646         define-prefix-key when defining MULE menu items.
9648         * info.el (Info-node-at-bob-matching): New function.
9649         (Info-find-node, Info-build-node-completions): Call it.
9651 1998-12-21  Andreas Schwab  <schwab@delysid.gnu.org>
9653         * help.el (describe-function-1): Say "keymap", not "Lisp macro",
9654         when this is an autoloaded keymap.
9656 1998-12-20  Eli Zaretskii  <eliz@mescaline.gnu.org>
9658         * international/codepage.el (cp-coding-system-for-codepage-1):
9659         Create separate encoders and decoders, for DOS and Unix.  Make the
9660         usual family of 3 coding systems, so that automatic detection of
9661         EOL type works.
9662         (cp-make-coding-systems-for-codepage): Don't intern DOS- and
9663         Unix-specific symbols here, and don't call
9664         cp-coding-system-for-codepage-1 twice.  (Suggested by Ken'ichi
9665         Handa <handa@etl.go.jp>.)
9667         * dos-vars.el (dos-codepage-setup-hook): New defcustom.
9669         * term/internal.el (IT-character-translations): New variable, an
9670         alist used to display characters for which there's no glyphs in
9671         the current codepage.
9672         (IT-display-table-setup): New function, sets up the DOS terminal
9673         for a given codepage.
9674         (dos-codepage-setup): New function, sets up the MULE environment
9675         for the current value of dos-codepage.
9676         (top-level if): In the multibyte mode, turn on
9677         unibyte-display-via-language-environment.  In the unibyte mode,
9678         set up the special syntax tables to map lower- to upper case and
9679         back.
9681 1998-12-19  Eric Ludlam  <zappo@delysid.gnu.org>
9683         * speedbar.el: (speedbar-frame-parameters) Add : to custom prompt.
9684         (speedbar-frame-plist) Remove useless comments.
9685         (speedbar-frame-mode) Do not specify height if it is in the param list.
9686         Use default y position w/out changing it.
9687         If default x position is a list, keep, calculate the non-list X
9688         value when devining an initial position.
9689         (speedbar-this-file-in-vc) Fix SCCS to use s. not p. files.
9690         (speedbar-tag-group-name-minimum-length): New variable.
9691         (speedbar-frame-parameter): New compatibility function.
9692         (speedbar-frame-mode): Updated to use speedbar-frame-parameter.
9693         (speedbar-apply-one-tag-hierarchy-method): Fixed up taging sub
9694         groups to keep things in the right order, and to help with some
9695         naming conventions.
9696         (speedbar-create-tag-hierarchy): Enable buffer local version of
9697         `speedbar-tag-hierarchy-method' in the buffer we are tagging.
9698         (speedbar-line-path) Make DEPTH param optional.  Devine it if absent.
9699         the case, derive it from the cursor location in speedbar.
9701 1998-12-17  Eli Zaretskii  <eliz@mescaline.gnu.org>
9703         * international/mule-cmds.el (set-language-environment): On MS-DOS
9704         terminals, install DOS-specific nonascii-translation-table if the
9705         language info doesn't specify one.  Pass the default eol-type to
9706         set-language-environment-coding-systems.
9707         (set-default-coding-systems): Copy the eol-type property for the
9708         new default values of {buffer-file,process}-coding-system from the
9709         old defaults.
9710         (set-language-environment-coding-systems): Accept an optional
9711         argument EOL-TYPE, and set the eol-type property of the default
9712         coding systems accordingly.
9713         (set-terminal-coding-system): Enable menu item on MS-DOS terminals.
9714         (set-keyboard-coding-system): Likewise.
9715         (set-default-coding-systems): Don't set
9716         default-terminal-coding-system on MS-DOS to anything but nil.
9717         (prefer-coding-system): Describe in the doc string that
9718         default-terminal-coding-system is not changed on MS-DOS.
9719         (set-language-environment): For MS-DOS, set standard syntax table
9720         and display table for all characters with code above 127.
9721         (standard-display-european-internal): For MS-DOS, pass all
9722         characters with code above 127 directly to the terminal, and don't
9723         remap characters 160 and 146 in the unibyte case.
9725         * international/codepage.el: New file.
9727 1998-12-16  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
9729         * diary-lib.el (diary-float): Fix end-of-year error and typos in
9730         comments.
9732 1998-12-16  Oleg S. Tihonov  <tihonov@ffke-campus.mipt.ru>
9734         * map-ynp.el (map-y-or-n-p): Ignore input methods.
9736         * subr.el (read-passwd): Likewise.
9738 1998-12-16  Eli Zaretskii  <eliz@mescaline.gnu.org>
9740         * info.el (Info-find-node): Add 1 to the position read from the
9741         tag table.  Don't fail if the node delimiter ^_ is the first
9742         character in the file.
9743         (Info-insert-dir): Don't fail when the node delimiter ^_ is the
9744         first character in the file.
9745         (Info-read-subfile): Likewise.
9746         (Info-select-node): Likewise.
9747         (Info-build-node-completions): Likewise.
9749 1998-12-16  Richard Stallman  <rms@gnu.org>
9751         * term/x-win.el (x-cut-buffer-or-selection-value):
9752         If clipboard is enabled, try it before PRIMARY selection.
9754 1998-12-15  Emilio Lopes  <Emilio.Lopes@Physik.TU-Muenchen.DE>
9756         * international/iso-acc.el (iso-languages): For Portuguese ~c and ~C
9757         insert c-cedilla and C-cedilla respectively, like in latin-1.
9759 1998-12-15  Eli Zaretskii  <eliz@delysid.gnu.org>
9761         * language/hebrew.el: Don't use sublists in the flags argument
9762         passed to make-coding-system.
9764 1998-12-15  Kenichi Handa  <handa@etl.go.jp>
9766         * ps-mule.el (ps-mule-begin-job): Delete nil and unknown from a
9767         list of character sets found by find-charset-region.
9769         * ps-mule.el: Always require ps-print.  Move some function
9770         definitions for Emacs 20.2 and the earlier to ps-print.el.
9771         (ps-mule-find-wrappoint): Make it work also with Emacs 20.2.
9773         * ps-print.el: Define several functions for Emacs 20.2 and the
9774         earlier version.
9775         (ps-printer-name): Check if printer-name is bound.
9777 1998-12-15  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9779         * ps-mule.el: Programming uniformization and little code improvement.
9780         (ps-mule-prepare-font): Programming uniformization.
9781         (ps-mule-find-wrappoint, ps-mule-plot-rule-cmpchar)
9782         (ps-mule-string-encoding, ps-mule-begin-job): Little code improvement.
9784         * ps-bdf.el: Programming uniformization and little code improvement.
9785         (bdf-search-and-read): New fun.
9786         (bdf-write-cache, bdf-initialize, bdf-info-absolute-path)
9787         (bdf-info-mod-time, bdf-info-size, bdf-info-font-bounding-box)
9788         (bdf-info-relative-compose, bdf-info-baseline-offset)
9789         (bdf-info-code-range, bdf-info-maxlen, bdf-info-offset-vector)
9790         (bdf-read-bitmap, bdf-get-bitmaps): Programming uniformization.
9791         (bdf-expand-file-name, bdf-file-newer-than-time, bdf-find-file)
9792         (bdf-read-cache, bdf-read-font-info, bdf-generate-glyphs): Little code
9793         improvement.
9795 1998-12-15  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
9797         * ps-print.el: (ps-print-version): New version number (4.1.2), doc fix
9798         and mule related code extraction. Autoload ps-mule funs.
9800         * ps-mule.el: Doc fix. Require ps-print only when compiled.
9801         (ps-mule-prologue-generated): New fun.
9802         (ps-mule-plot-string): Add autoload cookie.
9803         (ps-mule-begin-job): Call ps-mule-prologue-generated.
9805 1998-12-15  Kenichi Handa  <handa@etl.go.jp>
9807         * ps-bdf.el: Require ps-mule instead of ps-print.
9808         (bdf-directory-list): Add autoload cookie.
9810         * ps-mule.el: New file.  Mule related code extracted from
9811         ps-print.el.  Require ps-print, provide ps-mule.
9812         (ps-multibyte-buffer): Add autoload cookie.
9813         (ps-mule-prepare-ascii-font): New fun.
9814         (ps-mule-set-ascii-font): New fun.
9815         (ps-mule-skip-same-charset): Fun deleted.
9816         (ps-mule-plot-string): Set ps-mule-current-charset.
9817         (ps-mule-initialize): Add autload cookie.  Don't set
9818         ps-mule-font-info-database here.
9819         (ps-mule-begin-job): Renamed from ps-mule-begin.  Update
9820         ps-mule-font-info-database and ps-control-or-escape-regexp.
9821         (ps-mule-begin-page): New fun.
9823         * ps-print.el: Mule related code moved to ps-mule.el.
9824         (ps-begin-job): While setting ps-control-or-escape-regexp, don't
9825         check ps-mule-charset-list.
9826         (ps-begin-page): Don't set ps-mule-current-charset, instead call
9827         ps-mule-begin-page.
9828         (ps-basic-plot-string): Call ps-mule-prepare-ascii-font.
9829         (ps-plot-region): Don't set ps-mule-current-charset, instead call
9830         ps-mule-set-ascii-font.  Don't call ps-mule-skip-same-charset,
9831         instead skip same charsets by itself.
9832         (ps-generate): Call ps-mule-initialize of needs-begin-file is
9833         non-nil.  Call ps-mule-begin-job.
9835 1998-12-15  Kenichi Handa  <handa@etl.go.jp>
9837         * ps-bdf.el: File name changed from bdf.el.  Provide ps-bdf
9838         instead of bdf.
9840         * ps-print.el (ps-mule-font-info-database): Doc-string modified.
9841         (ps-mule-external-libraries): New element FEATURE.
9842         (ps-mule-init-external-library): Ajusted for the above change.
9843         (ps-mule-generate-font): Likewise.
9844         (ps-mule-generate-glyphs): Likewise.
9845         (ps-mule-prepare-font): Likewise.
9846         (ps-mule-initialize): Likewise.
9847         (ps-begin-file): Superfluous tailing parenthesis deleted.
9849 1998-12-15  Kenichi Handa  <handa@etl.go.jp>
9851         * international/fontset.el (x-decompose-font-name): If PATTERN
9852         doesn't have any wild cards, return a vector made from a name that
9853         is found by x-resolve-font-name found.  Comments added.
9855         * international/mule-cmds.el (find-coding-systems-for-charsets):
9856         Handle the case of unknown charset.
9857         (find-multibyte-characters): If invalid multibyte characters are
9858         found, return the corresponding strings instead of character
9859         codes.
9860         (find-multibyte-characters): Adjusted for the above change.
9861         (select-safe-coding-system): For a unibyte buffer, always returns
9862         DEFAULT-CODING-SYSTEM.
9863         (get-charset-property): Fix previous change.  Make it a function.
9864         (put-charset-property): Make it a function.
9866         * international/mule.el (make-coding-system): Set mime-charset
9867         property of *-with-esc coding system to nil.
9869         * international/quail.el (quail-point-in-conversion-region): New
9870         function.
9871         (quail-conversion-backward-delete-char): When a key sequence is
9872         being translated, call quail-delete-last-char.
9874         * language/devan-util.el
9875         (devanagari-reorder-glyphs-for-decomposition): Fix the way to
9876         handle devanagari-decomposition-rules.
9878 1998-12-14  Andreas Schwab  <schwab@delysid.gnu.org>
9880         * textmodes/texinfo.el (texinfo-tex-buffer): Bind
9881         tex-start-options-string to empty string.
9882         (texinfo-tex-region): Use texinfo-tex-trailer as documented.
9884 1998-12-14  Andrew Innes  <andrewi@delysid.gnu.org>
9886         * gnus/nntp.el (nntp-request-group): Undo previous change (4xx and
9887         5xx responses are already handled properly).
9889 1998-12-13  Richard Stallman  <rms@gnu.org>
9891         * progmodes/compile.el (compilation-error-regexp-alist): Insist
9892         on a non-digit in the file name.
9894         * simple.el (comment-region): Handle comment-padding
9895         separately for insertion and for deletion, in the right way for each.
9897 1998-12-13  Felix Lee  <flee@cygnus.com>
9899         * progmodes/compile.el (compilation-error-regexp-alist): Fix
9900         regexp to match "ChangeLog:1:1998-12-09 ..."
9902 1998-12-13  Eli Zaretskii  <eliz@delysid.gnu.org>
9904         * cus-start.el (dos-unsupported-char-glyph): Add.
9906 1998-12-11  Dave Love  <fx@gnu.org>
9908         * progmodes/fortran.el (fortran-font-lock-keywords-3): Wrap
9909         forward-sexp in condition-case.
9911         * emacs-lisp/find-func.el (find-function-search-for-symbol):
9912         Remove unnecessary test on `library' for explicit file name.
9913         Widen scope of save-match-data.
9915 1998-12-10  Eli Zaretskii  <eliz@delysid.gnu.org>
9917         * international/mule.el (load-with-code-conversion): If the loaded
9918         file was inserted  with no-conversion or raw-text coding system,
9919         make the buffer unibyte.
9921 1998-12-09  Richard Stallman  <rms@gnu.org>
9923         * progmodes/cc-menus.el (cc-imenu-java-generic-expression):
9924         Get rid of nested loops.
9926         * mouse.el (mouse-drag-vertical-line):
9927         If WHICH-SIDE is not `right', then scroll bars are on the left.
9929         * loadhist.el (load-history-loaded): defvar moved to help.el.
9931         * help.el (symbol-file-load-history-loaded): Variable renamed,
9932         and defvar moved from loadhist.el.
9933         (symbol-file): Renamed from describe-function-find-file.
9934         Load fns-VERSION.el here.
9935         (describe-variable, describe-function-1): Use symbol-file.
9937         * textmodes/tex-mode.el (tex-generate-zap-file-name):
9938         Don't start the name with #.
9940         * ispell.el: Take out the eval-when's.
9942 1998-12-09  Peter Breton  <pbreton@ne.mediaone.net>
9944         * dirtrack.el (dirtrack-directory-change-hook): New hook.
9945         (dirtrack): Run it.  Make debug message more verbose.
9947 1998-12-09  Kurt Hornik  <Kurt.Hornik@ci.tuwien.ac.at>
9949         * progmodes/octave-mod.el (octave-abbrev-start): Use the correct
9950         name of the abbrev table, and provide support for XEmacs.
9951         (octave-xemacs-p): New variable.
9953 1998-12-09  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
9955         * mail/sendmail.el (sendmail-send-it): Don't wait for sendmail to
9956         exit, when mail-interactive is nil.
9958 1998-12-09  Changwoo Ryu  <cwryu@adam.kaist.ac.kr>
9960         * files.el (after-find-file): Message fix.
9962 1998-12-09  Ken Stevens  <stevens@kdstevens.com>
9964         * ispell.el (ispell-kill-ispell): Don't send newline after EOF.
9966 1998-12-09  Geoff Voelker  <voelker@cs.washington.edu>
9968         * ange-ftp.el (ange-ftp-expand-file-name) [windows-nt]: Handle
9969         filenames using backslashes.
9971 1998-12-09  Dave Love  <fx@gnu.org>
9973         * browse-url.el (browse-url-mail): Call compose-mail-other-window
9974         with correct number of args.
9975         (browse-url-maybe-new-window): New arg.  Callers changed.
9977         * progmodes/fortran.el (fortran-check-end-prog-re): Allow trailing
9978         comment.
9980 1998-12-08  Geoff Voelker  <voelker@cs.washington.edu>
9982         * makefile.nt (install) [COPY_LISP_SOURCE]: Fix end of conditional.
9984 1998-12-08  Markus Rost  <rost@delysid.gnu.org>
9986         * vc.el (vc-rcs-release): Fix Type.
9987         (vc-sccs-release): Fix Type.
9988         (vc-cvs-release): Fix Type.
9990         * mail/rmailsum.el (rmail-summary-output): Simplify. Make prefix
9991         arg work right.
9993         * mail/rmailout.el (rmail-output-to-rmail-file): Avoid multiple
9994         output of last undeleted message.
9996 1998-12-07  Geoff Voelker  <voelker@cs.washington.edu>
9998         * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
9999         (buffer-undo-list) [windows-nt]: Use different relative path.
10001 1998-12-07  Simon Marshall  <simon@gnu.org>
10003         * font-lock.el (java-font-lock-keywords-2): Wrap java-minor-types.
10005 1998-12-05  Markus Rost  <rost@delysid.gnu.org>
10007         * xt-mouse.el (xterm-mouse-mode): Pacify the byte compiler.
10009         * emacs-lisp/byte-opt.el: Require bytecomp for byte-goto-ops.
10011 1998-12-04  Markus Rost  <rost@delysid.gnu.org>
10013         * info.el (Info-menu): Don't return error if point is between menu
10014         header and first menu item.
10016 1998-12-04  Dave Love  <fx@gnu.org>
10018         * help.el (describe-function-1): Fix description for alias.
10020 1998-12-03  Andreas Schwab  <schwab@delysid.gnu.org>
10022         * emacs-lisp/lisp-mnt.el (lm-summary): Strip off -*-
10023         specifications from summary line.
10025         * rect.el (delete-whitespace-rectangle): Mark for autoload.
10026         (close-rectangle): Define alias only once in loaddefs.el.
10028 1998-12-03  Eli Zaretskii  <eliz@mescaline.gnu.org>
10030         * term/internal.el: Remove code which sets up a special syntax
10031         table for non-ASCII characters.
10033 1998-12-02  Andrew Innes  <andrewi@delysid.gnu.org>
10035         * dos-w32.el (direct-print-region-function): Try to ensure that
10036         printer-name is expanded to a file name on a local drive;
10037         sometimes printing a file loaded from a network volume fails.
10038         (direct-print-region-function): Add a function to
10039         write-region-annotate-functions to append a formfeed character to
10040         the region being printed, if the region doesn't end with a
10041         formfeed already.  This avoids creating a second print job
10042         containing a blank page when print spooling is enabled on Windows.
10044 1998-12-02  Dave Love  <fx@gnu.org>
10046         * help.el (help-make-xrefs): Use `info', not the non-autoloaded
10047         `Info-goto-node'.
10049 1998-12-02  Richard Stallman  <rms@gnu.org>
10051         * help.el (temp-buffer-resize-mode): Doc fix.
10053         * cus-edit.el (custom-save-delete): Save point before
10054         reading a sexp, rather than backing up.
10056         * international/iso-transl.el: Fix previous change.
10058 1998-12-02  Andre Spiegel  <spiegel@inf.fu-berlin.de>
10060         * vc.el (vc-dired-window-configuration, vc-ediff-windows,
10061         vc-ediff-result, vc-dired-switches, vc-dired-terse-mode):
10062         Added defvars to suppress compilation warnings.
10064 1998-11-30  Ken Stevens  <k.stevens@ieee.org>
10066         * ispell.el: Improved and fixed customize for variables:
10067         ispell-highlight-p, ispell-check-comments, ispell-help-in-bufferp,
10068         ispell-dictionary-alist, ispell-skip-sgml.
10069         Improved and fixed comments in variables and messages for
10070         functions: ispell-help-in-bufferp, ispell-local-dictionary,
10071         ispell-menu-map, ispell-checking-message, ispell-parser,
10072         ispell-word, lookup-words, ispell-change-dictionary, ispell-region,
10073         ispell-begin-tex-skip-regexp, ispell-begin-skip-region,
10074         ispell-comments-and-strings, ispell-continue, ispell-complete-word,
10075         ispell-message-text-end, ispell-add-per-file-word-list.
10076         (ispell-dictionary-alist-1): (ispell-dictionary-alist2): A coding
10077         system is now required for all languages.  Casechars improved for
10078         castellano, castellano8, and norsk dictionaries.  Dictionary
10079         norsk7-tex added.  Dictionary polish added.
10080         (ispell-dictionary-alist): Redefined at load-time to support
10081         dictionary changes.
10082         (ispell-menu-map): Redefined at load-time to support menu changes.
10083         (ispell-check-version): New alias for `check-ispell-version'.
10084         (ispell-parse-output): Fixed matching for ispell error messages.
10085         Correctly returns spelling suggestions in order generated by ispell
10086         process.
10087         (check-ispell-version): Ensure `case-fold-search' doesn't get
10088         redefined.
10089         (ispell-complete-word): Ensure `case-fold-search' doesn't get
10090         redefined.  Fix bug that didn't respect case of word being completed.
10091         (ispell-init-process): Set process coding system to be compatible
10092         with emacs processes and the ispell process.
10093         (ispell-kill-ispell): Ensures ispell process has terminated before
10094         starting new process.  This can otherwise confuse process filters
10095         and hang the ispell process.
10096         (ispell-begin-skip-region-regexp): (ispell-skip-region): Improved
10097         skipping support for sgml.
10098         (ispell-minor-check): Support sgml labels.  Fix mapping ^M to \r
10099         which could cause `ispell-complete-word' to hang.
10100         (ispell-message): Improved message reference matching.  Ensure
10101         `case-fold-search' doesn't get redefined.
10102         (ispell-buffer-local-parsing): Ensure `case-fold-search' doesn't
10103         get redefined.  Fixed bug in returning to nroff mode from tex mode.
10104         (ispell-add-per-file-word-list): Ensure `case-fold-search' doesn't
10105         get redefined.
10107 1998-11-30  Richard Stallman  <rms@psilocin.ai.mit.edu>
10109         * textmodes/flyspell.el (flyspell-check-word-p):
10110         Don't delay inside a kbd macro.
10112         * subr.el (make-local-hook): Return the hook variable.
10114 1998-11-30  Emilio Lopes  <Emilio.Lopes@Physik.TU-Muenchen.DE>
10116         * hscroll.el (hscroll-mode, hscroll-global-mode, hscroll-window-maybe):
10117         Use a timer instead of post-command-hook.
10118         (hscroll-timer): New variable.
10120 1998-11-30  Dave Love  <fx@gnu.org>
10122         * help.el (help-xref-button): Do nothing if text already has the
10123         help-xref property.
10124         (describe-variable): Revert previous change to hyperlink to source.
10126 1998-11-29  Richard Stallman  <rms@psilocin.ai.mit.edu>
10128         * bindings.el (features): Add `base64' to this list.
10130         * loadhist.el (symbol-file): Doc fix.
10132         * loadup.el (buffer-undo-list): Write fns-VERSION.el in lib-src.
10134         * files.el (hack-one-local-variable): Cope with non-file buffers.
10136 1998-11-28  Richard Stallman  <rms@psilocin.ai.mit.edu>
10138         * help.el (describe-mode): Put major mode first.
10140         * calendar/appt.el (appt-disp-window): Use pop-to-buffer,
10141         to support special-display and same-window features.
10143 1998-11-27  Richard Stallman  <rms@psilocin.ai.mit.edu>
10145         * simple.el (transpose-subr, transpose-subr-1): Rename variables
10146         bound in one function and used in the other.
10147         (transpose-subr-start1, transpose-subr-start2): Add defvars.
10148         (transpose-subr-end1, transpose-subr-end2): Add defvars.
10150 1998-11-26  Richard Stallman  <rms@psilocin.ai.mit.edu>
10152         * autoinsert.el (auto-insert-alist): Use user-mail-address.
10154 1998-11-26  Kenichi Handa  <handa@etl.go.jp>
10156         * international/ccl.el (ccl-dump-translate-character-const-tbl):
10157         Give format correct control string.
10159         * international/mule.el (define-translation-table): Fix bug of
10160         setting incorrect translation-table-id.  If the first element of
10161         ARGS is a translation table, just register it.
10163         * language/chinese.el ("Chinese-BIG5"): Add charset-origin-alist
10164         property.
10166 1998-11-24  Michael Ernst  <mernst@alum.mit.edu>
10168         * thingatpt.el (thing-at-point-url-at-point): Don't use current
10169         syntax table to determine what is whitespace.
10171 1998-11-24  Richard Stallman  <rms@psilocin.ai.mit.edu>
10173         * frame.el (frame-parameter): Doc fix.
10175         * textmodes/tex-mode.el (tex-feed-input): New function.
10176         (tex-define-common-keys): Add binding for C-c C-m.
10178 1998-11-23  Dave Love  <fx@gnu.org>
10180         * progmodes/fortran.el: Various minor doc fixes.
10181         (fortran-font-lock-keywords-1): Add `d' to comment-chars.
10182         (fortran-with-subprogram-narrowing): New macro.
10183         (fortran-check-for-matching-do): Use it.
10184         (fortran-end-do): Use fortran-check-end-prog-re.
10185         (fortran-beginning-do, fortran-end-if, fortran-beginning-if)
10186         (fortran-calculate-indent, fortran-calculate-indent): Likewise.
10188 1998-11-23  Simon Marshall  <simon@gnu.org>
10190         * font-lock.el (font-lock-defaults): Doc fix.
10191         (font-lock-default-fontify-buffer): Rewritten to use with-temp-message.
10192         (lisp-font-lock-keywords-2): Fontify with-temp-message as a keyword.
10194         * lazy-lock.el (lazy-lock-unstall):
10195         (lazy-lock-fontify-after-idle): Rewritten to use with-temp-message.
10197         * fast-lock.el (fast-lock-save-cache-1):
10198         (fast-lock-cache-data): Rewritten to use with-temp-message.
10200 1998-11-22  Andrew Innes  <andrewi@delysid.gnu.org>
10202         * mail/rmail.el (rmail-set-message-counters-counter): Detect
10203         messages that have been added with DOS line endings and convert
10204         the line endings for such messages.
10206 1998-11-22  Emilio Lopes  <Emilio.Lopes@Physik.TU-Muenchen.DE>
10208         * help.el: Add resizing of temporary buffers.
10209         (temp-buffer-resize-mode): New command and variable.
10210         (temp-buffer-max-height): New variable.
10211         (resize-temp-buffer-window): New function.
10213         * window.el (window-buffer-height): New function, split from
10214         shrink-window-if-larger-than-buffer.
10215         (shrink-window-if-larger-than-buffer): Use window-buffer-height.
10217 1998-11-22  Richard Stallman  <rms@psilocin.ai.mit.edu>
10219         * frame.el (initial-frame-alist): Add defcustom.
10221         * shell.el (shell-prompt-pattern): Add defcustom.
10223 1998-11-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10225         * message.el (message-ignored-supersedes-headers): Remove
10226         NNTP-Posting-Date.
10228 1998-11-21  Richard Stallman  <rms@psilocin.ai.mit.edu>
10230         * help.el (describe-mode): Don't avoid loop indirecting thru
10231         value of INDICATOR.
10233 1998-11-20  Richard Stallman  <rms@psilocin.ai.mit.edu>
10235         * help.el (describe-variable): Allow any variable with a defcustom,
10236         even if it is not a user variable.
10238         * mail/rmail.el (mail-unsent-separator): Additional alternative.
10240 1998-11-20  Andrew Innes  <andrewi@delysid.gnu.org>
10242         * gnus/nntp.el (nntp-request-group): Allow for failures when
10243         requesting a new group.
10245 1998-11-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
10247         * emacs-lisp/lisp-mode.el (lisp-interaction-mode-map): Doc fix.
10249 1998-11-19  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
10251         * emacs-lisp/find-func.el (find-function-regexp): Handle skeletons.
10253 1998-11-19  Simon Marshall  <simon@gnu.org>
10255         * subr.el (with-temp-message): New macro.
10257         * emacs-lisp/lisp-mode.el (with-temp-message):
10258         Add lisp-indent-function property.
10260 1998-11-18  Dave Love  <fx@gnu.org>
10262         * progmodes/fortran.el (fortran-end-prog-re): Fix typo.
10264 1998-11-18  Richard Stallman  <rms@psilocin.ai.mit.edu>
10266         * emacs-lisp/bytecomp.el (temp-buffer-show-hook):
10267         This is not obsolete.
10269 1998-11-18  Kenichi Handa  <handa@etl.go.jp>
10271         * textmodes/picture.el: Make a new map by make-keymap.
10272         (picture-desired-column): New variable.
10273         (picture-update-desired-column): New function.
10274         (picture-beginning-of-line): Set picture-desired-column to 0.
10275         (picture-end-of-line): Set picture-desired-column to the current
10276         column.
10277         (picture-forward-column): Pay attention to multi-column character.
10278         (picture-backward-column): Likewise.
10279         (picture-move-down): Likewise.
10280         (picture-move-up): Likewise.
10281         (picture-movement-nw): With prefix arg, move twice columns.
10282         (picture-movement-ne): Likewise.
10283         (picture-movement-sw): Likewise.
10284         (picture-movement-se): Likewise.
10285         (picture-set-motion): Handle two-column movements.
10286         (picture-move): Call picture-move-down or picture-forward-column
10287         only when necessary.
10288         (picture-insert): Pay attention to picture-desired-column.
10289         (picture-self-insert): Likewise.
10290         (picture-clear-column): Pay attention to multi-column character.
10291         (picture-mode): Modify doc-string for two-column movement.
10293         * rect.el (move-to-column-force): New function.
10294         (operate-on-rectangle): If coerce-tabs is non-nil, call
10295         move-to-column-force instead of move-to-column.
10296         (insert-rectangle): Call move-to-column-force instead of
10297         move-to-column.
10298         (open-rectangle-line): If begextra is not zero, call
10299         move-to-column-force.
10302 1998-11-16  Dave Love  <fx@gnu.org>
10304         * textmodes/sgml-mode.el Require skeleton when compiling.
10305         (sgml-font-lock-keywords-1): Accept single-letter tags.
10306         (v2): Defvar free variable.
10308 1998-11-16  Sam Steingold  <sds@goems.com>
10310         * emacs-lisp/cl-indent.el: Indent `with-output-to-string' as a CL
10311         macro, not ELisp one.
10313 1998-11-16  Kenichi Handa  <handa@etl.go.jp>
10315         * emacs-lisp/lisp-mode.el: Set syntaxes all non-word multibyte
10316         characters to symbol.
10318         * language/japan-util.el (japanese-zenkaku-region): New optional
10319         arg KATAKANA-ONLY.
10321 1998-11-16  Kenichi Handa  <handa@etl.go.jp>
10323         * international/mule.el
10324         (after-insert-file-set-buffer-file-coding-system): If the buffer
10325         is changed to unibyte, return inserted bytes.
10327         * tar-mode.el (tar-header-block-tokenize): Decode codes of file
10328         and link names if necessary.
10329         (tar-header-block-summarize): Handle the case that file or link
10330         names are multibyte.
10331         (tar-summarize-buffer): At first set the current buffer unibyte,
10332         then if there are multibyte file names, change it to multibyte.
10333         (tar-mode): Get char position from tar-header-offset.
10334         (tar-extract): Avoid multibyte<->unibyte conversion in
10335         insert-buffer-subsring by setting both buffers unibyte
10336         temporarily.
10337         (tar-copy): Set the buffer unibyte while doing a work.  Write
10338         without code conversion.
10339         (tar-expunge): Set the buffer unibyte while doing a work.
10340         (tar-alter-one-field): Likewise.
10341         (tar-clear-modification-flags): Compare byte position with
10342         tar-header-offset.
10343         (tar-subfile-save-buffer): Avoid multibyte<->unibyte conversion in
10344         insert-buffer-subsring by setting both buffers unibyte
10345         temporarily.  Pay attention to multibyteness while updating the
10346         descriptor-line.
10347         (tar-mode-write-file): Write without code conversion.
10349 1998-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10351         * nngateway.el: Require cl.
10353 1998-11-15  Dave Love  <fx@gnu.org>
10355         * progmodes/fortran.el: Fix previous change:
10356         (fortran-end-prog-re1): Changed.
10357         (fortran-check-end-prog-re): New function.
10358         (beginning-of-fortran-subprogram, end-of-fortran-subprogram): Use it.
10360 1998-11-13  Tom Breton  <tob@world.std.com>
10362         * autoinsert.el (auto-insert-alist): Don't assume *.el is part of
10363         GNU Emacs.
10365 1998-11-13  Carsten Dominik  <cd@delysid.gnu.org>
10367         * textmodes/reftex.el: (reftex-finding-files): Group documentation
10368         fixed.
10369         (reftex-toc-toggle-file-boundary,
10370         reftex-toc-toggle-labels,
10371         reftex-toc-toggle-context,reftex-find-start-point): New functions.
10372         (reftex-toc-include-labels, reftex-toc-include-context,
10373         reftex-toc-include-file-boundaries,
10374         reftex-toc-keep-other-windows): New options.
10375         (reftex-use-text-after-label-as-context): Option removed.
10376         (reftex-extract-bib-entries): Protect use in non-latex
10377         buffers.
10378         (reftex-toc-visit-location): Renamed from
10379         `reftex-toc-visit-line'.
10380         (reftex-latin1-to-ascii): Works now with and without Mule.
10381         (reftex-truncate): Removed special stuff for Emacs 20.2.
10382         (reftex-get-offset): Made more general.
10383         (reftex-show-label-location): Renamed from
10384         `reftex-select-label-callback'.
10385         (reftex-pop-to-label): Function removed (using
10386         `reftex-show-label-location' instead.
10387         (reftex-insert-docstruct): Renamed from
10388         `reftex-make-and-insert-label-list'.  Function args changed.
10389         (reftex-toc): Now uses `reftex-insert-docstruct' and
10390         `reftex-find-start-point'.
10391         (reftex-select-item): Use `reftex-find-start-point'.
10392         (reftex-toc-visit-line): Can display labels and file
10393         boundaries.
10394         (reftex-TeX-master-file): `(TeX-master-file)' protected.
10396 1998-11-12  Sam Steingold  <sds@goems.com>
10398         * browse-url.el (browse-url): Handle the case when
10399         `browse-url-browser-function' is a lambda list.
10401 1998-11-12  Eli Zaretskii  <eliz@mescaline.gnu.org>
10403         * loadup.el (buffer-undo-list): For ms-dos, use fns.el without the
10404         version string.
10405         * loadhist.el (symbol-file): Likewise
10407 1998-11-11  Richard Sharman  <Richard_Sharman@Mitel.COM>
10409         * ediff-init.el (ediff-even-diff-face-A): Fix stipple spelling.
10411 1998-11-11  Sam Steingold  <sds@goems.com>
10413         * inf-lisp.el (switch-to-lisp): If no inferior lisp present, call
10414         `run-lisp' instead of signalling an error.
10416 1998-11-11  Karl Heuer  <kwzh@gnu.org>
10418         * desktop.el (desktop-save, desktop-create-buffer): Undo 10-22 change.
10420 1998-11-11  Richard Stallman  <rms@gnu.org>
10422         * vc-hooks.el (vc-toggle-read-only): Doc fix.
10424 1998-11-11  Per Starback  <starback@update.uu.se>
10426         * ispell.el: (ispell-dictionary-alist-2): Removed svenska,
10427         renamed svenska8 to svenska, and fixed and extended CASECHARS
10428         for it.
10430 1998-11-11  Andrew Innes  <andrewi@delysid.gnu.org>
10432         * ps-print.el (ps-print-prologue-1): Only use old LandscapeMode
10433         handling if setpagedevice is not available.
10434         (ps-begin-file): Fix typo.
10436 1998-11-11  Kenichi Handa  <handa@etl.go.jp>
10438         * international/mule-util.el (compose-chars-component): Signal
10439         error if CH is a rule-based composition character.
10440         (compose-chars): Signal error if an already compsed character is
10441         going to be composed by rule-base.
10443         * term/x-win.el: If a resolved ASCII font name doesn't conform to
10444         full XLFD, don't try to get information of WEIGHT and SLANT from
10445         that font name.
10447 1998-11-10  Andrew Innes  <andrewi@harlequin.co.uk>
10449         * dos-w32.el (set-default-process-coding-system): Use function on
10450         before-init-hook to set default-process-coding-system based on
10451         enable-multibyte-characters.
10453         * term/w32-win.el ([language-change]): For now ignore
10454         keyboard language-change events.
10456 1998-11-10  Eli Zaretskii  <eliz@delysid.gnu.org>
10458         * ediff-util.el (ediff-make-temp-file): Run the prefix through
10459         convert-standard-file-name, but leave the results of
10460         make-temp-name unaltered.  For MS-DOS, truncate the prefix to 2
10461         characters if the original name already exists, or has a special
10462         handler.
10464 1998-11-10  Karl Heuer  <kwzh@gnu.org>
10466         * international/iso-insert.el: Delete autoload cookies.
10468         * international/iso-transl.el: Add autoload cookies.
10470 1998-11-10  Richard Stallman  <rms@gnu.org>
10472         * ispell.el (ispell-get-coding-system): Default to iso-latin-1.
10473         (ispell-process-line): Don't treat multibyte
10475 1998-11-09  Andrew Innes  <andrewi@harlequin.co.uk>
10477         * ps-print.el (ps-print-prologue-1): In BeginDoc procedure, call
10478         setpagedevice to specify the page size if setpagedevice is
10479         available.  This is necessary to select the correct paper tray on
10480         Level 2 printers with multiple paper sizes available.
10482         (ps-begin-file): Cope with font names that contain spaces, and
10483         call BeginDoc in a BeginSetup/EndSetup block.
10485 1998-11-08  Eli Zaretskii  <eliz@mescaline.gnu.org>
10487         * loadup.el (buffer-undo-list): Run fns-VERSION.el through
10488         convert-standard-filename.
10490         * loadhist.el (symbol-file): Run fns-VERSION.el through
10491         convert-standard-filename.
10493 1998-11-06  Richard Stallman  <rms@gnu.org>
10495         * textmodes/texinfmt.el (texinfo-format-scan):
10496         Detect the case of two @-commands in a row; process just the first.
10497         (texinfo-append-refill): If line has a @c, insert the @refill
10498         before it.
10499         (texinfo-format-refill): Return with point where the @refill was.
10501         * files.el (hack-local-variables): Test local-enable-local-variables.
10502         (hack-local-variables-prop-line): Likewise.
10503         (set-auto-mode): Don't test local-enable-local-variables here.
10504         (enable-local-variables): Doc fix.
10505         (local-enable-local-variables): Doc fix.
10506         (normal-mode): Doc fix.
10508 1998-11-06  Karl Heuer  <kwzh@gnu.org>
10510         * emacs-lisp/find-func.el (find-variable-noselect): Autoload.
10512 1998-11-06  Richard Sharman  <Richard_Sharman@Mitel.COM>
10514         * simple.el (line-number-mode): Doc fix.
10516 1998-11-06  Kenichi Handa  <handa@etl.go.jp>
10518         * international/fontset.el (create-fontset-from-fontset-spec):
10519         Give correct arg to `error'.
10521 1998-11-06  Andreas Schwab  <schwab@delysid.gnu.org>
10523         * textmodes/sgml-mode.el (html-mode): Doc fix.
10524         (sgml-name-8bit-mode): Fix missing format character in message string.
10526 1998-11-05  Karl Heuer  <kwzh@gnu.org>
10528         * mail/sendmail.el (sendmail-send-it): Check for failure.
10530 1998-11-05  Richard Stallman  <rms@gnu.org>
10532         * man.el (Man-page-header-regexp): Alternate value for Solaris 2.6.
10534         * rect.el (delete-whitespace-rectangle): close-rectangle renamed.
10535         (close-rectangle): Define as alias.
10537 1998-11-05  Richard M. Heiberger  <rmh@fisher.stat.temple.edu>
10539         * textmodes/tex-mode.el (tex-start-shell): Track directory changes.
10541 1998-11-05  Dave Love  <fx@gnu.org>
10543         * help.el (describe-variable): Don't quote link to source.
10545 1998-11-04  Richard Stallman  <rms@sucrose.ai.mit.edu>
10547         * gud.el (gud-common-init): Use pop-to-buffer.
10548         (same-window-regexps): Add an element that matches all gud buffers.
10550 1998-11-04  Jason Rumney  <jasonr@altavista.net>
10552         * term/w32-win.el (x-get-selection-value): Alias to
10553         x-cut-buffer-or-selection-value.
10554         (w32-standard-fontset-spec): New variable.
10555         (w32-create-initial-fontsets, mouse-set-font): Check whether
10556         new-fontset is available.
10557         (w32-use-w32-font-dialog): Enable use of set-variable.
10559 1998-11-04  Andre Spiegel  <spiegel@inf.fu-berlin.de>
10561         * vc.el (with-vc-file, edit-vc-file): New macros.
10563 1998-11-04  Kenichi Handa  <handa@etl.go.jp>
10565         * international/quail.el (quail-show-guidance-buf): Call
10566         set-minibuffer-window to set minibuffer window of the current
10567         frame correctly.
10569 1998-11-03  Theodore Jump <tjump@tertius.com>
10571         * term/w32-win.el: Require fontset.
10573 1998-11-03  Andrew Innes  <andrewi@delysid.gnu.org>
10575         * faces.el (set-face-font): Call resolve-fontset-name on w32.
10576         (set-face-font-auto): Ditto.
10578 1998-11-03  Andreas Schwab  <schwab@delysid.gnu.org>
10580         * mouse.el (mouse-drag-region): Fix typo.
10582 1998-11-02  Dave Love  <fx@gnu.org>
10584         * progmodes/fortran.el Fix for fontification of strings lost somehow:
10585         (fortran-fontify-string): New function.
10586         (fortran-font-lock-keywords-1): Use it.
10588 1998-11-02  Markus Rost  <rost@delysid.gnu.org>
10590         * comint.el (comint-file-name-quote-list): Doc fix.
10592 1998-11-01  Richard Stallman  <rms@psilocin.ai.mit.edu>
10594         * loadup.el (buffer-undo-list): Write fns-VERSION.el into
10595         build directory, not source directory.
10597         * mouse.el (mouse-drag-region): Fake up a mouse-motion event
10598         if we did not get one for the final move.
10600 1998-11-01  Dave Love  <fx@gnu.org>
10602         * goto-addr.el (goto-address-at-point, goto-address-at-mouse):
10603         Don't funcall browse-url-browser-function.
10605         * gnus/gnus-art.el (gnus-button-embedded-url, gnus-button-url):
10606         Don't funcall browse-url-browser-function.
10608         * fortran.el (fortran-end-prog-re1): Fix the regexp.
10610 1998-11-01  Richard Stallman  <rms@psilocin.ai.mit.edu>
10612         * files.el (revert-buffer): Doc fix.
10614 1998-10-31  Richard Stallman  <rms@psilocin.ai.mit.edu>
10616         * textmodes/tex-mode.el (tex-start-options-string):
10617         Quote the backslashes with more backslashes.
10619 1998-10-31  Dave Love  <fx@gnu.org>
10621         * webjump.el (webjump-sample-sites): Fix Lisp archive site.
10622         (webjump): Don't funcall browse-url-browser-function.
10624 1998-10-30  Kenichi Handa  <handa@etl.go.jp>
10626         * international/quail.el (quail-start-translation): Handle
10627         switching of the frame in read-key-sequence.
10628         (quail-start-conversion): Likewise.
10629         (quail-show-guidance-buf): Detach quail-guidance-buf from any
10630         windows before setting an appropriate window for it.
10631         (quail-hide-guidance-buf): Use window-minibuffer-p.  Set
10632         quail-guidance-win to nil.
10633         (quail-update-guidance): If quail-guidance-buf is not in the
10634         selected frame, call quail-show-guidance-buf again.
10636 1998-10-30  Espen Skoglund  <espensk@stud.cs.uit.no>
10638         * progmodes/pascal.el (pascal-mode):
10639         `blink-matching-paren-dont-ignore-comments' set to t.
10641 1998-10-30  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
10643         * calendar/cal-menu.el (cal-menu-update): Fix menu wording.
10645 1998-10-30  Dave Love  <fx@gnu.org>
10647         * vc.el (vc-backend-merge-news): Check for "P" output.
10649         * help.el (describe-variable): Hyperlink the definition.
10651 1998-10-30  Andreas Schwab  <schwab@delysid.gnu.org>
10653         * progmodes/sh-script.el (sh-canonicalize-shell): Fix regexp.
10654         (sh-set-shell): Likewise.
10656         * gnus/nnweb.el: Don't require 'w3 and 'url unprotected.
10658         * emacs-lisp/edebug.el (edebug-initial-mode): Fix customize type.
10659         (edebug-on-error): Fix customize type to match that of
10660         debug-on-error.
10662         * emacs-lisp/eldoc.el (eldoc-argument-case): Fix customize type.
10664         * emacs-lisp/lisp-mnt.el (lm-report-bug): Use
10665         report-emacs-bug-address instead of undefined bug-gnu-emacs.
10667         * international/mule-cmds.el (select-message-coding-system): Doc
10668         fix.
10670         * international/mule-diag.el (describe-coding-system): Describe
10671         all flags.
10673         * mail/sendmail.el (sendmail-coding-system,
10674         default-sendmail-coding-system): Doc fix.
10676         * simple.el (shell-command-on-region): Doc fix.
10678         * loadup.el: Write fns-*.el in current directory instead of
10679         data-directory since no installation directory exists yet.  Mark
10680         buffer unmodified afterwards.
10682         * loadhist.el (symbol-file): Load fns-*.el from exec-directory
10683         instead of data-directory since it is architecture dependent.
10684         (load-history-loaded): Update doc string.
10686 1998-10-29  Geoff Voelker  <voelker@cs.washington.edu>
10688         * ange-ftp.el (ange-ftp-canonicalize-filename): Do not use a UNC
10689         path as a default directory when canonicalizing names.
10691         * w32-fns.el: Remove a dangling reference to a directory on the
10692         build machine.
10694 1998-10-27  Richard Stallman  <rms@psilocin.ai.mit.edu>
10696         * progmodes/tcl-mode.el (tcl-font-lock-keywords): Added itcl and
10697         namespace related keywords such as `class', `body', `private',
10698         `variable', `namespace eval', etc.
10699         (tcl-imenu-generic-expression): Handle itcl body and class definitions.
10700         (tcl-mode): Added ":" as a word constituent to the syntax-alist of
10701         imenu and font-lock so that searches for \sw would find words
10702         containing colons.
10704         * progmodes/etags.el (initialize-new-tags-table):
10705         Do not alter find-tag-marker-ring and tags-location-ring.
10707 1998-10-27  Geoff Voelker  <voelker@cs.washington.edu>
10709         * term/w32-win.el: Require fontset.
10710         (w32-init-fontsets): New function (code from x-win.el).
10712 1998-10-26  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
10714         * cal-x.el (diary-frame-parameters, calendar-frame-parameters,
10715         calendar-and-diary-frame-parameters):  Add title parameter.
10717 1998-10-26  Richard Stallman  <rms@psilocin.ai.mit.edu>
10719         * completion.el (dynamic-completion-mode): New function to enable
10720         the mode.  (Just loading the file now does not change anything.)
10722 1998-10-26  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
10724         * ps-print.el: User option for multibyte buffer handling and doc fix.
10725         (ps-multibyte-buffer): New user option.
10726         (ps-setup): Print new user option.
10727         (ps-print-quote): New fun.
10728         (ps-color-p, ps-mule-font-info-database-latin): New var.
10729         (ps-default-color, ps-mule-font-info-database)
10730         (ps-mule-font-info-database-ps-bdf): Adjust initialization.
10731         (ps-mule-get-font-spec, ps-mule-begin, ps-begin-file)
10732         (ps-plot-with-face, ps-generate-postscript-with-faces, ps-generate):
10733         Little code improvement.
10734         (ps-mule-initialize): Initialize ps-mule-font-info-database.
10735         (ps-print-prologue-header, ps-font-family, ps-font-size)
10736         (ps-header-font-family, ps-header-font-size, ps-header-title-font-size)
10737         (ps-build-face-reference, ps-mule-font-info-database-bdf)
10738         (ps-mule-external-libraries, ps-mule-init-external-library)
10739         (ps-mule-prepare-font, ps-mule-find-wrappoint, ps-mule-plot-string):
10740         Doc fix.
10741         (ps-print-version): New version number (4.1.1) and doc fix.
10742         (ps-print-prologue-header): New user option.
10743         (ps-color-values, ps-xemacs-face-kind-p, ps-mapper, ps-extent-sorter):
10744         Conditional compilation for GNU Emacs and emacsens.
10745         (ps-generate-postscript-with-faces): Skip invisible text better.
10746         (ps-setup): Print new user option.
10747         (ps-print-preprint): Check if input file name exists and is unwritable.
10748         (ps-begin-file): Adjust PostScript prologue header for duplex printers
10749         and insert user PostScript prologue header comments.
10750         (ps-mule-encode-bit, ps-mule-string-ascii, ps-mule-string-encoding):
10751         New funs.
10752         (dos-ps-printer, lazy-lock-fontify-buffer): Eliminated.
10753         (ps-mule-prologue, ps-mule-cmpchar-prologue, ps-mule-bitmap-prologue):
10754         PostScript programming normalization.
10755         (ps-mule-encode-7bit, ps-mule-encode-8bit, ps-mule-generate-font)
10756         (ps-mule-generate-glyphs, ps-mule-prepare-font, ps-mule-plot-string)
10757         (ps-mule-skip-same-charset, ps-mule-plot-rule-cmpchar)
10758         (ps-mule-plot-cmpchar, ps-mule-prepare-cmpchar-font)
10759         (ps-mule-initialize, ps-mule-begin, ps-face-bold-p, ps-do-despool):
10760         Programming style normalization.
10762 1998-10-26  Kenichi Handa <handa@etl.go.jp>
10764         * ps-print.el: To make it work also on Emacs 20.2 and the earlier
10765         version, check the value of mule-version.
10767         * international/mule-util.el (compose-region): Insert then delete
10768         to preserve markers.
10769         (decompose-region): Use search-forward for efficiency.
10771         * language/chinese.el (pre-write-encode-hz): Cancel previous
10772         change, use generate-new-buffer instead of get-buffer-create.
10773         * language/devan-util.el
10774         (in-is13194-devanagari-pre-write-conversion): Likewise.
10775         * language/thai-util.el (thai-pre-write-conversion): Likewise.
10776         * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
10777         * language/viet-util.el (viqr-pre-write-conversion): Likewise.
10779 1998-10-26  Richard Stallman  <rms@psilocin.ai.mit.edu>
10781         * mail/rmailsum.el (rmail-message-subject-p):
10782         Handle message whose header has not been reformatted.
10784         * desktop.el (desktop-buffer-dired): Use dired-maybe-insert-subdir.
10786 1998-10-25  Jason Rumney  <jasonr@altavista.net>
10788         * term/w32-win.el (w32-use-w32-font-dialog, w32-fixed-font-alist):
10789         New variables.
10790         (mouse-set-font): Use font menus instead of dialog according to
10791         w32-use-w32-font-dialog.
10793 1998-10-21  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
10795         * calendar/calendar.el (calendar-day-name-array): Add doc string
10796         correctly!
10797         (calendar-month-name-array): Add doc string correctly!
10799 1998-10-21  Richard Stallman  <rms@psilocin.ai.mit.edu>
10801         * net-utils.el (whois-get-tld): Rewrite not to use `do'.
10803 1998-10-21  Markus Rost  <rost@delysid.gnu.org>
10805         * lisp/info.el (Info-next-menu-item): Stay on top of node.
10807         * mail/rmailout.el (rmail-output): Insert newline only if necessary.
10809         * mail/rmail.el (rmail-get-new-mail): Delete garbage in any case.
10811         * menu-bar.el (menu-bar-options-menu): Add option for truncate-lines.
10813 1998-10-21  Andreas Schwab  <schwab@delysid.gnu.org>
10815         * emacs-lisp/cl-specs.el (function-form): Fix spec for "function*".
10817 1998-10-21  Karl Heuer  <kwzh@gnu.org>
10819         * emacs-lisp/profile.el (profile-timer-program): Var deleted.
10820         (profile-timer-process, profile-temp-result-, profile-time): Likewise.
10821         (profile-filter, profile-reset-timer): Functions deleted.
10822         (profile-check-zero-init-times, profile-get-time): Likewise.
10823         (profile-find-function, profile-quit): Likewise.
10824         (profile-distinct, profile-call-stack, profile-last-time): New vars.
10825         (profile-time-list, profile-init-list): Doc fix.
10826         (profile-functions): Simplify.
10827         (profile-print): Use float.  Make output include space separators.
10828         (profile-add-time): New helper function.
10829         (profile-function-prolog): Renamed from profile-start-function.
10830         Handle profile-distinct.
10831         (profile-function-epilog): Renamed from profile-update-function.
10832         Handle profile-distinct.
10833         (profile-a-function): If the function to be profiled is an
10834         autoload form, load it.  If it's lazy-loaded, fetch it.
10835         (profile-fix-fun): Simplify profiling wrapper, and unwind-protect it.
10836         (profile-restore-fun): Arg FUN is now a function symbol, as was
10837         documented, rather than a one-element list.
10838         (profile-finish): Call profile-restore-fun properly.
10840 1998-10-21  Kenichi Handa  <handa@etl.go.jp>
10842         * international/characters.el: Setup charset property
10843         nospace-between-words.
10845         * international/mule-cmds.el (get-charset-property): If CHARSET is
10846         composition, return nil.
10847         (put-charset-property): If CHARSET is composition, do nothing.
10849         * language/chinese.el (pre-write-encode-hz): Use with-temp-buffer.
10850         * language/devan-util.el
10851         (in-is13194-devanagari-pre-write-conversion): Likewise.
10852         * language/thai-util.el (thai-pre-write-conversion): Likewise.
10853         * language/tibet-util.el (tibetan-pre-write-conversion): Likewise.
10854         * language/viet-util.el (viqr-pre-write-conversion): Likewise.
10856         * textmodes/fill.el (sentence-end-without-period): New variable.
10857         (canonically-space-region): Pay attention to
10858         sentence-end-without-period.
10859         (fill-find-break-point): The first argument CHARSET deleted.
10860         Caller changed.
10861         (fill-region-as-paragraph): Pay attention to charset property
10862         nospace-between-words and text property nospace-between-words.
10864 1998-10-20  Richard Stallman  <rms@psilocin.ai.mit.edu>
10866         * progmodes/sh-script.el (sh-font-lock-keywords): Don't crash for
10867         an unrecognized shell.
10869 1998-10-20  Thien-Thi Nguyen  <ttn@delysid.gnu.org>
10871         * desktop.el (desktop-save): Include minor modes symbolically.
10872         (desktop-create-buffer): Turn on all minor modes in `mim'.
10874 1998-10-20  Richard Stallman  <rms@psilocin.ai.mit.edu>
10876         * progmodes/sh-script.el (sh-mode): Handle .spec and .mspec files.
10877         (sh-font-lock-keywords): Handle rpm and rpm2.
10878         (sh-ancestor-alist): Handle rpm.
10880         * files.el (auto-mode-alist): Recognize .rpm files.
10881         Also .spec and .mspec files.
10883 1998-10-20  Eli Zaretskii  <eliz@mescaline.gnu.org>
10885         * faces.el (frame-set-background-mode): Enable the function for
10886         MSDOS frames.
10888 1998-10-20  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
10890         * calendar/calendar.el (calendar-day-name-array): Add doc string.
10891         (calendar-month-name-array): Add doc string.
10893 1998-10-19  Richard Stallman  <rms@psilocin.ai.mit.edu>
10895         * simple.el (kill-ring-max): Increased to 60.
10897 1998-10-17  Kenichi Handa  <handa@etl.go.jp>
10899         * international/characters.el: Setup auto-fill-chars.
10901         * international/kinsoku.el (kinsoku): Check the variable
10902         enable-kinsoku.
10904         * simple.el (do-auto-fill): Don't check kinsoku-enable here.
10905         Don't call kinsoku directly, intead call fill-find-break-point.
10907         * textmodes/fill.el: Setup `fill-find-break-point-function'
10908         property to character sets which require `kinsoku' processing for
10909         filling.
10910         (fill-find-break-point): New function.
10911         (fill-region-as-paragraph): Don't check kinsoku-enable here.
10912         Don't call kinsoku directly, intead call fill-find-break-point.
10914 1998-10-18  Richard Stallman  <rms@psilocin.ai.mit.edu>
10916         * faces.el (modify-face-read-string): Return (nil) for "none".
10917         (modify-face): Don't get error if (nil) is the argument.
10918         (face-try-color-list): Don't check whether nil is a valid color.
10920 1998-10-17  Richard Stallman  <rms@psilocin.ai.mit.edu>
10922         * emacs-lisp/bytecomp.el (byte-recompile-directory):
10923         Print message about each directory, even in batch mode.
10925         * gnus/nntp.el: Require `cl' before using nnoo-declare.
10927         * ps-print.el (ps-mule-chars-in-string): No need to use sref.
10928         (ps-mule-string-char): No need to use sref.
10929         (ps-mule-next-index): No need to use sref.
10931         * ange-ftp.el (ange-ftp-waiting-flag): defvar moved.
10933         * files.el (revert-buffer-internal-hook): Add defvar.
10935         * arc-mode.el (archive-mode): Locally set file-precious-flag.
10937         * tar-mode.el (tar-mode): Locally set file-precious-flag.
10939 1998-10-16  Markus Rost  <rost@delysid.gnu.org>
10941         * international/mule-cmds.el (default-input-method): Fix custom type.
10943         * net-utils.el (whois-server-list): Fix customization type.
10945         * shell.el (shell-input-autoexpand): Fix customization group.
10947 1998-10-16  Richard Stallman  <rms@psilocin.ai.mit.edu>
10949         * repeat.el (repeat): Handle keyboard macros properly.
10950         Handle new prefix arg after self-insert command.
10952         * repeat.el: Don't include cl even at compile time.
10953         (repeat): Avoid using `loop'.
10955         * simple.el (shell-command-on-region): Doc fix.
10956         (next-history-element): Special error message if no default.
10958 1998-10-15  Richard Stallman  <rms@psilocin.ai.mit.edu>
10960         * ps-print.el (ps-print-buffer): Doc fix.
10961         (ps-despool): Likewise.
10963         * arc-mode.el (arc-mode): Provide arc-mode.
10965 1998-10-14  Richard Stallman  <rms@psilocin.ai.mit.edu>
10967         * ps-print.el (ps-print-buffer): Doc fix.
10969 1998-10-14  Dave Love  <fx@gnu.org>
10971         * ange-ftp.el (ange-ftp-read-passwd): Function deleted.
10972         (ange-ftp-set-passwd): Use read-passwd, not ange-ftp-read-passwd.
10973         (ange-ftp-get-passwd, ange-ftp-set-account): Likewise.
10975         * progmodes/fortran.el (fortran-mode-map): Change "Join
10976         Continuation Line" to "Join Line".
10977         (fortran-font-lock-keywords-1): Add "cycle", "exit".
10979 1998-10-14  Emilio Lopes  <Emilio.Lopes@Physik.TU-Muenchen.DE>
10981         * progmodes/fortran.el (fortran-join-line): Use
10982         `delete-indentation' instead of issuing an error message if not on
10983         a continuation line.  Provide for joining several lines using
10984         prefix arg.
10986 1998-10-14  Eli Zaretskii  <eliz@mescaline.gnu.org>
10988         * term/pc-win.el (msdos-color-values): New variable.
10989         (x-color-values): New function, emulates its namesake from
10990         src/xfns.c.
10991         (msdos-bg-mode): Add all dark colors to those which return
10992         "dark".
10994 1998-10-14  Richard Stallman  <rms@psilocin.ai.mit.edu>
10996         * replace.el (keep-lines, flush-lines, how-many):
10997         Don't ignore case if arg has upper case letters.
10999 1998-10-11  Reto Zimmermann  <zimmi@iis.ee.ethz.ch>
11001         * progmodes/vhdl-mode.el
11002         (vhdl-add-index-menu): Reverse order in imenu-generic-expression.
11003         (vhdl-template-assert, vhdl-block, vhdl-configuration-spec)
11004         (vhdl-elsif, vhdl-generate, vhdl-if, vhdl-map)
11005         (vhdl-selected-signal-assignment, vhdl-use, vhdl-while-loop)
11006         (vhdl-get-port, vhdl-get-generic): Replace (undo 0) by (undo).
11007         (vhdl-when): Fix indentation problem.
11008         (vhdl-outer-space): Add "_" to syntax table for expand-abbrev.
11009         (vhdl-get-port, vhdl-get-generic): Bug fix in template.
11010         (vhdl-hooked-abbrev): Bug fix in hooked abbrev.
11012 1998-10-13  Geoff Voelker  <voelker@cs.washington.edu>
11014         * ls-lisp.el (ls-lisp-use-insert-directory-program): New variable.
11015         (ls-lisp-insert-directory): Renamed from insert-directory.
11016         (insert-directory): New function.
11018 1998-10-13  Richard Stallman  <rms@psilocin.ai.mit.edu>
11020         * simple.el (completion-fixup-function): Variable deleted.
11021         (completion-setup-function): Delete code for completion-fixup-function.
11022         * emacs-lisp/lisp.el (lisp-complete-symbol):
11023         Don't bind completion-fixup-function.
11025         * files.el (find-file-wildcards): New option.
11026         (find-file-noselect): Handle wild cards, if enabled.
11027         (file-expand-wildcards): New function.
11029         * simple.el (set-fill-column): Doc fix.
11031 1998-10-13  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
11033         * mail/uce.el (uce-reply-to-uce): Bind case-fold-search.
11035 1998-10-13  Andreas Schwab  <schwab@mescaline.gnu.org>
11037         * progmodes/hideif.el: (hide-ifdef-env, hif-outside-read-only):
11038         Move declaration before first use.
11039         (hif-parse-if-exp, hif-nexttoken, hif-expr, hif-term, hif-eq-expr,
11040         hif-math, hif-factor): Rename token to hif-token and token-list to
11041         hif-token-list.
11042         (hif-token, hif-token-list): Declare them.
11043         (hif-find-ifdef-block): Return cons of top and bottom point
11044         instead of setting dynamically bound variables.
11045         (hide-ifdef-block, show-ifdef-block): Use return value of
11046         hif-find-ifdef-block.
11048 1998-10-12  Richard Stallman  <rms@psilocin.ai.mit.edu>
11050         * subr.el (read-passwd): Use clear-this-command-keys.
11052         * telnet.el (telnet-initial-filter): Use clear-this-command-keys.
11054         * gnus/pop3.el (pop3-open-server): Bind coding-system-for-read
11055         and ...-for-write.
11057 1998-10-12  Andrew Innes  <andrewi@harlequin.co.uk>
11059         * gnus/nntp.el (nntp-possibly-change-group): Allow for unexpected
11060         responses to GROUP command, since this may be called from a timer
11061         with quit inhibited.
11063 1998-10-12  Kenichi Handa  <handa@etl.go.jp>
11065         * international/ccl.el (ccl-compile-if): If there's no false-cmds,
11066         set unconditional-jump to nil.
11067         (ccl-compile-read-multibyte-character): Return nil.
11068         (ccl-compile-write-multibyte-character): Likewise.
11069         (ccl-compile-translate-character): Likewise
11070         (ccl-compile-map-multiple): Likewise.
11071         (ccl-compile-map-single): Likewise.
11073         * international/kinsoku.el: Add coding tag.
11074         (kinsoku-bol): Remove superfluous TAB in a string.
11076         * international/mule-cmds.el (find-coding-systems-for-charsets):
11077         Delete `composition' (if any) from CHARSETS.
11079 1998-10-12  Richard Stallman  <rms@psilocin.ai.mit.edu>
11081         * international/mule-cmds.el (setup-specified-language-environment):
11082         Add apropos-inhibit property.
11083         (describe-specified-language-support): Likewise.
11085 1998-10-11  Kenichi HANDA  <handa@etl.go.jp>
11087         * international/mule.el (make-coding-system): Create -with-esc
11088         variant coding system.
11090 1998-10-11  Richard Stallman  <rms@sucrose.ai.mit.edu>
11092         * progmodes/etags.el (tags-loop-revert-buffers): New variable.
11093         (next-file): Optionally offer to revert a file's buffer,
11094         if it has an existing buffer but the file has changed.
11096         * info.el (Info-insert-dir): Detect and report problems
11097         in input files, such as "No Top node".  Return with point
11098         at the beginning of the text.
11099         (Info-find-node): Reinsert the code to handle files
11100         with no tags table; it was deleted by mistake.
11102 1998-10-11  Richard Stallman  <rms@sucrose.ai.mit.edu>
11104         * textmodes/texnfo-upd.el (texinfo-make-menu): Don't let
11105         texinfo-find-higher-level-node repeatedly find the same node.
11106         (texinfo-find-higher-level-node): Doc fix.
11108 1998-10-10  Richard Stallman  <rms@psilocin.ai.mit.edu>
11110         * mail/smtpmail.el (smtpmail-send-data-1): Use encode-coding-string.
11111         (smtpmail-address-buffer): Add defvar.
11112         (smtpmail-recipient-address-list, smtpmail-read-point): Likewise.
11114         * mail/feedmail.el (feedmail-queue-runner-is-active): Definition moved.
11116         * ffap.el (ffap-machine-p-local): Fix editing error.
11118 1998-10-09  Richard Stallman  <rms@psilocin.ai.mit.edu>
11120         * faces.el (frame-set-background-mode):
11121         Don't do anythung for text-only or MSDOS frame.
11123 1998-10-08  Kenichi Handa  <handa@etl.go.jp>
11125         * international/quail.el (quail-defrule): New optional arg APPEND.
11126         (quail-defrule-internal): Fix bug of handling the argument APPEND.
11128 1998-10-08  Richard Stallman  <rms@psilocin.ai.mit.edu>
11130         * gnus/pop3.el (pop3-open-server):
11131         Set process-coding-system-alist around open-network-stream.
11133 1998-10-07  Richard Stallman  <rms@psilocin.ai.mit.edu>
11135         * files.el (save-buffer): Doc fix.
11137 1998-10-07  Karl Heuer  <kwzh@gnu.org>
11139         * emacs-lisp/profile.el (profile-fix-fun): If already profiled,
11140         return DEF unchanged, not nil.  Simplify.
11142 1998-10-06  Geoff Voelker  <voelker@cs.washington.edu>
11144         * dos-w32.el (file-name-buffer-file-type-alist): Fix typo in regexp.
11146 1998-10-06  Peter Breton  <pbreton@ne.mediaone.net>
11148         * generic.el (generic-mode-with-type): Added hooks for generic-modes.
11150         * net-utils.el (ftp, nslookup): Require comint.
11151         (network-service-connection): Likewise.
11152         (whois-server-name): Defaults to whois.arin.net
11153         (whois-server-list, whois-server-tld, whois-guess-server): New var.
11154         (whois): Tries to guess the appropriate top-level domain server.
11155         (whois-get-tld): New function.
11157         * dirtrack.el: Mentioned dirtrack-debug-toggle in the docs.
11158         (dirtrack-debug-toggle): Added this function.
11160 1998-10-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11162         * files.el (find-file-noselect): Switch to the correct buffer
11163         before checking find-file-literally, and allow non-nil non-t
11164         rawfile params.
11166 1998-10-06  Karl Heuer  <kwzh@gnu.org>
11168         * midnight.el (clean-buffer-list): Add autoload cookie.
11170         * arc-mode.el (archive-mode-revert): Arg no-auto-save renamed from
11171         no-autosave.
11172         * tar-mode.el (tar-mode-revert): Likewise.
11173         * ediff-util.el (ediff-arrange-auto-save-in-merge-jobs): Renamed
11174         from ediff-arrange-autosave-in-merge-jobs.  Callers changed.
11175         * gnus/message.el (message-auto-save-directory): Renamed from
11176         message-autosave-directory.  All references changed.
11178 1998-10-06  Jonathan I. Kamens  <jik@kamens.brookline.ma.us>
11180         * mail/rmail.el (rmail-retry-failure): Allow blanks in boundary
11181         string.  Expose mime stuff while searching.
11183 1998-10-06  Richard Stallman  <rms@gnu.org>
11185         * emacs-lisp/lisp-mode.el (eval-defun): Return the evaluation result.
11187         * replace.el (perform-replace): Position point properly
11188         before and after the recursive edit of C-r.
11190         * progmodes/etags.el (tags-reset-tags-tables): Properly
11191         find the markers in the old rings that are being discarded.
11193 1998-10-06  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
11195         * apropos.el (apropos-print): Control invalid characters.
11197         * play/landmark.el (lm-font-lock-face-O, lm-font-lock-face-X):
11198         Renamed from lm-font-lock-O-face, lm-font-lock-X-face to avoid
11199         confusing customize.
11201 1998-10-06  Eli Zaretskii  <eliz@mescaline.gnu.org>
11203         * generic-x.el (bat-generic-mode): Fix regexps for keywords and
11204         built-in commands.  Add more built-in commands and fix face names.
11206 1998-10-05  Simon Marshall  <simon@gnu.org>
11208         * menu-bar.el (menu-bar-tools-menu): Added entry for Speedbar.
11210 1998-10-04  Eric Ludlam  <zappo@gnu.org>
11212         * speedbar.el (speedbar-initial-expansion-list-name): Remove
11213         customization since it is not useful in this case.
11214         (speedbar-frame-mode): Check if cfx or cfy is a list, and make
11215         sure it gets evalled to a number.  Also verify that set-frame-name
11216         fn exists before calling it.
11218         * emacs-lisp/checkdoc.el (checkdoc-sentencespace-region-engine):
11219         Protect a `forward-sexp' call which could fail, and improved regex
11220         for ie, and eg abbreviations.
11222 1998-10-02  Noah Friedman  <friedman@splode.com>
11224         * rlogin.el (rlogin-send-Ctrl-C): Use process-send-string, not
11225         send-string.
11226         (rlogin-send-Ctrl-D): Here also.
11227         (rlogin-send-Ctrl-Z): Here also.
11228         (rlogin-send-Ctrl-backslash): Here also.
11230 1998-10-02  Dave Love  <fx@gnu.org>
11232         * outline.el (hide-region-body): Bind
11233         outline-view-change-hook to nil while making repeated calls to
11234         outline-flag-region.  Run it once at the end.
11235         (hide-other, hide-sublevels, show-children): Likewise.
11237         * info-look.el: Remove duplicate scheme-mode entry.
11238         (info-lookup-make-completions): When looking for entries, check
11239         that `item' isn't null or "Menu".
11241 1998-10-01  Karl Heuer  <kwzh@gnu.org>
11243         * net-utils.el: Don't require ffap.
11244         (net-utils-machine-at-point, net-utils-url-at-point): New functions.
11245         (ping, nslookup-host, finger, network-connection-to-service): Use them.
11247 1998-09-30  Richard Stallman  <rms@gnu.org>
11249         * ispell.el (check-ispell-version): No need to bind default-major-mode.
11251         * imenu.el (imenu--generic-function): Sort each submenu by position.
11252         (imenu--sort-by-position): New function.
11254         * cus-edit.el (Custom-mode-menu): Fix info node name.
11255         (customize group): Fix info node name.
11257         * mail/mailalias.el (build-mail-aliases): Don't allow
11258         a newline in the alias name.  Don't define an alias
11259         if the definition would be empty.
11261         * which-func.el (which-func-mode-global): Make :set function
11262         more reliable.
11264         * custom.el (custom-set-variables): Load the requests first,
11265         then check the symbol's `set' function.
11267         * ffap.el: Doc fixes.
11269 1998-09-30  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
11271         * gnus.el: (gnus-valid-select-methods): Fix type.
11272         * gnus-sum.el (gnus-summary-respool-default-method): Fix type.
11273         * gnus-score.el (gnus-orphan-score): Fix type.
11274         (gnus-score-default-header, gnus-score-default-type): Fix type.
11275         * gnus-art.el (gnus-article-x-face-too-ugly): Fix type.
11276         (gnus-saved-headers): Fix type.
11278         * lisp/textmodes/fill.el (fill-individual-paragraphs-prefix):
11279         Avoid nil value of `two-lines-citation-part'.
11281 1998-09-30  Roman Belenov  <roman@nstl.nnov.ru>
11283         * which-func.el (which-function): Handle case when
11284         (car imenu--index-alist) is nil.
11286 1998-09-29  Dave Love  <fx@gnu.org>
11288         * jka-compr.el (jka-compr-compression-info-list): Remove "-c" from
11289         bzip2 args.
11291 1998-09-29  Simon Marshall  <simon@gnu.org>
11293         * comint.el (comint-mode): Use make-local-hook for pre-command-hook and
11294         comint-exec-hook.
11296 1998-09-29  Stephen Eglen  <stephen@gnu.org>
11298         * info-look.el: Add support for Octave.
11300 1998-09-28  Carsten Dominik  <cd@delysid.gnu.org>
11302         * textmodes/reftex.el (reftex-finding-files): New customize group.
11303         (reftex-texpath-environment-variables,
11304         reftex-use-external-file-finders, reftex-external-file-finders,
11305         reftex-search-unrecursed-path-first): New options.
11306         (reftex-process-string, reftex-find-file-externally): New
11307         functions.
11308         (reftex-access-search-path): Execute shell commands to find the
11309         search path.
11310         (reftex-toggle-auto-view-crossref): When turning on, make sure
11311         `reftex-auto-view-crossref' becomes non-nil.
11312         (reftex-abbrev-regexp): Constant removed.
11313         (reftex-convert-string): Abbrev regexp calculated locally.
11315 1998-09-28  Dave Love  <fx@gnu.org>
11317         * progmodes/fortran.el: Don't call regexp-opt when deriving
11318         font-lock patterns with keywords that aren't all literal.
11320 1998-09-27  Kurt Hornik  <Kurt.Hornik@ci.tuwien.ac.at>
11322         * octave-inf.el (inferior-octave-prompt):  Also match prompts of
11323         the form `octave.bin:1>' which come from using precopiled binary
11324         versions.
11326 1998-09-27  Richard Stallman  <rms@psilocin.ai.mit.edu>
11328         * help.el (help-for-help): Use %THIS-KEY%.
11329         (help-quit): Add doc.
11331         * help-macro.el (make-help-screen): Keep HELP-TEXT
11332         in a separate function definition, not in the help command FNAME.
11333         Replace %THIS-KEY% with the key sequence that ran FNAME.
11335 1998-09-25  Richard Stallman  <rms@gnu.org>
11337         * textmodes/texinfo.el (texinfo-show-structure):
11338         Bind inhibit-read-only.
11340         * isearch.el (isearch-search-and-update): Properly
11341         handle upper case letters in the reverse-search special case.
11343 1998-09-25  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
11345         * gnus.el: Extend the list of autoloaded functions.
11347         * gnus/gnus-start.el (gnus-check-first-time-used): Change current
11348         buffer before creating help group. (from Gnus v5.6.43, fix by
11349         1998-08-20 Per Starback <starback@update.uu.se>)
11351         * gnus-util.el (gnus-output-to-rmail): Adjust to
11352         `rmail-output-to-rmail-file'.
11354 1998-09-25  Karl Heuer  <kwzh@gnu.org>
11356         * hexl.el (hexl-mode-map): More of previous change.
11358         * textmodes/tex-mode.el (tex-run-command): Doc fix.
11359         (tex-start-tex): Don't use tex-start-options-string in star case.
11360         Quote file name in star case as well as in non-star.
11361         Add blank and quoting of option string here.
11362         (tex-start-options-string): Not here.
11364 1998-09-23  Karl Heuer  <kwzh@gnu.org>
11366         * term.el (term-delimiter-argument-list): Doc fix.
11367         (term-emulate-terminal): Escape literal semicolon.
11368         * progmodes/asm-mode.el (asm-mode): Doc fix.
11369         (asm-comment-char): Escape literal semicolon.
11370         * emulation/viper-cmd.el (viper-movement-commands): Likewise.
11372 1998-09-23  Richard Stallman  <rms@gnu.org>
11374         * hexl.el (hexl-mode-map): Don't override all ESC bindings,
11375         only those that normally modify the buffer.
11377         * dabbrev.el (dabbrev--find-expansion): Don't scan the current buffer
11378         over again.
11380 1998-09-23  E. Jay Berkenbilt  <ejb@ql.org>
11382         * ispell.el (check-ispell-version): Ensure same buffer is current
11383         when let-binding of case-fold-search ends.
11385 1998-09-23  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
11387         * ps-print.el: Skip invisible overlay.
11388         Test for set-buffer-multibyte rather than using mule-version.
11389         (ps-print-version): New version number (4.1) and doc fix.
11390         (ps-generate-postscript-with-faces): Skip invisible overlay.
11392 1998-09-23  Fritz Knabe  <knabe@cs.virginia.edu>
11394         * mail/mh-mime.el (mh-mhn-compose-insertion): Use quotes.
11396 1998-09-22  Kenichi Handa  <handa@etl.go.jp>
11398         * international/quail.el (quail-update-guidance): Check for the
11399         return value of (quail-guidance) fixed.
11400         (quail-update-translation): Bind quail-current-str locally when it
11401         calls quail-update-guidance.
11402         (quail-update-translation): If input-method-exit-on-first-char is
11403         non-nil, terminate translation only when the current input method
11404         is simple.
11406 1998-09-22  Paul Eggert  <eggert@twinsun.com>
11408         * startup.el (locale-translation-file-name): Prefer X-related names
11409         to the name used by GNU/Linux sans X.  Set to nil if no file found.
11410         (command-line): Use locale-translation-file-name if it is not nil,
11411         instead of testing for its existence again.
11412         regexp-quote the ctype before using it in a regexp.
11413         Allow a colon to appear after the ctype in the aliases file,
11414         as is done in X11R6.4.
11416 1998-09-21  Richard Stallman  <rms@gnu.org>
11418         * mail/rmail.el (rmail-resend): Work properly if invoked from summary.
11420         * calendar/appt.el (appt-interval): Variable deleted.
11421         (appt-check): For minutes in between appt-display-interval times,
11422         do check, but don't display anything except an updated mode line.
11423         Count against appt-display-interval based on minutes since
11424         first display of this appointment, not based on time of day.
11425         If appt-display-mode-line, force mode line redisplay
11426         whenever appt-mode-string has changed.
11427         (appt-add, appt-delete): Add autoload cookies.
11428         (appt-check): Catch errors from calling `diary'.
11429         (appt-max-time): Renamed from max-time.
11430         (appt-now-displayed, appt-display-count): New variables.
11431         (appt-timer): Don't create one if we already have one.
11433         * textmodes/tex-mode.el (tex-compilation-parse-errors):
11434         More general code to use the source buffer instead of the zap file.
11436         * hilit-chg.el (highlight-compare-with-file): Renamed from
11437         compare-with-file.
11439         * loadhist.el (load-history-loaded): New variable.
11440         (symbol-file): Load etc/fns-VERSION.el if that has not been done.
11442         * loadup.el: Write load-history into etc/fns-VERSION.el, then clear it.
11444         * emacs-lisp/find-func.el (find-function-search-for-symbol):
11445         Fix error messages.
11447 1998-09-21  Markus Armbruster  <armbru@pond.sub.org>
11449         * avoid.el (mouse-avoidance-banish-hook): Don't move unless in an
11450         Emacs frame.
11452 1998-09-21  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
11454         * mail/rmail.el (rmail-decode-babyl-format): Recognize both
11455         `undecided' and `undecided-unix'.
11457 1998-09-21  Dave Love  <fx@gnu.org>
11459         * help.el (help-make-xrefs): Fix typo affecting Info references.
11461         * subr.el (remove-hook): Check list values to avoid errors.
11463 1998-09-18  Noah Friedman  <friedman@splode.com>
11465         * emacs-lisp/eldoc.el (eldoc-message): Check for 1-arg case, and
11466         store string in eldoc-last-message without consing a new string.
11467         Rearrange logic from nested if's into cond's.
11468         (eldoc-print-fnsym-args): Renamed to eldoc-get-fnsym-args-string.
11469         Do not print message; just return string.
11470         (eldoc-get-var-docstring): Renamed from eldoc-print-var-docstring.
11471         Do not print message; just return string.
11472         Cache that string in eldoc-last-data.
11473         (eldoc-last-data): Make into a vector.
11474         (eldoc-get-fnsym-args-string): Use new data form of structure.
11475         (eldoc-get-var-docstring): Here also.
11476         (eldoc-last-data-store): New function.
11477         (eldoc-get-fnsym-args-string): Use it.
11478         (eldoc-get-var-docstring): Here also.
11479         (eldoc-docstring-first-line): Minimize interim string consing.
11480         Call substitute-command-keys on the result.
11481         (eldoc-print-var-docstrings, eldoc-print-docstring,
11482         eldoc-docstring-message): Functions removed.
11483         (eldoc-docstring-format-sym-doc): New function, functionality
11484         ripped out of eldoc-docstring-message.
11485         (eldoc-get-fnsym-args-string, eldoc-get-var-docstring): Use it.
11487 1998-09-18  Kenichi Handa  <handa@etl.go.jp>
11489         * international/mule.el (make-coding-system): Doc-string modified.
11491 1998-09-18  Andreas Schwab  <schwab@delysid.gnu.org>
11493         * progmodes/vhdl-mode.el (vhdl-header-file): Fix customize type.
11495         * progmodes/cpp.el (cpp-face-light-list, cpp-face-dark-list): Fix
11496         customize type.
11498         * progmodes/cperl-mode.el (cperl-lazy-help-time): Fix customize
11499         type.
11501         * progmodes/compile.el (compilation-error-screen-columns): New
11502         variable.
11503         (compilation-next-error-locus): Use it to decide whether to use
11504         forward-char or move-to-column.
11506         * mail/rmail.el (rmail-movemail-program): Fix customize type.
11508         * mail/feedmail.el (feedmail-x-mailer-line-user-appendage,
11509         feedmail-fiddle-plex-user-list,
11510         feedmail-spray-address-fiddle-plex-list,
11511         feedmail-prompt-before-queue-user-alist,
11512         feedmail-prompt-before-queue-help-supplement,
11513         feedmail-queue-reminder-alist, feedmail-queue-default-file-slug,
11514         feedmail-queue-alternative-mail-header-separator): Fix customize
11515         type.
11517         * startup.el (site-run-file): Fix customize type.
11519         * speedbar.el (speedbar-initial-expansion-list-name): Fix
11520         customize type.
11522         * shell.el (shell-input-autoexpand): Fix customize type.
11524         * ps-print.el (ps-font-info-database): Add missing dots in value.
11525         Improve layout of customize type.
11527         * net-utils.el (traceroute-program-options, ping-program-options,
11528         ipconfig-program-options, netstat-program-options,
11529         arp-program-options, route-program-options,
11530         nslookup-program-options, ftp-program-options): Fix customize
11531         type.
11533         * midnight.el (clean-buffer-list-kill-regexps,
11534         clean-buffer-list-kill-buffer-names,
11535         clean-buffer-list-kill-never-buffer-names,
11536         clean-buffer-list-kill-never-regexps): Fix customize type.
11538         * man.el (Man-init-defvars): Avoid trailing nil on
11539         Man-filter-list.
11541         * lpr.el (printer-name): Fix customize type.
11543 1998-09-16  Kenichi Handa  <handa@etl.go.jp>
11545         * international/mule-cmds.el (reset-language-environment): Call
11546         update-coding-systems-internal.
11548         * international/mule-conf.el: Call update-coding-systems-internal
11549         at the tail.
11551 1998-09-14  Dave Love  <fx@gnu.org>
11553         * vc-hooks.el (vc-menu-map): Change the vc-directory label.  Don't
11554         use the menu-enable properties, pending doing it correctly and
11555         acceptably fast.
11557         * map-ynp.el (map-y-or-n-p): Mention RET, `q' in the help text.
11559 1998-09-13  Dave Love  <d.love@dl.ac.uk>
11561         * progmodes/hideshow.el (hs-grok-mode-type): Check
11562         comment-{start,end} non-nil as well as bound.  Report an error if
11563         we can't grok the mode.
11565 1998-09-13  Richard Stallman  <rms@gnu.org>
11567         * simple.el (blink-matching-open): Don't log paren matching
11568         messages in *Messages*.
11570 1998-09-12  Richard Stallman  <rms@gnu.org>
11572         * scroll-bar.el (scroll-bar-scroll-down, scroll-bar-scroll-up):
11573         Set point-before-scroll at end even if there was an error.
11575         * ange-ftp.el (ange-ftp-insert-file-contents):
11576         Use binary mode for dumb-unix hosts as for unix hosts.
11577         (ange-ftp-copy-file-internal): Likewise.
11579         * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
11581         * emacs-lisp/pp.el: Doc fixes.
11583         * wid-edit.el (widget-menu-max-shortcuts): New variable.
11584         (widget-choose): Don't use single-char shortcuts if # items
11585         exceeds that many.  Use minibuffer instead.
11587 1998-09-12  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
11589         * calendar/diary-lib.el (mark-sexp-diary-entries): Fix previous chg.
11591 1998-09-12  Eric Ludlam  <zappo@mescaline.gnu.org>
11593         * speedbar.el (speedbar-frame-mode): Do not set frame position if
11594         in terminal mode.
11596 1998-09-10  Noah Friedman  <friedman@splode.com>
11598         * rsz-mini.el (resize-minibuffer-mode): Remove :version field from
11599         defcustom declaration.  It's wreaking too much havoc with XEmacs
11600         and older versions of Emacs, which share this code.
11602         * type-break.el (type-break-mode): Here also.
11604         * rlogin.el (rlogin): If using make-local-hook, pass the 4th arg
11605         `t' to add-hook also to modify the new local value.
11607 1998-09-10  Dave Love  <fx@gnu.org>
11609         * vc.el (vc-insert-headers): Doc fix.
11611 1998-09-10  Richard Stallman  <rms@gnu.org>
11613         * textmodes/flyspell.el (flyspell-mode-on): Make the
11614         ispell-... variables permanent locals.
11615         (flyspell-mode-off): Add autoload cookie.
11617         * ange-ftp.el (ange-ftp-write-region): For `dumb-unix' host,
11618         do use binary mode, just as for `unix'.
11619         (ange-ftp-host-type): If HOST is nil, return `unix'.
11621         * dired.el (dired-mark-files-containing-regexp):
11622         Don't scan directories.  Ignore non-readable files.
11624         * progmodes/compile.el (compilation-error-regexp-alist):
11625         Fix previous change: allow . and _ in command name.
11627         * dired.el (dired-mark-files-containing-regexp): Fix previous change.
11629         * uncompress.el (uncompress-while-visiting):
11630         Use just the car of what find-operation-coding-system returns.
11632         * textmodes/tex-mode.el (tex-start-tex): Call comint-quote-filename.
11634         * shell.el (shell-file-name-quote-list): Add # to the value.
11636 1998-09-10  E. Jay Berkenbilt  <ejb@ql.org>
11638         * textmodes/flyspell.el (flyspell-mode-on): Fix kill-buffer-hook
11639         to make killing of ispell process work even if
11640         kill-all-local-variables has been run.
11642 1998-09-10  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
11644         * calendar/diary-lib.el (mark-sexp-diary-entries): Avoid infinite
11645         loop when sexp entry ends at end of file with no newline.
11647 1998-09-10  Markus Rost  <markus.rost@mathematik.uni-regensburg.de>
11649         * cus-edit.el (Custom-save, Custom-reset-current, Custom-reset-saved)
11650         (Custom-reset-standard): Fix menu inconsistency.
11652         * mail/feedmail.el (feedmail-from-line): Allow t.
11653         (feedmail-message-id-suffix): Allow nil.
11655         * mail/rmailsum.el (rmail-summary-output-to-rmail-file):
11656         Simplify.  Make prefix arg work right.
11658 1998-09-09  Dave Love  <fx@gnu.org>
11660         * textmodes/paragraphs.el (use-hard-newlines): Doc fix.
11662         * help.el (help-xref-interned): Bind inhibit-read-only when inserting.
11664 1998-09-08  Dave Love  <fx@gnu.org>
11666         * add-log.el (change-log-font-lock-keywords): Do parenthesized
11667         stuff only after file names or at start of line.  Allow parens
11668         around e-mail, as well as angles.
11670         * gnus/nnweb.el (require): Wrap requirement of w3 and url in
11671         ignore-errors too, eval'd when compile.  Require w3 stuff at load
11672         time for nicer failure if it's not available.
11674 1998-09-07  Geoff Voelker  <voelker@cs.washington.edu>
11676         * comint.el (comint-arguments): Ignore backslashes when using
11677         w32 shells that expect backslashes as the directory separator.
11679 1998-09-04  Kenichi Handa  <handa@etl.go.jp>
11681         * international/fontset.el (resolved-ascii-font): New variable.
11682         (x-complement-fontset-spec): By side effect, set
11683         `resolved-ascii-font' to the resolved name of ASCII font."
11684         (create-fontset-from-fontset-spec): Don't get a value for
11685         resolved-ascii-font from the list full-fontlist.  It is set by
11686         x-complement-fontset-spec now.
11688         * ps-print.el: To make it work also on Emacs 20.2 and the earlier
11689         version, check the value of mule-version.
11691 1998-09-07  Carsten Dominik  <cd@delysid.gnu.org>
11693         * textmodes/reftex.el (reftex-view-crossref): Split up into
11694         several functions.  No longer moves to find a macro.
11695         (reftex-view-cr-cite, reftex-view-cr-ref,
11696         reftex-end-of-bib-entry): New functions.
11697         (reftex-auto-view-crossref): New value `window' allowed.
11698         (reftex-view-crossref-when-idle): Process new `window' option in
11699         (reftex-translate-to-ascii-function): New default.
11700         (reftex-label-illegal-re): Default changed, removed Latin1.
11701         (reftex-latin1-to-ascii): New function.
11702         (reftex-what-environment): Check for section regexp before use.
11703         (reftex-find-tex-file, reftex-find-bib-file): Fixed bug with
11704         absolute path names.
11705         (reftex-TeX-master-file): Changed sequence of file checks.
11706         (reftex-do-citation): bibview cache only with RefTeX mode on.
11708 1998-09-06  Richard Stallman  <rms@gnu.org>
11710         * progmodes/compile.el (compilation-error-regexp-alist):
11711         In first pattern (GNU utilities and other things),
11712         allow a space after the optional program name at the beginning.
11714         * mail/mail-hist.el (mail-hist-current-header-contents):
11715         Fix previous change: use mail-header-end.
11717 1998-09-06  Bill Richter  <richter@math.nwu.edu>
11719         * international/ccl.el: Doc fixes.
11720         * international/encoded-kb.el: Doc fixes.
11721         * international/fontset.el: Doc fixes.
11722         * international/kinsoku.el: Doc fixes.
11723         * international/kkc.el: Doc fixes.
11724         * international/mule-cmds.el: Doc fixes.
11725         * international/mule-conf.el: Doc fixes.
11726         * international/mule-util.el: Doc fixes.
11727         * international/mule.el: Doc fixes.
11729 1998-09-05  Eric Ludlam  <zappo@gnu.org>
11731         * emacs-lisp/checkdoc.el: (checkdoc-buffer-label): New function.
11732         (checkdoc-start-section, checkdoc-error): Use `checkdoc-buffer-label'.
11733         (checkdoc-this-string-valid-engine): Permit ? as terminating
11734         punctuation for first line sentence breaking.
11735         (checkdoc-this-string-valid): When converting a comment into a doc
11736         string, make sure " chars are \".
11737         (checkdoc-sentencespace-region-engine): Only do double space check
11738         if based on the variable `sentence-end-double-space'
11739         (checkdoc-this-string-valid-engine): ? ends valid sentence.
11740         (checkdoc-proper-noun-region-engine): Exclude items in URLs
11742 1998-09-04  Richard Stallman  <rms@gnu.org>
11744         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
11745         Recognize define-skeleton as a function definer.
11747         * cus-edit.el (customize-option): Refuse to customize
11748         a variable that has no defcustom.  But if variable is autoloaded,
11749         first try to load the library that defines it.
11751         * international/iso-insert.el: Use `string' before calling `insert'
11752         so that in multibyte buffers we insert multibyte chars.
11754         * dired.el (dired-mark-files-containing-regexp):
11755         Don't use find-file; instead, insert the file in a temp buffer.
11757         * textmodes/tex-mode.el (tex-start-options-string): New option.
11758         (tex-start-tex): Use that variable.
11760         * mail/rmail.el (rmail-primary-inbox-list): Make the initial
11761         value in the `repeat' alternative a list.
11763         * textmodes/fill.el (fill-individual-paragraphs): Before deleting
11764         the inserted newline, verify that one was really inserted.
11766         * textmodes/flyspell.el (flyspell-mode): Do nothing if mode
11767         remains on or remains off.
11768         (flyspell-multi-language-p): Default changed to nil.
11770         * progmodes/ada-mode.el (ada-search-ignore-string-comment):
11771         In "found in comment" case, don't beginning-of-line after forward-line.
11773         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
11774         If the function definition is not a lambda, return original FORM
11775         with no error.
11777 1998-09-04  Peter Breton  <pbreton@ne.mediaone.net>
11779         * net-utils.el (netstat-program-options): Changed from nil to "-a"
11780         so that by default netstat shows all network connections.
11782 1998-09-04  Bob Weiner  <weiner@altrasoft.com>
11784         * international/quail.el: Doc fixes.
11786         * info.el (info): Don't add parens if FILE already has them.
11788 1998-09-04  Geoff Voelker  <voelker@cs.washington.edu>
11790         * mail/smtpmail.el (smtpmail-via-smtp): Parse out the first word
11791         on extension lines.
11793 1998-09-03  Geoff Voelker  <voelker@cs.washington.edu>
11795         * w32-fns.el (w32-shell-dos-semantics): New function.
11797 1998-09-03  Bill Richter  <richter@brouwer.math.nwu.edu>
11799         * international/quail.el (quail-choose-completion-string): Store
11800         completion `choice' in `quail-current-str'; don't insert it.
11802 1998-09-02  Kenichi Handa  <handa@etl.go.jp>
11804         * bdf.el (bdf-generate-font): New argument CHARSET.  Give WIDTH
11805         argument to ps-mule-generate-bitmap-font.
11807         * ps-print.el (ps-mule-font-info-database-bdf): The include ASCII
11808         entry and change Latin-1 entry in the default value.
11809         (ps-mule-font-info-database-ps-bdf): New variable.
11810         (ccl-encode-ethio-unicode): Bug of CCL code fixed.
11811         (ps-mule-generate-font): Give CHARSET arg to FONT-FUNC function
11812         registerd in FONT-SPEC.
11813         (ps-mule-bitmap-prologue): Fix PostScript code to realize correct
11814         charcter width of bitmap fonts.
11815         (ps-mule-generate-bitmap-font): Give COLUMNS arg to PostScript
11816         procedure NF.
11817         (ps-begin-file): Output PostScript code for setting
11818         SpaceWidthRatio.
11819         (ps-plot-region): Use line-beginning-position to get a position of
11820         the beginning of the current line.
11822         * international/mule-cmds.el (register-input-method): Doc-string
11823         modified.
11825 1998-09-01  Dave Love  <fx@gnu.org>
11827         * international/mule-cmds.el (current-language-environment): Fix
11828         setter function.
11830 1998-09-01  Simon Marshall  <simon@gnu.org>
11832         * font-lock.el (tex-font-lock-keywords-2): Fontify \nocite like \cite.
11833         (lisp-font-lock-keywords-2): Fontify abort, assert, etc., separately.
11834         ({c,c++,objc,java}-font-lock-keywords-{2,3}): Fontify only type/class
11835         names with font-lock-type-face.  Fontify type specs, etc., with
11836         font-lock-keyword-face.
11838 1998-08-31  Kenichi Handa  <handa@etl.go.jp>
11840         * international/fontset.el (x-complement-fontset-spec): If ASCII
11841         font is specified in FONTLIST, don't substitute it for the
11842         resolved name.
11844 1998-08-31  Paul Eggert  <eggert@twinsun.com>
11846         * international/mule.el (charset-description): Doc fix.
11848         * language/chinese.el, language/cyrillic.el, language/czech.el,
11849         language/devanagari.el, language/ethiopic.el,
11850         language/european.el, language/hebrew.el, language/indian.el,
11851         language/japanese.el, language/korean.el, language/lao.el,
11852         language/slovak.el, language/thai.el, language/tibetan.el,
11853         language/vietnamese.el:
11854         Add coding: local variable, to avoid bootstrapping problem
11855         if you need to recompile all the Lisp files using interpreted code.
11857 1998-08-29  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
11859         * cal-china.el (chinese-year-cache): Change range of years from
11860         1989-2000 to 1990-2010.
11862 1998-08-29  Dave Love  <d.love@dl.ac.uk>
11864         * mail/smtpmail.el (smtpmail-send-it): Add autoload cookie.
11865         (smtpmail-via-smtp): Check that smtpmail-smtp-server is defined.
11867 1998-08-28  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
11869         * ps-print.el (ps-print-control-characters): Doc-string modified.
11870         (ps-output-string-prim): Comment format changed.
11871         (ps-do-despool): Indentation of source code changed.
11873 1998-08-28  Kenichi Handa  <handa@etl.go.jp>
11875         * subr.el (sref): Make it an alias of aref.  Make the
11876         byte-compiler warn that it is obsolete.
11877         (char-bytes): Make the byte-compiler warn that it is obsolete.
11879         * emacs-lisp/bytecomp.el (byte-compile-output-as-comment):
11880         Calculate the total bytes using position-bytes instead of
11881         char-bytes.
11883 1998-08-27  Karl Heuer  <kwzh@gnu.org>
11885         * snmp-mode.el: New file.
11886         * files.el (auto-mode-alist): Add snmp-mode patterns.
11888 1998-08-27  Karl Eichwalder  <ke@suse.de>
11890         * dired-aux.el (dired-compress-file-suffixes): Add `bz2'.
11892 1998-08-27  Edward M. Reingold  <reingold@emr.cs.uiuc.edu>
11894         * calendar/diary-lib.el (diary-block): Doc fix..
11895         * calendar/calendar.el (diary-list-include-blanks): Doc fix..
11897 1998-08-27  Richard Stallman  <rms@gnu.org>
11899         * calendar/cal-tex.el (cal-tex-cursor-filofax-daily): Don't use oddp.
11900         * calendar/appt.el (appt-check): Start the appt-mode-string w/ space.
11901         Clear appt-mode-string if we don't put something in it.
11903 1998-08-27  Dave Love  <fx@gnu.org>
11905         * ange-ftp.el (ange-ftp-allow-child-lookup): Reinstate checking
11906         dired-local-variables-file for dired-x.
11908         * emacs-lisp/find-func.el (find-function-search-for-symbol): Look
11909         for compressed library files too.
11911 1998-08-26  Kenichi Handa  <handa@etl.go.jp>
11913         * language/european.el ("Latin-1"): Modify `documentation' key value.
11914         ("Latin-2"): Likewise.
11916 1998-08-26  Karl Heuer  <kwzh@gnu.org>
11918         * dired-x.el (dired-guess-shell-alist-default): Fix regexp.
11920 1998-08-26  Albert L. Ting  <alt@artisan.com>
11922         * mail/mail-hist.el (mail-hist-current-header-name): Fix test.
11923         (mail-hist-current-header-contents): Use mail-text-start.
11925 1998-08-26  Richard Stallman  <rms@gnu.org>
11927         * cus-edit.el (customize-version-lessp): Handle a number as VERSION2.
11928         (customize-changed-options-previous-release): New variable.
11929         (customize-changed-options): Use that variable as default arg.
11931 1998-08-26  Karl Eichwalder  <ke@suse.de>
11933         * midnight.el: Require `timer' not only when compiling.
11935 1998-08-26  Per Starback  <starback@update.uu.se>
11937         * gnus/gnus-start.el (gnus-check-first-time-used): Change current
11938         buffer before creating help group.
11940 1998-08-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11942         * gnus/gnus-start.el (gnus-save-newsrc-file): Bind
11943         coding-system-for-write before saving.
11945 1998-08-26  Kevin Rodgers <kevinr@ihs.com>
11947         * isearch.el (isearch-forward): Doc fix.
11949 1998-08-26  Andreas Schwab  <schwab@delysid.gnu.org>
11951         * emacs-lisp/find-func.el: Fix :version tags to have a string
11952         value, not a float.
11954         * cus-dep.el: Fix typo in output.
11956 1998-08-25  Dave Love  <fx@gnu.org>
11958         * repeat.el (repeat): Doc fix.
11959         [From rms:]
11960         (repeat-previous-repeated-command): New variable.
11961         (repeat): Check for real-last-command being null or repeat.  Set
11962         repeat-previous-repeated-command.
11964         * browse-url.el (browse-url-netscape): Fix format for hex escapes.
11966 1998-08-25  Kenichi Handa  <handa@etl.go.jp>
11968         * gnus/message.el (message-send-mail-with-sendmail): Bind
11969         coding-system-for-write by the return value of
11970         select-message-coding-system.
11971         (message-send-mail-with-qmail): Likewise.
11973 1998-08-24  Andreas Schwab  <schwab@delysid.gnu.org>
11975         * emacs-lisp/autoload.el: Fix doc-string-elt property on
11976         define-derived-mode.
11978         * files.el (file-name-invalid-regexp):
11979         Fix regex for ms-dos without long file names.
11981 1998-08-24  Vinicius Jose Latorre  <vinicius@cpqd.com.br>
11983         * ps-print.el: Multi-byte buffer handling.
11984         (ps-print-version): New version number (4.0) and doc fix.
11985         (ps-color-device, ps-face-bold-p, ps-face-italic-p): Conditional
11986         compilation for GNU Emacs and emacsens.
11987         (ps-generate-postscript-with-faces): Force invisible text to be
11988         visible.
11989         (dos-ps-printer): New var to avoid compilation gripes.
11991 1998-08-24  Kenichi Handa  <handa@etl.go.jp>
11993         * ps-print.el (ps-mule-plot-string): Pay attention to the case
11994         that no more characters can't be printed in the current line.
11996 1998-08-24  Kenichi Handa  <handa@etl.go.jp>
11998         * ps-print.el (ps-mule-find-wrappoint): ENDPOS should not be
11999         greater than TO.
12001 1998-08-24  Kenichi Handa  <handa@etl.go.jp>
12003         * ps-print.el: Add codes to make ps-print.el work also on Emacs
12004         20.2 and the earlier version.
12005         (ps-mule-encode-7bit, ps-mule-encode-8bit): Modified for 20.2.
12006         (ccl-encode-ethio-unicode, ps-mule-encode-ethiopic): Likewise.
12007         (ps-mule-find-wrappoint): Likewise.
12008         (ps-mule-generate-font): Change `X' to `x' in format
12009         control-string.
12010         (ps-generate): Call ps-mule-begin before calling ps-begin-job.
12011         (ps-mule-cmpchar-prologue): Delete unnecessary `gsave' and
12012         `restore' form procedures `BC' and `EC'.
12014 1998-08-24  Kenichi Handa  <handa@etl.go.jp>
12016         * ps-print.el (ps-print-prologue-1): Handle the case that FontBBox
12017         is an executable procedure.  Make LineThickness, Xshadow, and
12018         Yshadow relative to FontHeight.  Set SpaceWidth in BeginDoc.
12019         (ps-mule-font-info-database, ps-mule-font-info-database-ps,
12020         ps-mule-font-info-database-bdf): New vars.
12021         (ps-mule-encode-7bit, ps-mule-encode-8bit): New funs.
12022         (ccl-encode-ethio-unicode): New CCL program.
12023         (ps-mule-encode-ethiopic): New fun.
12024         (ps-mule-current-charset): New var.
12025         (ps-mule-get-font-spec, ps-mule-font-spec-src,
12026         ps-mule-font-spec-name, ps-mule-font-spec-encoding,
12027         ps-mule-font-spec-bytes, ps-mule-printable-p): New funs.
12028         (ps-mule-external-libraries): New var.
12029         (ps-mule-init-external-library): New fun.
12030         (ps-mule-font-cache): New var.
12031         (ps-mule-generate-font, ps-mule-generate-glyphs): New funs.
12032         (ps-last-font): New var.
12033         (ps-mule-prepare-font): New fun.
12034         (ps-mule-charset-list): New var.
12035         (ps-mule-prologue-generated, ps-mule-prologue): New vars.
12036         (ps-mule-skip-same-charset, ps-mule-find-wrappoint,
12037         ps-mule-plot-string): New funs.
12038         (ps-mule-cmpchar-prologue-generated, ps-mule-cmpchar-prologue):
12039         New vars.
12040         (ps-mule-plot-rule-cmpchar, ps-mule-plot-cmpchar,
12041         ps-mule-prepare-cmpchar-font): New funs.
12042         (ps-mule-bitmap-prologue-generated, ps-mule-bitmap-prologue): New
12043         vars.
12044         (ps-mule-generate-bitmap-prologue, ps-mule-generate-bitmap-font,
12045         ps-mule-generate-bitmap-glyph): New funs.
12046         (ps-mule-initialize, ps-mule-begin): New funs.
12047         (ps-output-string-prim): Insert string as unibyte.
12048         (ps-output-prologue): New fun.
12049         (ps-flush-output): Handle the case of 'prologue.
12050         (ps-begin-file): Call ps-mule-initialize.
12051         (ps-begin-job): Set ps-control-or-escape-regexp differently if
12052         printing multibyte characters.
12053         (ps-begin-page): Set ps-mule-current-charset to 'ascii.
12054         (ps-basic-plot-string): Handle the case of printing ASCII
12055         characters by external libraries (e.g. BDF).
12056         (ps-set-font): Set ps-last-font.
12057         (ps-plot-region): Handle multibyte characters, use
12058         ps-mule-plot-string for them.
12059         (ps-generate): Set the spool buffer unibyte.  Call ps-mule-begin.
12061         * bdf.el: New file.
12063 1998-08-23  Kenichi HANDA  <handa@etl.go.jp>
12065         * international/mule-cmds.el (select-message-coding-system): New
12066         function.
12067         (set-language-environment-coding-systems): Set
12068         default-sendmail-coding-system.
12070         * mail/sendmail.el (sendmail-coding-system): Doc-string modified.
12071         (default-sendmail-coding-system): New variable.
12072         (sendmail-send-it): Encode the message by a coding system
12073         select-message-coding-system returns.
12075 1998-08-23  Eric Ludlam  <zappo@gnu.org>
12077         * speedbar.el: (speedbar-with-writable): Remove `toggle-read-only'.
12078         (speedbar-mode): Set buffer to read only.
12079         (speedbar-temp-buffer-show-function): For emacs don't call hook
12080         with arguments.
12081         (speedbar-stealthy-updates): Do all updates w/ the the buffer writable.
12083 1998-08-19  Dan Nicolaescu  <done@ece.arizona.edu>
12085         * speedbar.el (speedbar-key-map): Fix typo.
12087 See ChangeLog.7 for earlier changes.