* vc.el (vc-status-add-entry): Assume ENTRY is a list not a cons.
[bpt/emacs.git] / lisp / ChangeLog
index 1664671..11848ff 100644 (file)
-2008-03-23  Chong Yidong  <cyd@stupidchicken.com>
+2008-03-31  Dan Nicolaescu  <dann@ics.uci.edu>
 
-       * simple.el (transient-mark-mode): Turn on by default.
+       * vc.el (vc-status-add-entry): Assume ENTRY is a list not a cons.
+       (vc-status-mark-buffer-changed): Handle the extra field.
+
+       * vc-bzr.el (vc-bzr-after-dir-status):
+       * vc-cvs.el (vc-cvs-after-dir-status):
+       * vc-hg.el (vc-hg-after-dir-status):
+       * vc-svn.el (vc-svn-after-dir-status): Return a list not a cons.
+
+2008-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * doc-view.el: Compute displayed pages first (in PDF).
+       (doc-view-current-converter-processes): Rename from
+       doc-view-current-converter-process.  Update users.
+       (doc-view-sentinel): Test buffer's liveness.
+       (doc-view-pdf/ps->png-sentinel): Remove.
+       (doc-view-start-process): New function.
+       (doc-view-dvi->pdf, doc-view-pdf/ps->png, doc-view-pdf->txt)
+       (doc-view-ps->pdf): Use it.
+       (doc-view-pdf->png-1, doc-view-pdf->png, doc-view-active-pages):
+       New functions.
+       (doc-view-convert-current-doc, doc-view-goto-page): Use them.
+       (doc-view-mode): Kill the processes when leaving the mode.
+
+2008-03-31  Juanma Barranquero  <lekktu@gmail.com>
+
+       * emacs-lisp/bytecomp.el (byte-compile-warnings-safe-p):
+       Use `byte-compile-warning-types'.  Add docstring.
+
+2008-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * smerge-mode.el (smerge-apply-resolution-patch): New fun.
+       (smerge-resolve): Add various resolution heuristics.
+
+       * smerge-mode.el (smerge-refine): Allow highlighting other subparts
+       in 3-way conflicts.
+
+2008-03-31  Glenn Morris  <rgm@gnu.org>
+
+       * calendar/cal-bahai.el (calendar-bahai-date-string): Avoid an error for
+       pre-Bahai dates.
+
+       * calendar/cal-china.el (holiday-chinese-new-year): Doc fix.
+
+       * calendar/cal-julian.el (holiday-julian): Fix a problem with holidays
+       in the last fortnight in Julian October.
+
+       * calendar/calendar.el (increment-calendar-month): Doc fix.
+       (calendar-date-is-visible-p): Doc fix.  Simplify.
+
+       * calendar/holidays.el (holiday-filter-visible-calendar): Return result
+       from dolist.
+
+2008-03-30  Juanma Barranquero  <lekktu@gmail.com>
+
+       * hi-lock.el (hi-lock-mode): Fix typos in docstring.
+       (hi-lock-unload-function): New function.
+
+2008-03-30  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp.el (tramp-do-copy-or-rename-file): Fix check for
+       overwriting when NEWNAME is a local file.
+
+       * net/trampver.el: Update release number.
+
+2008-03-30  Alexandre Julliard  <julliard@winehq.org>
+
+       * vc-git.el: Make vc-status display information about copies,
+       renames and permission changes.
+       (vc-git-extra-fileinfo): New defstruct.
+       (vc-git-escape-file-name, vc-git-file-type-as-string)
+       (vc-git-rename-as-string, vc-git-permissions-as-string)
+       (vc-git-status-printer): New functions.
+       (vc-git-after-dir-status-stage2): Also return vc-git-extra-fileinfo.
+       (vc-git-after-dir-status-stage1): Look for copies, renames and
+       permission changes.
+       (vc-git-after-dir-status-stage1-empty-db): Set permissions.
+       (vc-git-dir-status): Ask for staged files and renames.
+
+2008-03-30  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc.el: Allow backends to display backend specific information in
+       the vc-status listing.
+       (vc-status-fileinfo): Add a field for backend specific information.
+       (vc-status-printer): Rename to ...
+       (vc-default-status-printer): ... this.
+       (vc-status-printer): New function.
+       (vc-update-vc-status-buffer): Set the backend specific file info
+       if provided.
+
+2008-03-30  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * textmodes/remember.el (remember-diary-convert-entry): Revert last
+       change (ill-conceived).
+
+2008-03-29  Glenn Morris  <rgm@gnu.org>
+
+       * calendar/cal-hebrew.el (holiday-hebrew): Simplify.
+       * calendar/cal-julian.el (holiday-julian): Simplify.
+
+       * calendar/holidays.el (list-holidays): Use or.
+
+2008-03-29  Juri Linkov  <juri@jurta.org>
+
+       * window.el (split-window-preferred-horizontally): New function.
+
+       * cus-start.el (split-window-preferred-function):
+       Set choice for "vertically" to nil instead of split-window.
+       Set choice for "horizontally" to split-window-preferred-horizontally
+       instead of lambda.
+
+2008-03-29  Juri Linkov  <juri@jurta.org>
+
+       * simple.el (minibuffer-default-add-function): New variable with
+       the default to minibuffer-default-add-completions.
+       (minibuffer-default-add-done): New variable.  Make it buffer-local.
+       (minibuffer-default-add-completions): New function.
+       (goto-history-element): Set minibuffer-default-add-done to t and
+       call a function in minibuffer-default-add-function when the
+       specified absolute history position is greater than the length of
+       the minibuffer-default list and minibuffer-default-add-done is nil.
+       Change "^End of history; no next item$" to "^End of defaults;
+       no next item$".
+
+       * bindings.el (debug-ignored-errors): Change "^End of history;
+       no next item$" to "^End of defaults; no next item$".
+
+2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * subr.el (with-temp-buffer): Assume kill-buffer can change cur-buf.
+
+       * textmodes/remember.el (remember-diary-convert-entry): Prefer boundp
+       to with-no-warnings.
+
+2008-03-29  Michael Albinus  <michael.albinus@gmx.de>
+
+       Sync with Tramp 2.1.13.
+
+       * net/tramp-ftp.el: Require 'cl when byte-compiling.
+
+       * net/trampver.el: Update release number.
+
+2008-03-29  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc-hooks.el (vc-menu-map-filter): Be more careful when finding
+       the current backend.
+
+       * vc.el (vc-status-menu-map, vc-status-mode-map): Bind vc-revert.
+       (vc-status-refresh): Create a temporary buffer and call the
+       `dir-status' backend function from that buffer.
+
+       * vc-bzr.el (vc-bzr-dir-status): Don't create a buffer.
+       (vc-bzr-after-dir-status): Don't kill the buffer.
+
+       * vc-cvs.el (vc-cvs-dir-status): Don't create a buffer.
+       (vc-cvs-after-dir-status): Don't kill the buffer.
+
+       * vc-git.el (vc-git-dir-status): Don't create a buffer.
+       (vc-git-after-dir-status-stage2): Don't kill the buffer.
+
+       * vc-hg.el (vc-hg-dir-status): Don't create a buffer.
+       (vc-hg-after-dir-status): Don't kill the buffer.
+
+       * vc-svn.el (vc-svn-dir-status): Don't create a buffer.
+       (vc-svn-after-dir-status): Don't kill the buffer.
+
+2008-03-29  Glenn Morris  <rgm@gnu.org>
+
+       * calendar/calendar.el (diary-file, american-date-diary-pattern)
+       (european-date-diary-pattern, european-calendar-display-form)
+       (american-calendar-display-form, diary-display-hook): Doc fixes.
+       (european-calendar-style): Doc fix.  Use calendar-set-date-style for
+       custom :set.  Mark as obsolete.
+       (calendar-date-style, iso-date-diary-pattern)
+       (iso-calendar-display-form): New user variables.
+       (diary-date-forms, calendar-date-display-form): Set using
+       calendar-date-style.  Doc fix.
+       (calendar-set-date-style): New command.
+       (european-calendar, american-calendar): Use calendar-set-date-style.
+       Mark as obsolete.
+
+       * calendar/diary-lib.el (number): Move declaration where needed.
+       (diary-mail-entries, list-sexp-diary-entries): Doc fixes.
+       (diary-make-date): New function.
+       (diary-date, diary-block, diary-anniversary, diary-cyclic): Doc fix.
+       Use diary-make-date.
+       (diary-date-display-form, diary-insert-entry-1): New functions.
+       (insert-monthly-diary-entry, insert-yearly-diary-entry):
+       Use diary-insert-entry-1.
+       (insert-anniversary-diary-entry, insert-block-diary-entry)
+       (insert-cyclic-diary-entry): Use diary-date-display-form.
+
+       * calendar/cal-bahai.el, calendar/cal-hebrew.el, calendar/cal-islam.el:
+       Autoload diary-insert-entry-1.
+       * calendar/cal-bahai.el (diary-bahai-insert-entry)
+       (diary-bahai-insert-monthly-entry, diary-bahai-insert-yearly-entry):
+       * calendar/cal-hebrew.el (insert-hebrew-diary-entry)
+       (insert-monthly-hebrew-diary-entry, insert-yearly-hebrew-diary-entry)
+       * calendar/cal-islam.el (insert-islamic-diary-entry)
+       (insert-monthly-islamic-diary-entry, insert-yearly-islamic-diary-entry):
+       Use diary-insert-entry-1.
+
+       * calendar/cal-hebrew.el (diary-make-date): Autoload it.
+       (diary-yahrzeit): Doc fix.  Use diary-make-date.
+
+       * calendar/icalendar.el (icalendar--datetime-to-american-date):
+       New name for icalendar--datetime-to-noneuropean-date.  Make old name
+       obsolete alias.
+       (icalendar--datetime-to-iso-date): New function.
+       (icalendar--datetime-to-diary-date): Doc fix.  Respect
+       calendar-date-style if bound.
+
+       * textmodes/remember.el (remember-diary-convert-entry):
+       Respect calendar-date-style if bound.
+
+2008-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * xt-mouse.el (xterm-mouse-mode): Use delete-terminal-functions.
+       (xterm-mouse-handle-delete-frame): Delete.
+
+       * term/xterm.el (terminal-init-xterm): Use delete-terminal-functions.
+       (xterm-turn-on-modify-other-keys, xterm-turn-off-modify-other-keys)
+       (xterm-remove-modify-other-keys): Lookup terminal rather than frame
+       in xterm-modify-other-keys-terminal-list.
+
+       * vc-bzr.el (vc-bzr-state-heuristic): Fix last change for when there
+       are conflicts.
+
+2008-03-29  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc.el (vc-update): Check if the buffer is unsaved only if it
+       actually exists.
+       (vc-status-mode-map, vc-status-menu-map): Bind vc-update and
+       vc-print-log.
+
+2008-03-28  Magnus Henoch  <mange@freemail.hu>
+
+       * net/dns.el (dns-write): Use set-buffer-multibyte.
+
+2008-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * vc-bzr.el (vc-bzr-sha1): New fun.
+       (vc-bzr-state-heuristic): New fun, extracted from vc-bzr-registered.
+       (vc-bzr-registered): Use it.
+
+2008-03-28  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc.el (vc-status-kill-dir-status-process): Simplify.
+       (vc-status-refresh): Make sure the buffer is live.
+       (ring): Don't require it, not used.
+
+2008-03-28  Wilson Snyder  <wsnyder@wsnyder.org>
+
+       * progmodes/verilog-mode.el (verilog-auto-inout-module):
+       Add optional regular expression to AUTOINOUTMODULE.
+       (verilog-inject-auto, verilog-auto-arg, verilog-auto-inst)
+       (verilog-auto-inst-param, verilog-auto-reg)
+       (verilog-auto-reg-input, verilog-auto-wire, verilog-auto-output)
+       (verilog-auto-output-every, verilog-auto-input)
+       (verilog-auto-inout, verilog-auto-sense, verilog-auto-tieoff)
+       (verilog-auto-unused, verilog-auto): Update documentation to use
+       more obvious instance module names versus cell names.
+
+2008-03-28  Jan Djärv  <jan.h.d@swipnet.se>
+
+       * progmodes/compile.el (compilation-mode-tool-bar-map): Only enable
+       kill if a process is running.
+
+       * progmodes/grep.el (grep-mode-tool-bar-map): The same.
+
+2008-03-28  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc.el: Add new backend function 'status-extra-headers.
+       (vc-default-status-extra-headers): New function.
+       (vc-status-headers): Call 'status-extra-headers.  Add colors.
+
+       * vc-git.el (vc-git-status-extra-headers): New function.
+
+2008-03-28  Glenn Morris  <rgm@gnu.org>
+
+       * calendar/cal-menu.el (cal-menu-holidays-menu)
+       (cal-menu-list-holidays-year, cal-menu-list-holidays-following-year)
+       (cal-menu-list-holidays-previous-year): Simplify now that 2nd arg of
+       holiday-list is optional.
+       (calendar-mouse-holidays): Remove un-needed local `l'.
+
+       * calendar/cal-move.el (calendar-cursor-to-nearest-date):
+       Remove un-needed local `date'.
+       (calendar-cursor-to-visible-date): Use let rather than let*.
+       Remove un-needed local `first-of-month-weekday'.
+
+       * calendar/calendar.el (abbreviated-calendar-year): Move to diary-lib.
+
+       * calendar/diary-lib.el (print-diary-entries-hook, diary-list-entries):
+       Doc fixes.
+       (abbreviated-calendar-year): Move here from calendar.el.  Doc fix.
+       (diary-header-line-flag, diary-header-line-format): Declare.
+       (diary-pull-attrs): Check for multiple matches.
+       (diary-list-entries-2): Simplify finding start of date.
+       (diary-show-all-entries, make-diary-entry): Respect non-nil values of
+       pop-up-frames.
+       (diary-mark-entries-1): Re-use offset in abbreviated-year case.
+       (mark-sexp-diary-entries): Remove superfluous call to diary-pull-attrs.
+
+2008-03-27  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc-hg.el (vc-hg-state, vc-hg-dir-state): Deal with 'missing files.
+
+       * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Fix predicate.
+
+2008-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * vc-hooks.el (vc-before-save): Don't prevent saving the file.
+
+       * image-mode.el (image-mode-reapply-winprops): Fix last change.
+
+2008-03-27  Kenichi Handa  <handa@ni.aist.go.jp>
+
+       * international/mule-conf.el (define-iso-single-byte-charset):
+       Don't make latin-iso8859-* supplementary.
+       (#'set-charset-priority): Don't change the priority of charsets
+       `unicode' and `emacs'.
+
+2008-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * vc.el (vc-do-command): Don't pop to the buffer if it's an internal
+       temp buffer.
+
+2008-03-27  Glenn Morris  <rgm@gnu.org>
+
+       * calendar/cal-bahai.el (diary-bahai-list-entries):
+       * calendar/cal-hebrew.el (list-hebrew-diary-entries):
+       * calendar/cal-islam.el (list-islamic-diary-entries): Doc fix.
+
+       * calendar/calendar.el (diary-file): Doc fix.
+
+       * calendar/diary-lib.el (diary-face-attrs): Fix `height' regexp.
+       (list-diary-entries-hook, mark-diary-entries-hook)
+       (include-other-diary-files, diary-mail-entries)
+       (mark-included-diary-files, list-sexp-diary-entries): Doc fixes.
+       (diary-set-header): New function.
+       (diary-header-line-flag, diary-header-line-format):
+       Use diary-set-header for custom :set function.
+       (diary-set-maybe-redraw): Use symbol-value rather than eval.
+       (diary-attrtype-convert): Use intern-soft rather than read.
+       (diary-display-no-entries): New function.
+       (simple-diary-display, fancy-diary-display): Use it.
+       (fancy-diary-display): Doc fix.  Remove unneeded local entry-list.
+       (diary-mark-entries-1): Fix position offsets in non-gregorian case.
+
+       * calendar/holidays.el (list-holidays): Doc fix.
+
+2008-03-26  Jay Belanger  <jay.p.belanger@gmail.com>
+
+       * calc/calc-store.el (calc-read-var-name-history): New variable.
+       (calc-read-var-name): Use `calc-read-var-name-history'.
+
+2008-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * image-mode.el (image-mode-reapply-winprops): Simplify now that
+       window-configuration-change-hook works buffer-locally.
+
+2008-03-26  Johan Bockgård  <bojohan@gnu.org>
+
+       * emacs-lisp/lisp-mnt.el (lm-with-file): Use mode and syntax table
+       for Emacs Lisp, not Lisp.
+
+2008-03-26  Juanma Barranquero  <lekktu@gmail.com>
+
+       * help-fns.el (describe-function-1, describe-variable):
+       If CURRENT-NAME is nil, don't end obsolescence info with semicolon.
+
+       * emacs-lisp/bytecomp.el (byte-compile-obsolete): If no
+       replacement is provided, don't print "use nil instead".
+
+2008-03-26  Johan Bockgård  <bojohan@gnu.org>
+
+       * complete.el (PC-do-completion): Use regexp-quote.
+
+2008-03-26  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc-cvs.el (vc-cvs-parse-status, vc-cvs-after-dir-status):
+       Detect missing files.
+
+       * vc-git.el (vc-git-extra-menu-map): New key map.
+       (vc-git-extra-menu, vc-git-extra-status-menu, vc-git-grep):
+       New functions.
+
+       * vc-hooks.el (vc-default-mode-line-string): Deal with 'removed
+       and 'missing files.
+
+2008-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * calendar/holidays.el (list-holidays): Make Y2 optional.
+
+       * calendar/appt.el (appt-buffer-name): Don't use a leading space for
+       buffers shown to the user.
+       (appt-disp-window): Disable undo explicitly now that the leading space
+       is gone.
+
+       * simple.el (activate-mark): New function.
+       (set-mark-command): Use it with region-active-p to clean up the code.
+       (exchange-point-and-mark): Invert the meaning of C-u when
+       transient-mark-mode is active.
+
+       * dired-aux.el (dired-create-files): Use dolist.
+
+       * bindings.el (mode-line-change-eol): Use with-selected-window.
+
+       * apropos.el (apropos-command): Include macros.
+
+2008-03-26  Glenn Morris  <rgm@gnu.org>
+
+       * calendar/cal-bahai.el: Require calendar, not cal-julian.
+       (calendar-bahai-epoch): Doc fix.
+
+       * calendar/cal-china.el: Explicitly require calendar.
+
+       * calendar/cal-coptic.el, calendar/cal-islam.el, calendar/cal-persia.el:
+       Require calendar rather than cal-julian.
+       Autoload calendar-absolute-from-julian.
+       * calendar/cal-coptic.el (coptic-calendar-epoch):
+       * calendar/cal-islam.el (calendar-islamic-epoch):
+       * calendar/cal-persia.el (persian-calendar-epoch): Set when compiling.
+
+       * calendar/cal-islam.el (calendar-islamic-epoch): Doc fix.
+
+       * calendar/cal-dst.el: Don't require cal-persia.
+       (calendar-absolute-from-persian): Autoload it.
+       (dst-adjust-time): Doc fix.
+
+       * calendar/cal-menu.el (cal-menu-diary-menu): Remove menu headings that
+       cause cal-bahai, cal-islam, cal-hebrew to be loaded on starting the
+       calendar.
+
+       * calendar/cal-menu.el: Require calendar rather than declaring
+       functions.
+       * calendar/calendar.el: Provide calendar before requiring cal-menu.
+
+       * calendar/cal-x.el (calendar-after-frame-setup-hook): New name for
+       calendar-after-frame-setup-hooks.  Update callers, make old name an
+       obsolete alias.  Doc fix.
+       (calendar-frame-1): Doc fix.
+
+       * calendar/calendar.el (solar-holidays): Simplify holiday-sexp calls.
+
+       * calendar/calendar.el (oriental-holidays, solar-holidays):
+       * calendar/holidays.el (list-holidays): Assume atan always bound.
+
+       * calendar/lunar.el, calendar/solar.el: Remove floating-point check.
+       Explicitly require calendar, not cal-julian.
+       * calendar/lunar.el: Explicitly require cal-dst.
+
+2008-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * autorevert.el (auto-revert-buffers): Use buffer-live-p.
+
+       * help-fns.el (describe-function-1, describe-variable): If no
+       replacement is provided, don't print "use nil instead".
+
+2008-03-25  Roland Winkler  <Roland.Winkler@physik.uni-erlangen.de>
+
+       * proced.el: New file.
+
+2008-03-25  Tetsurou Okazaki  <okazaki@be.to>  (tiny change)
+
+       * emacs-lisp/byte-opt.el (side-effect-free-fns): Fix typo.
+
+2008-03-25  Juri Linkov  <juri@jurta.org>
+
+       * battery.el: Add file cookie coding:iso-8859-1 for the degree sign
+       in battery-mode-line-format.
+
+       * bindings.el (minibuffer-local-map): For the command
+       file-cache-minibuffer-complete replace keymap minibuffer-local-map
+       with map which is already locally bound to minibuffer-local-map.
+
+2008-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * subr.el (map-keymap-sorted): Rename from map-keymap-internal.
+       Remove `sort-first' argument.
+
+       * subr.el (redisplay-end-trigger-functions)
+       (window-redisplay-end-trigger, set-window-redisplay-end-trigger)
+       (process-filter-multibyte-p, set-process-filter-multibyte):
+       Mark as obsolete.
+
+2008-03-25  Juanma Barranquero  <lekktu@gmail.com>
 
-2008-03-23  Xavier Maillard  <xma@gnu.org>
+       * emacs-lisp/re-builder.el (reb-mode-common): Remove reference to
+       bogus variable `reb-kill-buffer'; don't make hooks buffer-local,
+       use the LOCAL arg of `add-hook'.
+       (reb-blink-delay, reb-mode-hook, reb-re-syntax, reb-auto-match-limit):
+       Remove spurious * from defcustom docstrings.
+       (reb-next-match, reb-prev-match, reb-enter-subexp-mode):
+       Fix typos in messages.
+       (reb-mode-buffer-p): New function.
+       (re-builder, reb-kill-buffer): Use `reb-mode-buffer-p'.  Use `when'.
+       (top, reb-show-subexp, reb-auto-update, reb-auto-update)
+       (reb-delete-overlays, reb-cook-regexp, reb-update-regexp)
+       (reb-update-overlays): Use `unless', `when'.
+       (re-builder-unload-function): New function.
+
+2008-03-25  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc-hooks.el (vc-state): Add documentation for 'missing.
+
+2008-03-25  Wilson Snyder  <wsnyder@wsnyder.org>
+
+       * progmodes/verilog-mode.el (verilog-auto-output)
+       (verilog-auto-input, verilog-auto-inout, verilog-auto)
+       (verilog-delete-auto): Add optional regular expression to
+       AUTOINPUT/AUTOOUTPUT/AUTOINOUT.
+       (verilog-signals-matching-regexp): New internal function for
+       signal matching.
+
+2008-03-25  Johan Bockgård  <bojohan@gnu.org>
+
+       * info.el (Info-isearch-search): Always return point.
+
+2008-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * diff-mode.el (diff-remembered-defdir): New var.
+       (diff-find-file-name): Use it to flush diff-remembered-files-alist.
+
+2008-03-25  Glenn Morris  <rgm@gnu.org>
+
+       * calendar/cal-bahai.el (calendar-bahai-read-date): New name for
+       calendar-bahai-prompt-for-date.  Update callers, make old name an
+       obsolete alias.  Doc fix.
+       * calendar/cal-coptic.el (calendar-coptic-read-date): New name for
+       coptic-prompt-for-date.  Update callers, make old name an
+       obsolete alias.  Doc fix.
+       * calendar/cal-hebrew.el (calendar-hebrew-read-date): New name for
+       calendar-hebrew-prompt-for-date.  Update callers.  Doc fix.
+       * calendar/cal-islam.el (calendar-islamic-read-date): New name for
+       calendar-islamic-prompt-for-date.  Update callers.  Doc fix.
+       * calendar/cal-iso.el (calendar-iso-read-date): New name for
+       calendar-iso-read-args.  Update callers, make old name an obsolete
+       alias.
+       * calendar/cal-persia.el (calendar-persian-read-date): New name for
+       persian-prompt-for-date.  Update callers, make old name an
+       obsolete alias.  Doc fix.  Move definition before use.
+
+       * calendar/cal-x.el (diary-frame-parameters)
+       (calendar-frame-parameters, calendar-and-diary-frame-parameters):
+       (calendar-frame-1): Doc fixes.
+       (make-fancy-diary-buffer): Remove declaration.
+       (calendar-dedicate-diary): Replace call to deleted function
+       make-fancy-diary-buffer.
+       (calendar-frame-setup): New function.
+       (calendar-one-frame-setup, calendar-only-one-frame-setup)
+       (calendar-two-frame-setup): Call calendar-frame-setup to do the actual
+       work, and mark as obsolete.
+       (special-display-buffer-names): Don't mess with this; it's not our
+       business.
+       (cal-x-load-hook): Defvar it, and mark as obsolete.
+
+       * calendar/calendar.el (calendar-remove-frame-by-deleting):
+       Default to t.  Add to 'calendar group.
+       (calendar): Doc fix.  Use calendar-frame-setup.
+       (calendar-basic-setup): Doc fix.  Add optional NODISPLAY argument.
+       (generate-calendar-window): Doc fix.
+
+2008-03-24  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * vc-bzr.el (vc-bzr-print-log, vc-bzr-diff): Do it asynchronously.
+
+2008-03-24  Drew Adams  <drew.adams@oracle.com>
+
+       * finder.el (finder-mode-syntax-table, finder-font-lock-keywords):
+       New variables.
+       (finder-mode): Use finder-mode-syntax-table.  Set font-lock-defaults.
+       (finder-exit): Ignore errors rather than avoiding them.
+       Kill *Finder-package* buffer also.
+
+2008-03-24  Andreas Schwab  <schwab@suse.de>
+
+       * xt-mouse.el (xterm-mouse-event): Avoid error with buttons > 5.
+
+2008-03-24  Dan Nicolaescu  <dann@ics.uci.edu>
+
+       * vc-hg.el (vc-hg-after-dir-status):
+       * vc-bzr.el (vc-bzr-after-dir-status): Detect missing files.
+
+       * vc-cvs.el (vc-cvs-after-dir-status, vc-cvs-parse-status):
+       Detect removed files.
+
+       * vc.el (vc-status-printer): Use a different face for missing files.
+       (vc-status-hide-up-to-date): Rename from
+       vc-status-remove-up-to-date.  Update all callers.
+       (vc-status-mode-map): Bind C-m.
+
+2008-03-24  Alexandre Julliard  <julliard@winehq.org>
+
+       * vc-git.el (vc-git-after-dir-status-stage1): Move state matching
+       code ...
+       (vc-git--state-code): ... to this new function.
+       (vc-git-state): Use it.
+
+2008-03-24  Trent Buck  <trentbuck@gmail.com>  (tiny change)
 
-       * saveplace.el: fix a typo in the commentary section.
+       * textmodes/remember.el (remember-mail-date)
+       (remember-store-in-mailbox): Write date and From line in such a
+       way that Mutt can read it.
+
+2008-03-23  Chong Yidong  <cyd@stupidchicken.com>
+
+       * simple.el (transient-mark-mode): Turn on by default.
 
 2008-03-23  Dan Nicolaescu  <dann@ics.uci.edu>
 
        subdirectories.
 
        * vc.el (vc-status-prepare-status-buffer): Fix thinko.
-       (vc-status-menu-map): Add binding for
-       vc-status-kill-dir-status-process.  Add :enable for vc-status-refresh.
+       (vc-status-menu-map): Add binding for vc-status-kill-dir-status-process.
+       Add :enable for vc-status-refresh.
        (vc-status-menu-map-filter): Remove vc-ignore-menu-filter test.
-       (vc-status-tool-bar-map): Add binding for vc-status-kill-dir-status-process.
+       (vc-status-tool-bar-map): Add binding for
+       vc-status-kill-dir-status-process.
        Don't test display-graphic-p and don't bind vc-ignore-menu-filter.
        (vc-update-vc-status-buffer, vc-status-kill-dir-status-process):
        Reset vc-status-process-buffer.
        (vc-status): If the buffer is already in vc-status-mode only refresh.
        (vc-status-mark-buffer-changed): Add an optional file parameter.
        (vc-resynch-buffer): Use it.
-       (vc-delete-file): Expand the file name before using it.  Be
-       careful to not create a new buffer with the old file contents.
+       (vc-delete-file): Expand the file name before using it.
+       Be careful to not create a new buffer with the old file contents.
        Update the VC state after performing the operation.
 
 2008-03-23  Andreas Schwab  <schwab@suse.de>
 
-       * menu-bar.el (menu-bar-showhide-fringe-ind-menu) [mixed]: Fix
-       radio button condition.
+       * menu-bar.el (menu-bar-showhide-fringe-ind-menu) [mixed]:
+       Fix radio button condition.
        [box]: Likewise.
        [customize]: Add radio button.
 
        * international/mule.el (load-with-code-conversion): Avoid setting
        default-enable-multibyte-characters.
 
-2008-03-19  Gustav H\e$(Q)[\e(Bllberg  <gustav@virtutech.com>  (tiny change)
+2008-03-19  Gustav Hållberg  <gustav@virtutech.com>  (tiny change)
 
        * vc.el (vc-annotate-background): Fix custom type.
 
        * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Fix handling
        of \ and '.
 
-2008-03-13  Johan Bockg\e$(Q)[\e(Brd  <bojohan@gnu.org>
+2008-03-13  Johan Bockgård  <bojohan@gnu.org>
 
        * net/browse-url.el (browse-url-text-xterm):
        Unquote browse-url-text-browser.
        (bookmark-insert-buffer-name): Remove.
        (bookmark-buffer-file-name): Signal an error rather than returning nil.
 
-2008-03-09  Thomas H\e$(Q)q\e(Bhn  <xf27@arcor.de>  (tiny change)
+2008-03-09  Thomas Hühn  <xf27@arcor.de>  (tiny change)
 
        * tutorial.el (tutorial--default-keys): Update `C-l' binding.
 
        (bookmark-prop-get): Declare.
        (Info-bookmark-jump): Use it.
 
-2008-03-08  Johan Bockg\e$(Q)[\e(Brd  <bojohan@gnu.org>
+2008-03-08  Johan Bockgård  <bojohan@gnu.org>
 
        * subr.el (while-no-input): Don't splice BODY directly into the
        `or' form.
        * image-mode.el (image-bookmark-make-record):
        * info.el (Info-bookmark-make-record): Delete obsolete second arg.
 
-2008-03-07  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2008-03-07  Jan Djärv  <jan.h.d@swipnet.se>
 
        * vc.el (vc-status-menu-map-filter): Return orig-binding if
        boundp 'vc-ignore-menu-filter.
        `bookmark-make-cell-function'.
        (bookmark-make, bookmark-send-annotation): Update for above.
        (bookmark-make-record-for-text-file):
-       Was `bookmark-make-cell-for-text-file.  Fix doc string re 2008-03-07T05:00:18Z!monnier@iro.umontreal.ca.
+       Was `bookmark-make-cell-for-text-file'.  Fix doc string re 2008-03-07T05:00:18Z!monnier@iro.umontreal.ca.
 
        * info.el: Adjust accordingly.
        (Info-bookmark-make-record): Was `Info-bookmark-make-cell'.
        (org-promote, org-demote, org-archive-subtree)
        (org-remember-handler, org-refile, org-put-clock-overlay): Use it.
 
-2008-03-06  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2008-03-06  Jan Djärv  <jan.h.d@swipnet.se>
 
        * term/x-win.el (x-gtk-stock-map): Add bookmark_add.
 
 
        * emacs-lisp/lisp-mode.el (emacs-lisp-mode-map): Define and
        initialize in one step.  Add :help.  Use :enable to activate menu
-       items. Show the key binding for edebug-defun.
+       items.  Show the key binding for edebug-defun.
        (lisp-interaction-mode-map): Add a menu.
 
        * term.el (term-mode-map): Define and initialize in one step.
        when using transient-mark-mode.
        (default-indicate-unused-lines): Remove unused var.
 
-2008-02-26  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2008-02-26  Jan Djärv  <jan.h.d@swipnet.se>
 
        * progmodes/grep.el (grep-mode-tool-bar-map): Change place on next
        and previous.
        * help-mode.el (help-info-variable):
        New button able to read Info files for help-fns.el.
 
-2008-02-25  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2008-02-25  Jan Djärv  <jan.h.d@swipnet.se>
 
        * progmodes/grep.el (grep-mode-tool-bar-map): New variable.
        (grep-mode): Use grep-mode-tool-bar-map.
        * font-lock.el (font-lock-set-defaults): Unset previously set variables
        when needed.
 
-2008-02-24  \e$(C(!\e(Bvar Arnfj\e$(Q)l\e(Br\e$(C)#\e(B Bjarmason  <avar@cpan.org>  (tiny change)
+2008-02-24  Ævar Arnfjörð Bjarmason  <avar@cpan.org>  (tiny change)
 
        * net/rcirc.el (rcirc-url-regexp): Replace definition by copying
        from gnus-button-url-regexp.
        * startup.el (command-line): Use custom-reevaluate-setting for
        transient-mark-mode.
 
-2008-02-17  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2008-02-17  Michaël Cadilhac  <michael@cadilhac.name>
 
        * wdired.el (wdired-allow-to-change-permissions): Fix typo.
 
 2008-02-01  Dave Love  <fx@gnu.org>
 
        * international/mule-diag.el (describe-character-set):
-       Fix printing dimensions.  Use `\e$(C!?\e(B', not `x'.
+       Fix printing dimensions.  Use `×', not `x'.
 
 2008-02-01  Kenichi Handa  <handa@m17n.org>
 
 
 2008-02-01  Dave Love  <fx@gnu.org>
 
-       * international/characters.el: Make \e$(D*s\e(B and \e$(Q)t\e(B a case pair.
+       * international/characters.el: Make Ÿ and ÿ a case pair.
 
 2008-02-01  Kenichi Handa  <handa@etl.go.jp>
 
        (locale-language-names): Change sp to Cyrillic.
        (locale-charset-language-names): Match @euro after utf-8.
 
-2008-02-01  Dave Love  <fx@gnu.org>
-
-       * language/chinese.el (chinese-gbk, gbk, cp936, windows-936):
-       New coding systems.
-       ("Chinese-GBK"): New environment.
-
 2008-02-01  Dave Love  <fx@gnu.org>
 
        * language/chinese.el (chinese-gbk, gbk, cp936, windows-936):
 
        * play/blackbox.el (blackbox-mode-map): Add `q' and [return] bindings.
 
-2008-01-09  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
-
-       * ps-print.el: Some face attributes (like :strike-through) were not
-       being recognised.  Reported by Leo <sdl.web@gmail.com>.
-       (ps-print-version): New version 6.8.2.
-       (ps-face-strikout-p, ps-face-overline-p, ps-face-box-p): New functions.
-       (ps-screen-to-bit-face): Fix code.
-
 2008-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * ffap.el (ffap-read-file-or-url): Don't use let-binding to temporarily
        * emacs-lisp/lisp-mnt.el (lm-verify): Make it work with
        directories.  Not sure anybody uses this anymore, though.
 
-2007-12-09  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
-
-       * printing.el: Fix pr-interface-map initialization code.
-       (pr-version): New version 6.9.3.
-       (pr-f-set-keymap-parents): Replace by pr-set-keymap-parents.
-       (pr-f-set-keymap-name): Replace by pr-set-keymap-name.
-       (pr-f-read-string): Replace by pr-read-string.
-       (pr-set-keymap-parents, pr-set-keymap-name, pr-read-string): New fun
-       name.
-       (pr-interactive-n-up, pr-interactive-regexp): Code fix.
-
 2007-12-09  Glenn Morris  <rgm@gnu.org>
 
        * emulation/viper-init.el (top-level): Use dolist rather than mapc
        * textmodes/reftex-toc.el (reftex-make-separate-toc-frame):
        Try x-focus-frame before focus-frame.  Only try focus-frame on XEmacs.
 
-2007-12-03  Nathan J. Williams  <nathanw@MIT.EDU>  (tiny change)
-
-       * net/imap.el (imap-mailbox-status-asynch): Upcase STATUS items.
-       (imap-parse-status): Upcase status-att for servers that sends them
-       lower-case (e.g., MS Exchange 2007).
-
 2007-12-03  Karl Fogel  <kfogel@red-bean.com>
 
        * saveplace.el (save-place-quiet): Remove, reverting 2007-12-02T19:54:46Z!kfogel@red-bean.com.
 
        * progmodes/python.el (top-level): Don't require cl when compiling.
 
-2007-12-02  Agust\e$(Q)c\e(Bn Mart\e$(Q)c\e(Bn  <agustin.martin@hispalinux.es>
+2007-12-02  Agustín Martín  <agustin.martin@hispalinux.es>
 
        * textmodes/flyspell.el (flyspell-large-region): Explicitly set
        encoding for aspell process and for communication with it.
        (x-send-client-message):
        * emulation/cua-base.el (x-clipboard-yank): Declare as functions.
 
-2007-11-22  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2007-11-22  Jan Djärv  <jan.h.d@swipnet.se>
 
        * term/x-win.el (x-gtk-map-stock): Check if FILE is a string.
 
 
        * progmodes/sh-script.el (sh-mode): Set defun-prompt-regexp.
 
-2007-11-21  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
-
-       * ps-print.el (ps-lpr-switches): Docstring fix.
-       (ps-string-list): New fun.
-       (ps-do-despool): Code fix.
-
 2007-11-21  Juanma Barranquero  <lekktu@gmail.com>
 
        * w32-fns.el: Undo 2007-11-21 change by Dan Nicolaescu.
 
        * emulation/tpu-mapper.el (tpu-map-key): Remove un-needed cond branch.
 
-2007-11-07  Johan Bockg\e$(Q)[\e(Brd  <bojohan@gnu.org>
+2007-11-07  Johan Bockgård  <bojohan@gnu.org>
 
        * eshell/esh-mode.el (eshell-output-filter):
        * eshell/esh-proc.el (eshell-insertion-filter, eshell-sentinel):
        * cus-start.el: Remove abbrev-all-caps and pre-abbrev-expand-hook.
        * loadup.el: Load "abbrev.el" before "lisp-mode.el".
 
-2007-10-27  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
-
-       * ps-print.el: Now detect if text foreground and background colors are
-       equal and replace the foreground color by another color, so the text
-       becomes visible.  Doc fix.
-       (ps-print-version): New version 6.8.
-       (ps-default-fg, ps-default-bg): Docstring fix.
-       (ps-postscript-code-directory): Fix default value code.
-       (ps-fg-list, ps-fg-validate-p): New options.
-       (ps-foreground-list): New var.
-       (ps-setup, ps-begin-job, ps-plot-region): Fix code.
-
 2007-10-27  Glenn Morris  <rgm@gnu.org>
 
        * shell.el (shell-dirtrack-verbose, shell-directory-tracker): Doc fix.
        (display-time-world-list): Use them as appropriate for the current
        value of `system-type'.
 
-2007-10-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
-
-       * printing.el: Pacify byte compiler, that is, no compiler warnings.
-       Move (again) some variable definitions before use, define some fun
-       aliases, no code change.
-       (pr-version): New version 6.9.2.
-       (pr-path-style, pr-auto-region, pr-menu-char-height)
-       (pr-menu-char-width, pr-menu-lock, pr-ps-printer-alist)
-       (pr-txt-printer-alist, pr-ps-utility-alist): Options declaration
-       via (defvar VAR).
-       (pr-menu-lookup, pr-menu-lock, pr-menu-alist, pr-even-or-odd-pages)
-       (pr-menu-get-item, pr-menu-set-item-name, pr-menu-set-utility-title)
-       (pr-menu-set-ps-title, pr-menu-set-txt-title, pr-region-active-p)
-       (pr-do-update-menus, pr-update-mode-line, pr-f-read-string)
-       (pr-f-set-keymap-parents, pr-keep-region-active): Fun aliases.
-       (pr-menu-print-item, pr-ps-printer-menu-modified)
-       (pr-txt-printer-menu-modified, pr-ps-utility-menu-modified)
-       (pr-even-or-odd-alist): Vars definition moved.
-
 2007-10-26  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * emulation/pc-select.el (next-line-mark, next-line-nomark)
        * help-fns.el (describe-function-1): Don't use the advice origname
        if it has no function definition.
 
-2007-10-18  Johan Bockg\e$(Q)[\e(Brd  <bojohan@gnu.org>
+2007-10-18  Johan Bockgård  <bojohan@gnu.org>
 
        * net/tramp.el (tramp-rfn-eshadow-update-overlay): Save excursion.
        Use `save-restriction' rather than `widen'.
        (org-remember-apply-template): Respect the dynamically scoped
        selection character.
 
-2007-10-10  Bastien Guerry  <Bastien.Guerry@ens.fr>
-
-       * textmodes/org-export-latex.el (org-export-latex-protect-string):
-       Renaming of `org-latex-protect'.
-       (org-export-latex-emphasis-alist): By default, don't protect
-       any emphasis formatter from further conversion.
-       (org-export-latex-tables): Honor column grouping for tables.
-       (org-export-latex-title-command): New option.
-       (org-export-latex-treat-backslash-char): Use \textbackslash{} to
-       export backslash character.
-
 2007-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * frame.el (frame-inherited-parameters): Remove unused `environment'
        (bs--get-mode-name, bs-mode): Fix typos in docstrings.
        (bs--format-aux): Doc fix.
 
-2007-10-08  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-10-08  Michaël Cadilhac  <michael@cadilhac.name>
 
        * progmodes/gud.el (gud-gud-gdb-command-name): Fix typo in docstring.
 
        * progmodes/gud.el (gud-display-line): Find source buffer even when
        GUD buffer has its own frame.
 
-2007-10-08  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2007-10-08  Jan Djärv  <jan.h.d@swipnet.se>
 
        * term/x-win.el (icon-map-list): Set to nil for 22.1 compatibility.
 
-2007-10-08  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2007-10-08  Jan Djärv  <jan.h.d@swipnet.se>
 
        * term/x-win.el (x-gtk-stock-map): Version is 22.2.
 
        * emacs-lisp/copyright.el (copyright-update): Don't update if the file
        already uses a more recent copyright version than the "current" one.
 
-2007-10-03  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-10-03  Michaël Cadilhac  <michael@cadilhac.name>
 
        * doc-view.el (doc-view-dvi->pdf-sentinel, doc-view-reset-slice)
        (doc-view-insert-image): Minor aesthetical docstring changes.
 
        * play/zone.el (zone-hiding-modeline): Use mode-line-format.
 
-2007-09-29  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
-
-       * term/x-win.el (x-gtk-stock-map): Version is 22.2.
-
 2007-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * t-mouse.el (gpm-mouse-mode): Rename from t-mouse-mode.  Rewrite.
        * indent.el (indent-for-tab-command): First check if the region is
        active.
 
-2007-09-24  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-09-24  Michaël Cadilhac  <michael@cadilhac.name>
 
        * whitespace.el (whitespace-tickle-timer): Don't install the timer if
        whitespace-rescan-timer-time is 0.
        * indent.el (indent-for-tab-command): Indent the region if
        transient-mark-mode and the region is active.
 
-2007-09-21  Francesco Potort\e$(Q)b\e(B  <pot@gnu.org>
+2007-09-21  Francesco Potortì  <pot@gnu.org>
 
        * progmodes/octave-inf.el (inferior-octave-mode): Use add-hook to
        add inferior-octave-directory-tracker to the buffer-local value
        (browse-url-elinks-sentinel): Use browse-url-elinks-new-window.
        Improve error message.
 
-2007-09-19  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-09-19  Michaël Cadilhac  <michael@cadilhac.name>
 
        * net/browse-url.el (browse-url-url-encode-chars): Use the right
        parameter name in the function body.
        * newcomment.el (comment-add): New arg EXTRA.
        (comment-region-default): Pass EXTRA if not indenting lines.
 
-2007-09-17  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-09-17  Michaël Cadilhac  <michael@cadilhac.name>
 
        * net/browse-url.el (browse-url-url-encode-chars): New function.
        URL-encode some chars in a string.
        (move-beginning-of-line): Remove unused var `start'.
        (blink-matching-open): Restructure in a more functional style.
 
-2007-09-16  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-09-16  Michaël Cadilhac  <michael@cadilhac.name>
 
        * calendar/holidays.el (list-holidays): Remove the cyclic alias.
 
 
        * term/rxvt.el (rxvt-function-map): Initialize in the declaration.
 
-2007-09-12  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-09-12  Michaël Cadilhac  <michael@cadilhac.name>
 
        * net/browse-url.el (browse-url-encode-url): Fix an infinite loop.
        New argument `filename-p' to use one set of confusing chars or another.
 2007-09-10  Thien-Thi Nguyen  <ttn@gnuvola.org>
 
        * net/browse-url.el (browse-url-encode-url): Use copy-sequence.
-       Reported by Jan Dj\e$(Q)Z\e(Brv <jan.h.d@swipnet.se>.
+       Reported by Jan Djärv <jan.h.d@swipnet.se>.
 
 2007-09-10  Dave Love  <fx@gnu.org>
 
        Move font-lock-builtin-face down from 4 to 7 to better keep the
        progression of color brightness, and to better match Org-mode's faces.
 
-2007-09-10  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-09-10  Michaël Cadilhac  <michael@cadilhac.name>
 
        * progmodes/meta-mode.el (meta-font-lock-keywords)
        (font-lock-match-meta-declaration-item-and-skip-to-next)
 
        * vc-arch.el (vc-arch-checkin): Fix typo.
 
-2007-09-07  Johan Bockg\e$(Q)[\e(Brd  <bojohan@gnu.org>
+2007-09-07  Johan Bockgård  <bojohan@gnu.org>
 
        * cus-face.el (custom-theme-set-faces): Set face attributes
        locally for each frame.
        * complete.el (PC-do-completion): Don't try to treat
        empty string as an abbreviation.
 
-2007-09-06  Johan Bockg\e$(Q)[\e(Brd  <bojohan@dd.chalmers.se>
+2007-09-06  Johan Bockgård  <bojohan@dd.chalmers.se>
 
        * help-fns.el (describe-variable): Keep doc's text properties.
 
        (normal-no-mouse-startup-screen): New fn, broken out.
        (normal-about-screen): New function, contents all new.
 
-2007-09-05  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-09-05  Michaël Cadilhac  <michael@cadilhac.name>
 
        * emacs-lisp/rx.el (rx): Fix typo in docstring.
 
        * cus-edit.el (custom-buffer-create-internal): Check tool-bar-mode
        is bound.
 
-2007-09-05  Johan Bockg\e$(Q)[\e(Brd  <bojohan@dd.chalmers.se>
+2007-09-05  Johan Bockgård  <bojohan@dd.chalmers.se>
 
        * emacs-lisp/advice.el (ad-make-advised-docstring): Highlight note
        in doc string.
        (terminal-init-xterm): Use it.  Deal with delete-frame hook.
        Add the selected frame to xterm-modify-other-keys-terminal-list.
 
-2007-09-02  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2007-09-02  Jan Djärv  <jan.h.d@swipnet.se>
 
        * term/x-win.el (x-gtk-stock-map): Map diropen to system-file-manager.
        (icon-map-list): New variable.
 
        * vc-svn.el (vc-svn-diff-tree): Pass a list to vc-svn-diff.
 
-2007-08-31  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-08-31  Michaël Cadilhac  <michael@cadilhac.name>
 
        * textmodes/flyspell.el (flyspell-mark-duplications-exceptions):
        New variable.  List of exceptions for the duplicated word rule.
        * files.el (create-file-buffer): If the filename sans directory starts
        with spaces, remove them.
 
-2007-08-31  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2007-08-31  Jan Djärv  <jan.h.d@swipnet.se>
 
        * term/x-win.el (x-gtk-stock-map): Add etc/images to keys.
        (x-gtk-map-stock): Use two directory elements when matching
 
        * version.el (emacs-version): Increase to 23.0.50.
 
-2007-08-29  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2007-08-29  Jan Djärv  <jan.h.d@swipnet.se>
 
        * term/x-win.el (x-gtk-stock-map): :version changed to 23.1.
 
 
        * env.el (getenv): Pass frame to getenv-internal.
 
-2007-08-29  K\e$(Q)W\e(Broly L\e$(Q*S\e(Brentey  <lorentey@elte.hu>
+2007-08-29  Károly Lőrentey  <lorentey@elte.hu>
 
        * version.el (emacs-version): Show if multi-tty is present.
 
        (display-time-world-timer-second, display-time-world-mode-map):
        New variables.
 
-2007-08-28  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2007-08-28  Jan Djärv  <jan.h.d@swipnet.se>
 
        * term/x-win.el (x-gtk-stock-map): New variable.
        (x-gtk-map-stock): New function.
        * info.el (info-tool-bar-map): Add :rtl keyword to right/left-arrow and
        prev/next-node.
 
-2007-08-28  Johan Bockg\e$(Q)[\e(Brd  <bojohan@dd.chalmers.se>  (tiny change)
+2007-08-28  Johan Bockgård  <bojohan@dd.chalmers.se>  (tiny change)
 
        * play/gamegrid.el (gamegrid-init): Set line-spacing to 0.
 
 
        * vc.el (vc-annotate-warp-version): Don't use previous-line.
 
-2007-08-27  Johan Bockg\e$(Q)[\e(Brd  <bojohan@dd.chalmers.se>
+2007-08-27  Johan Bockgård  <bojohan@dd.chalmers.se>
 
        * net/browse-url.el (browse-url-emacs): New function.
 
 
        * emacs-lisp/avl-tree.el: New file.
 
-2007-08-26  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-08-26  Michaël Cadilhac  <michael@cadilhac.name>
 
        * hi-lock.el (hi-lock-unface-buffer): Show a x-menu only if the mouse
        was used.
        undo-list when setting syntax-table properties.
        (ada-after-change-function): Use ada-set-syntax-table-properties.
 
-2007-08-18  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-08-18  Michaël Cadilhac  <michael@cadilhac.name>
 
        * progmodes/meta-mode.el (meta-indent-calculate-last): Remove.
        (meta-indent-current-nesting): Use a computation of the nesting
        (cperl-find-pods-heres): Fix an error when typing expressions like
        `s{a}{b}'.
 
-2007-08-17  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-08-17  Michaël Cadilhac  <michael@cadilhac.name>
 
        * mail/emacsbug.el (report-emacs-bug): Remove the last number of
        `emacs-version', use the topic prefix ``version; ''.  Make MS-DOS
        sloppier, for the sake of GNU Mailman.
        (rmail-digest-rfc1153): Initialize `result' correctly.
 
-2007-08-15  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-08-15  Michaël Cadilhac  <michael@cadilhac.name>
 
        * mail/emacsbug.el (report-emacs-bug): Put `Bug: emacs-version; '
        in the mail title.  Suggested by Reiner Steib.
        * vc-git.el (vc-git-revision-table)
        (vc-git-revision-completion-table): New functions.
 
-2007-07-26  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
-
-       * progmodes/ebnf-abn.el (ebnf-abn-skip-comment):
-       * progmodes/ebnf-bnf.el (ebnf-bnf-skip-comment):
-       * progmodes/ebnf-dtd.el (ebnf-dtd-skip-comment):
-       * progmodes/ebnf-ebx.el (ebnf-ebx-skip-comment):
-       * progmodes/ebnf-iso.el (ebnf-iso-skip-comment):
-       * progmodes/ebnf-yac.el (ebnf-yac-skip-comment): New version.
-       New command actions for EPS header and EPS footer.
-
-       * progmodes/ebnf2ps.el: New command actions for EPS header and EPS
-       footer.  Fix some problems with one-or-more, zero-or-more and
-       alternative constructions generation.  Some log messages
-       implementation.  Doc fix.
-       (ebnf-version): New version 4.4.
-       (ebnf-eps-header-font, ebnf-eps-header, ebnf-eps-footer-font)
-       (ebnf-eps-footer, ebnf-log): New options.
-       (ebnf-find-style, ebnf-eps-header-footer, ebnf-eps-header)
-       (ebnf-eps-footer, ebnf-eps-string, ebnf-eps-header-footer-comment)
-       (ebnf-eps-header-footer-p, ebnf-eps-header-comment)
-       (ebnf-eps-footer-comment, ebnf-eps-header-footer-file)
-       (ebnf-eps-header-footer-set, ebnf-log-header, ebnf-log): New funs.
-       (ebnf-style-custom-list, ebnf-style-database): Put new values.
-       (ebnf-print-directory, ebnf-print-file, ebnf-print-buffer)
-       (ebnf-print-region, ebnf-spool-directory, ebnf-spool-file)
-       (ebnf-spool-buffer, ebnf-spool-region, ebnf-eps-directory)
-       (ebnf-eps-file, ebnf-eps-buffer, ebnf-eps-region)
-       (ebnf-syntax-directory, ebnf-syntax-file, ebnf-syntax-buffer)
-       (ebnf-syntax-region, ebnf-parse-and-sort, ebnf-begin-job)
-       (ebnf-dimensions, ebnf-production-dimension, ebnf-terminal-dimension)
-       (ebnf-non-terminal-dimension, ebnf-special-dimension)
-       (ebnf-terminal-dimension1, ebnf-repeat-dimension)
-       (ebnf-except-dimension, ebnf-alternative-dimension)
-       (ebnf-optional-dimension, ebnf-one-or-more-dimension)
-       (ebnf-zero-or-more-dimension, ebnf-sequence-dimension): Insert log
-       message fun.
-       (ebnf-setup, ebnf-generate-one-or-more, ebnf-generate-zero-or-more)
-       (ebnf-begin-job, ebnf-begin-file, ebnf-eps-finish-and-write)
-       (ebnf-insert-ebnf-prologue, ebnf-production-dimension)
-       (ebnf-terminal-dimension1, ebnf-alternative-dimension)
-       (ebnf-one-or-more-dimension, ebnf-zero-or-more-dimension)
-       (ebnf-eps-add-context, ebnf-eps-add-production): Fix code.
-       (ebnf-eps-filename, ebnf-trim-right): Replace `?\s' by `?\ ' to keep
-       compatibility with Emacs 20 & 21.
-       (ebnf-eps-header-comment, ebnf-eps-footer-comment)
-       (ebnf-eps-file-alist, ebnf-basic-width-extra)
-       (ebnf-basic-empty-height): New vars.
-       (ebnf-prologue): Fix PostScript code.
-       (ebnf-make-empty, ebnf-make-terminal1, ebnf-make-or-more1)
-       (ebnf-make-production, ebnf-make-alternative, ebnf-make-optional)
-       (ebnf-make-except, ebnf-make-repeat, ebnf-make-sequence)
-       (ebnf-make-dup-sequence, ebnf-token-alternative): Add comments.
-
 2007-07-25  Glenn Morris  <rgm@gnu.org>
 
        * Relicense all FSF files to GPLv3 or later.
 
        * net/trampver.el: Update release number.
 
-2007-07-22  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2007-07-22  Jan Djärv  <jan.h.d@swipnet.se>
 
        * startup.el (command-line-x-option-alist): Use x-handle-no-bitmap-icon.
 
        * isearch.el (isearch-edit-string): Call to isearch-push-state
        after the search.
 
-2007-07-09  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2007-07-09  Jan Djärv  <jan.h.d@swipnet.se>
 
        * window.el (fit-window-to-buffer): Remove setting of window-min-height
        to 1 as enlarge-window uses the value to resize/shrink windows other
        (longlines-auto-wrap, longlines-window-change-function):
        Remove unnecessary calls to set-buffer-modified-p.
 
-2007-07-08  Katsumi Yamaoka  <yamaoka@jpl.org>
-
-       * cus-start.el (file-coding-system-alist): Fix custom type.
-
 2007-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * vc-cvs.el (vc-cvs-revert): Use vc-default-revert.
        * font-lock.el (lisp-font-lock-keywords-2): Recognize the new \(?1:..\)
        syntax as well.  Reported by Juri Linkov <juri@jurta.org>.
 
-2007-06-28  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2007-06-28  Jan Djärv  <jan.h.d@swipnet.se>
 
        * dnd.el (dnd-get-local-file-name): Set fixcase to t in call to
        replace-regexp-in-string.
 
        * diff-mode.el (diff-font-lock-keywords): Fix M. Kifer's last change.
 
-2007-06-13  Johan Bockg\e$(Q)[\e(Brd  <bojohan@dd.chalmers.se>  (tiny change)
+2007-06-13  Johan Bockgård  <bojohan@dd.chalmers.se>  (tiny change)
 
        * term/xterm.el (terminal-init-xterm): Escape parens in character
        constants.
        * emacs-lisp/bytecomp.el (byte-compile-find-cl-functions):
        Match against file-name-nondirectory.
        Fix text on user customization variables.
-       Reported by Johan Bockg\e$(Q)[\e(Brd <bojohan@dd.chalmers.se>.
+       Reported by Johan Bockgård <bojohan@dd.chalmers.se>.
 
 2007-06-09  Alfred M. Szmidt  <ams@gnu.org>  (tiny change)
 
        * textmodes/org.el (org-export-ascii-bullets, org-batch-agenda)
        (org-batch-agenda-csv): Fix typos in docstrings.
 
-2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
-
-       * international/mule-cmds.el (toggle-enable-multibyte-characters)
-       (sort-coding-systems, search-unencodable-char): Doc fixes.
-       (coding-system-change-eol-conversion, set-default-coding-systems)
-       (prefer-coding-system, find-multibyte-characters, princ-list)
-       (leim-list-entry-regexp, set-input-method, locale-language-names)
-       (input-method-exit-on-first-char, exit-language-environment-hook)
-       (locale-charset-language-names): Fix typos in docstrings.
-
 2007-06-06  Juanma Barranquero  <lekktu@gmail.com>
 
        * pgg.el (pgg-sign-region, pgg-sign):
 
        * files.el (set-auto-mode): Doc fix.
 
-2007-05-22  Jan Dj\e$(Q)Z\e(Brv  <jan.h.d@swipnet.se>
+2007-05-22  Jan Djärv  <jan.h.d@swipnet.se>
 
        * help-fns.el (find-source-lisp-file): New function.
        (describe-function-1): Use find-source-lisp-file to find source
        for start and end positions.
        (ispell-word): Assume END is a marker.
 
-2007-05-17  Vinicius Jose Latorre  <viniciusjl@ig.com.br>
-
-       * printing.el: Group together all XEmacs/Emacs definitions.
-       (pr-version): New version 6.9.
-       (pr-global-menubar, pr-menu-char-height, pr-menu-char-width): New funs.
-       (pr-menu-char-height, pr-menu-char-width): Fix initialization code.
-       (pr-menu-bind): Fix code.
-       (pr-e-frame-char-height, pr-e-frame-char-width)
-       (pr-e-mouse-pixel-position, pr-x-add-submenu, pr-x-event-function)
-       (pr-x-event-object, pr-x-find-menu-item, pr-x-font-height)
-       (pr-x-font-width, pr-x-get-popup-menu-response, pr-x-make-event)
-       (pr-x-misc-user-event-p, pr-x-relabel-menu-item, pr-x-event-x-pixel)
-       (pr-x-event-y-pixel): Aliases eliminated.
-       (pr-xemacs-global-menubar): Macro moved.
-       (current-menubar, current-mouse-event, zmacs-region-stays)
-       (deactivate-mark, pr-menu-position, pr-menu-state, pr-ps-name-old)
-       (pr-txt-name-old, pr-ps-utility-old, pr-even-or-odd-old, pr-temp-menu):
-       Vars moved.
-       (pr-region-active-p, pr-menu-position, pr-menu-lookup, pr-menu-lock)
-       (pr-update-mode-line, pr-do-update-menus, pr-menu-alist)
-       (pr-relabel-menu-item, pr-menu-set-ps-title, pr-menu-set-txt-title)
-       (pr-menu-set-utility-title, pr-even-or-odd-pages)
-       (pr-f-set-keymap-parents, pr-f-set-keymap-name, pr-f-read-string)
-       (pr-keep-region-active, pr-menu-get-item, pr-menu-set-item-name): Funs
-       moved.
-
 2007-05-17  Christian Plate  <cplate@web.de>  (tiny change)
 
        * textmodes/sgml-mode.el (sgml-tag):
        * dabbrev.el (dabbrev-eliminate-newlines):
        Renamed from dabbrev--eliminate-newlines.  All uses changed.
 
-2007-05-10  Micha\e$(Q)a\e(Bl Cadilhac  <michael@cadilhac.name>
+2007-05-10  Michaël Cadilhac  <michael@cadilhac.name>
 
        * man.el (Man-next-section): Don't consider the last line of the page
        as being part of any section.
        * image-dired.el (image-dired-display-image): Derive image-type from
        filename rather than assuming jpeg, in case no resizing was needed.
 
-2007-04-25  Johan Bockg\e$(Q)[\e(Brd  <bojohan@dd.chalmers.se>
+2007-04-25  Johan Bockgård  <bojohan@dd.chalmers.se>
 
        * custom.el (defface): Doc fix.
 
 See ChangeLog.12 for earlier changes.
 
 ;; Local Variables:
-;; coding: iso-2022-7bit
+;; coding: utf-8
 ;; add-log-time-zone-rule: t
 ;; End: