(smtpmail-send-it): Use insert-buffer-substring.
[bpt/emacs.git] / lisp / ChangeLog
index c00f8c5..a12beda 100644 (file)
@@ -1,7 +1,697 @@
+2006-01-18  Jesper Harder  <harder@phys.au.dk>
+
+       * mail/smtpmail.el (smtpmail-send-it): Use insert-buffer-substring.
+
+2006-01-18  Masatake YAMATO  <jet@gyve.org>
+
+       * progmodes/make-mode.el (makefile-imake-mode): New mode
+       derived from maiefile-mode.
+       (makefile-imake-mode-syntax-table): New syntax table
+       derived from makefile-mode-syntax-table.
+       (makefile-mode): Write about makefile-imake-mode in 
+       doc string.
+       (makefile-mode-map): Bind "\C-c\C-m\C-i" to makefile-imake-mode.
+       (makefile-imake-font-lock-keywords): New font lock keywords.
+
+       * files.el (auto-mode-alist): Added Imakefile.
+
+2006-01-17  Agustin Martin  <agustin.martin@hispalinux.es>
+
+       * textmodes/flyspell.el (ispell-kill-ispell-hook): Add to the hook when
+       loading the file rather than when turning on flyspell-mode.
+
+2006-01-13  Richard M. Stallman  <rms@gnu.org>
+
+       * font-lock.el (lisp-font-lock-keywords-1): Minor rearrangement.
+
+2006-01-16  Luc Teirlinck  <teirllm@auburn.edu>
+
+       * cus-edit.el (customize-rogue): Minor doc fix.
+
+2006-01-17  Juri Linkov  <juri@jurta.org>
+
+       * dired-aux.el (dired-diff): Use dired-dwim-target-directory
+       instead of the file at the mark as default if the file at the mark
+       is the same as the file at point or if dired-dwim-target-directory
+       is not the same as the current directory and the mark is not active.
+
+       * log-view.el (log-view-minor-wrap): Use the same logic to get
+       revisions as `log-view-diff'.
+
+       * info.el (Info-revert-find-node): Check for Info-current-file
+       before preserving new-history.
+
+       * man.el (Man-heading-regexp): Add `/'.
+
+       * textmodes/sgml-mode.el: Add `coding: iso-2022-7bit' cookie.
+       (html-mode): Set `sentence-end-base' instead of `sentence-end'.
+
+2006-01-16  Juri Linkov  <juri@jurta.org>
+
+       * faces.el (mode-line-faces): New defgroup.
+       (mode-line-highlight): Move definition after new defgroup.
+       (mode-line, mode-line-inactive, mode-line-highlight):
+       Replace :group `modeline' with `mode-line-faces'.
+       (mode-line-buffer-id): New face.
+       (modeline-buffer-id): New face alias.
+       (vertical-border): Remove :group `modeline'.
+
+       * bindings.el (propertized-buffer-identification): Use face
+       `mode-line-buffer-id' instead of `Buffer-menu-buffer'.
+       (mode-line-next-buffer, mode-line-previous-buffer): New functions.
+       (mode-line-buffer-identification-keymap): For mouse-1 replace
+       `mode-line-unbury-buffer' with `mode-line-previous-buffer'.
+       Replace `mode-line-bury-buffer' with `mode-line-next-buffer' for
+       mouse-3.
+
+       * buff-menu.el (buffer-menu-buffer) <defface>: Renamed from
+       Buffer-menu-buffer.  Doc fix.
+       (Buffer-menu-buffer): Face alias to buffer-menu-buffer.
+       (list-buffers-noselect): Use `buffer-menu-buffer' face instead of
+       `Buffer-menu-buffer'.
+
+       * info.el (Info-mode-line-node-keymap): New defvar.
+       (Info-set-mode-line): Use `stringp' to check Info-current-file.
+       Propertize Info-current-node with `mode-line-buffer-id' and
+       `mode-line-highlight' faces and `Info-mode-line-node-keymap'.
+
+       * time.el (display-time-mail-face): Replace :group `faces' with
+       `mode-line-faces'.
+
+2006-01-16  Kenichi Handa  <handa@m17n.org>
+
+       * international/code-pages.el: Add autoload cookies for cp125[0345678].
+
+       * language/european.el (cp1252): New alias for windows-1252.
+
+       * international/mule.el (autoload-coding-system): Prepare for EOL
+       variants.
+
+2006-01-15  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * term.el (term-raw-map): Add mapping for insert.
+       (term-send-insert): New.
+       (term-mode): Make variables local here instead of doing it in
+       `term-emulate-terminal'.
+       (term-emulate-terminal): Delete incorrect optimization for cr+lf.
+       Scroll reverse needs to take into account the scroll
+       region.  Saving and restoring the cursor should save the color
+       attributes too.
+       (term-reset-terminal): Reset the scroll region.
+       (term-handle-ansi-escape): Cursor up and down should take into
+       account the scroll region.
+       (term-set-scroll-region): Rename from `term-scroll-region'.
+       Move to 0,0 after setting the region.
+       (term-handle-scroll): Handle scroll up.
+       (term-down): Fix off by one error.
+       (term-delete-lines): Do not delete outside the scroll region.
+       (term-insert-lines): Take into account the scroll region.
+
+2006-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * textmodes/ispell.el (ispell-internal-change-dictionary)
+       (ispell-change-dictionary): Undo most of last change of 2006-01-13.
+       (start, end): Move declaration outside of eval-when-compile.
+
+       * textmodes/flyspell.el (flyspell-kill-ispell-hook): New fun.
+       (flyspell-mode-on): Use it.
+
+       * textmodes/ispell.el (ispell-kill-ispell): Run new hook
+       ispell-kill-ispell-hook.
+
+2006-01-14  Luc Teirlinck  <teirllm@auburn.edu>
+
+       * cus-edit.el (Custom-set, Custom-save, Custom-reset-current)
+       (Custom-reset-saved): Do not ask for confirmation in single option
+       buffers.
+
+2006-01-13  Romain Francoise  <romain@orebokech.com>
+
+       * add-log.el (add-change-log-entry, change-log-merge):
+       Conditionally use `hard-newline'.
+
+2006-01-13  Martin Rudalics  <rudalics@gmx.at>  (tiny change)
+
+       * wid-edit.el (widget-field-end): If the overlay is no longer
+       associated with a buffer, behave as if the overlay didn't exist.
+
+       * cus-edit.el (custom-add-see-also, custom-add-parent-links):
+       Make sure the links use the `custom-link' face.
+
+2006-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/ld-script.el (auto-mode-alist): Use \' rather than $.
+       (ld-script-mode): Don't set indent-line-function since we don't
+       have one.
+
+2006-01-13  Carsten Dominik  <dominik@science.uva.nl>
+
+       * textmodes/org.el (org-open-file): Use mailcap for selecting an
+       application.
+       (org-file-apps-defaults-gnu): Use mailcap as the default for
+       selecting an application on a UNIX system.
+       (org-agenda-show-tags): New command.
+       (org-table-insert-hline): Keep cursor in current table line.
+       (org-table-convert): Offset effect of modifying
+       `org-table-insert-hline'.
+       (org-format-agenda-item): New optional argument TAG.
+       (org-compile-prefix-format): Handle %T format for the tag.
+       (org-expand-wide-chars): New function.
+       (org-table-insert-row, org-table-insert-hline):
+       Use `org-expand-wide-chars'.
+       (org-open-file): Fix bug in program launch.
+       (org-get-time-of-day): Fix bug with times before 1am.
+       (org-agenda-menu): Addes tags commands.
+
+2006-01-13  Agustin Martin  <agustin.martin@hispalinux.es>
+
+       * textmodes/ispell.el (ispell-init-process): Include the used
+       dictionary in ispell process start message.
+       (ispell-internal-change-dictionary): When flyspell-mode is active
+       and dictionary is changed, make sure ispell process is restarted
+       and flyspell word cache cleared out for the current buffer.
+       (ispell-change-dictionary): Make sure flyspell word cache is
+       cleared out in all buffers with active flyspell mode when
+       dictionary is globally changed.
+       Call ispell-internal-change-dictionary after dictionary change.
+
+2006-01-13  Eli Zaretskii  <eliz@gnu.org>
+
+       * emacs-lisp/bytecomp.el (batch-byte-recompile-directory): Doc fix.
+
+       * makefile.w32-in (MH_E_SRC): Synchronize with Makefile.in.
+       (pre-mh-loaddefs.el-SH, pre-mh-loaddefs.el-CMD): Update Copyright
+       years.  Fix small differences wrt Makefile.in.
+       (recompile): Use --eval '(batch-byte-recompile-directory 0)', like
+       Makefile.in does.
+
+2006-01-12  Bill Wohler  <wohler@newt.com>
+
+       * Makefile.in (MH_E_SRC): Replace mh-index.el and mh-pick.el with
+       mh-search.el.
+
+2006-01-12  Masatake YAMATO  <jet@gyve.org>
+
+       * progmodes/ld-script.el: Update copyright year.
+
+2006-01-12  Chong Yidong  <cyd@stupidchicken.com>
+
+       * cus-theme.el (custom-theme-add-variable, custom-theme-add-face):
+       Don't add widget if setting undefined.
+
+2006-01-12  John Paul Wallington  <jpw@pobox.com>
+
+       * help-fns.el (describe-variable): Remove newlines from void
+       variable output.
+
+2006-01-13  Nick Roberts  <nickrob@snap.net.nz>
+
+       * wdired.el (wdired-mode-map): Add help echo for
+       wdired-abort-changes.
+
+       * man.el (Man-file-name-regexp): Adjust for a list of files.
+
+2006-01-12  Masatake YAMATO  <jet@gyve.org>
+
+       * progmodes/ld-script.el (auto-mode-alist): Support
+       suffix conventions used in netbsd and eCos.
+
+2006-01-11  Luc Teirlinck  <teirllm@auburn.edu>
+
+       * cus-edit.el (custom-reset-menu, custom-buffer-create-internal)
+       (custom-variable-menu, custom-face-menu, custom-group-menu)
+       (Custom-mode-menu): Change names of menu items.  (As discussed on
+       emacs-devel.)
+       (custom-face-menu): Add "Undo Edits" item.
+
+       * startup.el (init-file-user): defcustom -> defvar.
+
+       * tooltip.el (tooltip-mode): Doc fix.
+
+2006-01-11  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * reveal.el (reveal-post-command): window-buffer signals an error on
+       dead windows rather than returning nil.
+       (reveal-open-new-overlays): An overlay might die while we open others.
+
+2006-01-11  Bill Wohler  <wohler@newt.com>
+
+       * cus-dep.el (generated-custom-dependencies-file): Fix typo and
+       phrasing in docstring.
+
+       * Makefile.in (MH_E_SRC): Rename from MH-E-SRC since the dashes
+       can give some systems gas.  Add new file mh-buffers.el.
+
+2006-01-06  Masatake YAMATO  <jet@gyve.org>
+
+       * font-lock.el (cpp-font-lock-keywords): Font lock keywords for
+       C preprocessor forward ported from GNU Emacs 21.2.
+
+       * progmodes/asm-mode.el (asm-font-lock-keywords):
+       Use `cpp-font-lock-keywords'.
+
+       * progmodes/ld-script.el (ld-script-font-lock-keywords): Ditto.
+
+       * progmodes/ld-script.el (auto-mode-alist): Use \\> instead
+       of $ for "\\.ld[s]?".
+
+2006-01-10  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/tcl.el (tcl-indent-command): Use indent-for-tab-command.
+       (tcl-indent-line): Return `noindent' if inside a string.
+
+       * progmodes/flymake.el (flymake-split-string): Remove more than one
+       empty string at beg/end of the result.
+       (flymake-find-buildfile, flymake-find-possible-master-files):
+       Use expand-file-name.
+       (flymake-fix-file-name): Don't replace \ with / and don't remove ./
+       since expand-file-name does it for us.  Use directory-file-name.
+       (flymake-ler-get-full-file, flymake-ler-get-file, flymake-ler-get-line)
+       (flymake-ler-get-type, flymake-ler-get-text)
+       (flymake-ler-make-ler): Remove.  Replace by defstruct.  Update callers.
+       (flymake-current-line-no): Remove spurious interactive spec.
+       (flymake-delete-temp-directory): Remove unused var `slash-pos'.
+       (flymake-check-include): Remove arg inc-path merged into inc-name.
+       (flymake-check-patch-master-file-buffer): Fit in 80 columns.
+       Arg regexp-list replaced by a simple regexp.
+       (flymake-master-make-header-init, flymake-master-tex-init):
+       Correspondingly replace regexp-list with a regexp.  Fix regexp.
+
+2006-01-10  Simon Josefsson  <jas@extundo.com>
+
+       * mail/smtpmail.el (smtpmail-try-auth-methods): Add comment
+       describing AUTH PLAIN fix.
+
+2006-01-10  Thien-Thi Nguyen  <ttn@gnu.org>
+
+       * mail/emacsbug.el (report-emacs-bug-text-prompt): Delete var.
+       (report-emacs-bug): Don't record initial prompt text.
+       Instead, add text properties to prompting text.
+       (report-emacs-bug-hook): Delete prompting text.
+
+2006-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/flymake.el (flymake-find-buildfile): Remove invariant arg
+       `dirs'.  Adjust callers.
+
+2006-01-09  John Paul Wallington  <jpw@gnu.org>
+
+       * cus-edit.el (custom-comment) <defface>: Add TTY definitions.
+
+2006-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * reveal.el (reveal-open-new-overlays): New extracted fun.
+       (reveal-close-old-overlays): Idem.  Check overlays's liveness before
+       using them.  Simplify the code.
+       (reveal-post-command): Use them.  Fix up obsolete windows in
+       reveal-open-spots.
+
+       * progmodes/flymake.el: Use `require' rather than autoload for
+       XEmacs's overlays.
+       (flymake-get-common-file-prefix, flymake-build-relative-filename):
+       Delete.  Use file-relative-name instead.
+       (flymake-get-syntax-check-program-args, flymake-perl-init):
+       Simplify the resulting code.
+
+       * log-view.el (log-view-file-re, log-view-message-re): Add support
+       for DaRCS output.
+
+2006-01-09  Alex Schroeder  <alex@gnu.org>
+
+       * mail/rmail.el (rmail-reply-regexp): Also ignore mailing list
+       identifiers sometimes added in square brackets at the beginning of
+       subject lines.
+
+2006-01-07  Richard M. Stallman  <rms@gnu.org>
+
+       * cus-edit.el (Custom-set, Custom-save): Doc fix.
+       (Custom-reset-current, Custom-reset-saved): Change question text.
+       (Custom-reset-standard): Likewise.
+       (custom-variable-reset-saved): Doc fix.
+
+2006-01-07  Eli Zaretskii  <eliz@gnu.org>
+
+       * startup.el (init-file-user): Doc fix.
+
+2006-01-07  Alex Schroeder  <alex@gnu.org>
+
+       * mail/rmail.el (rmail-current-subject): New function.
+       (rmail-current-subject-regexp): New function.
+       (rmail-next-same-subject): Use it.
+
+       * mail/rmailsum.el (rmail-summary-by-topic):
+       Use rmail-current-subject and rmail-current-subject-regexp.
+       (rmail-summary-next-same-subject): Ditto.
+
+       * net/rcirc.el (rcirc-send-input): No longer check whether the
+       process is open, since not all commands need an open process.
+       (rcirc-send-string): Check whether the process is open before
+       sending anything.
+       (rcirc-ignore-list): New option.
+       (rcirc-ignore-list-automatic): New variable.
+       (rcirc-print): Take rcirc-ignore-list into account.
+       (rcirc-cmd-ignore): New command.
+       (rcirc-ignore-update-automatic): New function.
+       (rcirc-handler-PART, rcirc-handler-QUIT): Use it to maintain the
+       list if ignored nicks.
+       (rcirc-handler-NICK): Ditto, and also ignore the new nick.
+
+2006-01-06  David Reitter  <david.reitter@gmail.com>
+
+       * mail/emacsbug.el (report-emacs-bug): Let explanations correctly
+       reflect the address to which the report will be sent.
+
+2006-01-06  Eli Zaretskii  <eliz@gnu.org>
+
+       * progmodes/ld-script.el (auto-mode-alist): Recognize linker
+       scripts whose file-name extensions are "\.x[bdsru]?[cn]?$".
+
+2006-01-01  Michael Ernst  <mernst@alum.mit.edu>  (tiny changes)
+
+       * textmodes/tildify.el: Fix typos (misspellings) in the commentary.
+
+       * emacs-lisp/find-func.el (find-definition-noselect): Fix typo in
+       the doc string: "functoin" => "function".
+       ldefs-boot.el: Likewise.
+
+       * textmodes/bibtex.el (bibtex-validate-globally): Fix typo in a
+       message text: "Duplicat" => "Duplicate".
+
+2006-01-06  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
+
+       * files.el (basic-save-buffer-2): If backing-up failed, reset
+       buffer-backed-up to nil.
+
+2006-01-06  Nick Roberts  <nickrob@snap.net.nz>
+
+       * progmodes/gud.el (gdb-script-skip-to-head)
+       (gdb-script-calculate-indentation): Indent for breakpoint command
+       lists also.
+
+2006-01-05  Bill Wohler  <wohler@newt.com>
+
+       * Makefile.in (compile-always): Add mh-autoloads dependency.
+       (bootstrap): Remove mh-autoloads dependency, as compile dependency
+       provides it.
+       (updates): Remove mh-autoloads dependency, since it probably has
+       already run recently (via recompile).
+
+2006-01-05  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * textmodes/flyspell.el (flyspell-accept-buffer-local-defs): Add an
+       argument `force' to disable the flyspell-last-buffer optimization.
+       (flyspell-mode-on): Use it.
+
+       * progmodes/flymake.el (flymake-get-cleanup-function): Default to
+       flymake-simple-cleanup.
+       (flymake-allowed-file-name-masks): Use this new default.
+       All the functions are now called in the right buffer rather than
+       passing the buffer as argument.
+       (flymake-process-sentinel): Switch to buffer before calling cleanup.
+       (flymake-parse-err-lines): Remove redundant buffer arg.
+       (flymake-get-program-dir): Comment out unused function.
+       (flymake-start-syntax-check, flymake-start-syntax-check-process):
+       Remove redundant buffer argument.
+       (flymake-get-real-file-name, flymake-simple-java-cleanup)
+       (flymake-simple-cleanup, flymake-master-cleanup): Remove buffer arg.
+
+2006-01-05  Richard M. Stallman  <rms@gnu.org>
+
+       * info.el (Info-find-node): Don't record previous node if have none.
+       (info): Go to directory only if history is empty.
+
+       * simple.el (mark): Doc fix.
+
+2006-01-05  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
+
+       * term/mac-win.el (mac-ae-parameter): Don't coerce data if it is
+       already of desired type.
+       (mac-ae-list): Coerce parameter to "list" type.
+       (mac-dispatch-apple-event): Replace cadr part of event with a
+       dummy position so that event-start returns it.
+
+2006-01-05  Carsten Dominik  <dominik@science.uva.nl>
+
+       * textmodes/org.el (org-end-of-subtree): New function.
+       (org-cycle, org-subtree-end-visible-p, org-scan-tags):
+       Use `org-end-of-subtree'.
+       (org-agenda, org-agenda-convert-date): Protect calls to
+       `fit-window-to-buffer'.
+       (org-tags-view): Force matching of sublevels when doing a
+       todo-only search.  Define the correct redo command, including the
+       arguments.
+       (org-agenda-redo): Display message.
+       (org-check-for-org-mode): New function.
+       (org-agenda-type): New variable.
+       (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
+       Set `org-agenda-type'.
+       (org-agenda-check-type): New function.
+       (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
+       (org-agenda-week-view, org-agenda-day-view)
+       (org-agenda-next-date-line, org-agenda-previous-date-line)
+       (org-agenda-log-mode, org-agenda-toggle-diary)
+       (org-agenda-toggle-time-grid, org-agenda-date-later)
+       (org-agenda-date-prompt, org-agenda-diary-entry)
+       (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
+       (org-agenda-convert-date, org-agenda-menu):
+       Use `org-agenda-check-type'.
+       (org-make-overlay, org-delete-overlay)
+       (org-detatch-overlay, org-move-overlay, org-overlay-put):
+       New compatibility functions.
+       (org-calendar-select-mouse): New command.
+
+2006-01-04  Chong Yidong  <cyd@stupidchicken.com>
+
+       * cus-edit.el (Custom-reset-current, Custom-reset-saved)
+       (Custom-reset-standard): Fix y-or-n-p messages.
+       (custom-link): New face for links.
+       (custom-buffer-create-internal, custom-manual): Use it.
+       (custom-face-save): Push to theme-face before setting face spec.
+
+       * wid-edit.el (widget-default-mouse-face-get): New function.
+       (widget-specify-button): Handle mouse-face like button-face.
+
+       * custom.el (load-theme): Clear old theme settings if reloading.
+
+2006-01-03  Luc Teirlinck  <teirllm@auburn.edu>
+
+       * cus-edit.el (custom-buffer-create-internal): Move whole buffer
+       "Erase Customization" button back to same position it occupies in
+       the individual State menus.
+
+2006-01-04  Kim F. Storm  <storm@cua.dk>
+
+       * wid-edit.el (key-sequence): Rework widget to read key binding
+       using `kbd' syntax.  Use C-q to insert literal key, event, or code.
+       (widget-key-sequence-default-value): Default value for empty sequence.
+       (widget-key-sequence-map): New map for reading key binding.  Bind C-q.
+       (widget-key-sequence-read-event): New command for C-q.
+       (widget-key-sequence-validate, widget-key-sequence-value-to-internal)
+       (widget-key-sequence-value-to-external): New functions.
+
+2006-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/flymake.el (flymake-create-temp-with-folder-structure):
+       Use expand-file-name.
+       (flymake-delete-temp-directory): Use expand-file-name,
+       file-name-directory, and directory-file-name.
+       (flymake-strrchr): Delete.
+       (flymake-start-syntax-check): Don't pass the redundant buffer argument
+       to the init-f function.
+       (flymake-save-buffer-in-file, flymake-init-create-temp-buffer-copy)
+       (flymake-init-find-buildfile-dir)
+       (flymake-init-create-temp-source-and-master-buffer-copy)
+       (flymake-simple-make-init-impl, flymake-simple-make-init)
+       (flymake-master-make-init, flymake-master-make-header-init)
+       (flymake-simple-make-java-init, flymake-simple-ant-java-init)
+       (flymake-perl-init, flymake-simple-tex-init, flymake-master-tex-init)
+       (flymake-xml-init): Remove corresponding redundant buffer argument.
+       (flymake-allowed-file-name-masks): Remove last elems that are equal to
+       the default anyway.  Clean up regexps.
+
+       * progmodes/flymake.el (flymake-temp-source-file-name)
+       (flymake-master-file-name, flymake-temp-master-file-name)
+       (flymake-base-dir): New buffer-local vars.
+       (flymake-buffer-data, flymake-get-buffer-value)
+       (flymake-set-buffer-value): Replace those hash-tables by the new
+       buffer-local vars.  Update callers.
+
+       * progmodes/flymake.el (flymake-check-start-time)
+       (flymake-check-was-interrupted, flymake-err-info, flymake-is-running)
+       (flymake-last-change-time, flymake-new-err-info, flymake-timer):
+       Move definition, so we can remove redundant earlier declaration.
+       (flymake-replace-regexp-in-string, flymake-split-string)
+       (flymake-get-temp-dir): Use defalias.
+       (flymake-popup-menu): Remove `pos' argument.  Use posn-at-point.
+       (flymake-xemacs-window-edges): Remove unused function.
+       (flymake-get-point-pixel-pos): Move.
+       (flymake-pid-to-names, flymake-reg-names)
+       (flymake-get-source-buffer-name, flymake-unreg-names): Remove.
+       Replace by a simple list flymake-processes and by process-buffer.
+       Update callers.  Other than simplify the code, it uses buffers rather
+       than buffer-names so it doesn't get confused by uniquify.
+       (flymake-buffer-data): The global value should just be nil.
+
+       * emacs-lisp/bytecomp.el (byte-compile-file-form-defalias):
+       Optimize the body of a defalias like any other code.
+
+       * font-lock.el (font-lock-fontify-buffer, font-lock-fontify-region):
+       Make sure we've setup font-lock's vars.  It may influence which
+       function we then call.
+       (font-lock-default-fontify-buffer): Don't bother calling set-defaults
+       here since it's too late anyway.
+
+2006-01-03  Romain Francoise  <romain@orebokech.com>
+
+       * startup.el (fancy-splash-tail, normal-splash-screen):
+       Update copyright year.
+
+2006-01-02  J.D. Smith  <jdsmith@as.arizona.edu>
+
+       * mouse.el (mouse-drag-track): Rename, from
+       `mouse-drag-region-1'.  Includes optional argument required to
+       enable post-drag event processing (e.g. delete region keys).
+       Can be used without this argument to track a mouse region and operate
+       on it as soon as the drag completes.
+       (mouse-drag-region): Use `mouse-drag-track'.
+
+2006-01-02  Chong Yidong  <cyd@stupidchicken.com>
+
+       * cus-edit.el (custom-guess-name-alist, custom-guess-doc-alist):
+       Move to `custom-buffer' group.
+
+       * cus-theme.el: Rewrite the Custom New Theme Mode interface.
+       (custom-new-theme-mode-map, custom-theme-insert-variable-marker)
+       (custom-theme-insert-face-marker, custom-theme-variable-menu)
+       (custom-theme-face-menu): New variables.
+       (custom-theme-add-variable, custom-theme-variable-action)
+       (custom-variable-reset-theme, custom-theme-delete-variable)
+       (custom-face-reset-theme, custom-theme-face-action)
+       (custom-theme-delete-face, custom-theme-merge-theme)
+       (custom-theme-add-face, custom-theme-visit-theme): New functions.
+
+2006-01-01  Chong Yidong  <cyd@stupidchicken.com>
+
+       * custom.el: Move Custom Themes commentary to start of theme code.
+       (custom-known-themes): Rename `standard' theme to `changed'.
+       (custom-push-theme): Caller no longer specifies what theme to use
+       when doing `reset'---the setting is simply removed from the theme.
+       Delete MODE from `theme-value' and `theme-settings' properties.
+       (custom-declare-theme): Ignore &rest args since we don't use them.
+
+       (custom-loaded-themes): Delete variable.
+       (custom-theme-load-themes, custom-theme-loaded-p)
+       (custom-theme-value): Delete functions.
+
+       (custom-declare-theme): Signal error on invalid theme names.
+       (provide-theme): custom-loaded-themes was deleted.
+       (load-theme): Load the file unconditionally.
+       (enable-theme): Call `load-theme' if theme is undefined.
+       (custom-enabled-themes): Only update value for successful loads.
+       (disable-theme): Complete from enabled themes when interactive.
+       (custom-variable-theme-value): Calculate theme value directly.
+
+       (custom-theme-reset-variables, custom-reset-variables): Mark as
+       XEmacs compatibility functions.  We don't actually use these.
+
+       * cus-edit.el (custom-variable-state-set):
+       Use custom-variable-theme-value instead of custom-theme-value.
+       (custom-face-state-set): Rename `standard' theme to `changed'.
+       (custom-save-variables, custom-save-faces): Delete unneeded
+       references to custom-reset-variables.
+       (custom-save-resets): Delete function.
+       (custom-save-variables, custom-save-faces): MODE argument deleted.
+       (custom-save-variables, custom-save-faces): Ignore theme values.
+
+       * cus-face.el (custom-theme-reset-faces): Mark as XEmacs
+       compatibility function.
+
+2006-01-01  Richard M. Stallman  <rms@gnu.org>
+
+       * cus-edit.el (Custom-set, Custom-save): Ask for confirmation.
+       (Custom-reset-current, Custom-reset-saved): Likewise.
+       (Custom-reset-standard): Show message if aborted.
+       (custom-mode): Doc fix, describing those commands.
+
+       * mouse.el (mouse-drag-region-1): When following link via mouse-2,
+       put on event-kind property.
+
+2005-12-31  Chong Yidong  <cyd@stupidchicken.com>
+
+       * custom.el (provide-theme): Ban `user' theme name.
+       (custom-enabling-themes): New variable.
+       (enable-theme): Don't enable user if custom-enabling-themes is t.
+       (custom-enabled-themes): Make it a defcustom.
+       (custom-theme-recalc-face): No-op if face is undefined.
+
+       * cus-edit.el (custom-button-mouse): New variable.
+       (custom-button-mouse): New face.
+       (custom-raised-buttons, custom-mode): Use it.
+
+       * cus-theme.el (custom-new-theme-mode): Use custom-button-mouse.
+
+2005-12-31  Eli Zaretskii  <eliz@gnu.org>
+
+       * progmodes/gud.el (gud-display-line): Support hl-line in the
+       source buffer.
+
+2005-12-31  Lennart Borgman  <lennart.borgman.073@student.lu.se>  (tiny change)
+
+       * mouse.el (mouse-drag-window-above): Verify that the found window
+       overlaps with the given window in the horizontal dimension.
+
+2005-12-31  Eli Zaretskii  <eliz@gnu.org>
+
+       * Makefile.in (cvs-update): New target.
+
+       * makefile.w32-in (cvs-update): Ditto.
+
+2005-12-30  Chong Yidong  <cyd@stupidchicken.com>
+
+       * cus-theme.el (custom-new-theme-mode): Use cus-edit faces.
+       (custom-new-theme-mode-map): New variable.
+
+2005-12-30  Richard M. Stallman  <rms@gnu.org>
+
+       * custom.el (custom-load-themes): Function deleted.
+
+       * cus-edit.el (custom-save-loaded-themes): Function deleted.
+       (custom-save-variables): Don't delete or add custom-load-themes call.
+
+2005-12-30  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * cus-start.el: Add `visible-cursor'.
+
+       * progmodes/flymake.el (flymake-copy-buffer-to-temp-buffer): Simplify.
+       (flymake-parse-output-and-residual): Remove `source-buffer' argument.
+       (flymake-process-filter): Switch to buffer before calling it instead.
+       (flymake-post-syntax-check, flymake-highlight-err-lines)
+       (flymake-delete-own-overlays, flymake-parse-err-lines)
+       (flymake-start-syntax-check, flymake-start-syntax-check-process)
+       (flymake-count-lines, flymake-parse-residual):
+       Remove constant buffer argument.
+       (flymake-start-syntax-check-for-current-buffer): Remove.
+       Update callers to use flymake-start-syntax-check instead.
+       (flymake-display-err-menu-for-current-line):
+       Remove unused var `mouse-pos'.
+       (flymake-restore-formatting): Comment out unused function.
+       (flymake-report-status, flymake-report-fatal-status): Remove buffer
+       argument, use current-buffer instead.  Update callers.
+
+2005-12-30  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
+
+       * textmodes/bibtex.el (bibtex-mode): Make completion-ignore-case
+       buffer-local because choose-completion-delete-max-match requires
+       that we set completion-ignore-case (i.e., binding via let is not
+       sufficient).
+       (bibtex-complete): Always set completion-ignore-case and
+       choose-completion-string-functions. The latter is needed because
+       choose-completion-string-functions keeps its value if we quit the
+       *Completions* buffer without requesting a completion.
+
 2005-12-30  Andreas Schwab  <schwab@suse.de>
 
-       * progmodes/cc-defs.el: Ignore errors from
-       font-lock-compile-keywords.
+       * progmodes/cc-defs.el: Ignore errors from font-lock-compile-keywords.
 
 2005-12-30  Eli Zaretskii  <eliz@gnu.org>
 
 
 2005-12-20  Carsten Dominik  <dominik@science.uva.nl>
 
-       * textmodes/org.el: (org-agenda-custom-commands): New option.
+       * textmodes/org.el (org-agenda-custom-commands): New option.
        (org-agenda): Offer custom commands on splash screen.
        (org-make-tags-matcher): Parser for Boolean logic added.
        (org-agenda-set-tags): New command.
 
 2005-12-16  Carsten Dominik  <dominik@science.uva.nl>
 
-       * textmodes/org.el: (org-tags-match-list-sublevels): New option.
+       * textmodes/org.el (org-tags-match-list-sublevels): New option.
        (org-open-at-point): Implement tag searches as links.
        (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
        (org-make-tags-matcher, org-scan-tags, org-activate-tags): New funs.
 
 2005-12-12  Carsten Dominik  <dominik@science.uva.nl>
 
-       * textmodes/org.el: (org-agenda, org-timeline, org-todo):
+       * textmodes/org.el (org-agenda, org-timeline, org-todo):
        Implement Logging and the keep-modes setting.
        (org-get-category): Make sure a string is returned.
        (org-log-done): New function.