* lisp/emacs-lisp/package.el (package-activate-1): Don't let a missing
[bpt/emacs.git] / lisp / ChangeLog
index 7cbf733..d71087f 100644 (file)
@@ -1,3 +1,663 @@
+2013-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/package.el (package-activate-1): Don't let a missing
+       <pkg>-autoloads.el file stop us.
+
+       * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
+       warnings, and factor out common code.
+
+2013-09-03  Dmitry Gutov  <dgutov@yandex.ru>
+
+       * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
+       two-character operators and whether the character preceding them
+       changes their meaning (Bug#15208).
+
+2013-09-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
+
+       Format code sent to Python shell for robustness.
+       * progmodes/python.el (python-shell-buffer-substring):
+       New function.
+       (python-shell-send-region, python-shell-send-buffer): Use it.
+
+2013-09-02  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp-compat.el (tramp-compat-user-error): Move it ...
+       * net/tramp.el (tramp-user-error): ... here.
+       (tramp-find-method, tramp-check-proper-host)
+       (tramp-dissect-file-name, tramp-debug-message)
+       (tramp-handle-shell-command):
+       * net/tramp-adb.el (tramp-adb-handle-shell-command):
+       * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
+
+       * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
+
+2013-09-02  Martin Rudalics  <rudalics@gmx.at>
+
+       * avoid.el (mouse-avoidance-point-position)
+       (mouse-avoidance-too-close-p): Handle case where posn-at-point
+       returns nil.
+
+2013-09-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
+
+       * progmodes/python.el (python-shell-completion-get-completions):
+       Drop use of deleted `comint-last-prompt-overlay'.
+       (python-nav-if-name-main): New command.
+
+2013-09-01  Glenn Morris  <rgm@gnu.org>
+
+       * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
+       Avoid leading space in $wins.  Otherwise the sed command used by
+       eg compile-main ends up containing "/*.el".  (Bug#15170)
+
+       * frame.el (frame-background-mode): Doc fix.  (Bug#15226)
+
+2013-08-30  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/bytecomp.el (byte-recompile-directory):
+       Fix is-this-a-directory logic.  (Bug#15220)
+
+2013-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * textmodes/css-mode.el: Use SMIE.
+       (css-smie-grammar): New var.
+       (css-smie--forward-token, css-smie--backward-token)
+       (css-smie-rules): New functions.
+       (css-mode): Use them.
+       (css-navigation-syntax-table): Remove var.
+       (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
+       (css-indent-calculate, css-indent-line): Remove functions.
+
+       Misc changes to reduce use of `(lambda...); and other cleanups.
+       * cus-edit.el: Use lexical-binding.
+       (customize-push-and-save, customize-apropos)
+       (custom-buffer-create-internal): Use closures.
+       * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
+       * progmodes/ada-xref.el: Use setq.
+       * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
+       * dframe.el: Use lexical-binding.
+       (dframe-frame-mode): Fix calling convention for hooks.  Use a closure.
+       * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
+       * descr-text.el: Use lexical-binding.
+       (describe-text-widget, describe-text-sexp, describe-property-list):
+       Use closures.
+       * comint.el (comint-history-isearch-push-state): Use a closure.
+       * calculator.el: Use lexical-binding.
+       (calculator-number-to-string): Make it work with lexical-binding.
+       (calculator-funcall): Same and use cl-letf.
+
+       * emacs-lisp/lisp.el (lisp--company-doc-buffer)
+       (lisp--company-doc-string, lisp--company-location): New functions.
+       (lisp-completion-at-point): Use them to improve Company support.
+
+       * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
+       params of lambda expressions.
+       (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
+       (ruby-smie--opening-pipe-p): New function.
+       (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
+       symbols and matched |...| for formal params.
+       (ruby-smie-rules): Don't let the formal params of a "do" prevent it
+       from being treated as hanging.  Handle "rescue".
+
+2013-08-29  Glenn Morris  <rgm@gnu.org>
+
+       * progmodes/cc-engine.el (c-pull-open-brace):
+       Move definition before use.
+
+2013-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
+       are immutable.  Don't use `unsafe' any more.
+       (cl--defsubst-expand): Don't substitute at the same time as keeping
+       a residual unused let-binding.  Don't use `unsafe' any more.
+
+2013-08-29  Glenn Morris  <rgm@gnu.org>
+
+       * calendar/cal-china.el (calendar-chinese-year-cache):
+       Recenter on 2015.
+
+       * nxml/nxml-util.el (nxml-debug-clear-inside):
+       Use cl-loop rather than loop.
+
+       * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
+
+       * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
+
+2013-08-28  Glenn Morris  <rgm@gnu.org>
+
+       * progmodes/antlr-mode.el: No need to require cc-mode twice.
+
+       * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
+
+       * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
+
+2013-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * simple.el (repeat-complex-command--called-interactively-skip):
+       New function.
+       (repeat-complex-command): Use it (bug#14136).
+
+       * progmodes/cc-mode.el: Minor cleanup of var declarations.
+       (c-define-abbrev-table): Add `doc' argument.
+       (c-mode-abbrev-table, c++-mode-abbrev-table)
+       (objc-mode-abbrev-table, java-mode-abbrev-table)
+       (idl-mode-abbrev-table, pike-mode-abbrev-table)
+       (awk-mode-abbrev-table): Use it.
+       (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
+       (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
+       (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
+       (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
+       Move initialization into the declaration; and remove any
+       autoload cookie.
+
+       * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
+       and dynamic let binding.
+
+       * vc/smerge-mode.el: Remove redundant :group args.
+
+       * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
+       to load-path.
+
+2013-08-28  Juri Linkov  <juri@jurta.org>
+
+       * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
+       arg DONT-DOWNCASE-LAST of `read-key-sequence'.
+       (isearch-other-meta-char): Handle an undefined shifted printing
+       character by downshifting it.  (Bug#15200)
+
+2013-08-28  Juri Linkov  <juri@jurta.org>
+
+       * isearch.el (isearch-search): Change regexp error message for
+       non-regexp searches.  (Bug#15166)
+
+2013-08-28  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
+       for portability to hosts where /bin/sh has problems.
+
+2013-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
+
+2013-08-27  Juri Linkov  <juri@jurta.org>
+
+       * isearch.el (isearch-other-meta-char): Don't store kmacro commands
+       in the keyboard macro.  (Bug#15126)
+
+2013-08-27  Juri Linkov  <juri@jurta.org>
+
+       * isearch.el (isearch-quote-char): Comment out converting unibyte
+       to multibyte, thus syncing with its `quoted-insert' counterpart.
+       (Bug#15166)
+
+2013-08-27  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (display-buffer-use-some-window): Add missing
+       argument in call of get-largest-window (Bug#15185).
+       Reported by Stephen Leake.
+
+2013-08-27  Glenn Morris  <rgm@gnu.org>
+
+       * emacs-lisp/package.el (package-buffer-info): Fix message typo.
+
+2013-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * progmodes/python.el (python-font-lock-keywords): Don't return nil
+       from a matcher-function unless there's no more matches (bug#15161).
+
+2013-08-26  Michael Albinus  <michael.albinus@gmx.de>
+
+       * minibuffer.el: Revert change from 2013-08-20.
+
+       * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
+       with text property `tramp-default', if appropriate.
+       (tramp-check-proper-host): New defun.
+       (tramp-dissect-file-name): Do not check hostname.  Revert change
+       of 2013-03-18.
+       (tramp-backtrace): Make VEC-OR-PROC optional.
+
+       * net/tramp-adb.el (tramp-adb-maybe-open-connection):
+       * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
+       * net/tramp-sh.el (tramp-maybe-open-connection):
+       * net/tramp-smb.el (tramp-smb-maybe-open-connection):
+       Apply `tramp-check-proper-host'.
+
+2013-08-26  Tassilo Horn  <tsdh@gnu.org>
+
+       * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
+       lambda expression in order to have `describe-variable' display it.
+
+2013-08-26  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
+       BUF can be optional.  (Bug#15186)
+
+2013-08-25  Xue Fuqiao  <xfq.free@gmail.com>
+
+       * progmodes/flymake.el (flymake-get-real-file-name-function):
+       Fix broken customization.  (Bug#15184)
+
+2013-08-25  Alan Mackenzie  <acm@muc.de>
+
+       Improve indentation of bracelists defined by macros (without "=").
+
+       * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
+       expansion begins with "{", regard it as bracelist when it doesn't
+       contain a ";".
+
+       Parse C++ inher-intro when there's a template split over 2 lines.
+
+       * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
+       rigorously the search for "class" etc. followed by ":".
+
+       * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
+       random languages a regexp which never matches rather than nil.
+
+       Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
+
+       * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
+       (c-awk-regexp-one-line-possibly-open-char-list-re)
+       (c-awk-one-line-possibly-open-regexp-re)
+       (c-awk-one-line-non-syn-ws*-re): Remove.
+       (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
+       (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
+       (c-awk-space*-unclosed-regexp-/-re): New constants.
+       (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
+       aren't regexp delimiters.
+
+       * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
+       handling for a rare situation in AWK Mode involving unterminated
+       strings/regexps.
+
+2013-08-23  Glenn Morris  <rgm@gnu.org>
+
+       * files.el (auto-mode-alist): Use sh-mode for .bash_history.
+
+       * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
+
+       * files.el (create-file-buffer): If the result would begin with
+       spaces, prepend a "|" instead of removing them.  (Bug#15162)
+
+2013-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
+       text-properties (bug#15155).
+
+       * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
+       exist any more.
+       (calc-keypad-redraw): Remove unused var `pad'.
+       (calc-keypad-press): Remove unused var `menu'.
+
+2013-08-23  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (display-buffer-pop-up-frame):
+       Call pop-up-frame-function with BUFFER current so `make-frame' will
+       use it as the new frame's buffer (Bug#15133).
+
+2013-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * calendar/timeclock.el: Minor cleanups.
+       (timeclock-ask-before-exiting, timeclock-use-display-time):
+       Use `symbol'.
+       (timeclock-modeline-display): Define as alias before the
+       actual definition.
+       (timeclock-mode-line-display): Use define-minor-mode.
+       (timeclock-day-list-template): Make it a function, add an argument.
+       (timeclock-day-list-required, timeclock-day-list-length)
+       (timeclock-day-list-debt, timeclock-day-list-span)
+       (timeclock-day-list-break): Adjust calls accordingly.
+
+2013-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
+       Use read--expression so that completion works again.
+
+2013-08-21  Sam Steingold  <sds@gnu.org>
+
+       Add rudimentary inferior shell interaction
+       * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
+       (sh-set-shell): Reset it.
+       (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
+       New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
+
+2013-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * align.el: Use lexical-binding.
+       (align-region): Simplify accordingly.
+
+2013-08-20  Michael Albinus  <michael.albinus@gmx.de>
+
+       * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
+
+       * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
+       `non-essential' up.
+
+2013-08-17  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp.el:
+       * net/tramp-adb.el:
+       * net/tramp-cmds.el:
+       * net/tramp-ftp.el:
+       * net/tramp-gvfs.el:
+       * net/tramp-gw.el:
+       * net/tramp-sh.el: Don't wrap external variable declarations by
+       `eval-when-compile'.
+
+2013-08-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
+       now that Emacs supports ImageMagick animations.
+
+2013-08-16  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp-cmds.el (top): Don't declare `buffer-name'.
+       (tramp-append-tramp-buffers): Rewrite buffer local variables part.
+
+2013-08-16  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (mouse-autoselect-window-select): Do autoselect when
+       mouse pointer is on margin.
+
+2013-08-16  William Parsons  <wbparsons@alum.mit.edu>  (tiny change)
+
+       * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV.  (Bug#1972)
+
+2013-08-16  Glenn Morris  <rgm@gnu.org>
+
+       * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
+       Handle "Remote Directory" response of some clients.  (Bug#15058)
+
+       * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
+       Tweak warning.  (Bug#14926)
+
+       * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
+       (menu-bar-tools-menu): Simplify news and mail items.  (Bug#15095)
+
+       * image-mode.el (image-mode-map): Add menu items to reverse,
+       increase, decrease, reset animation speed.
+       (image--set-speed, image-increase-speed, image-decrease-speed)
+       (image-reverse-speed, image-reset-speed): New functions.
+       (image-mode-map): Add bindings for speed commands.
+
+       * image.el (image-animate-get-speed, image-animate-set-speed):
+       New functions.
+       (image-animate-timeout): Respect image :speed property.
+
+2013-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
+       previous line (bug#15101).
+       (debugger-eval-expression, debugger-record-expression):
+       Use read--expression (bug#15102).
+
+2013-08-15  Michael Albinus  <michael.albinus@gmx.de>
+
+       Remove byte compiler warnings, visible when compiling with
+       `byte-compile-force-lexical-warnings' set to t.
+
+       * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
+       (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
+       (tramp-handle-unhandled-file-name-directory)
+       (tramp-handle-file-notify-add-watch, tramp-action-login)
+       (tramp-action-succeed, tramp-action-permission-denied)
+       (tramp-action-terminal, tramp-action-process-alive): Prefix unused
+       arguments with "_".
+
+       * net/tramp-adb.el (tramp-adb-parse-device-names)
+       (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
+       (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
+       (tramp-adb-handle-file-truename): Remove unused arguments.
+
+       * net/tramp-cache.el (tramp-flush-directory-property)
+       (tramp-flush-connection-property, tramp-list-connections)
+       (tramp-parse-connection-properties): Prefix unused arguments with "_".
+
+       * net/tramp-compat.el (tramp-compat-make-temp-file):
+       Rename FILENAME to F.
+
+       * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
+       (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
+       (tramp-zeroconf-parse-workstation-device-names)
+       (tramp-zeroconf-parse-webdav-device-names)
+       (tramp-synce-parse-device-names): Prefix unused arguments with "_".
+
+       * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
+       (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
+
+       * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
+       arguments.
+       (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
+       (tramp-sh-handle-insert-file-contents-literally)
+       (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
+       with "_".
+       (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
+       Remove unused variables.
+
+       * net/tramp-smb.el (tramp-smb-handle-copy-directory)
+       (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
+       (tramp-smb-read-file-entry): Prefix unused arguments with "_".
+
+       * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
+       Make them a defconst.
+       (tramp-uuencode-region): Remove unused variable.
+
+2013-08-14  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frameset.el (frameset--prop-setter): New function.
+       (frameset-prop): Add gv-setter declaration.
+       (frameset-filter-minibuffer): Deal with the case that the minibuffer
+       parameter was already set in FILTERED.  Doc fix.
+       (frameset--record-minibuffer-relationships): Allow saving a
+       minibufferless frame without its corresponding minibuffer frame.
+       (frameset--reuse-frame): Accept a match from an orphaned minibufferless
+       frame, if the frame id matches.
+       (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
+       frames before orphaned ones.
+       (frameset-restore): Warn about orphaned windows, instead of error out.
+
+2013-08-14  Martin Rudalics  <rudalics@gmx.at>
+
+       * window.el (window-make-atom): Don't overwrite parameter
+       already present.
+       (display-buffer-in-atom-window): Handle special case where we
+       split an already atomic window.
+       (window--major-non-side-window, display-buffer-in-side-window)
+       (window--side-check): Ignore minibuffer window when walking
+       window tree.
+       (window-deletable-p): Return 'frame only if no other frame uses
+       our minibuffer window.
+       (record-window-buffer): Run buffer-list-update-hook.
+       (split-window): Make sure window--check-frame won't destroy an
+       existing atomic window in case the new window gets nested
+       inside.
+       (display-buffer-at-bottom): Ignore minibuffer window when
+       walking window tree.  Don't split a side window.
+       (pop-to-buffer): Don't set-buffer here, the select-window call
+       should do that.
+       (mouse-autoselect-window-select): Autoselect only if we are in the
+       text portion of the window.
+
+2013-08-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * net/shr.el (shr-parse-image-data): New function to grab both the
+       data itself and the Content-Type.
+       (shr-put-image): Use it.
+
+       * net/eww.el (eww-display-image): Ditto.
+
+       * image.el (image-content-type-suffixes): New variable.
+
+2013-08-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
+
+       * progmodes/python.el (python-imenu--build-tree)
+       (python-imenu--put-parent): Simplify and Fix (GH bug 146).
+
+2013-08-13  Xue Fuqiao  <xfq.free@gmail.com>
+
+       * simple.el (backward-word): Mention the optional argument.
+
+2013-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * frameset.el (frameset--make): Rename constructor from make-frameset.
+       (frameset-p, frameset-valid-p): Don't autoload.
+       (frameset-valid-p): Use normal accessors.
+
+2013-08-13  Glenn Morris  <rgm@gnu.org>
+
+       * progmodes/compile.el (compile-command): Tweak example in doc.
+       * obsolete/scribe.el (scribe-mode):
+       * progmodes/mixal-mode.el (mixal-mode): Quote buffer name.  (Bug#15053)
+
+       * mail/feedmail.el (feedmail-confirm-outgoing)
+       (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
+
+       * cus-start.el (truncate-partial-width-windows): Fix type.
+
+       * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
+
+       * net/shr.el (shr-table-horizontal-line): Fix custom type.
+
+2013-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * emacs-lisp/timer.el (timer--time-setter): New function.
+       (timer--time): Use it as gv-setter.
+
+       * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
+       setter is not a symbol.
+
+2013-08-12  Grégoire Jadi  <daimrod@gmail.com>
+
+       * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
+       if sending fails.  This makes debugging easier.
+
+2013-08-12  Juanma Barranquero  <lekktu@gmail.com>
+
+       * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
+       2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
+       https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
+
+2013-08-12  Eli Zaretskii  <eliz@gnu.org>
+
+       * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
+
+2013-08-12  Glenn Morris  <rgm@gnu.org>
+
+       * format.el (format-annotate-function):
+       Handle read-only text properties in the source.  (Bug#14887)
+
+2013-08-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
+
+       * net/eww.el (eww-display-html): Ignore coding system errors.
+       One web site uses "utf-8lias" as the coding system.
+
+2013-08-11  Juanma Barranquero  <lekktu@gmail.com>
+
+       * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
+
+2013-08-10  Juanma Barranquero  <lekktu@gmail.com>
+
+       * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
+       (tutorial--detailed-help): Remove unused local variables.
+       (tutorial--save-tutorial-to): Use ignore-errors.
+       (help-with-tutorial): Use looking-at-p.
+
+       * view.el (view-buffer-other-window, view-buffer-other-frame):
+       Mark unused arguments.
+
+       * woman.el (woman-parse-colon-path, woman-parse-colon-path)
+       (woman-select-symbol-fonts, woman, woman-find-file)
+       (woman-insert-file-contents, woman-non-underline-faces):
+       Use string-match-p.
+       (woman1-unquote): Move declaration.
+
+       * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
+       (xml-parse-dtd): Use looking-at-p, string-match-p.  Mark unused
+       argument.  Remove unused local variable.
+       (xml-parse-elem-type): Use string-match-p.
+       (xml-substitute-numeric-entities): Use ignore-errors.
+
+       * calculator.el (calculator): Mark unused argument.
+       (calculator-paste, calculator-quit, calculator-integer-p):
+       Use ignore-errors.
+       (calculator-string-to-number, calculator-decimal, calculator-exp)
+       (calculator-op-or-exp): Use string-match-p.
+
+       * dired.el (dired-buffer-more-recently-used-p): Declare.
+       (dired-insert-set-properties, dired-insert-old-subdirs):
+       Use ignore-errors.
+
+       * dired-aux.el (dired-compress): Use ignore-errors.
+       (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
+       (dired-do-async-shell-command, dired-do-shell-command)
+       (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
+       (dired-insert-subdir-validate): Use string-match-p.
+       (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
+       (dired-add-entry): Use string-match-p, looking-at-p.
+       (dired-insert-subdir-newpos): Remove unused local variable.
+
+       * filenotify.el (file-notify-callback): Remove unused local variable.
+
+       * filesets.el (filesets-error): Mark unused argument.
+       (filesets-which-command-p, filesets-filter-dir-names)
+       (filesets-directory-files, filesets-get-external-viewer)
+       (filesets-ingroup-get-data): Use string-match-p.
+
+       * find-file.el (ff-other-file-name, ff-other-file-name)
+       (ff-find-the-other-file, ff-cc-hh-converter):
+       Remove unused local variables.
+       (ff-get-file-name): Use string-match-p.
+       (ff-all-dirs-under): Use ignore-errors.
+
+       * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
+       (follow-select-if-visible): Remove unused local variable.
+
+       * forms.el (read-file-filter): Move declaration.
+       (forms--make-format, forms--make-parser, forms-insert-record):
+       Quote function with #'.
+       (forms--update): Use string-match-p.  Quote function with #'.
+
+       * help-mode.el (help-dir-local-var-def): Mark unused argument.
+       (help-make-xrefs): Use looking-at-p.
+       (help-xref-on-pp): Use looking-at-p, ignore-errors.
+
+       * ibuffer.el (ibuffer-ext-visible-p): Declare.
+       (ibuffer-confirm-operation-on): Use string-match-p.
+
+       * msb.el (msb-item-handler, msb-dired-item-handler):
+       Mark unused arguments.
+
+       * ses.el (ses-decode-cell-symbol)
+       (ses-kill-override): Remove unused local variable.
+       (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
+       (ses-load): Use ignore-errors, looking-at-p.
+       (ses-jump-safe): Use ignore-errors.
+       (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
+
+       * tabify.el (untabify, tabify): Mark unused arguments.
+
+       * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
+       Mark unused argument.
+       (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
+       (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
+
+       * emacs-lisp/timer.el (timer--time): Define setter with
+       gv-define-setter to avoid deprecation warning.
+
+       * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
+       (*record-cmpl-statistics-p*): Remove (was commented out).
+       (cmpl-statistics-block): Remove (body was commented out).
+       All callers changed.
+       (add-completions-from-buffer, load-completions-from-file):
+       Remove unused variables.
+
+2013-08-09  Juanma Barranquero  <lekktu@gmail.com>
+
+       * filecache.el (file-cache-delete-file-list):
+       Print message only when told so.
+       (file-cache-files-matching): Use #' in mapconcat argument.
+
+       * ffap.el (ffap-url-at-point): Fix reference to variable
+       thing-at-point-default-mail-uri-scheme.
+
 2013-08-09  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * subr.el (define-error): New function.
        (allout-up-current-level, allout-end-of-level, allout-reindent-body)
        (allout-yank-processing, allout-process-exposed)
        (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
-       (allout-latex-verbatim-quote-curr-line): Removed unused variables.
+       (allout-latex-verbatim-quote-curr-line): Remove unused variables.
        * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
        (lisp-indent-defform): Mark ignored arguments.
        (lisp-indent-line): Mark ignored arguments.  Remove unused variables.