Remove old debug print
[bpt/emacs.git] / lisp / ChangeLog
index 37e0b7a..7f25ebb 100644 (file)
@@ -1,3 +1,593 @@
+2014-03-17  Stefan  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/nadvice.el (advice--interactive-form): New function.
+       (advice--make-interactive-form): Use it to avoid (auto)loading function.
+       (advice--make-1, advice-add, advice-remove):
+       Remove braindead :advice-pending hack.
+
+2014-03-17  Glenn Morris  <rgm@gnu.org>
+
+       * calendar/calendar.el (calendar-generate-month): Apply weekend
+       face to the right days; fixes 2013-08-06 change.  (Bug#17028)
+
+2014-03-17  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp.el (tramp-action-out-of-band): Read pending output.
+       (tramp-call-process): Trace also DESTINATION.
+
+       * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
+       Quote file names when they are local.  Remove superfluous trace.
+
+2014-03-17  Dmitry Gutov  <dgutov@yandex.ru>
+
+       * newcomment.el (comment-beginning): If `comment-start-skip'
+       doesn't match, move back one char and try again.  (Bug#16971)
+
+       * emacs-lisp/lisp-mode.el (lisp-mode-variables): Set
+       `comment-use-syntax' to t to avoid the unnecessary runtime check.
+       Set `comment-start-skip' to a simpler value that doesn't try to
+       check if the semicolon is escaped (this is handled by
+       `syntax-ppss' now).  (Bug#16971)
+
+       * progmodes/scheme.el (scheme-mode-variables): Same.
+
+2014-03-16  Martin Rudalics  <rudalics@gmx.at>
+
+       Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
+       * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
+       current (Bug#16816, Bug#17007).
+       (with-current-buffer-window): New macro doing the same as
+       `with-temp-buffer-window' but with BUFFER-OR-NAME current.
+       * help.el (help-print-return-message): Warn in doc-string to not
+       use this in `with-help-window'.
+       (describe-bindings-internal): Call `describe-buffer-bindings'
+       from within help buffer.  See Juanma's scenario in (Bug#16816).
+       (with-help-window): Update doc-string.
+       * dired.el (dired-mark-pop-up):
+       * files.el (save-buffers-kill-emacs):
+       * register.el (register-preview): Use `with-current-buffer-window'
+       instead of `with-temp-buffer-window'.
+
+2014-03-16  Juanma Barranquero  <lekktu@gmail.com>
+
+       * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
+       Implement inserting into current buffer, documented in their docstrings.
+       (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
+       (rst-section-tree-point, rst-forward-section, rst-indent)
+       (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
+       (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
+       (rst-font-lock-handle-adornment-pre-match-form)
+       (rst-repeat-last-character): Reflow docstrings.
+       (rst-preferred-adornments, rst-update-section, rst-find-title-line)
+       (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
+       (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
+       (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
+       Fix docstring typos.
+       (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
+       (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
+       (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
+
+2014-03-18  Daniel Colascione  <dancol@dancol.org>
+
+       * startup.el (tty-handle-args): Remove debug message from 2007.
+
+2014-03-15  Juanma Barranquero  <lekktu@gmail.com>
+
+       * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
+       for compatibility with other ports.
+       (ns-initialize-window-system): Use it.  It is set in term/common-win.el
+       from the -xrm command line argument, but in the Nextstep port its value
+       is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
+
+       * progmodes/python.el (defconst, python-syntax-count-quotes)
+       (python-indent-region, python-indent-shift-right)
+       (python-indent-dedent-line-backspace, python-nav-backward-sexp)
+       (python-nav-backward-sexp-safe, python-nav-backward-up-list)
+       (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
+       (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
+       (inferior-python-mode, python-shell-make-comint, run-python-internal)
+       (python-shell-buffer-substring, python-shell-send-buffer)
+       (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
+       (python-completion-complete-at-point, python-fill-docstring-style)
+       (python-eldoc-function, python-imenu-format-item-label)
+       (python-imenu-format-parent-item-label)
+       (python-imenu-format-parent-item-jump-label)
+       (python-imenu--build-tree, python-imenu-create-index)
+       (python-imenu-create-flat-index): Fix docstring typos.
+       (python-indent-context, python-shell-prompt-regexp, run-python):
+       Remove superfluous backslashes.
+       (python-indent-line, python-nav-beginning-of-defun)
+       (python-shell-get-buffer, python-shell-get-process)
+       (python-info-current-defun, python-info-current-line-comment-p)
+       (python-info-current-line-empty-p, python-util-popn): Doc fixes.
+       (python-indent-post-self-insert-function, python-shell-send-file)
+       (python-shell-completion-get-completions)
+       (python-shell-completion-complete-or-indent)
+       (python-eldoc--get-doc-at-point): Reflow docstrings.
+
+2014-03-14  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/package.el (package-menu-mode-map):
+       Replace use of obsolete function alias.  Tweak menu item text.
+
+       * info.el (Info-finder-find-node):
+       Ignore the `emacs' metapackage.  (Bug#10813)
+
+       * finder.el (finder-list-matches): Include unversioned packages
+       in the result of a keyword search.
+
+       * finder.el (finder--builtins-descriptions): New constant.
+       (finder-compile-keywords): Use finder--builtins-descriptions.
+
+2014-03-14  Dmitry Gutov  <dgutov@yandex.ru>
+
+       * simple.el (blink-matching-paren): Describe the new value,
+       `jump', enabling the old behavior.
+       (blink-matching-open): Use that value.  (Bug#17008)
+
+2014-03-14  Glenn Morris  <rgm@gnu.org>
+
+       * finder.el (finder-no-scan-regexp): Add leim-list.
+       (finder-compile-keywords):
+       Don't skip files with same basename.  (Bug#14010)
+       * Makefile.in (setwins_finder): New, excluding leim.
+       (finder-data): Use setwins_finder.
+
+       * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
+       (help-function-arglist, help-make-usage): Move from here...
+       * help.el (help-split-fundoc, help-add-fundoc-usage)
+       (help-function-arglist, help-make-usage): ... to here.  (Bug#17001)
+       * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
+
+2014-03-14  Juanma Barranquero  <lekktu@gmail.com>
+
+       * net/socks.el (socks, socks-override-functions)
+       (socks-find-services-entry):
+       * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
+       (hif-find-ifdef-block):
+       * progmodes/modula2.el (m2-indent): Fix docstring typos.
+
+       * net/tls.el (tls-program): Reflow docstring.
+
+       * progmodes/pascal.el (pascal-mode-abbrev-table)
+       (pascal-imenu-generic-expression, pascal-auto-endcomments)
+       (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
+       (pascal-outline-mode): Fix docstring typos.
+       (pascal-mode): Let define-derived-mode document mode hook.
+       (pascal-uncomment-area): Reflow.
+       (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
+
+       * progmodes/opascal.el (opascal-compound-block-indent)
+       (opascal-case-label-indent): Fix docstring typos.
+       (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
+
+2014-03-13  Dmitry Gutov  <dgutov@yandex.ru>
+
+       * progmodes/ruby-mode.el (ruby-font-lock-keywords): Fontify
+       multiple adjacent negation chars.  (Bug#17004)
+
+2014-03-13  Tom Willemse  <tom@ryuslash.org>  (tiny change)
+
+       * emacs-lisp/package.el (package--prepare-dependencies):
+       Accept requirements without explicit version (bug#14941).
+
+2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
+
+       * register.el (register-separator, copy-to-register): Doc fixes.
+       (register-preview-default): Remove unnecessary call to concat.
+
+       * frameset.el (frameset-restore): When checking for a visible frame,
+       use the action map instead of calling visible-frame-list.
+
+2014-03-12  Jonas Bernoulli  <jonas@bernoul.li>
+
+       * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
+
+2014-03-12  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (fit-frame-to-buffer): Get maximum width from
+       display's width instead of height.
+
+2014-03-12  Glenn Morris  <rgm@gnu.org>
+
+       * desktop.el (desktop-restore-frames)
+       (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
+       (desktop-restore-reuses-frames): Doc tweaks.
+
+       * electric.el (electric-indent-mode): Doc fix.
+
+2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
+
+       * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
+       (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
+       (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
+       (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
+       (cvs-dired-use-hook): Fix docstring typos.
+       (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
+       Doc fixes.
+
+       * vc/pcvs-defs.el (cvs-auto-remove-handled)
+       (cvs-auto-remove-directories, cvs-default-ignore-marks)
+       (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
+       (cvs-execute-single-dir): Fix docstring typos.
+
+       * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
+       (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
+
+       * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
+
+       * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
+       Fix docstring typos.
+
+2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frameset.el (frameset--jump-to-register): Add autoload; it could be
+       called from jump-to-register after unloading the frameset package.
+
+2014-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
+       (bug#16975).  Deactivate the mark before setting it to nil.
+       (activate-mark): Do nothing if region is already active.
+
+2014-03-11  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frameset.el (frameset--target-display): Remove definition; declare.
+       (frameset-save, frameset-restore): Let-bind frameset--target-display.
+
+2014-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
+       (advice-add): Add a :advice--pending marker, so advice--make-1 knows
+       when the advice is pending.
+       (advice-remove): Remove this marker when not needed any more.
+
+2014-03-11  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frameset.el: Separate options for reusing frames and cleaning up.
+       (frameset--reuse-list): Remove definition; declare.
+       (frameset--action-map): Declare.
+       (frameset--find-frame-if): Doc fix.
+       (frameset--restore-frame): Cache frame action.
+       (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
+       how to clean up the frame list after restoring.  Remove cleaning
+       options from REUSE-FRAMES.  Change all keyword values to symbols.
+       (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
+
+       * desktop.el (desktop-restore-forces-onscreen)
+       (desktop-restore-reuses-frames): Use non-keyword values.
+       (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
+
+2014-03-10  Glenn Morris  <rgm@gnu.org>
+
+       * files.el (find-file): Doc fix: update info node name.
+
+       * emacs-lisp/advice.el (ad-add-advice, defadvice):
+       Doc fix: remove references to deleted info nodes.
+
+2014-03-10  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
+       Do not add `nil' to the environment, when there's no remote `locale'.
+       (tramp-find-inline-encoding): Check, that the remote host has
+       installed perl, before sending scripts.
+
+2014-03-10  Leo Liu  <sdl.web@gmail.com>
+
+       * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
+       Clear eldoc-last-message.  (Bug#16920)
+
+2014-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
+       (bug#14430).
+
+2014-03-09  Juri Linkov  <juri@jurta.org>
+
+       * ansi-color.el (ansi-color-names-vector): Copy default colors
+       from `xterm-standard-colors' that look well on the default white
+       background (and also on the black background) to avoid illegible
+       color combinations like yellow-on-white and white-on-white.
+       http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
+
+2014-03-08  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frameset.el (frameset-restore): When no frame is visible, do not
+       generate a list of frames, just make visible the selected one.
+
+2014-03-08  Dmitry Gutov  <dgutov@yandex.ru>
+
+       * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
+       it only contains the repository root.  (Bug#16897)
+
+2014-03-07  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
+       only when `remote-file-name-inhibit-cache' is nil.
+       (tramp-sh-file-name-handler): Use `tramp-error'.  Simplify code.
+
+2014-03-06  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
+       Fix doc-strings.
+       (fit-frame-to-buffer): New argument ONLY.  Remove dependency on
+       fit-frame-to-buffer variable.  Fix doc-string.
+       (fit-window-to-buffer): Set ONLY argument in call of
+       fit-frame-to-buffer.  Fix doc-string.
+
+2014-03-06  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
+       (tramp-action-password): Clear password cache if needed.
+       (tramp-read-passwd): Do not clear password cache.
+
+       * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
+       cache unless it is the first password request.
+
+2014-03-06  Glenn Morris  <rgm@gnu.org>
+
+       * simple.el (newline): Doc tweak.
+
+       * emacs-lisp/shadow.el (load-path-shadows-find):
+       Ignore dir-locals.  (Bug#12357)
+
+2014-03-05  Glenn Morris  <rgm@gnu.org>
+
+       * files.el (interpreter-mode-alist):
+       * progmodes/sh-script.el (sh-ancestor-alist): Add dash.  (Bug#16938)
+
+2014-03-05  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frameset.el (frameset--initial-params): Filter out null entries.
+
+2014-03-05  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (window-min-height, window-min-width):
+       Rewrite doc-strings.
+       (window-body-size): Add PIXELWISE argument to make it consistent
+       with its callees.
+
+2014-03-05  Juanma Barranquero  <lekktu@gmail.com>
+
+       * finder.el (finder-mode-map, finder-mode-syntax-table):
+       Revert part of 2014-02-28 change.
+
+2014-03-05  Lars Ingebrigtsen  <larsi@gnus.org>
+
+       * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
+       (eww-setup-buffer): Clear next/prev/etc more reliably.
+       (eww-textarea-map): [tab] doesn't work on tty.
+       Reported by Mario Lang.
+
+       * net/shr.el (shr-map): Ditto.
+
+2014-03-04  Glenn Morris  <rgm@gnu.org>
+
+       * minibuffer.el (completion-hilit-commonality):
+       Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
+
+2014-03-04  Juanma Barranquero  <lekktu@gmail.com>
+
+       * hilit-chg.el (hilit-chg-unload-function): New function.
+       (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
+       (hilit-chg-map-changes): Prefer cardinal number to digit.
+       (hilit-chg-display-changes): Reflow docstring.
+       (highlight-changes-rotate-faces): Remove superfluous backslash.
+
+2014-03-04  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
+       `tramp-send-command-and-check'.
+
+2014-03-04  Juanma Barranquero  <lekktu@gmail.com>
+
+       * hexl.el (hexl-address-region, hexl-ascii-region)
+       (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
+       (hexl-backward-short, hexl-forward-short, hexl-backward-word)
+       (hexl-forward-word, hexl-previous-line, hexl-next-line):
+       Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
+       (hexl-mode): Doc fix.
+       (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
+       (hexl-mode-ruler): Fix typos in docstrings.
+
+       * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
+       (strokes-character, strokes-get-grid-position, strokes-list-strokes):
+       Remove superfluous backslashes.
+       (strokes-last-stroke, strokes-global-map, strokes-mode):
+       Reflow docstrings.
+       (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
+       (strokes-xpm-for-compressed-string): Use quotes with buffer name.
+       (strokes-distance-squared, strokes-global-set-stroke)
+       (strokes-global-set-stroke-string): Doc fixes.
+       (strokes-help): Fix typos; reflow docstring.
+
+2014-03-04  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (window-in-direction): Fix doc-string.
+
+2014-03-04  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/smie.el (smie-config-guess): Doc fix.
+       Explicit error if no grammar.
+       (smie-config-save): Doc fix.  Fix quote typo.
+
+2014-03-04  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
+       electric-indent-mode-hook if we obey electric-indent-mode.
+       (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
+       decide whether we obey electric-indent-mode.
+       (c-change-set-fl-decl-start, c-extend-after-change-region):
+       Silence warnings.
+       (c-electric-indent-mode-hook): Assume we do want to obey
+       electric-indent-mode.
+
+       * electric.el (electric-indent-mode-has-been-called): Remove.
+       (electric-indent-mode): Fix accordingly.
+
+       * files.el (hack-local-variables): Mention file name in warning.
+
+       * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
+
+2014-03-04  Michal Nazarewicz  <mina86@mina86.com>
+
+       * binding.el: Add comment describing why C-d binds to `delete-char'.
+       * simple.el (delete-forward-char): Mark as interactive-only.
+
+2014-03-03  Juanma Barranquero  <lekktu@gmail.com>
+
+       * icomplete.el (icomplete-completions):
+       Follow-up to 2014-03-01 change.
+
+       * icomplete.el: Miscellaneous doc fixes.
+       Use Icomplete everywhere instead of icomplete for consistency.
+       (icomplete-max-delay-chars): Fix typo.
+       (icomplete-mode): Use \[].
+       (icomplete-tidy, icomplete-exhibit): Reflow.
+       (icomplete-minibuffer-setup-hook, icomplete-completions):
+       Remove superfluous backlashes.
+
+       * ido.el: Miscellaneous doc fixes.
+       Use Ido everywhere instead of ido or `ido' for consistency.
+       (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
+       (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
+       (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
+       (ido-separator): Extract obsolescence info from docstring and declare
+       with make-obsolete-variable.
+       (ido-minibuffer-setup-hook): Simplify example.
+       (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
+       (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
+       (ido-completion-help, ido-completing-read): Fix typos in docstrings.
+       (ido-everywhere): Reflow docstring.
+       (ido-toggle-vc): Doc fix.
+       (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
+       of long list of keybindings.
+
+2014-03-03  Glenn Morris  <rgm@gnu.org>
+
+       * frame.el (display-pixel-height, display-pixel-width)
+       (display-mm-dimensions-alist, display-mm-height)
+       (display-mm-width): Doc tweaks.
+
+2014-03-02  Barry O'Reilly  <gundaetiapo@gmail.com>
+
+       * simple.el (undo-elt-in-region): Fix buffer corruption for edge
+       case of undo in region.
+
+2014-03-02  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (fit-window-to-buffer): Fix argument in window-size
+       call when window is horizontally combined.
+
+2014-03-02  Juanma Barranquero  <lekktu@gmail.com>
+
+       * icomplete.el (icomplete-completions): Use string-width.
+       Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
+
+2014-03-01  Dmitry Gutov  <dgutov@yandex.ru>
+
+       * progmodes/ruby-mode.el (ruby-font-lock-keywords):
+       Highlight regexp options.  (Bug#16914)
+
+2014-03-01  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (window--max-delta-1): Round down when calculating
+       how many lines/columns we can get from a window.
+
+2014-03-01  Glenn Morris  <rgm@gnu.org>
+
+       * isearch.el (search-invisible): Doc fix.
+
+       * minibuffer.el (completion-hilit-commonality):
+       Make `base-size' argument optional.  Short-cut if `prefix-len' is 0.
+       * comint.el (comint-dynamic-list-completions): Doc fix.
+       * comint.el (comint-dynamic-list-completions):
+       * filecache.el (file-cache-minibuffer-complete):
+       * tempo.el (tempo-display-completions):
+       * eshell/em-hist.el (eshell-list-history):
+       Replace use of obsolete argument of display-completion-list.
+
+2014-03-01  Juanma Barranquero  <lekktu@gmail.com>
+
+       * icomplete.el (icomplete-completions):
+       Revert back to using "..." when ?… cannot be displayed.
+
+2014-02-28  Juanma Barranquero  <lekktu@gmail.com>
+
+       * finder.el (finder-unload-function): New function.
+
+2014-02-28  Juanma Barranquero  <lekktu@gmail.com>
+
+       * dframe.el (dframe-detach):
+       * find-dired.el (find-dired, find-name-dired):
+       * finder.el (finder-mode-map, finder-mode-syntax-table)
+       (finder-headmark, finder-select, finder-mouse-select):
+       Fix docstring typos.
+
+2014-02-28  Martin Rudalics  <rudalics@gmx.at>
+
+       Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
+       * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
+       Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
+       Fix doc-string based on a suggestion by Nicolas Richard
+       <theonewiththeevillook@yahoo.fr>.
+       * help.el (with-help-window): Fix doc-string.
+
+2014-02-28  Ivan Kanis  <ivan@kanis.fr>
+
+       * net/shr.el (shr-image-animate): New option.
+       (shr-put-image): Respect shr-image-animate.
+
+2014-02-28  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp-adb.el (tramp-adb-parse-device-names):
+       Use `accept-process-output'.
+       (tramp-adb-handle-file-truename): Cache the localname only.
+       (tramp-adb-handle-make-directory)
+       (tramp-adb-handle-delete-directory): Flush file properties correctly.
+       (tramp-adb-handle-set-file-modes): Do not raise an error when file
+       modes cannot be changed.
+
+       * net/tramp-cache.el (tramp-flush-directory-property): Remove also
+       file properties of symlinks.
+
+2014-02-28  Per Starbäck  <starback@stp.lingfil.uu.se>
+
+       * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
+       required/optional fields to match development biblatex.  (Bug#16781)
+
+2014-02-28  Andy Sawyer  <andy.sawyer@gmail.com>  (tiny change)
+
+       * saveplace.el (toggle-save-place):
+       Fix argument handling.  (Bug#16673)
+
+2014-02-28  Glenn Morris  <rgm@gnu.org>
+
+       * minibuffer.el (completions-first-difference)
+       (completions-common-part, completion-hilit-commonality): Doc fixes.
+
+2014-02-28  Karl Berry  <karl@gnu.org>
+
+       * info.el (Info-mode-map): Add H for describe-mode,
+       to synchronize with standalone Info.
+
+2014-02-28  Emilio C. Lopes  <eclig@gmx.net>
+
+       * progmodes/sql.el (sql-interactive-mode):
+       Avoid setting global comint-input-ring-separator.  (Bug#16814)
+
+2014-02-27  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/dbus.el (dbus--init-bus): Declare function.
+       (dbus-path-local, dbus-interface-local): New defconst.
+       (dbus-init-bus): Use them.
+       (dbus-return-values-table): Extend doc.
+       (dbus-handle-bus-disconnect): Extend error message.
+
+2014-02-27  Juanma Barranquero  <lekktu@gmail.com>
+
+       * subr.el (y-or-n-p): Fix double space issue in message.
+
 2014-02-27  Michael Albinus  <michael.albinus@gmx.de>
 
        * net/tramp.el (tramp-call-process): Improve trace message.
        `tramp-adb-command-exit-status'.  Change all callees.
        (tramp-adb-handle-file-attributes)
        (tramp-adb-handle-directory-files-and-attributes): Use it.
-       (tramp-adb-ls-output-name-less-p): Use
-       `directory-listing-before-filename-regexp'.
+       (tramp-adb-ls-output-name-less-p):
+       Use `directory-listing-before-filename-regexp'.
        (tramp-adb-handle-delete-directory): Flush also file properties of
        the truename of directory.
        (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
 
 2014-02-22  Daniel Colascione  <dancol@dancol.org>
 
-       * net/secrets.el (secrets-create-item,secrets-search-items): Check
-       that attribute values are strings, avoiding the construction of
-       invalid dbus messages.
+       * net/secrets.el (secrets-create-item, secrets-search-items):
+       Check that attribute values are strings, avoiding the construction
+       of invalid dbus messages.
 
 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
 
        (sql-oracle-options): New default value ("-L").
        (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
        (sql-placeholders-filter): Correct placeholder pattern.
-       (sql-read-table-name): Bug fix. Detect absence of SQLi process.
+       (sql-read-table-name): Bug fix.  Detect absence of SQLi process.
        (sql-login-delay): New variable.
        (sql-product-interactive): Use it.
 
 
 2014-02-04  Fabián Ezequiel Gallina  <fgallina@gnu.org>
 
-       * progmodes/python.el (python-shell-send-string):
+       * progmodes/python.el (python-shell-send-string)
        (python-shell-send-string-no-output): Fix docstring (Bug#16547).
 
 2014-02-04  Anders Lindgren  <andlind@gmail.com>
 
 2014-02-02  Daniel Colascione  <dancol@dancol.org>
 
-       * progmodes/cc-defs.el (c-find-assignment-for-mode): Make loading cc-mode silent.
+       * progmodes/cc-defs.el (c-find-assignment-for-mode):
+       Make loading cc-mode silent.
 
 2014-02-02  Daniel Colascione  <dancol@dancol.org>
 
-       * comint.el (comint-prompt-read-only): Change doc to suggest remap keybinding.
+       * comint.el (comint-prompt-read-only): Change doc to suggest
+       remap keybinding.
 
 2014-02-02  Glenn Morris  <rgm@gnu.org>
 
 
        * international/quail.el (quail-define-package): Doc fix.
 
-       * emacs-lisp/authors.el (authors-valid-file-names):
+       * emacs-lisp/authors.el (authors-valid-file-names)
        (authors-renamed-files-alist): Additions.
 
        * vc/vc-git.el (vc-git-print-log): Remove --follow;
        * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
 
        Make M-x authors return zero *Authors Errors* from current logs.
-       * emacs-lisp/authors.el (authors-obsolete-files-regexps):
+       * emacs-lisp/authors.el (authors-obsolete-files-regexps)
        (authors-ignored-files): Add some entries, remove others.
        (authors-ambiguous-files, authors-valid-file-names):
        Add some entries.
        Spelling fixes.
        * emacs-lisp/generic.el (generic--normalize-comments):
        Rename from generic--normalise-comments.  All uses changed.
-       * play/bubbles.el (bubbles--neighborhood-score):
+       * play/bubbles.el (bubbles--neighborhood-score)
        (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
        (bubbles--neighborhood-available)
        (bubbles--update-neighborhood-score):
 
 2013-12-25  Fabián Ezequiel Gallina  <fgallina@gnu.org>
 
-       * progmodes/python.el:
-       (python-nav--lisp-forward-sexp): New function.
+       * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
        (python-nav--lisp-forward-sexp-safe): Use it.  Rename from
        python-nav-lisp-forward-sexp-safe.
        (python-nav--forward-sexp): New argument SAFE allows switching
        * emacs-lisp/debug.el (debug): Use window-total-height instead
        of window-total-size.
        * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
-       * help.el (describe-bindings-internal): Call help-buffer
+       * help.el (describe-bindings-internal): Use help-buffer as
+       argument for with-help-window.
        (temp-buffer-max-width): New option.
        (resize-temp-buffer-window, help-window-setup)
        (with-help-window): Rewrite.
        (find-buffer-file-type-coding-system): Mark obsolete.
        (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
        find-file-not-found-set-buffer-file-coding-system.
-       (w32-untranslated-filesystem-list, w32-untranslated-canonical-name):
+       (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
        (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
-       (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p):
+       (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
        (w32-direct-print-region-helper, w32-direct-print-region-function)
        (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
        * startup.el (normal-top-level-add-subdirs-to-load-path):
 
 2013-10-27  Xue Fuqiao  <xfq.free@gmail.com>
 
-       * image.el (defimage):
-       (image-load-path): Doc fixes.
+       * image.el (defimage, image-load-path): Doc fixes.
 
 2013-10-27  Alan Mackenzie  <acm@muc.de>
 
        (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
        (verilog-at-close-struct-p): New functions.
        (verilog-beg-block-re-ordered, verilog-extended-case-re)
-       (verilog-forward-sexp, verilog-set-auto-endcomments):
+       (verilog-forward-sexp, verilog-set-auto-endcomments)
        (verilog-leap-to-case-head): Handle "unique0" case.
        (verilog-in-constraint-re): New constant.
        (verilog-keywords, verilog-type-font-keywords):
        (ruby-smie-rules): Adjust handling of open-paren, now that it's never
        followed by implicit semi-colons.  Add rule for string concatenation
        and for indentation at BOB.
-       (ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
+       (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
 
        * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
        calling next-sexp, since next-token may have skipped chars which
 
 2013-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
 
-       * emacs-lisp/cl-macs.el:
-       (cl--loop-destr-temps): Remove.
+       * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
        (cl--loop-iterator-function): Rename from cl--loop-map-form and change
        its convention.
        (cl--loop-set-iterator-function): New function.
 2013-08-04  Xue Fuqiao  <xfq.free@gmail.com>
 
        * vc/vc.el (vc-ignore): Rewrite.
-       (vc-default-ignore-completion-table):
-       (vc--read-lines):
+       (vc-default-ignore-completion-table, vc--read-lines)
        (vc--add-line, vc--remove-regexp): New functions.
 
        * vc/vc-svn.el (vc-svn-ignore): Doc fix.
        (vc-svn-ignore-completion-table): New function.
 
        * vc/vc-hg.el (vc-hg-ignore): Rewrite.
-       (vc-hg-ignore-completion-table):
+       (vc-hg-ignore-completion-table)
        (vc-hg-find-ignore-file): New functions.
 
        * vc/vc-git.el (vc-git-ignore): Rewrite.
-       (vc-git-ignore-completion-table):
+       (vc-git-ignore-completion-table)
        (vc-git-find-ignore-file): New functions.
 
        * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
 
        * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
-       (vc-bzr-ignore-completion-table):
+       (vc-bzr-ignore-completion-table)
        (vc-bzr-find-ignore-file): New functions.
 
 2013-08-03  Juanma Barranquero  <lekktu@gmail.com>
        * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
        Remove functions.
 
-       * autorevert.el (auto-revert-use-notify):
+       * autorevert.el (auto-revert-use-notify)
        (auto-revert-notify-add-watch):
        * net/tramp.el (tramp-file-name-for-operation):
        * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
 
 2013-07-24  Xue Fuqiao  <xfq.free@gmail.com>
 
-       * ido.el (ido-fractionp):
-       (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
-       (ido-max-file-prompt-width, ido-unc-hosts-cache)
-       (ido-max-directory-size, ido-max-dir-file-cache)
+       * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
+       (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
+       (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
        (ido-decorations): Doc fix.
 
        * ansi-color.el: Fix old URL.
 
 2013-07-12  Dmitry Gutov  <dgutov@yandex.ru>
 
-       * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
+       * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
        (ruby-syntax-expansion-allowed-p): Support array of symbols, for
        Ruby 2.0.
        (ruby-font-lock-keywords): Distinguish calls to functions with
 
 2013-07-06  Michael Albinus  <michael.albinus@gmx.de>
 
-       * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
+       * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
        (tramp-sh-file-inotifywait-process-filter): Handle file names with
        spaces.
 
        (dired-safe-switches-p, dired-switches-escape-p)
        (dired-insert-old-subdirs, dired-move-to-end-of-filename)
        (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
-       (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
+       (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
        (dired-goto-next-nontrivial-file): Use `string-match-p'.
        (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
        (dired-toggle-marks, dired-mark-files-containing-regexp)
        * eshell/em-term.el (eshell-visual-command-p): New function.
        (eshell-term-initialize): Move long lambda to separate function
        eshell-visual-command-p.
-       * eshell/em-dirs.el (eshell-dirs-initialise):
+       * eshell/em-dirs.el (eshell-dirs-initialize):
        * eshell/em-script.el (eshell-script-initialize):
        Add missing #' to lambda.
 
 
 2013-06-05  Leo Liu  <sdl.web@gmail.com>
 
-       Re-implement smie matching block highlight using
+       Re-implement SMIE matching block highlight using
        show-paren-data-function.  (Bug#14395)
        * emacs-lisp/smie.el (smie-matching-block-highlight)
        (smie--highlight-matching-block-overlay)
 
        * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
        (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
-       (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
+       (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
        (tramp-find-inline-compress): Improve traces.
        (tramp-maybe-send-script): Check for Perl binary.
        (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
 2013-04-19  Masatake YAMATO  <yamato@redhat.com>
 
        * progmodes/sh-script.el (sh-imenu-generic-expression):
-       Handle function names with a single character.   (Bug#14111)
+       Handle function names with a single character.  (Bug#14111)
 
-2013-04-19  Dima Kogan  <dima@secretsauce.net>    (tiny change)
+2013-04-19  Dima Kogan  <dima@secretsauce.net>  (tiny change)
 
        * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
        for subroutines defined in an eval (bug#14182).