]> code.delx.au - gnu-emacs/blobdiff - lisp/ChangeLog.10
*** empty log message ***
[gnu-emacs] / lisp / ChangeLog.10
index 2547ce63f5b575333b32b83b24ec7c4760814686..4138b9703d9ef8b6a4d4235266c7e1aeab1d1f8c 100644 (file)
@@ -11,7 +11,7 @@
 
 2003-07-03  Alan Mackenzie  <bug-cc-mode@gnu.org>
 
-       * progmodes/cc-mode.el: awk-mode: Call c-awk-after-change to
+       * progmodes/cc-mode.el (awk-mode): Call c-awk-after-change to
        ensure syntax-table props at loading.
 
        * progmodes/cc-fonts.el: Put (cc-require-when-compile 'cc-awk)
@@ -68,9 +68,9 @@
        superseding the old separate derived mode in awk-mode.el.
 
        * progmodes/cc-vars.el, cc-mode-19.el, progmodes/cc-langs.el,
-       progmodes/cc-mode.el, progmodes/cc-defs.el,
-       progmodes/cc-engine.el, progmodes/cc-fonts.el: Changes for the
-       new AWK support.
+       progmodes/cc-mode.el, progmodes/cc-defs.el,
+       * progmodes/cc-engine.el, progmodes/cc-fonts.el:
+       Changes for the new AWK support.
 
 2003-07-03  Martin Stjernholm  <bug-cc-mode@gnu.org>
 
        emacsen that doesn't have it.
 
        * progmodes/cc-styles.el, progmodes/cc-vars.el,
-       progmodes/cc-cmds.el: Fixes for the syntactic symbols for
+       progmodes/cc-cmds.el: Fixes for the syntactic symbols for
        module and composition blocks.
 
        * progmodes/cc-mode.el (c-basic-common-init):
        macros in C99.
 
        * progmodes/cc-menus.el, progmodes/cc-langs.el,
-       progmodes/cc-engine.el, progmodes/cc-fonts.el,
-       progmodes/cc-cmds.el: Fixed various regexps to use POSIX char
+       progmodes/cc-engine.el, progmodes/cc-fonts.el,
+       progmodes/cc-cmds.el: Fixed various regexps to use POSIX char
        classes when that is supported.
 
        * progmodes/cc-defs.el (c-alpha, c-alnum, c-digit, c-upper, c-lower):
 
        * progmodes/cc-engine.el: Fixes in face handling to cope with
        doc comments.
-
        (c-find-decl-spots): More failsafe skipping of comments and
        strings that only have been partially fontified.
 
 
        * progmodes/cc-defs.el (c-(up|down)-list-(forward|backward)):
        Make the position optional and added docstrings.
-
        (c-go-(up|down)-list-(forward|backward)): Add variants of the
        above that move point and return successfulness instead.
 
        each (X)Emacs flavor.
 
        * progmodes/cc-vars.el, progmodes/cc-defs.el,
-       progmodes/cc-engine.el, progmodes/cc-mode.el:
+       progmodes/cc-engine.el, progmodes/cc-mode.el:
        Use `lookup-syntax-properties' in XEmacs to control whether the
        syntax-table property has any effect or not.
-
        (c-parse-sexp-lookup-properties): New macro that expands to either
        `parse-sexp-lookup-properties' or `lookup-syntax-properties'.
 
        in progmodes/cc-engine.el.
 
        * progmodes/cc-engine.el, progmodes/cc-fonts.el,
-       progmodes/cc-langs.el: Fix the names on a number of regexp
+       progmodes/cc-langs.el: Fix the names on a number of regexp
        language variables to conform to the nomenclature and
        shortened some names.
 
        * progmodes/cc-align.el, progmodes/cc-cmds.el,
-       progmodes/cc-fonts.el, progmodes/cc-engine.el
+       progmodes/cc-fonts.el, progmodes/cc-engine.el
        (c-syntactic-re-search-forward): Remove the COUNT argument
        since it's never used.  Add an argument to tell which
        subexpression whose end should be tested for syntactic
        This fixes a performance problem that could occur when
        `fill-paragraph' is used in font lock mode on a comment at the
        end of a large class or function.
-
        (c-state-cache-start): Fix buffer localness.
 
        * progmodes/cc-langs.el: Updates from the C99 standard (or
        table for types: If a name is recognized as a type in a
        declaration it's added in an obarray to be able to recognize
        it in other ambiguous declarations.
-
        (c-remove-ws): New helper function to canonicalize fully
        qualified identifiers for `c-found-types'.
 
 
        * progmodes/cc-align.el (c-lineup-arglist-close-under-paren):
        Work correctly with nested arglist-cont-nonempty symbols.
-
        (c-lineup-arglist-operators): New lineup function to line up infix
        operators under the open paren of the surrounding sexp.
 
        * progmodes/cc-engine.el (c-forward-syntactic-ws): Fix a bug
        that could cause an infinite loop if something that looks like
        a macro begins in the middle of a line.
-
        (c-parse-state): Fix a bug that could cause `c-state-cache'
        to contain two conses in sequence when there's an unbalanced
        open paren in a macro.
        string, or a macro.
 
        * progmodes/cc-align.el, progmodes/cc-cmds.el,
-       progmodes/cc-engine.el (c-forward-single-comment,
-       c-forward-comments, c-backward-single-comment,
-       c-backward-comments): New replacements for `c-forward-comment'
-       that wraps `forward-comment' more efficiently in each of the
-       four different cases it's actually used.  These replacements
-       also treats line continuations as whitespace.
-
+       * progmodes/cc-engine.el (c-forward-single-comment)
+       (c-forward-comments, c-backward-single-comment, c-backward-comments):
+       New replacements for `c-forward-comment' that wraps `forward-comment'
+       more efficiently in each of the four different cases it's actually
+       used.  These replacements also treats line continuations as whitespace.
        (c-forward-comment): Remove.  The four different cases above
        are basically different, so it's better to make them into
        separate functions than choose between them at runtime using
        matter.
 
        * progmodes/cc-align.el, progmodes/cc-defs.el,
-       progmodes/cc-engine.el, progmodes/cc-vars.el
+       progmodes/cc-engine.el, progmodes/cc-vars.el
        (c-guess-basic-syntax, c-calc-offset)
        (c-get-syntactic-indentation, c-syntactic-context):
        Extend the representation of the syntactic context: Previously it was
        position for defun-open in K&R style functions.
 
        * progmodes/cc-engine.el (c-in-knr-argdecl): Don't trip up on macros.
-
        (c-search-decl-header-end): Handle C++ template arguments more
        correctly.
-
        (c-beginning-of-decl-1): Fix when the declaration is first in a macro.
 
        * progmodes/cc-engine.el (c-beginning-of-decl-1): Better way
        to handle protection labels, one which doesn't get confused by
        inherit colons.
-
        (c-end-of-decl-1): Don't treat functions that have "class" or
        "struct" in the return type as classes or structs.
 
        (tramp-file-name-handler): Do not invoke the old remote-shell handler.
        (tramp-find-foreign-file-name-handler): Return after first match
        is found.  From Francis Litterio <franl@world.std.com>.
-       (tramp-handle-file-newer-than-file-p):  `tramp-time-diff' returns
+       (tramp-handle-file-newer-than-file-p): `tramp-time-diff' returns
        integer, not list.  Do not apply `car' to the return value of
        `tramp-time-diff'.  Reported by David D. Smith
        <ultrasoul@ultrasoul.com>.
        (shell-directory-tracker): Make regexp used for skipping to next
        command correspond to one used for command itself.
 
-2003-06-13  Katsumi Yamaoka  <yamaoka@jpl.org>  (tiny change)
+2003-06-13  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * textmodes/texinfmt.el (texinfo-format-scan):
        Silence `whitespace-cleanup'.
 
        * info.el (Info-fontify-node): Don't refill over lines ending in a
        period; this should fix problems with lists like one in the
-       (emacs)Library Keywords section.
+       "(emacs)Library Keywords" section.
 
 2003-06-05  Markus Rost  <rost@math.ohio-state.edu>
 
        * textmodes/bibtex.el: Long overdue merge.
        Don't require `compile' since it seems unnecessary.
        For all internal variables and functions the docstring comments have
-       been converted into proper docstrings
+       been converted into proper docstrings.
        (bibtex-maintainer-address, bibtex-maintainer-salutation)
        (bibtex-version): Remove support for bug reporting.
        (bibtex-field-delimiters, bibtex-entry-delimiters)
 
        * international/mule.el (ctext-non-standard-encodings-alist):
        Rename from non-standard-icccm-encodings-alist.
-       (ctext-non-standard-encodings-regexp): New variable
+       (ctext-non-standard-encodings-regexp): New variable.
        (ctext-post-read-conversion): Full rewrite.
        (ctext-non-standard-designations-alist): Rename from
        non-standard-designations-alist.
        (face-spec-set): Set face-modified prop to nil
        when we change the new-frame defaults.
 
-       * cus-edit.el (custom-face-state-set): non-nil `face-modified'
+       * cus-edit.el (custom-face-state-set): Non-nil `face-modified'
        means face was set outside of Custom.
 
 2003-05-28  Richard M. Stallman  <rms@gnu.org>
        (gdb-assembler-mode): Keep fringe outside margin as the overlay
        arrow is not used for assembler.
 
-2003-05-25   Tim Van Holder  <tim.vanholder@anubex.com>
+2003-05-25  Tim Van Holder  <tim.vanholder@anubex.com>
 
        * which-func.el (which-func-update-timer): New variable.
        (which-function-mode): Use it.
        (gdb-invalidate-breakpoints-and-assembler): Remove.
        (gdb-current-address): Remove.
        (gdb-previous-address): New variable.
-       (gud-until): Extend to work in Assembler buffer
+       (gud-until): Extend to work in Assembler buffer.
        (gdb-append-to-inferior-io): Select IO buffer when there is output.
        (gdb-assembler-custom): Try to get line marker (arrow) to display
        in window.  Correct parsing for OS dependent output syntax of Gdb
        (rename-buffer): Use the `newname' arg as base.
        (create-file-buffer): Split the file name into base and dirname.
 
-2003-05-09  Jesper Harder  <harder@ifa.au.dk>  (tiny change)
+2003-05-09  Jesper Harder  <harder@ifa.au.dk>
 
        * mail/smtpmail.el (smtpmail-send-queued-mail): Don't use kill-line.
 
        * filesets.el (filesets-data): Add another defvar.
        (filesets-verbosity): Doc fix.
 
-2003-05-02  Tak Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
+2003-05-02  Tak Ota  <Takaaki.Ota@am.sony.com>
 
        * recentf.el (recentf-cleanup): Swap tests for exclusion and
        accessibility.
        (ada-set-default-project-file): New parameter KEEP-EXISTING.
        (ada-prj-find-prj-file): New parameter FILE.
        (ada-parse-prj-file): Take into account the ADA_INCLUDE_PATH and
-       ADA_OBJECTS_PATH environment variables.  Minor reorganization of the
-       code
+       ADA_OBJECTS_PATH environment variables.  Minor reorganization of
+       the code.
        (ada-get-all-references): Add support for GNAT 3.16 cross-references.
 
        * progmodes/ada-prj.el (ada-prj-add-keymap): Move to ada-mode.el
        (recentf-sort-directories-ascending)
        (recentf-sort-directories-descending)
        (recentf-show-basenames-ascending)
-       (recentf-show-basenames-descending: In-line.   Better code.  Doc fix.
+       (recentf-show-basenames-descending): In-line.  Better code.  Doc fix.
        (recentf-show-basenames)
        (recentf-relative-filter): Better code.  Doc fix.
        (recentf-arrange-by-rule-subfilter): Doc fix.  Improve :set code.
        (Info-display-images-node): New functions for displaying images.
        (Info-select-node): Call Info-display-images-node.
 
-2003-04-25  Kai Gro\e,A_\e(Bjohann  <kai.grossjohann@gmx.net>
+2003-04-25  David Ponce <david.ponce@wanadoo.fr>
 
        * files.el (file-relative-name): Recognize "c:/foo" as absolute
-       file name.  Tiny change from David PONCE <david.ponce@wanadoo.fr>.
+       file name.
 
 2003-04-24  Sam Steingold  <sds@gnu.org>
 
 
        * font-core.el (font-lock-maximum-size, font-lock-verbose): Remove.
        (font-lock-multiline, font-lock-fontified, font-lock-set-defaults):
-       Move back to font-lock.el
+       Move back to font-lock.el.
        (font-lock-default-function): Use font-lock-mode-internal.
 
        * files.el (auto-mode-alist): Add entries for *.ins and *.dtx.
        * progmodes/etags.el (select-tags-table-mode-map):
        Don't create new keymap.  Instead copy from button-buffer-map.
        Bind push-button to `t' instead of binding
-       select-tags-table-select directly
+       select-tags-table-select directly.
        (tags-select-tags-table): New button.
        (select-tags-table): Put a button for each selections.
 
        * international/utf-16.el (utf-16-le-decode-loop)
        (utf-16-be-decode-loop): New temporary variables.
        (ccl-decode-mule-utf-16-le): Use utf-16-le-decode-loop.
-       (ccl-decode-mule-utf-16-be): Use utf-16-be-decode-loop
+       (ccl-decode-mule-utf-16-be): Use utf-16-be-decode-loop.
        (ccl-decode-mule-utf-16-le-with-signature)
        (ccl-decode-mule-utf-16-be-with-signature)
        (ccl-decode-mule-utf-16): New CCL programs.
        (utf-16-le-encode-loop, utf-16-be-encode-loop): New temporary
        variables.
        (ccl-encode-mule-utf-16-le): Use utf-16-le-encode-loop.
-       (ccl-encode-mule-utf-16-be): Use utf-16-be-encode-loop
+       (ccl-encode-mule-utf-16-be): Use utf-16-be-encode-loop.
        (ccl-encode-mule-utf-16-le-with-signature)
        (ccl-encode-mule-utf-16-be-with-signature): New CCL programs.
        (mule-utf-16-post-read-conversion): New function.
        pt     -> desktop-buffer-point
        mk     -> desktop-buffer-mark
        ro     -> desktop-buffer-read-only
-       locals -> desktop-buffer-locals
+       locals -> desktop-buffer-locals.
        (desktop-buffer-major-mode, desktop-buffer-file-name)
        (desktop-buffer-name): Delete unused customizable variables.
        (desktop-buffer-misc): Delete unused variable.
        of buffer.  This enables recognition of end of HERE-doc "as one types".
        Require "\n" after trailing tag of HERE-doc.
        \( made non-quoting outside of string/comment (gdj-contributed).
-       Likewise for \$.  Remove `here-doc-group' text property at start
-       (makes this property reliable).
+       Likewise for \$.  Remove `here-doc-group' text property at
+       start (makes this property reliable).
        Text property `first-format-line' ==> t.
        Do not recognize $opt_s and $opt::s as s///.
        (cperl-after-block-p): Optional arg pre-block to check for a pre-block
        beginning-of-defun to the non-existing command
        sh-beginning-of-compound-command.
 
-2003-02-12  Karl Chen  <quarl@hkn.eecs.berkeley.edu>  (tiny change)
+2003-02-12  Karl Chen  <quarl@hkn.eecs.berkeley.edu>
 
        * files.el (find-alternate-file): Check whether `dired-directory'
        is bound.
        I did it accidently.  Infinite loop ...
        (tramp-get-device): `tramp-make-tramp-file-name' must not be
        called with NIL path.  It fails in case of multi-method.
-       (tramp-file-name-for-operation):  Apply `expand-file-name' for
+       (tramp-file-name-for-operation): Apply `expand-file-name' for
        relative file names only.  Otherwise there might be problems if
        the default directory is another Tramp directory as the directory
        the file is based on.
 
        * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
        Apply `tramp-handle-directory-file-name'.
-       (tramp-smb-handle-file-attributes):  Apply `tramp-get-device'.
+       (tramp-smb-handle-file-attributes): Apply `tramp-get-device'.
        ATIME and CTIME are (0 0) now (= "don't know"), which is more honest.
        (tramp-smb-handle-make-directory): Use Emacs file name primitives
        instead of calling tramp-smb-handle-* equivalents directly.
        regexp subpattern 5)
        (time-stamp-pattern): Initialize to nil to avoid regexp work in
        default case.
-       (time-stamp-string): Call set-time-zone-rule instead of setenv
+       (time-stamp-string): Call set-time-zone-rule instead of setenv.
        (time-stamp-hhmmss): Remove (not needed after all).
        (time-stamp-month-dd-yyyy, time-stamp-dd/mm/yyyy)
        (time-stamp-mon-dd-yyyy, time-stamp-dd-mon-yy, time-stamp-yy/mm/dd)
 
 2003-01-13  Markus Rost  <rost@math.ohio-state.edu>
 
-       * cus-dep.el (custom-make-dependencies):  Don't set standard-value
+       * cus-dep.el (custom-make-dependencies): Don't set standard-value
        and version numbers for variables.  Handle faces.
 
-       * cus-edit.el (customize-changed-options):  Doc addition.  Load the
+       * cus-edit.el (customize-changed-options): Doc addition.  Load the
        version deps earlier.  Use other tests for groups and variables.
        Handle faces.
 
        * cus-edit.el (custom-variable-prompt): Doc change.
        Use custom-variable-p.
        (customize-option): Remove search in loaddefs.el.
-       (customize-apropos):  Use custom-variable-p.
+       (customize-apropos): Use custom-variable-p.
        (custom-save-variables): Use custom-variable-p to detect
        non-rogue variables.
 
 2002-12-02  Fran\e,Ag\e(Bois Pinard  <pinard@iro.umontreal.ca>
 
        * progmodes/make-mode.el (makefile-font-lock-keywords): Highlight
-       more make keywords:  defined, endef, override, export, unexport
+       more make keywords: defined, endef, override, export, unexport
        and vpath.
 
 2002-12-02  Dave Love  <fx@gnu.org>
        Make search for message delimiter case-sensitive.
 
        * simple.el (yank-window-start): New variable.
-       (yank): Record yank-window-start
+       (yank): Record yank-window-start.
        (yank-pop): Use yank-window-start.
 
        * info.el (Info-additional-directory-list): Doc fix.
        menu pseudo-keys generated by easymenu which are lowercase in
        Emacs 22.1.
 
-       * progmodes/ada-xref.el
-       (ada-xref-update-project-menu,ada-add-ada-menu): Ditto.
+       * progmodes/ada-xref.el (ada-xref-update-project-menu)
+       (ada-add-ada-menu): Ditto.
 
 2002-10-03  John Paul Wallington  <jpw@shootybangbang.com>
 
 
        * vc-hooks.el (vc-kill-buffer-hook): Add it to kill-buffer-hook again.
 
-2002-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>  (tiny change)
+2002-08-22  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * frame.el (select-frame-by-name, select-frame-set-input-focus):
        Always call x-focus-frame, if using x.
        * calendar/appt.el (appt-delete): Use substring-no-properties.
        (appt-make-list): Don't use prin1-to-string; use the string unchanged.
 
-2002-08-15  Jan Nieuwenhuizen  <janneke@gnu.org>  (tiny change)
+2002-08-15  Jan Nieuwenhuizen  <janneke@gnu.org>
 
        * server.el (server-process-filter): Simplify code.
        (server-goto-line-column): New function.
        * dired.el: Hide disabling of dired-find-alternate-file behind
        autoload-cookie.
 
-2002-07-31  Tak Ota  <Takaaki.Ota@am.sony.com>  (tiny change)
+2002-07-31  Tak Ota  <Takaaki.Ota@am.sony.com>
 
        * makefile.w32-in: Revert some changes from 2002-07-23 because they
        don't work on MSVC/nmake builds.
 
        * textmodes/reftex-vars.el (reftex-index-verify-function): New option.
        (reftex-bibliography-commands): New option.
-       (reftex-toc-split-windows-horizontally): New option
-       (reftex-toc-split-windows-horizontally-fraction): New option
+       (reftex-toc-split-windows-horizontally): New option.
+       (reftex-toc-split-windows-horizontally-fraction): New option.
        (reftex-include-file-commands): New option.
        (reftex-cite-format-builtin): Added ?n for nocite.
 
 
        * textmodes/reftex-toc.el (reftex-re-enlarge):
        Handle horizontal splitting.
-       (reftex-toc): Handle horizontal splitting
+       (reftex-toc): Handle horizontal splitting.
        (reftex-last-window-width): New variable.
 
        * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
        (comint-send-input, comint-output-filter): Use text properties
        instead of overlays.
        (comint-insert-clicked-input): Rewrite to work with text
-       properties as well as overlays
+       properties as well as overlays.
        (comint-snapshot-last-prompt): Snapshot using text properties.
        (comint-get-old-input-default, comint-extract-string): Don't copy
        text properties.
        (sendmail-send-it): Use it.
 
        * mail/smtpmail.el (smtpmail-queue-counter): New variable.
-       (smtpmail-send-it): Use it to construct new queue filenames
-       (needed if you send more than one message per second, which is
-       possible if you use Gnus Agent).
+       (smtpmail-send-it): Use it to construct new queue filenames (needed
+       if you send more than one message per second, which is possible if
+       you use Gnus Agent).
 
        * mail/smtpmail.el (smtpmail-auth-credentials): Support netrc
        files as well.
 
 2002-04-22  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
 
-       * international/mule-diag.el (list-input-methods-1): Doc fix
-       (LEIM is now part of the standard distribution).
+       * international/mule-diag.el (list-input-methods-1): Doc fix (LEIM is
+       now part of the standard distribution).
 
        * tmm.el (tmm-completion-prompt): Doc fix.
 
 2002-04-22  Martin Stjernholm  <bug-cc-mode@gnu.org>
 
        * progmodes/cc-align.el, progmodes/cc-engine.el,
-       progmodes/cc-styles.el, progmodes/cc-vars.el
+       progmodes/cc-styles.el, progmodes/cc-vars.el
        (c-guess-basic-syntax, c-lineup-topmost-intro-cont):
        Find correct anchor for statement-cont in top level constructs.
        Analyze variable initializations in top level constructs as
        (c-least-enclosing-brace): Added optional second arg to limit
        the search to before a certain point.
 
-       * progmodes/cc-engine.el (c-guess-basic-syntax): Fixed bug
-       which could cause incorrect analysis if a cached state is used
-       (usually only happens when an electric key reindents a line).
+       * progmodes/cc-engine.el (c-guess-basic-syntax): Fixed bug which
+       could cause incorrect analysis if a cached state is used (usually
+       only happens when an electric key reindents a line).
 
 2002-04-22  Martin Stjernholm  <bug-cc-mode@gnu.org>
 
        (ediff-draw-dir-diffs): Now supports the "C" command in directory
        difference buffer.
        (ediff-dir-diff-copy-file): New function that implements copying
-       of files from one Ediff dir to another
+       of files from one Ediff dir to another.
        (ediff-bury-dir-diffs-buffer): Kills the buffer instead.
        (ediff-append-custom-diff): Better error msgs.
 
 
 2002-02-22  Eli Zaretskii  <eliz@is.elta.co.il>
 
-       Support for ICCCM  Extended Segments in X selections:
+       Support for ICCCM Extended Segments in X selections:
 
        * international/mule-conf.el (ctext-no-compositions): New coding
        system.
        `current-language-environment' and `default-input-method' when
        marked as customized.
 
-       * international/mule-cmds.el
-       (setup-specified-language-environment):
+       * international/mule-cmds.el (setup-specified-language-environment):
        Mark `current-language-environment' as customized.
        (set-input-method): Mark `default-input-method' as customized when
        called interactively.
 2002-02-10  Michael Kifer  <kifer@cs.stonybrook.edu>
 
        * viper-util.el (viper-read-key-sequence): Fix so it'll read
-       fast key sequences in Emacs native mode
+       fast key sequences in Emacs native mode.
        (viper-events-to-keys): Delete.
 
        * viper.el (describe-key, describe-key-briefly): Get rid of
        Use ediff-has-gutter-support.
 
        * ediff-util.el (ediff-dispose-of-variant-according-to-user):
-       check if buff is alive.
+       Check if buff is alive.
 
        * ediff.el: Typo in comment.
 
        * textmodes/flyspell.el (flyspell-issue-message-flag): New user option.
        (flyspell-mode-on, flyspell-notify-misspell)
        (flyspell-small-region, flyspell-external-point-words)
-       (flyspell-large-region): Use it
+       (flyspell-large-region): Use it.
        (flyspell-before-incorrect-word-string)
        (flyspell-after-incorrect-word-string): New user options.
        (make-flyspell-overlay): Use them.
        Move view-emacs-FAQ from F to C-f.
        Move view-emacs-problems from P to C-e.
        Bindings moved here from mule-cmds.el.
-       C-l binding for describe-language-environment deleted
+       C-l binding for describe-language-environment deleted.
        (help-for-help): Update for all these changes.
 
        * emacs-lisp/copyright.el (copyright-regexp): Make (C) optional.
 2002-01-07  Michael Kifer  <kifer@cs.stonybrook.edu>
 
        * viper-init.el (viper-cond-compile-for-xemacs-or-emacs):
-       new macro that replaces viper-emacs-p and viper-xemacs-p in many
+       New macro that replaces viper-emacs-p and viper-xemacs-p in many
        cases.  Used to reduce the number of warnings.
 
        * viper-cmd.el: Use viper-cond-compile-for-xemacs-or-emacs.
        (viper-standard-value): Move here from viper.el.
-       (viper-set-unread-command-events): Move to viper-util.el
+       (viper-set-unread-command-events): Move to viper-util.el.
        (viper-check-minibuffer-overlay): Make sure
        viper-minibuffer-overlay is moved to cover the entire input field.
 
 
 2002-01-03  Pavel Jan\e,Am\e(Bk  <Pavel@Janik.cz>
 
-       * time.el (display-time-load-average-threshold): Fix defcustom
-       (add type and group).
+       * time.el (display-time-load-average-threshold):
+       Fix defcustom (add type and group).
 
        * net/ange-ftp.el (ange-ftp-shell-command): Remove port
        specification from the hostname.
 
        * language/ind-util.el: Don't require cl.
        (indian-glyph-char, indian-glyph-max-char)
-       (indian-char-glyph): Moved from indian.el
+       (indian-char-glyph): Moved from indian.el.
        (indian--puthash-char, mapthread): Don't quote lambda.
        (indian--map): New function.
        (indian--puthash-v, indian--puthash-c, indian--puthash-m)
 
 2001-11-22  Colin Walters  <walters@debian.org>
 
-       * calc/calc-misc.el (calc-info): Don't perform voodoo, just
-       (info "Calc").
+       * calc/calc-misc.el (calc-info): Don't perform voodoo,
+       just (info "Calc").
        (report-calc-bug): Use reporter.el.
 
        * mail/reporter.el (reporter-submit-bug-report): Doc fixes.
        * startup.el: Document command line option --no-window-system
        instead of --no-windows.
 
-2001-10-30  Stefan Monnier  <monnier@cs.yale.edu>
-
-       * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip.
+2001-10-30  David Ponce <david.ponce@wanadoo.fr>
 
        * font-lock.el (java-font-lock-syntactic-face-function): New fun.
        (font-lock-defaults-alist): Use it.
-       From David Ponce <david.ponce@wanadoo.fr>
+
+2001-10-30  Stefan Monnier  <monnier@cs.yale.edu>
+
+       * progmodes/autoconf.el (autoconf-mode): Fix comment-start-skip.
 
        * progmodes/perl-mode.el (perl-indent-line): Use `eq' to compare
        output of `char-after'.
        (ps-mode-menu-main): Submenu with options on/off was replaced with
        a toggle button.
        (ps-mode, ps-run-mode): Define with `define-derived-mode'
-       (ps-mode): Autoload cookie added on same line as comment
+       (ps-mode): Autoload cookie added on same line as comment.
        (ps-mode-tabkey, ps-mode-backward-delete-char):
        (ps-mode-r-balance): Replace `delete-horizontal-space' and
        `indent-to' with `indent-line-to'
@@ -23546,9 +23534,25 @@ See ChangeLog.9 for earlier changes.
 ;; coding: iso-2022-7bit
 ;; End:
 
-    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006
-    Free Software Foundation, Inc.
-  Copying and distribution of this file, with or without modification,
-  are permitted provided the copyright notice and this notice are preserved.
+    Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006,
+      2007, 2008  Free Software Foundation, Inc.
+
+  This file is part of GNU Emacs.
+
+  GNU Emacs is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 3, or (at your option)
+  any later version.
+
+  GNU Emacs is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with GNU Emacs; see the file COPYING.  If not, write to the
+  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+  Boston, MA 02110-1301, USA.
+
 
 ;;; arch-tag: 5fcf8004-6f58-452a-b9d6-6950323a19c1