Fix <h1> and <tt> rendering
[emacs.git] / lisp / ChangeLog
blobc4c329ef5cee8beeefc3d42941e3d5b7ac4acfd6
1 2015-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
3         * net/shr.el (shr-use-fonts): New variable.
4         (shr-fill-text): Rename from "fold".
5         (shr-pixel-column, shr-pixel-region, shr-string-pixel-width): New
6         functions.
7         (shr-insert): Just insert, don't fill the text.  Filling is now
8         done afterwards per display unit.
9         (shr-fill-lines, shr-fill-line): New functions to fill text on a
10         per-unit base.
11         (shr-find-fill-point): Take a "beginning" parameter.
12         (shr-indent): Indent using the :width display parameter when using
13         fonts.
14         (shr-parse-style): Ignore "inherit" values, since we already do that.
15         (shr-tag-img): Remove the insertion states.
16         (shr-tag-blockquote): New-style filling.
17         (shr-tag-dd): Ditto.
18         (shr-tag-li): Ditto.
19         (shr-mark-fill): New function to mark lines that need filling.
20         (shr-tag-h1): Use a larger font.
21         (shr-tag-table-1): Get the natural and suggested widths in one
22         rendering.
23         (shr-tag-table): Create the "fixed" version of the table only once
24         so that we can cache data in the table.
25         (shr-insert-table): Get colspan calculations right by having
26         zero-width columns after colspan ones.
27         (shr-expand-alignments): New function to make :align-to specs work
28         right when rendered in one buffer and displayed in another one.
29         (shr-insert-table-ruler): Use :align-to to get the widths right.
30         (shr-make-table): Cache more.
31         (shr-make-table-1): Use the new <td> data layout.
32         (shr-pixel-buffer-width): New function.
33         (shr-render-td): Add a caching layer.
34         (shr-dom-max-natural-width): New function.
35         (shr-tag-h1): Don't use variable-pitch fonts on fontless rendering.
36         (shr-tag-tt): New function.
38 2015-02-10  Fabián Ezequiel Gallina  <fgallina@gnu.org>
40         python.el: Improved shell font lock respecting markers.  (Bug#19650)
42         * progmodes/python.el
43         (python-shell-font-lock-get-or-create-buffer): Use special buffer name.
44         (python-shell-font-lock-with-font-lock-buffer): Enable font lock.
45         (python-shell-font-lock-post-command-hook): Fontify by copying text
46         properties from fontified buffer to shell, keeping markers unchanged.
47         (python-shell-font-lock-turn-off): Fix typo.
48         (python-util-text-properties-replace-name): Delete function.
50 2015-02-09  Simen Heggestøyl  <simenheg@gmail.com>  (tiny change)
52         * textmodes/css-mode.el (css-smie-rules): Fix paren indent (bug#19815).
54 2015-02-09  Stefan Monnier  <monnier@iro.umontreal.ca>
56         * emacs-lisp/cl-generic.el (cl--generic-lambda): Use macroexp-parse-body.
58         * emacs-lisp/eieio-core.el (eieio-oset-default): Catch the unexpected
59         case where the default value would be re-interpreted as a form!
61 2015-02-09  Christopher Genovese  <genovese@cmu.edu>  (tiny change)
63         * help-fns.el (help-fns--signature): Keep doc for keymap.
65 2015-02-09  Kelly Dean  <kelly@prtime.org>
67         * desktop.el: Save mark-ring less verbosely.
68         (desktop-var-serdes-funs): New var.
69         (desktop-buffer-info, desktop-create-buffer): Use it.
70         (desktop-file-version): Update to 208.
72 2015-02-09  Leo Liu  <sdl.web@gmail.com>
74         * emacs-lisp/pcase.el (pcase-lambda): New Macro.  (Bug#19814)
76         * emacs-lisp/lisp-mode.el (el-kws-re): Include `pcase-lambda'.
78         * emacs-lisp/macroexp.el (macroexp-parse-body): New function.
80 2015-02-08  Paul Eggert  <eggert@cs.ucla.edu>
82         Port to platforms lacking test -a and -o
83         * Makefile.in (compile-clean):
84         * net/tramp-sh.el (tramp-find-executable):
85         Prefer '&&' and '||' to 'test -a' and 'test -o'.
87 2015-02-08  Artur Malabarba  <bruce.connor.am@gmail.com>
89         * newcomment.el (comment-line): Fix missing paren.
91 2015-02-08  Ulrich Müller  <ulm@gentoo.org>
93         * play/gamegrid.el: Update comment to reflect that the
94         'update-game-score' helper program is now setgid by default.
96 2015-02-08  David Kastrup  <dak@gnu.org>
98         * subr.el (apply-partially): Use lexical binding here.
100 2015-02-08  Artur Malabarba  <bruce.connor.am@gmail.com>
102         * newcomment.el (comment-line): New command.
104         * bindings.el (ctl-x-map): Bind to `C-x C-;'.
106 2015-02-08  Oleh Krehel  <ohwoeowho@gmail.com>
108         * outline.el (outline-show-entry): Fix one invisible char for the
109         file's last outline.  Fixes Bug#19493.
111 2015-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
113         * subr.el (indirect-function): Change advertised calling convention.
115 2015-02-08  Fabián Ezequiel Gallina  <fgallina@gnu.org>
117         python.el: Fix completion-at-point.  (Bug#19667)
119         * progmodes/python.el
120         (python-shell-completion-native-get-completions): Force process buffer.
121         (python-shell-completion-at-point): Handle case where call is not
122         in a shell buffer.
124 2015-02-08  Fabián Ezequiel Gallina  <fgallina@gnu.org>
126         python.el: Fix shell font-lock multiline input.  (Bug#19744)
128         * progmodes/python.el
129         (python-shell-font-lock-post-command-hook): Handle multiline input.
131 2015-02-08  Fabián Ezequiel Gallina  <fgallina@gnu.org>
133         python.el: Make shell font-lock respect markers.  (Bug#19650)
135         * progmodes/python.el (python-shell-font-lock-cleanup-buffer):
136         Use `erase-buffer`.
137         (python-shell-font-lock-comint-output-filter-function):
138         Handle newlines.
139         (python-shell-font-lock-post-command-hook): Respect markers on
140         text fontification.
142 2015-02-07  Fabián Ezequiel Gallina  <fgallina@gnu.org>
144         python.el: Keep eldoc visible while typing args.  (Bug#19637)
146         * progmodes/python.el (python-eldoc--get-symbol-at-point):
147         New function based on Carlos Pita <carlosjosepita@gmail.com> patch.
148         (python-eldoc--get-doc-at-point, python-eldoc-at-point): Use it.
150 2015-02-07  Fabián Ezequiel Gallina  <fgallina@gnu.org>
152         Fix hideshow integration.  (Bug#19761)
154         * progmodes/python.el
155         (python-hideshow-forward-sexp-function): New function based on
156         Carlos Pita <carlosjosepita@gmail.com> patch.
157         (python-mode): Make `hs-special-modes-alist` use it and initialize
158         the end regexp with the empty string to avoid skipping parens.
160 2015-02-07  Fabián Ezequiel Gallina  <fgallina@gnu.org>
162         * progmodes/python.el (python-check-custom-command): Do not use
163         defvar-local for compat with Emacs<24.3.
165 2015-02-07  Martin Rudalics  <rudalics@gmx.at>
167         * frame.el (frame-notice-user-settings):
168         Update `frame-size-history'.
169         (make-frame): Update `frame-size-history'.
170         Call `frame-after-make-frame'.
171         * faces.el (face-set-after-frame-default): Remove call to
172         frame-can-run-window-configuration-change-hook.
174 2015-02-06  Dmitry Gutov  <dgutov@yandex.ru>
176         * vc/vc-cvs.el (vc-cvs-dir-status-files): Don't pass DIR to
177         `vc-cvs-command' (bug#19732).
179 2015-02-06  Nicolas Petton <nicolas@petton.fr>
181         * emacs-lisp/seq.el (seq-mapcat, seq-partition, seq-group-by): New functions.
182         * emacs-lisp/seq.el (seq-drop-while, seq-take-while, seq-count)
183         (seq--drop-list, seq--take-list, seq--take-while-list): Better docstring.
185 2015-02-06  Artur Malabarba  <bruce.connor.am@gmail.com>
187         * doc-view.el (doc-view-kill-proc-and-buffer): Obsolete. Use
188         `image-kill-buffer' instead.
190 2015-02-06  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
192         * net/ldap.el (ldap-search-internal): Fix docstring.
194 2015-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
196         * subr.el (define-error): The error conditions may be constant
197         lists, so use `append' to concatenate them.
199 2015-02-06  Wolfgang Jenkner  <wjenkner@inode.at>
201         * net/network-stream.el (network-stream-open-tls): Respect the
202         :end-of-capability setting.
204 2015-02-05  Artur Malabarba  <bruce.connor.am@gmail.com>
206         * emacs-lisp/package.el (package--sort-by-dependence):
207         New function.  Return PACKAGE-LIST sorted by dependencies.
208         (package-menu-execute): Use it to delete packages in order.
209         (package--sort-deps-in-alist): New function.
210         (package-menu-mark-install): Can mark dependencies.
211         (package--newest-p): New function.
212         (package-delete): Don't delesect when deleting an older version of
213         an upgraded package.
215         * emacs-lisp/package.el: Add missing (require 'subr-x)
217 2015-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
219         * textmodes/css-mode.el (scss-smie--not-interpolation-p): Vars can be
220         hyphenated (bug#19263).
222         * textmodes/css-mode.el (css-fill-paragraph): Fix filling in presence
223         of variable interpolation (bug#19751).
225 2015-02-05  Era Eriksson  <era+emacs@iki.fi>
227         * json.el (json-end-of-file): New error (bug#19768).
228         (json-pop, json-read): Use it.
230 2015-02-05  Kelly Dean <kelly@prtime.org>
232         * help-mode.el (help-xref-interned): Pass BUFFER and FRAME to
233         `describe-variable'.
235         * help-fns.el (describe-function-or-variable): New function.
237         * help.el (help-map): Bind `describe-function-or-variable' to o.
238         (help-for-help-internal): Document o key.
240 2015-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
242         * emacs-lisp/eieio-compat.el (eieio--defmethod): Use new
243         special (:documentation ...) feature.
244         * emacs-lisp/eieio-core.el (eieio-make-class-predicate)
245         (eieio-make-child-predicate): Same.
246         (eieio-copy-parents-into-subclass): Remove unused arg.
247         (eieio-defclass-internal): Adjust call accordingly and remove redundant
248         `pname' var.
249         (eieio--slot-name-index): Remove unused arg `obj' and adjust all
250         callers accordingly.
252         * emacs-lisp/cconv.el (cconv--convert-function):
253         Add `docstring' argument.
254         (cconv-convert): Use it to handle the new (:documentation ...) form.
255         (cconv-analyze-form): Handle the new (:documentation ...) form.
257         * emacs-lisp/bytecomp.el:
258         (byte-compile-initial-macro-environment): Use macroexp-progn.
259         (byte-compile-cl-warn): Don't silence use of cl-macroexpand-all.
260         (byte-compile-file-form-defvar-function): Rename from
261         byte-compile-file-form-define-abbrev-table.
262         (defvaralias, byte-compile-file-form-custom-declare-variable): Use it.
263         (byte-compile): Use byte-compile-top-level rather than
264         byte-compile-lambda so we can compile non-values.
265         (byte-compile-form): Add warnings for failed uses of lexical vars via
266         quoted symbols.
267         (byte-compile-unfold-bcf): Improve message for failed inlining.
268         (byte-compile-make-closure): Handle new format of internal-make-closure
269         for dynamically-generated docstrings.
271         * delsel.el: Deprecate the `kill' option.  Use lexical-binding.
272         (open-line): Delete like all other commands, instead of killing.
273         (delete-active-region): Don't define any return any value.
275         * progmodes/python.el: Try to preserve compatibility with Emacs-24.
276         (python-mode): Don't assume eldoc-documentation-function has a non-nil
277         default.
279 2015-02-04  Sam Steingold  <sds@gnu.org>
281         * progmodes/python.el (python-indent-calculate-indentation):
282         Avoid the error when computing top-level indentation.
284 2015-02-04  Stefan Monnier  <monnier@iro.umontreal.ca>
286         * emacs-lisp/cl-generic.el (cl--generic-member-method): Fix paren typo.
288         * textmodes/flyspell.el: Use lexical-binding and cl-lib.
289         (mail-mode-flyspell-verify): Fix last change.
290         (flyspell-external-point-words, flyspell-large-region):
291         Avoid add-to-list on local vars.
293 2015-02-04  Tassilo Horn  <tsdh@gnu.org>
295         * emacs-lisp/package.el (package-installed-p): Fix typo causing
296         void-variable error.
298 2015-02-04  Artur Malabarba  <bruce.connor.am@gmail.com>
300         * image-mode.el (image-kill-buffer): New command.
301         (image-mode-map): Bind it to k.
303         * emacs-lisp/package.el (package-delete): Remove package from
304         `package-selected-packages' even if it can't be deleted.
305         (package-installed-p): Accept package-desc objects.
306         (package-install): Can be used to mark dependencies as
307         selected. When given a package-desc object which is already
308         installed, the package is not downloaded again, but it is marked
309         as selected (if it wasn't already).
310         (package-reinstall): Accept package-desc objects.
312 2015-02-03  Artur Malabarba  <bruce.connor.am@gmail.com>
314         * emacs-lisp/package.el (package-delete): Document NOSAVE.
315         (package--get-deps): delete-dups when ONLY is nil.
316         (package-autoremove): Warn the user if `package-selected-packages'
317         is empty.
319         (package--user-selected-p): New function.
320         (package-delete, package-install, package-install-from-buffer):
321         Use it
322         (package-selected-packages): Mention it.
324         (package-initialize): Don't populate `package-selected-packages'.
325         (package-install-user-selected-packages, package-autoremove):
326         Special handling for empty `package-selected-packages'.
327         (package-install): Fix when PKG is a package-desc.
329         (package-desc-status): Add "dependency" status to the Package
330         Menu.
331         (package-menu--status-predicate, package-menu--print-info)
332         (package-menu-mark-delete, package-menu--find-upgrades)
333         (package-menu--status-predicate, describe-package-1): Use it
335         (package--removable-packages): New function.
336         (package-autoremove): Use it.
337         (package-menu-execute): Offer to remove unneeded packages.
339         (package--read-pkg-desc, package-tar-file-info): Fix reference to
340         tar-desc.
342 2015-02-03  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
344         * emacs-lisp/package.el (package-reinstall): Don't change package's selected status.
345         (package-delete): New NOSAVE argument.
347 2015-02-03  Michael Albinus  <michael.albinus@gmx.de>
349         * net/tramp-sh.el (tramp-histfile-override): Fix docstring.
350         (tramp-open-shell, tramp-maybe-open-connection): Set also
351         HISTFILESIZE and HISTSIZE when needed.  (Bug#19731)
353 2015-02-02  Artur Malabarba  <bruce.connor.am@gmail.com>
355         * emacs-lisp/package.el (package--find-non-dependencies):
356         New function.
357         (package-initialize): Use it to populate `package-selected-packages'.
358         (package-menu-execute): Clean unnecessary `and'.
359         (package--get-deps): Fix returning duplicates.
361 2015-02-02  Michael Albinus  <michael.albinus@gmx.de>
363         * net/tramp-sh.el (tramp-histfile-override): Add another choice t.
364         Use it as default.
365         (tramp-open-shell, tramp-maybe-open-connection): Support it.
366         (Bug#19731)
368 2015-02-02  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
370         * emacs-lisp/package.el (package-delete): Remove package from
371         package-selected-packages.
372         (package-autoremove): Remove unneeded variable.
374 2015-02-01  Artur Malabarba  <bruce.connor.am@gmail.com>
376         * emacs-lisp/package.el (package-selected-packages): Fix :type
377         (package-install): Rename ARG to MARK-SELECTED.
378         (package--get-deps): Fix for indirect dependencies.
379         (package-used-elsewhere-p): Rename to
380         (package--used-elsewhere-p): New function.
381         (package-reinstall, package-user-selected-packages-install)
382         (package-autoremove): Use sharp-quote.
383         (package-user-selected-packages-install): Reindent and rename to
384         (package-install-user-selected-packages): New function.
386 2015-02-01  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
388         * emacs-lisp/package.el: Don't allow deleting dependencies.
390         (package-used-elsewhere-p): New function.
391         (package-delete): Use it, return now an error when trying to
392         delete a package used as dependency by another package.
394         Add a reinstall package command.
395         (package-reinstall): New function.
397         Add a package-autoremove command.
398         (package-selected-packages): New user var.
399         (package-install): Add an optional arg to notify interactive use.
400         Fix docstring. Save installed package to
401         packages-installed-directly.
402         (package-install-from-buffer): Same.
403         (package-user-selected-packages-install): Allow installing all
404         packages in packages-installed-directly at once.
405         (package--get-deps): New function.
406         (package-autoremove): New function.
407         (package-install-button-action): Call package-install with
408         interactive arg.
409         (package-menu-execute): Same but only for only for not installed
410         packages.
412 2015-01-31  Stefan Monnier  <monnier@iro.umontreal.ca>
414         * emacs-lisp/eieio.el (defclass): Use new eieio-make-class-predicate
415         and eieio-make-child-predicate.
416         (eieio-class-parents): Use eieio--class-object.
417         (slot-boundp, find-class, eieio-override-prin1): Avoid class-p.
418         (slot-exists-p): Use find-class.
420         * emacs-lisp/eieio-opt.el (eieio-help-class, eieio-help-constructor):
421         Use find-lisp-object-file-name, help-fns-short-filename and new calling
422         convention for eieio-class-def.
423         (eieio-build-class-list): Remove function, unused.
424         (eieio-method-def): Remove button type, unused.
425         (eieio-class-def): Inherit from help-function-def.
426         (eieio--defclass-regexp): New constant.
427         (find-function-regexp-alist): Use it.
428         (eieio--specializers-apply-to-class-p): Handle eieio--static as well.
429         (eieio-help-find-method-definition, eieio-help-find-class-definition):
430         Remove functions.
432         * emacs-lisp/eieio-core.el (eieio--check-type): Remove.
433         Use cl-check-type everywhere instead.
434         (eieio-class-object): Remove, use find-class instead when needed.
435         (class-p): Don't inline.
436         (eieio-object-p): Check more thoroughly, so we don't treat cl-structs,
437         such as eieio classes, as objects.  Don't inline.
438         (object-p): Mark as obsolete.
439         (eieio-defclass-autoload, eieio-defclass-internal, eieio-oref)
440         (eieio--generic-tagcode): Avoid `class-p'.
441         (eieio-make-class-predicate, eieio-make-child-predicate): New functions.
442         (eieio-defclass-internal): Use current-load-list rather than
443         `class-location'.
445         * emacs-lisp/cl-generic.el (cl--generic-search-method): Fix regexp.
447 2015-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
449         * emacs-lisp/backquote.el (backquote-delay-process): Don't reuse `s'
450         since it may be "equivalent" in some sense, yet different (bug#19734).
452 2015-01-30  Oleh Krehel  <ohwoeowho@gmail.com>
454         * outline.el (outline-font-lock-face): Add docstring.
455         (outline-invisible-p): Improve docstring.
456         (outline-invent-heading): Add docstring.
457         (outline-promote): Improve docstring.
458         (outline-demote): Improve docstring.
459         (outline-head-from-level): Improve docstring.
460         (outline-end-of-heading): Add docstring.
461         (outline-next-visible-heading): Improve docstring.
462         (outline-previous-visible-heading): Improve docstring.
463         (outline-hide-region-body): Improve docstring.
464         (outline-flag-subtree): Add docstring.
465         (outline-end-of-subtree): Add docstring.
466         (outline-headers-as-kill): Improve docstring.
468 2015-01-30  Oleh Krehel  <ohwoeowho@gmail.com>
470         * outline.el (outline-hide-entry): Rename from `hide-entry'.
471         (hide-entry): Declare as obsolete.
472         (outline-show-entry): Rename from `show-entry'.
473         (show-entry): Declare as obsolete.
474         (outline-hide-body): Rename from `hide-body'.
475         (hide-body): Declare as obsolete.
476         (outline-hide-region-body): Rename from `hide-region-body'.
477         (hide-region-body): Declare as obsolete.
478         (outline-show-all): Rename from `show-all'.
479         (show-all): Declare as obsolete.
480         (outline-hide-subtree): Rename from `hide-subtree'.
481         (hide-subtree): Declare as obsolete.
482         (outline-hide-leaves): Rename from `hide-leaves'.
483         (hide-leaves): Declare as obsolete.
484         (outline-show-subtree): Rename from `show-subtree'.
485         (show-subtree): Declare as obsolete.
486         (outline-hide-sublevels): Rename from `hide-sublevels'.
487         (hide-sublevels): Declare as obsolete.
488         (outline-hide-other): Rename from `hide-other'.
489         (hide-other): Declare as obsolete.
490         (outline-show-children): Rename from `show-children'.
491         (show-children): Declare as obsolete.
492         (outline-show-branches): Rename from `show-branches'.
493         (show-branches): Declare as obsolete.
495 2015-01-30  Oleh Krehel  <ohwoeowho@gmail.com>
497         * outline.el (outline-mode): Clean up docstring.
498         (font-lock-warning-face): Remove obsolete declaration.
499         (outline-font-lock-face): Remove obsolete comment.
501 2015-01-30  Oleh Krehel  <ohwoeowho@gmail.com>
503         * lisp/custom.el (defface): Set `indent' to 1.
505 2015-01-30  Oleh Krehel  <ohwoeowho@gmail.com>
507         * emacs-lisp/easy-mmode.el (define-minor-mode): Set `indent' to 1.
509 2015-01-30  Michal Nazarewicz  <mina86@mina86.com>
511         * lisp/files.el (save-buffers-kill-emacs): If `confirm-kill-emacs'
512         is set, but user has just been asked whether they really want to
513         kill Emacs (for example with a ‘Modified buffers exist; exit
514         anyway?’ prompt), do not ask them for another confirmation.
516 2015-01-29  Jay Belanger  <jay.p.belanger@gmail.com>
518         * lisp/calc/calc-units.el (calc-convert-exact-units): New function.
519         (calc-convert-units): Check for missing units.
520         (math-consistent-units-p): Strengthen the test for consistent units.
522         * lisp/calc/calc-ext.el (calc-init-extensions):  Autoload
523         `calc-convert-exact-units' and assign it a keybinding.
525         * lisp/calc/calc-help (calc-u-prefix-help): Add help for the
526         "un" keybinding.
528 2015-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
530         * emacs-lisp/cl.el (cl--function-convert): Simplify.
532 2015-01-28  Tassilo Horn  <tsdh@gnu.org>
534         * textmodes/reftex.el (reftex-syntax-table-for-bib): Give ( and )
535         punctuation syntax since to allow bibtex fields with values such
536         as {Test 1) and 2)} (bug#19205, bug#19707).
537         (reftex--prepare-syntax-tables): New function.
538         (reftex-mode): Use it.
540 2015-01-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
542         python.el: New non-global state dependent indentation engine.
543         (Bug#18319, Bug#19595)
544         * progmodes/python.el (python-syntax-comment-or-string-p):
545         Accept PPSS as argument.
546         (python-syntax-closing-paren-p): New function.
547         (python-indent-current-level)
548         (python-indent-levels): Mark obsolete.
549         (python-indent-context): Return more context cases.
550         (python-indent--calculate-indentation)
551         (python-indent--calculate-levels): New functions.
552         (python-indent-calculate-levels): Use them.
553         (python-indent-calculate-indentation, python-indent-line):
554         (python-indent-line-function): Rewritten to use new API.
555         (python-indent-dedent-line): Simplify logic.
556         (python-indent-dedent-line-backspace): Use `unless`.
557         (python-indent-toggle-levels): Delete function.
559 2015-01-28  Daniel Koning  <dk@danielkoning.com>  (tiny change)
561         * subr.el (posnp): Correct docstring of `posnp'.
562         (posn-col-row): Make it work with all mouse position objects.
563         * textmodes/artist.el (artist-mouse-draw-continously):
564         Cancel timers if an error occurs during continuous drawing.  (Bug#6130)
566 2015-01-28  Eli Zaretskii  <eliz@gnu.org>
568         * button.el (button-activate, push-button): Doc fix.  (Bug#19628)
570 2015-01-28  Michael Albinus  <michael.albinus@gmx.de>
572         * filenotify.el (file-notify-descriptors, file-notify-handle-event):
573         Adapt docstring.
574         (file-notify--descriptor): New defun.
575         (file-notify-callback, file-notify-add-watch, file-notify-rm-watch):
576         Adapt docstring.  Handle multiple values for
577         `file-notify-descriptors' entries.  (Bug#18880)
579         * net/tramp.el (tramp-handle-file-notify-rm-watch): Do not check
580         `file-notify-descriptors', the implementation has been changed.
582 2015-01-28  Eli Zaretskii  <eliz@gnu.org>
584         * net/net-utils.el (net-utils-run-program, net-utils-run-simple):
585         On MS-Windows, bind coding-system-for-read to the console output
586         codepage.  (Bug#19458)
588 2015-01-28  Dmitry Gutov  <dgutov@yandex.ru>
590         Unbreak `mouse-action' property in text buttons.
591         * button.el (push-button): Fix regression from 2012-12-06.
593 2015-01-28  Glenn Morris  <rgm@gnu.org>
595         * progmodes/sh-script.el (sh-mode): Doc fix.
596         (sh-basic-indent-line): Handle electric newline.  (Bug#18756)
598 2015-01-28  Paul Eggert  <eggert@cs.ucla.edu>
600         Fix dired quoting bug with "Hit`N`Hide".  Fixes Bug#19498.
601         * files.el (shell-quote-wildcard-pattern): Also quote "`".
603 2015-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
605         Tighten up the tagcode used for eieio and cl-struct objects.
606         * loadup.el: Load cl-preloaded.
607         * emacs-lisp/eieio-core.el (eieio-defclass-internal): Set the function
608         slot of the tag symbol to :quick-object-witness-check.
609         (eieio-object-p): Use :quick-object-witness-check.
610         (eieio--generic-tagcode): Use cl--generic-struct-tag.
611         * emacs-lisp/cl-preloaded.el: New file.
612         * emacs-lisp/cl-macs.el (cl--bind-inits): Remove, unused.
613         (cl--transform-lambda, cl-destructuring-bind): Remove cl--bind-inits.
614         (cl--make-usage-args): Strip away &aux args.
615         (cl-case, cl-typecase, cl--parse-loop-clause): Use macroexp-let2.
616         (cl-the, cl-check-type): Use macroexp-let2 and cl-typep.
617         (cl-defstruct): Use `declare' and cl-struct-define.
618         * emacs-lisp/cl-generic.el (cl--generic-struct-tag): New function.
619         (cl--generic-struct-tagcode): Use it to tighten the tagcode.
621 2015-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
623         * emacs-lisp/cl.el (cl--function-convert):
624         Merge cache that cl--labels-convert adds (bug#19699).
626 2015-01-27  Ivan Shmakov  <ivan@siamics.net>
628         * tar-mode.el: Allow for adding new archive members.  (Bug#19274)
629         (tar-new-regular-file-header, tar--pad-to, tar--put-at)
630         (tar-header-serialize): New functions.
631         (tar-current-position): Split from tar-current-descriptor.
632         (tar-current-descriptor): Use it.
633         (tar-new-entry): New command.
634         (tar-mode-map): Bind it.
636 2015-01-27  Sam Steingold  <sds@gnu.org>
638         * progmodes/python.el (python-check-custom-command): Buffer local
639         because it usually includes the buffer name.
640         (python-check-command): Set to epylint when pyflakes is not available.
642 2015-01-27  Artur Malabarba  <bruce.connor.am@gmail.com>
644         * isearch.el (isearch-process-search-char): Add docstring.
646 2015-01-27  Oleh Krehel  <ohwoeowho@gmail.com>
648         * emacs-lisp/derived.el (define-derived-mode): Declare indent 3.
650 2015-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
652         * emacs-lisp/cl.el (cl--function-convert): Run cl--labels-convert
653         for the case cl-flet or cl-labels form is wrapped with lexical-let
654         (bug#19613).
656 2015-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
658         * emacs-lisp/cl-generic.el (cl--generic-method): New struct.
659         (cl--generic): The method-table is now a (list-of cl--generic-method).
660         (cl--generic-member-method): New function.
661         (cl-generic-define-method): Use it.
662         (cl--generic-build-combined-method, cl--generic-cache-miss):
663         Adapt to new method-table.
664         (cl--generic-no-next-method-function): Add `method' argument.
665         (cl-generic-call-method): Adapt to new method representation.
666         (cl--generic-cnm-sample, cl--generic-nnm-sample): Adjust.
667         (cl-find-method, cl-method-qualifiers): New functions.
668         (cl--generic-method-info): Adapt to new method representation.
669         Return a string for the qualifiers.
670         (cl--generic-describe):
671         * emacs-lisp/eieio-opt.el (eieio-help-class): Adjust accordingly.
672         (eieio-all-generic-functions, eieio-method-documentation):
673         Adjust to new method representation.
675         * emacs-lisp/eieio-compat.el (eieio--defmethod): Use cl-find-method.
677 2015-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
679         * emacs-lisp/cl-generic.el: Add a method-combination hook.
680         (cl-generic-method-combination-function): New var.
681         (cl--generic-lambda): Remove `with-cnm' arg.
682         (cl-defmethod): Change accordingly.
683         (cl-generic-define-method): Don't check qualifiers validity.
684         Preserve all qualifiers in `method-table'.
685         (cl-generic-call-method): New function.
686         (cl--generic-nest): Remove (morph into cl-generic-call-method).
687         (cl--generic-build-combined-method): Adjust to new format of method-table
688         and use cl-generic-method-combination-function.
689         (cl--generic-standard-method-combination): New function, extracted from
690         cl--generic-build-combined-method.
691         (cl--generic-cnm-sample): Adjust to new format of method-table.
693         * emacs-lisp/eieio-compat.el (eieio--defmethod): Use () qualifiers
694         instead of :primary.
696         * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
697         Remove obsolete function.
699 2015-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
701         * net/shr.el (shr-make-table-1): Fix colspan typo.
702         (shr-make-table-1): Add comments.
703         (shr-make-table-1): Make colspan display more sensibly.
705         * net/eww.el (eww-add-bookmark): Fix prompt and clean up the code
706         slightly.
708 2015-01-25  Stefan Monnier  <monnier@iro.umontreal.ca>
710         * emacs-lisp/cl-generic.el (cl--generic-no-next-method-function): New fun.
711         (cl--generic-build-combined-method, cl--generic-nnm-sample): Use it
712         (bug#19672).
713         (cl--generic-typeof-types): Add support for `sequence'.
714         (cl-defmethod): Add non-keywords in the qualifiers.
716 2015-01-25  Dmitry Gutov  <dgutov@yandex.ru>
718         * emacs-lisp/find-func.el (find-function-regexp): Don't match
719         `defgroup' (regression from the previous change here).
721 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
723         * net/ldap.el (ldap-search-internal): Mention binddn in invalid
724         credentials error message.
726 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
728         * net/ldap.el (ldap-password-read): Validate password before
729         caching it.
730         (ldap-search-internal): Handle ldapsearch error conditions.
732 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
734         * net/ldap.el (ldap-password-read): Handle password-cache being nil.
736 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
738         * net/eudc.el (eudc-expand-inline): Always restore former server
739         and protocol.
741 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
743         * net/eudcb-ldap.el: Don't nag the user in case a default base is
744         provided by the LDAP system configuration file.
746 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
748         * net/eudc.el (eudc-format-query): Preserve the
749         eudc-inline-query-format ordering of attributes in the returned list.
750         * net/eudcb-ldap.el (eudc-ldap-format-query-as-rfc1558):
751         Append the LDAP wildcard character to the last attribute value.
753 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
755         * net/eudcb-ldap.el (eudc-ldap-cleanup-record-simple):
756         Downcase field names of LDAP results.
757         (eudc-ldap-cleanup-record-filtering-addresses): Likewise.
759 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
761         * net/ldap.el (ldap-ldapsearch-password-prompt): New defcustom.
762         (ldap-search-internal): Send password to ldapsearch through a pipe
763         instead of via the command line.
765 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
767         * net/ldap.el: Require password-cache.
768         (ldap-password-read): New function.
769         (ldap-search-internal): Call ldap-password-read when it is
770         configured to be called.
772 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
774         * net/eudc-vars.el (eudc-expansion-overwrites-query):
775         Change default to nil.
777 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
779         * net/eudc.el (eudc-expand-inline): Ignore text properties of
780         string-to-expand.
782 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
784         * net/eudc-vars.el (eudc-inline-expansion-format): Default to a
785         format that includes first name and surname.
787 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
789         * net/eudc-vars.el (eudc-inline-query-format): Change default to
790         query email and first name instead of surname.
792 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
794         * net/ldap.el (ldap-search-internal): Support new-style LDAP URIs.
796 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
798         * net/eudc-vars.el (eudc-server): Adjust docstring to mention
799         eudc-server-hotlist.
800         (eudc-server-hotlist): Move from eudc.el and make defcustom.
801         * net/eudc.el (eudc-server-hotlist): Move to eudc-vars.el.
802         (eudc-set-server): Allow setting protocol to nil.
803         (eudc-expand-inline): Support hotlist-only expansions when server
804         is not set.
806 2015-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
808         * emacs-lisp/cl-generic.el (cl-no-primary-method): New fun and error.
809         (cl--generic-build-combined-method): Use it.
811 2015-01-22  Paul Eggert  <eggert@cs.ucla.edu>
813         Don't downcase system diagnostics' first letters
814         * emacs-lisp/bytecomp.el (byte-compile-file):
815         * ffap.el (find-file-at-point):
816         * files.el (insert-file-1):
817         * net/ange-ftp.el (ange-ftp-barf-if-not-directory)
818         (ange-ftp-copy-file-internal):
819         * progmodes/etags.el (visit-tags-table):
820         Keep diagnostics consistent with system's.
821         * ffap.el (ffap-machine-p):
822         Ignore case while comparing diagnostics.
824 2015-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
826         * help.el (help-make-usage): Don't turn a "_" arg into an empty-string
827         arg (bug#19645).
828         * emacs-lisp/cl-generic.el (cl--generic-lambda): Don't confuse a string
829         body with a docstring.
831 2015-01-22  Dmitry Gutov  <dgutov@yandex.ru>
833         * progmodes/xref.el (xref-location-marker, xref-location-group):
834         Use `cl-defgeneric' and `cl-defmethod' instead of the EIEIO
835         counterparts.
837         * progmodes/etags.el (xref-location-marker): Same.
839         * progmodes/xref.el (xref--current): Rename from `xref--selected'.
840         (xref--inhibit-mark-current): Rename from
841         `xref--inhibit-mark-selected'.  Update the usages.
842         (xref-quit): Reword the docstring.  Kill buffers after quitting
843         windows instead of before.
844         (xref--insert-xrefs): Tweak help-echo.
845         (xref--read-identifier-history, xref--read-pattern-history):
846         New variables.
847         (xref--read-identifier, xref-find-apropos): Use them.
849 2015-01-21  Ulrich Müller  <ulm@gentoo.org>
851         * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
852         Allow the 'update-game-score' helper program to run suid or sgid.
854 2015-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
856         * emacs-lisp/eieio.el: Use cl-defmethod.
857         (defclass): Generate cl-defmethod calls; use setf methods for :accessor.
858         (eieio-object-name-string): Declare as obsolete.
860         * emacs-lisp/eieio-opt.el: Adapt to cl-generic.
861         (eieio--specializers-apply-to-class-p): New function.
862         (eieio-all-generic-functions): Use it.
863         (eieio-method-documentation): Use it as well as cl--generic-method-info.
864         Change format of return value.
865         (eieio-help-class): Adapt accordingly.
867         * emacs-lisp/eieio-compat.el (eieio--defmethod): Avoid no-next-method
868         errors when there's a `before' but no `primary' (bug#19645).
869         (next-method-p): Return nil rather than signal an error.
870         (eieio-defgeneric): Remove bogus (fboundp 'method).
872         * emacs-lisp/eieio-speedbar.el:
873         * emacs-lisp/eieio-datadebug.el:
874         * emacs-lisp/eieio-custom.el:
875         * emacs-lisp/eieio-base.el: Use cl-defmethod.
877         * emacs-lisp/cl-generic.el (cl-defgeneric): Add support for `declare'.
878         (cl--generic-setf-rewrite): Setup the setf expander right away.
879         (cl-defmethod): Make sure the setf expander is setup before we expand
880         the body.
881         (cl-defmethod): Silence byte-compiler warnings.
882         (cl-generic-define-method): Shuffle code to change return value.
883         (cl--generic-method-info): New function, extracted from
884         cl--generic-describe.
885         (cl--generic-describe): Use it.
887 2015-01-21  Dmitry Gutov  <dgutov@yandex.ru>
889         * progmodes/xref.el (xref--xref-buffer-mode-map): Define before
890         the major mode.  Remap `quit-window' to `xref-quit'.
891         (xref--xref-buffer-mode): Inherit from special-mode.
893         xref: Keep track of temporary buffers  (bug#19466).
894         * progmodes/xref.el (xref--temporary-buffers, xref--selected)
895         (xref--inhibit-mark-selected): New variables.
896         (xref--mark-selected): New function.
897         (xref--show-location): Maybe add the buffer to
898         `xref--temporary-buffers', add `xref--mark-selected' to
899         `buffer-list-update-hook' there.
900         (xref--window): Add docstring.
901         (xref-quit): Rename from `xref--quit'.  Update both references.
902         Add KILL argument.  When it's non-nil, kill the temporary buffers
903         that haven't been selected by the user.
904         (xref--show-xref-buffer): Change the second argument to alist,
905         extract the values for `xref--window' and
906         `xref--temporary-buffers' from it.  Add `xref--mark-selected' to
907         `buffer-list-update-hook' to each buffer in the list.
908         (xref--show-xrefs): Move the logic of calling `xref-find-function'
909         here.  Save the difference between buffer lists before and after
910         it's called as "temporary buffers", and `pass it to
911         `xref-show-xrefs-function'.
912         (xref--find-definitions, xref-find-references)
913         (xref-find-apropos): Update accordingly.
915 2015-01-20  Artur Malabarba  <bruce.connor.am@gmail.com>
917         * emacs-lisp/package.el (package-dir-info): Fix `while' logic.
919 2015-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
921         * emacs-lisp/eieio-generic.el: Remove.
922         (defgeneric, defmethod): Move to eieio-compat.el.  Mark obsolete.
923         * emacs-lisp/eieio-compat.el: New file.
924         * emacs-lisp/eieio.el: Don't require eieio-generic any more.
925         * emacs-lisp/eieio-core.el (eieio--slot-originating-class-p):
926         Remove unused function.
927         (eieio-defclass): Move to eieio-compat.el.
928         * emacs-lisp/macroexp.el (macroexp-macroexpand): New function.
929         (macroexp--expand-all): Use it.
930         * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): Here too.
932 2015-01-20  Michal Nazarewicz  <mina86@mina86.com>
934         * emacs-lisp/eldoc.el (eldoc-documentation-function): Describe how
935         major modes should use `add-function' to alter value of the variable.
936         * hexl.el (hexl-mode):
937         * ielm.el (inferior-emacs-lisp-mode):
938         * progmodes/cfengine.el (cfengine3-mode):
939         * progmodes/elisp-mode (emacs-lisp-mode):
940         * progmodes/octave.el (octave-mode):
941         * progmodes/python.el (python-mode):
942         * simple.el (read--expression): Set `eldoc-documentation-function'
943         using `add-function' so the default value is always used.
945         * descr-text.el (describe-char-eldoc): New function returning
946         basic Unicode codepoint information (e.g. name) about character
947         at point.  It is meant to be used as a default value of the
948         `eldoc-documentation-function' variable.
949         (describe-char-eldoc--format, describe-char-eldoc--truncate):
950         New helper functions for `describe-char-eldoc' function.
952 2015-01-20  Michal Nazarewicz  <mina86@mina86.com>
954         * textmodes/paragraphs.el (sentence-end-base): Include an
955         ellipsis (…) and interrobang (‽) characters as end of a sentence,
956         and a closing single quote (’) as an end of a quote.
958 2015-01-20  Michal Nazarewicz  <mina86@mina86.com>
960         * textmodes/tildify.el (tildify-double-space-undos): A new
961         variable specifying whether pressing space in `tildify-mode' after
962         a space has been replaced with hard space undos the substitution.
963         (tildify-space): Add code branch for handling `tildify-doule-space'.
965         * textmodes/tildify.el (tildify-space): A new function
966         which can be used as a `post-self-insert-hook' to automatically
967         convert spaces into hard spaces.
968         (tildify-space-pattern): A new variable specifying pattern where
969         `tildify-space' should take effect.
970         (tildify-space-predicates): A new variable specifying list of
971         predicate functions that all must return non-nil for
972         `tildify-space' to take effect.
973         (tildify-space-region-predicate): A new functions meant to be
974         used as a predicate in `tildify-space-predicates' list.
975         (tildify-mode): A new minor mode enabling `tildify-space' as a
976         `post-self-insert-hook'
978 2015-01-20  Daniel Colascione  <dancol@dancol.org>
980         * vc/vc-dir.el (vc-dir): Default to repository root, not
981         default-directory.
983 2015-01-20  Dmitry Gutov  <dgutov@yandex.ru>
985         * progmodes/etags.el (xref-etags-location): New class.
986         (xref-make-etags-location): New function.
987         (etags--xref-find-definitions): Use it.
988         (xref-location-marker): New method implementation.
990         * progmodes/xref.el: Mention that xref-location is an EIEIO class.
991         (xref--insert-xrefs): Expand help-echo string.
993 2015-01-19  Dmitry Gutov  <dgutov@yandex.ru>
995         * ido.el: Update Customization instructions.
997 2015-01-19  Jonas Bernoulli  <jonas@bernoul.li>
999         Define Ido keymaps once (bug#17000).
1000         * ido.el (ido-common-completion-map)
1001         (ido-file-dir-completion-map)
1002         (ido-file-completion-map, ido-buffer-completion-map): Set up key
1003         bindings when each variable is defined.
1004         (ido-completion-map): Move definition.
1005         (ido-init-completion-maps): Noop.
1006         (ido-common-initialization): Don't call it.
1007         (ido-setup-completion-map): Improve doc-string, cleanup.
1009 2015-01-19  Ivan Shmakov  <ivan@siamics.net>
1011         * cus-dep.el (custom-make-dependencies): Ensure that
1012         default-directory is interpreted as a directory (see bug#19140.)
1014 2015-01-19  Dmitry Gutov  <dgutov@yandex.ru>
1016         * progmodes/xref.el (xref--display-position):
1017         Set `other-window-scroll-buffer'.
1018         (xref-goto-xref): Use `user-error'.
1020 2015-01-19  Dmitry Gutov  <dgutov@yandex.ru>
1022         * progmodes/xref.el (xref--display-history): New variable.
1023         (xref--window-configuration): Remove.
1024         (xref--save-to-history): New function.
1025         (xref--display-position): Use it.  Add new argument.
1026         (xref--restore-window-configuration): Remove.
1027         (xref--show-location, xref-show-location-at-point):
1028         Update accordingly.
1029         (xref--xref-buffer-mode): Don't use `pre-command-hook'.
1030         (xref--quit): New command.
1031         (xref-goto-xref): Use it.
1032         (xref--xref-buffer-mode-map): Bind `q' to it.
1034 2015-01-18  Dmitry Gutov  <dgutov@yandex.ru>
1036         * progmodes/xref.el (xref-goto-xref): Perform the jump even inside
1037         indentation or at eol.
1039 2015-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1041         * emacs-lisp/eieio-core.el: Add `subclass' specializer for cl-generic.
1042         (eieio--generic-subclass-tagcode, eieio--generic-subclass-tag-types):
1043         New functions.
1044         (cl-generic-tagcode-function, cl-generic-tag-types-function): Use them.
1046         * emacs-lisp/eieio.el (defclass): Add obsolescence warning for the
1047         `newname' argument.
1049         * emacs-lisp/cl-generic.el (cl-generic-define-method): Correctly handle
1050         introduction of a new dispatch argument.
1051         (cl--generic-cache-miss): Handle dispatch on an argument which was not
1052         considered as dispatchable for this method.
1053         (cl-defmethod): Warn when adding a method to an obsolete generic function.
1054         (cl--generic-lambda): Make sure it works if cl-lib is not yet loaded.
1056         * emacs-lisp/eieio-generic.el (eieio--defgeneric-init-form): Use autoloadp.
1058 2015-01-18  Artur Malabarba  <bruce.connor.am@gmail.com>
1060         * emacs-lisp/package.el (package--append-to-alist): Rename from
1061         `package--add-to-alist'
1062         Updated docstring due to new name.
1064 2015-01-18  Leo Liu  <sdl.web@gmail.com>
1066         * emacs-lisp/cl-extra.el (cl-subseq): Use seq-subseq and fix
1067         multiple evaluation.  (Bug#19519)
1069         * emacs-lisp/seq.el (seq-subseq): Throw bad bounding indices
1070         error.  (Bug#19434)
1072 2015-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1074         * emacs-lisp/eieio-core.el: Add `subclass' specializer for cl-generic.
1075         (eieio--generic-subclass-tagcode, eieio--generic-subclass-tag-types):
1076         New functions.
1077         (cl-generic-tagcode-function, cl-generic-tag-types-function): Use them.
1079         * emacs-lisp/cl-macs.el (cl-defstruct): Minor optimization when include
1080         or print is nil.
1081         (cl-struct-type-p): New function.
1083         * emacs-lisp/cl-generic.el: Add support for cl-next-method-p.
1084         (cl-defmethod): Add edebug spec.
1085         (cl--generic-build-combined-method): Fix call to
1086         cl-no-applicable-method.
1087         (cl--generic-nnm-sample, cl--generic-cnm-sample): New constant.
1088         (cl--generic-isnot-nnm-p): New function.
1089         (cl--generic-lambda): Use it to add support for cl-next-method-p.
1090         (cl-no-next-method, cl-no-applicable-method): Simplify arg list.
1091         (cl-next-method-p): New function.
1093 2015-01-17  Ulrich Müller  <ulm@gentoo.org>
1095         * version.el (emacs-repository-get-version): Update docstring.
1097 2015-01-17  Ivan Shmakov  <ivan@siamics.net>
1099         * url/url-cookie.el (url-cookie-write-file): Let-bind print-length
1100         and print-level to nil to avoid writing a garbled list.  (Bug#16805)
1102         * files.el (find-file-other-window, find-file-other-frame):
1103         Use mapc instead of mapcar.  (Bug#18175)
1105         * files.el (dir-locals-collect-variables): Use default-directory
1106         in place of the file name while working on non-file buffers, just
1107         like hack-dir-local-variables already does.  (Bug#19140)
1109         * textmodes/enriched.el (enriched-encode):
1110         Use inhibit-point-motion-hooks in addition to inhibit-read-only.
1111         (Bug#18246)
1113         * desktop.el (desktop-read): Do not call desktop-clear when no
1114         desktop file is found.  (Bug#18371)
1116         * misearch.el (multi-isearch-unload-function): New function.
1117         (misearch-unload-function): New alias.  (Bug#19566)
1119 2015-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1121         * emacs-lisp/eieio-core.el (eieio--class-constructor): Rename from
1122         class-constructor, and make it an alias for `identity'.
1123         Update all callers.
1125         * emacs-lisp/eieio.el (eieio-constructor): Handle obsolete object name
1126         argument here (bug#19620)...
1127         (defclass): ...instead of in the constructor here.
1129 2015-01-16  Jorgen Schaefer  <contact@jorgenschaefer.de>
1131         * emacs-lisp/package.el (package-archive-priorities):
1132         Specify correct type.
1134 2015-01-17  Ulrich Müller  <ulm@gentoo.org>
1136         * version.el (emacs-bzr-version-dirstate, emacs-bzr-version-bzr):
1137         Remove.
1138         (emacs-repository-get-version): Discard the Bazaar case.
1139         * vc/vc-bzr.el (vc-bzr-version-dirstate): Rename from
1140         emacs-bzr-version-dirstate and move from version.el to here.
1141         (vc-bzr-working-revision): Use it.
1143 2015-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1145         * emacs-lisp/eieio-generic.el (call-next-method): Don't bother checking
1146         eieio--scoped-class any more.
1148         * emacs-lisp/eieio-core.el (eieio--scoped-class-stack): Remove var.
1149         (eieio--scoped-class): Remove function.
1150         (eieio--with-scoped-class): Remove macro.  Replace uses with `progn'.
1151         (eieio--slot-name-index): Don't check the :protection anymore.
1152         (eieio-initializing-object): Remove var.
1153         (eieio-set-defaults): Don't let-bind eieio-initializing-object.
1155 2015-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1157         Improve handling of doc-strings and describe-function for cl-generic.
1159         * help-mode.el (help-function-def): Add optional arg `type'.
1161         * help-fns.el (find-lisp-object-file-name): Accept any `type' as long
1162         as it's a symbol.
1163         (help-fns-short-filename): New function.
1164         (describe-function-1): Use it.  Use autoload-do-load.
1166         * emacs-lisp/find-func.el: Use lexical-binding.
1167         (find-function-regexp): Don't rule out `defgeneric'.
1168         (find-function-regexp-alist): Document new possibility of including
1169         a function instead of a regexp.
1170         (find-function-search-for-symbol): Implement that new possibility.
1171         (find-function-library): Don't assume that `function' is a symbol.
1172         (find-function-do-it): Remove unused var `orig-buf'.
1174         * emacs-lisp/eieio-generic.el (eieio--defalias): Move from eieio-core.
1175         (eieio--defgeneric-init-form): Don't throw away a previous docstring.
1176         (eieio--method-optimize-primary): Don't mess with the docstring.
1177         (defgeneric): Keep the `args' in the docstring.
1178         (defmethod): Don't use the method's docstring for the generic
1179         function's docstring.
1181         * emacs-lisp/eieio-core.el (eieio--defalias): Move to eieio-generic.el.
1182         (eieio-defclass-autoload): Don't record the superclasses any more.
1183         (eieio-defclass-internal): Reuse the old class object if it was just an
1184         autoload stub.
1185         (eieio--class-precedence-list): Load the class if it's autoloaded.
1187         * emacs-lisp/cl-generic.el (cl-generic-ensure-function): It's OK to
1188         override an autoload.
1189         (cl-generic-current-method-specializers): Replace dyn-bind variable
1190         with a lexically-scoped macro.
1191         (cl--generic-lambda): Update accordingly.
1192         (cl-generic-define-method): Record manually in the load-history with
1193         type `cl-defmethod'.
1194         (cl--generic-get-dispatcher): Minor optimization.
1195         (cl--generic-search-method): New function.
1196         (find-function-regexp-alist): Add entry for `cl-defmethod' type.
1197         (cl--generic-search-method): Add hyperlinks for methods.  Merge the
1198         specializers and the function's arguments.
1200 2015-01-16  Artur Malabarba  <bruce.connor.am@gmail.com>
1202         * emacs-lisp/package.el (package--read-pkg-desc):
1203         New function. Read a `define-package' form in current buffer.
1204         Return the pkg-desc, with desc-kind set to KIND.
1205         (package-dir-info): New function. Find package information for a
1206         directory. The return result is a `package-desc'.
1207         (package-install-from-buffer): Install packages from dired buffer.
1208         (package-install-file): Install packages from directory.
1209         (package-desc-suffix)
1210         (package-install-from-archive)
1211         * emacs-lisp/package-x.el (package-upload-buffer-internal):
1212         Ensure all remaining instances of `package-desc-kind' handle the 'dir
1213         value.
1215 2015-01-16  Jorgen Schaefer  <contact@jorgenschaefer.de>
1217         * emacs-lisp/package.el: Provide repository priorities.
1218         (package-archive-priorities): New variable.
1219         (package--add-to-alist): New function.
1220         (package--add-to-archive-contents): Use it.
1221         (package-menu--find-upgrades): Use it as well. Small clean up to
1222         make the use of the package name here explicit.
1223         (package-archive-priority): New function.
1224         (package-desc-priority-version): New function.
1226 2015-01-16  Daniel Colascione  <dancol@dancol.org>
1228         * cus-start.el (all): Make `ring-bell-function' customizable.
1230 2015-01-16  Dmitry Gutov  <dgutov@yandex.ru>
1232         * vc/vc-svn.el (vc-svn-dir-status-files): Pass t as
1233         vc-svn-after-dir-status's second argument.  (Bug#19429)
1235 2015-01-16  Samer Masterson  <samer@samertm.com>  (tiny change)
1237         * pcomplete.el (pcomplete-parse-arguments): Parse arguments
1238         regardless of pcomplete-cycle-completions's value.  (Bug#18950)
1240 2015-01-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1242         * dom.el (dom-strings): New function.
1244         * files.el (directory-files-recursively): Don't use the word
1245         "path" for a file name.
1247 2015-01-15  Wolfgang Jenkner  <wjenkner@inode.at>
1249         * calc/calc-units.el (math-units-in-expr-p)
1250         (math-single-units-in-expr-p, math-find-compatible-unit-rec)
1251         (math-extract-units): Handle the `neg' operator.  (Bug#19582)
1253 2015-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
1255         * emacs-lisp/cl-macs.el (cl--labels-magic): New constant.
1256         (cl--labels-convert): Use it to ask the macro what is its replacement
1257         in the #'f case.
1259         * emacs-lisp/cl-generic.el (cl--generic-build-combined-method):
1260         Return the value of the primary rather than the after method.
1262         * emacs-lisp/eieio-core.el: Provide support for cl-generic.
1263         (eieio--generic-tagcode): New function.
1264         (cl-generic-tagcode-function): Use it.
1265         (eieio--generic-tag-types): New function.
1266         (cl-generic-tag-types-function): Use it.
1267         (eieio-object-p): Tighten up the test.
1269         * emacs-lisp/cl-generic.el (cl-generic-define-method): Fix paren typo.
1271 2015-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1273         * emacs-lisp/cl-generic.el: New file.
1275         * emacs-lisp/cl-macs.el (cl-flet): Allow (FUN EXP) forms.
1276         (cl-load-time-value, cl-labels): Use closures rather than
1277         backquoted lambdas.
1278         (cl-macrolet): Use `eval' to create the function value, and support CL
1279         style arguments in for the defined macros.
1281 2015-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1283         * net/eww.el: Use lexical-binding.
1284         (eww-links-at-point): Remove unused arg.
1285         (eww-mode-map): Inherit from special-mode-map.
1286         (eww-mode): Derive from special-mode.  Don't use `setq' on a hook.
1288 2015-01-13  Alan Mackenzie  <acm@muc.de>
1290         Allow compilation during loading of CC Mode-derived modes (bug#19206).
1291         * progmodes/cc-bytecomp.el (cc-bytecomp-compiling-or-loading):
1292         New function which walks the stack to discover whether we're compiling
1293         or loading.
1294         (cc-bytecomp-is-compiling): Reformulate, and move towards beginning.
1295         (cc-bytecomp-is-loading): New defsubst.
1296         (cc-bytecomp-setup-environment, cc-bytecomp-restore-environment):
1297         Use the above defsubsts.
1298         (cc-require-when-compile, cc-bytecomp-defvar)
1299         (cc-bytecomp-defun): Simplify conditionals.
1300         * progmodes/cc-defs.el (cc-bytecomp-compiling-or-loading):
1301         "Borrow" this function from cc-bytecomp.el.
1302         (c-get-current-file): Reformulate using the above.
1303         (c-lang-defconst): Prevent duplicate entries of file names in a
1304         symbol's 'source property.
1305         (c-lang-const): Use cc-bytecomp-is-compiling.
1306         * progmodes/cc-langs.el (c-make-init-lang-vars-fun):
1307         Use cc-bytecomp-is-compiling.
1309 2015-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
1311         * emacs-lisp/eieio-core.el (eieio-defclass): Fix call to `defclass'
1312         (bug#19552).
1314 2015-01-13  Dmitry Gutov  <dgutov@yandex.ru>
1316         * menu-bar.el (menu-bar-goto-menu): Before calling
1317         `xref-marker-stack-empty-p', first check that `xref' is loaded.
1318         (Bug#19554)
1320 2015-01-12  Martin Rudalics  <rudalics@gmx.at>
1322         * progmodes/xref.el (xref-marker-stack-empty-p): Add autoload
1323         cookie (Bug#19554).
1325         * frame.el (frame-notice-user-settings): Remove code dealing with
1326         frame-initial-frame-tool-bar-height.  Turn off `tool-bar-mode'
1327         only if `window-system-frame-alist' or `default-frame-alist' ask
1328         for it.
1329         (make-frame): Update frame-adjust-size-history if needed.
1331 2015-01-12  Paul Eggert  <eggert@cs.ucla.edu>
1333         Have 'make' output better GEN names
1334         * Makefile.in (PHONY_EXTRAS): New macro.
1335         (.PHONY): Depend on it, and on $(lisp)/loaddefs.el, so that the
1336         relevant files' time stamps are ignored.
1337         (custom-deps, $(lisp)/cus-load.el, finder-data)
1338         ($(lisp)/finder-inf.el): Use PHONY_EXTRAS.
1339         (custom-deps, $(lisp)/cus-load.el, finder-data)
1340         ($(lisp)/finder-inf.el, autoloads, $(lisp)/loaddefs.el)
1341         ($(lisp)/subdirs.el, update-subdirs):
1342         Output more-accurate destination names with GEN.
1344         Say "ELC foo.elc" instead of "GEN foo.elc"
1345         * Makefile.in (AM_V_ELC, am__v_ELC_, am__v_ELC_0, am__v_ELC_1):
1346         New macros.
1347         ($(THEFILE)c, .el.elc): Use them.
1349 2015-01-11  Michael Albinus  <michael.albinus@gmx.de>
1351         * files.el (directory-files-recursively): Do not include
1352         superfluous remote file names.
1354 2015-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1356         * net/eww.el (eww): Interpret anything that looks like a protocol
1357         designator as a full URL.
1359 2015-01-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1361         * net/shr.el (shr-urlify): Don't bother the user about
1362         invalidly-encoded display strings.
1364 2015-01-10  Ivan Shmakov  <ivan@siamics.net>
1366         * net/shr.el (shr-urlify): Decode URLs before using them as titles
1367         (bug#19555).
1369 2015-01-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1371         * net/eww.el (eww): Always interpret URLs that start with https?:
1372         as plain URLs, even if they have spaces in them (bug#19556).
1373         (eww): Also interpret things like "en.wikipedia.org/wiki/Free
1374         software" as an URL.
1375         (eww): Don't interpret "org/foo" as an URL.
1376         (eww): Clear the title when loading so that we don't display
1377         misleading information.
1379 2015-01-10  Daniel Colascione  <dancol@dancol.org>
1381         * vc/vc-hooks.el (vc-prefix-map): Bind vc-delete-file to C-x v x,
1382         by analogy with dired.
1384 2015-01-09  Daniel Colascione  <dancol@dancol.org>
1386         * progmodes/js.el (js--function-heading-1-re)
1387         (js--function-prologue-beginning): Parse ES6 generator function
1388         declarations.  (That is, "function* name()").
1390 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1392         * emacs-lisp/eieio.el (defclass): Move from eieio-defclass all the code
1393         that creates functions, and most of the sanity checks.
1394         Mark as obsolete the <class>-child-p function.
1395         * emacs-lisp/eieio-core.el (eieio--define-field-accessors): Remove.
1396         (eieio--class, eieio--object): Use cl-defstruct.
1397         (eieio--object-num-slots): Define manually.
1398         (eieio-defclass-autoload): Use eieio--class-make.
1399         (eieio-defclass-internal): Rename from eieio-defclass.  Move all the
1400         `(lambda...) definitions and most of the sanity checks to `defclass'.
1401         Mark as obsolete the <class>-list-p function, the <class> variable and
1402         the <initarg> variables.  Use pcase-dolist.
1403         (eieio-defclass): New compatibility function.
1404         * emacs-lisp/eieio-opt.el (eieio-build-class-alist)
1405         (eieio-class-speedbar): Don't use eieio-default-superclass var.
1407 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1409         * emacs-lisp/eieio-generic.el: New file.
1410         * emacs-lisp/eieio-core.el: Move all generic function code to
1411         eieio-generic.el.
1412         (eieio--defmethod): Declare.
1414         * emacs-lisp/eieio.el: Require eieio-generic.  Move all generic
1415         function code to eieio-generic.el.
1416         * emacs-lisp/eieio-opt.el (eieio-help-generic): Move to
1417         eieio-generic.el.
1418         * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke): Update call
1419         to eieio--generic-call.
1420         * emacs-lisp/eieio-base.el (eieio-instance-inheritor): Don't use
1421         <class>-child type.
1423 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1425         * emacs-lisp/chart.el (chart-add-sequence, chart-bar-quickie):
1426         Don't use <class> as a variable.
1428         * emacs-lisp/eieio.el (same-class-p): Accept class object as well.
1429         (call-next-method): Simplify.
1430         (clone): Obey eieio-backward-compatibility.
1432         * emacs-lisp/eieio-opt.el (eieio-read-generic-p): Remove.
1433         (eieio-read-generic): Use `generic-p' instead.
1435         * emacs-lisp/eieio-core.el (eieio-backward-compatibility): New var.
1436         (eieio-defclass-autoload): Obey it.
1437         (eieio--class-object): Improve error behavior.
1438         (eieio-class-children-fast, same-class-fast-p): Remove.  Inline at
1439         every use site.
1440         (eieio--defgeneric-form-primary-only): Rename from
1441         eieio-defgeneric-form-primary-only; update all callers.
1442         (eieio--defgeneric-form-primary-only-one): Rename from
1443         eieio-defgeneric-form-primary-only-one; update all callers.
1444         (eieio-defgeneric-reset-generic-form)
1445         (eieio-defgeneric-reset-generic-form-primary-only)
1446         (eieio-defgeneric-reset-generic-form-primary-only-one): Remove.
1447         (eieio--method-optimize-primary): New function to replace them.
1448         (eieio--defmethod, eieio-defmethod): Use it.
1449         (eieio--perform-slot-validation): Rename from
1450         eieio-perform-slot-validation; update all callers.
1451         (eieio--validate-slot-value): Rename from eieio-validate-slot-value.
1452         Change `class' to be a class object.  Update all callers.
1453         (eieio--validate-class-slot-value): Rename from
1454         eieio-validate-class-slot-value.  Change `class' to be a class object.
1455         Update all callers.
1456         (eieio-oset-default): Accept class object as well.
1457         (eieio--generic-call-primary-only): Rename from
1458         eieio-generic-call-primary-only.  Update all callers.
1460         * emacs-lisp/eieio-base.el (eieio-persistent-validate/fix-slot-value):
1461         Improve error messages.
1462         (eieio-persistent-slot-type-is-class-p): Handle `list-of' types, as
1463         well as user-defined types.  Emit errors for legacy types like
1464         <class>-child and <class>-list, if not eieio-backward-compatibility.
1466 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1468         * emacs-lisp/eieio.el (eieio-class-parents): Accept class objects.
1469         (eieio--class-slot-initarg): Rename from class-slot-initarg.
1470         Change `class' arg to be a class object.  Update all callers.
1471         (call-next-method): Adjust to new return value of `eieio-generic-form'.
1472         (eieio-default-superclass): Set var to the class object.
1473         (eieio-edebug-prin1-to-string): Fix recursive call for lists.
1474         Change print behavior to affect class objects rather than
1475         class symbols.
1477         * emacs-lisp/eieio-core.el (eieio-class-object): New function.
1478         (eieio-class-parents-fast): Remove macro.
1479         (eieio--class-option-assoc): Rename from class-option-assoc.
1480         Update all callers.
1481         (eieio--class-option): Rename from class-option.  Change `class' arg to
1482         be a class object.  Update all callers.
1483         (eieio--class-method-invocation-order): Rename from
1484         class-method-invocation-order.  Change `class' arg to be a class
1485         object.  Update all callers.
1486         (eieio-defclass-autoload, eieio-defclass): Set the `parent' field to
1487         a list of class objects rather than names.
1488         (eieio-defclass): Remove redundant quotes.  Use `eieio-oref-default'
1489         for accessors to class allocated slots.
1490         (eieio--perform-slot-validation-for-default): Rename from
1491         eieio-perform-slot-validation-for-default.  Update all callers.
1492         (eieio--add-new-slot): Rename from eieio-add-new-slot.
1493         Update all callers.  Use push.
1494         (eieio-copy-parents-into-subclass): Adjust to new content of
1495         `parent' field.  Use dolist.
1496         (eieio-oref): Remove support for providing a class rather than
1497         an object.
1498         (eieio-oref-default): Prefer class objects over class names.
1499         (eieio--slot-originating-class-p): Rename from
1500         eieio-slot-originating-class-p.  Update all callers.  Use `or'.
1501         (eieio--slot-name-index): Turn check into assertion.
1502         (eieio--class-slot-name-index): Rename from
1503         eieio-class-slot-name-index.  Change `class' arg to be a class object.
1504         Update all callers.
1505         (eieio-attribute-to-initarg): Move to eieio-test-persist.el.
1506         (eieio--c3-candidate): Rename from eieio-c3-candidate.
1507         Update all callers.
1508         (eieio--c3-merge-lists): Rename from eieio-c3-merge-lists.
1509         Update all callers.
1510         (eieio--class-precedence-c3): Rename from eieio-class-precedence-c3.
1511         Update all callers.
1512         (eieio--class-precedence-dfs): Rename from eieio-class-precedence-dfs.
1513         Update all callers.
1514         (eieio--class-precedence-bfs): Rename from eieio-class-precedence-bfs.
1515         Update all callers.  Adjust to new `parent' content.
1516         (eieio--class-precedence-list): Rename from -class-precedence-list.
1517         Update all callers.
1518         (eieio-generic-call): Use autoloadp and autoload-do-load.
1519         Slight simplification.
1520         (eieio-generic-call, eieio-generic-call-primary-only): Adjust to new
1521         return value of `eieio-generic-form'.
1522         (eieiomt-add): Index the hashtable with class objects rather than
1523         class names.
1524         (eieio-generic-form): Accept class objects as well.
1526         * emacs-lisp/eieio-base.el (eieio-persistent-convert-list-to-object):
1527         Adjust to new convention for eieio-persistent-validate/fix-slot-value.
1528         (eieio-persistent-validate/fix-slot-value):
1529         Change `class' arg to be a class object.  Update all callers.
1531 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1533         * emacs-lisp/eieio.el (child-of-class-p): Make it accept class objects
1534         additionally to class names.
1536         * emacs-lisp/eieio-core.el (eieio--with-scoped-class): Use let-binding.
1537         (object): Remove first (constant) slot; rename second to `class-tag'.
1538         (eieio--object-class-object, eieio--object-class-name): New funs
1539         to replace eieio--object-class.
1540         (eieio--class-object, eieio--class-p): New functions.
1541         (same-class-fast-p): Make it a defsubst, change its implementation
1542         to check the class objects rather than their names.
1543         (eieio-object-p): Rewrite.
1544         (eieio-defclass): Adjust the object initialization according to the new
1545         object layout.
1546         (eieio--scoped-class): Declare it returns a class object (not a class
1547         name any more).  Adjust calls accordingly (along with calls to
1548         eieio--with-scoped-class).
1549         (eieio--slot-name-index): Rename from eieio-slot-name-index and change
1550         its class arg to be a class object.  Adjust callers accordingly.
1551         (eieio-slot-originating-class-p): Make its start-class arg a class
1552         object.  Adjust all callers.
1553         (eieio--initarg-to-attribute): Rename from eieio-initarg-to-attribute.
1554         Make its `class' arg a class object.  Adjust all callers.
1556         * emacs-lisp/eieio-base.el (eieio-persistent-validate/fix-slot-value):
1557         Use eieio--slot-name-index rather than eieio-slot-name-index.
1559 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1561         * emacs-lisp/eieio.el (make-instance): Simplify by not adding an object
1562         name argument.
1563         (eieio-object-name): Use eieio-object-name-string.
1564         (eieio--object-names): New const.
1565         (eieio-object-name-string, eieio-object-set-name-string): Re-implement
1566         using a hashtable rather than a built-in slot.
1567         (eieio-constructor): Rename from `constructor'.  Remove `newname' arg.
1568         (clone): Don't mess with the object's "name".
1570         * emacs-lisp/eieio-custom.el (eieio-widget-test): Remove dummy arg.
1571         (eieio-object-value-get): Use eieio-object-set-name-string.
1573         * emacs-lisp/eieio-core.el (eieio--defalias): Follow aliases.
1574         (eieio--object): Remove `name' field.
1575         (eieio-defclass): Adjust to new convention where constructors don't
1576         take an "object name" any more.
1577         (eieio--defgeneric-init-form, eieio--defmethod): Follow aliases.
1578         (eieio-validate-slot-value, eieio-oset-default)
1579         (eieio-slot-name-index): Don't hardcode eieio--object-num-slots.
1580         (eieio-generic-call-primary-only): Simplify.
1582         * emacs-lisp/eieio-base.el (clone) <eieio-instance-inheritor>:
1583         Use call-next-method.
1584         (eieio-constructor): Rename from `constructor'.
1585         (eieio-persistent-convert-list-to-object): Drop objname.
1586         (eieio-persistent-validate/fix-slot-value): Don't hardcode
1587         eieio--object-num-slots.
1588         (eieio-named): Use a normal slot.
1589         (slot-missing) <eieio-named>: Remove.
1590         (eieio-object-name-string, eieio-object-set-name-string, clone)
1591         <eieio-named>: New methods.
1593 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1595         * emacs-lisp/eieio-core.el (eieio--class-v): Rename from class-v.
1596         (method-*): Add a "eieio--" prefix to those constants.
1598         * emacs-lisp/eieio.el: Move edebug specs to the corresponding macro.
1600         * emacs-lisp/eieio-speedbar.el: Use lexical-binding.
1602 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1604         * emacs-lisp/eieio.el (child-of-class-p): Fix case where `class' is
1605         `eieio-default-superclass'.
1607         * emacs-lisp/eieio-datadebug.el: Use lexical-binding.
1609         * emacs-lisp/eieio-custom.el: Use lexical-binding.
1610         (eieio-object-value-to-abstract): Simplify.
1612         * emacs-lisp/eieio-opt.el (eieio-build-class-list): Use cl-mapcan.
1613         (eieio-build-class-alist): Use dolist.
1614         (eieio-all-generic-functions): Adjust to use of hashtables.
1616         * emacs-lisp/eieio-core.el (class): Rename field symbol-obarray to
1617         symbol-hashtable.  It contains a hashtable instead of an obarray.
1618         (generic-p): Use symbol property `eieio-method-hashtable' instead of
1619         `eieio-method-obarray'.
1620         (generic-primary-only-p, generic-primary-only-one-p):
1621         Slight optimization.
1622         (eieio-defclass-autoload-map): Use a hashtable instead of an obarray.
1623         (eieio-defclass-autoload, eieio-defclass): Adjust/simplify accordingly.
1624         (eieio-class-un-autoload): Use autoload-do-load.
1625         (eieio-defclass): Use dolist, cl-pushnew, cl-callf.
1626         Use new cl-deftype-satisfies.  Adjust to use of hashtables.
1627         Don't hardcode the value of eieio--object-num-slots.
1628         (eieio-defgeneric-form-primary-only-one): Remove `doc-string' arg.
1629         Use a closure rather than a backquoted lambda.
1630         (eieio--defmethod): Adjust call accordingly.  Set doc-string via the
1631         function-documentation property.
1632         (eieio-slot-originating-class-p, eieio-slot-name-index)
1633         (eieiomt--optimizing-hashtable, eieiomt-install, eieiomt-add)
1634         (eieio-generic-form): Adjust to use of hashtables.
1635         (eieiomt--sym-optimize): Rename from eieiomt-sym-optimize; take
1636         additional class argument.
1637         (eieio-generic-call-methodname): Remove, unused.
1639         * emacs-lisp/eieio-base.el (eieio-persistent-slot-type-is-class-p):
1640         Prefer \' to $.
1642 2015-01-08  Eli Zaretskii  <eliz@gnu.org>
1644         * simple.el (line-move-visual): When converting X pixel coordinate
1645         to temporary-goal-column, adjust the value for right-to-left
1646         screen lines.  This fixes vertical-motion, next/prev-line, etc.
1648 2015-01-08  Glenn Morris  <rgm@gnu.org>
1650         * files.el (file-tree-walk): Remove; of unknown authorship.  (Bug#19325)
1652 2015-01-07  K. Handa  <handa@gnu.org>
1654         * international/ccl.el (define-ccl-program): Improve the docstring.
1656 2015-01-06  Sam Steingold  <sds@gnu.org>
1658         * shell.el (shell-display-buffer-actions): Remove,
1659         use `display-buffer-alist' instead.
1661 2015-01-05  Dmitry Gutov  <dgutov@yandex.ru>
1663         * progmodes/xref.el (xref--insert-xrefs): Add `help-echo' property
1664         to the references.
1666 2015-01-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1668         * minibuffer.el (completion-category-defaults): New var.
1669         Set unicode-name to use substring completion.
1670         (completion-category-defaults): Set it to nil.
1672 2015-01-04  Dmitry Gutov  <dgutov@yandex.ru>
1674         Add mouse interaction to xref.
1675         * progmodes/xref.el (xref--button-map): New variable.
1676         (xref--mouse-2): New command.
1677         (xref--insert-xrefs): Add `mouse-face' and `keymap' properties to
1678         the inserted references.
1680 2015-01-04  Paul Eggert  <eggert@cs.ucla.edu>
1682         Less 'make' chatter for lisp dir
1683         * Makefile.in (THEFILE): Define to be 'no-such-file' by default,
1684         to make it clearer that the caller must specify it.
1685         (compile-onefile): Remove, replacing by ...
1686         ($(THEFILE)c): ... new rule.  This lets us use AM_V_GEN here.
1687         ($(THEFILE)c, .el.elc, $(MH_E_DIR)/mh-loaddefs.el)
1688         ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
1689         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
1690         Use AM_V_GEN to lessen 'make' chatter.
1691         (.el.elc): Omit duplicate comment.
1693         Less 'make' chatter in batch mode
1694         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
1695         * emacs-lisp/bytecomp.el (byte-compile-file):
1696         * files.el (save-buffer, basic-save-buffer):
1697         * international/quail.el (quail-update-leim-list-file):
1698         Don't output messages like "Generating ..." in batch mode.
1700 2015-01-04  Dmitry Gutov  <dgutov@yandex.ru>
1702         Unbreak `mouse-action' property in text buttons.
1703         * button.el (push-button): Fix regression from 2012-12-06.
1705 2015-01-03  Dmitry Gutov  <dgutov@yandex.ru>
1707         * progmodes/xref.el (xref-marker-stack-empty-p): New function.
1709         * menu-bar.el (menu-bar-goto-menu): Use it.
1711 2015-01-03  Dmitry Gutov  <dgutov@yandex.ru>
1713         * progmodes/xref.el (xref--window-configuration): New variable.
1714         (xref-show-location-at-point): New command.
1715         (xref--restore-window-configuration): New function.
1716         (xref-next-line, xref-prev-line): Delegate to
1717         `xref-show-location-at-point'.
1718         (xref--location-at-point): Don't signal the error.
1719         (xref-goto-xref): Do that here instead.
1720         (xref--xref-buffer-mode): Add `xref--restore-window-configuration'
1721         to `pre-command-hook'.
1722         (xref--xref-buffer-mode-map): Don't remap `next-line' and
1723         `previous-line'.  Additionally bind `xref-next-line' and
1724         `xref-prev-line' to `n' and `p' respectively.
1725         Bind `xref-show-location-at-point' to `C-o'.
1727 2015-01-01  Eli Zaretskii  <eliz@gnu.org>
1729         * tool-bar.el (tool-bar-local-item)
1730         (tool-bar-local-item-from-menu): Call force-mode-line-update to
1731         make sure the tool-bar changes show on display.
1733 2015-01-01  Michael Albinus  <michael.albinus@gmx.de>
1735         Sync with Tramp 2.2.11.
1737         * net/tramp-compat.el (top): Require cl-macs for Emacs 22.
1738         Make an alias for `default-toplevel-value' if it doesn't exist.
1740         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
1741         Use `tramp-compat-delete-directory'.
1743         * net/trampver.el: Update release number.
1745 2015-01-01  Filipp Gunbin  <fgunbin@fastmail.fm>
1747         * autorevert.el (auto-revert-handler): Fix auto-revert-tail-mode
1748         for remote files.  (Bug#19449)
1750 2015-01-01  Simen Heggestøyl  <simenheg@gmail.com>  (tiny change)
1752         * textmodes/css-mode.el (scss-mode): Fix typo (bug#19446).
1754 2014-12-31  Paul Eggert  <eggert@cs.ucla.edu>
1756         Less 'make' chatter in lisp directory
1757         * Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_GEN, am__v_GEN_)
1758         (am__v_GEN_0, am__v_GEN_1): New macros, from ../src/Makefile.in.
1759         (custom-deps, finder-data, autoloads, update-subdirs): Use them.
1761 2014-12-31  Filipp Gunbin  <fgunbin@fastmail.fm>
1763         * info.el (info-display-manual): Limit the completion alternatives
1764         to currently visited manuals if prefix argument is non-nil.
1766 2014-12-30  Paul Eggert  <eggert@cs.ucla.edu>
1768         * Makefile.in (semantic): Simplify.
1770 2014-12-30  Juri Linkov  <juri@linkov.net>
1772         * net/eww.el (eww-isearch-next-buffer): New function.
1773         (eww-mode): Set multi-isearch-next-buffer-function to it.
1775 2014-12-30  Dmitry Gutov  <dgutov@yandex.ru>
1777         * progmodes/xref.el (xref-find-definitions): Mention "no
1778         identifier at point" case in the docstring.
1780         * menu-bar.el (menu-bar-goto-uses-etags-p): New function.
1781         (menu-bar-goto-menu): Use it to show or hide the `set-tags-name'
1782         and `separator-tag-file' items.
1784 2014-12-29  Paul Eggert  <eggert@cs.ucla.edu>
1786         * obsolete/pc-select.el (pc-selection-mode): Use system-type.
1787         This is instead of system-name, which is both wrong here and obsolete.
1788         * desktop.el (desktop-save-frameset):
1789         * dnd.el (dnd-get-local-file-uri):
1790         * nxml/rng-uri.el (rng-uri-file-name-1):
1791         Prefer (system-name) to system-name, and avoid naming
1792         locals 'system-name'.
1793         * startup.el (system-name): Now an obsolete variable.  (Bug#19438)
1795 2014-12-29  Dmitry Gutov  <dgutov@yandex.ru>
1797         * menu-bar.el (menu-bar-next-tag-other-window)
1798         (menu-bar-next-tag): Remove.
1800 2014-12-29  K. Handa  <handa@gnu.org>
1802         * international/mule.el (make-translation-table-from-alist):
1803         Accept nil or zero-length vector for FROM and TO.
1805 2014-12-29  Lars Ingebrigtsen  <larsi@gnus.org>
1807         * net/eww.el (eww-mode): Truncate overlong lines for prettier
1808         display when resizing.
1810         * net/shr.el (shr-width): Default to using the window width when
1811         rendering.
1813 2014-12-29  Dmitry Gutov  <dgutov@yandex.ru>
1815         Unbreak jumping to an alias's definition.
1816         * emacs-lisp/find-func.el (find-function-library): Return a pair
1817         (ORIG-FUNCTION . LIBRARY) instead of just its second element.
1818         (find-function-noselect): Use it.
1819         * progmodes/elisp-mode.el (elisp--xref-identifier-file): Rename to
1820         `elisp--xref-identifier-location', incorporate logic from
1821         `elisp--xref-find-definitions', use the changed
1822         `find-function-library' return value.
1824 2014-12-29  Juri Linkov  <juri@linkov.net>
1826         * comint.el (comint-history-isearch-message): Use field-beginning
1827         instead of comint-line-beginning-position - that's more fixes for
1828         http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00305.html
1829         (comint-history-isearch-message): Fix args of isearch-message-prefix.
1831 2014-12-29  Juri Linkov  <juri@linkov.net>
1833         * vc/vc-dir.el (vc-dir-display-file): New command (bug#19450).
1834         (vc-dir-mode-map): Bind it to "\C-o".
1835         (vc-dir-menu-map): Add it to menu.
1837 2014-12-29  Dmitry Gutov  <dgutov@yandex.ru>
1839         * progmodes/etags.el (find-tag-other-window)
1840         (find-tag-other-frame, find-tag-regexp, tags-loop-continue)
1841         (tags-apropos): Declare obsolete.
1843         * menu-bar.el (menu-bar-goto-menu): Replace all but one etags item
1844         with xref ones.
1846 2014-12-28  Eli Zaretskii  <eliz@gnu.org>
1848         * international/mule.el (define-coding-system): Fix typos in the
1849         doc string.
1851 2014-12-28  Kenichi Handa  <handa@gnu.org>
1853         * international/mule.el (define-coding-system): Improve the doc
1854         string.
1856 2014-12-28  Ivan Shmakov  <ivan@siamics.net>
1858         * net/shr.el (shr-tag-table): Fix handling of tbody/header/footer
1859         elements in tables (bug#19444).
1861         * net/eww.el (eww-handle-link): Fix typo in "up" rel handling
1862         (bug#19445).
1864 2014-12-28  Juri Linkov  <juri@linkov.net>
1866         * vc/compare-w.el: Require diff-mode for diff faces.
1867         (compare-windows-removed, compare-windows-added): New faces
1868         inheriting from diff faces.
1869         (compare-windows): Define obsolete face alias.
1870         (compare-windows-highlight): Replace face `compare-windows' with
1871         new faces `compare-windows-added' and `compare-windows-removed'
1872         (bug#19451).
1873         (compare-windows-get-recent-window): Signal an error when
1874         no other window is found (bug#19170).
1876 2014-12-27  Dmitry Gutov  <dgutov@yandex.ru>
1878         * progmodes/elisp-mode.el (elisp--xref-identifier-file):
1879         Skip features that have no sources.
1881         * simple.el (execute-extended-command):
1882         When `suggest-key-bindings' is nil, don't.
1884 2014-12-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1886         python.el: Native readline completion.
1887         * progmodes/python.el (python-shell-completion-native-disabled-interpreters)
1888         (python-shell-completion-native-enable)
1889         (python-shell-completion-native-output-timeout): New defcustoms.
1890         (python-shell-completion-native-interpreter-disabled-p)
1891         (python-shell-completion-native-try)
1892         (python-shell-completion-native-setup)
1893         (python-shell-completion-native-turn-off)
1894         (python-shell-completion-native-turn-on)
1895         (python-shell-completion-native-turn-on-maybe)
1896         (python-shell-completion-native-turn-on-maybe-with-msg)
1897         (python-shell-completion-native-toggle): New functions.
1898         (python-shell-completion-native-get-completions): New function.
1899         (python-shell-completion-at-point): Use it.
1901 2014-12-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1903         python.el: Enhance shell user interaction and deprecate
1904         python-shell-get-or-create-process.
1905         * progmodes/python.el (python-shell-get-process-or-error):
1906         New function.
1907         (python-shell-with-shell-buffer): Use it.
1908         (python-shell-send-string, python-shell-send-region)
1909         (python-shell-send-buffer, python-shell-send-defun)
1910         (python-shell-send-file, python-shell-switch-to-shell): Use it.
1911         Add argument MSG to display user-friendly message when no process
1912         is running.
1913         (python-shell-switch-to-shell): Call pop-to-buffer with NORECORD.
1914         (python-shell-make-comint): Rename argument SHOW from POP.
1915         Use display-buffer instead of pop-to-buffer.
1916         (run-python): Doc fix.  Return process.
1917         (python-shell-get-or-create-process): Make obsolete.
1919 2014-12-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1921         * progmodes/python.el (python-shell-buffer-substring):
1922         Handle cornercase when region sent starts at point-min.
1924 2014-12-27  Eli Zaretskii  <eliz@gnu.org>
1926         * language/misc-lang.el (composition-function-table): Add Syriac
1927         characters and also ZWJ/ZWNJ.
1928         See http://lists.gnu.org/archive/html/help-gnu-emacs/2014-12/msg00248.html
1929         for the details.
1931 2014-12-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1933         python.el: Fix message when sending region.
1934         * progmodes/python.el (python-shell-send-region): Rename argument
1935         send-main from nomain.  Fix message.
1936         (python-shell-send-buffer): Rename argument send-main from arg.
1938         python.el: Cleanup temp files even with eval errors.
1939         * progmodes/python.el (python-shell-send-file): Make file-name
1940         mandatory.  Fix temp file removal in the majority of cases.
1942         python.el: Handle file encoding for shell.
1943         * progmodes/python.el (python-rx-constituents): Add coding-cookie.
1944         (python-shell--save-temp-file): Write file with proper encoding.
1945         (python-shell-buffer-substring): Add coding cookie for detected
1946         encoding to generated content.  Fix blank lines when removing
1947         if-name-main block.
1948         (python-shell-send-file): Handle file encoding.
1949         (python-info-encoding-from-cookie)
1950         (python-info-encoding): New functions.
1952 2014-12-27  Michael Albinus  <michael.albinus@gmx.de>
1954         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
1955         Use `tramp-rsh-end-of-line', it ought to be more robust.
1957 2014-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1959         * progmodes/js.el (js-syntax-propertize): "return" can't be divided
1960         (bug#19397).
1962 2014-12-27  Michael Albinus  <michael.albinus@gmx.de>
1964         * net/tramp.el (tramp-read-passwd): Ignore errors from `auth-source-*'.
1966         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band): Use "\n"
1967         as end-of-line delimeter for passwords, when running on MS Windows.
1969 2014-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1971         * progmodes/sh-script.el (sh-set-shell): Don't change the global value
1972         of indent-line-function (bug#19433).
1974 2014-12-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1976         Fix line numbers on Python shell.
1977         * progmodes/python.el (python-shell--save-temp-file): Do not
1978         append coding cookie.
1979         (python-shell-send-string): Generalize for
1980         python-shell-send-region.
1981         (python--use-fake-loc): Delete var.
1982         (python-shell-buffer-substring): Cleanup fake-loc logic.
1983         (python-shell-send-region): Remove fake-loc logic, simplify.
1985 2014-12-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1987         * progmodes/python.el (python-indent-post-self-insert-function):
1988         Make colon to re-indent only for dedenters, handling
1989         multiline-statements gracefully.
1991 2014-12-27  Michael Albinus  <michael.albinus@gmx.de>
1993         * net/tramp.el (tramp-handle-insert-file-contents):
1994         Set `find-file-not-found-functions' in case of errors.  (Bug#18623)
1996 2014-12-27  Michael Albinus  <michael.albinus@gmx.de>
1998         * net/tramp-sh.el (tramp-send-command-and-read): New optional
1999         arg MARKER.
2000         (tramp-get-remote-path): Use it.
2002 2014-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2004         * subr.el (redisplay-dont-pause): Mark as obsolete.
2006 2014-12-27  Michael Albinus  <michael.albinus@gmx.de>
2008         * net/tramp.el (tramp-error-with-buffer): Call `message' properly.
2009         (tramp-accept-process-output): Use nil as argument for
2010         `accept-process-output', when there is a gateway prepended.
2012         * net/tramp-gw.el (tramp-gw-open-connection): Suppress traces in
2013         wrong debug buffer.
2014         (tramp-gw-open-connection): Set process coding system 'binary.
2015         (tramp-gw-open-network-stream): Handle HTTP error 403.
2017         * net/tramp-sh.el (tramp-compute-multi-hops): Suppress traces in
2018         wrong debug buffer.
2019         (tramp-maybe-open-connection): Set connection property "gateway".
2021 2014-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2023         * subr.el (sit-for): Tweak docstring (bug#19381).
2025 2014-12-27  Dmitry Gutov  <dgutov@yandex.ru>
2027         * vc/vc-git.el (vc-git-after-dir-status-stage): Move `up-to-date'
2028         stage to after `diff-index' (bug#19386).
2030 2014-12-27  João Távora  <joaotavora@gmail.com>
2032         * textmodes/tex-mode.el (tex-insert-quote): Consider and respect
2033         `electric-pair-mode' (bug#19356).
2035 2014-12-27  Dmitry Gutov  <dgutov@yandex.ru>
2037         elisp-xref-find: Don't create buffers eagerly.
2039         * progmodes/elisp-mode.el (elisp--identifier-location): Fold back
2040         into `elisp--company-location'.
2041         (elisp--identifier-completion-table): Rename to
2042         `elisp--identifier-completion-table', and do not include just any
2043         symbols with a property list.
2044         (elisp-completion-at-point): Revert the 2014-12-25 change.
2045         (elisp--xref-identifier-file): New function.
2046         (elisp--xref-find-definitions): Use it.
2048         * emacs-lisp/find-func.el (find-function-library): New function,
2049         extracted from `find-function-noselect'.
2051         * progmodes/xref.el (xref-elisp-location): New class.
2052         (xref-make-elisp-location): New function.
2053         (xref-location-marker): New implementation.
2055 2014-12-27  Juri Linkov  <juri@linkov.net>
2057         * minibuffer.el (minibuffer-completion-help):
2058         Use shrink-window-if-larger-than-buffer in window-height
2059         when temp-buffer-resize-mode is nil.
2061         * window.el (with-displayed-buffer-window): Remove window-height
2062         from the action alist in the temp-buffer-window-show call
2063         when window-height is handled explicitly afterwards (bug#19355).
2065 2014-12-27  Juri Linkov  <juri@linkov.net>
2067         Support subdirectories when saving places in dired.
2068         * saveplace.el (toggle-save-place, save-place-to-alist)
2069         (save-places-to-alist, save-place-dired-hook):
2070         Use dired-current-directory instead of dired-directory (bug#19436).
2071         (save-place-dired-hook): Add check for alist to make the new
2072         format future-proof to allow other possible formats.
2074 2014-12-26  Fabián Ezequiel Gallina  <fgallina@gnu.org>
2076         python.el: Generate clearer shell buffer names.
2077         * progmodes/python.el (python-shell-get-process-name)
2078         (python-shell-internal-get-process-name): Use `buffer-name`.
2079         (python-shell-internal-get-or-create-process): Simplify.
2081 2014-12-26  Dmitry Gutov  <dgutov@yandex.ru>
2083         Add basic xref apropos implementation to elisp-mode.
2085         * progmodes/elisp-mode.el (elisp--xref-find-definitions):
2086         Filter out nil results.
2087         (elisp--xref-find-apropos): New function.
2088         (elisp-xref-find): Use it.
2090         * progmodes/xref.el (xref--show-xrefs): Use `user-error'.
2092 2014-12-25  Filipp Gunbin  <fgunbin@fastmail.fm>
2094         * dired-aux.el (dired-maybe-insert-subdir):
2095         Make dired-maybe-insert-subdir always skip trivial files.
2097 2014-12-25  Helmut Eller  <eller.helmut@gmail.com>
2098             Dmitry Gutov  <dgutov@yandex.ru>
2100         Consolidate cross-referencing commands.
2102         Move autoloaded bindings for `M-.', `M-,', `C-x 4 .' and
2103         `C-x 5 .' from etags.el to xref.el.
2105         * progmodes/xref.el: New file.
2107         * progmodes/elisp-mode.el (elisp--identifier-types): New variable.
2108         (elisp--identifier-location): New function, extracted from
2109         `elisp--company-location'.
2110         (elisp--company-location): Use it.
2111         (elisp--identifier-completion-table): New variable.
2112         (elisp-completion-at-point): Use it.
2113         (emacs-lisp-mode): Set the local values of `xref-find-function'
2114         and `xref-identifier-completion-table-function'.
2115         (elisp-xref-find, elisp--xref-find-definitions)
2116         (elisp--xref-identifier-completion-table): New functions.
2118         * progmodes/etags.el (find-tag-marker-ring): Mark obsolete in
2119         favor of `xref--marker-ring'.
2120         (tags-lazy-completion-table): Autoload.
2121         (tags-reset-tags-tables): Use `xref-clear-marker-stack'.
2122         (find-tag-noselect): Use `xref-push-marker-stack'.
2123         (pop-tag-mark): Make an alias for `xref-pop-marker-stack'.
2124         (etags--xref-limit): New constant.
2125         (etags-xref-find, etags--xref-find-definitions): New functions.
2127 2014-12-25  Martin Rudalics  <rudalics@gmx.at>
2129         * cus-start.el (resize-mini-windows): Make it customizable.
2131 2014-12-24  Stephen Leake  <stephen_leake@stephe-leake.org>
2133         * startup.el (fancy-about-text): Change buttons for etc/CONTRIBUTE
2134         to (info "(emacs)Contributing").  (Bug#19299)
2136 2014-12-24  Martin Rudalics  <rudalics@gmx.at>
2138         * window.el (mouse-autoselect-window-position-1): New variable.
2139         (mouse-autoselect-window-cancel)
2140         (mouse-autoselect-window-select, handle-select-window):
2141         With delayed autoselection select window only if mouse moves after
2142         selecting its frame.
2144 2014-12-24  Michael Albinus  <michael.albinus@gmx.de>
2146         * eshell/esh-ext.el (eshell-find-interpreter): Expand relative
2147         remote file names.  (Bug#18782)
2149 2014-12-23  Sam Steingold  <sds@gnu.org>
2151         * shell.el (shell-display-buffer-actions): New user option.
2152         (shell): Pass it to `pop-to-buffer' instead of hard-coding
2153         `pop-to-buffer-same-window'.
2155 2014-12-23  Stefan Monnier  <monnier@iro.umontreal.ca>
2157         * progmodes/js.el (js--syntax-propertize-regexp-syntax-table): New var.
2158         (js-syntax-propertize-regexp): Use it to recognize "slash in
2159         a character class" (bug#19397).
2161 2014-12-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2163         * completion.el: Use post-self-insert-hook (bug#19400).
2164         (completion-separator-self-insert-command)
2165         (completion-separator-self-insert-autofilling): Remove.
2166         (completion-separator-chars): New var.
2167         (completion-c-mode-hook, completion-setup-fortran-mode): Use it instead
2168         of changing the keymap.
2169         (completion--post-self-insert): New function.
2170         (dynamic-completion-mode): Use it instead of rebinding keys.
2171         (cmpl--completion-string): Rename from completion-string.
2172         (add-completion-to-head, delete-completion): Let-bind it explicitly.
2174 2014-12-22  Bozhidar Batsov  <bozhidar@batsov.com>
2176         * progmodes/ruby-mode.el (ruby--string-region): Simplify code
2177         by leveraging `syntax-ppss'.
2179 2014-12-22  Artur Malabarba  <bruce.connor.am@gmail.com>
2181         * let-alist.el (let-alist): Use `make-symbol' instead of `gensym'.
2183 2014-12-20  Michael Albinus  <michael.albinus@gmx.de>
2185         * net/tramp-sh.el (tramp-histfile-override): Add :version.
2187 2014-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
2189         * net/tramp-sh.el (tramp-histfile-override): Clarify docstring.
2191 2014-12-19  Artur Malabarba  <bruce.connor.am@gmail.com>
2193         * let-alist.el (let-alist): Enable access to deeper alists by
2194         using dots inside the dotted symbols.
2196 2014-12-19  Alan Mackenzie  <acm@muc.de>
2198         Make C++11 uniform init syntax work.
2199         New keywords "final" and "override".
2200         * progmodes/cc-engine.el (c-back-over-member-initializer-braces):
2201         New function.
2202         (c-guess-basic-syntax): Set `containing-sex' and `lim' using the
2203         new function.
2204         * progmodes/cc-fonts.el (c-font-lock-declarations): Check more
2205         carefully for "are we at a declarator?" using
2206         c-back-over-member-initializers.
2207         * progmodes/cc-langs.el (c-type-modifier-kwds): Include "final"
2208         and "override" in the C++ value.
2210 2014-12-19  Martin Rudalics  <rudalics@gmx.at>
2212         * textmodes/ispell.el (ispell-command-loop): Don't use `next-window'.
2214 2014-12-21  Lars Ingebrigtsen  <larsi@gnus.org>
2216         * net/nsm.el (nsm-save-host): Don't save the host name twice
2217         (bug#19269).
2219 2014-12-18  Sam Steingold  <sds@gnu.org>
2221         Keyboard interface (C-f10) to `mouse-buffer-menu' (C-down-mouse-1).
2222         * mouse.el (mouse-buffer-menu-map): Extract from `mouse-buffer-menu'.
2223         (mouse-buffer-menu): Use `mouse-buffer-menu-map'.
2224         * menu-bar.el (menu-bar-buffer-vector): Extract from
2225         `menu-bar-update-buffers'.
2226         (menu-bar-update-buffers): Use `menu-bar-buffer-vector'.
2227         (buffer-menu-open): New user command, bound globally to C-f10,
2228         provides a keyboard interface to `mouse-buffer-menu' (C-down-mouse-1).
2229         (mouse-buffer-menu-keymap): Use `menu-bar-buffer-vector' to
2230         convert the value returned by `mouse-buffer-menu-map' to a list
2231         acceptable to `popup-menu' for `buffer-menu-open'.
2233 2014-12-18  Artur Malabarba  <bruce.connor.am@gmail.com>
2235         * let-alist.el (let-alist): Evaluate the `alist' argument only once.
2237 2014-12-18  Sam Steingold  <sds@gnu.org>
2239         * emacs-lisp/package.el: Avoid compilation warning by declaring
2240         the `find-library-name' function.
2241         (package-activate-1): Fix the `with-demoted-errors' calls:
2242         the first argument must be a string literal.
2244 2014-12-18  Martin Rudalics  <rudalics@gmx.at>
2246         Add code for "preserving" window sizes.
2247         * dired.el (dired-pop-to-buffer): Call fit-window-to-buffer with
2248         `preserve-size' t.
2249         (dired-mark-pop-up): Preserve size of window showing marked files.
2250         * electric.el (Electric-pop-up-window):
2251         * help.el (resize-temp-buffer-window): Call fit-window-to-buffer
2252         with `preserve-size' t.
2253         * minibuffer.el (minibuffer-completion-help):
2254         Use `resize-temp-buffer-window' instead of `fit-window-to-buffer'
2255         (Bug#19355).  Preserve size of completions window.
2256         * register.el (register-preview): Preserve size of register
2257         preview window.
2258         * tmm.el (tmm-add-prompt): Call fit-window-to-buffer
2259         with `preserve-size' t (Bug#1291).
2260         * window.el (with-displayed-buffer-window): Add calls to
2261         `window-preserve-size'.
2262         (window-min-pixel-size, window--preservable-size)
2263         (window-preserve-size, window-preserved-size)
2264         (window--preserve-size, window--min-size-ignore-p): New functions.
2265         (window-min-size, window-min-delta, window--resizable)
2266         (window--resize-this-window, split-window-below)
2267         (split-window-right): Amend doc-string.
2268         (window--min-size-1, window-sizable, window--size-fixed-1)
2269         (window-size-fixed-p, window--min-delta-1)
2270         (frame-windows-min-size, window--max-delta-1, window-resize)
2271         (window--resize-child-windows, window--resize-siblings)
2272         (enlarge-window, shrink-window, split-window): Handle preserving
2273         window sizes.
2274         (adjust-window-trailing-edge): Handle preserving window
2275         sizes.  Signal user-error instead of an error when there's no
2276         window above or below.
2277         (window--state-put-2): Handle horizontal scroll bars.
2278         (window--display-buffer): Call `preserve-size' if asked for.
2279         (display-buffer): Mention `preserve-size' alist member in doc-string.
2280         (fit-window-to-buffer): New argument PRESERVE-SIZE.
2281         * textmodes/ispell.el (ispell-command-loop): Suppress horizontal
2282         scroll bar on ispell's windows.  Don't count window lines and
2283         don't deal with dedicated windows.
2284         (ispell-show-choices, ispell-help): Let `ispell-display-buffer'
2285         do the window handling.
2286         (ispell-adjusted-window-height, ispell-overlay-window): Remove.
2287         (ispell-display-buffer): New function to reuse, create and fit
2288         window to ispell's buffers.  (Bug#3413)
2290 2014-12-18  Dmitry Gutov  <dgutov@yandex.ru>
2292         * emacs-lisp/package.el (package-activate): Do not re-activate or
2293         reload the dependencies (bug#19390).
2295 2014-12-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2297         * progmodes/cc-cmds.el (c-subword-mode): Alias to subword-mode.
2298         (c-update-modeline):
2299         * progmodes/cc-langs.el (c-mode-menu): Use c-subword-mode.
2300         * progmodes/cc-mode.el (subword-mode): Move autoload to cc-cmds.el.
2301         (c-mode-base-map): Use c-subword-mode.
2303 2014-12-18  Eli Zaretskii  <eliz@gnu.org>
2305         * international/mule-diag.el (describe-font-internal):
2306         Display additional info returned by font-info.
2308         * linum.el (linum--face-width): Rename from linum--face-height,
2309         and use the new functionality of font-info.
2310         (linum-update-window): Use linum--face-width and frame-char-width,
2311         instead of approximating with height.
2313 2014-12-18  Dmitry Gutov  <dgutov@yandex.ru>
2315         * vc/vc-svn.el (vc-svn-dir-status-files): Revert the 2014-12-02
2316         change (bug#19387).  Use `apply' on `vc-dir-command'  (bug#19405).
2318         * emacs-lisp/package.el (package-activate-1): Add RELOAD argument
2319         and a docstring.
2320         (package-activate): Call itself on dependencies on PACKAGE with
2321         the same FORCE argument.  Pass FORCE as RELOAD into
2322         `package-activate-1'  (bug#19390).
2324 2014-12-17  Sam Steingold  <sds@gnu.org>
2326         * emacs-lisp/package.el (package--list-loaded-files):
2327         Handle `(nil ...)' elements in `load-history'.
2329 2014-12-17  Teodor Zlatanov  <tzz@lifelogs.com>
2331         * net/tramp-sh.el (tramp-histfile-override): New variable.
2332         (tramp-open-shell, tramp-maybe-open-connection): Use it.
2334 2014-12-17  Dmitry Gutov  <dgutov@yandex.ru>
2336         * vc/vc.el: Improve `dir-status-files' description.
2338         * emacs-lisp/package.el (package--list-loaded-files): Don't call
2339         file-truename on load-history elements (bug#19390).
2341 2014-12-16  Nicolas Petton <petton.nicolas@gmail.com>
2343         * emacs-lisp/seq.el: New file.
2345 2014-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
2347         * jit-lock.el (jit-lock-function): Don't defer if jit-lock-defer-time
2348         is 0 and there is no input pending.
2350 2014-12-15  Juri Linkov  <juri@linkov.net>
2352         * replace.el (query-replace-read-from): Use query-replace-compile-replacement
2353         only on the return value (bug#19383).
2355 2014-12-15  Juri Linkov  <juri@linkov.net>
2357         * isearch.el (isearch-lazy-highlight-search): Extend the bound of
2358         the wrapped search by the length of the search string to be able
2359         to lazy-highlight the whole search string at point (bug#19353).
2361 2014-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2363         * net/shr.el (shr-fold-text): Don't bug out on zero-length text.
2365 2014-12-14  Alan Mackenzie  <acm@muc.de>
2367         * cus-start.el (all): Add fast-but-imprecise-scrolling.
2369 2014-12-14  Artur Malabarba  <bruce.connor.am@gmail.com>
2371         * let-alist.el: Add lexical binding.
2373 2014-12-14  Steve Purcell  <steve@sanityinc.com>  (tiny change)
2375         * emacs-lisp/package.el (package-menu-mode): Use an extra column
2376         for the "Version" column, to accomodate date-and-time-based versions.
2378 2014-12-14  Cameron Desautels  <camdez@gmail.com>
2380         * cus-edit.el (custom-unsaved-options): New function, extracted
2381         from `customize-unsaved'.
2382         (custom-unsaved): Use it.
2383         (custom-prompt-customize-unsaved-options): New function.
2384         (Bug#19328)
2386 2014-12-14  Dmitry Gutov  <dgutov@yandex.ru>
2388         * fringe.el (fringe-bitmap-p): Fix 2014-12-05 breakage.
2390 2014-12-14  Dmitry Gutov  <dgutov@yandex.ru>
2392         Move ASYNC argument to the `diff' VC command to the fifth
2393         position, for better compatibility with existing third-party code,
2394         and document it.
2396         * vc/vc.el (vc-diff-internal): Pass `async' argument to the
2397         backend `diff' command in the last position.
2399         * vc/vc-svn.el (vc-svn-diff):
2400         * vc/vc-src.el (vc-src-diff):
2401         * vc/vc-sccs.el (vc-sccs-diff):
2402         * vc/vc-rcs.el (vc-rcs-diff):
2403         * vc/vc-mtn.el (vc-mtn-diff):
2404         * vc/vc-hg.el (vc-hg-diff):
2405         * vc/vc-git.el (vc-git-diff):
2406         * vc/vc-dav.el (vc-dav-diff):
2407         * vc/vc-cvs.el (vc-cvs-diff):
2408         * vc/vc-bzr.el (vc-bzr-diff):
2409         * obsolete/vc-arch.el (vc-arch-diff): Move ASYNC argument to the end.
2411 2014-12-14  Paul Eggert  <eggert@cs.ucla.edu>
2413         * emacs-lisp/cconv.el (cconv--analyze-use):
2414         Rename from cconv--analyse-use.
2415         (cconv--analyze-function): Rename from cconv--analyse-function.
2416         (cconv-analyze-form): Rename from cconv-analyse-form.
2418 2014-12-13  Andreas Schwab  <schwab@linux-m68k.org>
2420         * net/shr.el (shr-next-link): Don't error out at eob.
2422 2014-12-05  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
2424         * isearch.el (isearch-open-necessary-overlays): Open overlay
2425         ending at point (bug#19333).
2427 2014-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2429         * net/shr.el (shr-fold-text): New function.
2430         (shr-show-alt-text, shr-urlify, shr-tag-img): Use it to fold long
2431         alt/title texts.
2432         (shr-fold-text): Inhibit state from being altered.
2434         * files.el (directory-files-recursively): Really check whether
2435         files are symlinks.
2436         (directory-name-p): New function.
2437         (directory-files-recursively): Use it.
2439 2014-12-13  Artur Malabarba  <bruce.connor.am@gmail.com>
2441         * emacs-lisp/package.el (package--list-loaded-files): New function
2442         to list files in a given directory which correspond to already
2443         loaded files.
2444         (package-activate-1): Reload files given by `package--list-loaded-files'.
2445         Fix bug#10125, bug#18443, and bug#18448.
2447 2014-12-13  Eric S. Raymond  <esr@snark.thyrsus.com>
2449         * vc/vc-svn.el (vc-svn-diff): Fix bug #19312.
2451 2014-12-13  Michael Albinus  <michael.albinus@gmx.de>
2453         * simple.el (password-word-equivalents): Add "passcode", used for
2454         numeric secrets like PINs or RSA tokens.
2456 2014-12-13  Michael Albinus  <michael.albinus@gmx.de>
2458         * net/tramp-sh.el (tramp-get-remote-path): Use a login shell in
2459         order to determine `tramp-own-remote-path'.
2461 2014-12-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
2463         * progmodes/python.el (python-shell-parse-command):
2464         Quote `python-shell-interpreter`.  (Bug#19289)
2466 2014-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2468         * progmodes/python.el (python-indent-line): Use `noindent' in strings.
2469         (python-indent-levels): Document extra value.
2470         (python-indent-calculate-indentation): Return `noindent' in strings.
2471         (python-indent-post-self-insert-function)
2472         (python-indent-calculate-levels): Handle new value.
2474 2014-12-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2476         * net/network-stream.el (network-stream-open-starttls): No need to
2477         check for the availability of `gnutls-available-p'.
2479         * files.el (directory-files-recursively): Don't follow symlinks to
2480         other directories.
2482 2014-12-12  Eric S. Raymond  <esr@snark.thyrsus.com>
2484         * vc/vc-dav.el, vc/vc-git.el, vc/vc-hg.el, vc/vc-src.el:
2485         * vc/vc.el: latest-on-branch-p is no longer a public method.
2487         * vc/vc.el, vc/vc-hg.el, vc/vc-git.el, vc/vc-hooks.el:
2488         * vc/vc-mtn.el, vc/vc-rcs.el, vc/vc-sccs.el, vc/vc-src.el:
2489         Remove `rollback' method, to be replaced in the future by uncommit.
2491 2014-12-11  Michael Albinus  <michael.albinus@gmx.de>
2493         * vc/vc-hg.el (vc-hg-state): Make FILE absolute.  Handle the case
2494         that there is empty output.
2496 2014-12-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2498         * emacs-lisp/eldoc.el (eldoc-documentation-function): Change default.
2499         (eldoc-mode, eldoc-schedule-timer): Adjust to new default.
2501 2014-12-10  Artur Malabarba  <bruce.connor.am@gmail.com>
2503         * let-alist.el: Add new package and macro.
2505 2014-12-10  Eric S. Raymond  <esr@snark.thyrsus.com>
2507         * vc/vc-dispatcher.el, vc/vc-hooks.el, vc/vc-rcs.el:
2508         * vc/vc-sccs.el, vc/vc.el: Righteous featurectomy of vc-keep-workfiles,
2509         it's a shoot-self-in-foot archaism.  Workfiles are always kept.
2511 2014-12-10  Rasmus Pank Roulund  <emacs@pank.eu>
2513         * net/ange-ftp.el (ange-ftp-switches-ok): Disallow flags causing
2514         trouble with ls over ftp.  These flags result in ls returning no
2515         output, causing Tramp-breakage.  (bug#19192)
2517 2014-12-10  Andreas Schwab  <schwab@suse.de>
2519         * files.el (file-tree-walk): Use file-name-as-directory unconditionally.
2521 2014-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2523         * files.el (directory-files-recursively):
2524         Use `file-name-all-completions' instead of `directory-files' for
2525         greater speed.
2527         * net/shr.el (shr-tag-object): Don't bug out on text elements in
2528         <object>.
2530 2014-12-09  Bozhidar Batsov  <bozhidar@batsov.com>
2532         * progmodes/ruby-mode.el (auto-mode-alist): Add .rabl, Berksfile
2533         and Puppetfile.
2534         (ruby-toggle-string-quotes): New command that allows you to quickly
2535         toggle between single-quoted and double-quoted string literals.
2537 2014-12-09  Eric S. Raymond  <esr@snark.thyrsus.com>
2539         * vc/vc-src.el (vc-src-do-comand): Prepend -- to file argument
2540         list, avoids problems witt names containing hyphens.
2542 2014-12-09  Wilson Snyder  <wsnyder@wsnyder.org>
2544         Sync with upstream verilog-mode revision aa4b777.
2545         * progmodes/verilog-mode.el (verilog-mode-version): Update.
2546         (verilog-auto-end-comment-lines-re, verilog-end-block-ordered-re)
2547         (verilog-set-auto-endcomments): Automatically comment property/
2548         endproperty blocks to match other similar blocks like sequence/
2549         endsequence, function/endfunction, etc.  Reported by Alex Reed.
2550         (verilog-set-auto-endcomments): Fix end comments for functions of
2551         type void, etc.  Detect the function- or task-name when
2552         auto-commenting blocks that lack an explicit portlist.
2553         Reported by Alex Reed.
2554         (verilog-nameable-item-re): Fix nameable items that can have an
2555         end-identifier to include endchecker, endgroup, endprogram,
2556         endproperty, and endsequence.  Reported by Alex Reed.
2557         (verilog-preprocessor-re, verilog-beg-of-statement):
2558         Fix indentation of property/endproperty around pre-processor
2559         directives.  Reported by Alex Reed.
2560         (verilog-label-be): When auto-commenting a buffer, consider
2561         auto-comments on all known keywords (not just a subset thereof).
2562         Reported by Alex Reed.
2563         (verilog-beg-of-statement): Fix labeling do-while blocks, bug842.
2564         Reported by Alex Reed.
2565         (verilog-beg-of-statement-1, verilog-at-constraint-p):
2566         Fix hanging with many curly-bracket pairs, bug663.
2567         (verilog-do-indent): Fix electric tab deleting form-feeds.
2568         Note caused by indent-line-to deleting tabls pre 24.5.
2569         (verilog-auto-output, verilog-auto-input, verilog-auto-inout)
2570         (verilog-auto-inout-module, verilog-auto-inout-in): Doc fixes.
2571         (verilog-read-always-signals, verilog-auto-sense-sigs)
2572         (verilog-auto-reset): Fix AUTORESET with always_comb and always_latch,
2573         bug844.  Reported by Greg Hilton.
2575 2014-12-09  Alex Reed  <acreed4@gmail.com>  (tiny change)
2577         * progmodes/verilog-mode.el (verilog-no-indent-begin-re):
2578         Fix `verilog-indent-begin-after-if' nil not honoring 'forever',
2579         'foreach', and 'do' keywords.
2580         (verilog-endcomment-reason-re, verilog-beg-of-statement):
2581         Fix labeling do-while blocks, bug842.
2582         (verilog-backward-token): Fix indenting sensitivity lists with
2583         named events, bug840.
2585 2014-12-09  Reto Zimmermann  <reto@gnu.org>
2587         Sync with upstream vhdl mode v3.36.1.
2588         * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
2589         (vhdl-compiler-alist): Anchor all error regexps.
2590         (vhdl-compile-use-local-error-regexp): Change default to nil.
2591         (vhdl-asort, vhdl-anot-head-p): Remove.
2592         (vhdl-aput, vhdl-adelete, vhdl-aget): Simplify.
2593         Remove optional argument of vhdl-aget and update all callers.
2594         (vhdl-import-project): Also set `vhdl-compiler'.
2596 2014-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2598         * files.el (find-files): New function.
2600         * net/shr.el (shr-dom-print): Don't print comments.
2601         (shr-tag-svg): Give inline SVG images the right type.
2603         * net/eww.el (eww-update-header-line-format): Mark valid/invalid
2604         certificates in the header line.
2605         (eww-invalid-certificate, eww-valid-certificate): New faces.
2607 2014-12-09  Fabián Ezequiel Gallina  <fgallina@gnu.org>
2609         * progmodes/python.el (inferior-python-mode):
2610         Set `comint-prompt-read-only` to `t` only locally.
2612 2014-12-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2614         * net/nsm.el (nsm-check-protocol): Test for RC4 on `high'.
2615         (nsm-format-certificate): Include more data about the connection.
2616         (nsm-query): Fill the text to that it looks nicer.
2617         (nsm-check-protocol): Also warn if using SSL3 or older.
2619 2014-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2621         * progmodes/gud.el (gud-gdb-completions): Remove unused var `start'.
2623         * obsolete/gulp.el (gulp-create-m-p-alist): Remove unused var `mnt-tm'.
2625         * net/tramp.el (tramp-handle-make-symbolic-link): Mark unused arg.
2627         * info.el (Info-mode-map): Remove left-over binding.
2629         * emacs-lisp/avl-tree.el: Use lexical-binding and cl-lib.
2630         (avl-tree--root): Remove redundant defsetf.
2632 2014-12-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2634         * net/nsm.el (network-security-level): Remove the detailed
2635         description, which was already outdated, and refer the users to
2636         the manual.
2637         (nsm-check-protocol): Check for weak Diffie-Hellman prime bits
2638         (bug#19153).
2640 2014-12-06  Andrey Kotlarski  <m00naticus@gmail.com>
2642         * net/eww.el (eww-buffers-mode): New major mode.
2643         (eww-list-buffers, eww-buffer-select, eww-buffer-show-next)
2644         (eww-buffer-show-previous, eww-buffer-kill, eww-buffer-show):
2645         New commands/functions (bug#19131).
2647 2014-12-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2649         * net/gnutls.el (gnutls-negotiate): Ignore files found via
2650         'file-name-handler-alist' since the gnutls library can't use those
2651         (bug#15866).
2653 2014-12-08  Dmitry Gutov  <dgutov@yandex.ru>
2655         * vc/vc-hg.el (vc-hg-dir-status-files): Only include ignores files
2656         when FILES is non-nil (bug#19304).
2658 2014-12-08  Eric S. Raymond  <esr@snark.thyrsus.com>
2660         * vc/vc-arch.el: Move to obsolete directory so a test framework
2661         won't trip over bit-rot in it.  There has been no Arch snapshot
2662         for nine years.
2664 2014-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2666         * net/eww.el (eww-follow-link): Revert prefix behaviour to
2667         previous behavior.
2668         (eww-copy-page-url): Add doc string.
2670 2014-12-07  Ivan Shmakov  <ivan@siamics.net>
2672         * net/eww.el (eww): Move history recording here...
2673         (eww-browse-url): ... from here (bug#19253).
2675         * net/eww.el (eww-browse-url): Use generate-new-buffer (was:
2676         iterating over possible buffer names.)
2678 2014-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2680         * net/eww.el (eww-reload): Take a prefix to work locally (bug#19086).
2681         (eww-current-buffer): Compilation fix for bug#18550 patch.
2683 2014-12-07  Ivan Shmakov  <ivan@siamics.net>
2685         * net/eww.el (eww-list-histories): Restore the history in the
2686         correct buffer (bug#18550).
2688 2014-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2690         * net/eww.el (eww-bookmark-prepare): Display URLs in first by
2691         displaying shortened titles first (bug#16398).
2693 2014-12-07  Tom Willemse  <tom@ryuslash.org>  (tiny change)
2695         * progmodes/python.el: Recognize docstrings.
2696         (python-docstring-at-p, python-font-lock-syntactic-face-function):
2697         New functions.
2698         (python-mode): Use them.
2700 2014-12-06  Ulf Jasper  <ulf.jasper@web.de>
2702         * net/newst-treeview.el (newsticker--treeview-list-add-item)
2703         (newsticker--treeview-propertize-tag): Bind tree menu to mouse-3.
2704         (newsticker--treeview-create-groups-menu)
2705         (newsticker--treeview-create-tree-menu): Remove.
2706         (newsticker--treeview-tree-open-menu): New.
2707         (newsticker-treeview-tree-click): Pass event to
2708         `newsticker-treeview-tree-do-click'.
2709         (newsticker-treeview-tree-do-click): Open treemenu on mouse-3.
2711 2014-12-05  Juri Linkov  <juri@linkov.net>
2713         * comint.el (comint-history-isearch-search)
2714         (comint-history-isearch-wrap): Use field-beginning instead of
2715         comint-line-beginning-position.
2716         (comint-send-input): Go to the end of the field instead of the end
2717         of the line to accept whole multi-line input.
2718         http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00305.html
2720 2014-12-05  Juri Linkov  <juri@linkov.net>
2722         * minibuffer.el (minibuffer-completion-help):
2723         Compare selected-window with minibuffer-window to check whether
2724         completions should be displayed near the minibuffer.  (Bug#17809)
2725         http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00311.html
2727 2014-12-05  Michael Albinus  <michael.albinus@gmx.de>
2729         * vc/vc-mtn.el (vc-mtn-root):
2730         * vc/vc-svn.el (vc-svn-registered): Make FILE absolute.
2732 2014-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2734         * progmodes/sh-script.el (sh-smie-sh-rules): Go back to the beginning
2735         of the whole pipe when indenting an opening keyword after a |.
2736         Generalize this treatment to opening keywords like "while" (bug#18031).
2738 2014-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2740         * simple.el (newline): Place the hook buffer-locally,
2741         to make sure it's first.
2743         * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
2744         Fix handling of symbols with different syntax at beginning/end or with
2745         symbol rather than word syntax.
2747 2014-12-05  Eli Zaretskii  <eliz@gnu.org>
2749         * simple.el (line-move): If noninteractive, call line-move-1, not
2750         forward-line, since the former is compatible with line-move-visual
2751         both in terms of the column to which it moves and the return
2752         value.  (Bug#19211)
2754 2014-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2756         * vc/ediff-init.el (ediff-odd-p): Remove.
2757         (ediff-background-face): Use cl-oddp instead.
2758         (ediff-buffer-live-p): Make it a defsubst.
2760         * tooltip.el (tooltip-region-active-p): Remove.
2762         * net/shr.el (shr-char-breakable-p, shr-char-kinsoku-bol-p)
2763         (shr-char-kinsoku-eol-p, shr-char-nospace-p): Use define-inline.
2765         * fringe.el (fringe-bitmap-p): Make it a plain function.
2767         * emacs-lisp/eieio-core.el: Prefer inlinable functions over macros.
2768         (class-p, generic-p, eieio-object-p, class-abstract-p):
2769         Make them defsubst, so as to avoid corner case problems where
2770         the arg might be evaluated in the condition-case, or it can't be passed
2771         to higher-order functions like `cl-some'.
2773 2014-12-05  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
2775         * wid-edit.el (widget-choose): Let numeric keypad work (bug#19268)
2776         and remove old menu-related code.
2778 2014-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2780         * net/eww.el (eww-display-pdf): Let mailcap determine how to
2781         display PDF files (bug#19270).
2783 2014-12-05  Juri Linkov  <juri@linkov.net>
2785         Compare with the most recent window by default.
2786         * vc/compare-w.el (compare-windows-get-window-function): New defcustom.
2787         (compare-windows-get-recent-window)
2788         (compare-windows-get-next-window): New functions.
2789         (compare-windows, compare-windows-sync-default-function):
2790         Use `compare-windows-get-window-function' instead of `next-window'.
2791         (compare-windows): Add diff/match messages with region boundaries.
2792         (Bug#19170)
2794 2014-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2796         * subr.el (filter): Remove.  Use `cl-remove-if-not' or `seq-filter'.
2798 2014-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2800         * net/shr.el (shr--extract-best-source): Ignore non-text children.
2802 2014-12-04  Eli Zaretskii  <eliz@gnu.org>
2804         Implement copying of a buffer portion while preserving visual order.
2805         * simple.el (bidi-directional-controls-chars)
2806         (bidi-directional-non-controls-chars): New variables.
2807         (squeeze-bidi-context-1, squeeze-bidi-context)
2808         (line-substring-with-bidi-context)
2809         (buffer-substring-with-bidi-context): New functions.
2811         * files.el (file-tree-walk): Doc fix.
2813 2014-12-04  Rupert Swarbrick  <ruperts@broadcom.com> (tiny change)
2814             Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
2816         * autoinsert.el (auto-insert-alist): Update C/C++ header and
2817         program support to match more extensions.  Replace non-alnum
2818         characters when generating include guards (headers) and check for
2819         more extensions when generating includes (programs)
2820         (bug#19254).
2822 2014-12-03  Eric S. Raymond  <esr@snark.thyrsus.com>
2824         * files.el (file-tree-walk): Fix docstring.
2826 2014-12-03  Karl Fogel  <kfogel@red-bean.com>
2828         Fix bug whereby saving files hung in VC hook.
2830         Saving a buffer visiting a file under SVN control would hang if
2831         the remote repository were unreachable, because the VC hooks tried
2832         to run "svn status -u" on the file, where the "-u" tells svn to
2833         get update information from the remote repository.
2834         http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00174.html
2836         * vc/vc-svn.el (vc-svn-state): Remove optional `localp'
2837         argument and always pass "-v" to "svn status", never "-u".
2839 2014-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2841         * emacs-lisp/inline.el: Fix up copyright header.
2842         (inline-quote, inline-const-p, inline-const-val, inline-error):
2843         Silence compiler warnings.
2844         (inline-letevals): Fix edebug spec.
2845         (inline--testconst-p): Consider lambda expressions as const-p.
2846         (inline--getconst-val): Use inline--testconst-p.
2848         * minibuffer.el (completion-table-dynamic): Add arg `switch-buffer'
2849         and change default to stay in the minibuffer when called from
2850         the minibuffer (bug#19250).
2851         (lazy-completion-table): Use this new argument to preserve the
2852         old behavior.
2854         * progmodes/elisp-mode.el (elisp--local-variables): Don't burp on
2855         incorrect lexical elements (bug#19250).
2857 2014-12-03  A. N. Other  <none@example.com>
2859         * files.el (file-tree-walk): Lisp translation of ANSI ftw(3).
2861 2014-12-02  Glenn Morris  <rgm@gnu.org>
2863         * whitespace.el (whitespace-big-indent-regexp): Add :version.
2865 2014-12-02  Eric S. Raymond  <esr@snark.thyrsus.com>
2867         * subr.el (filter): New macro.  Because it's just silly for a Lisp
2868         not to have this in 2014.  And VC needs it.
2870         * vc.el: All backends: API simplification: Abolish dir-status.
2871         It's replaced by dir-status-files.
2873         * vc.el: All backends: API simplification: Remove 4th
2874         'default-state' argument from vc-dir-status files and its backend
2875         methods - no backend method ever set it.  It was used only in the
2876         fallback method to to set a default of 'up-to-date, though a
2877         convoluted call chain obscured this.
2879         * vc-hooks.el: Bind vc-delete-file to Ctrl-x v delete.
2881         * vc.el (vc-expand-dirs): Now takes a second BACKEND argument,
2882         improving behavior on directories using multiple file-oriented VCSes.
2884         * vc/vc.el: All backends: API simplification; clear-headers
2885         is no longer a public method.  It is now local to the one place
2886         it's used, in the RCS steal-lock method.
2888 2014-12-01  Eric S. Raymond  <esr@snark.thyrsus.com>
2890         * vc/vc.el: In all backends: API simplification; could-register
2891         is no longer a public method.  (vc-cvs.el still has a private
2892         implementation.)
2894         * vc/vc.el: In all backends: API cleanup; the backend diff method
2895         takes an explicit async flag.  This eliminates a particularly ugly
2896         global.
2898         * vc-bzr.el: Restore vc-bzr-state-heuristic as a private method.
2899         VC randomly/unpredictably fails without it; cause not yet established.
2901 2014-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2903         Merge some of the differences from the standalone CC-mode.
2904         The main change is to only use the `category' text-property only when
2905         available.  For that many calls are changed to use c-get-char-property,
2906         c-next-single-property-change, c-sc-scan-lists,
2907         c-sc-parse-partial-sexp, c-unmark-<->-as-paren.
2909         * progmodes/cc-mode.el (c-just-done-before-change): New var.
2910         (c-basic-common-init): Initialize it.
2911         (c-common-init): Only use mode-require-final-newline when available.
2912         (c-before-change): Check and set c-just-done-before-change.
2913         (c-after-change): Re-set c-just-done-before-change.
2914         (c-advise-fl-for-region): New macro.
2915         (lazy-lock-defer-rest-after-change, lazy-lock-defer-line-after-change)
2916         (font-lock-after-change-function, jit-lock-after-change):
2917         Advise if needed.
2919         * progmodes/cc-langs.el (c-modified-constant): New lang var.
2920         (c-known-type-key): Don't make a list just to throw it away.
2922         * progmodes/cc-engine.el (c-invalidate-state-cache, c-parse-state):
2923         Handle the case where categories are not available.
2924         (c-record-parse-state-state, c-replay-parse-state-state):
2925         Handle marker values.
2926         (c-before-change-check-<>-operators): Look for the `syntax-table'
2927         property rather than for the corresponding `category'.
2928         (c-looking-at-decl-block): Remove unused var
2929         `c-disallow-comma-in-<>-arglists'.
2930         (c-forward-<>-arglist-recur): Remove unused var
2931         `orig-record-found-types'.
2933         * progmodes/cc-defs.el (c-version): Bump up to 5.33.
2934         (c-use-category): New const.
2935         (c-next-single-property-change): New macro.
2936         (c-region-is-active-p): Prefer region-active-p when available.
2937         (c-search-backward-char-property): Fix old min/max typo; probably
2938         a copy/paste error.
2939         (c-mark-<-as-paren, c-mark->-as-paren, c-unmark-<->-as-paren):
2940         Turn them into macros that obey c-use-category.
2941         (c-sc-scan-lists-no-category+1+1, c-sc-scan-lists-no-category+1-1)
2942         (c-sc-scan-lists-no-category-1+1, c-sc-scan-lists-no-category-1-1)
2943         (c-sc-scan-lists, c-sc-parse-partial-sexp)
2944         (c-looking-at-non-alphnumspace): New macros.
2945         (c-sc-parse-partial-sexp-no-category): New function.
2946         (c-emacs-features): Add `category-properties' element.
2948         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
2949         (c-backward-into-nomenclature): Use cc-subword if subword-mode is
2950         not available.
2951         (c-beginning-of-defun, c-end-of-defun, c-mark-function)
2952         (c-indent-line-or-region): Use c-region-is-active-p.
2954         * progmodes/cc-bytecomp.el (cc-bytecomp-unbound-variables)
2955         (cc-bytecomp-original-functions, cc-bytecomp-original-properties)
2956         (cc-bytecomp-loaded-files): Re-set each time the file is loaded.
2957         (cc-bytecomp-obsolete-var, cc-bytecomp-ignore-obsolete)
2958         (cc-bytecomp-obsolete-fun): Delete unused functions.
2960         * progmodes/cc-align.el (c-lineup-respect-col-0): New function.
2962 2014-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2964         * net/shr.el (shr-dom-print): Fix up `shr-dom-print' after the
2965         dom.el changes.
2967 2014-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2969         * vc/vc.el (vc-find-conflicted-file): Look for conflicted files in the
2970         current "project" rather than just the current directory.
2971         * vc/vc-git.el (vc-git-conflicted-files): Clarify in which directory
2972         the file names make sense.
2974         * vc/smerge-mode.el (smerge-swap): New command.
2976         * vc/diff-mode.el (diff-kill-applied-hunks): New command.
2978 2014-12-01  Ulf Jasper  <ulf.jasper@web.de>
2980         * net/newst-treeview.el (newsticker--treeview-item-show):
2981         Check window liveliness before measuring its width.
2983         * net/newst-backend.el (newsticker--get-news-by-url-callback):
2984         Pass correct status to `newsticker--sentinel-work'.
2985         (newsticker--sentinel-work): Use "newsticker--download-error" as
2986         guid in order to prevent multiple "Could not download..."
2987         messages.  Fixes bug#19166.
2989 2014-12-01  Ivan Shmakov  <ivan@siamics.net>
2991         * net/eww.el (eww-render): Call `eww-after-render-hook' in the
2992         correct buffer (bug#19225).
2994 2014-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2996         * net/nsm.el (network-security-level): Change the default to `medium'.
2998         * net/eww.el (eww): Leave point in a place that doesn't cause
2999         scrolling when displaying "Loading...".
3001 2014-12-01  Eric S. Raymond  <esr@snark.thyrsus.com>
3003         * vc/vc.el, vc/vc-cvs.el, vc/vc-rcs.el, vc/vc-svn.el: The 'merge'
3004         backend method of RCS/CVS/SVN is now 'merge-file', to contrast with
3005         'merge-branch'.  Prompting for merge revisions is pushed down to
3006         the back ends; this fixes a layering violation that caused bad
3007         behavior with SVN.
3009         * vc/vc.el, vc-hooks.el: All backends: API simplification;
3010         vc-stay-local-p and repository-hostname are no longer public
3011         methods.  Only the CVS and SVN backends used these, and the SVN
3012         support was conditioned out because svn status -v is too slow.
3013         The CVS back end retains this machinery and the vc-stay-local
3014         configuration variable now only affects it.
3016 2014-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3018         * emacs-lisp/inline.el: New file.
3020 2014-12-01  Eric S. Raymond  <esr@snark.thyrsus.com>
3022         * vc/vc.el, vc-hooks.el: All backends: API simplification;
3023         vc-state-heuristic is no longer a public method, having been
3024         removed where it is redundant, unnecessary, or known buggy.
3025         This eliminated all backends except CVS.  Eliminates bug#7850.
3027         * vc/vc-cvs.el, vc/vc-hooks.el, vc/vc-rcs.el, vc/vc-sccs.el:
3028         Eliminate vc-mistrust-permissions.  It was only relevant to the
3029         RCS and SCCS back ends and defaulted to t.  Code now always
3030         mistrusts permissions - by actual measurement the effect on
3031         performance is negligible.  As a side effect bug#11490 is now
3032         irrelevant.
3034         * vc/vc.el, vc-hooks.el: All backends: API simplification;
3035         vc-workfile-unchanged-p is no longer a public method (but the RCS
3036         and SCCS back ends retain it as a private method used in state
3037         computation).  This method was redundant with vc-state and usually
3038         implemented as a trivial call to same.  Fixes the failure mode
3039         described in bug#694.
3041         * vc/vc.el: All backends: API simplification; init-revision is
3042         gone, and vc-registered functions no longer take an
3043         initial-revision argument.
3045 2014-11-29  Glenn Morris  <rgm@gnu.org>
3047         * vc/vc-src.el (vc-src, vc-src-diff-switches)
3048         (vc-src-master-templates): Fix :version tags.
3050 2014-11-29  Paul Rankin  <paul@tilk.co>  (tiny change)
3052         * outline.el (outline-move-subtree-down): Refactor and improve code.
3054 2014-11-29  Stephen Berman  <stephen.berman@gmx.net>
3055             Stefan Monnier  <monnier@iro.umontreal.ca>
3057         * outline.el (outline-move-subtree-down): Make sure we can move
3058         forward to find the end of the subtree and the insertion point
3059         (bug#19102).
3061 2014-11-29  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3063         * progmodes/python.el (python-shell-completion-setup-code):
3064         Use __builtin__ module (or builtins in Python 3) and catch all errors
3065         when importing readline and rlcompleter.
3067 2014-11-29  Stephen Berman  <stephen.berman@gmx.net>
3069         * calendar/todo-mode.el: Handle calling revert-buffer (bug#19187).
3070         (todo-revert-buffer): New function.
3071         (todo-modes-set-1): Use it as the buffer-local value of
3072         revert-buffer-function.
3074 2014-11-29  Stephen Berman  <stephen.berman@gmx.net>
3076         * calendar/todo-mode.el (todo-mode): If called interactively, just
3077         display a message saying to call todo-show to enter Todo mode
3078         (Bug#19112).
3080 2014-11-29  Dmitry Gutov  <dgutov@yandex.ru>
3082         * vc/vc-hg.el (vc-hg-dir-status-files): Include ignored files.
3083         (Bug#18579)
3085         * vc/vc-bzr.el (vc-bzr-after-dir-status): Don't skip ignored
3086         files.  (Bug#18579)
3088 2014-11-29  Michael Albinus  <michael.albinus@gmx.de>
3090         * textmodes/makeinfo.el (makeinfo-buffer): Make it work also for
3091         remote `buffer-file-name'.
3093 2014-11-29  Leo Liu  <sdl.web@gmail.com>
3095         * calendar/diary-lib.el (calendar-mark-1): Fix thinko.
3097 2014-11-29  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3099         Set PYTHONUNBUFFERED on shell startup.
3101         * progmodes/python.el (python-shell-unbuffered): New var.
3102         (python-shell-calculate-process-environment): Use it.
3104 2014-11-29  Michael Albinus  <michael.albinus@gmx.de>
3106         * net/tramp.el (tramp-action-password): Clean password on subsequent
3107         attempts even if there was no wrong password indication.  (Bug#19047)
3109         * net/tramp-sh.el (tramp-get-remote-locale): Return "LC_ALL=C" as
3110         fallback.
3111         (tramp-open-connection-setup-interactive-shell): No need to check
3112         for nil as `tramp-get-remote-locale' return value.
3114 2014-11-29  Eli Zaretskii  <eliz@gnu.org>
3116         * vc/vc-git.el (vc-git-command, vc-git--call):
3117         Bind coding-system-for-read and coding-system-for-write to
3118         vc-git-commits-coding-system.
3119         (vc-git-previous-revision): Use "~1" instead of "^", since the
3120         latter is a special character for MS-Windows system shells.
3122 2014-11-29  Michael Albinus  <michael.albinus@gmx.de>
3124         Improve XEmacs compatibility.
3126         * net/tramp.el (tramp-autoload-file-name-handler):
3127         Wrap `temporary-file-directory' by `symbol-value', it doesn't
3128         exist in XEmacs.
3129         (tramp-read-passwd): Don't use `with-timeout-suspend' and
3130         `with-timeout-unsuspend' if they don't exist, like in XEmacs.
3131         (tramp-time-less-p, tramp-time-subtract): Remove functions.
3132         (tramp-handle-file-newer-than-file-p, tramp-time-diff):
3133         * net/tramp-adb.el (tramp-adb-ls-output-time-less-p):
3134         * net/tramp-cache.el (tramp-get-file-property):
3135         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
3136         Use `time-less-p' and `time-subtract, respectively.
3138         * net/tramp-adb.el (top): Do not require time-date.el.
3140         * net/tramp-compat.el (top): Require time-date.el for XEmacs.
3142         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
3143         Check, whether `utf-8' is a valid coding system.
3145 2014-11-29  Eli Zaretskii  <eliz@gnu.org>
3147         * vc/vc.el (vc-retrieve-tag): Doc fix.
3149 2014-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3151         * simple.el (execute-extended-command--shorter): Fix the "M-p" case
3152         (bug#19152).
3154 2014-11-28  Martin Rudalics  <rudalics@gmx.at>
3156         Fix two issues around help-window-select.  (Bug#11039) (Bug#19012)
3157         * help.el (help-window-old-frame): New variable.
3158         (help-window-select): Default to nil (Bug#11039).
3159         Rewrite doc-string.
3160         (help-window-setup): When the help window appears on another
3161         frame and `help-window-select' is non-nil, give that frame input
3162         focus too (Bug#19012).
3163         (with-help-window): Store selected frame in
3164         help-window-old-frame.
3166 2014-11-28  Ulf Jasper  <ulf.jasper@web.de>
3168         * net/newst-treeview.el (newsticker--treeview-load): Take care of
3169         nil value for `newsticker-groups-filename'.
3171 2014-11-28  Daiki Ueno  <ueno@gnu.org>
3173         * epa.el (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
3174         (epa-sign-region, epa-encrypt-region):
3175         Use `epg-context-set-{passphrase,progress}-callback', instead of
3176         `setf'.  This partially reverts commit 9e48a95c (bug#19150).
3177         Reported by José A. Romero L.
3179 2014-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3181         * net/eww.el (eww-restore-history):
3182         Bind `inhibit-modification-hooks' instead of `after-change-functions'.
3184 2014-11-27  Ulf Jasper  <ulf.jasper@web.de>
3186         * net/newst-backend.el (newsticker--parse-atom-1.0):
3187         Handle embedded (x)html in summary node.
3189 2014-11-27  Sam Steingold  <sds@gnu.org>
3191         * menu-bar.el (menu-bar-open): When everything else fails,
3192         use (mouse-menu-bar-map).
3194 2014-11-27  Ulf Jasper  <ulf.jasper@web.de>
3196         * net/newst-treeview.el (newsticker-groups-filename):
3197         Change default value to nil.  Point out that variable is obsolete in doc
3198         string.
3199         (newsticker--treeview-load): Change wording of the questions the
3200         user is asked when `newsticker-groups-filename' is found to be
3201         used and we offer to read and remove the groups file.  (Bug#19165)
3203 2014-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3205         * net/eww.el (eww): Record the new URL immediately, so that if the
3206         HTTP fetch fails, we have the right URL in the buffer.
3207         (eww-process-text-input): Don't shorten the input field if
3208         deleting at the last character (bug#19085).
3209         (eww-restore-history): Inhibit change functions while restoring
3210         the history.
3211         (eww-process-text-input): Fix deletion at the start of the field, too.
3212         (eww-mode): Revert mistanken removal of `buffer-disable-undo'.
3213         (eww-process-text-input): Try to keep track of the size more reliably.
3215         * dom.el (dom-pp): New function.
3217 2014-11-27  Eli Zaretskii  <eliz@gnu.org>
3219         * vc/vc-bzr.el (vc-bzr-print-log, vc-bzr-expanded-log-entry):
3220         Don't assume --long is the default for "bzr log", always specify
3221         it explicitly, in case the user defined an alias for 'log' that
3222         uses some other format.
3224 2014-11-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3226         * progmodes/python.el (python-eldoc--get-doc-at-point):
3227         Strip shell output before returning.  (bug#18794)
3229 2014-11-27  Dmitry Gutov  <dgutov@yandex.ru>
3231         Fix indentation before `!=' and after `+='.  Originally reported
3232         in https://github.com/mooz/js2-mode/issues/174.
3233         * progmodes/js.el (js--indent-operator-re): Make assignments and
3234         (in)equality operator a separate case.
3235         (js--continued-expression-p): Escape the second `+' in the regexp.
3237 2014-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
3239         * window.el (handle-select-window): Deactivate shift-region (bug#19003).
3241 2014-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3243         * net/nsm.el (nsm-new-fingerprint-ok-p): Display the certificate
3244         when querying about new certificates.
3246         * net/shr.el (shr-make-table-1): dom.el changes for table rendering.
3248         * dom.el (dom-by-tag): Use `equal' for comparisons so that tags
3249         can be strings.
3250         (dom-elements): Protect against non-text nodes.
3251         (dom-non-text-children): New function.
3253         * net/eww.el (eww-tag-title): Use `dom-text'.
3255 2014-11-26  Sam Steingold  <sds@gnu.org>
3257         * textmodes/sgml-mode.el (sgml-validate-command): Pass -utf8 to tidy.
3259 2014-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3261         * net/eww.el (eww-highest-readability): More dom.el fixes.
3263 2014-11-26  Ulf Jasper  <ulf.jasper@web.de>
3265         * net/newst-backend.el (newsticker--parse-generic-items):
3266         Take care of UIDs when adding elements to cache.
3268 2014-11-26  Alan Mackenzie  <acm@muc.de>
3270         Remove spurious reference to symbol category_properties.
3271         * progmodes/cc-engine.el (c-state-pp-to-literal): Fix here.
3273 2014-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3275         * net/eww.el: Use the new dom.el accessors throughout.
3277         * net/shr.el: Ditto.
3279         * dom.el: New file.
3281 2014-11-26  Glenn Morris  <rgm@gnu.org>
3283         * arc-mode.el (archive-visit-single-files): Add :version.
3285 2014-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3287         * net/nsm.el (nsm-format-certificate): Don't bug out on missing
3288         elements.
3289         (nsm-warnings-ok-p): The new version of this function always
3290         returned nil when everything was OK.
3292 2014-11-25  Teodor Zlatanov  <tzz@lifelogs.com>
3294         * net/gnutls.el (gnutls): Set :group to 'comm so it's near NSM.
3296         * net/nsm.el (nsm-check-tls-connection, nsm-save-host)
3297         (nsm-warnings-ok-p): Use `gnutls-peer-status-warning-describe'.
3299 2014-11-20  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
3301         * emacs-lisp/byte-run.el (function-put): Match argument names to
3302         docstring.
3304 2014-11-24  Sam Steingold  <sds@gnu.org>
3306         * vc/vc-hooks.el (vc-directory-exclusion-list):
3307         Fix a trivial typo (bug#19171).
3309 2014-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3311         * vc/vc-hooks.el (vc-state-base-face): Don't override
3312         mode-line-inactive.
3314 2014-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3316         * net/eww.el (eww-set-character-encoding): Use `read-coding-system'.
3317         (eww-process-text-input): Inhibit read only so that input fields
3318         don't get shortened (bug#19085).
3320 2014-11-24  Leo Liu  <sdl.web@gmail.com>
3322         * emacs-lisp/macroexp.el (macroexp-let2*): New macro.
3324         * window.el (with-temp-buffer-window)
3325         (with-current-buffer-window, with-displayed-buffer-window):
3326         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin):
3327         * emacs-lisp/cl-lib.el (substring):
3328         * emacs-lisp/cl-extra.el (cl-getf): Use it.
3330 2014-11-24  Eli Zaretskii  <eliz@gnu.org>
3332         * isearch.el (isearch-update): Don't assume
3333         pos-visible-in-window-p will return nil when point is hscrolled
3334         out of view.  (Bug#19157)
3336 2014-11-20  Andrey Kotlarski  <m00naticus@gmail.com>
3338         * net/eww.el (eww-browse-url): Optionally create new eww buffer.
3339         (eww-follow-link): Follow in new buffer in case of prefix
3340         argument, open externally with double prefix (bug#19130).
3342 2014-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3344         * net/eww.el (eww-display-html): Decode the document-defined charset.
3345         (eww): Pop to the *eww* buffer immediately after executing the
3346         `M-x eww' command to avoid having buffers pop up later.
3347         (eww-display-html): Don't pop the *eww* buffer.
3348         (eww-display-raw): Ditto.
3349         (eww-display-image): Ditto.
3350         (eww-follow-link): Make going to #targets in the page work again.
3352 2014-11-23  Ivan Shmakov  <ivan@siamics.net>
3354         * net/eww.el (eww-suggest-uris): New variable.
3355         (eww-suggested-uris): New function.
3356         (eww): Default to URL under point.
3357         (eww-links-at-point): New function.
3359 2014-11-20  Mark Oteiza  <mvoteiza@udel.edu>  (tiny change)
3361         * net/eww.el (eww-add-bookmark): Fix bookmark titles.
3363 2014-11-17  Mark Oteiza  <mvoteiza@udel.edu>  (tiny change)
3365         * net/eww.el (eww-mode-map): Bind backtab to shr-previous-link.
3367 2014-11-23  Kenjiro Nakayama  <nakayamakenjiro@gmail.com>
3369         * net/eww.el (eww-set-character-encoding): New command and keystroke.
3370         (eww-display-raw): Use it (bug#16225).
3372 2014-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3374         * net/nsm.el (network-security-level): Rename from
3375         `nsm-security-level' and documented.
3377         * mail/smtpmail.el (smtpmail-via-smtp): Warn unless encrypted and
3378         we're sending a password.
3380         * net/nsm.el: New file that implements a Network Security Manager.
3382         * net/network-stream.el (open-network-stream): Add a new
3383         :warn-unless-encrypted parameter.
3384         (network-stream-open-plain): Allow warning unless encrypted.
3385         (network-stream-open-starttls): Call the Network Security Manager.
3386         (network-stream-open-tls): Ditto.
3388 2014-11-23  Leo Liu  <sdl.web@gmail.com>
3390         * calendar/cal-china.el (calendar-chinese-from-absolute-for-diary)
3391         (calendar-chinese-to-absolute-for-diary)
3392         (calendar-chinese-mark-date-pattern, diary-chinese-anniversary):
3393         Handle leap months in Chinese calendar.  (Bug#18953)
3395 2014-11-22  Alan Mackenzie  <acm@muc.de>
3397         Fix error with `mark-defun' and "protected:" in C++ Mode.
3398         Fixes: debbugs:19134.
3400         * progmodes/cc-cmds.el (c-where-wrt-brace-construct): Handle a
3401         return code of (label) from c-beginning-of-decl-1.
3403 2014-11-22  Ulf Jasper  <ulf.jasper@web.de>
3405         * net/newst-backend.el (newsticker--sentinel-work):
3406         Tell `libxml-parse-xml-region' to discard comments.  Fixes bug#18787.
3408 2014-11-22  Michael Albinus  <michael.albinus@gmx.de>
3410         * net/tramp-sh.el (tramp-sh-handle-start-file-process)
3411         (tramp-sh-handle-process-file): Propagate `process-environment'.
3413         * vc/vc-hg.el (vc-hg-state): No special handling for remote files;
3414         Tramp propagates environment variables now.
3416 2014-11-22  Eric S. Raymond  <esr@snark>
3418         * vc/vc-filewise.el: New file to isolate code used only by the
3419         file-oriented back ends (SCCS/RCS/CVS/SRC) which should not
3420         live in vc.el and certainly not in vc-hooks.el.
3422         * vc/vc-hooks.el, vc-rcs.el, vc-sccs.el: vc-name  -> vc-master-name.
3423         This is preparatory to isolating all the 'master' functions
3424         used only by the file-oriented back ends.  With this done first,
3425         the substantive diffs will be easier to read.
3427 2014-11-21  Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
3429         * play/morse.el (nato-alphabet): Mark URL in docstring in a way
3430         that is recognized by `help-mode'.
3432 2014-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3434         * desktop.el (desktop-create-buffer): Use activate-mark to set
3435         `mark-active' (bug#19058).
3437 2014-11-21  Eric S. Raymond  <esr@snark>
3439         * vc/vc-src.el (vc-src-state): Fix bug that produced spurious
3440         nil state.
3442 2014-11-21  Eli Zaretskii  <eliz@gnu.org>
3444         * vc/vc.el (vc-deduce-fileset): Support invocation from
3445         *vc-change-log* buffer.  (Bug#19084)
3447 2014-11-13  Matthew Leach  <matthew@mattleach.net>
3449         * arc-mode.el (archive-visit-single-files): New.
3450         (archive-mode): Visit file if archive contains a single file.
3451         (Bug#1702)
3453 2014-11-21  Ulrich Müller  <ulm@gentoo.org>
3455         * vc/vc.el: Fix a typo in the commentary.
3457 2014-11-20  Eric S. Raymond  <esr@snark.thyrsus.com>
3459         * vc/vc-src.el, vc/vc.el: Added support for SRC.  Needs more
3460         testing and a real log-view mode.
3462         * vc/vc-bzr.el, vc/vc-cvs.el, vc/vc-dav.el, vc/vc-git.el:
3463         * vc/vc-hg.el, vc/vc-mtn.el, vc/vc-rcs.el, vc/vc-sccs.el:
3464         * vc/vc-svn.el, vc/vc.el: Remove editable argument from the backend
3465         checkout methods; where it matters (which is only in SCCS and RCS)
3466         files are always checked out editable.  This may actually have
3467         been dynamically true already - it looks like the vc-next-action
3468         code evolved past visiting the other case.  Tested with RCS.
3470         * vc/vc-arch.el, vc/vc-bzr.el, vc/vc-cvs.el, vc/vc-dav.el:
3471         * vc/vc-git.el, vc/vc-hg.el, vc/vc-mtn.el, vc/vc-rcs.el:
3472         * vc/vc-sccs.el, vc/vc-svn.el, vc/vc.el: Remove never-used rev
3473         argument from the backend checkin methods.  Only the RCS, SCCS,
3474         and CVS back ends tried to do anything with it, and that code was
3475         never exercised.  Chiseling away the cruft of decades...
3477 2014-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3479         * net/eww.el (eww-render): Remove a no-op :title setting.
3481 2014-11-19  Ivan Shmakov  <ivan@siamics.net>
3483         * net/eww.el (eww-history-limit): New variable.
3484         (eww-save-history): Use it (bug#19105).
3485         (eww-reload): Reload the page in the right buffer.
3487 2014-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3489         * net/eww.el (eww-desktop-misc-data): Use `cl-remove-duplicates'.
3491 2014-11-19  Ivan Shmakov  <ivan@siamics.net>
3493         * net/eww.el (eww-desktop-remove-duplicates)
3494         (eww-restore-desktop, eww-restore-reload-prompt): New variables.
3495         (eww-mode): Set up desktop mode (bug#18010).
3496         (eww-desktop-data-save, eww-desktop-data-1)
3497         (eww-desktop-history-duplicate, eww-desktop-misc-data)
3498         (eww-restore-desktop): New functions.
3500 2014-11-19  Eli Zaretskii  <eliz@gnu.org>
3502         * vc/vc.el (vc-log-internal-common): Turn on log-view-mode in the
3503         correct buffer.  (Bug#19101)
3505 2014-11-19  Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
3507         * vc/vc-git.el (vc-git-diff): Use "difftool -x diff" with
3508         `diff-switches' if `vc-git-diff-switches' is nil.  (Bug#19099)
3510 2014-11-19  Artur Malabarba  <bruce.connor.am@gmail.com>
3512         * ido.el (ido-bury-buffer-at-head): New command.
3513         (ido-buffer-completion-map): Bind it to C-S-b.
3515 2014-11-18  Juri Linkov  <juri@linkov.net>
3517         * simple.el (next-line-or-history-element): Wrap next-line
3518         in with-no-warnings.
3519         (previous-line-or-history-element): Wrap previous-line
3520         in with-no-warnings.
3522 2014-11-18  Juri Linkov  <juri@linkov.net>
3524         * progmodes/grep.el (grep-compute-defaults):
3525         Compute grep-highlight-matches before its use.
3527 2014-11-18  Juri Linkov  <juri@linkov.net>
3529         * replace.el (query-replace-from-to-separator): Turn defvar into
3530         defcustom.  Wrap char-displayable-p in ignore-errors because an
3531         attempt to autoload char-displayable-p fails during pre-loading.
3532         Move (propertize "\0" ... 'separator t) out of customizable part
3533         to query-replace-read-from.
3534         (query-replace-read-from): Call custom-reevaluate-setting on
3535         query-replace-from-to-separator to reevaluate the separator
3536         depending on the return value of char-displayable-p.
3537         http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00466.html
3539 2014-11-18  Juri Linkov  <juri@linkov.net>
3541         * bindings.el (minibuffer-local-map): Rebind [down] from
3542         next-history-element to next-line-or-history-element, and [up]
3543         from previous-history-element to previous-line-or-history-element.
3545         * simple.el (next-line-or-history-element)
3546         (previous-line-or-history-element): New commands.
3547         http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00822.html
3549 2014-11-18  Leo Liu  <sdl.web@gmail.com>
3551         * emacs-lisp/nadvice.el (define-advice): New macro.
3552         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
3553         Add define-advice.
3554         (lisp-font-lock-keywords-1): Add define-advice.
3556 2014-11-18  Daiki Ueno  <ueno@gnu.org>
3558         * epg.el (epg-context): New slot EDIT-CALLBACK.
3559         (epg--process-filter): Call EDIT-CALLBACK when editing a key.
3560         (epg-reset): Reset EDIT-CALLBACK of the context.
3561         (epg-start-edit-key): New function.
3562         (epg-edit-key): New function.
3564 2014-11-18  Paul Eggert  <eggert@cs.ucla.edu>
3566         Port new time stamp handling to Emacs 23.2.
3567         This fix is for Gnus.  Reported by Katsumi Yamaoka.
3568         * calendar/time-date.el (time-add, time-subtract, time-less-p):
3569         Use eval-and-compile, not eval-when-compile.
3571 2014-11-18  Daiki Ueno  <ueno@gnu.org>
3573         * epg.el (epg-context-set-passphrase-callback)
3574         (epg-context-set-progress-callback): Check if the CALLBACK
3575         argument is a function, instead of a cons.
3577 2014-11-18  Daiki Ueno  <ueno@gnu.org>
3579         * epa-file.el (epa-file-insert-file-contents)
3580         (epa-file-write-region): Remove redundant check of
3581         epa-pinentry-mode.
3582         * epa.el (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
3583         (epa-sign-region, epa-encrypt-region): Remove redundant check of
3584         epa-pinentry-mode.
3586 2014-11-18  Daiki Ueno  <ueno@gnu.org>
3588         * epa-file.el (epa-file-insert-file-contents): Don't show
3589         "*Error*" buffer if input file does not exist.
3590         Reported by Herbert J. Skuhra.
3592 2014-11-18  Paul Pogonyshev  <pogonyshev@gmail.com>
3593             Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
3595         * progmodes/cc-langs.el: Support some of the new keywords in C++11.
3596         An alternative version of the patch from bug#13871.
3597         (c-operators): Add "alignof".
3598         (c-primitive-type-kwds): Add "char16_t", "char32_t".
3599         (c-type-modifier-kwds): Add "constexpr", "noexcept".
3600         (c-modifier-kwds): Add "thread_local".
3601         (c-constant-kwds): Add "nullptr".
3603 2014-11-17  Michal Nazarewicz  <mina86@mina86.com>
3605         * textmodes/tildify.el (tildify-pattern, tildify-space-string):
3606         New variables for specifying tildify pattern and representation of
3607         a hard space -- a no-break space by default -- respectively.
3608         Being buffer-local they are much easier to handle than
3609         `tildify-string-alist' and `tildify-pattern-alist' respectively
3610         that have been used so far.  They also works better with derived
3611         modes.
3612         (tildify-foreach-region-function): New variable specifying
3613         a function determining portions of buffer that should be
3614         tildified.  It allows major modes to create a filtering function
3615         more elaborate than a set of regular expressions.  Initialised to
3616         `tildify--deprecated-ignore-evironments' by default to handle now
3617         deprecated `tildify-ignored-environments-alist' variable.
3618         (tildify--foreach-region): A new function that takes
3619         `tildify-foreach-region-function' into account and calls callback
3620         for regions of the buffer that should be tildified.
3621         (tildify-foreach-ignore-environments): A new function which can be
3622         partially applied and used as `tildify-foreach-region-function'.
3623         (tildify-ignored-environments-alist, tildify-pattern)
3624         (tildify-string-alist, tildify--pick-alist-entry): Mark as obsolete.
3625         (tildify--find-env): Rename from `tildify-find-env' and mark as
3626         obsolete.
3627         (tildify--deprecated-ignore-evironments): New function,
3628         immediately marked as obsolete, used to handle deprecated
3629         `tildify-ignored-environments-alist'.
3631         * textmodes/tex-mode.el (tex-common-initialization):
3632         Set `tildify-space-string' and `tildify-foreach-region-function'
3633         variables in all variants of TeX mode since `tildify-string-alist'
3634         and `tildify-ignored-environments-alist' are now empty by default.
3636         * nxml/nxml-mode.el (nxml-mode): Ditto in `nxml-mode'.
3637         If encoding supports it use no-break space instead of character
3638         entity; this changes previous default which used a numeric
3639         reference.
3641         * textmodes/sgml-mode.el (sgml-mode): ditto in `sgml-mode'.
3642         If encoding does not support no-break space, use numeric reference;
3643         this changes previous default which used named entity (“&nbsp;”)
3644         in HTML mode.
3646 2014-11-17  Ulf Jasper  <ulf.jasper@web.de>
3648         * calendar/icalendar.el (icalendar-export-alarms):
3649         New customizable variable.  (Bug#5433)
3650         (icalendar-export-region): Export alarms as specified in
3651         `icalendar-export-alarms'.
3652         (icalendar--create-ical-alarm, icalendar--do-create-ical-alarm):
3653         New functions for exporting alarms.
3655 2014-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3657         * bindings.el (search-map): Move `eww-search-words' to `M-s M-w'.
3659 2014-11-17  Paul Eggert  <eggert@cs.ucla.edu>
3661         Port new time stamp handling to old Emacs and to XEmacs.
3662         This is needed for Gnus, which copies time-date.el and which
3663         runs on older Emacs implementations.
3664         * calendar/time-date.el (with-decoded-time-value):
3665         Handle 'nil' and floating-point arg more compatibly with new Emacs.
3666         (encode-time-value, with-decoded-time-value):
3667         Obsolete only if new Emacs.
3668         (time-add, time-subtract, time-less-p): Define if not new Emacs.
3670         Improve time stamp handling, and be more consistent about it.
3671         This implements a suggestion made in:
3672         http://lists.gnu.org/archive/html/emacs-devel/2014-10/msg00587.html
3673         Among other things, this means timer.el no longer needs to
3674         autoload the time-date module.
3675         * allout-widgets.el (allout-elapsed-time-seconds): Doc fix.
3676         * arc-mode.el (archive-ar-summarize):
3677         * calendar/time-date.el (seconds-to-time, days-to-time, time-since):
3678         * emacs-lisp/timer.el (timer-relative-time, timer-event-handler)
3679         (run-at-time, with-timeout-suspend, with-timeout-unsuspend):
3680         * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
3681         * proced.el (proced-time-lessp):
3682         * timezone.el (timezone-time-from-absolute):
3683         * type-break.el (type-break-schedule, type-break-time-sum):
3684         Simplify by using new functionality.
3685         * calendar/cal-dst.el (calendar-next-time-zone-transition):
3686         Do not return time values in obsolete and undocumented (HI . LO)
3687         format; use (HI LO) instead.
3688         * calendar/time-date.el (with-decoded-time-value):
3689         Treat 'nil' as current time.  This is mostly for XEmacs.
3690         (encode-time-value, with-decoded-time-value): Obsolete.
3691         (time-add, time-subtract, time-less-p): Use no-op autoloads, for
3692         XEmacs.  Define only if XEmacs, as they're now C builtins in Emacs.
3693         * ldefs-boot.el: Update to match new time-date.el
3694         * proced.el: Do not require time-date.
3696 2014-11-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3698         * net/eww.el (eww-mode): Make the buffer read-only.
3699         (eww-form-text): Inhibit read-only-ness in text input fields
3700         (bug#16476).
3702 2014-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
3704         * simple.el (execute-extended-command--shorter): Cut search here.
3705         (execute-extended-command): Instead of here.
3707 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3709         * progmodes/python.el (python-mode): Avoid use of set-local to
3710         keep Emacs 24.x compatibility.
3712 2014-11-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3714         * net/shr.el (shr): Move to the new defgroup `web'.
3716         * net/eww.el (eww): Ditto.
3718         * simple.el (execute-extended-command): Don't show the help
3719         message if the binding isn't significantly shorter than the
3720         M-x command the user typed (bug#19013).
3722 2014-11-16  Ulf Jasper  <ulf.jasper@web.de>
3724         * calendar/icalendar.el (icalendar--convert-tz-offset):
3725         Return complete cons when offsets of standard time and daylight saving
3726         time are equal.
3727         (icalendar-export-region): Fix unbound variable warning.
3729 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3731         * progmodes/python.el (run-python): Allow CMD to be optional and
3732         default it to a safe command, even for Windows.  (bug#18596)
3734 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3736         * progmodes/python.el (python-shell-calculate-command):
3737         Rename from python-shell-parse-command.  Cleanup.
3738         (run-python, run-python-internal): Use it.
3739         (python-shell-calculate-pythonpath): Rename from
3740         python-new-pythonpath.
3741         (python-shell-calculate-process-environment): Use it.
3742         (python-shell-calculate-exec-path): Add comment.
3744 2014-11-16  Thierry Banel <tbanelwebmin@free.fr>  (tiny change)
3746         * calc/calc-arith.el (math-max-list, math-min-list): Fix bug
3747         for date handling.
3749 2014-11-16  Andreas Schwab  <schwab@linux-m68k.org>
3751         * version.el (emacs-repository-get-version): Use git rev-parse
3752         instead of git log.
3754 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3756         * progmodes/python.el (python-indent-calculate-levels):
3757         Fix indentation behavior multiline dedenter statement.  (Bug#18432)
3759 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3761         * progmodes/python.el (python-indent-region):
3762         Use python-indent-line and skip special cases.  (Bug#18843)
3764 2014-11-16  Peder O. Klingenberg  <peder@klingenberg.no>
3766         * mail/emacsbug.el (report-emacs-bug): Make a better guess at
3767           envelope-from when reporting through sendmail (bug#19054).
3769 2014-11-16  Oscar Fuentes <ofv@wanadoo.es>
3771         Add faces for the VC modeline state indicator.
3772         * vc/vc-hooks.el:
3773         (vc-state-faces, vc-state-base-face)
3774         (vc-up-to-date-state, vc-needs-update-state)
3775         (vc-locked-state, vc-locally-added-state)
3776         (vc-conflict-state, vc-removed-state)
3777         (vc-missing-state, vc-edited-state):
3778         New faces.
3779         (vc-default-mode-line-string): Use them
3781 2014-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
3783         * emacs-lisp/backquote.el (backquote-process): Optimize away ",'".
3785 2014-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3787         * net/eww.el (eww-search-words): Mention `eww-search-prefix'.
3789 2014-11-15  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3791         * progmodes/python.el (python-eldoc-setup-code): Enhance string
3792         type checks, simplify printing.  (Bug#18962)
3794 2014-11-14  Ivan Andrus  <darthandrus@gmail.com>
3796         * progmodes/python.el (python-shell-font-lock-kill-buffer):
3797         (python-shell-font-lock-with-font-lock-buffer)
3798         (python-shell-get-buffer, python-ffap-module-path):
3799         Use `derived-mode-p' instead of equality test on `major-mode'.
3801 2014-11-14  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3803         * progmodes/python.el (python-shell-virtualenv-root): Rename from
3804         python-shell-virtualenv-path.
3805         (python-shell-internal-get-process-name)
3806         (python-shell-calculate-process-environment)
3807         (python-shell-calculate-exec-path): Use it.
3809 2014-11-14  Eli Zaretskii  <eliz@gnu.org>
3811         * bindings.el (search-map): Fix last change: don't use 'kbd' in
3812         bindings.el, since it is not yet loaded when bindings.el is
3813         preloaded.
3815 2014-11-14  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3817         * progmodes/python.el (python-shell-completion-get-completions):
3818         Fix previous merge.
3820 2014-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3822         * net/eww.el (eww-render): Don't set the title to the URL.
3824 2014-11-13  Ulrich Müller  <ulm@gentoo.org>
3826         * version.el (emacs-repository-get-version): Call `git log'
3827         command with proper format argument (bug#19049).
3829 2014-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3831         * bindings.el (search-map): Bind M-s M-s to `eww-search-words'.
3833 2014-11-14  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
3835         * net/eww.el (eww-search-words): New command (bug#16258).
3837 2014-11-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3839         * net/shr.el (shr-inhibit-images): Add a doc string.
3841         * net/eww.el (eww-after-render-hook): New variable.
3842         (eww-render): Use it.
3844         * net/shr.el (shr-descend): Don't descend further than
3845         `max-specpdl-size' allows (bug#16587).
3846         (shr-depth): New variable.
3847         (shr-warning): New variable.
3849 2014-11-13  Ivan Shmakov  <ivan@siamics.net>
3851         * net/shr.el (shr-parse-base): Handle <base href=""> correctly.
3852         (shr-expand-url): Expand absolute URLs correctly (bug#17958).
3854 2014-11-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3856         * net/eww.el (eww): Add comment to clarify.
3858         * net/shr.el (shr-parse-image-data): Remove blocked bits from
3859         external SVG images.
3860         (shr-tag-object): Display images in <object> forms (bug#16244).
3861         (shr-tag-table): Also insert <objects> after the tables.
3863 2014-11-13  Michael Albinus  <michael.albinus@gmx.de>
3865         * vc/vc-hg.el (vc-hg-state): Disable pager.  (Bug#18940)
3867 2014-11-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3869         * net/eww.el (eww-form-file): Fix version number.
3871 2014-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3873         * net/eww.el (eww-form-file): :type isn't a valid `defface' keyword.
3875 2014-11-10  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
3877         * net/eww.el(eww-form-file(defface)): New defface of file upload form.
3878         (eww-submit-file): New key map of file upload.
3879         (eww-form-file): New file upload button and file name context.
3880         (eww-select-file): Select file and display selected file name.
3881         (eww-tag-input): Handle input tag of file type.
3882         (eww-update-field): Add point offset.
3883         (eww-submit): Add submit with multipart/form-data.
3885 2014-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3887         * net/eww.el (eww-render, eww-display-html, eww-setup-buffer):
3888         Allow taking a buffer to render data in.  This allows using several
3889         eww buffers (bug#16211).
3891 2014-11-10  Charles Rendleman  <carendle@gmail.com>  (tiny change)
3893         * net/eww.el (eww-download-callback): Save only the file contents,
3894         not the headers.
3896 2014-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3898         * net/eww.el (eww-data): New plist to store all the data relevant
3899         to a single page, used throughout the file instead of the
3900         variables `eww-current-url', `eww-current-dom',
3901         `eww-current-source', and `eww-current-title'.
3902         (eww-readable): Copy over pertinent data from the parent page.
3903         (eww-save-history): Don't let the history grow infinitely.
3905         * net/eww.el: Remove `eww-next-url', `eww-previous-url',
3906         `eww-up-url', `eww-home-url', `eww-start-url' and
3907         `eww-contents-url' and put the data into the `eww-data' plist.
3908         This allow restoring these values after going back in the history.
3910 2014-11-10  Sylvain Chouleur  <sylvain.chouleur@gmail.com>  (tiny change)
3912         Allow VTIMEZONE where daylight and standard time zones are equal.
3913         See: http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00494.html
3914         * calendar/icalendar.el (icalendar--convert-tz-offset):
3915         Support timezone without daylight saving time.
3917 2014-11-10  Glenn Morris  <rgm@gnu.org>
3919         * startup.el (command-line): Handle nil elements in load-path.
3921 2014-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3923         * help.el (view-lossage): Include the actual commands run.
3925 2014-11-10  Dmitry Gutov  <dgutov@yandex.ru>
3927         * vc/vc-dir.el (vc-dir-hide-state): Also hide `ignored' items when
3928         no state is specified.  (Bug#18964)
3930 2014-11-09  Eric Ludlam  <zappo@gnu.org>
3932         * emacs-lisp/eieio-custom.el (eieio-customize-object):
3933         Set eieio-cog (current group) to g, which is an improved form of input
3934         group.
3936 2014-11-09  Juri Linkov  <juri@jurta.org>
3938         * isearch.el (isearch-message-prefix): Show "Multi-file" and
3939         "Multi-buffer" instead of "Multi".  (Bug#13592)
3941         * misearch.el (multi-isearch-file-list):
3942         Autoload multi-isearch-buffer-list and multi-isearch-file-list.
3943         (multi-isearch-end): Reset multi-isearch-buffer-list and
3944         multi-isearch-file-list to nil.
3946 2014-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3948         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
3949         Don't call byte-compile-preprocess since the result will go through
3950         cconv.
3951         (byte-compile-output-docform): Handle uninterned `name' correctly.
3952         * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Use interned name
3953         to circumvent byte-compiler bug.
3955         * emacs-lisp/macroexp.el (macroexp--expand-all): Fix typo.
3956         (macroexp--compiler-macro): Remove left-over debug code.
3958         * emacs-lisp/cl-extra.el (cl-get): Silence compiler warning.
3960 2014-11-08  Juri Linkov  <juri@jurta.org>
3962         * simple.el (shell-command): Use buffer-name when output-buffer is
3963         a buffer.  (Bug#18096)
3965 2014-11-08  Juri Linkov  <juri@jurta.org>
3967         * minibuffer.el (minibuffer-completion-help): Compare this-command
3968         with completion-at-point.  (Bug#17809)
3970 2014-11-08  Glenn Morris  <rgm@gnu.org>
3972         * emacs-lisp/bytecomp.el (byte-compile-report-error):
3973         Allow the argument to be a string.  Due to the vague doc,
3974         it was already being used this way.
3976 2014-11-08  Michael Albinus  <michael.albinus@gmx.de>
3978         * net/tramp.el (tramp-check-cached-permissions): Include hop in
3979         the constructed Tramp file name.  (Bug#18943)
3981 2014-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3983         * emulation/cua-base.el (cua--select-keymaps): Use region-active-p
3984         (bug#18952).
3985         (cua-set-mark, cua--post-command-handler-1):
3986         * emulation/cua-gmrk.el (cua-cancel-global-mark): Same.
3988 2014-11-08  Michael Albinus  <michael.albinus@gmx.de>
3990         * files.el (file-name-non-special): Wrap the call of
3991         `insert-file-contents' by `unwind-protect', in order to set the
3992         buffer's file name anyway.  (Bug#18891)
3994 2014-11-08  Alan Mackenzie  <acm@muc.de>
3996         Fix wrong bound to c-font-lock-declarators.  Fixes bug #18948.
3997         * progmodes/cc-fonts.el (c-font-lock-declarations):
3998         Pass "(point-max)" as bound to c-font-lock-declarators, not "limit", as
3999         the buffer is sometimes narrowed to less than "limit" (e.g., in
4000         the presence of macros).
4002 2014-11-08  Michael Albinus  <michael.albinus@gmx.de>
4004         * net/tramp.el (tramp-error-with-buffer): Show connection buffer
4005         only when message appeared in minibuffer.  (Bug#18891)
4007         * net/tramp-adb.el (tramp-adb-handle-file-attributes):
4008         * net/tramp-gvfs.el (tramp-gvfs-handle-file-attributes):
4009         * net/tramp-sh.el (tramp-sh-handle-file-attributes): Return nil in
4010         case of errors.
4012 2014-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4014         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
4015         Don't compile before eval in `eval-and-compile'.
4016         (byte-compile-arglist-warn): Add check for defining macros after their
4017         first use.  Check call use even if the function is fboundp.
4019 2014-11-08  Richard Stallman  <rms@gnu.org>
4021         * mail/rmail.el (rmail-epa-decrypt): Detect armor with line prefixes.
4022         Check more carefully for mime-part specified character set.
4023         Check for mime-part Content Transfer Encoding.
4024         Notify if no armor found.
4026 2014-11-08  Martin Rudalics  <rudalics@gmx.at>
4028         * faces.el (face-set-after-frame-default): Enable running
4029         `window-configuration-change-hook'.
4031 2014-11-07  Juri Linkov  <juri@jurta.org>
4033         * replace.el: History for query replace pairs.
4034         (query-replace-defaults): Promote to a list of cons cell.  Doc fix.
4035         (query-replace-from-to-separator): New variable.
4036         (query-replace-read-from): Let-bind query-replace-from-to-history
4037         to a list of FROM-TO strings created from query-replace-defaults
4038         and separated by query-replace-from-to-separator.  Use it as
4039         the history while reading from the minibuffer.  Split the returned
4040         string by the separator to get FROM and TO parts, and add them
4041         to the history variables.
4042         (query-replace-read-to): Add FROM-TO pairs to query-replace-defaults.
4043         (query-replace-regexp-eval): Let-bind query-replace-defaults to nil.
4044         http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00253.html
4046         * isearch.el (isearch-text-char-description): Keep characters
4047         intact and put formatted strings with the `display' property.
4049 2014-11-07  Martin Rudalics  <rudalics@gmx.at>
4051         * cus-start.el (frame-resize-pixelwise): Fix group.
4052         (frame-inhibit-implied-resize): Add entry.
4054 2014-11-07  Daiki Ueno  <ueno@gnu.org>
4056         * epa.el (epa-pinentry-mode): New user option.
4057         (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
4058         (epa-sign-region, epa-encrypt-region): Respect epa-pinentry-mode.
4059         * epa-file.el (epa-file-insert-file-contents)
4060         (epa-file-write-region): Respect epa-pinentry-mode.
4062 2014-11-07  Daiki Ueno  <ueno@gnu.org>
4064         * epg.el (epg--list-keys-1): Ignore fields after the 15th field
4065         (bug#18979).  Reported by Hideki Saito.
4067 2014-11-06  Daiki Ueno  <ueno@gnu.org>
4069         * emacs-lisp/package.el (package--display-verify-error): New function.
4070         (package--check-signature): Use it to display output sent to stderr.
4072 2014-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4074         * subr.el (pop): Don't call the getter twice (bug#18968).
4076         * emacs-lisp/macroexp.el (macroexp--expand-all): Optimize away trivial
4077         uses of `funcall'.
4079 2014-11-06  Daiki Ueno  <ueno@gnu.org>
4081         * epa.el (epa-error-buffer): New variable.
4082         (epa-display-error): New function.
4083         (epa-decrypt-file, epa-verify-file, epa-verify-region)
4084         (epa-delete-keys, epa-import-keys): Display output sent to stderr.
4085         (epa-sign-file, epa-sign-region, epa-encrypt-region)
4086         (epa-export-keys, epa-insert-keys): Display output sent to stderr.
4087         Use setf instead of epg-context-set-*.
4088         * epa-file.el (epa-file-insert-file-contents):
4089         Use epa-display-error instead of epa-display-info.  Mimic the behavior
4090         of jka-compr when decryption program is not found.
4091         (epa-file-write-region): Use epa-display-error instead of
4092         epa-display-info.
4094 2014-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
4096         * vc/vc.el (vc-region-history): New command.
4097         (vc-print-log-internal): Use cl-some.
4099         * vc/vc-git.el (vc-git-region-history): New function.
4100         (vc-git-region-history-mode-map)
4101         (vc-git--log-view-long-font-lock-keywords)
4102         (vc-git-region-history-font-lock-keywords): New vars.
4103         (vc-git-region-history-font-lock): New function.
4104         (vc-git-region-history-mode): New major mode.
4106 2014-11-05  Tassilo Horn  <tsdh@gnu.org>
4108         * net/eww.el (subr-x): Require subr-x at compile-time because eww
4109         uses string-trim.
4111 2014-11-05  Daiki Ueno  <ueno@gnu.org>
4113         * epg.el (epg-context): Add new slot ERROR-OUTPUT.
4114         (epg-error-output): New buffer-local variable.
4115         (epg--start): Initialize epg-error-output.
4116         (epg--process-filter): Record output lines sent to stderr, in
4117         epg-error-output.
4118         (epg-wait-for-completion): Copy epg-error-output to ERROR-OUTPUT
4119         slot of context.
4120         * epa-file.el (epa-file-insert-file-contents): On error, display
4121         output sent to stderr.
4122         (epa-file-write-region): Likewise.
4124 2014-11-05  Eli Zaretskii  <eliz@gnu.org>
4126         * jit-lock.el (jit-lock-stealth-fontify): Be tolerant to nil being
4127         returned by load-average.
4129 2014-11-05  Michael Albinus  <michael.albinus@gmx.de>
4131         * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer): Don't use
4132         a local copy; setting `inhibit-file-name-handlers' proper might be
4133         more performant.  (Bug#18751)
4135 2014-11-05  Glenn Morris  <rgm@gnu.org>
4137         * mail/emacsbug.el (report-emacs-bug): No longer include
4138         recent-keys in the report.  (Bug#18900)
4140 2014-11-04  Paul Eggert  <eggert@cs.ucla.edu>
4142         * mouse.el (mouse-drag-line): Fix misspelling of "right-fringe".
4144 2014-11-04  Teodor Zlatanov  <tzz@lifelogs.com>
4146         * net/eww.el (eww): Trim URL with `string-trim'.
4147         Suggested by Vibhav Pant <vibhavp@gmail.com>.
4149 2014-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4151         * net/eww.el (eww-score-readability): Don't count comments positively.
4153         * net/shr.el (shr-retransform-dom): Typo fix.
4155         * net/eww.el (eww-score-readability): Parse SVC images correctly.
4156         (eww-display-html): Don't leave point inside forms.
4158         * net/shr.el: Ditto.
4160 2014-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4162         * emacs-lisp/edebug.el (edebug-safe-prin1-to-string): Assume that
4163         edebug-prin1-to-string already handles circularity.
4165         * emacs-lisp/byte-run.el (defun-declarations-alist): Fix compiler-macro
4166         autoloading when specified as a lambda.
4168         * simple.el (execute-extended-command--last-typed): New var.
4169         (read-extended-command): Set it.
4170         Don't complete obsolete commands.
4171         (execute-extended-command--shorter-1)
4172         (execute-extended-command--shorter): New functions.
4173         (execute-extended-command): Use them to suggest shorter names.
4174         (indicate-copied-region, deactivate-mark): Use region-active-p.
4176 2014-11-03  Michael Albinus  <michael.albinus@gmx.de>
4178         * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer): Use a
4179         local copy of FILENAME, when it is remote.  (Bug#18751)
4181         * net/tramp-adb.el (tramp-adb-handle-process-file): Do not raise
4182         an error when the command fails; the return code must indicate.
4183         (tramp-adb-send-command-and-check): Fix docstring.
4185 2014-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4187         * net/shr.el (shr-retransform-dom): Don't ignore elements that
4188         have no children like <br />.
4190         * net/eww.el (eww-display-html): Clear `url-queue'.
4191         (eww-display-pdf): New function.
4192         (eww-render): Display PDFs with `doc-view'.
4193         (url-queue): Require `url-queue' to avoid compilation warning.
4194         (eww-colorize-region): Remove duplicate function.
4195         (eww-tag-body): Use `shr-colorize-region'.
4197 2014-11-03  Yoni Rabkin <yrk@gnu.org>
4199         * net/eww.el (eww-list-bookmarks): Autoload.
4201 2014-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4203         * net/shr.el (shr-retransform-dom): Allow several text sub-nodes.
4205         * net/eww.el (eww-display-html): The charset is called `utf-8',
4206         not `utf8'.
4207         (eww-readable): Decode the saved text correctly.
4208         (eww-readable): Save the history before displaying so that we can
4209         go back to the non-readable version.
4210         (eww-display-html): Don't try to decode the text if we've been
4211         passed in a pre-parsed DOM.
4212         (eww-tag-title): Remove newlines and extra whitespace from the
4213         displayed title.
4215 2014-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4217         * net/eww.el (eww-readable): New command and keystroke.
4219         * net/shr.el (shr-retransform-dom): New function.
4221         * net/eww.el (eww-display-html): Set `eww-current-source' in the
4222         correct buffer.
4223         (eww-view-source): Use it.
4225 2014-11-02  Ivan Shmakov <ivan@siamics.net>
4227         * net/eww.el (eww): Recognize colon-delimited IPv6 addresses.
4228         (Bug#18603).
4230 2014-11-02  Brian McKenna <brian@brianmckenna.org>  (tiny change)
4232         * net/eww.el (eww-submit): Encode empty form values as "".  (Bug#17785).
4234 2014-11-02  Ivan Shmakov <ivan@siamics.net>
4236         * net/eww.el (eww): Allow "file:/file/name" URLs.  (Bug#18825).
4238 2014-11-02  Ivan Shmakov <ivan@siamics.net>
4240         * net/eww.el (eww-mode-map): Remove mentions of `eww-quit'.
4241         (Bug#18834).
4243 2014-11-02  Eric Abrahamsen  <eric@ericabrahamsen.net>
4245         * emacs-lisp/eieio.el (eieio-edebug-prin1-to-string): Adjust for
4246         use as advice.
4247         (edebug-setup-hook): Advise `edebug-prin1-to-string'.  (Bug#18897)
4249 2014-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
4251         * emacs-lisp/pp.el (pp-macroexpand-expression): Use macroexpand-1
4252         (bug#18821).
4253         * progmodes/elisp-mode.el (emacs-lisp-macroexpand): Idem.
4255 2014-11-01  Michael R. Mauger  <michael@mauger.com>
4257         * sql.el (sql-mode-oracle-font-lock-keywords): Correct regexp
4258         syntax, add new keywords, and parse longer keywords first.
4259         (sql-redirect-one): Protect against empty command.
4260         (sql-mode, sql-interactive-mode): Set `custom-mode-group' property
4261         to SQL.  (Bug#14759)
4263 2014-11-01  Michael R. Mauger  <michael@mauger.com>
4265         * sql.el (sql-interactive-mode, sql-stop): Correct fix for
4266         Bug#16814 with let-bind of comint-input-ring variables around read
4267         and save functions.
4269 2014-11-01  Michael Albinus  <michael.albinus@gmx.de>
4271         * net/tramp-cache.el (tramp-get-file-property)
4272         (tramp-set-file-property): Check that `tramp-cache-get-count-*'
4273         and `tramp-cache-set-count-*' are bound.  Otherwise, there might
4274         be compiler warnings.
4276         * net/tramp-sh.el (tramp-get-remote-uid, tramp-get-remote-gid):
4277         Return -1 respective "UNKNOWN", if uid or gid cannot be determined.
4279 2014-11-01  Eli Zaretskii  <eliz@gnu.org>
4281         * progmodes/compile.el (compilation-mode): Turn off deferred
4282         fontifications locally.  (Bug#18856)
4284 2014-11-01  Wolfgang Jenkner  <wjenkner@inode.at>
4286         * net/tramp-sh.el (tramp-send-command): Fix the case where the
4287         remote-echo connection property is non-nil (bug#18858).
4289 2014-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4291         * simple.el (newline): Add assertions to try and help catch bug#18913.
4293         * emulation/cua-base.el (cua-delete-region): Use delete-active-region
4294         (bug#18886).
4295         (cua--last-deleted-region-pos, cua--last-deleted-region-text): Remove.
4297 2014-11-01  Kim F. Storm  <storm@cua.dk>
4299         Restore cua-delete-copy-to-register-0 and M-v command (bug#18886).
4300         * delsel.el (delete-selection-save-to-register)
4301         (delsel--replace-text-or-position): New vars.
4302         (delete-active-region): Use them.
4303         (delete-selection-repeat-replace-region): New command, moved from
4304         cua-base.el.
4305         * emulation/cua-base.el (cua--repeat-replace-text): Remove var.
4306         (cua-repeat-replace-region): Move command to delsel.el.
4307         (cua--init-keymaps): Update binding accordingly.
4308         (cua-mode): Set delete-selection-save-to-register.
4310 2014-11-01  Alan Mackenzie  <acm@muc.de>
4312         Make blink-parens work with a closing template delimiter.
4313         * progmodes/cc-cmds.el (c-electric-lt-gt): Cause a redisplay
4314         before calling blink-paren-function, so as to apply syntax-table
4315         properties to the ">".
4317 2014-11-01  Jan Djärv  <jan.h.d@swipnet.se>
4319         * select.el (gui-get-selection): Comment: data-type ignored on NS.
4321 2014-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
4323         * emacs-lisp/macroexp.el (macroexpand-1): New function (bug#18821).
4324         (macroexp--expand-all): Unrelated tweaks.
4326         * emacs-lisp/gv.el (gv-get): Use macroexpand-1.
4328 2014-10-30  Glenn Morris  <rgm@gnu.org>
4330         * startup.el (command-line): Remove pointless attempt to avoid
4331         statting the file-system (which expand-file-name doesn't do).
4333 2014-10-30  Daniel Colascione  <dancol@dancol.org>
4335         Add "enum class" support to C++ mode.
4336         * progmodes/cc-langs.el (c-after-brace-list-decl-kwds)
4337         (c-after-brace-list-key): New language consts/variables.
4338         * progmodes/cc-engine.el (c-looking-at-decl-block):
4339         Exclude spurious match of "enum struct" from decl-block recognition.
4340         (c-backward-colon-prefixed-type): New function.
4341         (c-backward-over-enum-header): Call above function to extend
4342         recognition of enum structure.
4344 2014-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4346         * progmodes/cc-defs.el (c--macroexpand-all): New function (bug#18845).
4347         (c-lang-defconst):
4348         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Use it.
4350 2014-10-30  Eli Zaretskii  <eliz@gnu.org>
4352         * progmodes/compile.el (compilation-start):
4353         If compilation-scroll-output is non-nil, don't force window-start of
4354         the compilation buffer to be at beginning of buffer.  (Bug#18874)
4356         * startup.el (fancy-about-text): Read the entire tutorial, not
4357         just its first 256 bytes.  (Bug#18760)
4359 2014-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
4361         * emacs-lisp/bytecomp.el: Require cl-extra (bug#18804).
4362         * emacs-lisp/cl-extra.el: Add missing provide.
4364         * emacs-lisp/bytecomp.el (byte-compile-and-folded): Optimize case where
4365         all args are copyable (bug#18767).
4366         (=, <, >, <=, >=): Re-enable the optimization.
4368 2014-10-29  Glenn Morris  <rgm@gnu.org>
4370         * net/rcirc.el (rcirc-fill-column): Unbump :version.  Mark :risky.
4372         * version.el (emacs-bzr-version, emacs-bzr-get-version):
4373         Revert 2014-10-26 change.
4375 2014-10-29  Paul Eggert  <eggert@cs.ucla.edu>
4377         Simplify use of current-time and friends.
4378         * allout-widgets.el (allout-widgets-hook-error-handler):
4379         * calendar/appt.el (appt-display-message):
4380         * calendar/icalendar.el (icalendar--convert-float-to-ical):
4381         * calendar/timeclock.el (timeclock-in, timeclock-when-to-leave)
4382         (timeclock-last-period, timeclock-day-base):
4383         * eshell/em-ls.el (eshell-ls-file):
4384         * eshell/esh-util.el (eshell-parse-ange-ls):
4385         * generic-x.el (named-database-print-serial):
4386         * net/newst-backend.el (newsticker--get-news-by-url-callback)
4387         (newsticker-get-news, newsticker--sentinel-work)
4388         (newsticker--image-get, newsticker--image-sentinel):
4389         * net/tramp-sh.el (tramp-get-remote-touch):
4390         * progmodes/opascal.el (opascal-debug-log):
4391         * textmodes/remember.el (remember-mail-date)
4392         (remember-store-in-files):
4393         * vc/vc-annotate.el (vc-annotate-display-autoscale)
4394         (vc-default-annotate-current-time):
4395         * vc/vc-bzr.el (vc-bzr-shelve-snapshot):
4396         * vc/vc-cvs.el (vc-cvs-annotate-current-time):
4397         * vc/vc-rcs.el (vc-rcs-annotate-current-time):
4398         Omit unnecessary call to current-time.
4399         * calendar/time-date.el (time-to-seconds) [!float-time]:
4400         * vc/vc-annotate.el (vc-annotate-convert-time):
4401         Use current time if arg is nil, to be compatible with float-time.
4402         (time-date--day-in-year): New function, with most of the guts of
4403         the old time-to-day-in-year.
4404         (time-to-day-in-year): Use it.
4405         (time-to-days): Use it, to avoid decoding the same time stamp twice.
4406         * calendar/timeclock.el (timeclock-time-to-date):
4407         Arg is now optional, like current-time-string.
4408         (timeclock-update-mode-line):
4409         Don't call current-time twice to get the current time stamp,
4410         as this can lead to inconsistent results.
4411         * completion.el (cmpl-hours-since-origin):
4412         * ido.el (ido-time-stamp):
4413         * vc/vc-annotate.el (vc-annotate-convert-time):
4414         Simplify by using float-time.
4415         * completion.el (save-completions-to-file):
4416         Rename local var to avoid confusion.
4417         * net/rcirc.el (rcirc-float-time): Simplify to an alias because
4418         time-to-seconds now behaves like float-time with respect to nil arg.
4419         * subr.el (progress-reporter-do-update):
4420         Don't call float-time unless needed.
4422 2014-10-29  Leo Liu  <sdl.web@gmail.com>
4424         * net/rcirc.el (rcirc-fill-column): Use function.
4425         (rcirc-markup-fill): Remove adjustment.
4427 2014-10-28  Christopher Schmidt  <ch@ristopher.com>
4429         * calc/calc.el (quick-calc):
4430         * calc/calc-aent.el (calc-do-quick-calc): New argument INSERT.
4432 2014-10-28  Sam Steingold  <sds@gnu.org>
4434         * net/rcirc.el (rcirc-fill-column): Allow any symbolic value for
4435         the sake of `window-body-width' (in addition to `frame-width').
4437 2014-10-26  Eric S. Raymond  <esr@thyrsus.com>
4439         * version.el: Fix some fallback values to conform to the actual
4440         release number.
4442 2014-10-25  Eric S. Raymond  <esr@thyrsus.com>
4444         * Makefile.in: Change some production names so they're neutral
4445         about the repository type.
4447 2014-10-25  Michael Albinus  <michael.albinus@gmx.de>
4449         * net/tramp-gvfs.el (tramp-gvfs-methods-mounttracker)
4450         (tramp-gvfs-mountlocation-signature): Check `tramp-gvfs-enabled'
4451         during initialization.  (Bug#18774)
4453 2014-10-25  Vincent Belaïche  <vincentb1@users.sourceforge.net>
4455         * ses.el (macroexp): Add require for this package, so that
4456         function `ses--cell' gets macroexp-quote --- this change was
4457         supposed to be in my previous commit, but left out by mistake.
4458         (ses--cell): Do not make formula a macroexp-quote of value when
4459         value, not formula, is *skip*.
4461 2014-10-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
4463         * ses.el (macroexp): Add require for this package, so that function
4464         `ses--cell gets macroexp-quote.
4465         (ses--cell): Makes formula a macroexp-quote of value when formula
4466         is nil.  The rationale of this changr is to allow in the future
4467         shorter SES files, e.g. we could have only `(ses-cell A1 1.0)'
4468         instead of `(ses-cell A1 1.0 1.0 nil REFLIST)'.  In such a case
4469         reference list REFLIST would be re-computed after load --- thus
4470         trading off load time against file size.
4472         * emacs-lisp/package.el (package--alist-to-plist-args):
4473         Use macroexp-quote instead of a lambda expression which has the same
4474         content as macroexp-quote.
4475         (macroexp): Add require for this package, so that function
4476         `package--alist-to-plist-args' gets macroexp-quote.
4478         * emacs-lisp/macroexp.el (macroexp-quote): New defun.
4480 2014-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4482         * term/ns-win.el (ns-store-cut-buffer-internal)
4483         (ns-copy-including-secondary): Use gui-set-selection (bug#18816).
4485 2014-10-24  Martin Rudalics  <rudalics@gmx.at>
4487         * mouse.el (mouse-drag-line): Don't use mouse-pixel-position.
4488         Calculate increment from last position instead of window edge.
4489         Add right- and bottom-divider bindings to transient map.
4491 2014-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4493         * emacs-lisp/cl-macs.el (cl-defstruct): Define an internal predicate
4494         even if :predicate was nil, for the benefit of typep.
4495         Record the name of the predicate for typep's use.
4496         (cl--make-type-test): Use pcase.  Obey new
4497         cl-deftype-satisfies property.
4499         * epg.el: Use cl-defstruct.
4500         (epg-make-data-from-file, epg-make-data-from-string, epg-data-file)
4501         (epg-data-string): Define via cl-defstruct.
4502         (epg--gv-nreverse): New macro.
4503         (epg-context--make): New constructor (provided vi cl-defstruct).
4504         (epg-make-context): Rewrite using it.
4505         (epg-context-protocol, epg-context-program)
4506         (epg-context-home-directory, epg-context-armor, epg-context-textmode)
4507         (epg-context-include-certs, epg-context-cipher-algorithm)
4508         (epg-context-digest-algorithm, epg-context-compress-algorithm)
4509         (epg-context-passphrase-callback, epg-context-progress-callback)
4510         (epg-context-signers, epg-context-sig-notations, epg-context-process)
4511         (epg-context-output-file, epg-context-result, epg-context-operation)
4512         (epg-context-pinentry-mode): Define using cl-defstruct.
4513         (epg-context-set-protocol, epg-context-set-program)
4514         (epg-context-set-include-certs, epg-context-set-cipher-algorithm)
4515         (epg-context-set-digest-algorithm)
4516         (epg-context-set-sig-notations, epg-context-set-process)
4517         (epg-context-set-output-file, epg-context-set-result)
4518         (epg-context-set-operation, epg-context-set-pinentry-mode)
4519         (epg-context-set-compress-algorithm): Remove.  Use setf instead.
4520         (epg-context-set-armor, epg-context-set-textmode)
4521         (epg-context-set-signers): Redefine using setf
4522         and declare as obsolete.
4523         (epg-context-set-passphrase-callback)
4524         (epg-context-set-progress-callback): Use setf.
4525         (epg-signature-notations): Rename from epg-sig-notations.
4526         (epg-make-signature, epg-signature-status, epg-signature-key-id)
4527         (epg-signature-validity, epg-signature-fingerprint)
4528         (epg-signature-creation-time, epg-signature-expiration-time)
4529         (epg-signature-pubkey-algorithm, epg-signature-digest-algorithm)
4530         (epg-signature-class, epg-signature-version): Define vi cl-defstruct.
4531         (epg-signature-set-status, epg-signature-set-key-id)
4532         (epg-signature-set-validity, epg-signature-set-fingerprint)
4533         (epg-signature-set-creation-time, epg-signature-set-expiration-time)
4534         (epg-signature-set-pubkey-algorithm)
4535         (epg-signature-set-digest-algorithm, epg-signature-set-class)
4536         (epg-signature-set-version, epg-signature-set-notations): Remove.
4537         Use setf instead.
4538         (epg-make-new-signature, epg-new-signature-type)
4539         (epg-new-signature-pubkey-algorithm)
4540         (epg-new-signature-digest-algorithm, epg-new-signature-class)
4541         (epg-new-signature-creation-time, epg-new-signature-fingerprint):
4542         Define using cl-defstruct.
4543         (epg-make-key, epg-key-owner-trust, epg-key-sub-key-list)
4544         (epg-key-user-id-list): Define using cl-defstruct.
4545         (epg-key-set-sub-key-list, epg-key-set-user-id-list): Remove.
4546         Use setf instead.
4547         (epg-make-sub-key, epg-sub-key-validity, epg-sub-key-capability)
4548         (epg-sub-key-secret-p, epg-sub-key-algorithm, epg-sub-key-length)
4549         (epg-sub-key-id, epg-sub-key-creation-time)
4550         (epg-sub-key-expiration-time, epg-sub-key-fingerprint): Define using
4551         cl-defstruct.
4552         (epg-sub-key-set-fingerprint): Remove.  Use setf instead.
4553         (epg-make-user-id, epg-user-id-validity, epg-user-id-string)
4554         (epg-user-id-signature-list): Define using cl-defstruct.
4555         (epg-user-id-set-signature-list): Remove.  Use setf instead.
4556         (epg-make-key-signature, epg-key-signature-validity)
4557         (epg-key-signature-pubkey-algorithm, epg-key-signature-key-id)
4558         (epg-key-signature-creation-time, epg-key-signature-expiration-time)
4559         (epg-key-signature-user-id, epg-key-signature-class)
4560         (epg-key-signature-exportable-p): Define using cl-defstruct.
4561         (epg-make-sig-notation, epg-sig-notation-name)
4562         (epg-sig-notation-value, epg-sig-notation-human-readable)
4563         (epg-sig-notation-critical): Define using cl-defstruct.
4564         (epg-sig-notation-set-value): Remove.  Use setf instead.
4565         (epg-make-import-status, epg-import-status-fingerprint)
4566         (epg-import-status-reason, epg-import-status-new)
4567         (epg-import-status-user-id, epg-import-status-signature)
4568         (epg-import-status-sub-key, epg-import-status-secret): Define using
4569         cl-defstruct.
4570         (epg-make-import-result, epg-import-result-considered)
4571         (epg-import-result-no-user-id, epg-import-result-imported)
4572         (epg-import-result-imported-rsa, epg-import-result-unchanged)
4573         (epg-import-result-new-user-ids, epg-import-result-new-sub-keys)
4574         (epg-import-result-new-signatures, epg-import-result-new-revocations)
4575         (epg-import-result-secret-read, epg-import-result-secret-imported)
4576         (epg-import-result-secret-unchanged, epg-import-result-not-imported)
4577         (epg-import-result-imports): Define using cl-defstruct.
4579         * emacs-lisp/package.el: Require EPG during macroexpansion.
4580         (package--check-signature, package-import-keyring): Use setf instead of
4581         epg-context-set-home-directory.
4583 2014-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4585         * emacs-lisp/bytecomp.el (byte-compile--use-old-handlers): Change default.
4587 2014-10-23  Leo Liu  <sdl.web@gmail.com>
4589         * progmodes/cfengine.el (cfengine3-defun-full-re): New var.
4590         (cfengine3-create-imenu-index): Use it and use ` ' for separation.
4591         (cfengine3-current-defun): New function.
4592         (cfengine3-mode): Set add-log-current-defun-function.
4594 2014-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4596         * select.el: Use lexical-binding.
4597         (gui-set-selection): Provide an implementation for non-GUI frames
4598         (bug#18791).
4599         * term/x-win.el: Use lexical-binding.
4600         (x-clipboard-yank): Fix up missed renamings.
4601         * term/w32-win.el (libgif-version, libjpeg-version): Silence compiler.
4602         (w32--set-selection): Fix up var names.
4603         * term/pc-win.el: Use lexical-binding.
4604         (w16-selection-exists-p): Silence compiler warning.
4605         (w16-selection-owner-p): Fix up missed renamings.
4607         * emacs-lisp/bytecomp.el (byte-compile-form): Remove left-over debug.
4609         * frame.el (frame-notice-user-settings): Fix excessive quoting.
4611 2014-10-22  Tassilo Horn  <tsdh@gnu.org>
4613         * doc-view.el (doc-view-open-text): View the document's plain text
4614         in the current buffer instead of a new one.
4615         (doc-view-toggle-display): Handle the case where the current
4616         buffer contains the plain text contents of the document.
4617         (doc-view-initiate-display): Don't switch to fallback mode if the
4618         user wants to view the doc's plain text.
4619         (doc-view-set-doc-type): Use assoc-string instead of
4620         assoc-ignore-case.
4622 2014-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4624         * subr.el (read-key): Fix clicks on the mode-line.
4625         (set-transient-map): Return exit function.
4627         * mouse.el (mouse-drag-line): Use set-transient-map (bug#18015).
4628         (mouse--down-1-maybe-follows-link): Remove unused var `this-event'.
4629         (mouse-yank-secondary): Use gui-get-selection.
4630         (mouse--down-1-maybe-follows-link): Use read-key.
4632         * xt-mouse.el: Add `event-kind' property on the fly from
4633         xterm-mouse-translate-1 rather than statically at the outset.
4635 2014-10-21  Daniel Colascione  <dancol@dancol.org>
4637         * vc/vc-dispatcher.el (vc-resynch-window): Tell view-mode not to
4638         change window configuration when we turn it off.
4640 2014-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4642         Get rid of backend-dependent selection-handling functions for kill/yank
4643         and make it generic instead by relying on the lower-level selection
4644         management functions.
4646         * select.el (select-enable-clipboard): Rename from
4647         gui-select-enable-clipboard.
4648         (select-enable-primary): Move from x-win.el and rename from
4649         x-select-enable-primary.
4650         (gui-last-selected-text): Remove.
4651         (gui--last-selected-text-clipboard, gui--last-selected-text-primary):
4652         New vars.
4653         (gui-select-text): Rewrite, based on x-win.el's old x-select-text.
4654         (gui-select-text-alist, gui-selection-value-alist): Remove.
4655         (x-select-request-type): Move from x-win.el.
4656         (gui--selection-value-internal): New function, taken from x-win's
4657         x-selection-value-internal.
4658         (gui-selection-value): Rewrite, based on x-win.el's old x-selection-value.
4659         (gui-set-selection-alist): Rename from gui-own-selection-alist and
4660         extend it to handle a nil value as a "disown" request.
4661         (gui-disown-selection-alist): Remove.
4662         (xselect-convert-to-delete): Adjust accordingly.
4663         (gui-set-selection): Simplify accordingly as well.  Use dotimes.
4665         * term/x-win.el (x-last-selected-text-primary)
4666         (x-select-enable-primary): Remove (moved to select.el).
4667         (x-select-request-type): Move to select.el.
4668         (x-selection-value-internal, x--selection-value): Remove functions.
4669         (gui-selection-value, gui-select-text): Remove moethods.
4670         (gui-set-selection): Merge own and disown methods.
4672         * term/w32-win.el (w32--select-text, w32--get-selection-value):
4673         Delete function (move functionality into w32--set-selection and
4674         w32--get-selection).
4675         (gui-select-text, gui-selection-value): Don't define methods.
4676         (w32--set-selection, w32--get-selection, w32--selection-owner-p):
4677         New functions.
4678         (gui-get-selection, gui-selection-owner-p, gui-selection-exists-p):
4679         Use them.
4680         (gui-selection-exists-p): Adjust to new name of C primitive.
4682         * term/pc-win.el (w16-get-selection-value): Add dummy argument and drop
4683         test of gui-select-enable-clipboard, to make it usable as
4684         a gui-get-selection method.
4685         (gui-selection-exists-p): Adjust to new name of C primitive.
4686         (gui-set-selection): Merge own and disown methods.
4687         (gui-select-text, gui-selection-value): Delete methods.
4688         (w16--select-text): Delete function.
4690         * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard)
4691         (ns-selection-value): Remove functions.
4692         (gui-select-text, gui-selection-value): Don't define method any more.
4693         (gui-set-selection): Merge the old own and disown methods.
4694         (gui-selection-exists-p, gui-get-selection): Adjust to new name of
4695         underlying C primitive.
4697         * startup.el (command-line): Adjust now that `gui-method' expects nil
4698         for ttys.
4700         * frame.el (gui-method): Use window-system rather than framep.
4701         (gui-method-declare): The tty case is now nil rather than t.
4702         (make-frame): Adjust accordingly.
4704 2014-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4706         * net/newst-reader.el (newsticker--image-read): Simplify.
4707         (newsticker--icon-read): Use dolist and fix free var error.
4709         * imenu.el (imenu--menubar-keymap): New var.
4710         (imenu-add-to-menubar): Set it to remember the keymap we used.
4711         (imenu-update-menubar): Use it instead of asking lookup-key.
4713         * obsolete/cc-compat.el: Make obsolete (bug#18561).
4715         * epg-config.el (epg-gpg-program): Don't use absolute names by default.
4717         * emacs-lisp/bytecomp.el (=, <, >, <=, >=): Don't optimize multi-arg
4718         case (bug#18767).
4720 2014-10-21  Glenn Morris  <rgm@gnu.org>
4722         * Merge in all changes up to version 24.4 release.
4724 2014-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4726         * emacs-lisp/bytecomp.el (=, <, >, <=, >=): Don't optimize multi-arg
4727         case (bug#18767).
4729 2014-10-20  Glenn Morris  <rgm@gnu.org>
4731         * Merge in all changes up to 24.4 release.
4733 2014-10-20  Ulf Jasper  <ulf.jasper@web.de>
4735         * net/newst-backend.el
4736         (newsticker--image-download-by-url-callback): Make this function
4737         actually work: Check status properly, then save image.
4739 2014-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4741         * mouse.el (mouse--down-1-maybe-follows-link): Remove unused var
4742         `this-event'.
4743         (mouse-drag-line): Unless there's no actual mouse, use the event's
4744         position info.
4746 2014-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4748         * textmodes/css-mode.el (scss-mode): New major-mode.
4749         (css-mode-syntax-table): Use d style comment, to ease the scss case.
4750         (css-ident-re): Allow things like @-moz-keyframes.
4751         (scss--hash-re): New const.
4752         (css--font-lock-keywords): New function, extracted from
4753         css-font-lock-keywords.
4755 2014-10-19  Ulf Jasper  <ulf.jasper@web.de>
4757         * net/newst-backend.el: Require url-parse.
4758         (newsticker--get-news-by-wget): Store feed name as process property.
4759         (newsticker--sentinel): Read feed name from process property.
4760         (newsticker--sentinel-work): Rename argument name to feed-name.
4761         Rename variable imageurl to image-url.  Pick icon url from Atom
4762         1.0 data.  Launch download of feed icon.
4763         (newsticker--get-icon-url-atom-1.0): New.
4764         (newsticker--unxml)
4765         (newsticker--unxml-node)
4766         (newsticker--unxml-attribute): Documentation.
4767         (newsticker--icons-dir): New.
4768         (newsticker--image-get): New arguments FILENAME and DIRECTORY.
4769         Use `url-retrieve' if `newsticker-retrieval-method' is 'intern.
4770         (newsticker--image-download-by-wget): New.  Use process properties
4771         for storing informations.
4772         (newsticker--image-sentinel): Read informations from process properties.
4773         (newsticker--image-save)
4774         (newsticker--image-remove)
4775         (newsticker--image-download-by-url)
4776         (newsticker--image-download-by-url-callback): New.
4777         (newsticker-opml-export): Handle url list entries containing a
4778         function instead of an url string.
4780         * net/newst-reader.el (newsticker-html-renderer): Whitespace.
4781         (newsticker--print-extra-elements)
4782         (newsticker--do-print-extra-element):
4783         Documentation (newsticker--image-read): Optionally limit image height.
4784         Use imagemagick if possible.
4785         (newsticker--icon-read): New.
4787         * net/newst-treeview.el (newsticker--treeview-item-show): Limit height of feed logo.
4788         (newsticker--treeview-tree-expand): Use feed icons in treeview.
4789         (newsticker--tree-widget-icon-create): New.  Set the tree widget icon.
4790         (newsticker--tree-widget-leaf-icon): Use feed icon.
4792 2014-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4794         * emacs-lisp/eieio-opt.el (eieio-lambda-arglist): Remove.
4795         Use help-function-arglist instead.
4797         * emacs-lisp/eieio-core.el (eieio-compiled-function-arglist): Remove.
4798         (eieio--with-scoped-class): Use `declare'.
4799         (eieio-defclass): Remove compatibility code.
4800         (no-method-definition, no-next-method, inconsistent-class-hierarchy)
4801         (invalid-slot-type, unbound-slot, invalid-slot-name): Use define-error.
4803 2014-10-18  Jan Djärv  <jan.h.d@swipnet.se>
4805         * cus-start.el (x-gtk-whole-detached-tool-bar): Remove.
4807         * term/x-win.el (x-gtk-stock-map): Add icon names suggested as
4808         replacements to stock names before stock names in a list.
4809         Cdr may be a list, each name is tried in turn until one is found.
4811 2014-10-18  Alan Mackenzie  <acm@muc.de>
4813         Check that a "macro" found near point-min isn't a ## operator.
4814         Fixes bug #18749.
4815         * progmodes/cc-engine.el (c-macro-is-genuine-p): New function.
4816         (c-beginning-of-macro): Use the above new function.
4818 2014-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
4820         * net/gnutls.el (gnutls-negotiate): Don't use cl-mapcan; pass
4821         correct data to `gnutls-boot' (Bug#18664).
4822         Reported by Toke Høiland-Jørgensen <toke@toke.dk>.
4824 2014-10-18  Michal Nazarewicz  <mina86@mina86.com>
4826         * whitespace.el (whitespace-style, whitespace-big-indent)
4827         (whitespace-big-indent-regexp, whitespace-style-value-list)
4828         (whitespace-toggle-option-alist, whitespace-interactive-char)
4829         (whitespace-toggle-options)
4830         (global-whitespace-toggle-options, whitespace-help-text)
4831         (whitespace-style-face-p, whitespace-color-on): Add a 'big-indent
4832         style to `whitespace-mode' to indicate that the line indentation
4833         is too deep.  By default, 32 SPACEs or four TABs are considered
4834         too many but `whitespace-big-indent-regexp' can be configured.
4836 2014-10-17  Michal Nazarewicz  <mina86@mina86.com>
4838         * textmodes/tildify.el (tildify--pick-alist-entry): Rename from
4839         tildify-mode-alist.
4841 2014-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4843         * emacs-lisp/eieio.el: Use lexical-binding drop non-GV fallback.
4844         (defclass, defgeneric, defmethod): Add doc-string position.
4845         (with-slots): Require cl-lib.
4847         * emacs-lisp/eieio-core.el: Use lexical-binding and cl-lib.
4848         (list-of): New type.
4849         (eieio--typep): Remove.
4850         (eieio-perform-slot-validation): Use cl-typep instead.
4852         * emacs-lisp/eieio-base.el: Use lexical-binding and cl-lib.
4854         * emacs-lisp/cl-macs.el (cl--make-type-test): Avoid ((lambda ..) ..).
4856 2014-10-16  Alan Mackenzie  <acm@muc.de>
4858         Trigger showing when point is in the "periphery" of a line or just
4859         inside a paren.
4860         * paren.el (show-paren-style, show-paren-delay)
4861         (show-paren-priority, show-paren-ring-bell-on-mismatch):
4862         Remove superfluous :group specifications.
4863         (show-paren-when-point-inside-paren)
4864         (show-paren-when-point-in-periphery): New customizable variables.
4865         (show-paren-highlight-openparen): Make into a defcustom.
4866         (show-paren--unescaped-p, show-paren--categorize-paren)
4867         (show-paren--locate-near-paren): New defuns.
4868         (show-paren--default): Refaactor and trigger on more paren
4869         positions.
4870         (show-paren-function): Small consequential changes.
4872 2014-10-16  Tom Tromey  <tom@tromey.com>
4874         * files.el (auto-mode-alist): Use javascript-mode for .jsm
4875         (bug #18719).
4877 2014-10-16  Eli Zaretskii  <eliz@gnu.org>
4879         * international/characters.el (bracket-type): Force pre-loading of
4880         uni-brackets.el.
4882 2014-10-16  Alan Mackenzie  <acm@muc.de>
4884         * cus-edit.el (custom-command-apply): Specify the return value in
4885         the doc string.
4886         (Custom-reset-standard): Save custom-file (e.g. .emacs) only when
4887         custom-command-apply has returned non-nil.
4889 2014-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4891         * emacs-lisp/eldoc.el (global-eldoc-mode): Enable by default.
4892         Remove incorrect handling of eldoc-print-after-edit.
4893         (eldoc-message-commands, eldoc-last-data): Use defvar.
4894         * loadup.el (emacs-lisp/eldoc): Load it.
4896         * progmodes/m4-mode.el (m4-syntax-propertize): New var.
4897         (m4-mode): Use it.
4898         (m4--quoted-p): New function.
4899         (m4-font-lock-keywords): Don't handle #..\n comments any more.
4900         (m4-mode-syntax-table): Use punctuation syntax (according to m4 manual)
4901         for most special characters.
4903         * progmodes/compile.el (compilation--previous-directory): Simplify.
4904         (compilation-next-error): Ensure the parse before we look at
4905         compilation-message property.
4907 2014-10-15  Eli Zaretskii  <eliz@gnu.org>
4909         * simple.el (what-cursor-position):
4910         * descr-text.el (describe-char): Update to support the new bidi
4911         characters.
4913         * emacs-lisp/tabulated-list.el (tabulated-list-mode):
4914         Force bidi-paragraph-direction to 'left-to-right'.  This fixes
4915         buffer-menu display when the first buffer happens to start with
4916         R2L letter.
4918 2014-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
4920         * progmodes/elisp-mode.el (elisp--local-variables-1):
4921         Handle quoted expressions (bug#18688).
4923 2014-10-14  Jérémy Compostella  <jeremy.compostella@intel.com>
4924             Michael Albinus  <michael.albinus@gmx.de>
4926         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
4927         Reduce the amount of set environment variable commands.
4929 2014-10-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4931         Fix import completion.  (Bug#18582)
4932         * progmodes/python.el (python-shell-completion-get-completions):
4933         Fix import case regexp.
4935 2014-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4937         * progmodes/bat-mode.el (bat-font-lock-keywords): Fix \\<_ typo
4938         (bug#18622).  Reported by Arni Magnusson <arnima@hafro.is>.
4939         * progmodes/prolog.el (prolog-electric--underscore): Same.
4941 2014-10-12  Michael Albinus  <michael.albinus@gmx.de>
4943         * net/tramp-sh.el (tramp-get-remote-id): Check also for "gid".
4945 2014-10-11  Jan Djärv  <jan.h.d@swipnet.se>
4947         * cus-start.el (all): Add missing ns and boolean to
4948         ns-use-fullscreen-animation.
4950 2014-10-11  Leo Liu  <sdl.web@gmail.com>
4952         * progmodes/cfengine.el (cfengine3-defuns, cfengine3-vartypes):
4953         Use strings.
4954         (cfengine3-create-imenu-index): New function.
4955         (cfengine3-mode): Use it for `imenu-create-index-function'.
4956         (cfengine-auto-mode): Improve and prefer cfengine3-mode when
4957         buffer is empty.
4959 2014-10-11  Jan Djärv  <jan.h.d@swipnet.se>
4961         * cus-start.el (all): Add ns-use-fullscreen-animation.
4963 2014-10-11  Glenn Morris  <rgm@gnu.org>
4965         * calendar/diary-lib.el (diary-display-function):
4966         Drop support for deprecated nil and list forms.
4967         (diary-list-entries): Update for the above.
4968         * calendar/cal-x.el (calendar-dedicate-diary): Simplify accordingly.
4970 2014-10-10  Leo Liu  <sdl.web@gmail.com>
4972         * window.el (temp-buffer-window-show): Make BUFFER a required arg.
4973         (Bug#18656)
4975 2014-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4977         * select.el (gui-selection-exists-p-alist): New method.
4978         * menu-bar.el (menu-bar-edit-menu, clipboard-yank):
4979         * simple.el (deactivate-mark): Use it.
4980         * term/x-win.el (gui-selection-exists-p):
4981         * term/w32-win.el (gui-selection-exists-p):
4982         * term/pc-win.el (gui-selection-exists-p):
4983         * term/ns-win.el (gui-selection-exists-p): Provide a backend instance.
4985 2014-10-10  Glenn Morris  <rgm@gnu.org>
4987         * info.el (Info-fontify-maximum-menu-size): Bump to 400k.  (Bug#16227)
4988         Fix :type.  Allow t to mean no limit.
4989         (Info-fontify-node): Handle Info-fontify-maximum-menu-size = t.
4991 2014-10-09  Glenn Morris  <rgm@gnu.org>
4993         * frame.el (display-monitor-attributes-list): Doc tweaks.
4995 2014-10-09  Eli Zaretskii  <eliz@gnu.org>
4997         * faces.el (display-grayscale-p): Mention in the doc string that
4998         the argument can be either a display name or a frame.
5000         * frame.el (display-pixel-height, display-pixel-width)
5001         (display-mm-height, display-mm-width, display-backing-store)
5002         (display-save-under, display-planes, display-color-cells)
5003         (display-visual-class, display-monitor-attributes-list)
5004         (display-screens): Mention in the doc string that the argument can
5005         be either a display name or a frame.  Improve the docs of the
5006         monitor attributes.  (Bug#18636)
5008 2014-10-09  Martin Rudalics  <rudalics@gmx.at>
5010         * term.el (term-window-width): Subtract 1 from the width when
5011         any fringe has zero width, not just the right fringe.  (Bug#18601)
5013 2014-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5015         * frame.el (make-frame): Use t rather than nil for `w' (bug#18653).
5017 2014-10-08  Leo Liu  <sdl.web@gmail.com>
5019         * emacs-lisp/cl-extra.el (cl-fresh-line): New function.
5021 2014-10-08  Glenn Morris  <rgm@gnu.org>
5023         * calendar/cal-x.el (calendar-dedicate-diary):
5024         Drop support for recently deleted aliases.
5026 2014-10-08  Leo Liu  <sdl.web@gmail.com>
5028         * progmodes/cfengine.el (cfengine3-make-syntax-cache):
5029         Always return a syntax.  Replace call-process-shell-command with
5030         process-file.  Ensure cfengine-mode-syntax-functions-regex is
5031         always set.  Ensure cache when cfengine-cf-promises fails.
5032         (Bug#18620)
5034 2014-10-07  Glenn Morris  <rgm@gnu.org>
5036         * font-lock.el (font-lock-fontify-buffer): Fix interactive-only markup.
5038 2014-10-07  Wilson Snyder  <wsnyder@wsnyder.org>
5040         Sync with upstream verilog-mode revision c075a492.
5041         * progmodes/verilog-mode.el (verilog-mode-version): Bump.
5042         (verilog-menu): Add AUTOINSERTLAST.
5043         (verilog-no-indent-begin-re): When `verilog-indent-begin-after-if'
5044         is nil, fix indenting initial/final to match always statements, bug825.
5045         Reported by Tim Clapp.
5046         (verilog-extended-complete-re): Fix indentation of DPI-C imports,
5047         bug557.  Reported by ZeDong Mao and Jason Forkey.
5048         (verilog-read-decls): Fix parsing typed interfaces.
5049         Fix AUTOINOUTMODPORT missing types.  Reported by Stephan Bourduas.
5050         (verilog-auto-arg-ports): Fix verilog-auto-arg-format single.
5051         (verilog-auto-output-every): Add regexp to AUTOOUTPUTEVERY, bug793.
5052         Reported by Pierre-David Pfister.
5053         (verilog-auto-insert-lisp): Doc fix.
5054         (verilog-auto-insert-last, verilog-auto): Add AUTOINSERTLAST to
5055         allow post-AUTO user fixups, bug826.  Reported by Dennis Muhlestein.
5056         (verilog-sk-ovm-class, verilog-sk-uvm-object)
5057         (verilog-sk-uvm-component): Fix missing string keyword in class
5058         skeletons, bug824.  Reported by eldad faruhi.
5060 2014-10-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5062         * term/w32-win.el: Move all code from 32-common-fns.el here.
5063         (gui-select-text, gui-selection-value): Use w32 handlers in the w32
5064         console as well (bug#18629).
5065         * w32-common-fns.el: Remove.
5066         * loadup.el: Don't load w32-common-fns.el.
5067         * w32-fns.elc: Don't require w32-common-fns.
5069         * icomplete.el: Move Iswitchb autoload here.  Much simpler.
5070         * obsolete/iswitchb.el (iswitchb-mode): Use normal autoload cookie.
5071         Remove redundant obsolescence thingy.
5072         * loadup.el: Don't load obsolete/loaddefs.el.
5073         * Makefile.in (obsolete-autoloads): Remove.
5074         (AUTOGENEL): Remove obsolete/loaddefs.el.
5076 2014-10-06  Glenn Morris  <rgm@gnu.org>
5078         * Makefile.in (obsolete-autoloads): Write to a separate file,
5079         to workaround autoloads bug.  (Bug#17407)
5080         (AUTOGENEL): Add obsolete/loaddefs.el.
5081         * loadup.el: Load obsolete/loaddefs.el if present.
5082         * subr.el (do-after-load-evaluation):
5083         Don't warn about obsolete/loaddefs.el.
5085         * menu-bar.el (menu-bar-games-menu): Remove landmark.
5086         It has zero relationship to a game.
5088 2014-10-06  Leo Liu  <sdl.web@gmail.com>
5090         * imenu.el (imenu): Re-write for clarity.
5092 2014-10-06  Glenn Morris  <rgm@gnu.org>
5094         Remove calendar code obsolete since at least version 23.1.
5095         * calendar/cal-bahai.el (calendar-absolute-from-bahai)
5096         (calendar-print-bahai-date, calendar-bahai-prompt-for-date)
5097         (calendar-goto-bahai-date, list-bahai-diary-entries)
5098         (mark-bahai-calendar-date-pattern, mark-bahai-diary-entries)
5099         (insert-bahai-diary-entry, insert-monthly-bahai-diary-entry)
5100         (insert-yearly-bahai-diary-entry):
5101         * calendar/cal-china.el (chinese-calendar-time-zone)
5102         (chinese-calendar-location-name)
5103         (chinese-calendar-daylight-time-offset)
5104         (chinese-calendar-standard-time-zone-name)
5105         (chinese-calendar-daylight-time-zone-name)
5106         (chinese-calendar-daylight-savings-starts)
5107         (chinese-calendar-daylight-savings-ends)
5108         (chinese-calendar-daylight-savings-starts-time)
5109         (chinese-calendar-daylight-savings-ends-time)
5110         (chinese-calendar-celestial-stem)
5111         (chinese-calendar-terrestrial-branch)
5112         (calendar-absolute-from-chinese, calendar-print-chinese-date)
5113         (calendar-goto-chinese-date):
5114         * calendar/cal-coptic.el (calendar-absolute-from-coptic)
5115         (calendar-print-coptic-date, coptic-prompt-for-date)
5116         (calendar-goto-coptic-date, calendar-absolute-from-ethiopic)
5117         (calendar-print-ethiopic-date, calendar-goto-ethiopic-date):
5118         * calendar/cal-french.el (calendar-absolute-from-french)
5119         (calendar-print-french-date, calendar-goto-french-date):
5120         * calendar/cal-hebrew.el (diary-sabbath-candles-minutes)
5121         (calendar-absolute-from-hebrew, calendar-print-hebrew-date)
5122         (hebrew-calendar-yahrzeit, calendar-goto-hebrew-date)
5123         (holiday-rosh-hashanah-etc, holiday-hanukkah)
5124         (holiday-passover-etc, holiday-tisha-b-av-etc)
5125         (list-hebrew-diary-entries, mark-hebrew-calendar-date-pattern)
5126         (mark-hebrew-diary-entries, insert-hebrew-diary-entry)
5127         (insert-monthly-hebrew-diary-entry)
5128         (insert-yearly-hebrew-diary-entry, list-yahrzeit-dates)
5129         (diary-omer, diary-yahrzeit, diary-rosh-hodesh, diary-parasha)
5130         (diary-sabbath-candles):
5131         * calendar/cal-islam.el (calendar-absolute-from-islamic)
5132         (calendar-print-islamic-date, calendar-goto-islamic-date)
5133         (list-islamic-diary-entries, mark-islamic-calendar-date-pattern)
5134         (mark-islamic-diary-entries, insert-islamic-diary-entry)
5135         (insert-monthly-islamic-diary-entry)
5136         (insert-yearly-islamic-diary-entry):
5137         * calendar/cal-iso.el (calendar-absolute-from-iso)
5138         (calendar-print-iso-date, calendar-iso-read-args)
5139         (calendar-goto-iso-date, calendar-goto-iso-week):
5140         * calendar/cal-julian.el (calendar-absolute-from-julian)
5141         (calendar-print-julian-date, calendar-goto-julian-date)
5142         (calendar-absolute-from-astro, calendar-print-astro-day-number)
5143         (calendar-goto-astro-day-number):
5144         * calendar/cal-mayan.el (calendar-print-mayan-date)
5145         (calendar-next-haab-date, calendar-previous-haab-date)
5146         (calendar-next-tzolkin-date, calendar-previous-tzolkin-date)
5147         (calendar-next-calendar-round-date)
5148         (calendar-previous-calendar-round-date)
5149         (calendar-absolute-from-mayan-long-count)
5150         (calendar-goto-mayan-long-count-date):
5151         * calendar/cal-move.el (scroll-calendar-left)
5152         (scroll-calendar-right, scroll-calendar-left-three-months)
5153         (scroll-calendar-right-three-months):
5154         * calendar/cal-persia.el (calendar-absolute-from-persian)
5155         (calendar-print-persian-date, persian-prompt-for-date)
5156         (calendar-goto-persian-date):
5157         * calendar/cal-x.el (calendar-after-frame-setup-hooks):
5158         * calendar/calendar.el (view-diary-entries-initially)
5159         (mark-diary-entries-in-calendar, calendar-today-face)
5160         (diary-face, holiday-face, view-calendar-holidays-initially)
5161         (mark-holidays-in-calendar, initial-calendar-window-hook)
5162         (today-visible-calendar-hook, today-invisible-calendar-hook)
5163         (hebrew-diary-entry-symbol, islamic-diary-entry-symbol)
5164         (bahai-diary-entry-symbol, american-date-diary-pattern)
5165         (european-date-diary-pattern, european-calendar-display-form)
5166         (american-calendar-display-form, holidays-in-diary-buffer)
5167         (all-hebrew-calendar-holidays, all-christian-calendar-holidays)
5168         (all-islamic-calendar-holidays, all-bahai-calendar-holidays)
5169         (fancy-diary-buffer, increment-calendar-month)
5170         (extract-calendar-month, extract-calendar-day)
5171         (extract-calendar-year, exit-calendar, calendar-date-is-legal-p)
5172         (mark-visible-calendar-date, calendar-version):
5173         * calendar/diary-lib.el (diary-button-face, sexp-diary-entry-symbol)
5174         (diary-display-hook, list-diary-entries-hook)
5175         (mark-diary-entries-hook, nongregorian-diary-listing-hook)
5176         (nongregorian-diary-marking-hook, print-diary-entries-hook)
5177         (abbreviated-calendar-year, number-of-diary-entries)
5178         (view-other-diary-entries, add-to-diary-list)
5179         (include-other-diary-files, simple-diary-display)
5180         (fancy-diary-display, print-diary-entries, mark-diary-entries)
5181         (mark-sexp-diary-entries, mark-included-diary-files)
5182         (mark-calendar-days-named, mark-calendar-month)
5183         (mark-calendar-date-pattern, sort-diary-entries)
5184         (list-sexp-diary-entries, make-diary-entry, insert-diary-entry)
5185         (insert-weekly-diary-entry, insert-monthly-diary-entry)
5186         (insert-yearly-diary-entry, insert-anniversary-diary-entry)
5187         (insert-block-diary-entry, insert-cyclic-diary-entry)
5188         (fancy-diary-font-lock-keywords, fancy-diary-display-mode):
5189         * calendar/holidays.el (general-holidays, oriental-holidays)
5190         (local-holidays, other-holidays, hebrew-holidays)
5191         (christian-holidays, islamic-holidays, bahai-holidays)
5192         (solar-holidays, list-calendar-holidays)
5193         (check-calendar-holidays, mark-calendar-holidays)
5194         (filter-visible-calendar-holidays):
5195         * calendar/lunar.el (calendar-phases-of-moon, phases-of-moon)
5196         (diary-phases-of-moon): Remove obsolete aliases.
5197         * calendar/cal-menu.el (cal-menu-load-hook): Remove obsolete hook.
5198         * calendar/cal-x.el (calendar-one-frame-setup)
5199         (calendar-only-one-frame-setup, calendar-two-frame-setup):
5200         Remove obsolete functions.
5201         (cal-x-load-hook): Remove obsolete hook.
5202         * calendar/calendar.el (european-calendar-style):
5203         Remove obsolete variable.
5204         (calendar-date-style): No longer consult european-calendar-style.
5205         * calendar/calendar.el (european-calendar, american-calendar):
5206         Remove obsolete commands.
5207         * calendar/calendar.el (calendar-for-loop): Remove obsolete macro.
5208         * calendar/diary-lib.el (diary-face): Remove obsolete variable.
5209         (diary-font-lock-date-forms, diary-fancy-font-lock-keywords):
5210         Use the face `diary' instead of the variable `diary-face'.
5211         * calendar/holidays.el (hebrew-holidays-1, hebrew-holidays-2)
5212         (hebrew-holidays-3, hebrew-holidays-4): Remove obsolete variables.
5213         * calendar/icalendar.el (icalendar--date-style): Remove function.
5214         Replace all uses with calendar-date-style.
5215         * textmodes/remember.el (calendar-date-style): Declare.
5216         (remember-diary-convert-entry):
5217         No longer consult european-calendar-style.
5219 2014-10-05  Leo Liu  <sdl.web@gmail.com>
5221         * imenu.el (imenu-default-goto-function): Fix typo.
5223 2014-10-04  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
5225         * net/ntlm.el (ntlm-build-auth-request):
5226         Add NTLM2 Session support.  (Bug#15603)
5228 2014-10-04  Glenn Morris  <rgm@gnu.org>
5230         * apropos.el (apropos-symbols-internal):
5231         Avoid error with non-symbol properties.  (Bug#18337#16)
5233         * startup.el (command-line):
5234         Handle altered user-emacs-directory in load-path warning.  (Bug#18512)
5236 2014-10-04  Martin Rudalics  <rudalics@gmx.at>
5238         * window.el (window-full-height-p): Make it behave correctly for
5239         minibuffer window.
5240         (window-current-scroll-bars): Fix code.
5241         (fit-frame-to-buffer): Use window-scroll-bar-height instead of
5242         window-scroll-bars.
5243         * frame.el (frame-current-scroll-bars): Fix doc-string.
5244         * scroll-bar.el (toggle-horizontal-scroll-bar): New command.
5246 2014-10-04  Mark Oteiza  <mvoteiza@udel.edu>  (tiny change)
5248         * files.el (auto-mode-alist): Use sh-mode for .zsh files.  (Bug#18488)
5250 2014-10-04  Glenn Morris  <rgm@gnu.org>
5252         * frame.el (frame-monitor-attributes)
5253         (display-monitor-attributes-list): Doc fixes.
5255 2014-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5257         Merge trivially safe differences from standalone CC-mode.
5258         * progmodes/cc-mode.el (c-initialize-cc-mode): Don't quote a symbol
5259         just to then pass it to `symbol-value'.
5260         (prog-mode): Provide fallback definition, if needed.
5261         * progmodes/cc-langs.el: Always load `cl'.  Don't load `cl-lib'.
5262         Remove "cl-" prefix accordingly.
5263         * progmodes/cc-fonts.el (c-font-lock-invalid-string): Use integerp or
5264         characterp depending on the type of characters.
5265         (c-font-lock-enum-tail): Remove unused var `start'.
5266         * progmodes/cc-engine.el: Load CL at compile-time.
5267         (c-declare-lang-variables): Use mapcan.
5268         (c-append-to-state-cache): Remove unused var `ce+1'.
5269         (c-parse-state-state): Make buffer-local.
5270         (c-ssb-lit-begin): Remove unused var `pps-end-pos'.
5271         (c-just-after-func-arglist-p): Remove unused var `end'.
5272         * progmodes/cc-defs.el: Load cc-fix if delete-dups is undefined.
5273         (c-<-as-paren-syntax, c->-as-paren-syntax): Move definition earlier.
5274         (c-make-keywords-re): Use delete-dups.
5275         (c-get-current-file): Avoid file-name-base.
5276         * progmodes/cc-cmds.el (c-electric-lt-gt): Remove unused var
5277         `close-paren-inserted'.
5278         * progmodes/cc-awk.el (c-forward-sws): Remove unused declaration.
5280         * progmodes/python.el: Avoid building unneeded markers.
5281         (python-font-lock-keywords, python-indent-dedent-line)
5282         (python-fill-paren, python-shell-completion-complete-or-indent):
5283         Prefer point over point-marker.
5284         (inferior-python-mode): Remove redundant completion settings.
5286 2014-10-03  Dmitry Gutov  <dgutov@yandex.ru>
5288         * vc/vc-svn.el (vc-svn-ignore-completion-table): Implement.
5289         (vc-svn-ignore): Use it.  (Bug#18619)
5291 2014-10-03  Martin Rudalics  <rudalics@gmx.at>
5293         * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
5294         In doc-string mention need to set `frame-resize-pixelwise'.
5296 2014-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5298         * vc/vc-svn.el (vc-svn-after-dir-status): Fix the non-remote regexp,
5299         similarly to Rogers's 2010-06-16 change for the remote case
5300         (bug#18605).
5302 2014-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5304         New gui-selection-value consolidating x-selection-value.
5305         * select.el (gui-selection-value-alist): New method.
5306         (gui-selection-value): New function.
5307         (x-selection-value): Make it an obsolete alias.
5308         * simple.el (interprogram-paste-function): Default to
5309         gui-selection-value.
5310         * w32-common-fns.el (w32-get-selection-value): Simplify.
5311         (x-selection-value): Remove alias.
5312         (interprogram-paste-function): Don't set.
5313         (gui-selection-value): Define for w32.
5314         * term/x-win.el (gui-selection-value): Define for x.
5315         (x--selection-value): Rename from x--selection-value.
5316         (interprogram-paste-function): Don't set.
5317         * term/pc-win.el (w16-get-selection-value): Simplify.
5318         (msdos-initialize-window-system): Don't set
5319         interprogram-paste-function.
5320         (gui-selection-value): Define for pc.
5321         * term/ns-win.el (x-selection-value): Remove.
5322         (gui-selection-value): Define for ns, instead.
5323         * term/common-win.el (x-setup-function-keys): Don't set
5324         interprogram-paste-function.
5325         * obsolete/mouse-sel.el (mouse-sel-get-selection-function):
5326         Use gui-selection-value.
5328 2014-10-02  David Raynes  <rayners@gmail.com>  (tiny change)
5330         * term/ns-win.el: Add functions to ns frame, not x frame (bug#18614).
5332 2014-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5334         * obsolete/lucid.el (read-number): Remove, redundant.
5335         * obsolete/cl-compat.el (cl-floor, cl-ceiling, cl-round, cl-truncate):
5336         Remove, broken.
5338 2014-10-02  Glenn Morris  <rgm@gnu.org>
5340         * emacs-lisp/package.el (package-import-keyring):
5341         Create gnupg directory private.  (Bug#17625#155)
5343 2014-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5345         * progmodes/python.el (python-shell-completion-get-completions):
5346         Use python-shell--prompt-calculated-input-regexp from the
5347         process buffer (bug#18582).
5348         Don't assume that `line' comes from the process buffer.
5350 2014-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5352         * frame.el: Use lexical-binding (bug#18598).
5353         (make-frame): Use t rather than nil for tty's window-system.
5354         * startup.el (command-line): Use gui-method.
5356         Consolidate management/ownership of selections.
5357         * select.el (gui-get-selection-alist): New method.
5358         (gui-get-selection): Use it.  Rename from x-get-selection.
5359         (x-get-selection): Define as obsolete alias.
5360         (x-get-clipboard): Mark obsolete.
5361         (gui-get-primary-selection): New function.
5362         (x-get-selection-value): Mark obsolete.
5363         (gui-own-selection-alist, gui-disown-selection-alist)
5364         (gui-selection-owner-p-alist): New methods.
5365         (gui-set-selection): Use them.  Rename from x-set-selection.
5366         (x-set-selection): Define as obsolete alias.
5367         (gui--valid-simple-selection-p): Rename from
5368         x-valid-simple-selection-p.
5369         * w32-common-fns.el (gui-own-selection, gui-disown-selection)
5370         (gui-selection-owner-p, gui-get-selection): Define for w32.
5371         (w32-get-selection-value): Rename from x-get-selection-value.
5372         Use the new gui-last-selected-text.
5373         * term/x-win.el (x-get-selection-value): Remove.
5374         (x-clipboard-yank): Declare obsolete.
5375         (gui-own-selection, gui-disown-selection, gui-get-selection)
5376         (gui-selection-owner-p): Define for x.
5377         * term/w32-win.el (w32-win-suspend-error): Rename from
5378         x-win-suspend-error.
5379         * term/pc-win.el (w16-get-selection-value): Rename from
5380         x-get-selection-value.
5381         (w16-selection-owner-p): Rename from x-selection-owner-p.
5382         (gui-own-selection, gui-disown-selection, gui-get-selection)
5383         (gui-selection-owner-p): Define for pc.
5384         (w16--select-text): New function.
5385         * term/ns-win.el (gui-own-selection, gui-disown-selection)
5386         (gui-get-selection, gui-selection-owner-p): Define for ns.
5387         * term.el (term-mouse-paste):
5388         * mouse.el (mouse-yank-primary): Use gui-get-primary-selection.
5390 2014-10-02  H. Dieter Wilhelm  <dieter@duenenhof-wilhelm.de>
5392         * calc/calc-help.el (calc-describe-thing): Quote strings
5393         which could look like regexps.
5395 2014-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5397         Consolidate x-select-text.
5398         * frame.el (gui-method, gui-method-define, gui-method-declare)
5399         (gui-call): New macros.
5400         (gui-method--name): New function.
5401         (frame-creation-function-alist): Use gui-method-declare.
5402         (make-frame): Use gui-method.
5403         * select.el (gui-select-enable-clipboard): Rename from
5404         x-select-enable-clipboard and move here.
5405         (x-select-enable-clipboard): Define as obsolete alias.
5406         (gui-last-selected-text): New var, to replace x-last-selected-text.
5407         (gui-select-text): New GUI method.
5408         (gui-select-text): New function.
5409         (x-select-text): Define as obsolete alias.
5410         * term/common-win.el (x-select-enable-clipboard, x-select-text):
5411         Move to select.el.
5412         * simple.el (interprogram-cut-function): Change default to
5413         x-select-text.
5414         (interprogram-paste-function): Change default to `ignore'.
5415         * w32-common-fns.el (interprogram-cut-function): Don't modify.
5416         * term/x-win.el (interprogram-cut-function): Don't modify.
5417         (gui-select-text): Add method for x.
5418         * term/w32-win.el (gui-select-text): Add method for w32.
5419         * term/pc-win.el (x-last-selected-text): Remove, use
5420         gui-last-selected-text instead.
5421         (msdos-initialize-window-system): Don't set interprogram-cut-function.
5422         (gui-select-text): Add method for pc.
5423         * term/ns-win.el (ns-last-selected-text): Remove, use
5424         gui-last-selected-text instead.
5425         (gui-select-text): Add method for ns.
5426         (x-setup-function-keys): Don't change interprogram-cut-function.
5427         * loadup.el ("startup"): Load after "frame".
5428         * subr.el (package--builtin-versions, package--description-file):
5429         Move from startup.el.
5430         * startup.el (package--builtin-versions, package--description-file):
5431         Move to subr.el.
5432         (handle-args-function-alist, window-system-initialization-alist):
5433         Use gui-method-declare.
5434         (command-line): Use gui-method.
5436 2014-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5438         * subr.el (alist-get): New accessor.
5439         * emacs-lisp/gv.el (alist-get): Provide expander.
5440         * winner.el (winner-remember):
5441         * tempo.el (tempo-use-tag-list):
5442         * progmodes/gud.el (minor-mode-map-alist):
5443         * international/mule-cmds.el (define-char-code-property):
5444         * frameset.el (frameset-filter-params):
5445         * files.el (dir-locals-set-class-variables):
5446         * register.el (get-register, set-register):
5447         * calc/calc-yank.el (calc-set-register): Use it.
5448         * ps-print.el (ps-get, ps-put, ps-del): Mark as obsolete.
5449         * tooltip.el (tooltip-set-param): Mark as obsolete.
5450         (tooltip-show): Use alist-get instead.
5451         * ses.el (ses--alist-get): Remove.  Use alist-get instead.
5453 2014-10-01  Ulf Jasper  <ulf.jasper@web.de>
5455         * net/newst-backend.el: Remove Time-stamp.  Rename variable
5456         `newsticker--download-logos' to `newsticker-download-logos' and
5457         make it customizable.
5458         (newsticker--sentinel-work): Move xml-workarounds to function
5459         `newsticker--do-xml-workarounds', call unless libxml-parser is
5460         used.  Allow single quote in regexp for encoding.
5461         Use libxml-parser if available, else fall back to `xml-parse-region'.
5462         Take care of possibly missing namespace prefixes (like "RDF"
5463         instead of "rdf:RDF") when checking xml nodes and attributes (as
5464         libxml correctly removes the prefixes).  Always use Atom 1.0 as
5465         fallback feed type.  Rename `newsticker--download-logos' to
5466         `newsticker-download-logos'
5467         (newsticker--unxml, newsticker--unxml-node)
5468         (newsticker--unxml-attribute): New.
5469         (newsticker--parse-atom-1.0): Call `unxml' in case that embedded
5470         HTML code has become part of the xml parse tree.
5471         (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0): Take care
5472         of possibly missing namespace prefixes.
5473         (newsticker--parse-generic-items): Code formatting.  Typo.
5474         (newsticker--images-dir): Add trailing slash.
5475         (newsticker--image-get): Fix error message.
5477         * net/newst-plainview.el: Remove Time-stamp.
5479         * net/newst-reader.el: Remove Time-stamp.
5480         (newsticker-download-logos): Rename variable
5481         `newsticker--download-logos' to `newsticker-download-logos' and
5482         make it customizable.
5483         (newsticker--print-extra-elements): Add optional parameter
5484         'htmlish for using html markup.  Amend list of ignored elements.
5485         (newsticker--do-print-extra-element): Add parameter 'htmlish for
5486         using html markup.
5488         * net/newst-ticker.el: Remove Time-stamp.
5490         * net/newst-treeview.el (newsticker--treeview-item-show): Use html
5491         for formatting extra elements.
5493         * net/newsticker.el:  Remove Time-stamp, Version.
5494         (newsticker-version): Make obsolete.
5496 2014-09-30  Leonardo Nobrega  <leonobr@gmail.com>  (tiny change)
5498         * progmodes/python.el (python-fill-paren): Don't inf-loop at EOB
5499         (bug#18462).
5501 2014-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5503         * emacs-lisp/package.el (package-check-signature): Default to nil if
5504         GPG is not available.
5505         (package-refresh-contents): Don't mess with the keyring if we won't
5506         check the signatures anyway.
5508 2014-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5510         * ses.el (ses--row, ses--col): New dyn-scoped vars, to replace row&col.
5511         (ses-center, ses-center-span): Use them.
5512         (ses-print-cell): Bind them while calling the printer.
5513         (row, col, maxrow, maxcol): Don't declare as dynamically scoped.
5514         (ses-dorange): Revert last change.
5515         (ses-calculate-cell): Don't bind row&col dynamically while evaluating
5516         the formula.
5517         (ses-set-cell): Avoid `eval'.
5518         (ses--time-check): Rename it from ses-time-check and turn it into
5519         a macro.
5521         * ses.el (ses-setup): Don't assume modifying the iteration var of
5522         dotimes affects the iteration (bug#18191).
5524 2014-09-30  Vincent Belaïche  <vincentb1@users.sourceforge.net>
5526         * ses.el (ses-calculate-cell): Bind row and col dynamically to
5527         their values with 'cl-progv'.
5528         (ses-dorange): Bind row, col, maxrow and maxcol dynamically to
5529         their values with 'cl-progv', also use non-interned symbols for
5530         row, minrow, maxrow, mincol and maxcol.
5531         (maxrow maxcol): New defvar, to make the compiler happy.
5533 2014-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5535         * minibuffer.el (completion-at-point): Emit warning for ill-behaved
5536         completion functions.
5538 2014-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5540         * ses.el (ses--letref): Quote value before it gets re-evaluated.
5542 2014-09-28  Thien-Thi Nguyen  <ttn@gnu.org>
5544         Font-lock `cl-flet*', too.
5545         * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2):
5546         Add "flet*" to intermediate var `cl-lib-kw'.
5548 2014-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5550         * epg-config.el (epg-gpg-program): Use the plain program names rather
5551         than their absolute file name.
5553         * subr.el (track-mouse): New macro.
5554         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
5555         Remove track-mouse case.
5556         * emacs-lisp/bytecomp.el (byte-compile-track-mouse): Remove.
5558 2014-09-27  Leo Liu  <sdl.web@gmail.com>
5560         * progmodes/elisp-mode.el (elisp--eldoc-last-data): Use defvar.
5562         * emacs-lisp/eldoc.el (eldoc-mode): Fix thinko.
5564 2014-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5566         * emacs-lisp/pcase.el (pcase--split-match, pcase--app-subst-match):
5567         Handle the case where `match' is :pcase--succeed or :pcase--fail
5568         (bug#18554).
5570         Introduce global-eldoc-mode.  Move Elisp-specific code to elisp-mode.el.
5571         * emacs-lisp/eldoc.el (global-eldoc-mode): New minor mode.
5572         (eldoc-schedule-timer): Obey it.
5573         (eldoc-documentation-function): Default to nil.
5574         (eldoc-mode): Don't enable if eldoc-documentation-function is not set.
5575         (eldoc-documentation-function-default, eldoc-get-fnsym-args-string)
5576         (eldoc-highlight-function-argument, eldoc-get-var-docstring)
5577         (eldoc-last-data-store, eldoc-docstring-first-line)
5578         (eldoc-docstring-format-sym-doc, eldoc-fnsym-in-current-sexp)
5579         (eldoc-beginning-of-sexp, eldoc-current-symbol)
5580         (eldoc-function-argstring): Move to elisp-mode.el.
5581         (eldoc-symbol-function): Remove, unused.
5582         * progmodes/elisp-mode.el: New file.  Rename all "eldoc-*" to "elisp--*".
5583         (elisp-completion-at-point): Rename from lisp-completion-at-point.
5584         (elisp--preceding-sexp): Rename from preceding-sexp.
5585         * loadup.el: Load new file progmodes/elisp-mode.
5586         * ielm.el (inferior-emacs-lisp-mode): Set eldoc-documentation-function.
5587         * emacs-lisp/lisp.el (lisp--local-variables-1, lisp--local-variables)
5588         (lisp--local-variables-completion-table, lisp--expect-function-p)
5589         (lisp--form-quoted-p, lisp--company-doc-buffer)
5590         (lisp--company-doc-string, lisp--company-location)
5591         (lisp-completion-at-point): Move to elisp-mode.el.
5592         * emacs-lisp/lisp-mode.el (lisp--mode-syntax-table): New syntax-table,
5593         extracted from emacs-lisp-mode-syntax-table.
5594         (emacs-lisp-mode-abbrev-table, emacs-lisp-mode-syntax-table): Move to
5595         elisp-mode.el.
5596         (lisp-imenu-generic-expression): Add comments to document what comes
5597         from which Lisp dialect.
5598         (emacs-lisp-mode-map, emacs-lisp-byte-compile)
5599         (emacs-lisp-byte-compile-and-load, emacs-lisp-mode-hook)
5600         (emacs-lisp-mode, emacs-list-byte-code-comment-re)
5601         (emacs-lisp-byte-code-comment)
5602         (emacs-lisp-byte-code-syntax-propertize, emacs-lisp-byte-code-mode)
5603         (lisp-interaction-mode-map, lisp-interaction-mode)
5604         (eval-print-last-sexp, last-sexp-setup-props)
5605         (last-sexp-toggle-display, prin1-char, preceding-sexp)
5606         (eval-last-sexp-1, eval-last-sexp-print-value)
5607         (eval-last-sexp-fake-value, eval-sexp-add-defvars, eval-last-sexp)
5608         (eval-defun-1, eval-defun-2, eval-defun): Move to elisp-mode.el.
5610 2014-09-26  Paul Eggert  <eggert@cs.ucla.edu>
5612         * progmodes/grep.el (grep-regexp-alist): Use more-accurate regexp.
5613         Do not match file names that end in '/', as they cannot be 'grep'
5614         hits nowadays.  This prevents confusion when 'grep -r' reports a
5615         match in a file whose basename is ':12345:'.  Conversely, do not
5616         require exactly the same sequence of spaces and tabs after both
5617         colons, and allow spaces or tabs before the second colon, as per
5618         the POSIX spec for 'grep' output.
5620 2014-09-26  Leo Liu  <sdl.web@gmail.com>
5622         Add cl-parse-integer based on parse-integer (Bug#18557)
5623         * calendar/parse-time.el (parse-time-digits): Remove.
5624         (digit-char-p, parse-integer) Moved to cl-lib.el.
5625         (parse-time-tokenize, parse-time-rules, parse-time-string):
5626         Use cl-parse-integer.
5628         * emacs-lisp/cl-extra.el (cl-parse-integer): New function.
5630         * emacs-lisp/cl-lib.el (cl-digit-char-table): New var.
5631         (cl-digit-char-p): New function.
5633 2014-09-25  Juri Linkov  <juri@jurta.org>
5635         * vc/add-log.el (change-log-next-buffer): Don't create an empty
5636         buffer "ChangeLog" when the current buffer doesn't match ChangeLog.[0-9].
5637         Return the current buffer if no files match the default pattern
5638         ChangeLog.[0-9].  Signal "end of multi" when file is nil.  (Bug#18547)
5640 2014-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
5642         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Don't modify
5643         the global vc-handled-backends (bug#18535).
5645 2014-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5647         * find-cmd.el (find-cmd): Use grep's `find-program' (bug#18518).
5648         Suggested by <lompik@voila.fr>.
5650 2014-09-24  Ulf Jasper  <ulf.jasper@web.de>
5652         * net/newst-treeview.el (newsticker--treeview-do-get-node-by-id):
5653         Rename from `newsticker--treeview-do-get-node'.
5654         (newsticker--treeview-get-node-by-id):
5655         Rename from `newsticker--treeview-get-node'.
5656         (newsticker--treeview-buffer-init)
5657         (newsticker--treeview-buffer-init): Disable buffer undo.
5658         (newsticker--treeview-unfold-node): Adapt to modified
5659         `newsticker--group-find-parent-group'.
5660         (newsticker--group-do-find-group):
5661         Rename from `newsticker--group-do-find-group-for-feed'.
5662         Now works for both, groups and feeds.
5663         (newsticker--group-find-parent-group):
5664         Rename from `newsticker--group-find-group-for-feed'.
5665         Now works for both, groups and feeds.
5666         (newsticker--group-do-get-parent-group)
5667         (newsticker--group-get-parent-group): Remove.
5668         (newsticker-group-add-group): Change interactive prompts.
5669         (newsticker-group-add-group): Finally jump to added group.
5670         (newsticker-group-delete-group): Finally jump to current feed.
5671         (newsticker--group-do-rename-group, newsticker-group-rename-group)
5672         (newsticker--get-group-names, newsticker--group-names): New.
5673         (newsticker-group-move-feed): Finally jump to moved feed.
5674         (newsticker-group-shift-feed-down, newsticker-group-shift-feed-up)
5675         (newsticker-group-shift-group-down)
5676         (newsticker-group-shift-group-up, newsticker--group-shift): New.
5677         (newsticker-treeview-mode-map): New keybindings for new shift commands.
5679         * net/newst-backend.el (newsticker--item-list)
5680         (newsticker--item-position, newsticker--prev-message)
5681         (newsticker--scrollable-text): Move to newst-ticker.el.
5683         * net/newst-ticker.el (newsticker--item-list)
5684         (newsticker--item-position, newsticker--prev-message)
5685         (newsticker--scrollable-text): Move from newst-backend.el.
5687 2014-09-22  Kan-Ru Chen  <kanru@kanru.info>
5689         * window.el (fit-window-to-buffer): When counting buffer width,
5690         count the whole visible buffer.  Correctly convert the body-height
5691         to pixel size for window-text-pixel-size (Bug#18498).
5693 2014-09-22  Sam Steingold  <sds@gnu.org>
5695         * progmodes/sql.el (sql-product-alist): Improve the Vertica entry.
5696         (sql-execute): Use `special-mode'.
5698 2014-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5700         Add pcase-defmacro, as well as `quote' and `app' patterns.
5701         * loadup.el: Increase max-lisp-eval-depth when macroexpanding macroexp.
5702         * emacs-lisp/pcase.el: Allow (F . ARGS) in `app' patterns.
5703         (pcase--funcall, pcase--eval): New functions.
5704         (pcase--u1): Use them for guard, pred, let, and app.
5705         (\`): Use the new feature to generate better code for vector patterns.
5706         * emacs-lisp/pcase.el: Use pcase-defmacro to handle backquote.
5707         (pcase--upat): Remove.
5708         (pcase--macroexpand): Don't hardcode handling of `.
5709         (pcase--split-consp, pcase--split-vector): Remove.
5710         (pcase--split-equal): Disregard ` since it's expanded away.
5711         (pcase--split-member): Optimize for quote rather than for `.
5712         (pcase--split-pred): Optimize for quote rather than for `.
5713         (pcase--u1): Remove handling of ` (and of `or' and `and').
5714         Quote non-selfquoting values when passing them to `eq'.
5715         Drop `app's let-binding if the variable is not used.
5716         (pcase--q1): Remove.
5717         (`): Define as a pattern macro.
5718         * emacs-lisp/pcase.el (pcase--match): New smart-constructor function.
5719         (pcase--expand pcase--q1, pcase--app-subst-match): Use it.
5720         (pcase--macroexpand): Handle self-quoting patterns here, expand them to
5721         quote patterns.
5722         (pcase--split-match): Don't hoist or/and here any more.
5723         (pcase--split-equal): Optimize quote patterns as well as ` patterns.
5724         (pcase--flip): New helper macro.
5725         (pcase--u1): Optimize the memq case directly.
5726         Don't handle neither self-quoting nor and/or patterns any more.
5727         * emacs-lisp/pcase.el (pcase-defmacro): New macro.
5728         (pcase--macroexpand): New function.
5729         (pcase--expand): Use it.
5730         * emacs-lisp/pcase.el (pcase--app-subst-match, pcase--app-subst-rest):
5731         New optimization functions.
5732         (pcase--u1): Add support for `quote' and `app'.
5733         (pcase): Document them in the docstring.
5735 2014-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5737         Use lexical-bindin in Ibuffer.
5738         * ibuffer.el (ibuffer-do-toggle-read-only): `arg' is unused.
5739         (ibuffer-compile-format): Simplify.
5740         (ibuffer-clear-summary-columns): Simplify.
5741         * ibuf-ext.el (ibuffer-generate-filter-groups): Don't use the third
5742         elem of dotimes when we don't refer to the iteration var from it.
5743         (ibuffer-toggle-sorting-mode): Avoid add-to-list.
5744         * ibuf-macs.el (define-ibuffer-column, define-ibuffer-op):
5745         Silence byte-compiler.
5747 2014-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
5749         * font-lock.el (font-lock-compile-keyword): Don't confuse a lambda
5750         expression for a list.
5752         * emacs-lisp/bytecomp.el (byte-compile-lambda): Don't add fundoc usage
5753         for functions with no arguments.
5755         * mpc.el (mpc-data-directory): Use locate-user-emacs-file.
5756         (mpc-volume-refresh): Make sure the corresponding header-line is updated.
5758 2014-09-17  Tom Willemse  <tom@ryuslash.org>  (tiny change)
5760         * simple.el (clone-indirect-buffer): Mention the return value
5761         (bug#18478).
5763         * progmodes/prog-mode.el (prog-mode-hook): Replace reference to
5764         Text mode in docstring (bug#18464).
5766 2014-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5768         * progmodes/perl-mode.el (perl-syntax-propertize-function):
5769         Accept underscores in identifiers after "sub" (bug#18502).
5771 2014-09-21  Tassilo Horn  <tsdh@gnu.org>
5773         * textmodes/reftex-sel.el (reftex-select-label-mode)
5774         (reftex-select-bib-mode, reftex-insert-docstruct): Derive modes
5775         from special-mode (instead of fundamental-mode) and propertize
5776         with font-lock-face instead of just face.  (Bug#18496)
5778         * textmodes/reftex-toc.el (reftex-toc-mode, reftex-toc): Ditto.
5780 2014-09-19  Dmitry Gutov  <dgutov@yandex.ru>
5782         * emacs-lisp/lisp.el (lisp-completion-at-point): Only calculate
5783         `table-etc' when `end' is non-nil.
5784         (lisp-completion-at-point): Move `end' back if it's after quote.
5785         If in comment or string, only complete when after backquote.
5786         (Bug#18265)
5787         (lisp-completion-at-point): Don't use
5788         `lisp--local-variables-completion-table' in the
5789         `lisp--form-quoted-p' case.
5791 2014-09-19  Dmitry Gutov  <dgutov@yandex.ru>
5793         * emacs-lisp/lisp.el (lisp--expect-function-p)
5794         (lisp--form-quoted-p): New functions.
5795         (lisp-completion-at-point): Use them to see if we're completing a
5796         variable reference, a function name, or just any symbol.
5797         http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00229.html
5799 2014-09-18  Ivan Kanis  <ivan@kanis.fr>
5801         * net/shr.el, net/eww.el: Don't override `shr-width', but
5802         introduce a new variable `shr-internal-width'.  This allows users
5803         to specify a width themselves.
5805 2014-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5807         * image-mode.el (image-toggle-display-image): If we have a
5808         `fit-width' or a `fit-height', don't limit the size of the image
5809         to the window size, because that doesn't preserve the aspect ratio.
5810         * image-mode.el: Move defvars earlier to avoid a byte-compilation
5811         warning.
5813 2014-09-17  Reuben Thomas  <rrt@sc3d.org>
5815         * progmodes/js.el: Add interpreter-mode-alist support for various
5816         JavaScript interpreters.
5818 2014-09-17  Paul Eggert  <eggert@cs.ucla.edu>
5820         Don't assume 'grep' supports GREP_OPTIONS.
5821         The GREP_OPTIONS environment variable is planned to be marked
5822         obsolescent in GNU grep, due to problems in its use, so stop
5823         relying on it.
5824         * progmodes/grep.el (grep-highlight-matches): Document this.
5825         (grep-process-setup): Do not set GREP_OPTIONS.
5826         (grep-compute-defaults): Use an explicit --color option if supported.
5828 2014-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
5830         * msb.el (msb--make-keymap-menu, msb-menu-bar-update-buffers):
5831         Don't add outdated key-shortcut cache (bug#18482).
5833 2014-09-15  Glenn Morris  <rgm@gnu.org>
5835         * image.el (image-multi-frame-p): Fix thinko - do not force
5836         a delay if none was specified.  (Bug#18334)
5838 2014-09-15  Kan-Ru Chen  <kanru@kanru.info>
5840         * window.el (fit-window-to-buffer): Doc fix.
5842 2014-09-15  Ivan Shmakov  <ivan@siamics.net>
5844         * desktop.el (desktop-create-buffer): Check that buffers are still live
5845         before burying them (bug#18373).
5847 2014-09-15  Glenn Morris  <rgm@gnu.org>
5849         * calendar/diary-lib.el (diary-list-entries):
5850         Restore 24.3 display behavior.  (Bug#18381)
5852 2014-09-15  Eli Zaretskii  <eliz@gnu.org>
5854         * mouse.el (mouse-drag-line): On text-mode frames, count the mode
5855         line and header line as 1 pixel.  This fixes the 1-"pixel" (row)
5856         discrepancy between window-pixel-edges and mouse events, and
5857         avoids moving mode line up when the mouse click is on the modeline
5858         and no drag is attempted.
5860 2014-09-14  Daniel Colascione  <dancol@dancol.org>
5862         * register.el (insert-register): Change default interactive
5863         insertion mode.
5865 2014-09-14  Michael Albinus  <michael.albinus@gmx.de>
5867         * net/tramp-cache.el (tramp-flush-file-function): Simplify check.
5868         Suppress debug messages.
5870         * net/tramp.el (tramp-file-name-handler):
5871         * net/tramp-gvfs.el (tramp-gvfs-url-file-name): Apply `cons' where
5872         appropriate.
5874 2014-09-13  Christopher Schmidt  <ch@ristopher.com>
5876         * calendar/calendar.el (calendar-update-mode-line):
5877         Do not overwrite mode-line-format if calendar-mode-line-format is
5878         nil.  (Bug#18467)
5880 2014-09-13  Leo Liu  <sdl.web@gmail.com>
5882         * emacs-lisp/pcase.el (pcase--dontwarn-upats): New var.
5883         (pcase--expand): Use it.
5884         (pcase-exhaustive): New macro.  (Bug#16567)
5886         * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
5887         Add pcase-exhaustive.
5889 2014-09-13  Eli Zaretskii  <eliz@gnu.org>
5891         * mail/rmailmm.el (rmail-mime-insert-html): Decode the HTML part
5892         using the specified transfer-encoding, if any, or 'undecided'.
5893         (rmail-mime-render-html-shr): Bind shr-width to nil, so lines are
5894         broken at the window margin.
5896 2013-12-27  Ken Olum  <kdo@cosmos.phy.tufts.edu>
5898         Support rendering of HTML parts in Rmail (bug#4258).
5899         * mail/rmailmm.el (rmail-mime-process): Handle text/html
5900         separately from other text/ types.  Suppress tagline for
5901         multipart body.
5902         (rmail-mime-parse): Don't change visibility of tagline here.
5903         (rmail-mime-set-bulk-data, rmail-mime-insert-bulk):
5904         Handle text/html specially.
5905         (rmail-mime-render-html-function,rmail-mime-prefer-html): New variables.
5906         (rmail-mime-insert-html, rmail-mime-render-html-shr)
5907         (rmail-mime-render-html-lynx): New functions.
5908         (rmail-mime-fix-inserted-faces): New function.
5909         (rmail-mime-process-multipart): Find the best part to show
5910         following rmail-mime-prefer-html if set.
5911         (rmail-mime-searching): New variable.
5912         (rmail-search-mime-message): Bind rmail-mime-searching to
5913         suppress rendering while searching.
5915 2014-09-12  Sam Steingold  <sds@gnu.org>
5917         * progmodes/sql.el (sql-product-alist): Add vertica.
5918         (sql-vertica-program, sql-vertica-options)
5919         (sql-vertica-login-params, sql-comint-vertica, sql-vertica):
5920         New functions and variables to support Vertica.
5921         Inspired by code by Roman Scherer <roman@burningswell.com>.
5923 2014-09-11  Paul Eggert  <eggert@cs.ucla.edu>
5925         * ses.el (ses-file-format-extend-parameter-list): Rename from
5926         ses-file-format-extend-paramter-list, to correct a misspelling.
5927         All uses changed.
5929 2014-09-10  Alan Mackenzie  <acm@muc.de>
5931         CC Mode: revert recent changes and fix bug 17463 (cc-langs.elc
5932         gets loaded at run-time).
5933         * progmodes/cc-langs.el (c-no-parens-syntax-table): Rename the
5934         c-lang-const to c-make-no-parens-syntax-table and correct the
5935         logic.
5936         (c-no-parens-syntax-table): Correct the logic of the
5937         c-lang-defvar.
5939 2014-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5941         CC-mode: Set open-paren-in-column-0-is-defun-start to nil;
5942         plus misc cleanup.
5943         * progmodes/cc-mode.el (c-basic-common-init):
5944         Set open-paren-in-column-0-is-defun-start.
5945         (adaptive-fill-first-line-regexp, font-lock-syntactic-keywords):
5946         Remove declarations, unused.
5947         (run-mode-hooks): Remove declaration.
5948         (font-lock-defaults): Use plain `defvar' to declare.
5949         (c-run-mode-hooks): Test existence of run-mode-hooks with fboundp.
5950         * progmodes/cc-langs.el (c-filter-ops): Avoid `setq'.
5951         (c-make-mode-syntax-table): Don't micro-optimize.
5952         (c-keywords, c-keyword-member-alist): Simplify.
5953         (c-kwds-lang-consts): Don't eval at compile-time.
5954         (c-primary-expr-regexp): Comment out unused vars.
5955         * progmodes/cc-fonts.el (c-font-lock-context): Declare at top-level.
5956         (c-font-byte-compile): New var.
5957         (c--compile): New function.  Use it instead of `byte-compile'.
5958         (c-cpp-matchers): Quote the value returned by
5959         `c-make-syntactic-matcher' in case it's not self-evaluating.
5960         (c-basic-matchers-before): Avoid a plain MATCHER as keyword, wrap it in
5961         parentheses instead (in case MATCHER happens to be a list).
5962         (c-font-lock-enum-tail): Remove unused var `start'.
5963         (c-font-lock-objc-methods): Silence byte-compiler warnings.
5964         * progmodes/cc-engine.el (c-syntactic-re-search-forward): Sink an `if'
5965         test into an argument.
5966         * progmodes/cc-defs.el (c-point, c-major-mode-is, c-put-char-property)
5967         (c-get-char-property): Don't use `eval' just to unquote a constant.
5968         (c-use-extents): Remove.  Use (featurep 'xemacs), compiled
5969         more efficiently.
5970         (c-put-char-property-fun): Don't call `byte-compile' by hand.
5971         (c-clear-char-property, c-clear-char-properties): Check that `property'
5972         is a quoted constant.
5973         (c-emacs-features): Remove `infodock', `syntax-properties', and
5974         `pps-extended-state' (never used), `8-bit' and `1-bit' (use (featurep
5975         'xemacs) instead).  Use `with-temp-buffer' and let-bind vars after
5976         changing buffer, so we don't have to setq them again afterwards.
5977         (c-lang-const): Remove redundant symbolp assertions.
5978         (c-find-assignment-for-mode): Use `or'.
5979         * Makefile.in (compile-one-process): Remove cc-mode dependency.
5981 2014-09-09  Sam Steingold  <sds@gnu.org>
5983         * progmodes/sql.el (sql-default-directory): Fix type annotation.
5985 2014-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5987         * progmodes/cc-awk.el: Remove unneeded cc-bytecomp use.
5988         Change doc comments into docstrings.
5989         * Makefile.in: Remove cc-awk dependency.
5991 2014-09-08  Sam Steingold  <sds@gnu.org>
5993         * progmodes/sql.el (sql-send-line-and-next): New command,
5994         bound to C-c C-n.
5995         (sql-show-sqli-buffer): Display the buffer instead of its name and
5996         bind the command to C-c C-z.
5997         (sql-default-directory): New user option.
5998         (sql-product-interactive): Bind `default-directory' to it to
5999         enable remote connections using Tramp.
6000         (sql-set-sqli-buffer): Call `sql-product-interactive' when no
6001         suitable buffer is available.
6003 2014-09-08  Glenn Morris  <rgm@gnu.org>
6005         * calendar/calendar.el (calendar-basic-setup):
6006         Fix calendar-view-holidays-initially-flag and fancy display.
6007         * calendar/diary-lib.el (diary-live-p): Doc fix.
6009         * calendar/calendar.el (calendar-basic-setup):
6010         Avoid clobbering calendar with diary.  (Bug#18381)
6012 2014-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6014         * vc/vc-dir.el (vc-dir-update): Don't burp in corner case.
6016 2014-09-08  Lars Ljung  <lars@matholka.se>  (tiny change)
6018         * isearch.el (isearch-yank-word-or-char): Obey superword-mode
6019         as well (bug#18400).
6021 2014-09-08  Eli Zaretskii  <eliz@gnu.org>
6023         * subr.el (posn-actual-col-row): Doc fix.  (Bug#18385)
6025 2014-09-06  Leo Liu  <sdl.web@gmail.com>
6027         * emacs-lisp/pcase.el (pcase): Doc fix.
6028         (pcase--split-vector): New function.
6029         (pcase--q1): Support vector qpattern.  (Bug#18327)
6031 2014-09-05  Sam Steingold  <sds@gnu.org>
6033         * textmodes/tex-mode.el (tex-print-file-extension): New user
6034         option.
6035         (tex-print): Use it instead of the hard-coded string.
6037 2014-09-05  Michael Albinus  <michael.albinus@gmx.de>
6039         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
6040         Expand `default-directory'.
6042 2014-09-05  Martin Rudalics  <rudalics@gmx.at>
6044         * scroll-bar.el (horizontal-scroll-bars-available-p):
6045         New function.
6046         (horizontal-scroll-bar-mode): Rewrite using
6047         horizontal-scroll-bars-available-p.
6048         * menu-bar.el (menu-bar-showhide-scroll-bar-menu): Rewrite using
6049         horizontal-scroll-bars-available-p.
6051 2014-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6053         * subr.el (call-process-shell-command, process-file-shell-command):
6054         Make the `args' obsolete (bug#18409).
6055         (start-process-shell-command, start-file-process-shell-command):
6056         Use `declare'.
6058 2014-09-05  Jay Belanger  <jay.p.belanger@gmail.com>
6060         * calc/calc-forms.el (math-normalize-hms): Do a better check for
6061         "negative" hms forms.
6063 2014-09-04  Rasmus Pank Roulund  <emacs@pank.eu>
6065         * vc/vc-git.el (vc-git-conflicted-files): Fix bug when git status
6066         returns nil (bug#18391).
6068 2014-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
6070         * emacs-lisp/eldoc.el (eldoc-function-argstring): Don't strip
6071         terminating paren (bug#18352).
6072         (eldoc-last-data-store): Return cached data.
6073         (eldoc-get-var-docstring): Avoid setq.
6074         (eldoc-get-fnsym-args-string): Clarify data flow.
6076 2014-09-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
6078         * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): Handle the
6079         case where we're currently providing part of the &rest arg after some
6080         &key args, as in define-ibuffer-op (bug#18048).
6082 2014-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6084         * progmodes/which-func.el (which-func-ff-hook): Obey pre-existing
6085         buffer-local setting of which-func-mode.
6086         (which-func-mode): Use defvar-local.
6087         (which-function-mode): Don't reset which-func-mode in each buffer since
6088         it might have been set by someone else.
6089         (which-func-update-ediff-windows): Check which-function-mode.
6091 2014-09-03  Martin Rudalics  <rudalics@gmx.at>
6093         * frame.el (frame-initialize): Remove horizontal-scroll-bars
6094         from frame-initial-frame-alist.
6095         * scroll-bar.el (previous-horizontal-scroll-bar-mode)
6096         (horizontal-scroll-bar-mode-explicit)
6097         (set-horizontal-scroll-bar-mode, get-horizontal-scroll-bar-mode)
6098         (toggle-horizontal-scroll-bar): Remove.
6099         (horizontal-scroll-bar-mode): Remove defcustom.
6100         (horizontal-scroll-bar-mode): Fix doc-string.
6101         (scroll-bar-toolkit-scroll)
6102         (scroll-bar-toolkit-horizontal-scroll): Add doc-strings stubs.
6104 2014-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6106         * emacs-lisp/package.el (package-generate-description-file):
6107         Properly quote the arguments (bug#18332).  Change second arg.
6108         (package--alist-to-plist-args): Rename from package--alist-to-plist and
6109         quote the elements.
6110         (package--make-autoloads-and-stuff): Fix the test for pre-existence of
6111         the *-pkg.el file.  Adjust to new calling convention of
6112         package-generate-description-file.
6114         * progmodes/gud.el (gud-gdb-completion-at-point): Add hack (bug#18282).
6115         (gud-gdb-completions): Remove obsolete workaround.
6117 2014-09-03  Eli Zaretskii  <eliz@gnu.org>
6119         * subr.el (posn-col-row): Revert the change from commit
6120         2010-11-13T21:07:58Z!eliz@gnu.org, which
6121         was inadvertently merged from emacs-23 release branch in 2010-11-18T03:54:14Z!monnier@iro.umontreal.ca
6122         monnier@iro.umontreal.ca-20101118035414-yvlg7k7dk4k4l3q, and
6123         introduced an off-by-one error in the reported row when there is a
6124         header line.  (Bug#18384)
6126 2014-09-03  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6128         * progmodes/python.el (python-indent-post-self-insert-function):
6129         Avoid electric colon at beginning-of-defun.  (Bug#18228)
6131 2014-09-03  Glenn Morris  <rgm@gnu.org>
6133         * tutorial.el (tutorial--display-changes):
6134         Fix 2014-08-01 change.  (Bug#18382)
6136 2014-09-03  Ken Brown  <kbrown@cornell.edu>
6138         * startup.el (fancy-splash-frame): Extend the fix for Bug#16014 to
6139         the Cygwin-w32 build.  (Bug#18347)
6141 2014-09-03  Glenn Morris  <rgm@gnu.org>
6143         * tar-mode.el (tar--extract, tar-extract):
6144         Avoid permanently disabling undo in extracted buffers.  (Bug#18344)
6146 2014-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6148         * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Try to better
6149         handle multiline elements (bug#18380).
6151 2014-09-01  Eli Zaretskii  <eliz@gnu.org>
6153         * ls-lisp.el (ls-lisp-use-string-collate)
6154         (ls-lisp-UCA-like-collation): New defcustoms.
6155         (ls-lisp-string-lessp): Use them to control sorting by file
6156         names.  (Bug#18051)
6157         (ls-lisp-version-lessp): New function.
6158         (ls-lisp-handle-switches): Use it to implement the -v switch of
6159         GNU ls.
6160         (ls-lisp--insert-directory): Mention the -v switch in the doc string.
6162 2014-08-31  Christoph Scholtes  <cschol2112@gmail.com>
6164         * ibuffer.el: Replace mode-specific quit function with
6165         `quit-window' via `special-mode'.
6166         (ibuffer-mode-map): Use keybindings from special-mode-map instead
6167         of local overrides.
6168         (ibuffer): Don't store previous windows configuration.
6169         Let `quit-window' handle restoring.
6170         (ibuffer-quit): Remove function.  Use `quit-window' instead.
6171         (ibuffer-restore-window-config-on-quit): Remove variable.
6172         (ibuffer-prev-window-config): Remove variable.
6174 2014-08-29  Michael Heerdegen  <michael_heerdegen@web.de>
6176         * emacs-lisp/easy-mmode.el (define-minor-mode): Use mode function
6177         name instead of variable name in hook docstring.  (Bug#18349)
6179 2014-08-29  Martin Rudalics  <rudalics@gmx.at>
6181         * window.el (display-buffer-at-bottom): Prefer bottom-left
6182         window to other bottom windows.  Reuse a bottom window if it
6183         shows the buffer already.  Suggested by Juri Linkov
6184         <juri@jurta.org> in discussion of (Bug#18181).
6186 2014-08-29  Leo Liu  <sdl.web@gmail.com>
6188         * files.el (minibuffer-with-setup-hook): Allow (:append FUN) to
6189         append to minibuffer-setup-hook.  (Bug#18341)
6191 2014-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6193         * progmodes/cc-defs.el: Expose c-lanf-defconst's expressions to the
6194         byte-compiler.
6195         (lookup-syntax-properties): Silence byte-compiler.
6196         (c-lang-defconst): Quote the code with `lambda' rather than with
6197         `quote'.
6198         (c-lang-const): Avoid unneeded setq.
6199         (c-lang-constants-under-evaluation): Add docstring.
6200         (c-lang--novalue): New constant.
6201         (c-find-assignment-for-mode): Use it instead of c-lang-constants.
6202         (c-get-lang-constant): Same here.
6203         Get the mode's value using `funcall' now that the code is quoted
6204         with `lambda'.
6206 2014-08-28  Michael Albinus  <michael.albinus@gmx.de>
6208         * net/tramp.el (tramp-handle-shell-command): Use `display-buffer'.
6209         (Bug#18326)
6211 2014-08-28  Martin Rudalics  <rudalics@gmx.at>
6213         * scroll-bar.el (scroll-bar-horizontal-drag-1): Handle new
6214         interpretation of `portion-whole'.
6216 2014-08-28  Michael Albinus  <michael.albinus@gmx.de>
6218         * net/tramp-adb.el: Spell author name correctly.
6220 2014-08-28  João Távora  <joaotavora@gmail.com>
6222         * net/shr.el (shr-expand-url): Plain expand-file-name is not enough;
6223         use url-expand-file-name.  (Bug#18310)
6225 2014-08-28  Glenn Morris  <rgm@gnu.org>
6227         * emulation/cua-rect.el (cua--highlight-rectangle):
6228         Avoid error at point-min.  (Bug#18309)
6230 2014-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6232         * progmodes/python.el (python-shell-prompt-detect): Remove redundant
6233         executable-find (bug#18244).
6235         * simple.el (self-insert-uses-region-functions): Defvar.
6237 2014-08-28  Glenn Morris  <rgm@gnu.org>
6239         * subr.el (remq): Revert 2014-08-25 doc change (not always true).
6241 2014-08-27  Dmitry Antipov  <dmantipov@yandex.ru>
6243         * startup.el (normal-top-level): Now use internal--top-level-message.
6245 2014-08-26  Dmitry Antipov  <dmantipov@yandex.ru>
6247         * startup.el (normal-top-level): Use top-level-message.
6249 2014-08-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6251         * net/shr.el (shr-copy-url): Encode copied URL to avoid getting
6252         URLs containing spaces and the like.
6254 2014-08-25  Christoph Scholtes  <cschol2112@gmail.com>
6256         * subr.el (remq): Fix docstring (Bug#18253).
6258 2014-08-25  Christoph Scholtes  <cschol2112@gmail.com>
6260         * replace.el (query-replace): Fix typo in docstring (Bug#18320).
6262 2014-08-24  Alan Mackenzie  <acm@muc.de>
6264         Handle C++11's "auto" and "decltype" constructions.
6265         * progmodes/cc-engine.el (c-forward-type): Enhance to recognise
6266         and return 'decltype.
6267         (c-forward-decl-or-cast-1): New let variables backup-kwd-sym,
6268         prev-kwd-sym, new-style-auto.  Enhance to handle the new "auto"
6269         keyword.
6270         * progmodes/cc-fonts.el (c-font-lock-declarations): Handle the
6271         "decltype" keyword.
6272         (c-font-lock-c++-new): Handle "decltype" constructions.
6273         * progmodes/cc-langs.el (c-auto-ops, c-auto-ops-re):
6274         New c-lang-defconsts/defvars.
6275         (c-haskell-op, c-haskell-op-re): New c-lang-defconsts/defvars.
6276         (c-typeof-kwds, c-typeof-key): New c-lang-defconsts/defvars.
6277         (c-typeless-decl-kwds): Append "auto" onto the C++ value.
6278         (c-not-decl-init-keywords): Also exclude c-typeof-kwds from value.
6280         Make ">>" act as double template ender in C++ Mode.  (Bug#11386)
6281         * progmodes/cc-langs.el (c->-op-cont-tokens): New lang-const split
6282         off from c->-op-cont-re.
6283         (c->-op-cont-tokens): Change to use the above.
6284         (c->-op-without->-cont-regexp): New lang-const.
6285         * progmodes/cc-engine.el (c-forward-<>-arglist-recur):
6286         Use c->-op-without->-cont-regexp in place of c->-op-cont-tokens.
6289 2014-08-23  Alan Mackenzie  <acm@muc.de>
6291         * progmodes/cc-fonts.el (c-font-lock-declarators): Fix infinite
6292         loop, bug #18306.  The bug was introduced on 2014-08-02.
6294 2014-08-21  Eli Zaretskii  <eliz@gnu.org>
6296         * textmodes/texnfo-upd.el (texinfo-specific-section-type):
6297         Don't recognize a Top node if there are other sectioning commands
6298         earlier in the Texinfo file.  This fixes a bug in
6299         texinfo-make-menu and avoids inflooping in
6300         texinfo-all-menus-update when they are invoked on texinfo.texi.
6302 2014-08-21  Martin Rudalics  <rudalics@gmx.at>
6304         * window.el (window--side-window-p): New function.
6305         (split-window, window-splittable-p): Use window--side-window-p to
6306         determine whether WINDOW can be split (Bug#18304).
6307         * calendar/calendar.el (calendar-basic-setup): Fix one call of
6308         `window-splittable-p' and add another (Bug#18304).
6310 2014-08-20  Sam Steingold  <sds@gnu.org>
6312         * progmodes/python.el (python-new-pythonpath): Extract from
6313         `python-shell-calculate-process-environment'.
6315 2014-08-18  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
6317         * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): Add support
6318         for &key args (bug#18048).
6320 2014-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
6322         * emacs-lisp/eldoc.el (eldoc-argument-case): Obsolete and change default.
6323         (eldoc-function-argstring-format): Remove.
6324         (eldoc-function-argstring): Always return upcase args.
6325         Use help-make-usage.  Don't add parens.
6326         (eldoc-get-fnsym-args-string): Don't obey eldoc-argument-case since
6327         it's too late to do it right (bug#18048).
6329 2014-08-18  Eli Zaretskii  <eliz@gnu.org>
6331         * scroll-bar.el (scroll-bar-horizontal-drag-1)
6332         (scroll-bar-toolkit-horizontal-scroll): When determining the
6333         paragraph direction, use the buffer of the window designated in
6334         the event.
6336 2014-08-16  Andreas Schwab  <schwab@linux-m68k.org>
6338         * vc/diff-mode.el (diff-fixup-modifs): Handle empty line in
6339         context of unified diff.
6341 2014-08-16  Paul Eggert  <eggert@cs.ucla.edu>
6343         Add dependencies to fix loaddefs race during parallel builds.
6344         Without this, for example, 'make -j bootstrap' can fail and report
6345         "Opening input file: no such file or directory,
6346         .../lisp/calendar/diary-loaddefs.el ... recipe for target
6347         'calendar/hol-loaddefs.el' failed", where the hol-loaddefs.el rule
6348         got confused because diary-loaddefs.el was being built in parallel.
6349         * Makefile.in ($(CAL_DIR)/diary-loaddefs.el):
6350         Depend on $(CAL_DIR)/cal-loaddefs.el.
6351         ($(CAL_DIR)/hol-loaddefs.el): Depend on $(CAL_DIR)/diary-loaddefs.el.
6353 2014-08-16  Martin Rudalics  <rudalics@gmx.at>
6355         * scroll-bar.el (scroll-bar-horizontal-drag-1): Use cdr of
6356         portion-whole for scrolling right-to-left text.
6358 2014-08-15  Leo Liu  <sdl.web@gmail.com>
6360         * speedbar.el (speedbar-generic-list-tag-p): Allow special
6361         elements from imenu.
6363 2014-08-15  Glenn Morris  <rgm@gnu.org>
6365         * subr.el (with-output-to-temp-buffer): Doc fix; from elisp manual.
6367 2014-08-13  Jan Nieuwenhuizen  <janneke@gnu.org>
6369         * progmodes/compile.el (compilation-error-regexp-alist-alist):
6370         Add Guile regexpses.
6372 2014-08-13  Jan Nieuwenhuizen  <janneke@gnu.org>
6374         * progmodes/gud.el (guiler): New function.  Starts the Guile REPL;
6375         add Guile debugger support for GUD.
6377 2014-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
6379         * obsolete/mouse-sel.el (mouse-sel-mode): Use add/remove-function.
6380         (mouse-sel--ignore): New function.
6381         (mouse-sel-has-been-enabled, mouse-sel-original-bindings)
6382         (mouse-sel-original-interprogram-cut-function)
6383         (mouse-sel-original-interprogram-paste-function): Remove.
6385 2014-08-13  Eric S. Raymond  <esr@thyrsus.com>
6387         * vc/vc-git.el (vc-git-resolve-when-done): New function.
6388         Call "git add" when there are no longer conflict markers.
6390 2014-08-13  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
6392         * vc/vc-git.el (vc-git-find-file-hook): New function.
6393         Adds support for calling smerge (and resolve) on a conflicted file.
6394         (vc-git-conflicted-files): New function.
6395         Useful in itself and a step towards better smerge support.
6397 2014-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6399         * mpc.el (mpc-reorder): Don't bother splitting the "active" elements
6400         to the first part if they're the same as the selection.
6402 2014-08-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6404         * image-mode.el (image-transform-reset): New command and menu item.
6405         (image-mode-map): Rearrange the menu items to put presumably more
6406         obscure items at the end.
6408 2014-08-12  Juri Linkov  <juri@jurta.org>
6410         * vc/vc-annotate.el (vc-annotate-background-mode):
6411         Use `with-demoted-errors' instead of `ignore-errors'.  (Bug#18189)
6413 2014-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6415         * files.el (out-of-memory-warning-percentage): Turn it off by default.
6417 2014-08-11  Sam Steingold  <sds@gnu.org>
6419         * textmodes/sgml-mode.el (sgml-validate-command): Set depending on
6420         the presence of known validators (tidy, (o)nsgmls).
6422 2014-08-11  Ulf Jasper  <ulf.jasper@web.de>
6424         Newsticker: introduce `newsticker-treeview-date-format'.  (Bug#17227)
6425         * net/newst-treeview.el (newsticker-treeview-date-format): New.
6426         (newsticker--treeview-list-add-item):
6427         Use `newsticker-treeview-date-format'.
6429 2014-08-11  Glenn Morris  <rgm@gnu.org>
6431         * files.el (basic-save-buffer-2): Revert 2013-01-31 change, which
6432         chose coding system for writing before backing up, since it causes
6433         a more serious problem than the one it solves.  (Closes Bug#18141,
6434         reopens Bug#13522.)
6436 2014-08-11  Martin Rudalics  <rudalics@gmx.at>
6438         * window.el (window-total-size): Make doc-string more self-contained.
6440         * window.el (display-buffer-below-selected): Restore original
6441         behavior if buffer is already displayed in the window below the
6442         selected one (Bug#18181).
6444 2014-08-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6446         * mouse.el (mouse--down-1-maybe-follows-link): Don't convert the down
6447         event (bug#18212).
6449 2014-08-11  Eli Zaretskii  <eliz@gnu.org>
6451         * info.el (info): Doc fix.
6453 2014-08-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6455         * info.el (Info-mode-map): Override a global down-mouse-2 binding
6456         (bug#18212).
6458 2014-08-11  Eli Zaretskii  <eliz@gnu.org>
6460         * simple.el (default-line-height): A floating-point value of
6461         line-spacing means a fraction of the default frame font's height,
6462         not of the font currently used by the 'default' face.
6463         Truncate the pixel value, like the display engine does.
6464         (window-screen-lines): Use window-inside-pixel-edges for
6465         determining the window height in pixels.  (Bug#18195)
6467 2014-08-11  Grégoire Jadi  <daimrod@gmail.com>
6469         * leim/quail/latin-post.el: Transform " __" into " _".  (Bug#18023)
6471 2014-08-10  Ulf Jasper  <ulf.jasper@web.de>
6473         Enumerate evaluated sexp diary entries (Bug#7911).
6474         * calendar/icalendar.el (icalendar-export-sexp-enumerate-all)
6475         (icalendar-export-sexp-enumeration-days): New.
6476         (icalendar-export-region): Now `icalendar--convert-to-ical'
6477         returns a cons cell or a list of cons cells.
6478         (icalendar--convert-to-ical): Take care of
6479         `icalendar-export-sexp-enumerate-all'.  Return (a list of) cons cells.
6480         (icalendar--convert-ordinary-to-ical)
6481         (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
6482         (icalendar--convert-block-to-ical, icalendar--convert-block-to-ical)
6483         (icalendar--convert-float-to-ical, icalendar--convert-cyclic-to-ical)
6484         (icalendar--convert-anniversary-to-ical): Return cons cell.
6485         (icalendar--convert-sexp-to-ical): Enumerate evaluated sexp
6486         entries.  Return (list of) cons cells.
6488 2014-08-09  Juri Linkov  <juri@jurta.org>
6490         * vc/vc-annotate.el (vc-annotate-background-mode): Add :set
6491         to reevaluate `vc-annotate-color-map'.  (Bug#18189)
6493 2014-08-09  Alan Mackenzie  <acm@muc.de>
6495         * progmodes/cc-fonts.el (c-font-lock-declarators): Remove check
6496         for top-level that can cause unacceptable slow-down in scrolling.
6497         See email Subject: Huge {...} blocks in C/C++ again, from Dmitry
6498         Antipov from 2013-10-14 in emacs-devel.
6500 2014-08-08  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
6502         * ibuffer.el (ibuffer-mode-map): Use toggle button for
6503         `ibuffer-auto-mode' menu entry.
6504         (ibuffer-mode-hook): Add `ibuffer-auto-mode' customization option.
6506 2014-08-08  Matthias Meulien  <orontee@gmail.com>
6508         * progmodes/prog-mode.el (prog-mode-hook): Make customizable.
6509         (Bug#16394)
6511 2014-08-07  Martin Rudalics  <rudalics@gmx.at>
6513         * window.el (window--min-size-1): Explicitly set WINDOW arg in
6514         calls of window-min-pixel-height and window-min-pixel-width.
6516 2014-08-07  Reuben Thomas  <rrt@sc3d.org>
6518         * progmodes/ada-mode.el:
6519         * net/tramp.el (tramp-handle-file-symlink-p):
6520         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Remove a comment
6521         about VMS, which we no longer support.
6522         * progmodes/ada-xref.el (ada-xref-current): Remove mention of VMS,
6523         and fix a FIXME, using convert-standard-filename in place of
6524         removed ada-convert-file-name.
6526 2014-08-07  Eli Zaretskii  <eliz@gnu.org>
6528         * files.el (auto-mode-alist): Remove support for VMS from a pattern.
6530 2014-08-07  Reuben Thomas  <rrt@sc3d.org>
6532         Refer to MS-DOS using the same name everywhere.
6533         * arc-mode.el, files.el, frame.el: ``MS-DOG'', ``MSDOG'' and
6534         ``msdog'' become ``MS-DOS''.
6536 2014-08-07  Michael Albinus  <michael.albinus@gmx.de>
6538         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
6539         Use cached "remote-copy-args" value, if available.  (Bug#18199)
6541 2014-08-07  Leo Liu  <sdl.web@gmail.com>
6543         * help.el (temp-buffer-setup-hook,temp-buffer-show-hook):
6544         Revert change on 2014-03-22.
6546 2014-08-06  Ulf Jasper  <ulf.jasper@web.de>
6548         * calendar/icalendar.el (icalendar--diarytime-to-isotime)
6549         (icalendar--convert-ordinary-to-ical): Allow for missing minutes
6550         (Bug#13750).
6553 2014-08-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6555         * image-mode.el (image-toggle-display-image): Always rescale images
6556         to not be bigger than the current window.
6558 2014-08-05  Eric Brown  <brown@fastmail.fm>  (tiny change)
6560         * net/eww.el (eww-bookmarks-directory): New variable.
6561         (eww-write-bookmarks): Use it.
6562         (eww-read-bookmarks): Ditto.
6564 2014-08-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6566         * net/shr.el (shr-copy-url): Also copy the image URL.
6568 2014-08-05  Michael Albinus  <michael.albinus@gmx.de>
6570         * net/tramp-cache.el (tramp-flush-file-function): Suppress function
6571         also for Tramp working buffers.
6573 2014-08-04  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6575         * progmodes/python.el: Fix completions inside (i)pdb.
6576         (python-shell-completion-pdb-string-code): Make obsolete.
6577         (python-shell-completion-get-completions):
6578         Use python-shell-completion-string-code resending setup code
6579         continuously for (i)pdb.
6581 2014-08-04  Paul Eggert  <eggert@cs.ucla.edu>
6583         * rect.el (rectangle--default-line-number-format): Rename
6584         from misspelled rectange--default-line-number-format (Bug#18045).
6585         All uses changed.
6587 2014-08-03  Paul Eggert  <eggert@cs.ucla.edu>
6589         Don't mishandle year-9999 dates (Bug#18176).
6590         * calendar/parse-time.el (parse-time-rules):
6591         Allow years up to most-positive-fixnum.
6592         * calendar/time-date.el (date-to-time):
6593         Pass "Specified time is not representable" errors through.
6595 2014-08-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6597         * progmodes/python.el: Completion code cleanups.
6598         (python-shell-completion-get-completions): Detect and send import
6599         statements directly to completion function.
6600         (python-shell-completion-at-point): Simplify prompt calculation
6601         and import vs input completion logic.
6603 2014-08-02  Alan Mackenzie  <acm@muc.de>
6605         Fix confusion in C++ file caused by comma in "= {1,2},".
6606         Bug #17756.
6607         * progmodes/cc-engine.el (c-beginning-of-statement-1): In checking
6608         for a statement boundary marked by "}", check there's no "="
6609         before the "{".
6610         (c-guess-basic-syntax CASE 9B): Call c-beginning-of-statement with
6611         non-nil `comma-delim' argument.
6612         * progmodes/cc-fonts.el (c-font-lock-declarators): Parse an
6613         initializer expression more accurately.
6615         Correct loop termination condition in c-syntactic-skip-backward.
6616         * progmodes/cc-engine.el (c-syntactic-skip-backward): Correct for
6617         the situation where, after moving back out of a literal,
6618         skip-chars-backward doesn't move further, yet checks have still to
6619         be done.
6621 2014-08-01  Eli Zaretskii  <eliz@gnu.org>
6623         * tutorial.el (tutorial--display-changes): Accept punctuation
6624         characters before the key binding.  (Bug#18146)
6626 2014-07-31  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6628         * progmodes/python.el: Shell output capture enhancements.
6629         (python-shell-accept-process-output): New function.
6630         (inferior-python-mode)
6631         (python-shell-send-setup-code): Use it.
6633 2014-07-30  Christophe Deleuze  <christophe.deleuze@free.fr>  (tiny change)
6635         * calendar/icalendar.el (icalendar--decode-isodatetime):
6636         Use actual current-time-zone when converting to local time.  (Bug#15408)
6638 2014-07-29  Martin Rudalics  <rudalics@gmx.at>
6640         * window.el (window--state-put-2): Handle horizontal scroll
6641         bars, if present.
6643 2014-07-29  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
6645         * menu-bar.el (menu-bar-update-buffers): Update item list format
6646         in `buffers-menu' to confirm with changes to `get_keyelt'
6647         (r117463).  (Bug#18016)
6649 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6651         * progmodes/python.el (inferior-python-mode): Make input prompts
6652         read-only.
6654 2014-07-28  Emilio C. Lopes  <eclig@gmx.net>
6656         * net/tramp-sh.el (tramp-get-remote-python): Also search for
6657         executables named "python2" or "python3".
6658         (tramp-get-remote-uid-with-python): Use parentheses around
6659         arguments to `print' to make it compatible with Python 3.
6660         (tramp-get-remote-gid-with-python): Ditto.  (Bug#18118)
6662 2014-07-28  Eli Zaretskii  <eliz@gnu.org>
6664         * window.el (window--pixel-to-total): Use FRAME's root window, not
6665         that of the selected frame.  (Bug#18112, Bug#16674)
6667 2014-07-28  Andreas Schwab  <schwab@linux-m68k.org>
6669         * textmodes/tex-mode.el (tex-font-lock-verb): Doc fix.
6670         (Bug#18117)
6672 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6674         * progmodes/python.el (inferior-python-mode): Doc fix.
6676 2014-07-28  Stephen Berman  <stephen.berman@gmx.net>
6678         * calendar/todo-mode.el (todo-edit-item--next-key): If next key is
6679         not a character, ignore it instead of raising an error.
6681         * calendar/todo-mode.el: Fix handling of marked items and make
6682         minor code improvements.
6683         (todo-edit-item): If there are marked items, ensure user can only
6684         invoke editing commands that work with marked items.
6685         (todo-edit-item--text): When there are marked items, make it a
6686         noop if invoked with point not on an item; otherwise, ensure it
6687         applies only to item at point.
6688         (todo-item-undone): If there are marked not-done items, return
6689         point to its original position before signaling user error.
6690         (todo--user-error-if-marked-done-item): New function.
6691         (todo-edit-item--header, todo-edit-item--diary-inclusion)
6692         (todo-item-done): Use it.
6694 2014-07-28  Glenn Morris  <rgm@gnu.org>
6696         * files.el (toggle-read-only): Re-add basic doc-string.
6697         * vc/vc-hooks.el (vc-toggle-read-only): Tweak obsolescence mesage.
6699         * progmodes/prolog.el (prolog-mode-keybindings-edit):
6700         Replace missing `switch-to-prolog' with `run-prolog'.
6701         (switch-to-prolog): Define as (obsolete) alias, as in 23.4.
6703 2014-07-28  Stephen Berman  <stephen.berman@gmx.net>
6705         * calendar/todo-mode.el (todo-set-top-priorities): Fix overwriting
6706         of file-wide setting when changing category-wide setting.
6708 2014-07-28  Stephen Berman  <stephen.berman@gmx.net>
6710         * doc-view.el (doc-view-open-text): Don't require that the
6711         document is saved in a file (e.g., email attachment).
6713 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6715         Parse completion input in a iPython friendly way.  (Bug#18084)
6716         * progmodes/python.el
6717         (python-shell-completion-at-point): Rename from
6718         python-shell-completion-complete-at-point.
6719         (inferior-python-mode): Use it.
6720         (python-completion-at-point): Rename from
6721         python-completion-complete-at-point.  Parse input up to first
6722         backward occurrence of whitespace, open-paren, close-paren or
6723         string delimiter.
6724         (python-mode): Use it.
6726 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6728         * progmodes/python.el
6729         (python-shell-with-shell-buffer): New macro.
6730         (python-shell-font-lock-get-or-create-buffer)
6731         (python-shell-font-lock-kill-buffer)
6732         (python-shell-font-lock-with-font-lock-buffer)
6733         (python-shell-font-lock-cleanup-buffer)
6734         (python-shell-font-lock-toggle): Use it.
6735         (python-shell-font-lock-turn-on)
6736         (python-shell-font-lock-turn-off): Use it.  Make command.
6738 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6740         Grab all Python process output before inferior-python-mode hooks.
6741         * progmodes/python.el (inferior-python-mode):
6742         Call accept-process-output and sit-for to ensure all output for process
6743         has been received before running hooks.
6744         (python-shell-internal-get-or-create-process):
6745         Cleanup accept-process-output and sit-for calls.
6747 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6749         More robust shell startup and code setup.
6750         * progmodes/python.el (python-shell-make-comint):
6751         Remove accept-process-output call.
6752         (python-shell-get-buffer): Return current buffer if major-mode is
6753         inferior-python-mode.
6754         (python-shell-get-or-create-process): Use it.
6755         (python-shell-send-setup-code): Send all setup code in one string,
6756         output success message and accept-process-output.
6758 2014-07-27  Eli Zaretskii  <eliz@gnu.org>
6760         * scroll-bar.el (scroll-bar-toolkit-horizontal-scroll):
6761         Add rudimentary support for bidirectional text.
6763 2014-07-27  Martin Rudalics  <rudalics@gmx.at>
6765         * frame.el (frame-notice-user-settings): Rewrite using
6766         frame-initial-frame-tool-bar-height.
6767         * menu-bar.el (menu-bar-horizontal-scroll-bar)
6768         (menu-bar-no-horizontal-scroll-bar): New functions.
6769         (menu-bar-showhide-scroll-bar-menu): Add bindings for horizontal
6770         scroll bars.
6771         * scroll-bar.el (scroll-bar-lines)
6772         (set-horizontal-scroll-bar-mode)
6773         (get-horizontal-scroll-bar-mode, horizontal-scroll-bar-mode)
6774         (scroll-bar-horizontal-drag-1, scroll-bar-horizontal-drag)
6775         (scroll-bar-toolkit-horizontal-scroll): New functions.
6776         (horizontal-scroll-bar-mode)
6777         (previous-horizontal-scroll-bar-mode)
6778         (horizontal-scroll-bar-mode-explicit): New variables.
6779         (horizontal-scroll-bar-mode): New option.
6780         (toggle-horizontal-scroll-bar): Do something.
6781         (top-level): Bind horizontal-scroll-bar mouse-1.
6782         * startup.el (tool-bar-originally-present): Remove variable.
6783         (command-line): Don't set tool-bar-originally-present.
6784         * window.el (window-min-height): Update doc-string.
6785         (window--dump-frame): Dump horizontal scroll bar values.
6786         (window--min-size-1): Handle minibuffer window separately.
6787         Count in margins and horizontal scroll bar.  Return safe value
6788         iff IGNORE equals 'safe.
6789         (frame-windows-min-size): New function (used by frame resizing
6790         routines).
6791         (fit-frame-to-buffer, fit-window-to-buffer): Count in horizontal
6792         scroll bars.
6793         (window--sanitize-window-sizes): New function.
6794         (window-split-min-size): Remove.
6795         (split-window): Count divider-width.  Don't use
6796         `window-split-min-size' any more.  Reword error messages.
6797         Sanitize windows sizes after splitting.
6799 2014-07-27  Thien-Thi Nguyen  <ttn@gnu.org>
6801         Use `defvar-local' more.
6802         * progmodes/hideshow.el
6803         (hs-c-start-regexp, hs-block-start-regexp)
6804         (hs-block-start-mdata-select, hs-block-end-regexp)
6805         (hs-forward-sexp-func, hs-adjust-block-beginning): ...here;
6806         remove corresponding `make-variable-buffer-local' top-level calls.
6808 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6810         Cleanup error signals.  (Bug#18067)
6811         * progmodes/python.el
6812         (python-indent-shift-left): Use user-error instead.
6813         (python-shell-prompt-detect): Use lwarn with python group.
6814         (python-completion-complete-at-point)
6815         (python-eldoc--get-doc-at-point): Don't signal error.
6817 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6819         Support for packages in Python shell.  (Bug#13570)
6820         * progmodes/python.el (python-shell--package-depth): New var.
6821         (python-shell-package-enable): New command.
6822         (python-util-list-directories, python-util-list-files)
6823         (python-util-list-packages): New functions.
6825 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6827         Faster comint output.  (Bug#16875)
6828         * progmodes/python.el:
6829         (python-comint-output-filter-function): Make obsolete.
6830         (python-comint-postoutput-scroll-to-bottom): New function.
6831         (inferior-python-mode): Set comint-output-filter-functions to a
6832         minimum.
6834 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6836         * progmodes/python.el (python-shell-font-lock-post-command-hook):
6837         Safeguard current point and undo history.
6839 2014-07-26  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6841         Robust shell syntax highlighting.  (Bug#18084, Bug#16875)
6842         * progmodes/python.el:
6843         (python-shell-prompt-input-regexps): Add iPython block prompt.
6844         (python-shell-output-syntax-table): Delete var.
6845         (python-shell-font-lock-with-font-lock-buffer): New macro.
6846         (python-shell-font-lock-get-or-create-buffer)
6847         (python-shell-font-lock-kill-buffer)
6848         (python-shell-font-lock-cleanup-buffer)
6849         (python-shell-font-lock-post-command-hook)
6850         (python-shell-font-lock-turn-off): New functions.
6851         (python-shell-font-lock-turn-on): New function.
6852         (inferior-python-mode): Use it.
6853         (python-shell-font-lock-toggle): New command.
6854         (python-shell-font-lock-enable): Rename from
6855         python-shell-enable-font-lock.
6856         (run-python-internal): Use it.
6857         (python-shell-font-lock-comint-output-filter-function): New function.
6858         (python-shell-comint-end-of-output-p): New function.
6859         (python-shell-output-filter): Use it.
6860         (python-util-comint-last-prompt): New function.
6861         (python-util-text-properties-replace-name): New function.
6863 2014-07-25  Glenn Morris  <rgm@gnu.org>
6865         * vc/ediff-init.el (ediff-toggle-read-only-function):
6866         * vc/ediff-util.el (ediff-toggle-read-only):
6867         Replace obsolete toggle-read-only with read-only-mode.
6869 2014-07-24  Michael Albinus  <michael.albinus@gmx.de>
6871         * net/tramp-cache.el (tramp-flush-file-function): Wrap the code
6872         with `save-match-data'.  (Bug#18095)
6874 2014-07-21  Vincent Belaïche  <vincentb1@users.sourceforge.net>
6876         * ses.el (ses-truncate-cell): Use cl-progv instead of eval in
6877         order to ensure that row and col are lexically bound inside the
6878         evaluated sexp.
6880 2014-07-21  Glenn Morris  <rgm@gnu.org>
6882         * progmodes/hideif.el (hide-ifdef-mode-submap):
6883         Also substitute read-only-mode.
6884         * bindings.el (mode-line-toggle-read-only):
6885         * bs.el (bs-toggle-readonly):
6886         * buff-menu.el (Buffer-menu-toggle-read-only):
6887         * dired.el (dired-toggle-read-only):
6888         * files.el (view-read-only, find-file-read-only)
6889         (find-file-read-only-other-window)
6890         (find-file-read-only-other-frame):
6891         * progmodes/hideif.el (hide-ifdef-toggle-outside-read-only):
6892         Doc fixes re toggle-read-only.
6894 2014-07-21  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6896         * progmodes/python.el: Add comment about pipe buffering and
6897         solutions for missing/delayed output in inferior Python shells.
6898         (Bug#17304)
6900         * progmodes/python.el (python-mode): Don't set
6901         mode-require-final-newline.  (Bug#17990)
6903         Make python.el work with IPython automatically.  (Bug#15510)
6904         * progmodes/python.el:
6905         (python-shell-completion-setup-code): New value supporting iPython.
6906         (python-shell-completion-string-code): New value supporting iPython.
6907         (python-shell-completion-get-completions): Use them.
6908         (python-shell-completion-module-string-code): Make obsolete.
6909         (python-shell-prompt-input-regexps)
6910         (python-shell-prompt-output-regexps): Add safeguard for ipdb.
6911         (python-shell-output-filter): Fix comment typo.
6913         Fix Python shell prompts detection for remote hosts.
6914         * progmodes/python.el (python-shell-prompt-detect):
6915         Replace call-process with process-file and make it more robust.
6917         Autodetect Python shell prompts.  (Bug#17370)
6918         * progmodes/python.el:
6919         (python-shell-interpreter-interactive-arg)
6920         (python-shell-prompt-detect-enabled)
6921         (python-shell-prompt-detect-failure-warning)
6922         (python-shell-prompt-input-regexps)
6923         (python-shell-prompt-output-regexps): New vars.
6924         (python-shell-prompt-calculated-input-regexp)
6925         (python-shell-prompt-calculated-output-regexp): New vars.
6926         (python-shell-get-process-name)
6927         (python-shell-internal-get-process-name)
6928         (python-shell-output-filter)
6929         (python-shell-completion-get-completions): Use them.
6930         (python-shell-prompt-detect)
6931         (python-shell-prompt-validate-regexps): New functions.
6932         (python-shell-prompt-set-calculated-regexps): New function.
6933         (inferior-python-mode): Use it.  Also honor overriden
6934         python-shell-interpreter and python-shell-interpreter-args.
6935         (python-shell-make-comint): Honor overriden
6936         python-shell-interpreter and python-shell-interpreter-args.
6937         (python-shell-get-or-create-process): Make it testable by allowing
6938         to call run-python non-interactively.
6939         (python-util-valid-regexp-p): New function.
6940         (python-shell-prompt-regexp, python-shell-prompt-block-regexp)
6941         (python-shell-prompt-output-regexp)
6942         (python-shell-prompt-pdb-regexp): Use it as defcustom :safe.
6944 2014-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6946         * emacs-lisp/smie.el (smie-config--guess-1): Split from
6947         smie-config--guess.
6948         (smie-config--guess): Use it.
6950         * emacs-lisp/edebug.el: Use nadvice.
6951         (edebug-original-read): Remove.
6952         (edebug--read): Rename from edebug-read and add `orig' arg.
6953         (edebug-uninstall-read-eval-functions)
6954         (edebug-install-read-eval-functions): Use nadvice.
6955         (edebug-read-sexp, edebug-read-storing-offsets, edebug-read-symbol)
6956         (edebug-read-and-maybe-wrap-form1, edebug-instrument-callee)
6957         (edebug-read-string, edebug-read-function): Use just `read'.
6958         (edebug-original-debug-on-entry): Remove.
6959         (edebug--debug-on-entry): Rename from edebug-debug-on-entry and add
6960         `orig' arg.
6961         (debug-on-entry): Override with nadvice.
6963         * mouse.el (tear-off-window): Rename from mouse-tear-off-window since
6964         it also makes sense to bind it to a non-mouse event.
6966         * vc/vc-bzr.el (vc-bzr-shelve): Make it operate on fileset.
6968 2014-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6970         * xt-mouse.el (xterm-mouse-event): Don't assume last-click is non-nil
6971         (bug#18015).
6973         * rect.el (rectangle--string-preview): Don't assume there
6974         a non-nil default (bug#17984).
6976 2014-07-16  Glenn Morris  <rgm@gnu.org>
6978         * desktop.el (after-init-hook): Disable startup frame restoration
6979         in non-graphical situations.  (Bug#17693)
6981         * vc/vc-dispatcher.el (vc-log-edit): Do set up the log buffer
6982         if it was "empty", or used for a different set of files.  (Bug#17884)
6984 2014-07-16  Eli Zaretskii  <eliz@gnu.org>
6986         * bindings.el (mode-line-remote): If default-directory is not a
6987         string, don't call file-remote-p on it; instead state in the
6988         help-echo that it is nil.  (Bug#17986)
6990 2014-07-14  Daniel Colascione  <dancol@dancol.org>
6992         * progmodes/cc-langs.el: Change comments from `cl-macroexpand-all'
6993         to `macroexpand-all'
6995         * progmodes/cc-defs.el (c-lang-defconst-eval-immediately):
6996         Use `macroexpand-all' instead of `cl-macroexpand-all'.
6998 2014-07-12  Paul Eggert  <eggert@cs.ucla.edu>
7000         Fix bug: C-x v v discarded existing log message (Bug#17884).
7001         * vc/vc-dispatcher.el (vc-log-edit):
7002         Don't clobber an already-existing log message.
7004 2014-07-12  Glenn Morris  <rgm@gnu.org>
7006         * vc/log-edit.el (log-edit-changelog-entries):
7007         Check for a visited-but-never-saved ChangeLog.
7009 2014-07-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7011         * vc/log-edit.el (log-edit-changelog-entries): Don't both visiting
7012         a non-existing file (bug#17970).
7014         * faces.el (face-name): Undo last change.
7015         (x-resolve-font-name): Don't call face-name (bug#17956).
7017 2014-07-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7019         Fix dedenters and electric colon handling.  (Bug#15163)
7020         * progmodes/python.el
7021         (python-rx-constituents): Add dedenter and block-ender.
7022         (python-indent-dedenters, python-indent-block-enders): Delete.
7023         (python-indent-context): Return new case for dedenter-statement.
7024         (python-indent-calculate-indentation): Handle new case.
7025         (python-indent-calculate-levels): Fix levels calculation for
7026         dedenter statements.
7027         (python-indent-post-self-insert-function): Fix colon handling.
7028         (python-info-dedenter-opening-block-message): New function.
7029         (python-indent-line): Use it.
7030         (python-info-closing-block)
7031         (python-info-closing-block-message): Remove.
7032         (python-info-dedenter-opening-block-position)
7033         (python-info-dedenter-opening-block-positions)
7034         (python-info-dedenter-statement-p): New functions.
7036 2014-07-11  Dmitry Antipov  <dmantipov@yandex.ru>
7038         * files.el (out-of-memory-warning-percentage): New defcustom.
7039         (warn-maybe-out-of-memory): Use it.
7041 2014-07-11  Michael Albinus  <michael.albinus@gmx.de>
7043         * subr.el (read-passwd): Use `read-hide-char' if non-nil.  Bind it
7044         when calling `read-string'.  (Bug#17839)
7046 2014-07-10  Eli Zaretskii  <eliz@gnu.org>
7048         * files.el (warn-maybe-out-of-memory): Fix the wording of the
7049         warning.
7051 2014-07-10  Dmitry Antipov  <dmantipov@yandex.ru>
7053         * files.el (warn-maybe-out-of-memory): New function.
7054         (find-file-noselect): Use it.
7056 2014-07-09  Sam Steingold  <sds@gnu.org>
7058         * progmodes/cperl-mode.el (cperl-block-p): Treat the perl keyword
7059         `constant' like `bless', `return' &c
7061 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7063         * rect.el (apply-on-rectangle): Check forward-line really moved to the
7064         next line.
7066 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7068         * progmodes/sh-script.el (sh-smie-sh-rules): Don't align with a && in
7069         the middle of a line (bug#17896).
7071 2014-07-09  Juri Linkov  <juri@jurta.org>
7073         * startup.el (command-line): Append displaying the warning about
7074         the errors in the init file to the end of `after-init-hook'.
7075         (Bug#17927)
7077         * faces.el (face-name): Return input arg `face' as-is
7078         when it's not a symbol.
7079         (x-resolve-font-name): Don't check if the face is a symbol.
7080         (Bug#17956)
7082         * facemenu.el (list-colors-print): In help-echo format use %.2f
7083         instead of %d because now HSV values are floating-point components
7084         between 0.0 and 1.0.
7086 2014-07-09  Glenn Morris  <rgm@gnu.org>
7088         * emulation/cua-rect.el (cua--activate-rectangle):
7089         Avoid setting cua--rectangle to nil.  (Bug#17877)
7091 2014-07-09  Stephen Berman  <stephen.berman@gmx.net>
7093         * calendar/todo-mode.el: Fix wrong-type-argument error when
7094         marking multiple consecutive items.
7095         (todo-toggle-mark-item): Don't try to mark the empty lines at the
7096         end of the todo and done items sections.  Note in doc string that
7097         items marked by passing a numeric prefix argument can include the
7098         last todo and first done items.
7099         (todo-mark-category): Don't try to mark the empty line between the
7100         todo and done items sections.
7102 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7104         * emacs-lisp/edebug.el (edebug-eval-defun): Print result using
7105         proper Lisp quoting (bug#17934).
7107         * progmodes/ruby-mode.el (ruby-mode-variables): Don't meddle with
7108         require-final-newline since prog-mode already took care of it (bug#17947).
7110 2014-07-09  Stephen Berman  <stephen.berman@gmx.net>
7112         * calendar/todo-mode.el: Fix two bugs.  Shorten Commentary and
7113         refer to the Todo mode Info manual.  Update the comment on
7114         requiring cl-lib.
7115         (todo-find-filtered-items-file): Add todo-prefix overlays.
7116         (todo-filter-items): Reorder a let-bound variable to avoid a
7117         wrong-type-argument error on canceling the file choice dialog.
7119 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7121         * progmodes/octave.el (inferior-octave-mode):
7122         Set comint-input-ring-size to a number (bug#17912).
7124 2014-07-09  Juri Linkov  <juri@jurta.org>
7126         * desktop.el (desktop-minor-mode-table): Add `defining-kbd-macro'
7127         and `isearch-mode' associated with nil.  (Bug#17849)
7129 2014-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7131         * linum.el (linum--face-height): New function (bug#17813).
7132         (linum-update-window): Use it to adjust margin to linum's width.
7134         * leim/quail/sisheng.el (sisheng-list): Don't bother with-case-table.
7135         * eshell/em-smart.el (eshell-smart-scroll-window):
7136         Use with-selected-window.
7138         * xt-mouse.el (xterm-mouse-translate-1): Intern drag event (bug#17894).
7139         Remove also pointless window&mark manipulation.
7141         * progmodes/perl-mode.el: Use syntax-ppss; fix one indentation case.
7142         (perl-indent-line): Use syntax-ppss to detect we're in a doc-section.
7143         (perl-continuation-line-p): Don't skip over anything else than labels.
7144         Return the previous char.
7145         (perl-calculate-indent): Use syntax-ppss instead of parse-start
7146         and update callers accordingly.  For continuation lines, check the
7147         the case of array hashes.
7148         (perl-backward-to-noncomment): Make it non-interactive.
7149         (perl-backward-to-start-of-continued-exp): Rewrite.
7151 2014-07-08  Sam Steingold  <sds@gnu.org>
7153         * progmodes/inf-lisp.el (lisp-eval-paragraph, lisp-eval-form-and-next):
7154         New user commands.
7156 2014-07-08  Juri Linkov  <juri@jurta.org>
7158         * vc/vc-annotate.el (vc-annotate-background-mode): New defcustom.
7159         (vc-annotate-color-map): Use less saturated colors (20%) for
7160         background-mode.
7161         (vc-annotate-very-old-color): Add default value for background-mode.
7162         (vc-annotate-background): Set default value to nil since now text on
7163         the default backgrounds should be legible in light and dark modes.
7164         (vc-annotate-lines): Use `vc-annotate-background-mode'.  Doc fix.
7165         (Bug#17808)
7167 2014-07-08  Juri Linkov  <juri@jurta.org>
7169         * simple.el (transpose-chars): Don't move point into read-only area.
7170         (Bug#17829)
7172 2014-07-08  Juri Linkov  <juri@jurta.org>
7174         * window.el (with-displayed-buffer-window): New macro.
7175         (with-temp-buffer-window, with-current-buffer-window):
7176         Use `macroexp-let2' to evaluate and bind variables
7177         in the same order as macro arguments.
7178         (display-buffer--action-function-custom-type):
7179         Add `display-buffer-below-selected' and `display-buffer-at-bottom'.
7181         * minibuffer.el (minibuffer-completion-help): Replace
7182         `with-output-to-temp-buffer' with `with-displayed-buffer-window'
7183         with actions that display *Completions* at-bottom when called
7184         from the minibuffer, or below-selected in a normal buffer.
7185         Associate `window-height' with `fit-window-to-buffer'.
7186         Let-bind `pop-up-windows' to nil.
7188         * dired.el (dired-mark-pop-up): Use `with-displayed-buffer-window'
7189         instead of `with-current-buffer-window'.  (Bug#17809)
7191 2014-07-07  Luke Lee  <luke.yx.lee@gmail.com>
7193         * progmodes/hideif.el (hide-ifdef-env): Change to global.
7194         (hide-ifdef-env-backup): New variable.
7195         (hide-ifdef-expand-reinclusion-protection, hide-ifdef-header-regexp):
7196         New customizable variables.
7197         (hif-clear-all-ifdef-defined): New defun.
7198         (hif-merge-ifdef-region, hide-ifdef-region-internal, hide-ifdef-region)
7199         (hif-show-ifdef-region): Merge hidden regions to prevent continuous "...".
7200         (hif-tokenize): Fix for MS-DOS/Win EOL style.
7201         (hif-endif-to-ifdef, hif-make-range, hif-find-range, hif-possibly-hide):
7202         Fix bug to hide the correct #elif region(s).
7203         (hif-range-elif): New defun.
7204         (hif-recurse-level): New var.
7205         (hif-evaluate-region, hif-evaluate-macro): New defun.
7206         (hide-ifdef-guts): Prevent reinclusion protected C/C++ headers from
7207         fully hidden.
7208         (hide-ifdef-define, hide-ifdefs, hide-ifdef-block, show-ifdef-block):
7209         Better interaction.
7211 2014-07-04  Michael Albinus  <michael.albinus@gmx.de>
7213         * net/dbus.el (dbus-peer-handler): New defun.
7214         (dbus-register-service): Register it.  (Bug#17858)
7215         (dbus-managed-objects-handler): Fix docstring.
7217 2014-07-04  Phil Sainty  <psainty@orcon.net.nz>
7219         * emacs-lisp/lisp.el (narrow-to-defun-include-comments): New var.
7220         (narrow-to-defun): New arg include-comments, defaulting to it
7221         (bug#16328).
7223 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7225         * rect.el (rectangle--highlight-for-redisplay): Don't pass `orig' with
7226         different calling convention to rectangle--unhighlight-for-redisplay.
7228 2014-07-03  Michael Albinus  <michael.albinus@gmx.de>
7230         * net/tramp.el (tramp-call-process): Handle error strings.
7232         * net/tramp-adb.el (tramp-adb-sh-fix-ls-output): Use `bolp'.
7234         * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime)
7235         (tramp-sh-handle-verify-visited-file-modtime): Use `point-at-eol'.
7237         * net/trampver.el: Update release number.
7239 2014-07-03  Juri Linkov  <juri@jurta.org>
7241         * desktop.el (desktop-save): Rename arg `auto-save' to
7242         `only-if-changed'.  Doc fix.  (Bug#17873)
7244 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7246         * mouse.el (mouse-yank-primary, mouse-yank-secondary):
7247         Use insert-for-yank (bug#17271).
7249 2014-07-03  Leo Liu  <sdl.web@gmail.com>
7251         * emacs-lisp/pp.el (pp-eval-expression, pp-eval-last-sexp):
7252         Support lexical-binding.
7254 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7256         * vc/log-edit.el (log-edit-goto-eoh): New function.
7257         (log-edit--match-first-line): Use it (bug#17861).
7259 2014-07-03  Glenn Morris  <rgm@gnu.org>
7261         * vc/log-edit.el (log-edit-hook): Add missing :version.
7263 2014-07-03  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7265         * progmodes/python.el (python-indent-post-self-insert-function):
7266         Enhancements to electric indentation behavior inside
7267         parens.  (Bug#17658)
7269 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7271         * ps-def.el (ps-generate-postscript-with-faces1): Don't mess with
7272         buffer-invisibility-spec (bug#17867).
7274 2014-07-03  Andreas Schwab  <schwab@linux-m68k.org>
7276         * vc/vc-git.el (vc-git-checkin): When operating on the whole tree
7277         pass "-a".
7279 2014-07-03  Glenn Morris  <rgm@gnu.org>
7281         * cus-edit.el (help):
7282         * finder.el (finder-known-keywords):
7283         * help.el (help-for-help-internal):
7284         * vc/ediff-mult.el (ediff-meta-buffer-verbose-message)
7285         (ediff-redraw-registry-buffer):
7286         * vc/ediff-ptch.el (ediff-patch-file-internal):
7287         Doc fixes re "online" help.  (Bug#17803)
7289         * progmodes/idlwave.el (idlwave): Update url-link for custom group.
7290         (idlwave-mode): Doc URL update.
7292 2014-07-01  Juri Linkov  <juri@jurta.org>
7294         * man.el: Display man pages immediately and use process-filter
7295         to format them asynchronously.
7296         (Man-width): Doc fix.
7297         (man): Doc fix.
7298         (Man-start-calling): Use `with-selected-window' to get
7299         `frame-width' and `window-width'.
7300         (Man-getpage-in-background): Call `Man-notify-when-ready'
7301         immediately after creating a new buffer.  Call `Man-mode' and set
7302         `mode-line-process' in the created buffer.  Set process-filter to
7303         `Man-bgproc-filter' in start-process branch.  In call-process branch
7304         call either `Man-fontify-manpage' or `Man-cleanup-manpage'.
7305         Use `Man-start-calling' inside `with-current-buffer'.
7306         (Man-fontify-manpage): Don't print messages.  Fix boundary condition.
7307         (Man-cleanup-manpage): Don't print messages.
7308         (Man-bgproc-filter): New function.
7309         (Man-bgproc-sentinel): Add `save-excursion' to keep point when
7310         user moved it during asynchronous formatting.  Move calls of
7311         `Man-fontify-manpage' and `Man-cleanup-manpage' to
7312         `Man-bgproc-filter'.  Move the call of `Man-mode' to
7313         `Man-getpage-in-background'.  Use `quit-restore-window'
7314         instead of `kill-buffer'.  Use `message' instead of `error'
7315         because errors are caught by process sentinel.
7316         (Man-mode): Move calls of `Man-build-page-list',
7317         `Man-strip-page-headers', `Man-unindent', `Man-goto-page' to
7318         `Man-bgproc-sentinel'.  Doc fix.  (Bug#2588, bug#5054, bug#9084, bug#17831)
7320         * man.el (Man-bgproc-sentinel): Use `Man-page-from-arguments'
7321         for the message about the man page cleaned up.
7323 2014-07-01  Mario Lang  <mlang@delysid.org>
7325         * net/gnutls.el (gnutls-negotiate): Prevent destructive modification of
7326         cosutomization option `gnutls-verify-error'.
7328 2014-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7330         * simple.el (deactivate-mark, set-mark-command, handle-shift-selection):
7331         Don't keep transient-mark-mode buffer-local when not needed (bug#6316).
7333         * xt-mouse.el (turn-on-xterm-mouse-tracking-on-terminal)
7334         (turn-off-xterm-mouse-tracking-on-terminal): Don't burp if the terminal
7335         is suspended (bug#17857).
7337 2014-07-01  Michael Albinus  <michael.albinus@gmx.de>
7339         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
7340         Prefer utf-8 coding.  (Bug#17859)
7342 2014-06-30  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7344         * emacs-lisp/subr-x.el (string-reverse): Define as obsolete alias
7345         for `reverse'.
7347 2014-06-30  Glenn Morris  <rgm@gnu.org>
7349         * emacs-lisp/autoload.el (autoload-ensure-writable): New variable.
7350         (autoload-ensure-default-file): Maybe make existing output writable.
7351         * Makefile.in (AUTOGEN_VCS): Remove.
7352         (autoloads): Use autoload-ensure-writable rather than AUTOGEN_VCS.
7354 2014-06-30  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7356         * emacs-lisp/subr-x.el (string-reverse): Use `reverse'.
7358 2014-06-30  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7360         New if-let, when-let, thread-first and thread-last macros.
7362         * emacs-lisp/subr-x.el
7363         (internal--listify, internal--check-binding)
7364         (internal--build-binding-value-form, internal--build-binding)
7365         (internal--build-bindings): New functions.
7366         (internal--thread-argument, thread-first, thread-last)
7367         (if-let, when-let): New macros.
7369 2014-06-30  Grégoire Jadi  <daimrod@gmail.com>
7371         * net/rcirc.el (rcirc-buffer-process): Restore previous
7372         behaviour.  (Bug#17772)
7374 2014-06-29  Alan Mackenzie  <acm@muc.de>
7376         Don't call c-parse-state when c++-template-syntax-table is active.
7377         * progmodes/cc-engine.el (c-guess-continued-construct CASE G)
7378         (c-guess-basic-syntax CASE 5D.3): Rearrange so that
7379         c-syntactic-skip-backwards isn't called with the pertinent syntax table.
7381 2014-06-28  Stephen Berman  <stephen.berman@gmx.net>
7383         * calendar/todo-mode.el (todo-set-top-priorities): Fix logic to
7384         account for file-wide setting of todo-top-priorities-overrides.
7385         Make code a bit cleaner.
7387 2014-06-28  Glenn Morris  <rgm@gnu.org>
7389         * net/eww.el (eww-mode) <eww-current-title>: Make local.  (Bug#17860)
7391 2014-06-28  Stephen Berman  <stephen.berman@gmx.net>
7393         * calendar/todo-mode.el (todo-prefix-overlays): If there is no
7394         category-wide setting of todo-top-priorities-overrides, check for
7395         a file-wide setting and fontify accordingly.
7397 2014-06-28  Glenn Morris  <rgm@gnu.org>
7399         * subr.el (read-passwd): Warn about batch mode.  (Bug#17839)
7401 2014-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7403         * progmodes/hideif.el: Use lexical-binding.  Fix up cl-lib usage.
7405 2014-06-28  K. Handa  <handa@gnu.org>
7407         Fix Bug#17739.
7409         * composite.el: Setup composition-function-table for dotted circle.
7410         (compose-gstring-for-dotted-circle): New function.
7412         * international/characters.el: Add category "^" to all
7413         non-spacing characters.
7415 2014-06-28  Glenn Morris  <rgm@gnu.org>
7417         * Makefile.in (doit): Remove force rule.
7418         (custom-deps, finder-data, autoloads, update-subdirs)
7419         (compile-one-process): PHONY targets do not need force rules.
7421         * Makefile.in (compile-main, compile, compile-always):
7422         No need to explicitly pass variables to ourself in recursive calls.
7424 2014-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7426         * files.el (minibuffer-with-setup-hook): Evaluate the first arg eagerly.
7428 2014-06-26  Glenn Morris  <rgm@gnu.org>
7430         * Makefile.in (update-authors): Update for moved authors.el.
7432 2014-06-26  Leo Liu  <sdl.web@gmail.com>
7434         * skeleton.el (skeleton-end-hook): Default to nil and move the
7435         work to skeleton-insert.  (Bug#17850)
7437 2014-06-26  Dmitry Antipov  <dmantipov@yandex.ru>
7439         * calc/calc-alg.el (math-beforep):
7440         * progmodes/cc-guess.el (c-guess-view-reorder-offsets-alist-in-style):
7441         Simplify because string-lessp can accept symbols as args.
7443 2014-06-26  Daiki Ueno  <ueno@gnu.org>
7445         * emacs-lisp/package.el (package--check-signature):
7446         If package-check-signature is allow-unsigned, don't signal error when
7447         we can't verify signature because of missing public key
7448         (bug#17625).
7450 2014-06-26  Glenn Morris  <rgm@gnu.org>
7452         * emacs-lisp/cl-macs.el (help-add-fundoc-usage):
7453         Remove outdated declaration.
7455         * emacs-lisp/authors.el (authors-valid-file-names)
7456         (authors-renamed-files-alist): Additions.
7458 2014-06-26  Leo Liu  <sdl.web@gmail.com>
7460         * textmodes/picture.el (picture-set-tab-stops):
7461         * ruler-mode.el (ruler-mode-mouse-add-tab-stop)
7462         (ruler-mode-ruler): Fix to work with nil tab-stop-list.
7464         * progmodes/asm-mode.el (asm-calculate-indentation):
7465         Use indent-next-tab-stop.
7467         * indent.el (indent-accumulate-tab-stops): New function.
7469 2014-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7471         * emacs-lisp/package.el (package-list-unsigned): New var (bug#17625).
7472         (package-desc-status): Obey it.
7474 2014-06-26  Stephen Berman  <stephen.berman@gmx.net>
7476         * calendar/todo-mode.el: Fix two bugs.
7477         (todo-insert-item--basic): If user cancels item insertion to
7478         another category before setting priority, show original category
7479         whether it is in the same or a different file.
7480         (todo-set-item-priority): After selecting category, instead of
7481         moving point to top, which extends an active region, restore it.
7483 2014-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7485         * help-fns.el (describe-function-1): Check file-name is a string before
7486         calling help-fns--autoloaded-p (bug#17564).
7488 2014-06-26  Juri Linkov  <juri@jurta.org>
7490         * desktop.el (desktop-auto-save-enable)
7491         (desktop-auto-save-disable): New functions.
7492         (desktop-save-mode, desktop-auto-save-timeout): Use them.
7493         (desktop-read): Disable the autosave before loading the desktop,
7494         and enable afterwards.  (Bug#17351)
7496 2014-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7498         Fix some indentation problem with \; and pipes (bug#17842).
7499         * progmodes/sh-script.el (sh-mode-syntax-table): Set syntax of ;|&.
7500         (sh-smie--default-forward-token, sh-smie--default-backward-token):
7501         New functions.
7502         (sh-smie-sh-forward-token, sh-smie-sh-backward-token)
7503         (sh-smie-rc-forward-token, sh-smie-rc-backward-token): Use them.
7504         (sh-smie-sh-rules): Fix indentation of a pipe at BOL.
7506 2014-06-26  Glenn Morris  <rgm@gnu.org>
7508         * emacs-lisp/find-func.el (find-function-C-source-directory):
7509         Use file-accessible-directory-p.
7511         * ps-samp.el: Make it slightly less awful.
7512         (ps-rmail-mode-hook, ps-gnus-article-prepare-hook, ps-vm-mode-hook):
7513         (ps-gnus-summary-setup, ps-info-mode-hook): Use [print] key.
7514         Only set local values.
7515         (ps-article-subject, ps-article-author): Use standard functions
7516         like mail-fetch-field.
7517         (ps-info-file, ps-info-node): Use match-string.
7518         (ps-jts-ps-setup, ps-jack-setup): Remove, merging into...
7519         (ps-samp-ps-setup): ... new function.
7521         * progmodes/idlw-shell.el (idlwave-shell-make-temp-file):
7522         Optimize away code unneeded on any modern Emacs.
7524         * emacs-lisp/authors.el: Move to ../admin.
7526         * emacs-lisp/ert.el (ert-summarize-tests-batch-and-exit): New.
7528 2014-06-26  Luke Lee  <luke.yx.lee@gmail.com>
7530         * progmodes/hideif.el (hif-string-to-number): Fix return value bug.
7531         (hif-simple-token-only, hif-tokenize): Comment in detail mainly for
7532         performance enhancements.
7533         (hif-parse-if-exp): Rename to `hif-parse-exp'.  Enhance for macro
7534         expansion.
7535         (hif-factor, hif-string-concatenation, intern-safe): Support string
7536         concatenation and argumented macro expansion.
7537         (hif-if-valid-identifier-p, hif-define-operator, hif-flatten)
7538         (hif-expand-token-list, hif-get-argument-list, hif-define-macro)
7539         (hif-delimit, hif-macro-supply-arguments, hif-invoke, hif-canonicalize)
7540         (hif-canonicalize-tokens, hif-place-macro-invocation)
7541         (hif-parse-macro-arglist): Mostly new functions for supporting
7542         argumented macro expansion.
7543         (hif-string-concatenation, hif-stringify, hif-token-concat)
7544         (hif-token-stringification, hif-token-concatenation):
7545         Stringification and concatenation.
7546         (hif-find-next-relevant): Fix comments.
7547         (hif-ifdef-to-endif, hif-looking-at-elif, hif-hide-line): Bug fix for
7548         some cases involving #elif.
7549         (hif-find-define, hif-add-new-defines): New functions for automatically
7550         scanning of defined symbols.
7551         (hide-ifdef-guts): Fix for defined symbol auto scanning.
7552         (hide-ifdef-undef): Fix behavior to match CPP.
7554 2014-06-25  Glenn Morris  <rgm@gnu.org>
7556         * Makefile.in ($(lisp)/progmodes/cc-defs.elc)
7557         ($(lisp)/progmodes/cc-fonts.elc, $(lisp)/progmodes/cc-langs.elc)
7558         ($(lisp)/progmodes/cc-vars.elc): Drop hand-written deps on non-cc
7559         files.  They are not relevant to the original issue (bug#1004),
7560         and cause unnecessary recompilation (bug#2151).
7562 2014-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
7564         * play/landmark.el: Use lexical-binding and avoid `intangible'.
7565         (landmark--last-pos): New var.
7566         (landmark--intangible-chars): New const.
7567         (landmark--intangible): New function.
7568         (landmark-mode, landmark-move): Use it.
7569         (landmark-mode): Remove properties.
7570         (landmark-plot-square, landmark-point-square, landmark-goto-xy)
7571         (landmark-cross-qtuple):
7572         Don't worry about `intangible' any more.
7573         (landmark-click, landmark-point-y): Same; and don't assume point-min==1.
7574         (landmark-init-display): Don't set `intangible' and `point-entered'.
7575         (square): Remove.  Inline it instead.
7576         (landmark--distance): Rename from `distance'.
7577         (landmark-calc-distance-of-robot-from): Rename from
7578         calc-distance-of-robot-from.
7579         (landmark-calc-smell-internal): Rename from calc-smell-internal.
7581 2014-06-25  Dmitry Antipov  <dmantipov@yandex.ru>
7583         * files.el (dir-locals-find-file, file-relative-name):
7584         * info.el (Info-complete-menu-item):
7585         * minibuffer.el (completion-table-subvert): Prefer string-prefix-p
7586         to compare-strings to avoid out-of-range errors.
7587         * subr.el (string-prefix-p): Adjust to match strict range
7588         checking in compare-strings.
7590 2014-06-24  Leonard Randall  <leonard.a.randall@gmail.com>  (tiny change)
7592         * textmodes/reftex-parse.el (reftex-using-biblatex-p): Make search
7593         for comment lines non-greedy and stopping at newlines to fix stack
7594         overflows with large files.
7596 2014-06-24  Eli Barzilay  <eli@barzilay.org>
7598         * calculator.el (calculator-last-input): Drop 'ascii-character property
7599         lookup.
7601 2014-06-24  Leo Liu  <sdl.web@gmail.com>
7603         * align.el (align-adjust-col-for-rule): Unbreak due to defaulting
7604         tab-stop-list to nil.  (Bug#16381)
7606         * indent.el (indent-next-tab-stop): Rename from indent--next-tab-stop.
7607         (indent-rigidly-left-to-tab-stop)
7608         (indent-rigidly-right-to-tab-stop, tab-to-tab-stop)
7609         (move-to-tab-stop): Change callers.
7611 2014-06-24  Eli Zaretskii  <eliz@gnu.org>
7613         * skeleton.el (skeleton-insert): Yet another fix of the doc string
7614         wrt behavior of \n as the first/last element of a skeleton.
7616 2014-06-24  Michael Albinus  <michael.albinus@gmx.de>
7618         * net/tramp-adb.el (tramp-adb-handle-process-file):
7619         * net/tramp-sh.el (tramp-sh-handle-process-file):
7620         * net/tramp-smb.el (tramp-smb-handle-process-file): Do not raise
7621         the output buffer when DISPLAY is non-nil.  (Bug#17815)
7623 2014-06-24  Glenn Morris  <rgm@gnu.org>
7625         * play/landmark.el (landmark-move-down, landmark-move-up):
7626         Fix 2007-10-20 change - preserve horizontal position.
7628 2014-06-23  Sam Steingold  <sds@gnu.org>
7630         * simple.el (kill-append): Remove undo boundary depending on ...
7631         (kill-append-merge-undo): New user option.
7633 2014-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
7635         * simple.el (handle-shift-selection, exchange-point-and-mark)
7636         (activate-mark): Set transient-mark-mode buffer-locally (bug#6316).
7637         (transient-mark-mode): Use&set the global value.
7638         * mouse.el (mouse-set-region-1, mouse-drag-track): Idem.
7639         * emulation/edt.el (edt-emulation-off): Save&restore the global
7640         transient-mark-mode setting.
7641         * obsolete/pc-select.el (pc-selection-mode): Use the
7642         transient-mark-mode function.
7644 2014-06-23  Eli Zaretskii  <eliz@gnu.org>
7646         * international/fontset.el (script-representative-chars):
7647         Add representative characters for scripts added in Unicode 7.0.
7648         (otf-script-alist): Synchronize with the latest registry of OTF
7649         script tags.
7651         * international/characters.el (char-script-table): Update for
7652         scripts added and codepoint ranges changed in Unicode 7.0.
7654 2014-06-23  Eli Barzilay  <eli@barzilay.org>
7656         * calculator.el (calculator-standard-displayer): Fix bug in use of
7657         `calculator-groupize-number'.
7658         (calculator-funcall): Fix broken `cl-flet' use by moving it into the
7659         `eval' code, so it works in v24.3.1 too.
7660         (calculator-last-input): Comment to clarify purpose.
7662 2014-06-22  Mario Lang  <mlang@delysid.org>
7664         * textmodes/rst.el (rst-comment-region): From from -> from.
7666         * net/tramp-adb.el (tramp-adb-send-command-and-check): And and -> and.
7668 2013-06-22  Dmitry Antipov  <dmantipov@yandex.ru>
7670         * electric.el (electric-layout-post-self-insert-function):
7671         * emacs-lisp/ert.el (ert--insert-infos):
7672         * obsolete/vi.el (vi-set-mark):
7673         * term.el (term-handle-scroll):
7674         * textmodes/bibtex.el (bibtex-fill-field, bibtex-fill-entry):
7675         * wid-edit.el (widget-editable-list-value-create):
7676         Prefer point-marker to copy-marker of point.
7678 2014-06-21  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7680         Fix completion retrieval parsing (bug#17209).
7681         * progmodes/python.el (python-mode):
7682         (python-util-strip-string): New function.
7683         (python-shell-completion-get-completions): Use it.
7685 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
7687         * skeleton.el (skeleton-insert): Fix last change.
7689 2014-06-21  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7691         Enhancements for outline integration (bug#17796).
7692         * progmodes/python.el (python-mode): Properly set
7693         outline-heading-end-regexp so that comments after colons for
7694         defuns are supported.
7696 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
7698         * skeleton.el (skeleton-insert): Doc fix.
7700 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7702         * emacs-lisp/smie.el (smie-config--guess): Fix typo.
7703         (smie-config-guess): Use smie-config-local so the rules are obeyed
7704         (bug#17818).
7706         * mouse.el (mouse-drag-line): Don't re-add to unread-comment-events,
7707         since it's already done inside the loop (bug#17819).
7709 2014-06-21  Martin Rudalics  <rudalics@gmx.at>
7711         * mouse.el (mouse-drag-line): Re-remove code initially removed
7712         on 2013-03-09 and inadvertently reintroduced on 2013-11-30
7713         (Bug#17819).
7715 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7717         * progmodes/sh-script.el (sh-smie-sh-rules): For { after &&, don't
7718         align with the surrounding parent (bug#17721).
7720 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
7722         * textmodes/texinfo.el (texinfo-mode): Set skeleton-end-newline
7723         locally to nil.
7724         (texinfo-insert-block, texinfo-insert-@end)
7725         (texinfo-insert-@example, texinfo-insert-@quotation): Adjust to
7726         local setting of skeleton-end-newline by adding an explicit \n to
7727         the skeletons where appropriate.  (Bug#17801)
7729 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7731         * emacs-lisp/smie.el (smie--hanging-eolp-function): New var.
7732         (smie-indent--hanging-p): Use it.
7733         * progmodes/sh-script.el (sh-set-shell): Set it (bug#17621).
7735 2014-06-21  Leo Liu  <sdl.web@gmail.com>
7737         * simple.el (read-quoted-char): Don't let help chars pop up help
7738         buffer.  (Bug#16617)
7740 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7742         * progmodes/sh-script.el (sh-smie-sh-rules): Use same rule for && as
7743         for | (bug#17621).
7745         * xt-mouse.el (xterm-mouse--read-event-sequence-1000):
7746         Drop unknown events instead of burping.
7748 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
7750         * term/w32-win.el (dynamic-library-alist): Support giflib 5.1.0
7751         and later.  (Bug#17790)
7753 2014-06-21  Juri Linkov  <juri@jurta.org>
7755         * dired.el (dired-mark-pop-up): Let-bind display-buffer-mark-dedicated
7756         to `soft'.  (Bug#17554)
7758 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7760         * delsel.el (electric-newline-and-maybe-indent): Mark it as well
7761         (bug#17737).
7763 2014-06-21  Dmitry Gutov  <dgutov@yandex.ru>
7765         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Don't fontify
7766         `!' in `!~' with `font-lock-negation-char-face'.  (Bug#17732)
7768 2014-06-21  Michael Albinus  <michael.albinus@gmx.de>
7770         * net/dbus.el (dbus-call-method): Push only non D-Bus events into
7771         `unread-command-events'.
7773 2014-06-19  William Xu  <william.xwl@gmail.com>
7775         * progmodes/hideif.el (hif-string-to-number): Don't return float for
7776         hex integer constants (bug#17807).
7778 2014-06-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7780         * international/mule-util.el (truncate-string-ellipsis): New var.
7781         (truncate-string-to-width): Use it.
7783 2014-06-19  Robert Brown  <robert.brown@gmail.com>  (tiny change)
7785         * emacs-lisp/lisp-mode.el (lisp-string-after-doc-keyword-p): New fun.
7786         (lisp-string-in-doc-position-p): New function, extracted from
7787         lisp-font-lock-syntactic-face-function.
7788         (lisp-font-lock-syntactic-face-function): Use them (bug#9130).
7790 2014-06-19  Grégoire Jadi  <daimrod@gmail.com>
7792         * net/rcirc.el (rcirc-omit-mode): Fix recenter error.  (Bug#17769)
7794 2014-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7796         * play/bubbles.el (bubbles--initialize, bubbles--show-scores)
7797         (bubbles--game-over): Don't add `intangible' properties since they
7798         didn't work anyway.
7800 2014-06-18  Juri Linkov  <juri@jurta.org>
7802         * vc/ediff-init.el (ediff-current-diff-Ancestor)
7803         (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
7804         (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
7805         (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
7806         Add `min-colors 88' version with removed black/white foregrounds.
7807         (Bug#10181)
7809 2014-06-18  Juri Linkov  <juri@jurta.org>
7811         * vc/diff-mode.el (diff-changed): Empty face definition to use
7812         `diff-removed' and `diff-added' on tty as well.  (Bug#10181)
7813         (diff-context): Use darker color on light background and
7814         lighter color on dark background.
7816 2014-06-18  Juri Linkov  <juri@jurta.org>
7818         * vc/diff-mode.el (diff-refine-changed): Rename from
7819         `diff-refine-change' for consistency with `diff-changed'.
7820         (diff-refine-change): Add obsolete face alias.  (Bug#10181)
7822         * vc/smerge-mode.el (smerge-refined-changed): Rename from
7823         `smerge-refined-change'.
7824         (smerge-refined-change): Add obsolete face alias.
7826 2014-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7828         * rect.el (rectangle-preview): New custom.
7829         (rectangle): New group.
7830         (rectangle--pos-cols): Add `window' argument.
7831         (rectangle--string-preview-state, rectangle--string-preview-window):
7832         New vars.
7833         (rectangle--string-flush-preview, rectangle--string-erase-preview)
7834         (rectangle--space-to, rectangle--string-preview): New functions.
7835         (string-rectangle): Use them.
7836         (rectangle--inhibit-region-highlight): New var.
7837         (rectangle--highlight-for-redisplay): Obey it.  Make sure
7838         `apply-on-region' uses the point-crutches of the right window.
7839         Use :align-to rather than multiple spaces.
7841 2014-06-16  Andrea Rossetti  <andrea.rossetti@gmail.com>  (tiny change)
7843         * ruler-mode.el (ruler-mode-window-col)
7844         (ruler-mode-mouse-set-left-margin)
7845         (ruler-mode-mouse-set-right-margin): Fix calculation of column
7846         from mouse position (Bug#17768).
7848 2014-06-16  Ron Schnell  <ronnie@driver-aces.com>
7850         * play/dunnet.el (dun-doassign): Fix bug where UNIX variable assignment
7851         without varname or rhs causes crash.
7852         (dun-ftp): Fix bug where blank ftp password is allowed, making it
7853         impossible to win endgame.
7854         (dun-unix-verbs): Add ssh as alias to rlogin, because nobody knows what
7855         rlogin is anymore.
7856         (dun-help): Bump version number; update contact info.
7858 2014-06-15  Eli Barzilay  <eli@barzilay.org>
7860         * calculator.el (calculator-prompt, calculator-remove-zeros)
7861         (calculator-mode-hook, calculator-operators, calculator-stack)
7862         (calculator-mode): Tweak docstring.
7863         (calculator-user-operators): Tweak docstring, fix a bug in the last
7864         example.
7865         (calculator-displayer): `std' case has an optional boolean.
7866         (calculator-displayers): Use the new boolean to group in decimal mode.
7867         (calculator-mode-map, calculator, calculator-message)
7868         (calculator-op-arity, calculator-add-operators)
7869         (calculator-string-to-number, calculator-displayer-prev)
7870         (calculator-displayer-next, calculator-remove-zeros)
7871         (calculator-eng-display, calculator-number-to-string)
7872         (calculator-update-display, calculator-last-input)
7873         (calculator-clear-fragile, calculator-digit, calculator-decimal)
7874         (calculator-exp, calculator-saved-move, calculator-clear)
7875         (calculator-copy, calculator-put-value, calculator-help)
7876         (calculator-expt, calculator-truncate): Minor code improvements.
7877         (calculator-need-3-lines): New function pulling out code from
7878         `calculator'.
7879         (calculator-get-display): Rename from `calculator-get-prompt', and
7880         improved.
7881         (calculator-push-curnum): Rename from `calculator-curnum-value', and
7882         extended for all uses of it.  All callers changed.
7883         (calculator-groupize-number): New utility for splitting a number into
7884         groups.
7885         (calculator-standard-displayer): Improve code, new optional argument to
7886         use comma-split groups, make second argument optional too to use with
7887         'left/'right inputs.  All callers changed.
7888         (calculator-reduce-stack-once): New utility, doing the meat of what
7889         `calculator-reduce-stack' used to do, much improved (mostly using
7890         `pcase' for conciseness and clarity).
7891         (calculator-reduce-stack): Now doing just the reduction loop using
7892         `calculator-reduce-stack-once'.
7893         (calculator-funcall): Improve code, make it work in v24.3.1 too.
7894         (calculator-last-input): Improve code, remove some old cruft.
7895         (calculator-quit): Kill `calculator-buffer' in electric mode too.
7896         (calculator-integer-p): Remove.
7897         (calculator-fact): Improve code, make it work on non-integer values
7898         too (using truncated numbers).
7900 2014-06-15  Michael Albinus  <michael.albinus@gmx.de>
7902         Sync with Tramp 2.2.10.
7904         * net/tramp.el (tramp-methods): Tweak docstring.
7905         (tramp-handle-file-accessible-directory-p): Check for
7906         `file-readable-p' instead of `file-executable-p'.
7907         (tramp-check-cached-permissions):
7908         Use `tramp-compat-file-attributes'.
7909         (tramp-call-process): Add new argument VEC.  Adapt callees in all
7910         tramp*.el files.
7912         * net/tramp-adb.el (tramp-adb-handle-write-region): Improve messages.
7913         (tramp-adb-maybe-open-connection): Don't set
7914         `tramp-current-*' variables.
7916         * net/tramp-cache.el (tramp-flush-file-function): Do not flush
7917         file properties of temporary buffers.
7919         * net/tramp-ftp.el (top): Remove special handling for URL syntax.
7921         * net/tramp-gvfs.el (tramp-gvfs-methods) <sftp>: Add.
7922         (tramp-gvfs-handle-delete-file): Flush file
7923         properties, not directory properties.
7924         (tramp-gvfs-handle-file-attributes): Use `string-to-number' when
7925         reading "unix::mode".
7926         (tramp-gvfs-handle-file-name-all-completions):
7927         Use "-h" option for "gvfs-ls".
7928         (tramp-gvfs-url-file-name): `user' and `localname' could be nil.
7929         (tramp-gvfs-send-command): Simplify traces.
7931         * net/tramp-sh.el (vc-handled-backends, vc-bzr-program)
7932         (vc-git-program, vc-hg-program): Declare.
7933         (tramp-methods) <sftp>: Remove.  It has never worked satisfactorily.
7934         (tramp-methods) <nc>: Add new method.
7935         (tramp-methods) <telnet>: Redirect stderr to "/dev/null".
7936         (tramp-methods) <plink, plinkx, pscp, psftp>: Improve
7937         `tramp-login-args'.
7938         (tramp-default-user-alist): Add "nc".
7939         (top): Remove completion function for "sftp".  Add completion
7940         functions for "nc" and "psftp".
7941         (tramp-do-copy-or-rename-file-out-of-band): Tweak docstring.
7942         Implement support for "nc" method.
7943         (tramp-sh-handle-expand-file-name, tramp-local-coding-commands)
7944         (tramp-remote-coding-commands, tramp-call-local-coding-command):
7945         Tweak docstring.
7946         (tramp-sh-handle-write-region): Tweak error message.
7947         (tramp-sh-handle-vc-registered): Remove backends when the remote
7948         binary does not exist.
7949         (tramp-find-inline-encoding): Do not raise an error.
7950         (tramp-make-copy-program-file-name): Tweak docstring.  Handle also
7951         the "nc" case.  Quote result also locally.
7953         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
7954         (tramp-smb-handle-set-file-acl): Use `start-process'.
7955         (tramp-smb-handle-insert-directory): Use progress reporter.
7956         (tramp-smb-handle-rename-file): Flush also file properties of
7957         FILENAME.
7959         * net/trampver.el: Update release number.
7961 2014-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
7963         * ses.el: Miscellaneous cleanups; use lexical-binding; avoid
7964         add-to-list.
7965         (ses-localvars): Remove ses--local-printer-list, unused.
7966         (ses--metaprogramming): New macro.  Use it to defvar variables.
7967         (ses-set-localvars): Simplify.
7968         (ses--locprn, ses-cell): Use defstruct.  Change ses-cell's
7969         property-list into an alist.
7970         (ses-locprn-get-compiled, ses-locprn-compiled-aset)
7971         (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number):
7972         Remove; use defstruct accessors/setters instead.
7973         (ses-cell-formula-aset, ses-cell-printer-aset)
7974         (ses-cell-references-aset): Remove, use setf instead.
7975         (ses--alist-get): New function.
7976         (ses-cell-property): Rename from ses-cell-property-get and rewrite.
7977         Use an alist instead of a plist and don't do move-to-front since the
7978         list is always short.
7979         (ses-cell-property-get-fun, ses-cell-property-delq-fun)
7980         (ses-cell-property-set-fun, ses-cell-property-set)
7981         (ses-cell-property-pop-fun, ses-cell-property-get-handle)
7982         (ses-cell-property-handle-car, ses-cell-property-handle-setcar): Remove.
7983         (ses--letref): New macro.
7984         (ses-cell-property-pop): Rewrite.
7985         (ses--cell): Rename from ses-cell and make it into a function.
7986         Make `formula' fallback on `value' if nil.
7987         (ses--local-printer): Rename from ses-local-printer and make it into
7988         a function.
7989         (ses-set-cell): Turn it into a macro so finding the accessor from the
7990         field name is done at compile time.
7991         (ses-repair-cell-reference-all): Test presence of `sym' rather than
7992         `ref' before adding `sym' to :ses-repair-reference.
7993         (ses-calculate-cell): Use ses--letref rather than
7994         ses-cell-property-get-handle.
7995         (ses-write-cells): Use a single prin1-to-string.
7996         (ses-setter-with-undo): New function.
7997         (ses-aset-with-undo, ses-set-with-undo): Rewrite using it.
7998         (ses-unset-with-undo): Remove.
7999         (ses-load): Prefer apply' over `eval'.
8000         (ses-read-printer, ses-set-column-width): Use standard "(default
8001         foo)" format.
8003 2014-06-15  Glenn Morris  <rgm@gnu.org>
8005         * Makefile.in (leim, semantic): Use `make -C' rather than `cd && make'.
8007         * progmodes/cc-langs.el: Require cl-lib.  (Bug#17463)
8008         Replace delete-duplicates and mapcan by cl- versions throughout.
8009         And cl-macroexpand-all by macroexpand-all.
8010         (delete-duplicates, mapcan, cl-macroexpand-all): No need to declare.
8012 2014-06-15  Eli Zaretskii  <eliz@gnu.org>
8014         * subr.el (posn-col-row): Doc fix.  (Bug#17768)
8016 2014-06-15  Juri Linkov  <juri@jurta.org>
8018         * bindings.el: Put `ascii-character' property on keypad keys
8019         mapped to characters.  (Bug#17759)
8021 2014-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8023         * emacs-lisp/smie.el (smie-next-sexp): Fix up "other-end" info when
8024         bumping forward into a closing paren (bug#17761).
8026         * term/xterm.el (xterm--version-handler): Work around for OSX
8027         Terminal.app (bug#17607).
8029 2014-06-14  Ron Schnell  <ronnie@driver-aces.com>
8031         * play/dunnet.el (dun-describe-room, dun-mode):
8032         If a lamp is in the room, you won't be eaten by a grue.
8034 2014-06-13  Glenn Morris  <rgm@gnu.org>
8036         * Makefile.in ($(lisp)/cus-load.el, $(lisp)/finder-inf.el)
8037         (autoloads, $(lisp)/subdirs.el, compile-main, leim, semantic, compile)
8038         (compile-always): GNU make automatically passes
8039         command-line arguments to sub-makes.
8041         * calendar/calendar.el (calendar-generate-window):
8042         Remove pointless call to font-lock-fontify-buffer.
8044 2014-06-13  Matthias Meulien  <orontee@gmail.com>
8046         * simple.el (completion-list-mode-map): Navigate with tab and backtab
8047         (bug#17767).
8049 2014-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8051         * simple.el (set-mark-command): Simplify a bit.
8053 2014-06-12  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
8055         * help.el (help--key-binding-keymap): New function.
8056         (help--binding-locus): New function.
8057         (describe-key): Mention the keymap in which the binding was
8058         found.  (bug#13948)
8060 2014-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8062         * hippie-exp.el (he--all-buffers): New function.
8063         (try-expand-line-all-buffers, try-expand-list-all-buffers)
8064         (try-expand-dabbrev-all-buffers): Use it.
8066 2014-06-12  Emilio C. Lopes  <eclig@gmx.net>
8068         * hippie-exp.el (try-expand-line-all-buffers)
8069         (try-expand-list-all-buffers, try-expand-dabbrev-all-buffers):
8070         Read hippie-expand-only-buffers and hippie-expand-ignore-buffers in the
8071         original buffer, in case they're buffer-local.
8073 2014-06-12  Vincent Belaïche  <vincentb1@users.sourceforge.net>
8075         * ses.el (ses-initial-global-parameters-re): New defconst, a
8076         specific regexp is needed now that ses.el can handle both
8077         file-format 2 --- ie. no local printers --- and 3 --- i.e. may have
8078         local printers.
8079         (ses-localvars): Add local variables needed for local printer handling.
8080         (ses-set-localvars): Handle hashmap initialisation.
8081         (ses-paramlines-plist): Add param-line for number of local printers.
8082         (ses-paramfmt-plist): New defconst, needed for code factorization
8083         between functions `ses-set-parameter' and
8084         `ses-file-format-extend-paramter-list'
8085         (ses-make-local-printer-info): New defsubst.
8086         (ses-locprn-get-compiled, ses-locprn-compiled-aset)
8087         (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number)
8088         (ses-cell-printer-aset): New defmacro.
8089         (ses-local-printer-compile): New defun.
8090         (ses-local-printer): New defmacro.
8091         (ses-printer-validate, ses-call-printer): Add support for local
8092         printer functions.
8093         (ses-file-format-extend-paramter-list): New defun.
8094         (ses-set-parameter): Use const `ses-paramfmt-plist' for code
8095         factorization.
8096         (ses-load): Add support for local printer functions.
8097         (ses-read-printer): Update docstring and add support for local printer
8098         functions.
8099         (ses-refresh-local-printer, ses-define-local-printer): New defun.
8100         (ses-safe-printer): Add support for local printer functions.
8102 2014-06-12  Ivan Andrus  <darthandrus@gmail.com>
8104         * ffap.el (ffap-lax-url): New var (bug#17723).
8105         (ffap-url-at-point): Use it.
8106         (ffap-file-at-point): Avoid returning just "/".
8108 2014-06-12  Matthias Meulien  <orontee@gmail.com>
8110         * progmodes/python.el (import skeleton): New skeleton (bug#17672).
8111         (python-mode-map): Bind it.
8113         * progmodes/python.el (class skeleton): Don't erase last char of class
8114         name (bug#17683).
8116 2014-06-12  Cameron Desautels  <camdez@gmail.com>  (tiny change)
8118         * help.el (where-is): Use `default' arg of completing-read (bug#17705).
8120 2014-06-12  Kevin Ryde  <user42_kevin@yahoo.com.au>
8122         * files.el (auto-mode-alist): Map .ad files to xdefaults-mode
8123         (bug#17745).
8125 2014-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8127         * international/mule-cmds.el: Use lexical-binding.
8128         (ucs-names): Simplify.
8130 2014-05-18  Eric Hanchrow  <eric.hanchrow@gmail.com>
8132         * progmodes/python.el (run-python): Use read-shell-command.
8134 2014-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8136         * rect.el: Make it possible to move bounds past EOL or into TABs.
8137         (operate-on-rectangle): Use apply-on-rectangle.
8138         (rectangle--mark-crutches): New var.
8139         (rectangle--pos-cols, rectangle--col-pos, rectangle--point-col)
8140         (rectangle--crutches, rectangle--reset-crutches): New functions.
8141         (apply-on-rectangle): Obey crutches.  Avoid setq.
8142         Fix missing final iteration if end is at EOB&BOL.
8143         (rectangle-mark-mode-map): Add remap bindings for
8144         exchange-point-and-mark and char/line movements.
8145         (rectangle--*-char): New function.
8146         (rectangle-exchange-point-and-mark, rectangle-right-char)
8147         (rectangle-left-char, rectangle-forward-char)
8148         (rectangle-backward-char, rectangle-next-line)
8149         (rectangle-previous-line): New commands.
8150         (rectangle--place-cursor): New function.
8151         (rectangle--highlight-for-redisplay): Use it.  Use apply-on-rectangle.
8153 2014-06-08  Glenn Morris  <rgm@gnu.org>
8155         * startup.el (initial-buffer-choice): Doc fix.
8156         Reset :version (adding an option does not merit a :version bump).
8158         * bookmark.el (bookmark-load):
8159         * uniquify.el (uniquify-buffer-name-style): Doc fixes.
8161 2014-06-08  Juri Linkov  <juri@jurta.org>
8163         * desktop.el: Activate auto-saving on window configuration changes.
8164         (desktop-save-mode, desktop-auto-save-timeout): Add/remove
8165         `desktop-auto-save-set-timer' to/from
8166         `window-configuration-change-hook'.
8167         (desktop-auto-save-set-timer): Change REPEAT arg of
8168         `run-with-idle-timer' from t to nil.
8169         http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00147.html
8171 2014-06-08  Santiago Payà i Miralta  <santiagopim@gmail.com>
8173         * vc/vc-hg.el (vc-hg-working-revision): Use "hg parent" and
8174         vc-hg-command (bug#17570).
8176 2014-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8178         * international/mule-cmds.el (ucs-names): Add special entry for BEL
8179         (bug#17702).
8181 2014-06-08  Glenn Morris  <rgm@gnu.org>
8183         * startup.el (window-setup-hook): Doc fix.
8185         * emacs-lisp/package.el (package-check-signature)
8186         (package-unsigned-archives): Doc fixes.
8188 2014-06-08  Martin Rudalics  <rudalics@gmx.at>
8190         * window.el (display-buffer-use-some-window): Don't make window
8191         used smaller than it was before (Bug#17671).
8193 2014-06-08  Eli Zaretskii  <eliz@gnu.org>
8195         * menu-bar.el (menu-bar-open): Fix last change: use the PC
8196         'redisplay' instead of '(sit-for 0)'.
8198 2014-06-08  Michael Albinus  <michael.albinus@gmx.de>
8200         * net/tramp.el (tramp-ssh-controlmaster-options):
8201         Improve search regexp.  (Bug#17653)
8203 2014-06-08  Glenn Morris  <rgm@gnu.org>
8205         * emacs-lisp/package.el (package-pinned-packages): Doc fix.
8207 2014-06-08  Eli Zaretskii  <eliz@gnu.org>
8209         * menu-bar.el (menu-bar-open): Fix invocation via M-x.
8211 2014-06-06  Santiago Payà i Miralta  <santiagopim@gmail.com>
8213         * vc/vc-hg.el (vc-hg-create-tag, vc-hg-retrieve-tag): New functions
8214         (bug#17586).
8216         * vc/vc-hg.el (vc-hg-log-graph): New var.
8217         (vc-hg-print-log): Use it.
8218         (vc-hg-root-log-format): Include branch name and bookmarks; ignore
8219         graph output (bug#17515).
8221 2014-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8223         * mouse.el (mouse-posn-property): Ignore buffer position info when the
8224         even happened elsewhere.
8226 2014-06-06  Mario Lang  <mlang@delysid.org>
8228         * emacs-lisp/tabulated-list.el (tabulated-list-print): Only call
8229         `recenter' if `current-buffer' is equal to `window-buffer'.
8231 2014-06-05  Leo Liu  <sdl.web@gmail.com>
8233         * emacs-lisp/cl-macs.el (cl-macrolet): Avoid excessive progn's.
8235 2014-06-05  Michal Nazarewicz  <mina86@mina86.com>
8237         * textmodes/tildify.el (tildify-foreach-region-outside-env):
8238         New function which calls a callback on portions of the buffer that are
8239         outside of ignored environments.
8240         (tildify-build-regexp): Remove function since it is now
8241         incorporated in `tildify-foreach-region-outside-env' where it is
8242         optimized and simplified by the use of `mapconcat'.
8243         (tildify-tildify): Return number of substitutions made so that…
8244         (tildify-count): …can be removed.
8245         (tildify-find-env): Accept a new PAIRS argument which was
8246         previously looked up in `tildify-ignored-environments-alist' each
8247         time the function was called.  With this change, the lookup is
8248         performed only once in `tildify-foreach-region-outside-env'.
8249         (tildify-region): Greatly simplify the function since now most of
8250         the work is done by `tildify-foreach-region-outside-env'.
8251         (tildify-mode-alist): Simplify slightly by avoiding if and setq
8252         and instead using or.
8254         * textmodes/tildify.el (tildify-ignored-environments-alist):
8255         Optimize environments regexes
8257         Each time beginning of an environment to ignore is found,
8258         `tildify-find-env' needs to identify regexp for the ending
8259         of the environment.  This is done by trying all the opening
8260         regexes on matched text in a loop, so to speed that up, this
8261         loop should have fewer things to match, which can be done by
8262         using alternatives in the opening regexes.
8264         Coincidentally, this should make matching of the opening
8265         regexp faster as well thanks to the use of `regexp-opt' and
8266         having common prefix pulled from many regexes.
8268         * textmodes/tildify.el (tildify-string-alist)
8269         (tildify-ignored-environments-alist): Add `nxml-mode' to the list
8270         of supported modes since `xml-mode' is no longer a thing but just
8271         an alias to the former.  Also include comments and insides of tags
8272         in `tildify-ignored-environments-alist' for XML modes.  Finally,
8273         since XML does not define “&nbsp;”[1], use a numeric reference for
8274         a no-break space (namely “&#160;”)
8276         [1] XML specification defines only a handful of predefined entities.
8277             The list is at <http://www.w3.org/TR/REC-xml/#sec-predefined-ent>
8278             and includes only &lt;, &gt;, &amp;, &apos; and &quot; (meaning <,
8279             >, &, ' and " respectively).  This is in contrast to HTML and even
8280             XHTML which defined a whole bunch of entities including “&nbsp;”.
8282         * textmodes/tildify.el (tildify-pattern-alist)
8283         (tildify-string-alist, tildify-ignored-environments-alist):
8284         Improve defcustom's types by adding more tags explaining what each
8285         value means and replace “sexp” used in
8286         `tildify-ignored-environments-alist' with a full type declaration.
8288         * textmodes/tildify.el (tildify-find-env): Fix matched group
8289         indexes in end-regex building
8291         When looking for a start of an ignore-environment, the regex is built
8292         by concatenating regexes of all the environments configured in
8293         `tildify-ignored-environments-alist'.  So for example, the following
8294         list could be used to match TeX's \verb and \verb* commands:
8296             (("\\\\verb\\(.\\)" . (1))
8297              ("\\\\verb\\*\\(.\\)" . (1)))
8299         This would result in the following regex being used to find the start
8300         of any of the variants of the \verb command:
8302             \\\\verb\\(.\\)\\|\\\\verb\\*\\(.\\)
8304         But now, if “\\\\verb\\*\\(.\\)” matches, the first capture group
8305         won't match anything, and thus (match-string 1) will be nil, which
8306         will cause building of the end-matching regex to fail.
8308         Fix this by using capture groups from the time when the opening
8309         regexes are matched individually.
8311         * textmodes/tildify.el (tildify-find-env): Fix end-regex building
8312         in `tildify-find-env'
8314         The `tildify-ignored-environments-alist' allows the end-regex to
8315         be provided not as a static string but mix of strings and indexes
8316         of groups matched the begin-regex.  For example, the “\verb!…!”
8317         TeX-command (where “!” is an arbitrary character) is handled
8318         using:
8320             ("\\\\verb\\*?\\(.\\)" . (1))
8322         In the same way, the following should be supported as well:
8324             ("open-\\(.\\)" . ("end-" 1))
8326         However the tildify-find-env function fails at
8328             (concat result
8329                     (if (stringp (setq aux (car expression)))
8330                          expression  ; BUG: expression is a list
8331                        (regexp-quote (match-string aux))))
8333         where the string part is handled incorrectly.
8335         The most trivial fix would be to replace `expression' in the
8336         true-part of the if-statement with `aux', but instead, this commit
8337         optimizes `tildify-find-env' by changing it to use `mapconcat'
8338         rather than open-coded while-loop.
8340 2014-06-05  Mario Lang  <mlang@delysid.org>
8342         * woman.el (woman-mapcan): Remove.
8343         (woman-parse-colon-path): Use cl-mapcan instead.
8345 2014-06-03  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
8347         * register.el: Add link to Emacs manual in Commentary.
8349 2014-06-02  Sam Steingold  <sds@gnu.org>
8351         * menu-bar.el (lookup-key-ignore-too-long): Extract from...
8352         (popup-menu): ...here.
8353         (menu-bar-open): Use it to avoid an error when `lookup-key'
8354         returns a number.
8356 2014-06-02  Michael Albinus  <michael.albinus@gmx.de>
8358         * net/tramp.el (tramp-call-process): Add traces.
8359         (tramp-handle-unhandled-file-name-directory): Return "/".
8361 2014-06-02  Wilson Snyder  <wsnyder@wsnyder.org>
8363         Sync with upstream verilog-mode revision 3cd8144.
8364         * progmodes/verilog-mode.el (verilog-mode-version): Bump.
8365         (verilog-auto-arg-format): New option, to support newlines in AUTOARG.
8366         (verilog-type-font-keywords): Add nor.
8367         (verilog-batch-execute-func): Force reading of Local Variables.
8368         Fix printing "no changes to be saved" with verilog-batch.
8369         (verilog-auto-arg-ports): Doc fix.
8370         Add verilog-auto-arg-format to support newlines in AUTOARG.
8371         (verilog-auto-arg): Doc fix.
8373 2014-06-02  Glenn Morris  <rgm@gnu.org>
8375         * emulation/crisp.el, emulation/tpu-edt.el, emulation/tpu-extras.el:
8376         * emulation/tpu-mapper.el, emulation/vi.el, emulation/vip.el:
8377         * emulation/ws-mode.el: Move to obsolete/.
8378         * Makefile.in (AUTOGEN_VCS): Update for moved tpu-edu.el.
8380 2014-06-02  Eli Zaretskii  <eliz@gnu.org>
8382         * simple.el (keyboard-quit): Force update of mode lines, to remove
8383         the "Def" indicator, if we were defining a macro.  (Bug#17615)
8385 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8387         * minibuffer.el (minibuffer-force-complete-and-exit):
8388         Obey minibuffer-default (bug#17545).
8390         * progmodes/js.el (js-indent-line): Don't mix columns and chars
8391         (bug#17619).
8393         * subr.el (set-transient-map): Don't wait for some "nested"
8394         transient-map to finish if we're only supposed to be active for
8395         the next command (bug#17642).
8397 2014-06-02  Leo Liu  <sdl.web@gmail.com>
8399         * emacs-lisp/gv.el (window-buffer, window-display-table)
8400         (window-dedicated-p, window-hscroll, window-point, window-start):
8401         Fix gv-expander.  (Bug#17630)
8403 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8405         * mouse.el (mouse-posn-property): Ignore posn-point for mode-line
8406         clicks (bug#17633).
8408         * leim/quail/latin-pre.el ("latin-2-prefix"): Use ",," rather than ", "
8409         for the single comma, since ", " is *very* common in normal French text
8410         (bug#17643).
8412 2014-06-02  Glenn Morris  <rgm@gnu.org>
8414         * emacs-lisp/package.el (package-check-signature)
8415         (package-unsigned-archives): Fix :version.
8417 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8419         * subr.el (sit-for): Don't run input-methods (bug#15614).
8421 2014-06-02  Glenn Morris  <rgm@gnu.org>
8423         * cus-start.el: Fix some :version numbers.
8425 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
8427         * simple.el (deactivate-mark): Set mark-active to nil even if
8428         deactivation is done via setting transient-mark-mode to nil,
8429         since one is buffer-local and the other is global.
8431         * emacs-lisp/byte-opt.el (byte-optimize-binary-predicate): Don't assume
8432         there can't be more than 2 arguments (bug#17584).
8434 2014-06-02  Glenn Morris  <rgm@gnu.org>
8436         * simple.el (filter-buffer-substring-functions)
8437         (filter-buffer-substring-function, buffer-substring-filters)
8438         (filter-buffer-substring, buffer-substring--filter): Doc fixes.
8440         * minibuffer.el (completion-in-region-functions, completion-in-region)
8441         (completion--in-region): Doc fixes.
8443         * abbrev.el (abbrev-expand-functions, abbrev-expand-function)
8444         (expand-abbrev, abbrev--default-expand): Doc fixes.
8446 2014-06-02  Paul Eggert  <eggert@cs.ucla.edu>
8448         Include sources used to create macuvs.h.
8449         * international/README: Refer to the Unicode Terms of Use rather
8450         than copying it bodily here, as that simplifies maintenance.
8452 2014-06-01  Glenn Morris  <rgm@gnu.org>
8454         * loadup.el (load-prefer-newer): Set non-nil when dumping.  (Bug#17629)
8456 2014-05-31  Glenn Morris  <rgm@gnu.org>
8458         * files.el (locate-dominating-file): Expand file argument.  (Bug#17641)
8460 2014-05-30  Glenn Morris  <rgm@gnu.org>
8462         * loadup.el: Treat `command-line-args' more flexibly.
8464 2014-05-30  Alan Mackenzie  <acm@muc.de>
8466         Guard (looking-at "\\s!") from XEmacs.
8467         * progmodes/cc-engine.el (c-state-pp-to-literal): Add guard form.
8469 2014-05-30    Ken Olum  <kdo@cosmos.phy.tufts.edu>
8471         * mail/rmail.el (rmail-delete-forward, rmail-delete-backward):
8472         The argument COUNT is now optional, to be more backward-compatible.
8473         Doc fix.  (Bug#17560)
8475 2014-05-29  Reuben Thomas  <rrt@sc3d.org>
8477         * whitespace.el (whitespace-report-region):
8478         Simplify documentation.
8479         (whitespace-report-region): Allow report-if-bogus to take the
8480         value `never', for non-interactive use.
8481         (whitespace-report): Refer to whitespace-report-region's
8482         documentation.
8484 2014-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
8486         * whitespace.el: Use font-lock-flush.  Minimize refontifications.
8487         Side benefit: it works without jit-lock.
8488         (whitespace-point--used): New buffer-local var.
8489         (whitespace-color-on): Initialize it and flush it.  Use font-lock-flush.
8490         (whitespace-color-off): Use font-lock-flush.
8491         (whitespace-point--used, whitespace-point--flush-used): New functions.
8492         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
8493         (whitespace-empty-at-eob-regexp): Use them.
8494         (whitespace-post-command-hook): Rewrite.
8496         * font-lock.el (font-lock-flush, font-lock-ensure): New functions.
8497         (font-lock-fontify-buffer): Mark interactive-only.
8498         (font-lock-multiline, font-lock-fontified, font-lock-set-defaults):
8499         Make buffer-local.
8500         (font-lock-specified-p): Remove redundant boundp check.
8501         (font-lock-flush-function, font-lock-ensure-function): New vars.
8502         (font-lock-turn-on-thing-lock): Set them.
8503         (font-lock-default-fontify-buffer): Obey font-lock-dont-widen.
8504         (font-lock-after-change-function): Make `old-len' optional.
8505         (font-lock-set-defaults): Remove redundant `set' of font-lock-defaults.
8506         Call font-lock-flush, just in case.
8507         * progmodes/verilog-mode.el (verilog-preprocess): Disable workaround in
8508         recent Emacsen.
8509         * progmodes/vera-mode.el (vera-fontify-buffer): Declare obsolete.
8510         (vera-mode-map, vera-mode-menu): Remove bindings to it.
8511         * progmodes/idlw-help.el (idlwave-help-fontify): Use font-lock-ensure
8512         and with-syntax-table.
8513         * textmodes/conf-mode.el (conf-quote-normal):
8514         * progmodes/sh-script.el (sh-set-shell):
8515         * progmodes/prog-mode.el (prettify-symbols-mode):
8516         * progmodes/f90.el (f90-font-lock-n):
8517         * progmodes/cwarn.el (cwarn-mode):
8518         * nxml/nxml-mode.el (nxml-toggle-char-ref-extra-display):
8519         * progmodes/compile.el (compilation-setup, compilation--unsetup):
8520         * hi-lock.el (hi-lock-mode, hi-lock-unface-buffer)
8521         (hi-lock-set-pattern, hi-lock-set-file-patterns): Use font-lock-flush.
8522         * mail/rmail.el (rmail-variables): Set font-lock-dont-widen instead of
8523         font-lock-fontify-buffer-function and
8524         font-lock-unfontify-buffer-function.
8525         (rmail-unfontify-buffer-function, rmail-fontify-message):
8526         Use with-silent-modifications.
8527         * htmlfontify.el (hfy-force-fontification): Use jit-lock-fontify-now
8528         and font-lock-ensure.
8529         * bs.el (bs-show-in-buffer): Use font-lock-ensure.
8531 2014-05-28  Thien-Thi Nguyen  <ttn@gnu.org>
8533         * emacs-lisp/package.el (package-generate-autoloads):
8534         Inhibit backup files.
8536 2014-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8538         * progmodes/hideshow.el (hs-hide-all): Call syntax-propertize
8539         (bug#17608).
8541 2014-05-21  Michal Nazarewicz  <mina86@mina86.com>
8543         * textmodes/tildify.el (tildify-buffer, tildify-region):
8544         Add dont-ask option.
8546 2014-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8548         * subr.el (zerop): Move from C.  Add compiler-macro (bug#17475).
8549         * emacs-lisp/byte-opt.el (byte-optimize-zerop): Remove.
8551         * subr.el (internal--funcall-interactively): New.
8552         (internal--call-interactively): Remove.
8553         (called-interactively-p): Detect funcall-interactively instead of
8554         call-interactively.
8555         * simple.el (repeat-complex-command): Use funcall-interactively.
8556         (repeat-complex-command--called-interactively-skip): Remove.
8558 2014-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
8560         * register.el (register-read-with-preview): Don't burp on
8561         frame switches (e.g. due to the frame we just popped).
8563         * mouse.el (mouse-set-region): Handle spurious drag events (bug#17562).
8564         (mouse-drag-track): Annotate `mouse-drag-start' so we know we moved.
8566 2014-05-26  Andreas Schwab  <schwab@linux-m68k.org>
8568         * cus-face.el (custom-face-attributes): Add :distant-foreground.
8570 2014-05-26  Martin Rudalics  <rudalics@gmx.at>
8572         * window.el (window--dump-frame): Remove interactive specification.
8574 2014-05-26  Glenn Morris  <rgm@gnu.org>
8576         * hippie-exp.el (he-line-search-regexp):
8577         Handle comint-prompt-regexp containing subgroups.  (Bug#17529)
8579 2014-05-26  Stephen Berman  <stephen.berman@gmx.net>
8581         * calendar/todo-mode.el: Remove dependence on auto-mode-alist,
8582         to avoid errors when trying to create or visit a file foo.todo
8583         located outside to todo-directory, and to allow having such files
8584         without them being tied to Todo mode (bug#17482).
8585         (todo-show, todo-move-category, todo-merge-category, todo-find-archive)
8586         (todo-archive-done-item, todo-find-filtered-items-file)
8587         (todo-filter-items, todo-find-item, todo-diary-goto-entry)
8588         (todo-category-completions, todo-read-category): When visiting a
8589         Todo file, make sure we're in the right mode and the buffer local
8590         variables are set.
8591         (todo-make-categories-list, todo-reset-nondiary-marker)
8592         (todo-reset-done-string, todo-reset-comment-string):
8593         After processing all Todo files, kill the buffers of those files that
8594         weren't being visited before the processing.
8595         (todo-display-as-todo-file, todo-add-to-buffer-list)
8596         (todo-visit-files-commands): Comment out.
8597         (todo-modes-set-3, todo-mode): Comment out additions to find-file-hook.
8598         (auto-mode-alist): Remove add-to-list calls making Todo file
8599         extensions unrestrictedly tied to Todo modes.
8601 2014-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8603         * emacs-lisp/nadvice.el (advice--member-p): Change second arg.
8604         (advice-function-member-p): Tell it to check both names and functions
8605         (bug#17531).
8606         (advice--add-function): Adjust call accordingly.
8608 2014-05-26  Stephen Berman  <stephen.berman@gmx.net>
8610         * calendar/todo-mode.el: Miscellaneous bug fixes.
8611         (todo-delete-file): When deleting an archive but not its todo
8612         file, make sure to update the todo file's category sexp.
8613         (todo-move-category): Keep the moved category's name unless the
8614         file moved to already has a category with that name.  If the
8615         numerically last category of the source file was moved, make the
8616         first category current to avoid selecting a nonexisting category.
8617         (todo-merge-category): Fix implementation to make merging to a
8618         category in another file work as documented.  Eliminate now
8619         insufficient and unnecessary renaming of archive category, correct
8620         document string accordingly, and clarify it.  If the numerically
8621         last category of the source file was merged, make the first
8622         category current to avoid selecting a nonexisting category.
8623         (todo-archive-done-item): When there are marked items and point
8624         happens to be on an unmarked item, ignore the latter.  Don't leave
8625         point below last item after archiving marked items.
8626         (todo-unarchive-items): Fix logic to ensure unarchiving an item
8627         from an archive with only one category deletes the archive only
8628         when the category is empty after unarchiving.  Make sure the todo
8629         file's category sexp is updated.
8630         (todo-read-file-name): Allow an existing file name even when it is
8631         not required (todo-move-category needs this to work as documented).
8632         (todo-add-file): Call todo-validate-name to reject the name of an
8633         existing todo file (needed due to fix in todo-read-file-name).
8634         (todo-reset-nondiary-marker): Also reset in filtered items files.
8635         (todo-reset-done-string, todo-reset-comment-string): Also reset in
8636         regexp filtered items files.
8637         (todo-reset-highlight-item): Also reset in filtered items files.
8638         Fix incorrect variable reference in document string.
8640 2014-05-26  Glenn Morris  <rgm@gnu.org>
8642         * window.el (window--dump-frame): Avoid error in --without-x builds.
8644 2014-05-26  Glenn Morris  <rgm@gnu.org>
8646         * nxml/nxml-mode.el (xml-mode): Only define this alias once.
8648 2014-05-26  Eli Zaretskii  <eliz@gnu.org>
8650         * frame.el (set-frame-font): Doc fix.
8652         * menu-bar.el (menu-set-font): Doc fix.  (Bug#17532)
8654 2014-05-26  Dmitry Gutov  <dgutov@yandex.ru>
8656         * emacs-lisp/package.el (package--download-one-archive):
8657         Use `write-region' instead of `save-buffer' to avoid running various
8658         hooks.  (Bug#17155)
8659         (describe-package-1): Same.  Insert newline at the end of the
8660         buffer if appropriate.
8662 2014-05-26  Juri Linkov  <juri@jurta.org>
8664         * avoid.el (mouse-avoidance-set-mouse-position): Don't raise frame.
8665         (mouse-avoidance-ignore-p): Remove `switch-frame', add `focus-out'.
8666         Add more modifiers: meta, control, shift, hyper, super, alt.
8667         (Bug#17439)
8669         * avoid.el (mouse-avoidance-banish-position): Fix defcustom :options
8670         to allow changing its value with `set-variable'.
8672 2014-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8674         * progmodes/scheme.el (scheme-mode-syntax-table): Remove hack for
8675         #; comments.
8676         (scheme-syntax-propertize, scheme-syntax-propertize-sexp-comment):
8677         New functions.
8678         (scheme-mode-variables): Set syntax-propertize-function instead of
8679         font-lock-syntactic-face-function.
8680         (scheme-font-lock-syntactic-face-function): Delete.
8682         * emacs-lisp/lisp.el (end-of-defun): Ensure we move (bug#17274).
8684         * emacs-lisp/timer.el (timer-event-handler): Don't run if canceled
8685         (bug#17392).
8687 2014-05-26  Michael Albinus  <michael.albinus@gmx.de>
8689         * net/tramp-sh.el (tramp-find-inline-encoding): Do not match "%%t"
8690         for a temporary file name.
8692 2014-05-26  Eli Zaretskii  <eliz@gnu.org>
8694         * simple.el (line-move-ignore-invisible): Doc fix.  (Bug#17511)
8696 2014-05-26  Michael Albinus  <michael.albinus@gmx.de>
8698         * net/dbus.el (dbus-init-bus, dbus-call-method)
8699         (dbus-call-method-asynchronously, dbus-send-signal)
8700         (dbus-method-return-internal, dbus-method-error-internal):
8701         Check, whether Emacs has been compiled with D-Bus support.  (Bug#17508)
8703 2014-05-26  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
8705         * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
8706         methods which do not have a doc string.  (Bug#17490)
8708 2014-05-25  Tassilo Horn  <tsdh@gnu.org>
8710         * textmodes/reftex-ref.el (reftex-format-special): Make it work
8711         also for AMS Math's \eqref macro.
8713 2014-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
8715         Arrange to never byte-compile the generated -pkg.el file.
8717         * emacs-lisp/package.el (package-generate-description-file):
8718         Output first-line comment to set buffer-local var `no-byte-compile'.
8719         Suggested by Dmitry Gutov:
8720         <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00401.html>.
8722 2014-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
8724         Fix bug: Properly quote args to generated -pkg.el `define-package'.
8726         * emacs-lisp/package.el (package-generate-description-file):
8727         Inline `package--alist-to-plist'; rewrite to selectively
8728         quote alist values that are not self-quoting.
8729         (package--alist-to-plist): Delete func.
8731 2014-05-25  Andreas Schwab  <schwab@linux-m68k.org>
8733         * term/xterm.el (xterm-function-map): Add mapping for shifted
8734         keypad keys.
8736 2014-05-24  Daniel Colascione  <dancol@dancol.org>
8738         * progmodes/subword.el (subword-find-word-boundary): Move point to
8739         correct spot before search.  (Bug#17580)
8741         * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid
8742         breaking the build.
8744 2014-05-24  Leo Liu  <sdl.web@gmail.com>
8746         * calc/calc.el (math-bignum): Handle most-negative-fixnum.  (Bug#17556)
8748 2014-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8750         * minibuffer.el (completion--sreverse): Remove.
8751         (completion--common-suffix): Use `reverse' instead.
8752         * emacs-lisp/regexp-opt.el (regexp-opt-group): Use `reverse' on strings.
8754 2014-05-22  Glenn Morris  <rgm@gnu.org>
8756         * shell.el (shell-mode) <shell-dirstack-query>: Bypass bash aliases.
8758 2014-05-21  Daniel Colascione  <dancol@dancol.org>
8760         * files.el (interpreter-mode-alist): Add mksh.
8762         * progmodes/sh-script.el (sh-ancestor-alist): Add mksh, a pdksh
8763         derivative.
8764         (sh-alias-alist): Alias /system/bin/sh (Android's system shell) to
8765         mksh. Improve custom spec; allow regular expressions.
8766         (sh-shell): Delegate name splitting to `sh-canonicalize-shell'.
8767         (sh-after-hack-local-variables): New function.
8768         (sh-mode): Use it; respect file-local `sh-shell' variable.  (Bug#17333)
8769         (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding
8770         the normalization.
8771         (sh-canonicalize-shell): Rewrite to support regexes.
8773 2014-05-21  Leo Liu  <sdl.web@gmail.com>
8775         * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
8777 2014-05-19  Leo Liu  <sdl.web@gmail.com>
8779         * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.
8781 2014-05-18  Glenn Morris  <rgm@gnu.org>
8783         * loadup.el:
8784         * play/gametree.el: `track-mouse' is always defined since 2012-11-24.
8786 2014-05-14  Sam Steingold  <sds@gnu.org>
8788         * progmodes/python.el (python-shell-get-or-create-process):
8789         Do not bind `current-prefix-arg' so that C-c C-z does not talk
8790         back unless requested.
8792 2014-05-14  Glenn Morris  <rgm@gnu.org>
8794         * subr.el (with-file-modes): New macro.
8795         * printing.el (pr-save-file-modes): Make obsolete.
8796         * eshell/esh-util.el (eshell-with-file-modes): Make obsolete.
8797         * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
8798         Add with-file-modes.
8799         * doc-view.el (doc-view-make-safe-dir):
8800         * epg.el (epg--start):
8801         * files.el (locate-user-emacs-file, make-temp-file)
8802         (backup-buffer-copy, move-file-to-trash):
8803         * printing.el (pr-despool-print, pr-call-process, pr-text2ps):
8804         * eshell/esh-util.el (eshell-with-private-file-modes)
8805         (eshell-make-private-directory):
8806         * net/browse-url.el (browse-url-mosaic):
8807         * obsolete/mailpost.el (post-mail-send-it):
8808         * obsolete/pgg-pgp.el (pgg-pgp-verify-region):
8809         * obsolete/pgg-pgp5.el (pgg-pgp5-verify-region):
8810         Use with-file-modes.
8812         * vc/emerge.el (emerge-make-temp-file): Simplify.
8814 2014-05-14  Stephen Berman <stephen.berman@gmx.net>
8815             Stefan Monnier  <monnier@iro.umontreal.ca>
8817         * minibuffer.el (completion-pcm--merge-try): Merge trailing / with
8818         suffix (bug#15419).
8820 2014-05-14  Glenn Morris  <rgm@gnu.org>
8822         * vc/emerge.el (emerge-temp-file-prefix):
8823         Make pointless option obsolete.
8824         (emerge-temp-file-mode): Make non-functional option obsolete.
8826 2014-05-14  Michael Albinus  <michael.albinus@gmx.de>
8828         * net/browse-url.el (browse-url):
8829         Use `unhandled-file-name-directory' when setting `default-directory',
8830         in order to circumvent stalled remote connections.  (Bug#17425)
8832 2014-05-14  Glenn Morris  <rgm@gnu.org>
8834         * printing.el (subst-char-in-string, make-temp-file, pr-get-symbol):
8835         Optimize on Emacs, which has the relevant functions for ages.
8837 2014-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8839         * simple.el (undo-make-selective-list): Obey undo-no-redo.
8841 2014-05-12  Sam Steingold  <sds@gnu.org>
8843         * calendar/time-date.el (seconds-to-string): New function to
8844         pretty print time delay in seconds.
8846 2014-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8848         * mpc.el (mpc-format): Trim Date to the year.
8849         (mpc-songs-hashcons): Shorten the Date field.
8851         * emacs-lisp/nadvice.el (advice--interactive-form): Don't get fooled
8852         into autoloading just because of a silly indirection.
8854 2014-05-12  Santiago Payà i Miralta  <santiagopim@gmail.com>
8856         * vc/vc-hg.el (vc-hg-unregister): New function.  (Bug#17454)
8858 2014-05-12  Glenn Morris  <rgm@gnu.org>
8860         * emacs-lisp/find-gc.el: Move to ../admin.
8862         * printing.el (pr-version):
8863         * ps-print.el (ps-print-version): Also mention bug-gnu-emacs.
8865         * net/browse-url.el (browse-url-mosaic):
8866         Create /tmp/Mosaic.PID as a private file.
8868 2014-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8870         * emacs-lisp/nadvice.el: Support adding a given function multiple times.
8871         (advice--member-p): If name is given, only compare the name.
8872         (advice--remove-function): Don't stop at the first match.
8873         (advice--normalize-place): New function.
8874         (add-function, remove-function): Use it.
8875         (advice--add-function): Pass the name, if any, to
8876         advice--remove-function.
8878 2014-05-12  Philipp Rumpf  <prumpf@gmail.com>  (tiny change)
8880         * electric.el (electric-indent-post-self-insert-function): Don't use
8881         `pos' after modifying the buffer (bug#17449).
8883 2014-05-12  Stephen Berman  <stephen.berman@gmx.net>
8885         * calendar/todo-mode.el (todo-insert-item-from-calendar):
8886         Correct argument list to conform to todo-insert-item--basic.
8888 2014-05-12  Glenn Morris  <rgm@gnu.org>
8890         * files.el (cd-absolute): Test if directory is accessible
8891         rather than executable.  (Bug#17330)
8893         * progmodes/compile.el (recompile):
8894         Handle C-u M-x recompile from a non-compilation buffer.  (Bug#17444)
8896         * net/browse-url.el (browse-url-mosaic):
8897         Be careful when writing /tmp/Mosaic.PID.  (Bug#17428)
8898         This is CVE-2014-3423.
8900 2014-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
8902         * mouse.el: Use the normal toplevel loop while dragging.
8903         (mouse-set-point): Handle multi-clicks.
8904         (mouse-set-region): Handle multi-clicks for drags.
8905         (mouse-drag-region): Update call accordingly.
8906         (mouse-drag-track): Remove `do-mouse-drag-region-post-process' hack.
8907         Use the normal event loop instead of a local while/read-event loop.
8908         (global-map): Remove redundant bindings for double/triple-mouse-1.
8909         * xt-mouse.el (xterm-mouse-translate-1): Only process one event at a time.
8910         Generate synthetic down events when the protocol only sends up events.
8911         (xterm-mouse-last): Remove.
8912         (xterm-mouse--read-event-sequence-1000): Use xterm-mouse-last-down
8913         terminal parameter instead.
8914         (xterm-mouse--set-click-count): New function.
8915         (xterm-mouse-event): Detect/generate double/triple clicks.
8916         * reveal.el (reveal-close-old-overlays): Don't close while dragging.
8918         * info.el (Info-quoted): New face.
8919         (Info-mode-font-lock-keywords): New var.
8920         (Info-mode): Use it.
8922         * emacs-lisp/lisp-mode.el (preceding-sexp): Exclude leading "," which
8923         are a hindrance for C-x C-e.
8925 2014-05-11  Leo Liu  <sdl.web@gmail.com>
8927         * net/rcirc.el (rcirc-sentinel): Fix last change.
8929 2014-05-08  Sam Steingold  <sds@gnu.org>
8931         * net/rcirc.el (rcirc-reconnect-delay): New user option.
8932         (rcirc-sentinel): Auto-reconnect to the server if
8933         `rcirc-reconnect-delay' is non-0 (but not more often than its
8934         value in case the host is off-line).
8936 2014-05-09  Eli Zaretskii  <eliz@gnu.org>
8938         * progmodes/grep.el (lgrep): Fix a typo in last commit.
8940 2014-05-09  Glenn Morris  <rgm@gnu.org>
8942         * files.el (file-expand-wildcards):
8943         * man.el (Man-support-local-filenames):
8944         * printing.el (pr-i-directory, pr-interface-directory):
8945         * progmodes/grep.el (lgrep, rgrep):
8946         * textmodes/ispell.el (ispell-call-process)
8947         (ispell-call-process-region, ispell-start-process)
8948         (ispell-init-process): Use file-accessible-directory-p.
8950 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8952         * xt-mouse.el: Drop spurious/oddly shaped events (bug#17378).
8953         (xterm-mouse--read-event-sequence-1000): Return nil if something
8954         looks fishy.
8955         (xterm-mouse-event): Propagate it.
8956         (xterm-mouse-translate-1): Handle it.
8958 2014-05-08  Stephen Berman  <stephen.berman@gmx.net>
8960         * calendar/todo-mode.el (todo-insert-item--apply-args): When all
8961         four slots of the parameter list are filled, make sure to pass it
8962         to the argument list of todo-insert-item--basic.
8964 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8966         * emacs-lisp/package.el (package-compute-transaction): Topological sort.
8967         Add optional `seen' argument to detect and break infinite loops.
8969 2014-05-08  Eli Zaretskii  <eliz@gnu.org>
8971         * emacs-lisp/find-gc.el (find-gc-unsafe, find-unsafe-funcs)
8972         (trace-unsafe, trace-use-tree): Make parentheses style be
8973         according to Emacs style.
8975 2014-05-08  Michael Albinus  <michael.albinus@gmx.de>
8977         * net/tramp-sh.el (tramp-remote-process-environment):
8978         Remove HISTFILE and HISTSIZE; it's too late to set them here.
8979         Add :version entry.
8980         (tramp-open-shell): Do not let-bind `tramp-end-of-output'.
8981         Add "HISTFILE=/dev/null" to the shell's env arguments.  Do not send
8982         extra "PSx=..." commands.
8983         (tramp-maybe-open-connection): Setenv HISTFILE to /dev/null.
8984         (Bug#17295)
8986         (tramp-uudecode): Replace the hard-coded temporary file name by a
8987         format specifier.
8988         (tramp-remote-coding-commands): Enhance docstring.
8989         (tramp-find-inline-encoding): Replace "%t" by a temporary file
8990         name.  (Bug#17415)
8991         This is CVE-2014-3424.
8993 2014-05-08  Glenn Morris  <rgm@gnu.org>
8995         * emacs-lisp/find-gc.el (find-gc-source-directory): Give it a value.
8996         (find-gc-source-files): Update some names.
8997         (trace-call-tree): Simplify and update.
8998         Avoid predictable temp-file names.  (http://bugs.debian.org/747100)
8999         This is CVE-2014-3422.
9001 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9003         * minibuffer.el (completion--try-word-completion): Revert fix for
9004         Bug#15980 (bug#17375).
9006         * xt-mouse.el (xterm-mouse--read-event-sequence-1000): (bug#17378)
9007         Always store button numbers in the same way in xterm-mouse-last;
9008         Don't burp is xterm-mouse-last is not set as expected.
9009         Never return negative indices.
9011 2014-05-08  Dmitry Gutov  <dgutov@yandex.ru>
9013         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
9014         Backtrack one char if the global/char-literal var matcher hits
9015         inside a string.  The next char could be the beginning of an
9016         expression expansion.
9018 2014-05-08  Glenn Morris  <rgm@gnu.org>
9020         * help-fns.el (describe-function-1): Test for an autoload before a
9021         macro, since `macrop' works on autoloads.  (Bug#17410)
9023 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9025         * electric.el (electric-indent-functions-without-reindent): Add yaml.
9027         * minibuffer.el (completion-table-with-quoting) <completion--unquote>:
9028         Make sure the new point we return is within the new string (bug#17239).
9030 2014-05-05  Daniel Colascione  <dancol@dancol.org>
9032         * progmodes/compile.el (compilation-error-regexp-alist-alist):
9033         Port `gnu' pattern to rx.
9035 2014-05-05  Jarek Czekalski  <jarekczek@poczta.onet.pl>
9037         Remove unneeded prompt when closing a buffer with active
9038         emacsclient ("Buffer ... still has clients"), #16548.
9039         * server.el (server-start): Remove the only call to:
9040         (server-kill-buffer-query-function): Remove.
9042 2014-05-04  Leo Liu  <sdl.web@gmail.com>
9044         * calendar/diary-lib.el (calendar-chinese-month-name-array):
9045         Defvar to pacify compiler.
9047 2014-05-04  Eli Zaretskii  <eliz@gnu.org>
9049         * mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
9051 2014-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9053         * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
9054         Use nil rather than `default' for the "default" appearance (bug#17388).
9055         * vc/ediff-util.el (ediff-inferior-compare-regions)
9056         (ediff-toggle-autorefine, ediff-unselect-difference): Don't use
9057         a misleading `default' value when it's really a boolean.
9058         * vc/ediff-init.el (ediff-set-overlay-face): Don't set help-echo if the
9059         overlay is not visible.
9061 2014-05-04  Stephen Berman  <stephen.berman@gmx.net>
9063         * calendar/todo-mode.el (todo-edit-file): Use display-warning.
9064         (todo-menu): Uncomment and update.
9066 2014-05-04  Stephen Berman  <stephen.berman@gmx.net>
9068         * calendar/todo-mode.el: Reimplement item editing to have the same
9069         basic user interface as item insertion, and make small UI and
9070         larger internal improvements to the latter.
9071         (todo-insert-item): Add reference to the Todo mode user manual to
9072         the documentation string.
9073         (todo-insert-item--basic): Rename from todo-basic-insert-item and
9074         adjust all callers.  Change signature to combine diary and
9075         nonmarking arguments.  Incorporate functionality of deleted item
9076         copying command and add error checking.  Remove detailed
9077         descriptions of the arguments from the documentation string, since
9078         this is treated in the Todo mode user manual.
9079         (todo-copy-item, todo-edit-multiline-item)
9080         (todo-edit-done-item-comment, todo-edit-item-header)
9081         (todo-edit-item-time, todo-edit-item-date-from-calendar)
9082         (todo-edit-item-date-to-today, todo-edit-item-date-day-name)
9083         (todo-edit-item-date-year, todo-edit-item-date-month)
9084         (todo-edit-item-date-day, todo-edit-item-diary-nonmarking):
9085         Remove.
9086         (todo-edit-item): Reimplement as wrapper command for
9087         todo-edit-item--next-key and make it distinguish done and not done
9088         todo items.
9089         (todo-edit-item--text): New function, replacing old command
9090         todo-edit-item and incorporating deleted commands
9091         todo-edit-multiline-item and todo-edit-done-item-comment.
9092         (todo-edit-item--header): Rename from todo-basic-edit-item-header.
9093         Use only numeric value of prefix argument.  Remove detailed
9094         descriptions of the arguments from the documentation string, since
9095         this is treated in the Todo mode user manual.
9096         (todo-edit-item--diary-inclusion): New function, replacing old
9097         command todo-edit-item-diary-inclusion and incorporating and fixing
9098         functionality of deleted command todo-edit-item-diary-nonmarking,
9099         making sure to remove todo-nondiary-marker when adding
9100         diary-nonmarking-symbol.
9101         (todo-edit-category-diary-inclusion): Make sure to delete
9102         diary-nonmarking-symbol when adding todo-nondiary-marker.
9103         (todo-edit-category-diary-nonmarking): Fix indentation.
9104         (todo-insert-item--parameters): Group diary and nonmarking
9105         parameters together.
9106         (todo-insert-item--apply-args): Adjust to signature of
9107         todo-insert-item--basic and incorporate copy parameter.
9108         Make small code improvements.
9109         (todo-insert-item--next-param): Improve prompt and adjust it to
9110         new parameter grouping.  Remove obsolete code.
9111         (todo-edit-item--param-key-alist)
9112         (todo-edit-item--date-param-key-alist)
9113         (todo-edit-done-item--param-key-alist): New defconsts.
9114         (todo-edit-item--prompt): New variable.
9115         (todo-edit-item--next-key): New function.
9116         (todo-key-bindings-t): Bind "e" to todo-edit-item.
9117         Remove bindings of deleted commands.
9119 2014-05-04  Leo Liu  <sdl.web@gmail.com>
9121         * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
9123 2014-05-04  Glenn Morris  <rgm@gnu.org>
9125         * allout-widgets.el (allout-widgets-tally)
9126         (allout-decorate-item-guides):
9127         * menu-bar.el (menu-bar-positive-p):
9128         * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
9129         * progmodes/gdb-mi.el (gdbmi-same-start, gdbmi-is-number):
9130         * progmodes/js.el (js--inside-param-list-p)
9131         (js--inside-dojo-class-list-p, js--forward-destructuring-spec):
9132         * progmodes/prolog.el (region-exists-p):
9133         * progmodes/verilog-mode.el (verilog-scan-cache-ok-p):
9134         * textmodes/reftex-parse.el (reftex-using-biblatex-p):
9135         Doc fixes (replace `iff').
9137 2014-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9139         * mpc.el (mpc-volume-mouse-set): Don't burp at the boundaries.
9141 2014-05-04  Leo Liu  <sdl.web@gmail.com>
9143         Support Chinese diary entries in calendar and diary.  (Bug#17393)
9144         * calendar/cal-china.el (calendar-chinese-month-name-array): New var.
9145         (calendar-chinese-from-absolute-for-diary)
9146         (calendar-chinese-to-absolute-for-diary)
9147         (calendar-chinese-mark-date-pattern, diary-chinese-mark-entries)
9148         (diary-chinese-list-entries): New functions to list and mark
9149         Chinese diary entries in the calendar window.
9150         (diary-chinese-anniversary)
9151         (diary-chinese-insert-anniversary-entry)
9152         (diary-chinese-insert-entry, diary-chinese-insert-monthly-entry)
9153         (diary-chinese-insert-yearly-entry): New commands to insert
9154         Chinese diary entries.
9156         * calendar/diary-lib.el (diary-font-lock-keywords):
9157         Support font-locking Chinese dates.
9159         * calendar/cal-menu.el (cal-menu-diary-menu): Add entries for
9160         inserting Chinese diary entries.
9162         * calendar/calendar.el (diary-chinese-entry-symbol):
9163         New customizable variable.
9164         (calendar-mode-map): Add bindings for inserting Chinese diary
9165         entries.
9167 2014-05-03  Juri Linkov  <juri@jurta.org>
9169         * dired.el (dired-check-switches, dired-switches-recursive-p):
9170         New functions.  (Bug#17218)
9171         (dired-switches-escape-p, dired-move-to-end-of-filename):
9172         Use `dired-check-switches'.
9173         (dired-insert-old-subdirs, dired-build-subdir-alist)
9174         (dired-sort-R-check): Use `dired-switches-recursive-p'.
9176 2014-05-01  Barry O'Reilly  <gundaetiapo@gmail.com>
9178         * simple.el (undo-make-selective-list): New algorithm fixes
9179         incorrectness of position adjustments when undoing in region.
9180         (Bug#17235)
9181         (undo-elt-crosses-region): Make obsolete.
9182         (undo-adjust-elt, undo-adjust-beg-end, undo-adjust-pos):
9183         New functions to adjust positions using undo-deltas.
9185 2014-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
9187         * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): Only highlight past
9188         the last consecutive closing paren (bug#17345).
9190 2014-04-30  Reuben Thomas  <rrt@sc3d.org>
9192         * dired.el (dired-mode): make terminology for eXpunge command
9193         consistent.  (Bug#17276)
9195 2014-04-30  Eli Zaretskii  <eliz@gnu.org>
9197         * dired.el (dired-initial-position-hook, dired-initial-position):
9198         Doc string fixes.
9200 2014-04-30  Glenn Morris  <rgm@gnu.org>
9202         * mail/rmail.el (rmail-quit): Handle killed summaries.  (Bug#17283)
9204 2014-04-30  Matthias Dahl  <matthias.dahl@binary-island.eu>
9206         * faces.el (face-spec-recalc): Apply X resources only after the
9207         defface spec has been applied. Thus, X resources are no longer
9208         overriden by the defface spec which also fixes issues on win32 where
9209         the toolbar coloring was wrong because it is set through X resources
9210         and was (wrongfully) overriden.  (Bug#16694)
9212 2014-04-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9214         * textmodes/rst.el (electric-pair-pairs): Declare.
9215         (rst-mode): Set it (bug#17131).
9217 2014-04-30  Juri Linkov  <juri@jurta.org>
9219         * desktop.el (desktop-value-to-string): Let-bind `print-length'
9220         and `print-level' to nil.  (Bug#17351)
9222 2014-04-30  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
9224         * battery.el (battery-update): Handle the case where battery
9225         status is "N/A" (bug#17319).
9227 2014-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9229         * progmodes/ps-mode.el: Use SMIE.  Move string and comment recognition
9230         to syntax-propertize.
9231         (ps-mode-auto-indent): Mark as obsolete.
9232         (ps-mode-font-lock-keywords-1): Remove string-or-comment handling.
9233         (ps-mode-font-lock-keywords-3): Use symbol regexp operators instead of
9234         word regexp operators.
9235         (ps-mode-map): Move initialization into declaration.  Remove binding
9236         for TAB, RET, >, ], and }.
9237         (ps-mode-syntax-table): Move initialization into declaration.
9238         Don't give word syntax to non-word chars.
9239         (ps-run-mode-map): Move initialization into declaration.
9240         (ps-mode-menu-main): Remove auto-indent entry.
9241         (ps-mode-smie-rules): New function.
9242         (ps-mode): Setup smie, syntax-propertize, and electric-indent-mode.
9243         (ps-mode-looking-at-nested, ps-mode-match-string-or-comment): Remove.
9244         (ps-mode--string-syntax-table): New const.
9245         (ps-mode--syntax-propertize-special, ps-mode-syntax-propertize):
9246         New functions.
9247         (ps-mode-newline, ps-mode-tabkey, ps-mode-r-brace, ps-mode-r-angle)
9248         (ps-mode-r-gt, ps-mode-r-balance): Remove functions.
9250 2014-04-27  Daniel Colascione  <dancol@dancol.org>
9252         * term/xterm.el (xterm-paste): Use large finite timeout when
9253         reading event to avoid putting keys in this-command-keys.
9255 2014-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
9257         * progmodes/perl-mode.el (perl--syntax-exp-intro-regexp): New var.
9258         (perl-syntax-propertize-function): Use it.  Extend handling of
9259         here-docs to the unquoted case.
9261 2014-04-25  Eli Zaretskii  <eliz@gnu.org>
9263         * tooltip.el (tooltip-show-help-non-mode, tooltip-show-help):
9264         Use equal-including-properties to compare help-echo strings (bug#17331).
9266 2014-04-25  Leo Liu  <sdl.web@gmail.com>
9268         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
9269         Fix syntax for @.  (Bug#17325)
9271 2014-04-25  Daniel Colascione  <dancol@dancol.org>
9273         * emacs-lisp/cl.el (gv): Require gv early to break eager
9274         macro-expansion cycles.
9276 2014-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
9278         * simple.el (region-active-p): Check there's a mark (bug#17324).
9280         * simple.el (completion-list-mode-map): Use choose-completion for the
9281         mouse binding as well (bug#17302).
9282         (completion-list-mode, completion-setup-function): Adjust docstring and
9283         echo area message accordingly.
9284         * progmodes/idlwave.el (idlwave-choose-completion): Adjust to new
9285         calling convention of choose-completion.
9286         * comint.el (comint-dynamic-list-completions):
9287         * term.el (term-dynamic-list-completions): Accept choose-completion.
9289         * progmodes/perl-mode.el (perl-syntax-propertize-function): Slash after
9290         &, |, +, - and * can't be a division (bug#17317).
9292         * term/xterm.el (xterm--version-handler): Don't use modern xterm
9293         features on gnome-terminal (bug#16988).
9295 2014-04-25  Thien-Thi Nguyen  <ttn@gnu.org>
9297         Improve Scheme font-locking for (define ((foo ...) ...) ...).
9299         * progmodes/scheme.el (scheme-font-lock-keywords-1): To find
9300         the declared object, ignore zero or more parens, not zero or one.
9302 2014-04-24  Leo Liu  <sdl.web@gmail.com>
9304         * progmodes/xscheme.el (xscheme-expressions-ring)
9305         (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
9306         (xscheme-control-g-disabled-p, xscheme-process-filter-state)
9307         (xscheme-allow-output-p, xscheme-prompt)
9308         (xscheme-string-accumulator, xscheme-mode-string): Use defvar-local.
9310         * progmodes/scheme.el (would-be-symbol, next-sexp-as-string):
9311         Comment out unused functions.
9313 2014-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
9315         * info.el: Use lexical-binding and cl-lib.
9316         Use defvar-local and setq-local instead of make-local-variable.
9317         (Info-apropos-matches): Avoid add-to-list.
9318         (Info-edit-mode-map): Fix obsolescence call to Info-edit-map.
9320 2014-04-24  Daniel Colascione  <dancol@dancol.org>
9322         * progmodes/sh-script.el (sh-builtins): Add coproc to list of bash builtins.
9324 2014-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
9326         * emacs-lisp/cl-macs.el (cl--loop-let): Fix last merge.
9328 2014-04-22  Michael Heerdegen  <michael_heerdegen@web.de>
9330         * dired.el (dired-insert-set-properties): Do not consider
9331         subdirectory headings and empty lines to be information that
9332         `dired-hide-details-mode' should hide.  (Bug#17228)
9334 2014-04-22  Michael Albinus  <michael.albinus@gmx.de>
9336         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
9337         Remove test messages.
9338         (tramp-do-copy-or-rename-file-out-of-band): Do not quote `source'
9339         and `target' twice.
9341 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9343         * dframe.el (dframe-get-focus): Remove `hook' argument (bug#17311).
9344         * speedbar.el (speedbar-get-focus): Run the "hook" afterwards instead.
9346         * emacs-lisp/cl-macs.el (cl--loop-let): Avoid `nil' as var name.
9348 2014-04-22  Michael Albinus  <michael.albinus@gmx.de>
9350         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
9351         Set "IFS=" when using read builtin, in order to preserve spaces in
9352         the file name.  Add test messages for hunting a bug on hydra.
9353         (tramp-get-ls-command): Undo using "-b" argument.  It doesn't help.
9355 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9357         * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
9358         Don't prettify a word within a symbol.
9360 2014-04-22  Michael Albinus  <michael.albinus@gmx.de>
9362         * net/tramp-sh.el (tramp-get-ls-command): Use "-b" argument if
9363         possible.
9365 2014-04-22  Daniel Colascione  <dancol@dancol.org>
9367         * emacs-lisp/byte-run.el (function-put): Unbreak build: don't
9368         use defun to define `function-put'.
9370 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9372         * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): New function.
9373         (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords-2): Use it.
9374         (lisp-mode-variables): Set font-lock-extra-managed-props.
9376         * emacs-lisp/byte-run.el (function-put): New function.
9377         (defun-declarations-alist): Use it.  Add `pure' and `side-effect-free'.
9378         * emacs-lisp/cl-macs.el (cl-defstruct, cl-struct-sequence-type)
9379         (cl-struct-slot-info, cl-struct-slot-offset, cl-struct-slot-value):
9380         Use them.
9382 2014-04-22  Daniel Colascione  <dancol@dancol.org>
9384         * emacs-lisp/macroexp.el (internal-macroexpand-for-load):
9385         Add `full-p' parameter; when nil, call `macroexpand' instead of
9386         `macroexpand-all'.
9388         * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
9389         Improve docstrings.
9391         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
9392         Use lambda function values, not quoted lambdas.
9393         (byte-compile-recurse-toplevel): Remove extraneous &optional.
9395         * emacs-lisp/cl-macs.el
9396         (cl-struct-sequence-type, cl-struct-slot-info): Declare pure.
9397         (cl-struct-slot-value): Conditionally use aref or nth so that the
9398         compiler produces optimal code.
9400 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9402         * emacs-lisp/cl-macs.el (cl-struct-slot-offset): Mark as pure.
9403         (inline): Don't inline cl--set-elt.
9404         (cl-struct-slot-value): Remove explicit gv-setter and compiler-macro.
9405         Define as inlinable instead.
9406         (cl-struct-set-slot-value): Remove.
9408         * emacs-lisp/cl-lib.el (cl--set-elt): Remove.
9409         * emacs-lisp/cl-seq.el (cl-replace, cl-substitute, cl-nsubstitute):
9410         Use setf instead.
9412 2014-04-21  Daniel Colascione  <dancol@dancol.org>
9414         * emacs-lisp/cl-macs.el (cl--const-expr-val): We didn't need the
9415         last two parameters after all.
9416         (cl--expr-contains,cl--compiler-macro-typep,cl--compiler-macro-member)
9417         (cl--compiler-macro-assoc,cl-struct-slot-value)
9418         (cl-struct-set-slot-value): Stop using them.
9420 (2014-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9422         * image-mode.el (image-mode-window-put): Don't assume there's a `t'
9423         entry in image-mode-winprops-alist.
9425 2014-04-21  Daniel Colascione  <dancol@dancol.org>
9427         * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): New function.
9428         (byte-compile-recurse-toplevel, byte-compile-initial-macro-environment)
9429         (byte-compile-toplevel-file-form): Use it.
9431         * emacs-lisp/cl-macs.el:
9432         (cl--loop-let): Properly destructure `while' clauses.
9434 2014-04-20  Daniel Colascione  <dancol@dancol.org>
9436         * vc/vc.el (vc-root-dir): New public autoloaded function for
9437         generically finding the current VC root.
9438         * vc/vc-hooks.el (vc-not-supported): New error.
9439         (vc-call-backend): Signal `vc-not-supported' instead of generic error.
9441 2014-04-20  Daniel Colascione  <dancol@dancol.org>
9443         * emacs-lisp/cl-macs.el (cl-the): Make `cl-the' assert its type
9444         argument.
9445         (cl--const-expr-val): cl--const-expr-val should macroexpand its
9446         argument in case we're inside a symbol-macrolet.
9447         (cl--do-arglist, cl--compiler-macro-typep)
9448         (cl--compiler-macro-member, cl--compiler-macro-assoc): Pass macro
9449         environment to `cl--const-expr-val'.
9450         (cl-struct-sequence-type,cl-struct-slot-info)
9451         (cl-struct-slot-offset, cl-struct-slot-value)
9452         (cl-struct-set-slot-value): New functions.
9454 2014-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9456         * progmodes/sh-script.el (sh-smie--sh-keyword-p): Handle variable
9457         assignments such as "case=hello" (bug#17297).
9459 2014-04-18  Michael Albinus  <michael.albinus@gmx.de>
9461         * net/tramp.el (tramp-run-real-handler, tramp-file-name-handler):
9462         Do not autoload.
9463         (tramp-file-name-handler, tramp-completion-file-name-handler):
9464         Revert patch from 2014-04-10, it isn't necessary anymore.
9465         (tramp-autoload-file-name-handler)
9466         (tramp-register-autoload-file-name-handlers): New defuns.
9467         (top): Autoload call of `tramp-register-autoload-file-name-handlers'.
9468         (tramp-register-file-name-handlers): Remove also
9469         `tramp-autoload-file-name-handler' from `file-name-handler-list'.
9470         Do not autoload its invocation, but eval it after loading of 'tramp.
9472         * net/tramp-adb.el (tramp-unload-hook): Unload `tramp-adb'.
9474         * net/tramp-compat.el (tramp-unload-hook): Unload `tramp-loaddefs'.
9476 2014-04-17  Daniel Colascione  <dancol@dancol.org>
9478         Add support for bracketed paste mode; add infrastructure for
9479         managing terminal mode enabling and disabling automatically.
9481         * xt-mouse.el:
9482         (xterm-mouse-mode): Simplify.
9483         (xterm-mouse-tracking-enable-sequence)
9484         (xterm-mouse-tracking-disable-sequence): New constants.
9485         (turn-on-xterm-mouse-tracking-on-terminal)
9486         (turn-off-xterm-mouse-tracking-on-terminal):
9487         Use tty-mode-set-strings and tty-mode-reset-strings terminal
9488         parameters instead of random hooks.
9489         (turn-on-xterm-mouse-tracking)
9490         (turn-off-xterm-mouse-tracking): Delete.
9492         * term/xterm.el (xterm-extra-capabilities): Fix bitrotted comment.
9493         (xterm-paste-ending-sequence): New constant.
9494         (xterm-paste): New command used for bracketed paste support.
9496         (xterm-modify-other-keys-terminal-list): Delete obsolete variable.
9497         (terminal-init-xterm-bracketed-paste-mode): New function.
9498         (terminal-init-xterm): Call it.
9499         (terminal-init-xterm-modify-other-keys): Use tty-mode-set-strings
9500         and tty-mode-reset-strings instead of random hooks.
9501         (xterm-turn-on-modify-other-keys)
9502         (xterm-turn-off-modify-other-keys)
9503         (xterm-remove-modify-other-keys): Delete obsolete functions.
9505         * term/screen.el: Rewrite to just use the xterm code.
9506         Add copyright notice.  Mention tmux.
9508 2014-04-17  Ian D  <dunni@gnu.org>  (tiny change)
9510         * image-mode.el (image-mode-window-put): Also update the property of
9511         the "default window".
9512         * doc-view.el (doc-view-new-window-function): If no window
9513         exists, move to the last known page.
9515 2014-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9517         * progmodes/perl-mode.el (perl-calculate-indent): Don't auto-indent in
9518         here-documents (bug#17262).
9520 2014-04-16  Eli Zaretskii  <eliz@gnu.org>
9522         * term/pc-win.el (x-list-fonts, x-get-selection-value):
9523         Provide doc strings, as required by snarf-documentation.
9525 2014-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9527         * ps-def.el (ps-generate-postscript-with-faces1): Use the new `sorted'
9528         arg of overlays-at.  Use `invisible-p'.
9530         * obsolete/lucid.el (extent-at):
9531         * htmlfontify.el (hfy-overlay-props-at): Use the new `sorted' arg of
9532         overlays-at.
9533         (hfy-fontify-buffer): Remove unused var `orig-ovls'.
9535 2014-04-16  João Távora  <joaotavora@gmail.com>
9537         * net/shr.el (shr-expand-url): Use `expand-file-name' for relative
9538         links.  (Bug#17217).
9540 2014-04-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
9542         * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
9543         Use mapc to loop over a vector.  (Bug#17257).
9545 2014-04-16  Michael Albinus  <michael.albinus@gmx.de>
9547         * net/tramp-sh.el (tramp-sh-handle-file-truename): Revert previous
9548         patch, there are new problems with file names containing spaces.
9549         Get rid of backticks.  (Bug#17238)
9551 2014-04-16  João Távora  <joaotavora@gmail.com>
9553         * elec-pair.el (electric-pair--syntax-ppss): Simplify and fix
9554         possible bug.
9556 2014-04-16  Eli Zaretskii  <eliz@gnu.org>
9558         * frame.el (blink-cursor-blinks, blink-cursor-blinks-done): Doc fixes.
9559         (blink-cursor-mode): Mention customization variables and the
9560         effect of 'blink-cursor-blinks'.
9562 2014-04-16  Barry O'Reilly  <gundaetiapo@gmail.com>
9564         * simple.el (undo): Prevent insertion of identity mapping into
9565         undo-equiv-table so as undo-only does not inf loop in the presence
9566         of consecutive nils in undo list.
9568 2014-04-16  Matthias Dahl  <matthias.dahl@binary-island.eu>
9570         * faces.el (make-face): Deprecate optional argument as it is no
9571         longer needed/used since the conditional X resources handling
9572         has been pushed down to make-face-x-resource-internal itself.
9573         (make-empty-face): Don't pass optional argument to make-face.
9575 2014-04-16  Karl Fogel  <kfogel@red-bean.com>
9577         * savehist.el (savehist-save): Remove workaround for a read-passwd
9578         bug that was fixed before 24.3.  Thanks to Juanma Barranquero for
9579         noticing that the shim was still present.
9581 2014-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
9583         * doc-view.el (doc-view-set-doc-type): Ignore file name case; add .pps.
9585 2014-04-14  Juanma Barranquero  <lekktu@gmail.com>
9587         * faces.el (face-set-after-frame-default): Remove unused local variable.
9589 2014-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9591         * progmodes/grep.el: Use lexical-binding.
9592         (grep-expand-template): Pass explicit lexical env to `eval'.
9593         (zrgrep): Let-bind grep-find-template explicitly.
9595         * emacs-lisp/cl-lib.el (current-case-table): Remove setter.
9596         * leim/quail/sisheng.el (sisheng-list): Use with-case-table.
9598 2014-04-12  Eli Zaretskii  <eliz@gnu.org>
9600         * international/characters.el <standard-case-table>: Add entries
9601         for letters from the Coptic block u+2C80-u+2CFF.  (Bug#17243)
9602         Set category of Coptic characters be 'g' (Greek).
9604 2014-04-12  Leo Liu  <sdl.web@gmail.com>
9606         * progmodes/octave.el (completion-table-with-cache):
9607         Define if not available.
9608         (octave-goto-function-definition, octave-sync-function-file-names)
9609         (octave-find-definition-default-filename):
9610         Backquote upattern for compatibility.
9612 2014-04-12  Michael Albinus  <michael.albinus@gmx.de>
9614         * net/tramp-sh.el (tramp-sh-handle-file-truename): Quote the file
9615         name twice due to backticks.  (Bug#17238)
9617 2014-04-12  Glenn Morris  <rgm@gnu.org>
9619         * term/w32-win.el (x-win-suspend-error):
9620         * term/x-win.el (x-win-suspend-error): Sync docs.
9622 2014-04-12  Matthias Dahl  <matthias.dahl@binary-island.eu>
9624         * faces.el (make-face): Remove deprecated optional argument.
9625         The conditional application of X resources is handled directly by
9626         make-face-x-resource-internal since Emacs 24.4.
9627         (make-empty-face): Don't pass optional argument to make-face.
9629 2014-04-11  Glenn Morris  <rgm@gnu.org>
9631         * Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport.  (Bug#16429)
9633 2014-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9635         Ediff's overlay priorities cause more trouble than they solve.
9636         * vc/ediff-init.el (ediff-shadow-overlay-priority): Remove variable.
9637         (ediff-highest-priority): Remove function (bug#17234).
9638         * vc/ediff-util.el (ediff-highlight-diff-in-one-buffer):
9639         * vc/ediff-diff.el (ediff-set-diff-overlays-in-one-buffer)
9640         (ediff-set-fine-diff-properties-in-one-buffer): Don't mess with
9641         overlay priorities.
9643 2014-04-11  Feng Li  <fengli@gmail.com>  (tiny change)
9645         * progmodes/pascal.el (pascal-font-lock-keywords): Fix incorrect format
9646         entry; use symbol boundaries to avoid mis-matches.
9648 2014-04-11  Michael Albinus  <michael.albinus@gmx.de>
9650         * net/tramp.el (tramp-file-name-handler)
9651         (tramp-completion-file-name-handler): Avoid recursive loading.
9653         * net/tramp-sh.el (tramp-make-copy-program-file-name):
9654         Quote result also locally.
9656 2014-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9658         * emulation/cua-base.el (<toplevel>, cua--pre-command-handler-1):
9659         Remove left-over code.
9661         * newcomment.el (comment-indent-new-line): Sink code where it's used.
9662         Reuse the previous comment's indentation unconditionally if it's on its
9663         own line.
9665 2014-04-09  Daniel Colascione  <dancol@dancol.org>
9667         * emacs-lisp/lisp.el (backward-up-list): Add `escape-strings',
9668         `no-syntax-crossing' arguments.  Forward to `up-list'.
9669         (up-list): Add `escape-strings', `no-syntax-crossing' arguments.
9670         Implement logic for escaping from strings.  Use narrowing to deal
9671         with corner cases.
9673 2014-04-09  Leo Liu  <sdl.web@gmail.com>
9675         * net/rcirc.el (rcirc-connection-info): New variable.
9676         (rcirc-connect): Use it to store connection info.
9677         (rcirc-buffer-process): Avoid get-buffer-process which returns nil
9678         for killed process.
9679         (rcirc-cmd-reconnect): New command.  (Bug#17045)
9680         (rcirc-mode, set-rcirc-encode-coding-system)
9681         (set-rcirc-decode-coding-system, rcirc-connect): Use setq-local.
9683 2014-04-09  Daniel Colascione  <dancol@dancol.org>
9685         * emacs-lisp/cl-indent.el: Add comment claiming
9686         facility is also good for elisp.
9687         (lisp-indent-find-method): New function.
9688         (common-lisp-indent-function): Recognize cl-loop.
9689         (common-lisp-indent-function-1): Recognize cl constructs; use
9690         `lisp-indent-find-method' instead of `get' directly.
9691         (if): Use else-body style for elisp.
9693 2014-04-09  Dmitry Gutov  <dgutov@yandex.ru>
9695         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
9696         Module methods.  (Bug#17216)
9698 2014-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
9700         * help.el (describe-bindings): Fix buffer handling (bug#17210).
9701         (describe-bindings-internal): Mark obsolete.
9703 2014-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
9705         * subr.el (with-silent-modifications): Don't bind deactivate-mark,
9706         buffer-file-name, and buffer-file-truename any more.
9708 2014-04-08  Leo Liu  <sdl.web@gmail.com>
9710         Use lexical-binding and require cl-lib.
9711         * net/rcirc.el (rcirc, rcirc-handler-ctcp-KEEPALIVE)
9712         (rcirc-handler-generic, rcirc-fill-paragraph)
9713         (rcirc-format-response-string, rcirc-target-buffer)
9714         (rcirc-last-line, rcirc-record-activity, rcirc-split-activity)
9715         (rcirc-activity-string, rcirc-make-trees, rcirc-cmd-ctcp)
9716         (rcirc-ctcp-sender-PING, rcirc-browse-url)
9717         (rcirc-markup-timestamp, rcirc-markup-attributes)
9718         (rcirc-markup-my-nick, rcirc-markup-urls)
9719         (rcirc-markup-bright-nicks, rcirc-markup-fill)
9720         (rcirc-check-auth-status, rcirc-handler-WALLOPS)
9721         (rcirc-handler-JOIN, rcirc-handler-PART-or-KICK)
9722         (rcirc-handler-PART, rcirc-handler-KICK, rcirc-handler-QUIT)
9723         (rcirc-handler-NICK, rcirc-handler-PING, rcirc-handler-PONG)
9724         (rcirc-handler-TOPIC, rcirc-handler-301, rcirc-handler-317)
9725         (rcirc-handler-332, rcirc-handler-333, rcirc-handler-477)
9726         (rcirc-handler-MODE, rcirc-handler-353, rcirc-handler-366)
9727         (rcirc-authenticate, rcirc-handler-INVITE, rcirc-handler-ERROR)
9728         (rcirc-handler-ctcp-VERSION, rcirc-handler-ctcp-TIME)
9729         (rcirc-handler-CTCP-response): Fix unused arguments warnings and
9730         use cl-lib.
9732 2014-04-07  João Távora  <joaotavora@gmail.com>
9734         * elec-pair.el (electric-pair--syntax-ppss):
9735         When inside comments parse from comment beginning.
9736         (electric-pair--balance-info): Fix typo in comment.
9737         (electric-pair--in-unterminated-string-p): Delete.
9738         (electric-pair--unbalanced-strings-p): New function.
9739         (electric-pair-string-bound-function): New var.
9740         (electric-pair-inhibit-if-helps-balance): Decide quote pairing
9741         according to `electric-pair--in-unterminated-string-p'
9743         * elec-pair.el (electric-pair-inhibit-if-helps-balance):
9744         Inhibit quote pairing if point-max is inside an unterminated string.
9745         (electric-pair--looking-at-unterminated-string-p): Delete.
9746         (electric-pair--in-unterminated-string-p): New function.
9748 2014-04-07  Glenn Morris  <rgm@gnu.org>
9750         * shell.el (shell-directory-tracker):
9751         Go back to just ignoring failures.  (Bug#17159)
9753 2014-04-07  João Távora  <joaotavora@gmail.com>
9755         Fix `electric-pair-delete-adjacent-pairs' in modes binding
9756         backspace.  (Bug#16981)
9757         * elec-pair.el (electric-pair-backward-delete-char): Delete.
9758         (electric-pair-backward-delete-char-untabify): Delete.
9759         (electric-pair-mode-map): Bind backspace to a menu item filtering
9760         a new `electric-pair-delete-pair' command.
9761         (electric-pair-delete-pair): New command.
9763         * progmodes/python.el (python-electric-pair-string-delimiter):
9764         Fix triple-quoting electricity.  (Bug#17192)
9766         * elec-pair.el (electric-pair-post-self-insert-function):
9767         Don't skip whitespace when `electric-pair-text-pairs' and
9768         `electric-pair-pairs' were used. syntax to
9769         electric-pair--skip-whitespace.  (Bug#17183)
9771 2014-04-07  Eli Zaretskii  <eliz@gnu.org>
9773         * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for
9774         "<F>".  (Bug#17199)
9776 2014-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9778         * mpc.el (mpc--status-timer-run): Disable timer if not displayed.
9779         (mpc--status-idle-timer-run): Use mpc--status-timer-run.
9781 2014-04-07  Glenn Morris  <rgm@gnu.org>
9783         * help.el (view-lossage): Doc tweak.
9785 2014-04-07  Matthias Dahl  <ml_emacs-lists@binary-island.eu>
9787         * faces.el (face-spec-recalc): Call make-face-x-resource-internal
9788         only when inhibit-x-resources is nil, and do that earlier in the
9789         function.  Doc fix.  (Bug#16694)
9790         (face-spec-choose): Accept additional optional argument, whose
9791         value is returned if no matching attributes are found.
9792         (face-spec-recalc): Use the new optional argument when calling
9793         face-spec-choose.  (Bug#16378)
9794         (make-face-x-resource-internal): Do nothing when
9795         inhibit-x-resources is non-nil.  Don't touch the default face if
9796         reversed video is given--as was done in previous versions of Emacs.
9797         (face-set-after-frame-default): Don't call
9798         make-face-x-resource-internal here.  (Bug#16434)
9800 2014-04-07  Tassilo Horn  <tsdh@gnu.org>
9802         * doc-view.el (doc-view-bookmark-jump):
9803         Use `bookmark-after-jump-hook' to jump to the right page after the
9804         buffer is shown in a window.  (bug#16090)
9806 2014-04-07  Eli Zaretskii  <eliz@gnu.org>
9808         * international/characters.el (mirroring): Fix last change:
9809         instead of loading uni-mirrored.el explicitly, do that implicitly
9810         by creating the 'mirroring' uniprop table.  This avoids announcing
9811         the loading of uni-mirrored.el.
9813 2014-04-07  Glenn Morris  <rgm@gnu.org>
9815         * files.el (buffer-stale--default-function)
9816         (buffer-stale-function, revert-buffer--default):
9817         * autorevert.el (auto-revert-buffers): Doc tweaks.
9819 2014-04-07  Eli Zaretskii  <eliz@gnu.org>
9821         * international/characters.el: Preload uni-mirrored.el.  (Bug#17169)
9823 2014-04-07  Glenn Morris  <rgm@gnu.org>
9825         * files.el (make-backup-file-name-function)
9826         (make-backup-file-name, make-backup-file-name--default-function)
9827         (make-backup-file-name-1, find-backup-file-name)
9828         (revert-buffer-function, revert-buffer-insert-file-contents-function)
9829         (buffer-stale--default-function, buffer-stale-function)
9830         (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p)
9831         (revert-buffer, revert-buffer--default)
9832         (revert-buffer-insert-file-contents--default-function):
9833         Doc fixes related to defaults no longer being nil.
9834         (make-backup-file-name-function): Bump :version.
9835         Restore nil as a valid but deprecated custom type.
9837 2014-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9839         * progmodes/perl-mode.el (perl-syntax-propertize-function):
9840         Handle $' used as a variable (bug#17174).
9842         * progmodes/perl-mode.el (perl-indent-new-calculate):
9843         Handle forward-sexp failure (bug#16985).
9844         (perl-syntax-propertize-function): Add "foreach" and "for" statement
9845         modifiers introducing expressions (bug#17116).
9847 2014-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
9849         * dired-aux.el (dired-file-set-difference): Use lexical-scoping.
9851 2014-04-05  Leo Liu  <sdl.web@gmail.com>
9853         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
9854         Add define-compilation-mode.
9856 2014-04-04  João Távora  <joaotavora@gmail.com>
9858         * elec-pair.el (electric-pair--syntax-ppss): When inside comments
9859         parse from comment beginning.
9860         (electric-pair--balance-info): Fix typo in comment.
9861         (electric-pair--in-unterminated-string-p): Delete.
9862         (electric-pair--unbalanced-strings-p): New function.
9863         (electric-pair-string-bound-function): New var.
9864         (electric-pair-inhibit-if-helps-balance): Decide quote pairing
9865         according to `electric-pair--in-unterminated-string-p'.
9867 2014-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9869         * textmodes/reftex-parse.el (reftex--index-tags): Rename `index-tags'.
9870         Move declaration before first use.
9871         (reftex-move-to-next-arg): Silence compiler warning.
9873 2014-04-04  Joost Kremers  <joostkremers@fastmail.fm>  (tiny change)
9875         * textmodes/reftex-toc.el (reftex-toc, reftex-re-enlarge):
9876         Use `window-total-width' instead of `window-width'.
9878 2014-04-03  Daniel Colascione  <dancol@dancol.org>
9880         * subr.el (set-transient-map): Remove rms's workaround entirely;
9881         use new `suspicious-object' subr to mark our lambda for closer
9882         scrutiny during gc.
9884 2014-04-02  Richard Stallman  <rms@gnu.org>
9886         * subr.el (set-transient-map): Comment out previous change.
9888 2014-04-02  Glenn Morris  <rgm@gnu.org>
9890         * menu-bar.el (menu-bar-file-menu):
9891         * vc/ediff.el (ediff-current-file):
9892         Update for revert-buffer-function no longer being nil by default.
9894         * simple.el (command-execute): Respect nil disabled-command-function.
9896 2014-04-02  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
9898         * simple.el (command-execute): Do not execute the command when it
9899         is disabled; fixes thinko in 2013-02-20 conversion from C.  (Bug#17151)
9901 2014-04-02  Juri Linkov  <juri@jurta.org>
9903         * dired-aux.el (dired-compress-file): Don't use string-match-p
9904         because its match data is used afterwards.
9906 2014-04-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9908         * emacs-lisp/package.el (package-built-in-p): Treat a min-version of
9909         0 like nil.
9911 2014-04-02  João Távora  <joaotavora@gmail.com>
9913         * elec-pair.el (electric-pair-inhibit-if-helps-balance):
9914         Inhibit quote pairing if point-max is inside an unterminated string.
9915         (electric-pair--looking-at-unterminated-string-p):
9916         Delete.
9917         (electric-pair--in-unterminated-string-p): New function.
9919 2014-04-01  Daniel Colascione  <dancol@dancol.org>
9921         * minibuffer.el (minibuffer-complete): Prevent assertion failure
9922         when trying to complete the prompt.
9924 2014-03-31  Leo Liu  <sdl.web@gmail.com>
9926         * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
9927         Refactor out eldoc-documentation-function-default.
9928         (eldoc-documentation-function-default): New function.
9929         (eldoc-documentation-function): Change value.
9931 2014-03-31  Glenn Morris  <rgm@gnu.org>
9933         * simple.el (cycle-spacing--context, cycle-spacing): Doc tweaks.
9935         * progmodes/vhdl-mode.el (vhdl-speedbar-select-mra)
9936         (vhdl-compose-components-package, vhdl-compose-configuration):
9937         Abbreviate default-directory (missing from some previous upstream sync).
9939 2014-03-31  Reto Zimmermann  <reto@gnu.org>
9941         Sync with upstream vhdl mode v3.35.2.
9942         * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
9943         (top-level): No longer require assoc.
9944         (vhdl-asort, vhdl-anot-head-p, vhdl-aput, vhdl-adelete, vhdl-aget):
9945         New functions.  Use throughout to replace aget etc.
9946         (vhdl-aput-delete-if-nil): Rename from vhdl-aput.
9947         (vhdl-update-file-contents): Update for vhdl-aput-delete-if-nil rename.
9948         (vhdl-template-replace-header-keywords): Fix bug for "<title string>".
9949         (vhdl-compile-init): Do not initialize regexps for Emacs 22+.
9950         (vhdl-error-regexp-emacs-alist): Remove regexps from all compilers
9951         except `vhdl-compiler'.
9952         (vhdl-error-regexp-add-emacs): Remove all other compilers,
9953         when appropriate.
9955 2014-03-31  Glenn Morris  <rgm@gnu.org>
9957         * progmodes/vhdl-mode.el (vhdl-expand-abbrev, vhdl-expand-paren):
9958         Revert 2014-03-26 merge goof; go back to using defalias.
9960 2014-03-30  Daniel Colascione  <dancol@dancol.org>
9962         * comint.el (comint-send-input):
9963         Deactivate completion-in-region-mode before we send comint input.
9964         (Bug#17139).
9966         * simple.el (keyboard-quit): Deactivate completion-in-region-mode
9967         on keyboard-quit.
9969 2014-03-29  Glenn Morris  <rgm@gnu.org>
9971         * textmodes/reftex.el: Manage most autoloads automatically.
9972         * textmodes/reftex-auc.el, textmodes/reftex-cite.el:
9973         * textmodes/reftex-dcr.el, textmodes/reftex-global.el:
9974         * textmodes/reftex-index.el, textmodes/reftex-parse.el:
9975         * textmodes/reftex-ref.el, textmodes/reftex-sel.el:
9976         * textmodes/reftex-toc.el: Set generated-autoload-file,
9977         and add autoload cookies for reftex.el.
9978         * Makefile.in (AUTOGEN_VCS): Add textmodes/reftex.el.
9980 2014-03-28  Glenn Morris  <rgm@gnu.org>
9982         * cus-start.el (report-emacs-bug-address): Set custom properties.
9983         * mail/emacsbug.el (report-emacs-bug-address):
9984         Variable is now defined in emacs.c.
9986         * mail/emacsbug.el (report-emacs-bug):
9987         Include system-configuration-features.
9989 2014-03-28  Michal Nazarewicz  <mina86@mina86.com>
9991         * simple.el (cycle-spacing): Never delete spaces on first run by
9992         default, but do so in a new 'fast mode and if there are already
9993         N spaces (the previous behavior).
9994         Compare N with its value in previous invocation so that changing
9995         prefix argument restarts `cycle-spacing' sequence.
9996         The idea is that with this change, binding M-SPC to
9997         `cycle-spacing' should not introduce any changes in behavior of
9998         the binding so long as users do not type M-SPC twice in a raw with
9999         the same prefix argument or lack thereof.
10001 2014-03-28  Glenn Morris  <rgm@gnu.org>
10003         * faces.el (term-file-aliases): New variable.
10004         (tty-run-terminal-initialization): Respect term-file-aliases.
10005         * term/apollo.el, term/vt102.el, term/vt125.el, term/vt201.el:
10006         * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el:
10007         * term/vt400.el, term/vt420.el: Remove files, replaced by aliases.
10009 2014-03-27  Glenn Morris  <rgm@gnu.org>
10011         * startup.el (inhibit-startup-hooks): Doc tweak.
10012         (normal-top-level): Simplify running of hooks.
10013         For window-setup-hook, respect inhibit-startup-hooks.
10014         (command-line-1): Don't set window-setup-hook to nil.
10016         Allow selective autoloading from obsolete/ directory.
10017         * Makefile.in (obsolete-autoloads): New rule.
10018         (autoloads): Run obsolete-autoloads.
10019         * obsolete/iswitchb.el (iswitchb-mode): Use obsolete-autoload.
10020         * simple.el (iswitchb-mode): Remove hand-written autoloads.
10022 2014-03-27  Dmitry Gutov  <dgutov@yandex.ru>
10024         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
10025         Highlight special globals with font-lock-builtin-face.  (Bug#17057)
10027         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
10028         Don't propertize `?' or `!' as symbol constituent when after
10029         colon.  (Bug#17097)
10031 2014-03-27  Juanma Barranquero  <lekktu@gmail.com>
10033         * frameset.el (frameset--restore-frame): Remove workaround for bug#14795
10034         which is no longer needed and causes trouble in GTK builds (bug#17046).
10036         * emacs-lisp/package-x.el (package--archive-contents-from-url):
10037         Use url-insert-file-contents; package-handle-response no longer exists.
10039 2014-03-26  Daniel Colascione  <dancol@dancol.org>
10041         * simple.el (process-menu-mode-map): New variable.
10042         (process-menu-delete-process): New command.
10044 2014-03-26  Juanma Barranquero  <lekktu@gmail.com>
10046         * emacs-lisp/package.el: Fix bug#16733 (again).
10047         (url-http-parse-response, url-http-end-of-headers, url-recreate-url)
10048         (url-http-target-url): Remove unused declarations.
10049         (package-handle-response): Remove.
10050         (package--with-work-buffer): Use url-insert-file-contents and simplify.
10051         (package--download-one-archive): Use current-buffer instead of
10052         dynamic binding of `buffer'.
10053         (describe-package-1): Do not decode readme-string.
10055 2014-03-26  Michael Albinus  <michael.albinus@gmx.de>
10057         * net/tramp.el (tramp-methods, tramp-connection-timeout): Fix docstring.
10059         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Revert change
10060         from 2014-03-07, it decreases performance unnecessarily.  Let-bind
10061         `remote-file-name-inhibit-cache' to nil in the second pass.
10062         (tramp-find-executable): Do not call "which" on SunOS.
10063         (tramp-send-command-and-check): Fix docstring.
10064         (tramp-do-copy-or-rename-file-directly): In the `rename' case,
10065         check whether source directory has set the sticky bit.
10067 2014-03-26  Barry O'Reilly  <gundaetiapo@gmail.com>
10069         * simple.el (primitive-undo): Only process marker adjustments
10070         validated against their corresponding (TEXT . POS).  Issue warning
10071         for lone marker adjustments in undo history.  (Bug#16818)
10072         (undo-make-selective-list): Add marker adjustments to selective
10073         undo list based on whether their corresponding (TEXT . POS) is in
10074         the region.  Remove variable adjusted-markers, which was unused
10075         and only non nil during undo-make-selective-list.
10076         (undo-elt-in-region): Return nil when passed a marker adjustment
10077         and explain in function doc.
10079 2014-03-26  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
10081         * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
10083 2014-03-26  Dmitry Gutov  <dgutov@yandex.ru>
10085         * progmodes/ruby-mode.el (ruby-expression-expansion-re):
10086         Match special global variables without curlies, too.
10087         (ruby-font-lock-keywords): Simplify the matcher for special global
10088         variables.  Don't require a non-word character after the variable.
10089         (Bug#17057)
10091 2014-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
10093         * simple.el (redisplay-highlight-region-function): Increase priority of
10094         overlay to make sure boundaries are visible (bug#15899).
10096 2014-03-26  Juanma Barranquero  <lekktu@gmail.com>
10098         * frameset.el (frameset--initial-params): Fix typo in parameter name.
10099         (frameset-restore): Compare display strings with equal.
10101         * frame.el (make-frame): Don't quote display name in error message,
10102         it is already a string.
10104 2014-03-26  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
10106         * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
10107         the password.
10109 2014-03-26  Dmitry Gutov  <dgutov@yandex.ru>
10111         * emacs-lisp/package.el (package--add-to-archive-contents):
10112         Include already installed and built-in packages in
10113         `package-archive-contents'.
10114         (package-install): Don't include already installed packages in the
10115         options during interactive invocation.  (Bug#16762)
10116         (package-show-package-list): If the buffer is already displayed in
10117         another window, switch to that window.
10119 2014-03-26  Reto Zimmermann  <reto@gnu.org>
10121         Sync with upstream vhdl mode v3.35.1.
10122         * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
10123         (vhdl-compiler-alist): Doc fix.
10124         (vhdl-goto-line): Remove.
10125         (vhdl-mode-abbrev-table-init): Add XEmacs compat.
10126         (vhdl-mode) <paragraph-start>: Fix value.
10127         (vhdl-fix-statement-region): Not `for' in wait-statement.
10128         (vhdl-beautify-region): Also (un)tabify.
10129         (vhdl-get-visible-signals):
10130         Scan declarative part of generate statements.
10131         (vhdl-template-record): Fix indentation for record type declaration.
10132         (vhdl-expand-abbrev, vhdl-expand-paren):
10133         Revert to using fset again rather than defalias.
10134         (vhdl-scan-directory-contents): Tweak.
10135         (vhdl-speedbar-find-file, vhdl-speedbar-port-copy)
10136         (vhdl-compose-components-package):
10137         Replace vhdl-goto-line with forward-line.
10138         (top-level): Tweak speedbar frame selection.
10139         (vhdl-generate-makefile-1): Support for compilers with no
10140         unit-to-file name mapping (create directory with dummy files).
10142 2014-03-26  Wilson Snyder  <wsnyder@wsnyder.org>
10144         Sync with upstream verilog-mode revision 702457d.
10145         * progmodes/verilog-mode.el (verilog-mode-version): Update.
10146         (create-lockfiles): Declare.
10147         (verilog-read-decls): Fix module header imports, bug709.
10148         Reported by Victor Lau.
10149         Fix parsing 'var' in AUTOs, msg1294.  Reported by Dominique Chen.
10150         (verilog-auto-inout-module): Fix AUTOINOUTMODULE not inserting
10151         interface-only modules, bug721.  Reported by Dean Hoyt.
10153 2014-03-26  Glenn Morris  <rgm@gnu.org>
10155         * obsolete/gulp.el: Move here from emacs-lisp/.
10157         * files.el (lock-buffer, unlock-buffer, file-locked-p):
10158         Remove fallback aliases, since they are always defined now.
10160 2014-03-24  Daniel Colascione  <dancol@dancol.org>
10162         * emacs-lisp/cl-macs.el (cl--do-arglist): Use `plist-member'
10163         instead of cl-loop search function.
10165 2014-03-23  Lars Ingebrigtsen  <larsi@gnus.org>
10167         * calendar/parse-time.el (parse-time-iso8601-regexp)
10168         (parse-iso8601-time-string): Copy from `url-dav' so that we can use
10169         it more generally.
10171 2014-03-23  Lars Ingebrigtsen  <larsi@gnus.org>
10173         * net/dns.el (network-interface-list): Define for XEmacs.
10175 2014-03-23  Magnus Henoch  <magnus.henoch@gmail.com>
10177         * net/dns.el (dns-servers-up-to-date-p): New function to see whether
10178         the network interfaces changed.
10179         (dns-query): Use it to flush the data.
10181 2014-03-23  Juanma Barranquero  <lekktu@gmail.com>
10183         * vc/vc.el (vc-rollback): Use set-buffer-modified-p.
10185 2014-03-23  Daniel Colascione  <dancol@dancol.org>
10187         Change subword-mode to use `find-word-boundary-function-table' and
10188         replace `capitalized-words-mode'.  Also, convert to lexical binding.
10189         * progmodes/cap-words.el: Delete now-obsolete file.
10190         * progmodes/subword.el: Reimplement using
10191         `find-word-boundary-function-table'.
10192         (subword-mode-map): Hollow out.
10193         (capitalized-words-mode): Define as obsolete alias for
10194         `subword-mode'.
10195         (subword-mode, superword-mode): Tweak documentation to reflect new
10196         implementation; call `subword-setup-buffer'.
10197         (subword-forward, subword-capitalize): Add underscore to indicate
10198         unused variable.
10199         (subword-find-word-boundary-function-table): New constant.
10200         (subword-empty-char-table): New constant.
10201         (subword-setup-buffer): New function.
10202         (subword-find-word-boundary): New function.
10204 2014-03-23  Daniel Colascione  <dancol@dancol.org>
10206         * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
10207         list to look for keyword arguments instead of `memq', fixing
10208         (Bug#3647) --- unfortunately, only for freshly-compiled code.
10209         Please make bootstrap.
10211 2014-03-22  Glenn Morris  <rgm@gnu.org>
10213         * dired.el (dired-read-regexp): Make obsolete.
10214         (dired-mark-files-regexp, dired-mark-files-containing-regexp)
10215         (dired-flag-files-regexp):
10216         * dired-aux.el (dired-mark-read-regexp):
10217         * dired-x.el (dired-mark-unmarked-files): Use read-regexp directly.
10219         * startup.el (fancy-startup-text):
10220         * help.el (describe-gnu-project): Visit online info about GNU project.
10222         * help-fns.el (help-fns--interactive-only): New function.
10223         (help-fns-describe-function-functions): Add the above function.
10224         * simple.el (beginning-of-buffer, end-of-buffer, insert-buffer)
10225         (next-line, previous-line): Remove hand-written interactive-only
10226         information from doc strings, it is auto-generated now.
10227         * bookmark.el (bookmark-write):
10228         * epa-mail.el (epa-mail-decrypt, epa-mail-verify, epa-mail-sign)
10229         (epa-mail-import-keys): Mark interactive-only,
10230         and remove hand-written interactive-only information from doc strings.
10231         * epa.el (epa-decrypt-armor-in-region, epa-verify-region)
10232         (epa-verify-cleartext-in-region, epa-sign-region, epa-encrypt-region):
10233         * files.el (not-modified):
10234         * simple.el (mark-whole-buffer): Mark interactive-only.
10236         * emacs-lisp/byte-run.el (defun-declarations-alist):
10237         Add interactive-only.  Doc tweak.
10238         (macro-declarations-alist): Doc tweak.
10239         * subr.el (declare): Doc tweak (add xref to manual).
10240         * comint.el (comint-run):
10241         * files.el (insert-file-literally, insert-file):
10242         * replace.el (replace-string, replace-regexp):
10243         * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
10244         (delete-forward-char, goto-line, insert-buffer, next-line)
10245         (previous-line): Set interactive-only via declare.
10247 2014-03-22  Dmitry Gutov  <dgutov@yandex.ru>
10249         * emacs-lisp/package.el (package-desc): Use the contents of the
10250         quoted form, not its cdr.  (Bug#16873)
10252 2014-03-22  Juanma Barranquero  <lekktu@gmail.com>
10254         * w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
10255         benefit of doc.c; change parameter profile to match the X function.
10257 2014-03-22  Leo Liu  <sdl.web@gmail.com>
10259         * help.el (temp-buffer-setup-hook): Remove help-mode-setup.
10260         (temp-buffer-show-hook): Remove help-mode-finish.  (Bug#16038)
10262 2014-03-21  Richard Stallman  <rms@gnu.org>
10264         * battery.el (battery-linux-sysfs): Search for each field
10265         from the beginning of the buffer.
10267         * subr.el (set-transient-map): Clear out function and value
10268         of the temporary symbol when we're done with it.
10270         * mail/rmailsum.el (rmail-summary-delete-forward):
10271         Optimize case of reaching end and handling count.
10272         (rmail-summary-mark-deleted): Optimize when N is current msg.
10273         Don't create new summary line.
10274         (rmail-summary-undelete): Pass arg to rmail-undelete-previous-message.
10275         (rmail-summary-undelete-many): Rewrite for speed.
10276         (rmail-summary-msg-number): New function.
10278         * mail/rmail.el (rmail-delete-message): Update summary.
10279         (rmail-undelete-previous-message): Handle repeat count arg.
10280         (rmail-delete-backward, rmail-delete-forward): Likewise.
10282 2014-03-21  Daniel Colascione  <dancol@dancol.org>
10284         * mail/emacsbug.el (report-emacs-bug): Include memory usage
10285         information in bug reports.
10287 2014-03-21  Michael Albinus  <michael.albinus@gmx.de>
10289         * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
10290         and `tramp-copy-env'.
10292         * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
10293         (tramp-maybe-open-connection): Handle `tramp-login-env'.
10295 2014-03-21  Glenn Morris  <rgm@gnu.org>
10297         * electric.el (electric-indent-post-self-insert-function): Add doc.
10299 2014-03-21  Dmitry Gutov  <dgutov@yandex.ru>
10301         * emacs-lisp/package.el (package-compute-transaction):
10302         Use `version-list-<=' to compare the requirement version against
10303         the version of package already to be installed.  Update the error
10304         message.  (Bug#16826)
10306         * progmodes/ruby-mode.el (ruby-smie-rules):
10307         Add indentation rule for ` @ '.  (Bug#17050)
10309 2014-03-21  Juanma Barranquero  <lekktu@gmail.com>
10311         * align.el (align-regexp): Remove superfluous backslash.
10313         * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
10314         (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
10315         (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
10316         Fix docstring typos.
10317         (ffap-next): Use C-u in docstring.
10318         (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
10319         (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
10320         Remove superfluous backslashes.
10321         (ffap-string-at-point): Reflow docstring.
10323         * server.el (server-host): Reflow docstring.
10324         (server-unload-function): Fix docstring typo.
10325         (server-eval-at): Remove superfluous backslash.
10327         * skeleton.el (skeleton-insert): Remove superfluous backslash.
10328         (skeleton-insert): Doc fix.
10329         (skeleton-insert): Reflow docstring.
10331         * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
10332         (tty-color-approximate, tty-color-by-index, tty-color-values)
10333         (tty-color-desc): Remove superfluous backslashes.
10335 2014-03-21  Glenn Morris  <rgm@gnu.org>
10337         * cus-start.el (history-length): Bump :version.
10339         * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
10340         ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
10341         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
10342         Don't set `make-backup-files'.
10344         * info.el (info--prettify-description): New function,
10345         to give info-finder descriptions consistent case, punctuation.
10346         (Info-finder-find-node): Use it.  Sort packages.
10347         Refer to "description" rather than "commentary".
10349 2014-03-21  Juanma Barranquero  <lekktu@gmail.com>
10351         * frameset.el (frameset--print-register): New function.
10352         (frameset-to-register): Use it.
10354 2014-03-20  Juanma Barranquero  <lekktu@gmail.com>
10356         * progmodes/hideif.el (hif-string-to-number): New function.
10357         (hif-tokenize): Use it to understand non-decimal floats.
10359         * emacs-lisp/cl-extra.el (cl--map-overlays): Remove obsolete code.
10361         * skeleton.el (skeleton-autowrap): Mark as obsolete.  Doc fix.
10363 2014-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
10365         * electric.el (electric-newline-and-maybe-indent): New command.
10366         Bind it globally to C-j.
10367         (electric-indent-mode): Don't mess with the global map any more.
10368         Don't drop the post-self-insert-hook is some buffer is still using it
10369         (bug#16770).
10371         * bindings.el (global-map): Remove C-j binding.
10373         * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
10374         the docstring of functions advised before dumping (bug#16993).
10376 2014-03-19  Stefan-W. Hahn  <stefan.hahn@s-hahn.de>  (tiny change)
10378         * ps-print.el (ps-generate-postscript-with-faces):
10379         Explicitly deactivate the mark (bug#16866).
10380         * simple.el (deactivate-mark): Update region highlight.
10382 2014-03-19  Juanma Barranquero  <lekktu@gmail.com>
10384         * emacs-lisp/package.el (describe-package-1):
10385         Decode commentary (bug#16733).
10387 2014-03-18  Juanma Barranquero  <lekktu@gmail.com>
10389         * custom.el (defcustom): Doc fix: recommend avoiding destructive
10390         modification of the value argument of :set (bug#16755).
10392 2014-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
10394         * simple.el (newline-and-indent): Do autofill (bug#17031).
10396 2014-03-18  Dmitry Gutov  <dgutov@yandex.ru>
10398         * newcomment.el (comment-normalize-vars): Only add escaping check
10399         to `comment-start-skip' if not `comment-use-syntax'.  (Bug#16971)
10400         (comment-beginning): Use `narrow-to-region' instead of moving back
10401         one character.
10402         (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
10403         (comment-start-skip): Update the docstring.
10405 2014-03-18  Richard Stallman  <rms@gnu.org>
10407         * dired.el (dired-display-file): Force use of other window.
10409 2014-03-18  Daniel Colascione  <dancol@dancol.org>
10411         * startup.el (tty-handle-args): Remove debug message from 2007.
10413 2014-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10415         * emacs-lisp/nadvice.el (advice--interactive-form): New function.
10416         (advice--make-interactive-form): Use it to avoid (auto)loading function.
10417         (advice--make-1, advice-add, advice-remove):
10418         Remove braindead :advice-pending hack.
10420 2014-03-17  Glenn Morris  <rgm@gnu.org>
10422         * calendar/calendar.el (calendar-generate-month): Apply weekend
10423         face to the right days; fixes 2013-08-06 change.  (Bug#17028)
10425 2014-03-17  Michael Albinus  <michael.albinus@gmx.de>
10427         * net/tramp.el (tramp-action-out-of-band): Read pending output.
10428         (tramp-call-process): Trace also DESTINATION.
10430         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
10431         Quote file names when they are local.  Remove superfluous trace.
10433 2014-03-17  Dmitry Gutov  <dgutov@yandex.ru>
10435         * newcomment.el (comment-beginning): If `comment-start-skip'
10436         doesn't match, move back one char and try again.  (Bug#16971)
10438         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
10439         Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
10440         Set `comment-start-skip' to a simpler value that doesn't try to
10441         check if the semicolon is escaped (this is handled by
10442         `syntax-ppss' now).  (Bug#16971)
10444         * progmodes/scheme.el (scheme-mode-variables): Same.
10446 2014-03-16  Martin Rudalics  <rudalics@gmx.at>
10448         Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
10449         * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
10450         current (Bug#16816, Bug#17007).
10451         (with-current-buffer-window): New macro doing the same as
10452         `with-temp-buffer-window' but with BUFFER-OR-NAME current.
10453         * help.el (help-print-return-message): Warn in doc-string to not
10454         use this in `with-help-window'.
10455         (describe-bindings-internal): Call `describe-buffer-bindings'
10456         from within help buffer.  See Juanma's scenario in (Bug#16816).
10457         (with-help-window): Update doc-string.
10458         * dired.el (dired-mark-pop-up):
10459         * files.el (save-buffers-kill-emacs):
10460         * register.el (register-preview): Use `with-current-buffer-window'
10461         instead of `with-temp-buffer-window'.
10463 2014-03-16  Juanma Barranquero  <lekktu@gmail.com>
10465         * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
10466         Implement inserting into current buffer, documented in their docstrings.
10467         (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
10468         (rst-section-tree-point, rst-forward-section, rst-indent)
10469         (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
10470         (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
10471         (rst-font-lock-handle-adornment-pre-match-form)
10472         (rst-repeat-last-character): Reflow docstrings.
10473         (rst-preferred-adornments, rst-update-section, rst-find-title-line)
10474         (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
10475         (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
10476         (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
10477         Fix docstring typos.
10478         (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
10479         (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
10480         (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
10482 2014-03-15  Juanma Barranquero  <lekktu@gmail.com>
10484         * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
10485         for compatibility with other ports.
10486         (ns-initialize-window-system): Use it.  It is set in term/common-win.el
10487         from the -xrm command line argument, but in the Nextstep port its value
10488         is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
10490         * progmodes/python.el (defconst, python-syntax-count-quotes)
10491         (python-indent-region, python-indent-shift-right)
10492         (python-indent-dedent-line-backspace, python-nav-backward-sexp)
10493         (python-nav-backward-sexp-safe, python-nav-backward-up-list)
10494         (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
10495         (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
10496         (inferior-python-mode, python-shell-make-comint, run-python-internal)
10497         (python-shell-buffer-substring, python-shell-send-buffer)
10498         (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
10499         (python-completion-complete-at-point, python-fill-docstring-style)
10500         (python-eldoc-function, python-imenu-format-item-label)
10501         (python-imenu-format-parent-item-label)
10502         (python-imenu-format-parent-item-jump-label)
10503         (python-imenu--build-tree, python-imenu-create-index)
10504         (python-imenu-create-flat-index): Fix docstring typos.
10505         (python-indent-context, python-shell-prompt-regexp, run-python):
10506         Remove superfluous backslashes.
10507         (python-indent-line, python-nav-beginning-of-defun)
10508         (python-shell-get-buffer, python-shell-get-process)
10509         (python-info-current-defun, python-info-current-line-comment-p)
10510         (python-info-current-line-empty-p, python-util-popn): Doc fixes.
10511         (python-indent-post-self-insert-function, python-shell-send-file)
10512         (python-shell-completion-get-completions)
10513         (python-shell-completion-complete-or-indent)
10514         (python-eldoc--get-doc-at-point): Reflow docstrings.
10516 2014-03-14  Glenn Morris  <rgm@gnu.org>
10518         * emacs-lisp/package.el (package-menu-mode-map):
10519         Replace use of obsolete function alias.  Tweak menu item text.
10521         * info.el (Info-finder-find-node):
10522         Ignore the `emacs' metapackage.  (Bug#10813)
10524         * finder.el (finder-list-matches): Include unversioned packages
10525         in the result of a keyword search.
10527         * finder.el (finder--builtins-descriptions): New constant.
10528         (finder-compile-keywords): Use finder--builtins-descriptions.
10530 2014-03-14  Dmitry Gutov  <dgutov@yandex.ru>
10532         * simple.el (blink-matching-paren): Describe the new value,
10533         `jump', enabling the old behavior.
10534         (blink-matching-open): Use that value.  (Bug#17008)
10536 2014-03-14  Glenn Morris  <rgm@gnu.org>
10538         * finder.el (finder-no-scan-regexp): Add leim-list.
10539         (finder-compile-keywords):
10540         Don't skip files with same basename.  (Bug#14010)
10541         * Makefile.in (setwins_finder): New, excluding leim.
10542         (finder-data): Use setwins_finder.
10544         * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
10545         (help-function-arglist, help-make-usage): Move from here...
10546         * help.el (help-split-fundoc, help-add-fundoc-usage)
10547         (help-function-arglist, help-make-usage): ... to here.  (Bug#17001)
10548         * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
10550 2014-03-14  Juanma Barranquero  <lekktu@gmail.com>
10552         * net/socks.el (socks, socks-override-functions)
10553         (socks-find-services-entry):
10554         * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
10555         (hif-find-ifdef-block):
10556         * progmodes/modula2.el (m2-indent): Fix docstring typos.
10558         * net/tls.el (tls-program): Reflow docstring.
10560         * progmodes/pascal.el (pascal-mode-abbrev-table)
10561         (pascal-imenu-generic-expression, pascal-auto-endcomments)
10562         (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
10563         (pascal-outline-mode): Fix docstring typos.
10564         (pascal-mode): Let define-derived-mode document mode hook.
10565         (pascal-uncomment-area): Reflow.
10566         (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
10568         * progmodes/opascal.el (opascal-compound-block-indent)
10569         (opascal-case-label-indent): Fix docstring typos.
10570         (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
10572 2014-03-13  Dmitry Gutov  <dgutov@yandex.ru>
10574         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
10575         Fontify multiple adjacent negation chars.  (Bug#17004)
10577 2014-03-13  Tom Willemse  <tom@ryuslash.org>  (tiny change)
10579         * emacs-lisp/package.el (package--prepare-dependencies):
10580         Accept requirements without explicit version (bug#14941).
10582 2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
10584         * register.el (register-separator, copy-to-register): Doc fixes.
10585         (register-preview-default): Remove unnecessary call to concat.
10587         * frameset.el (frameset-restore): When checking for a visible frame,
10588         use the action map instead of calling visible-frame-list.
10590 2014-03-12  Jonas Bernoulli  <jonas@bernoul.li>
10592         * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
10594 2014-03-12  Martin Rudalics  <rudalics@gmx.at>
10596         * window.el (fit-frame-to-buffer): Get maximum width from
10597         display's width instead of height.
10599 2014-03-12  Glenn Morris  <rgm@gnu.org>
10601         * desktop.el (desktop-restore-frames)
10602         (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
10603         (desktop-restore-reuses-frames): Doc tweaks.
10605         * electric.el (electric-indent-mode): Doc fix.
10607 2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
10609         * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
10610         (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
10611         (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
10612         (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
10613         (cvs-dired-use-hook): Fix docstring typos.
10614         (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
10615         Doc fixes.
10617         * vc/pcvs-defs.el (cvs-auto-remove-handled)
10618         (cvs-auto-remove-directories, cvs-default-ignore-marks)
10619         (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
10620         (cvs-execute-single-dir): Fix docstring typos.
10622         * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
10623         (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
10625         * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
10627         * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
10628         Fix docstring typos.
10630 2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
10632         * frameset.el (frameset--jump-to-register): Add autoload; it could be
10633         called from jump-to-register after unloading the frameset package.
10635 2014-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10637         * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
10638         (bug#16975).  Deactivate the mark before setting it to nil.
10639         (activate-mark): Do nothing if region is already active.
10641 2014-03-11  Juanma Barranquero  <lekktu@gmail.com>
10643         * frameset.el (frameset--target-display): Remove definition; declare.
10644         (frameset-save, frameset-restore): Let-bind frameset--target-display.
10646 2014-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10648         * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
10649         (advice-add): Add a :advice--pending marker, so advice--make-1 knows
10650         when the advice is pending.
10651         (advice-remove): Remove this marker when not needed any more.
10653 2014-03-11  Juanma Barranquero  <lekktu@gmail.com>
10655         * frameset.el: Separate options for reusing frames and cleaning up.
10656         (frameset--reuse-list): Remove definition; declare.
10657         (frameset--action-map): Declare.
10658         (frameset--find-frame-if): Doc fix.
10659         (frameset--restore-frame): Cache frame action.
10660         (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
10661         how to clean up the frame list after restoring.  Remove cleaning
10662         options from REUSE-FRAMES.  Change all keyword values to symbols.
10663         (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
10665         * desktop.el (desktop-restore-forces-onscreen)
10666         (desktop-restore-reuses-frames): Use non-keyword values.
10667         (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
10669 2014-03-10  Glenn Morris  <rgm@gnu.org>
10671         * files.el (find-file): Doc fix: update info node name.
10673         * emacs-lisp/advice.el (ad-add-advice, defadvice):
10674         Doc fix: remove references to deleted info nodes.
10676 2014-03-10  Michael Albinus  <michael.albinus@gmx.de>
10678         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
10679         Do not add nil to the environment, when there's no remote `locale'.
10680         (tramp-find-inline-encoding): Check, that the remote host has
10681         installed perl, before sending scripts.
10683 2014-03-10  Leo Liu  <sdl.web@gmail.com>
10685         * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
10686         Clear eldoc-last-message.  (Bug#16920)
10688 2014-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
10690         * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
10691         (bug#14430).
10693 2014-03-09  Juri Linkov  <juri@jurta.org>
10695         * ansi-color.el (ansi-color-names-vector): Copy default colors
10696         from `xterm-standard-colors' that look well on the default white
10697         background (and also on the black background) to avoid illegible
10698         color combinations like yellow-on-white and white-on-white.
10699         http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
10701 2014-03-08  Juanma Barranquero  <lekktu@gmail.com>
10703         * frameset.el (frameset-restore): When no frame is visible, do not
10704         generate a list of frames, just make visible the selected one.
10706 2014-03-08  Dmitry Gutov  <dgutov@yandex.ru>
10708         * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
10709         it only contains the repository root.  (Bug#16897)
10711 2014-03-07  Michael Albinus  <michael.albinus@gmx.de>
10713         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
10714         only when `remote-file-name-inhibit-cache' is nil.
10715         (tramp-sh-file-name-handler): Use `tramp-error'.  Simplify code.
10717 2014-03-06  Martin Rudalics  <rudalics@gmx.at>
10719         * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
10720         Fix doc-strings.
10721         (fit-frame-to-buffer): New argument ONLY.  Remove dependency on
10722         fit-frame-to-buffer variable.  Fix doc-string.
10723         (fit-window-to-buffer): Set ONLY argument in call of
10724         fit-frame-to-buffer.  Fix doc-string.
10726 2014-03-06  Michael Albinus  <michael.albinus@gmx.de>
10728         * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
10729         (tramp-action-password): Clear password cache if needed.
10730         (tramp-read-passwd): Do not clear password cache.
10732         * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
10733         cache unless it is the first password request.
10735 2014-03-06  Glenn Morris  <rgm@gnu.org>
10737         * simple.el (newline): Doc tweak.
10739         * emacs-lisp/shadow.el (load-path-shadows-find):
10740         Ignore dir-locals.  (Bug#12357)
10742 2014-03-05  Glenn Morris  <rgm@gnu.org>
10744         * files.el (interpreter-mode-alist):
10745         * progmodes/sh-script.el (sh-ancestor-alist): Add dash.  (Bug#16938)
10747 2014-03-05  Juanma Barranquero  <lekktu@gmail.com>
10749         * frameset.el (frameset--initial-params): Filter out null entries.
10751 2014-03-05  Martin Rudalics  <rudalics@gmx.at>
10753         * window.el (window-min-height, window-min-width):
10754         Rewrite doc-strings.
10755         (window-body-size): Add PIXELWISE argument to make it consistent
10756         with its callees.
10758 2014-03-05  Juanma Barranquero  <lekktu@gmail.com>
10760         * finder.el (finder-mode-map, finder-mode-syntax-table):
10761         Revert part of 2014-02-28 change.
10763 2014-03-05  Lars Ingebrigtsen  <larsi@gnus.org>
10765         * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
10766         (eww-setup-buffer): Clear next/prev/etc more reliably.
10767         (eww-textarea-map): [tab] doesn't work on tty.
10768         Reported by Mario Lang.
10770         * net/shr.el (shr-map): Ditto.
10772 2014-03-04  Glenn Morris  <rgm@gnu.org>
10774         * minibuffer.el (completion-hilit-commonality):
10775         Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
10777 2014-03-04  Juanma Barranquero  <lekktu@gmail.com>
10779         * hilit-chg.el (hilit-chg-unload-function): New function.
10780         (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
10781         (hilit-chg-map-changes): Prefer cardinal number to digit.
10782         (hilit-chg-display-changes): Reflow docstring.
10783         (highlight-changes-rotate-faces): Remove superfluous backslash.
10785 2014-03-04  Michael Albinus  <michael.albinus@gmx.de>
10787         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
10788         `tramp-send-command-and-check'.
10790 2014-03-04  Juanma Barranquero  <lekktu@gmail.com>
10792         * hexl.el (hexl-address-region, hexl-ascii-region)
10793         (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
10794         (hexl-backward-short, hexl-forward-short, hexl-backward-word)
10795         (hexl-forward-word, hexl-previous-line, hexl-next-line):
10796         Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
10797         (hexl-mode): Doc fix.
10798         (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
10799         (hexl-mode-ruler): Fix typos in docstrings.
10801         * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
10802         (strokes-character, strokes-get-grid-position, strokes-list-strokes):
10803         Remove superfluous backslashes.
10804         (strokes-last-stroke, strokes-global-map, strokes-mode):
10805         Reflow docstrings.
10806         (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
10807         (strokes-xpm-for-compressed-string): Use quotes with buffer name.
10808         (strokes-distance-squared, strokes-global-set-stroke)
10809         (strokes-global-set-stroke-string): Doc fixes.
10810         (strokes-help): Fix typos; reflow docstring.
10812 2014-03-04  Martin Rudalics  <rudalics@gmx.at>
10814         * window.el (window-in-direction): Fix doc-string.
10816 2014-03-04  Glenn Morris  <rgm@gnu.org>
10818         * emacs-lisp/smie.el (smie-config-guess): Doc fix.
10819         Explicit error if no grammar.
10820         (smie-config-save): Doc fix.  Fix quote typo.
10822 2014-03-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10824         * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
10825         electric-indent-mode-hook if we obey electric-indent-mode.
10826         (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
10827         decide whether we obey electric-indent-mode.
10828         (c-change-set-fl-decl-start, c-extend-after-change-region):
10829         Silence warnings.
10830         (c-electric-indent-mode-hook): Assume we do want to obey
10831         electric-indent-mode.
10833         * electric.el (electric-indent-mode-has-been-called): Remove.
10834         (electric-indent-mode): Fix accordingly.
10836         * files.el (hack-local-variables): Mention file name in warning.
10838         * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
10840 2014-03-04  Michal Nazarewicz  <mina86@mina86.com>
10842         * bindings.el: Add comment describing why C-d binds to `delete-char'.
10843         * simple.el (delete-forward-char): Mark as interactive-only.
10845 2014-03-03  Juanma Barranquero  <lekktu@gmail.com>
10847         * icomplete.el (icomplete-completions):
10848         Follow-up to 2014-03-01 change.
10850         * icomplete.el: Miscellaneous doc fixes.
10851         Use Icomplete everywhere instead of icomplete for consistency.
10852         (icomplete-max-delay-chars): Fix typo.
10853         (icomplete-mode): Use \[].
10854         (icomplete-tidy, icomplete-exhibit): Reflow.
10855         (icomplete-minibuffer-setup-hook, icomplete-completions):
10856         Remove superfluous backlashes.
10858         * ido.el: Miscellaneous doc fixes.
10859         Use Ido everywhere instead of ido or `ido' for consistency.
10860         (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
10861         (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
10862         (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
10863         (ido-separator): Extract obsolescence info from docstring and declare
10864         with make-obsolete-variable.
10865         (ido-minibuffer-setup-hook): Simplify example.
10866         (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
10867         (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
10868         (ido-completion-help, ido-completing-read): Fix typos in docstrings.
10869         (ido-everywhere): Reflow docstring.
10870         (ido-toggle-vc): Doc fix.
10871         (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
10872         of long list of keybindings.
10874 2014-03-03  Glenn Morris  <rgm@gnu.org>
10876         * frame.el (display-pixel-height, display-pixel-width)
10877         (display-mm-dimensions-alist, display-mm-height)
10878         (display-mm-width): Doc tweaks.
10880 2014-03-02  Barry O'Reilly  <gundaetiapo@gmail.com>
10882         * simple.el (undo-elt-in-region): Fix buffer corruption for edge
10883         case of undo in region.
10885 2014-03-02  Martin Rudalics  <rudalics@gmx.at>
10887         * window.el (fit-window-to-buffer): Fix argument in window-size
10888         call when window is horizontally combined.
10890 2014-03-02  Juanma Barranquero  <lekktu@gmail.com>
10892         * icomplete.el (icomplete-completions): Use string-width.
10893         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
10895 2014-03-01  Dmitry Gutov  <dgutov@yandex.ru>
10897         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
10898         Highlight regexp options.  (Bug#16914)
10900 2014-03-01  Martin Rudalics  <rudalics@gmx.at>
10902         * window.el (window--max-delta-1): Round down when calculating
10903         how many lines/columns we can get from a window.
10905 2014-03-01  Glenn Morris  <rgm@gnu.org>
10907         * isearch.el (search-invisible): Doc fix.
10909         * minibuffer.el (completion-hilit-commonality):
10910         Make `base-size' argument optional.  Short-cut if `prefix-len' is 0.
10911         * comint.el (comint-dynamic-list-completions): Doc fix.
10912         * comint.el (comint-dynamic-list-completions):
10913         * filecache.el (file-cache-minibuffer-complete):
10914         * tempo.el (tempo-display-completions):
10915         * eshell/em-hist.el (eshell-list-history):
10916         Replace use of obsolete argument of display-completion-list.
10918 2014-03-01  Juanma Barranquero  <lekktu@gmail.com>
10920         * icomplete.el (icomplete-completions):
10921         Revert back to using "..." when ?… cannot be displayed.
10923 2014-02-28  Juanma Barranquero  <lekktu@gmail.com>
10925         * finder.el (finder-unload-function): New function.
10927 2014-02-28  Juanma Barranquero  <lekktu@gmail.com>
10929         * dframe.el (dframe-detach):
10930         * find-dired.el (find-dired, find-name-dired):
10931         * finder.el (finder-mode-map, finder-mode-syntax-table)
10932         (finder-headmark, finder-select, finder-mouse-select):
10933         Fix docstring typos.
10935 2014-02-28  Martin Rudalics  <rudalics@gmx.at>
10937         Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
10938         * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
10939         Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
10940         Fix doc-string based on a suggestion by Nicolas Richard
10941         <theonewiththeevillook@yahoo.fr>.
10942         * help.el (with-help-window): Fix doc-string.
10944 2014-02-28  Ivan Kanis  <ivan@kanis.fr>
10946         * net/shr.el (shr-image-animate): New option.
10947         (shr-put-image): Respect shr-image-animate.
10949 2014-02-28  Michael Albinus  <michael.albinus@gmx.de>
10951         * net/tramp-adb.el (tramp-adb-parse-device-names):
10952         Use `accept-process-output'.
10953         (tramp-adb-handle-file-truename): Cache the localname only.
10954         (tramp-adb-handle-make-directory)
10955         (tramp-adb-handle-delete-directory): Flush file properties correctly.
10956         (tramp-adb-handle-set-file-modes): Do not raise an error when file
10957         modes cannot be changed.
10959         * net/tramp-cache.el (tramp-flush-directory-property): Remove also
10960         file properties of symlinks.
10962 2014-02-28  Per Starbäck  <starback@stp.lingfil.uu.se>
10964         * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
10965         required/optional fields to match development biblatex.  (Bug#16781)
10967 2014-02-28  Andy Sawyer  <andy.sawyer@gmail.com>  (tiny change)
10969         * saveplace.el (toggle-save-place):
10970         Fix argument handling.  (Bug#16673)
10972 2014-02-28  Glenn Morris  <rgm@gnu.org>
10974         * minibuffer.el (completions-first-difference)
10975         (completions-common-part, completion-hilit-commonality): Doc fixes.
10977 2014-02-28  Karl Berry  <karl@gnu.org>
10979         * info.el (Info-mode-map): Add H for describe-mode,
10980         to synchronize with standalone Info.
10982 2014-02-28  Emilio C. Lopes  <eclig@gmx.net>
10984         * progmodes/sql.el (sql-interactive-mode):
10985         Avoid setting global comint-input-ring-separator.  (Bug#16814)
10987 2014-02-27  Michael Albinus  <michael.albinus@gmx.de>
10989         * net/dbus.el (dbus--init-bus): Declare function.
10990         (dbus-path-local, dbus-interface-local): New defconst.
10991         (dbus-init-bus): Use them.
10992         (dbus-return-values-table): Extend doc.
10993         (dbus-handle-bus-disconnect): Extend error message.
10995 2014-02-27  Juanma Barranquero  <lekktu@gmail.com>
10997         * subr.el (y-or-n-p): Fix double space issue in message.
10999 2014-02-27  Michael Albinus  <michael.albinus@gmx.de>
11001         * net/tramp.el (tramp-call-process): Improve trace message.
11002         (tramp-handle-insert-file-contents): Trace error case.
11004         * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
11005         <insert-directory>: Use `tramp-handle-insert-directory'.
11006         (tramp-adb-handle-insert-directory): Remove function.
11007         (tramp-adb-send-command-and-check): New defun, replacing
11008         `tramp-adb-command-exit-status'.  Change all callees.
11009         (tramp-adb-handle-file-attributes)
11010         (tramp-adb-handle-directory-files-and-attributes): Use it.
11011         (tramp-adb-ls-output-name-less-p):
11012         Use `directory-listing-before-filename-regexp'.
11013         (tramp-adb-handle-delete-directory): Flush also file properties of
11014         the truename of directory.
11015         (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
11016         (tramp-adb-handle-file-local-copy): Make the local copy readable.
11017         (tramp-adb-handle-write-region): Implement APPEND.
11018         (tramp-adb-handle-rename-file): Make it more robust.  Flush file
11019         properties correctly.
11020         (tramp-adb-maybe-open-connection): Set `tramp-current-*'
11021         variables.  Check for connected devices only when needed.
11023 2014-02-27  Glenn Morris  <rgm@gnu.org>
11025         * minibuffer.el (completion-table-dynamic)
11026         (completion-table-with-cache): Doc fixes.
11028         * emacs-lisp/crm.el (crm-default-separator, crm-separator)
11029         (completing-read-multiple): Doc fixes.
11031 2014-02-27  Daniel Colascione  <dancol@dancol.org>
11033         * minibuffer.el (completion--nth-completion): Fix indentation.
11035         * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
11036         explicit tramp path is empty.
11038 2014-02-27  Glenn Morris  <rgm@gnu.org>
11040         * emacs-lisp/crm.el (completing-read-multiple):
11041         Empower help-enable-auto-load.
11043 2014-02-26  Glenn Morris  <rgm@gnu.org>
11045         * startup.el (command-line): Don't init the tty in daemon mode.
11047         Avoid calling tty-setup-hook twice, eg if a term file
11048         explicitly calls tty-run-terminal-initialization.  (Bug#16859)
11049         * faces.el (tty-run-terminal-initialization): Add run-hook argument.
11050         (tty-create-frame-with-faces): Use it.
11051         * startup.el (command-line): Pass run-hook argument
11052         to tty-run-terminal-initialization.
11054         * dired.el (dired-restore-desktop-buffer): Demote errors;
11055         eg in case a glob match fails.  (Bug#16884)
11057 2014-02-26  Dmitry Gutov  <dgutov@yandex.ru>
11059         * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
11060         error from `read-from-string'.  (Bug#16850)
11062         * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
11063         result of `completing-read' in the interactive form.  (Bug#16854)
11065 2014-02-25  Glenn Morris  <rgm@gnu.org>
11067         * image.el (image-animate, image-animate-timeout):
11068         Stop animating images in dead buffers.  (Bug#16878)
11070         * emacs-lisp/edebug.el (defmacro): Fix debug spec.  (Bug#16868)
11072         * faces.el (tty-setup-hook, tty-run-terminal-initialization):
11073         Doc fixes.
11074         * startup.el (term-setup-hook): Doc fix.  Make obsolete.
11075         * term/sun.el (sun-raw-prefix-hooks):
11076         Use tty-setup-hook instead of term-setup-hook.
11077         (terminal-init-sun): Construct message from bytecomp plist.
11078         * term/wyse50.el (enable-arrow-keys): Doc fix.
11080 2014-02-24  Juanma Barranquero  <lekktu@gmail.com>
11082         * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
11083         Fix docstring typos.
11085 2014-02-24  Michael Albinus  <michael.albinus@gmx.de>
11087         * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
11089 2014-02-24  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
11091         * minibuffer.el (completion--try-word-completion):
11092         Fix error when completing M-x commands (bug#16808).
11094 2014-02-24  Leo Liu  <sdl.web@gmail.com>
11096         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
11098 2014-02-24  Juanma Barranquero  <lekktu@gmail.com>
11100         * apropos.el (apropos-print): Avoid formatting error when
11101         apropos-do-all and apropos-compact-layout are both t.
11103 2014-02-23  Juanma Barranquero  <lekktu@gmail.com>
11105         * apropos.el (apropos-property, apropos-all-words-regexp)
11106         (apropos-true-hit, apropos-variable, apropos-print):
11107         Fix docstring typos, and remove obsolete comment.
11109 2014-02-23  Michael Albinus  <michael.albinus@gmx.de>
11111         * net/tramp-sh.el (tramp-sh-handle-file-truename):
11112         Preserve trailing "/".  (Bug#16851)
11114 2014-02-23  Dmitry Gutov  <dgutov@yandex.ru>
11116         * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
11117         after `=>' (bug#16811).
11118         (ruby-smie-rules): Handle the inconsistent second element of the
11119         list returned by `smie-indent--parent'.
11120         (ruby-font-lock-keywords): Disqualify any identifier before `=' as
11121         method call.
11123 2014-02-23  Juanma Barranquero  <lekktu@gmail.com>
11125         * elec-pair.el (electric-pair-text-syntax-table)
11126         (electric-pair-syntax-info, electric-pair--syntax-ppss)
11127         (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
11128         (electric-pair--looking-at-unterminated-string-p): Doc fix.
11129         (electric-pair--inside-string-p): Doc fix.  Use `let', not `let*'.
11131 2014-02-22  Glenn Morris  <rgm@gnu.org>
11133         * imenu.el (imenu--generic-function): Doc fix.
11135         * register.el (frame-configuration-to-register): Make obsolete.
11137 2014-02-22  Juanma Barranquero  <lekktu@gmail.com>
11139         * desktop.el (desktop-save-buffer-p): Do not fail when
11140         desktop-files-not-to-save is nil.  Return t for true result
11141         as the doc says.
11143 2014-02-22  Daniel Colascione  <dancol@dancol.org>
11145         * net/secrets.el (secrets-create-item, secrets-search-items):
11146         Check that attribute values are strings, avoiding the construction
11147         of invalid dbus messages.
11149 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
11151         * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
11152         defun-declarations-alist.
11154 2014-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11156         * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
11157         (bug#16829).
11159 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
11161         * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
11162         (whitespace-newline, whitespace-trailing, whitespace-line)
11163         (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
11164         (whitespace-space-after-tab): Fix typo in docstrings.
11166 2014-02-21  Dmitry Gutov  <dgutov@yandex.ru>
11168         * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
11170         * electric.el (electric-indent-functions-without-reindent):
11171         Add `yaml-indent-line'.
11173 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
11175         * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
11176         It has done nothing for years; should be removed after the release.
11178         * simple.el (choose-completion): Fix docstring typo.
11179         (read-quoted-char-radix): Remove unneeded * in docstring.
11180         (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
11181         Don't escape parentheses unnecessarily in docstrings.
11183 2014-02-21  Martin Rudalics  <rudalics@gmx.at>
11185         Fix handling of window-min-height/-width (Bug#16738).
11186         * window.el (window--dump-window, window--dump-frame):
11187         New functions.
11188         (window--min-size-1): Account for window dividers.
11189         When window-resize-pixelwise is nil, delay rounding till after the
11190         sum of the window components has been calculated.
11191         (window--min-delta-1, window--max-delta-1): When PIXELWISE is
11192         nil make sure at least one text line and two text columns remain
11193         fully visible.
11194         (window-resize): Signal an error when window-resize-apply fails.
11195         (window--resize-child-windows): Fix calculation of by how many
11196         pixels a window can still be shrunk via window-new-normal.
11197         (adjust-window-trailing-edge): Call window--resizable with
11198         correct TRAIL argument.
11200         (with-temp-buffer-window): Don't evaluate BODY within
11201         with-current-buffer (Bug#16816).
11203 2014-02-21  Michael Albinus  <michael.albinus@gmx.de>
11205         * net/tramp.el (tramp-check-cached-permissions):
11206         Call `file-attributes' with `suffix' being a symbol but a string.
11208 2014-02-21  Daniel Colascione  <dancol@dancol.org>
11210         * net/dbus.el (dbus-init-bus-1): Declare new subr.
11211         (dbus-init-bus): New function: call into dbus-init-bus-1
11212         and installs a handler for the disconnect signal.
11213         (dbus-call-method): Rewrite to look for result in cons.
11214         (dbus-call-method-handler): Store result in cons.
11215         (dbus-check-event): Recognize events with nil sender as valid.
11216         (dbus-handle-bus-disconnect): New function.  React to bus
11217         disconnection signal by synthesizing dbus error for each
11218         pending synchronous or asynchronous call.
11219         (dbus-notice-synchronous-call-errors): New function.
11220         (dbus-handle-event): Raise errors directly only when `dbus-debug'
11221         is true, not all the time.
11223 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
11225         * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
11226         Remove obsolescence declarations, these variables do not exist anymore.
11228         * savehist.el (savehist-save-minibuffer-history)
11229         (savehist-additional-variables, savehist-file, savehist-mode-hook)
11230         (savehist-save-hook, savehist-coding-system, savehist-loaded)
11231         (savehist-load, savehist-install, savehist-autosave): Fix typos;
11232         mostly, refer to "Savehist mode" when talking about the mode,
11233         and not the function.
11235         * saveplace.el (save-place): Remove redundant info in docstring.
11236         (save-place-forget-unreadable-files, toggle-save-place)
11237         (save-place-forget-unreadable-files, save-place-dired-hook):
11238         Fix typos and remove unneeded backslashes.
11240 2014-02-20  Michael Albinus  <michael.albinus@gmx.de>
11242         * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
11243         (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
11245         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
11246         <insert-directory>: Use `tramp-handle-insert-directory'.
11247         (tramp-gvfs-handle-insert-directory): Remove function.
11249         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
11250         Call `tramp-handle-insert-directory'.
11252 2014-02-20  Juanma Barranquero  <lekktu@gmail.com>
11254         * elec-pair.el (electric-pair-syntax-info): Do not check syntax
11255         before the start of buffer/region (bug#16799).
11257 2014-02-20  Glenn Morris  <rgm@gnu.org>
11259         * isearch.el (search-invisible): Doc fix.
11261 2014-02-20  W. Trevor King  <wking@tremily.us>  (tiny change)
11263         * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
11264         (bug#16657).
11266 2014-02-19  Juanma Barranquero  <lekktu@gmail.com>
11268         * frameset.el (frameset-restore): Delay removing an old frame's
11269         duplicate id until the new frame has been correctly created.
11271 2014-02-19  Michael Albinus  <michael.albinus@gmx.de>
11273         * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
11274         (tramp-check-cached-permissions): Call `file-attributes' if the
11275         cache is empty.
11277         * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
11278         <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
11280         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
11281         <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
11282         (tramp-gvfs-maybe-open-connection): Set always connection
11283         properties, even if target is mounted already.
11285         * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
11286         Set tramp-autoload cookie.
11287         (tramp-get-remote-touch): New defun.
11288         (tramp-sh-handle-set-file-times): Use it.
11289         (tramp-sh-handle-directory-files-and-attributes):
11290         Use `tramp-handle-directory-files-and-attributes' if neither stat
11291         nor perl are available on the remote host.
11293         * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
11294         "/".  Write long listing only when "l" belongs to the switches.
11296         * net/trampver.el: Update release number.
11298 2014-02-19  Juanma Barranquero  <lekktu@gmail.com>
11300         * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
11302 2014-02-19  Martin Rudalics  <rudalics@gmx.at>
11304         * window.el (window-state-put): Allow WINDOW to refer to an
11305         internal window (Bug#16793).
11307 2014-02-19  Glenn Morris  <rgm@gnu.org>
11309         * textmodes/remember.el: Move provide statement to end.
11310         (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
11311         (remember-notes): Doc fixes.
11313 2014-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11315         * delsel.el (delete-char): Restore incorrectly erased property
11316         (bug#16795).
11318 2014-02-18  Juanma Barranquero  <lekktu@gmail.com>
11320         * frameset.el (frameset--restore-frame): When a frame is being reused
11321         and its root window is not alive, delete all the frame's windows before
11322         restoring the window state.  This works around the issue in bug#16793.
11324 2014-02-18  Glenn Morris  <rgm@gnu.org>
11326         * textmodes/remember.el (remember-data-directory)
11327         (remember-directory-file-name-format, remember-store-in-files)
11328         (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
11329         (remember-notes-save-and-bury-buffer)
11330         (remember-notes--kill-buffer-query): Doc fixes.
11332         * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
11334 2014-02-17  Alan Mackenzie  <acm@muc.de>
11336         Connect electric-indent-mode up with CC Mode.  Bug #15478.
11337         * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
11338         to electric-indent-{,local-}-mode.
11339         (c-basic-common-init): Set electric-indent-inhibit.
11340         Initialise c-electric-flag from electric-indent-mode.
11341         (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
11342         New hook functions which propagate electric-indent-mode to CC mode.
11344         * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
11345         hit, toggle electric-indent-local-mode.
11347         * electric.el (electric-indent-mode-has-been-called):
11348         New variable.
11350 2014-02-17  Juanma Barranquero  <lekktu@gmail.com>
11352         * frameset.el (frameset-cfg-id): New function.
11353         (frameset--reuse-frame, frameset-restore): Use it.
11354         (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
11356 2014-02-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11358         * ido.el (ido-file-internal): Remove unused var `d'.
11359         Use \` for to match BoS.  Fit within 80n columns.
11361 2014-02-17  Daniel Colascione  <dancol@dancol.org>
11363         * net/dbus.el (dbus-call-method): Work around bug#16775 by having
11364         dbus-call-method check for completion using a busy-wait loop with
11365         gradual backoff.
11367 2014-02-16  Michael Albinus  <michael.albinus@gmx.de>
11369         Sync with Tramp 2.2.9.
11371         * net/trampver.el: Update release number.
11373 2014-02-16  Dmitry Gutov  <dgutov@yandex.ru>
11375         * ido.el (ido-file-internal): Don't add the name of an existing
11376         directory twice.  (Bug#16747)
11378 2014-02-16  Glenn Morris  <rgm@gnu.org>
11380         * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
11381         Do not use ediff-defvar-local on pre-defined variables.  (Bug#16744)
11383 2014-02-15  Michael R. Mauger  <michael@mauger.com>
11385         * progmodes/sql.el: Version 3.4
11386         (sql-oracle-options): New default value ("-L").
11387         (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
11388         (sql-placeholders-filter): Correct placeholder pattern.
11389         (sql-read-table-name): Bug fix.  Detect absence of SQLi process.
11390         (sql-login-delay): New variable.
11391         (sql-product-interactive): Use it.
11393 2014-02-15  Juanma Barranquero  <lekktu@gmail.com>
11395         * frameset.el (frameset--jump-to-register): Check that buffer is live
11396         (bug#16749).
11398 2014-02-15  Glenn Morris  <rgm@gnu.org>
11400         * info.el (info-initialize): Revert 2014-01-10 change.
11402 2014-02-14  Glenn Morris  <rgm@gnu.org>
11404         * replace.el (map-query-replace-regexp)
11405         (read-regexp-defaults-function, read-regexp): Doc fixes.
11407         * dired.el (dired-read-regexp):
11408         * faces.el (list-faces-display):
11409         * misearch.el (multi-isearch-read-matching-buffers)
11410         (multi-isearch-read-matching-files):
11411         * play/cookie1.el (cookie-apropos):
11412         * progmodes/grep.el (grep-read-regexp): Doc fixes.
11414         * textmodes/remember.el (remember): Use frameset-to-register
11415         rather than frame-configuration-to-register.
11417 2014-02-14  Jay Belanger  <jay.p.belanger@gmail.com>
11419         * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
11420         incorrect keybinding.
11422 2014-02-13  Daniel Colascione  <dancol@dancol.org>
11424         * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
11425         when adding overlays so that line numbers from compiler match line
11426         numbers we use.
11428 2014-02-13  Glenn Morris  <rgm@gnu.org>
11430         * mail/rmail.el (rmail-probe): Be less strict.  (Bug#16743)
11432         * jit-lock.el (jit-lock-mode): Doc fix.
11434 2014-02-13  Juanma Barranquero  <lekktu@gmail.com>
11436         * apropos.el (apropos-read-pattern): When the user passes an empty
11437         string, give a more helpful error message than "Wrong type
11438         argument: stringp, nil".
11440 2014-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
11442         * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
11444 2014-02-13  Glenn Morris  <rgm@gnu.org>
11446         * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
11448 2014-02-12  Stefan Monnier  <monnier@iro.umontreal.ca>
11450         * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
11451         shift-select commands.
11453 2014-02-12  Dmitry Gutov  <dgutov@yandex.ru>
11455         * progmodes/js.el (js-indent-line): Don't widen.
11456         http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
11458 2014-02-12  Glenn Morris  <rgm@gnu.org>
11460         * icomplete.el (icomplete): Add info-link to defgroup.
11461         (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
11462         (icomplete-minibuffer-map, icomplete-mode)
11463         (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
11465         * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
11466         (package-menu-filter): Rename from package-menu-filter-interactive.
11467         Doc fix.
11469 2014-02-11  Juanma Barranquero  <lekktu@gmail.com>
11471         * frameset.el (frameset--jump-to-register): Select the required
11472         window and buffer before restoring position (bug#16696).
11474 2014-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
11476         * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
11478 2014-02-10  Glenn Morris  <rgm@gnu.org>
11480         * jit-lock.el (jit-lock-force-redisplay): Doc fix.  (Bug#14394)
11482 2014-02-10  Eli Zaretskii  <eliz@gnu.org>
11484         * w32-common-fns.el (x-get-selection): Doc fix.
11485         * select.el (x-get-selection): Doc fix.  (Bug#15109)
11487         * face-remap.el (face-remap-add-relative)
11488         (face-remap-remove-relative, face-remap-reset-base)
11489         (face-remap-set-base): Call force-mode-line-update to redisplay
11490         the current buffer due to potential change in faces.  (Bug#16709)
11492 2014-02-10  Michael Albinus  <michael.albinus@gmx.de>
11494         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
11495         script more robustly.
11497 2014-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
11499         * dired.el (dired-get-marked-files): Doc fix (bug#11534).
11501         * simple.el (choose-completion): Doc fix (bug#14160).
11503         * subr.el (event-start): Say what a nil EVENT value means.
11505         * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
11506         (bug#14197).
11508         * progmodes/grep.el (find-program): Doc fix (bug#14289).
11510         * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
11512         * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
11514         * files.el (confirm-kill-emacs): Allow specifying an arbitrary
11515         predicate function (bug#15455).
11517 2014-02-10  Dmitry Gutov  <dgutov@yandex.ru>
11519         * ielm.el (inferior-emacs-lisp-mode): Instead of
11520         `comment-use-global-state', set `comment-use-syntax'.
11522 2014-02-10  Glenn Morris  <rgm@gnu.org>
11524         * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
11526 2014-02-09  Alan Mackenzie  <acm@muc.de>
11528         Fix c-invalidate-state-cache on narrowed buffers.
11529         * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
11530         Widen when setting and clearing the CPP delimiter properties.
11532 2014-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
11534         * help.el (describe-bindings): Doc fix (bug#9888).
11536         * files.el (save-buffer): Use ARG as the parameter name for
11537         consistency (bug#10346).
11538         (save-buffer): Clarify the 0 argument (bug#10346).
11540         * cus-edit.el (customize-apropos): Fix error string.
11541         (custom-buffer-create): Doc fix (bug#11122).
11542         (custom-sort-items): Doc fix (bug#11121).
11544         * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
11546         * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
11547         (icomplete-simple-completing-p): Mention the previous variable.
11549         * font-lock.el (font-lock-value-in-major-mode): Clarify the
11550         meaning of the parameter (bug#12282).
11552         * files.el (find-file-noselect): Clarify prompt when changing
11553         readedness (bug#13261).
11554         (locate-file): Suffixes aren't returned, so don't say that they
11555         are (bug#12674).
11556         (backup-inhibited): Doc clarification (bug#12525).
11558         * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
11559         before we actually start to delete things (bug#16331).
11561         * subr.el (event-start): Doc fix (bug#14228).
11562         (event-end): Ditto.
11564 2014-02-09  Glenn Morris  <rgm@gnu.org>
11566         * emacs-lisp/warnings.el (lwarn):
11567         Empower help-enable-auto-load.  (Bug#15940)
11569 2014-02-08  Andreas Schwab  <schwab@linux-m68k.org>
11571         * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
11572         (Bug#16690)
11574 2014-02-08  Michael Albinus  <michael.albinus@gmx.de>
11576         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
11577         Insert output at end of buffer.  (Bug#16120)
11579 2014-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
11581         * simple.el (choose-completion-string-functions): Document new
11582         calling convention (bug#14153).
11583         (execute-extended-command): Clarify doc string (bug#13373).
11585         * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
11587         * find-dired.el (find-name-dired): Doc fix (bug#14290).
11588         (find-grep-dired): Doc fix (bug#14288).
11590 2014-02-08  Juri Linkov  <juri@jurta.org>
11592         * isearch.el (isearch-quote-char): Check character validity
11593         like in `quoted-insert' (bug#16677).
11595 2014-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
11597         * files.el (find-file-visit-truename): Doc clarification (bug#14697).
11599         * isearch.el (isearch-hide-immediately): Doc clarification
11600         (bug#14723).
11602         * simple.el (line-move): Document utility function used many
11603         places in the Emacs sources (bug#14843).
11605         * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
11606         (dired-prev-marked-file): Doc fix (bug#14855).
11607         (dired-up-directory): Doc fix (bug#14848).
11609         * minibuffer.el (read-file-name): Doc clarification (bug#15096).
11611         * files.el (file-relative-name): Doc fix (bug#15159).
11613         * fringe.el (fringe-styles): Doc fix (bug#15239).
11615         * isearch.el (isearch-filter-predicate): Documentation typo fix
11616         (bug#15474).
11618         * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
11620         * isearch.el (isearch-cmds): Doc clarification (bug#15547).
11622         * replace.el (replace-match-maybe-edit): Doc clarification
11623         (bug#15632).
11625         * subr.el (add-to-list): Refill the paragraphs (bug#15791).
11627         * macros.el (insert-kbd-macro): Doc fix (bug#16025).
11629 2014-02-08  Glenn Morris  <rgm@gnu.org>
11631         * help-fns.el (describe-variable):
11632         Check {file,dir}-local-variables-alist, and buffer-file-name,
11633         in the correct buffer.
11635 2014-02-08  Ingo Lohmar  <i.lohmar@gmail.com>
11637         * help-fns.el (describe-variable): Fix the case where
11638         a value is directory-local with no dir-locals file.  (Bug#16635)
11640 2014-02-08  Glenn Morris  <rgm@gnu.org>
11642         * abbrev.el (edit-abbrevs-mode):
11643         Derive from fundamental-mode.  (Bug#16682)
11645 2014-02-07  Juanma Barranquero  <lekktu@gmail.com>
11647         * simple.el (quoted-insert): Check character validity (bug#16677).
11649 2014-02-07  Juri Linkov  <juri@jurta.org>
11651         * desktop.el (desktop-read): Claim the lock when the owner is not
11652         the current process.  (Bug#16157)
11654 2014-02-07  Juri Linkov  <juri@jurta.org>
11656         * desktop.el (desktop-buffers-not-to-save): Change default from nil
11657         to "\\` ".  (Bug#16651)
11659 2014-02-07  Juri Linkov  <juri@jurta.org>
11661         * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
11662         when enabling, and `desktop-auto-save-cancel-timer' when disabling.
11663         (desktop-auto-save-cancel-timer): New function with some code from
11664         `desktop-auto-save-set-timer'.
11665         (after-init-hook): Don't call `desktop-auto-save-set-timer'.
11666         Instead of setting `desktop-save-mode' to nil, call
11667         `desktop-save-mode' with arg 0.  (Bug#16630)
11669 2014-02-07  Glenn Morris  <rgm@gnu.org>
11671         * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
11672         (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
11673         (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
11675         * obsolete/iswitchb.el: Move to obsolete/.
11676         * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
11677         since obsolete/ is not scanned for autoloads.
11678         * emacs-lisp/authors.el (authors-valid-file-names):
11679         Add iswitchb.el.
11681         * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
11682         Disable now non-functional find-file-hook.
11684 2014-02-06  Michael Albinus  <michael.albinus@gmx.de>
11686         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
11687         instead of ";" in order to avoid additional prompts.  Let heredoc
11688         scripts read from tty.  (Bug#16582)
11689         (tramp-send-command): No special handling of heredocs, it isn't
11690         necessary anymore.
11692 2014-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11694         * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
11695         with a space (bug#16664).  Limit the symbols considered to the ones
11696         that are bound or fbound (bug#16646).
11698 2014-02-06  Glenn Morris  <rgm@gnu.org>
11700         * epa.el (epa-mail-aliases): Doc fix.
11702 2014-02-06  Dmitry Gutov  <dgutov@yandex.ru>
11704         * emacs-lisp/lisp.el (lisp-completion-at-point):
11705         Use `completion-table-merge' instead of `completion-table-in-turn'
11706         (bug#16604).
11708         * minibuffer.el (completion-table-merge): New function.
11710 2014-02-05  Michael Albinus  <michael.albinus@gmx.de>
11712         * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
11713         (tramp-sh-handle-set-file-acl)
11714         (tramp-sh-handle-start-file-process)
11715         (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
11716         (tramp-find-executable, tramp-send-command): Use it.
11718 2014-02-05  Glenn Morris  <rgm@gnu.org>
11720         * epa.el (epa-mail-aliases): Fix custom type.  Doc tweak.
11722 2014-02-04  Fabián Ezequiel Gallina  <fgallina@gnu.org>
11724         * progmodes/python.el (python-shell-send-string)
11725         (python-shell-send-string-no-output): Fix docstring (Bug#16547).
11727 2014-02-04  Anders Lindgren  <andlind@gmail.com>
11729         * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
11730         the names (bug#16620).
11732 2014-02-03  Martin Rudalics  <rudalics@gmx.at>
11734         * faces.el (window-divider): New default value.  Rewrite doc-string.
11735         (window-divider-first-pixel, window-divider-last-pixel): New faces.
11737 2014-02-03  Dmitry Gutov  <dgutov@yandex.ru>
11739         * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
11740         `protected' and `public' can also be called without arguments.
11742 2014-02-03  Glenn Morris  <rgm@gnu.org>
11744         * register.el (window-configuration-to-register)
11745         (frame-configuration-to-register): Unadvertise unused argument.
11746         * frameset.el (frameset-to-register): Remove unused argument.
11748         * frameset.el (frameset-to-register):
11749         * kmacro.el (kmacro-to-register):
11750         * register.el (increment-register):
11751         * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
11752         (calc-append-to-register, calc-prepend-to-register):
11753         * play/gametree.el (gametree-layout-to-register)
11754         (gametree-apply-register-layout):
11755         * textmodes/picture.el (picture-clear-rectangle-to-register)
11756         (picture-yank-rectangle-from-register):
11757         * vc/emerge.el (emerge-combine-versions-register):
11758         Use register-read-with-preview to read registers.
11760 2014-02-03  João Távora  <joaotavora@gmail.com>
11762         * elec-pair.el (electric-pair-backward-delete-char): Don't error
11763         when at beginning of (possibly narrowed) buffer.
11765 2014-02-02  Daniel Colascione  <dancol@dancol.org>
11767         * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
11768         Also try to display local help from just before point.
11770 2014-02-02  Alan Mackenzie  <acm@muc.de>
11772         c-parse-state.  Don't "append-lower-brace-pair" in certain
11773         circumstances.  Also fix an obscure bug where "\\s!" shouldn't be
11774         recognised as a comment.
11776         * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
11777         as well as normal comment starter.
11778         (c-parse-state-get-strategy): Extra return possibility
11779         'back-and-forward.
11780         (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
11781         return value list to indicate replacement of a brace-pair cons
11782         with its car.
11783         (c-parse-state-1): With 'back-and-forward, only call
11784         c-append-lower-brace-pair-to state-cache when cons-separated.
11786 2014-02-02  Jan Djärv  <jan.h.d@swipnet.se>
11788         * term/ns-win.el (ns-suspend-error): New function.
11789         (ns-initialize-window-system): Add ns-suspend-error to
11790         suspend-hook (Bug#16612).
11792 2014-02-02  Daniel Colascione  <dancol@dancol.org>
11794         * progmodes/cc-defs.el (c-find-assignment-for-mode):
11795         Make loading cc-mode silent.
11797 2014-02-02  Daniel Colascione  <dancol@dancol.org>
11799         * comint.el (comint-prompt-read-only): Change doc to suggest
11800         remap keybinding.
11802 2014-02-02  Glenn Morris  <rgm@gnu.org>
11804         * register.el (register-read-with-preview, point-to-register)
11805         (window-configuration-to-register, frame-configuration-to-register)
11806         (jump-to-register, number-to-register, view-register, insert-register)
11807         (copy-to-register, append-to-register, prepend-to-register)
11808         (copy-rectangle-to-register): Doc fixes.
11810 2014-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
11812         * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
11813         * emacs-lisp/find-func.el (find-function-C-source): Idem.
11814         * emacs-lisp/nadvice.el (advice--cd*r): New function.
11815         * help-fns.el (describe-function-1): Use it.
11817 2014-02-02  Glenn Morris  <rgm@gnu.org>
11819         * register.el (register-preview-default): New function,
11820         split from register-preview.
11821         (register-preview-function): Rename from register-preview-functions,
11822         make it not a hook.
11823         (register-preview): Use register-preview-function.
11824         (register-read-with-preview): Error on non-character event.  (Bug#16595)
11826 2014-02-01  Dmitry Gutov  <dgutov@yandex.ru>
11828         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
11829         `:' before binary operators (bug#16609).  Don't check for `:'
11830         before `[' and `(', or their syntax status.  A percent literal
11831         can't end with either.
11832         (ruby-font-lock-keywords): For built-ins that require arguments,
11833         check that they're followed by something that looks like argument
11834         (bug#16610).
11836 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
11838         * subr.el (butlast): Document what an omitted N means (bug#13437).
11839         (nbutlast): Ditto.
11841 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
11843         * net/shr.el (shr-generic): Make into a defsubst to make the stack
11844         depth shallower (bug#16587).
11845         (shr-tag-svg): Respect `shr-inhibit-images'.
11846         (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
11848 2014-01-31  Dmitry Gutov  <dgutov@yandex.ru>
11850         * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
11851         (ruby-smie-grammar): Make "." right-associative.  Make its priority
11852         lower than the ternary and all binary operators.
11853         (ruby-smie-rules): Indent "(" relative to the first non-"."
11854         parent, or the first "." parent at indentation.
11855         Use `ruby-align-chained-calls' for indentation of "." tokens.
11856         (Bug#16593)
11858 2014-01-31  Juri Linkov  <juri@jurta.org>
11860         * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
11861         from `make-hash-table'.
11863         * textmodes/ispell.el (ispell-init-process): Change message format
11864         to be consistent with other messages.
11866 2014-01-31  Glenn Morris  <rgm@gnu.org>
11868         * delsel.el (delete-selection-mode): Doc fix.
11870         * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
11871         (trace-function-background): Doc fixes.
11873         * ido.el (ido-use-virtual-buffers): Doc fix.
11874         Reset :version, since the default value has not changed.
11876         * register.el (register-preview-delay, register-read-with-preview):
11877         Doc fixes.
11879         * mail/reporter.el (reporter-dump-variable): In case of void-variable,
11880         do not mess with mail-buffer position (fixes 2009-11-03 change).
11881         * progmodes/cc-mode.el (c-submit-bug-report):
11882         Check auto-fill-mode is bound.  (Bug#16592)
11884 2014-01-31  Darren Hoo  <darren.hoo@gmail.com>
11886         * startup.el (fancy-splash-image-file): New function,
11887         split from fancy-splash-head.
11888         (fancy-splash-head, use-fancy-splash-screens-p): Use it,
11889         so that we are both using the same image.  (Bug#16574)
11891 2014-01-30  Glenn Morris  <rgm@gnu.org>
11893         * simple.el (eval-expression): Doc fix.
11895         * hexl.el (hexl-mode-hook):
11896         * ielm.el (ielm-mode-hook):
11897         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
11898         (lisp-interaction-mode-hook):
11899         * progmodes/cfengine.el (cfengine3-documentation-function):
11900         Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
11902 2014-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
11904         * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
11905         is a symbol (bug#16584).
11907 2014-01-30  Glenn Morris  <rgm@gnu.org>
11909         * help.el (help-for-help-internal): Add "P" to text.
11911 2014-01-29  Glenn Morris  <rgm@gnu.org>
11913         * simple.el (just-one-space, cycle-spacing): Doc fixes.
11915 2014-01-28  Martin Rudalics  <rudalics@gmx.at>
11917         * window.el (fit-frame-to-buffer): Fix calculations for margins and
11918         height constraints.
11920 2014-01-28  Luke Lee  <luke.yx.lee@gmail.com>
11922         * progmodes/hideif.el: Extend to full CPP expression syntax.
11923         (hif-token-alist): Add missing tokens.
11924         (hif-token-regexp): Add support for float/octal/hex immediates.
11925         (hif-string-literal-regexp): New const.
11926         (hif-tokenize): Recognize strings and float/octal/hex immediates.
11927         (hif-exprlist): New function.
11928         (hif-parse-if-exp): Use it.
11929         (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
11930         (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
11931         (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
11932         (hif-logxor, hif-comma): New functions.
11934 2014-01-28  Glenn Morris  <rgm@gnu.org>
11936         * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
11938         * indent.el (tab-stop-list): Doc fix.  Add :version.
11940         * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
11941         (cvs-append-to-ignore): Add compatibility alias.
11943 2014-01-27  Glenn Morris  <rgm@gnu.org>
11945         * dired.el (dired-hide-details-mode): Don't autoload it,
11946         since it cannot be used outside Dired buffers anyway.
11948         * emulation/cua-base.el (cua-mode): Doc fix.
11950         * dired.el (dired-hide-details-hide-symlink-targets)
11951         (dired-hide-details-hide-information-lines)
11952         (dired-hide-details-mode): Doc fixes.
11954         * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
11955         * strokes.el (strokes-file): Doc fix.  Bump :version.
11956         (strokes-help): Doc fix.
11957         * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
11958         * emulation/viper.el (viper): Doc fix for custom group.
11959         (top-level): Remove oh-so-no-longer-relevant text about vip.
11960         * obsolete/otodo-mode.el (todo-prefix): Doc fix.
11962         * ido.el (ido-save-directory-list-file):
11963         * saveplace.el (save-place-file):
11964         * calendar/timeclock.el (timeclock-file):
11965         * net/quickurl.el (quickurl-url-file):
11966         * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
11967         * progmodes/idlwave.el (idlwave-config-directory):
11968         * textmodes/remember.el (remember-data-file):
11969         Bump :version.
11971 2014-01-26  Glenn Morris  <rgm@gnu.org>
11973         * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
11974         Doc fix.  Make obsolete.
11975         (opascal-mode): No longer mention opascal-tab-always-indents in doc.
11977         * sort.el (delete-duplicate-lines): Doc fix.
11979 2014-01-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
11981         * progmodes/ada-mode.el (ada):
11982         * woman.el (woman): Link to info manual and Commentary section.
11984         * progmodes/flymake.el (flymake):
11985         * nxml/nxml-mode.el (nxml):
11986         * net/eww.el (eww):
11987         * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
11988         * htmlfontify.el (htmlfontify):
11989         * ses.el (ses):
11990         * epa.el (epa):
11991         * ido.el (ido): Link to info manual.
11993 2014-01-25  Leo Liu  <sdl.web@gmail.com>
11995         * progmodes/flymake.el (flymake-make-overlay): No rear advance.
11997 2014-01-25  Adam Sjøgren  <asjo@koldfront.dk>
11999         * net/shr.el (shr-tag-img): Prefer the title over the alt text
12000         (bug#16537).
12002 2014-01-24  Juanma Barranquero  <lekktu@gmail.com>
12004         * net/eww.el (eww-download-callback):
12005         Fix reference to eww-download-directory.
12007         * emacs-lisp/bytecomp.el (byte-compile-file):
12008         Remove unused local variable `file-name'.
12010 2014-01-24  Glenn Morris  <rgm@gnu.org>
12012         * woman.el (woman-default-faces, woman-monochrome-faces):
12013         Fix obsolescence specification.
12015         * subr.el (with-demoted-errors): Doc fix.
12017 2014-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12019         * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
12020         (cl--macroexp-fboundp): New function.
12021         (cl--make-type-test): Use it.
12023 2014-01-23  Glenn Morris  <rgm@gnu.org>
12025         * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
12026         * simple.el (eval-expression): Doc fixes.
12028 2014-01-22  Glenn Morris  <rgm@gnu.org>
12030         * emacs-lisp/authors.el (authors-fixed-entries): Addition.
12032 2014-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12034         * emacs-lisp/package.el: Write files silently.
12035         (package-autoload-ensure-default-file, package--write-file-no-coding)
12036         (package-generate-description-file, package--download-one-archive)
12037         (package-install-from-archive): Tell `write-region' to stay quiet.
12038         (package-menu-mode, package-menu--print-info): Omit the Archive column
12039         if there's only one archive.
12040         (package-all-keywords, package--has-keyword-p): Remove dead code.
12042 2014-01-22  Glenn Morris  <rgm@gnu.org>
12044         * version.el (emacs-bzr-version-bzr): Fix typo.
12046         * version.el (emacs-repository-get-version):
12047         Check either .bzr or .git, but not both.
12048         Make the git case actually use the DIR argument, and return nil
12049         rather than the empty string.
12050         Avoid error if .git exists but the git executable is not found.
12052 2014-01-22  Martin Rudalics  <rudalics@gmx.at>
12054         Fixes in window size functions around Bug#16430 and Bug#16470.
12055         * window.el (window-total-size, window-size): New argument ROUND.
12056         (window--min-delta-1, window-min-delta, window--max-delta-1):
12057         Be more conservative when calculating the numbers of lines or
12058         columns a window can shrink (Bug#16430).
12059         (fit-window-to-buffer): Simplify code.
12060         * term.el (term-window-width): Call window-body-width again.
12062 2014-01-22  Glenn Morris  <rgm@gnu.org>
12064         * image.el (image-format-suffixes): Doc fix.
12066         * international/quail.el (quail-define-package): Doc fix.
12068         * emacs-lisp/authors.el (authors-valid-file-names)
12069         (authors-renamed-files-alist): Additions.
12071         * vc/vc-git.el (vc-git-print-log): Remove --follow;
12072         reverts 2014-01-09 change.  (Bug#16422)
12074         * calc/calc-embed.el (thing-at-point-looking-at):
12075         * emacs-lisp/map-ynp.el (x-popup-dialog):
12076         * obsolete/lmenu.el (x-popup-dialog):
12077         * emacs-lisp/package.el (url-recreate-url):
12078         * mail/mailclient.el (clipboard-kill-ring-save):
12079         * subr.el (x-popup-dialog): Update declaration.
12080         * mail/rmail.el (rmail-mime-message-p):
12081         * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
12083 2014-01-21  Daniel Colascione  <dancol@dancol.org>
12085         * progmodes/sh-script.el (sh--inside-noncommand-expression):
12086         Correctly detect when we're inside an arithmetic expansion form
12087         containing nested parenthesis.
12088         (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
12089         to detect cases where we shouldn't expand "<<" to a heredoc
12090         skeleton.
12092 2014-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12094         * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
12095         (eldoc--message-command-p): New function.
12096         (eldoc-display-message-p): Use it.
12097         (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
12098         message is not automatically erased for us.
12099         (eldoc-print-current-symbol-info): Erase previous message, if any.
12101 2014-01-21  Tassilo Horn  <tsdh@gnu.org>
12103         * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
12104         specify it's an interactive function.
12106         * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
12107         Fix regex used for scanning for citation keys which failed for
12108         citations with optional arguments.
12110 2014-01-21  Leo Liu  <sdl.web@gmail.com>
12112         * simple.el (read--expression): Don't enable eldoc-mode.
12114 2014-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12116         * simple.el (move-beginning-of-line): Make sure we don't move forward
12117         (bug#16497).
12119 2014-01-20  Juri Linkov  <juri@jurta.org>
12121         * saveplace.el (toggle-save-place, save-place-to-alist)
12122         (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
12123         'dired-mode) before checking for dired-directory.  (Bug#16477)
12125 2014-01-20  Juri Linkov  <juri@jurta.org>
12127         * indent.el (indent-line-to): Use backward-to-indentation
12128         instead of back-to-indentation.  (Bug#16461)
12130 2014-01-20  Paul Eggert  <eggert@cs.ucla.edu>
12132         Revert some of the CANNOT_DUMP fix (Bug#16494).
12133         Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
12134         but fixing this can wait until after the next release.
12135         * Makefile.in (emacs): Keep EMACSLOADPATH empty.
12137 2014-01-19  Michael Albinus  <michael.albinus@gmx.de>
12139         * eshell/esh-mode.el (eshell-password-prompt-regexp):
12140         Use `password-word-equivalents'.
12141         (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
12142         to t.  (Bug#5664, Bug#13124)
12144 2014-01-19  Alan Mackenzie  <acm@muc.de>
12146         Bind open-paren-in-column-0-is-defun-start to nil at some entry
12147         points.
12148         * progmodes/cc-engine.el (c-invalidate-state-cache-1)
12149         (c-parse-state-1, c-guess-basic-syntax): Bind it here.
12150         * progmodes/cc-mode.el (c-before-change, c-after-change)
12151         (c-font-lock-fontify-region): Bind it here.
12153 2014-01-19  Martin Rudalics  <rudalics@gmx.at>
12155         * term.el (term-window-width): Call window-text-width instead of
12156         window-width (Bug#16470).
12158 2014-01-18  Paul Eggert  <eggert@cs.ucla.edu>
12160         * simple.el (password-word-equivalents): Remove duplicates.
12161         Sort, to make this easier next time.
12162         Downcase.  Omit ": " after "jelszó".
12164 2014-01-18  Jan Djärv  <jan.h.d@swipnet.se>
12166         * term/common-win.el (saved-region-selection): Defvar it.
12167         (x-select-text): Set saved-region-selection (Bug#16382).
12169 2014-01-18  Glenn Morris  <rgm@gnu.org>
12171         * emacs-lisp/authors.el (authors-aliases)
12172         (authors-renamed-files-alist): Add some entries.
12174 2014-01-17  Michael Albinus  <michael.albinus@gmx.de>
12176         * net/tramp.el (tramp-password-prompt-regexp):
12177         Use `password-word-equivalents' if available.
12178         (tramp-action-password, tramp-process-one-action)
12179         (tramp-read-passwd): Let-bind `case-fold-search' to t.  (Bug#13124)
12181 2014-01-17  Chong Yidong  <cyd@gnu.org>
12183         * simple.el (password-word-equivalents): New defcustom.
12184         * comint.el (comint-password-prompt-regexp): Use it.  Bump version
12185         to 24.4.
12186         (comint-watch-for-password-prompt): Let-bind `case-fold-search'
12187         to t.  (Bug#13124)
12189 2014-01-17  Dmitry Gutov  <dgutov@yandex.ru>
12191         * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
12192         (ruby-align-to-stmt-keywords): Change the default value.
12193         Use `ruby-alignable-keywords' to generate the possible customization
12194         choices.
12195         (ruby-smie-rules): Instead of using a hardcoded list of alignable
12196         keywords, check against the value of `ruby-alignable-keywords'
12197         (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
12199 2014-01-17  Glenn Morris  <rgm@gnu.org>
12201         * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
12203         Make M-x authors return zero *Authors Errors* from current logs.
12204         * emacs-lisp/authors.el (authors-obsolete-files-regexps)
12205         (authors-ignored-files): Add some entries, remove others.
12206         (authors-ambiguous-files, authors-valid-file-names):
12207         Add some entries.
12208         (authors-renamed-files-alist): Add, remove, and adjust entries.
12209         (authors-renamed-files-regexps): Add some entries.
12210         Remove some very broad ones.  Make some entries `lax'.
12211         (authors-lax-changelogs): New constant.
12212         (authors-disambiguate-file-name): Treat top-level specially.
12213         (authors-lax-changelog-p): New function.
12214         (authors-canonical-file-name): Check file as written against
12215         authors-valid-file-names.  Do not special-case etc/.
12216         Handle `lax' logs and authors-renamed-files-regexps elements.
12218 2014-01-16  Dmitry Gutov  <dgutov@yandex.ru>
12220         * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
12221         `assoc'.  Use `nth' instead of `cdr'.  Make private.  Update all
12222         callers.
12224 2014-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12226         * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
12227         Assume we're already in the proper buffer.
12228         Inspired by Anders Lindgren <andlind@gmail.com>.
12229         (follow-post-command-hook): Call it from the right buffer.
12230         (follow-comint-scroll-to-bottom): Adjust call.
12231         (follow-all-followers): Use get-buffer-window-list.
12233 2014-01-15  Daniel Colascione  <dancol@dancol.org>
12235         * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
12236         `buffer-file-name' in interactive-form so that we don't leave
12237         pathless file names in `file-name-history'.
12239 2014-01-15  Juri Linkov  <juri@jurta.org>
12241         * indent.el (indent-rigidly): Set deactivate-mark to nil
12242         in transient indentation mode.  (Bug#16438)
12244 2014-01-15  Dmitry Gutov  <dgutov@yandex.ru>
12246         * emacs-lisp/package.el (package-desc-keywords): New function
12247         (Bug#16222).
12248         (describe-package-1, package-all-keywords)
12249         (package--has-keyword-p): Use it.
12251 2014-01-14  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
12253         * simple.el (define-alternatives): When creating the
12254         COMMAND-alternatives variable, assign COMMAND as its definition
12255         name so that `describe-variable' can relocate it.
12257 2014-01-14  Matthew Leach  <matthew@mattleach.net>
12259         * font-lock.el (font-lock-keywords): Fix typo in docstring
12260         (bug#16307).
12262 2014-01-14  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
12264         * textmodes/ispell.el (ispell-region): Reset `in-comment' for new
12265         line instead of wrongly reset `add-coment' (bug#13577).
12267 2014-01-14  Daiki Ueno  <ueno@gnu.org>
12269         * epa-file.el (epa-file-write-region): Encode the region according
12270         to `buffer-file-format'.  Problem reported at:
12271         <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
12273 2014-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
12275         * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
12276         so it applies in the right buffer (bug#16410).
12278 2014-01-13  Daniel Colascione  <dancol@dancol.org>
12280         * textmodes/rst.el (rst-define-key): Provide deprecated
12281         keybindings through named functions instead of anonymous ones so
12282         that "??" doesn't appear in describe-mode output.
12284 2014-01-13  Bastien Guerry  <bzg@gnu.org>
12286         * simple.el (define-alternatives): Call the selected command
12287         interactively.  When setting `COMMAND--implementation' for the
12288         first time, tell the user how to chose another implementation.
12289         Enhance the docstring.
12291 2014-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
12293         * vc/log-edit.el: Fix highlighting of summary when it's the first line.
12294         (log-edit--match-first-line): New function.
12295         (log-edit-font-lock-keywords): Use it.
12296         (log-edit-mode): Make jit-lock-defer-multiline work.
12298 2014-01-13  Bastien Guerry  <bzg@gnu.org>
12300         * rect.el (rectangle-mark-mode): When the region is not active,
12301         display a message saying that the mark as been set and that
12302         rectangle mode is in use.
12303         (rectangle--highlight-for-redisplay): Only put an overlay with a
12304         visible vertical bar when (display-graphic-p) is non-nil.
12305         This partially fixes Bug#16403.
12307 2014-01-13  Juri Linkov  <juri@jurta.org>
12309         * info.el (Info-find-file): Go to DIR before displaying the error
12310         about a nonexistent file if no previous Info file is visited.
12311         Use `user-error' instead of `error' for "Info file %s does not exist".
12312         (Info-find-node-2): In case of a nonexistent node in unwind forms
12313         go to the Top node if there is no previous node to revert to.
12314         (Bug#16405)
12316 2014-01-13  Martin Rudalics  <rudalics@gmx.at>
12318         fit-frame/window-to-buffer code fixes including one for Bug#14096.
12319         * window.el (fit-frame-to-buffer): Fix doc-string.
12320         Respect window-min-height/-width.  Fit pixelwise when
12321         frame-resize-pixelwise is non-nil.  Adjust right/bottom edge
12322         when avoiding that frame goes partially off-screen.
12323         (fit-window-to-buffer): Respect window-min-height/-width
12324         (Bug#14096).
12326 2014-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
12328         * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
12329         after an empty line.
12331 2014-01-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12333         * net/shr.el (shr-render-region): Autoload.
12335 2014-01-12  Xue Fuqiao  <xfq.free@gmail.com>
12337         * net/eww.el (eww-download-directory): Rename from
12338         `eww-download-path' (Bug#16419).
12340 2014-01-12  Leo Liu  <sdl.web@gmail.com>
12342         * dired-x.el (dired-mode-map): Fix last change.
12344         * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
12346 2014-01-12  Paul Eggert  <eggert@cs.ucla.edu>
12348         Spelling fixes.
12349         * emacs-lisp/generic.el (generic--normalize-comments):
12350         Rename from generic--normalise-comments.  All uses changed.
12351         * play/bubbles.el (bubbles--neighborhood-score)
12352         (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
12353         (bubbles--neighborhood-available)
12354         (bubbles--update-neighborhood-score):
12355         Rename from names with 'neighbourhood'.  All uses changed.
12357 2014-01-12  Leo Liu  <sdl.web@gmail.com>
12359         Re-implement the feature of showing eldoc info after editing.
12360         * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
12361         (eldoc-edit-message-commands): New function.
12362         (eldoc-print-after-edit): New variable.
12363         (eldoc-pre-command-refresh-echo-area): Emit message only by
12364         eldoc-message-commands.
12365         (eldoc-mode): Restrict eldoc-message-commands to editing commands
12366         if eldoc-print-after-edit is set.  (Bug#16346)
12367         * simple.el (read--expression): Enable eldoc-mode.
12368         * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
12370 2014-01-11  Dani Moncayo  <dmoncayo@gmail.com>
12371             Eric S. Raymond  <esr@thyrsus.com>
12373         * version.el (emacs-repository-get-version): Enhance so the
12374         function works correctly in either a Bazaar or Git repo.
12376 2014-01-11  Eric S. Raymond  <esr@thyrsus.com>
12378         * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
12379         Goes with removal of the joke manpages from /etc.
12381 2014-01-10  Kenichi Handa  <handa@gnu.org>
12383         * mail/rmail.el (rmail-get-coding-system):
12384         Check rmail-get-coding-function before "funcall"ing it.
12386 2014-01-10  Glenn Morris  <rgm@gnu.org>
12388         * emacs-lisp/authors.el (authors-fixed-entries):
12389         Update for files that no longer exist.
12391 2014-01-10  Eric S. Raymond  <esr@thyrsus.com>
12393         * version.el (emacs-bzr-get-version): Restore compatibilty with
12394         24.3 (Tested).
12396 2014-01-10  Bozhidar Batsov  <bozhidar@batsov.com>
12398         * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
12399         and Podfile.
12401 2014-01-10  Eli Zaretskii  <eliz@gnu.org>
12403         * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
12405 2014-01-10  Chong Yidong  <cyd@gnu.org>
12407         * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
12409 2014-01-10  Anders Lindgren  <andlind@gmail.com>
12411         * follow.el (follow-cache-command-list): Include right-char and
12412         left-char.
12414 2014-01-10  Paul Eggert  <eggert@cs.ucla.edu>
12416         Spelling fixes.
12417         * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
12418         * woman.el (woman-mark-horizontal-position):
12419         Rename from woman-mark-horizonal-position.  Use changed.
12421 2014-01-10  Glenn Morris  <rgm@gnu.org>
12423         * info.el (info-initialize): If running uninstalled, ensure our
12424         own info files are always found first, even if INFOPATH is set.
12426         * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
12428 2014-01-09  David Engster  <deng@randomsample.de>
12430         * emacs-lisp/eieio-custom.el:
12431         * emacs-lisp/eieio-opt.el: Set generated autoload file to
12432         'eieio.el'.  This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
12433         * emacs-lisp/eieio.el: Regenerate autoloads.
12435 2014-01-09  Eric S. Raymond  <esr@thyrsus.com>
12437         * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
12438         following renames.  (Bug#8756)
12440 2014-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
12442         * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
12443         (bug#16382).
12444         (activate-mark): Add `no-tmm' argument.
12445         (set-mark, push-mark-command): Use it instead of running
12446         activate-mark-hook by hand.
12448 2014-01-08  Eric S. Raymond  <esr@thyrsus.com>
12450         In preparation for the move to git, sanitize out some
12451         Bazaar-specific names.
12453         * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
12455         * version.el (emacs-bzr-version): Name changed to
12456         emacs-repository-version.  Obsolete-variable alias made.
12457         * loadup.el: Follow through on this name change.
12458         * mail/emacsbug.el (report-emacs-bug): Factor out any
12459         assumption about the version control system in use.
12461 2014-01-08  David Engster  <deng@randomsample.de>
12463         * help-fns.el (help-fns-describe-function-functions):
12464         New variable to call functions for augmenting help buffers.
12465         (describe-function-1): Remove explicit calls to
12466         `help-fns--compiler-macro', `help-fns--parent-mode' and
12467         `help-fns--obsolete'.  Put them in above new variable instead, and
12468         call them through `run-hook-with-args'.
12469         * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
12470         `eieio-describe-class'.  Not meant for interactive use anymore,
12471         but to augment existing help buffers.  Remove optional second
12472         argument.  Create proper button for file location.
12473         Rewrite function to use `insert' instead of `princ' and `prin1' where
12474         possible.
12475         (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
12476         (eieio-method-def, eieio-class-def): Move further up.
12477         (describe-method, describe-generic, eieio-describe-method):
12478         Remove aliases.
12479         (eieio-help-constructor, eieio-help-generic): Rename from
12480         `eieio-describe-constructor' and `eieio-describe-generic', resp.
12481         Rewrite to use `insert' in the current buffer and use proper help
12482         buttons.
12483         (eieio-help-find-method-definition)
12484         (eieio-help-find-class-definition): Also accept symbols as
12485         arguments.
12486         (eieio-help-mode-augmentation-maybee): Remove.
12487         (eieio-describe-class-sb): Use `describe-function'.
12488         * emacs-lisp/eieio.el (help-fns-describe-function-functions):
12489         Add `eieio-help-generic' and `eieio-help-constructor'.
12491 2014-01-08  Paul Eggert  <eggert@cs.ucla.edu>
12493         Spelling fixes.
12494         * language/china-util.el (hz-ascii-designation):
12495         Rename from hz-ascii-designnation.
12496         (hz-ascii-designation): Rename from hz-ascii-designnation.
12497         All uses changed.
12499 2014-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12501         * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
12502         package-alist.
12504 2014-01-08  Bastien Guerry  <bzg@gnu.org>
12506         * emacs-lisp/package.el (package-delete):
12507         Correctly delete the package from package-alist.
12509 2014-01-08  Daiki Ueno  <ueno@gnu.org>
12511         * emacs-lisp/package.el (url-recreate-url): Declare.
12512         (url-http-target-url): Declare.
12513         (package-handle-response): Include requested URL in the error message.
12514         (package--check-signature): Don't re-signal errors from
12515         package--with-work-buffer.  Suggested by Stefan Monnier.
12517 2014-01-07  Bastien Guerry  <bzg@gnu.org>
12519         * minibuffer.el (completion--try-word-completion): When both a
12520         hyphen and a space are possible candidates for the character
12521         following a word, display both candidates.  (Bug#15980)
12523 2014-01-07  Martin Rudalics  <rudalics@gmx.at>
12525         * window.el (balance-windows-2): While rounding don't give a
12526         window more than the remainder.  Bug#16351, bug#16383.
12528 2014-01-07  Glenn Morris  <rgm@gnu.org>
12530         * menu-bar.el (menu-bar-help-extra-packages): Remove.
12531         (menu-bar-help-menu): Use view-external-packages instead.
12533 2014-01-07  Bastien Guerry  <bzg@gnu.org>
12535         * emacs-lisp/package.el (package-delete): Also delete the package
12536         name from `package-alist', not its description only.
12538 2014-01-07  Glenn Morris  <rgm@gnu.org>
12540         * help.el (view-external-packages):
12541         * menu-bar.el (menu-bar-help-extra-packages):
12542         Visit efaq.info rather than etc/MORE.STUFF.
12544 2014-01-07  Juri Linkov  <juri@jurta.org>
12546         * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
12547         isearch-exit and isearch-delete-char resp.  (Bug#16342, bug#16035)
12549         * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
12550         that shadows RET.  (Bug#16342)
12552 2014-01-07  Chong Yidong  <cyd@gnu.org>
12554         * isearch.el (isearch-yank-char, isearch-yank-word)
12555         (isearch-yank-line): Doc fix.
12557 2014-01-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12559         * abbrev.el (define-abbrev): Beware new meaning of fboundp.
12560         * emacs-lisp/elint.el (elint-find-builtins):
12561         * emacs-lisp/eldoc.el (eldoc-symbol-function):
12562         * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
12563         (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
12564         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
12565         * apropos.el (apropos-safe-documentation):
12566         * subr.el (symbol-file): Remove redundant fboundp.
12567         * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
12569 2014-01-06  Bastien Guerry  <bzg@gnu.org>
12571         * hl-line.el (global-hl-line-overlay): Make a local variable.
12572         (global-hl-line-overlays): New variable to store all overlays.
12573         (global-hl-line-mode): Don't delete overlays from the current
12574         buffer when `global-hl-line-sticky-flag' is non-nil.
12575         (global-hl-line-highlight): Add new overlays to
12576         `global-hl-line-overlays'.
12577         (global-hl-line-unhighlight-all): New function to delete all
12578         overlays when turning off `global-hl-line-mode'.
12579         This fixes Bug#16183.
12581 2014-01-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12583         * subr.el (set-transient-map): Fix nested case and docstring.
12585 2014-01-06  Tassilo Horn  <tsdh@gnu.org>
12587         * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
12588         `Texinfo' entry.
12590 2014-01-06  Daniel Colascione  <dancol@dancol.org>
12592         Fix defun navigation in vc log view.
12594         * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
12595         like `beginning-of-defun'.
12596         (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
12597         log-view-end-of-defun to log-view-end-of-defun-1.  Replace
12598         log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
12599         (log-view-extract-comment): Call `log-view-current-entry' directly
12600         instead of relying on broken `log-view-beginning-of-defun' behavior.
12602 2014-01-06  Paul Eggert  <eggert@cs.ucla.edu>
12604         Spelling fixes.
12605         * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
12606         * emacs-lisp/debug.el (cancel-debug-on-entry):
12607         * epg.el (epg-error-to-string):
12608         * files.el (recover-file):
12609         * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
12610         * mail/emacsbug.el (report-emacs-bug-hook):
12611         * mail/sendmail.el (mail-recover):
12612         * ses.el (ses-yank-resize):
12613         * term/ns-win.el (ns-print-buffer):
12614         Spelling fixes in diagnostics, mostly for "canceled" with one L.
12615         * epg.el (epg-key-capability-alist): Rename from misspelled version.
12616         All uses changed.
12617         * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
12619 2014-01-06  Leo Liu  <sdl.web@gmail.com>
12621         * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
12622         to avoid shadowing global key.  (Bug#16354)
12624 2014-01-06  Daniel Colascione  <dancol@dancol.org>
12626         * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
12627         rst-mode.
12629 2014-01-05  Martin Rudalics  <rudalics@gmx.at>
12631         * window.el (balance-windows): Add mising t to fix Bug#16351.
12633 2014-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
12635         * net/shr.el (shr-descend): Don't bug out if the anchor is empty
12636         (bug#16285).
12637         (shr-insert): If we have a word that's longer than `shr-width',
12638         break after it anyway.  Otherwise we'll do no breaking once we get
12639         such a long word.
12641 2014-01-05  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
12643         * net/eww.el (eww): Support single/double quote for search.
12644         * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
12645         (eww-history-quit): Delete and use quit-window.
12646         (eww-history-kill): Delete, because it doesn't work well and
12647         not necessary.
12648         (eww-history-mode-map): Delete some keys and add easy-menu.
12650 2014-01-05  Paul Eggert  <eggert@cs.ucla.edu>
12652         Fix misspelling of 'chinese' in rx (Bug#16237).
12653         * emacs-lisp/rx.el (rx-categories): Correct spelling of
12654         chinese-two-byte.
12656         Change subword regexps back to vars (Bug#16296).
12657         * progmodes/subword.el (subword-forward-regexp)
12658         (subword-backward-regexp): Change these back to variables.
12660 2014-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12662         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
12663         syntax-begin-function (bug#16247).
12665 2014-01-03  Chong Yidong  <cyd@gnu.org>
12667         * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
12668         (advice--docstring): Delete variable.
12669         (advice--make-1): Leave the docstring empty.
12670         (advice-add): Use function-documentation for advised docstring.
12672         * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
12673         Ignore function-documentation property when getting documentation.
12674         (ad-activate-advised-definition): Use function-documentation
12675         generate the docstring.
12676         (ad-make-advised-definition): Don't call
12677         ad-make-advised-definition-docstring.
12678         (ad-make-advised-definition-docstring, ad-advised-definition-p):
12679         Delete functions.
12681         * progmodes/sql.el (sql-help): Use function-documentation instead
12682         of dynamic-docstring-function property.  No need to autoload now.
12683         (sql--help-docstring): New variable.
12684         (sql--make-help-docstring): Use it.
12686 2014-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12688         * ielm.el (ielm-tab): Retarget.
12689         (ielm-map): Use ielm-tab for tab.
12690         (ielm-complete-filename): Use comint-filename-completion.
12691         (ielm-complete-symbol): Remove.
12692         (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
12693         remove ielm-tab from completion-at-point-functions (bug#16224).
12695         * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
12696         Beware signals raised by predicates (bug#16201).
12698 2014-01-02  Richard Stallman  <rms@gnu.org>
12700         * dired-aux.el (dired-do-print): Handle printer-name.
12702         * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
12703         * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
12704         (rmail-epa-decrypt): Turn off mime processing.
12706         * mail/rmail.el (rmail-make-in-reply-to-field):
12707         Add parens in message-id.
12709         * mail/rmail.el (rmail-get-coding-function): Variable.
12710         (rmail-get-coding-system): Use it.
12712 2013-12-31  Eli Zaretskii  <eliz@gnu.org>
12714         * international/mule-conf.el: Unify the charset indian-is13194.
12715         (indian-is13194): Specify unify-map.
12717 2013-12-31  Leo Liu  <sdl.web@gmail.com>
12719         * subr.el (set-temporary-overlay-map): Obsolete alias.  (Bug#16305)
12721 2013-12-30  Daniel Colascione  <dancol@dancol.org>
12723         * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
12724         of printing a useless when we resume from sleep.
12726         * progmodes/sh-script.el
12727         (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
12728         in indentation code.  (Bug#16233)
12730 2013-12-28  João Távora  <joaotavora@gmail.com>
12732         * elec-pair.el (electric-pair-post-self-insert-function):
12733         Don't open extra newlines at beginning of buffer.  (Bug#16272)
12735 2013-12-28  Eli Zaretskii  <eliz@gnu.org>
12737         * frame.el (window-system-for-display): Don't allow to create a
12738         GUI frame from a -nw session on MS-Windows.  (Bug#14739)
12740 2013-12-28  Glenn Morris  <rgm@gnu.org>
12742         * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
12743         Update callers.
12745         * apropos.el (apropos-match-face):
12746         * calculator.el (calculator-displayer):
12747         * dabbrev.el (dabbrev-search-these-buffers-only):
12748         * face-remap.el (buffer-face-mode-face):
12749         * simple.el (yank-handled-properties):
12750         * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
12751         * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
12752         * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
12753         (hashcash-double-spend-database):
12754         * progmodes/ruby-mode.el (ruby-deep-indent-paren)
12755         (ruby-deep-indent-paren-style):
12756         * textmodes/flyspell.el (flyspell-auto-correct-binding):
12757         * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
12758         (rst-toc-insert-number-separator, rst-toc-insert-max-level):
12759         * vc/pcvs-defs.el (cvs-minor-mode-prefix):
12760         Specify custom types.
12762         * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
12763         * bookmark.el (bookmark-bmenu-use-header-line):
12764         * doc-view.el (doc-view-scale-internally):
12765         * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
12766         * register.el (register-preview-delay):
12767         * net/shr.el (shr-bullet):
12768         * progmodes/cfengine.el (cfengine-cf-promises)
12769         (cfengine-parameters-indent):
12770         * progmodes/octave.el (inferior-octave-error-regexp-alist):
12771         * textmodes/reftex-vars.el (reftex-label-regexps):
12772         * vc/log-edit.el (log-edit-setup-add-author): Add version.
12774         * net/tls.el (tls-certtool-program): Fix default value.
12776         * desktop.el (desktop-restore-in-current-display):
12777         * newcomment.el (comment-empty-lines):
12778         * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
12779         (idlwave-pad-keyword):
12780         * progmodes/tcl.el (tcl-tab-always-indent):
12781         * textmodes/reftex-vars.el (reftex-index-default-tag):
12782         * elec-pair.el (electric-pair-skip-whitespace):
12783         * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
12785         * emacs-lisp/authors.el (authors-ignored-files)
12786         (authors-valid-file-names, authors-renamed-files-alist): Additions.
12788 2013-12-27  Jarek Czekalski  <jarekczek@poczta.onet.pl>
12790         * shell.el (shell-dynamic-complete-command): Doc fix.
12791         (shell--command-completion-data): Shell completion now matches
12792         executable filenames from the current buffer's directory, on
12793         systems in which this behavior is the default (windows-nt, ms-dos).
12795 2013-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
12797         * net/shr.el (shr-insert): Don't infloop if the width is zero.
12799 2013-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
12801         * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
12802         (bug#16251).
12804         * electric.el: Move all electric-pair-* to elec-pair.el.
12805         * elec-pair.el: New file, split from electric.el.
12807 2013-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
12809         * net/shr.el (shr-find-fill-point): Don't try to fill if the
12810         indentation level is larger than the width, because that will
12811         infloop.
12812         (shr-insert): Fill repeatedly long texts, so that Japanese is
12813         formatted correctly (bug#16263).
12814         (shr-find-fill-point): Off by one error in comparison with the
12815         indentation.
12817 2013-12-26  João Távora  <joaotavora@gmail.com>
12819         * electric.el (electric-pair-mode): More flexible engine for skip-
12820         and inhibit predicates, new options for pairing-related functionality.
12821         (electric-pair-preserve-balance): Pair/skip parentheses and quotes
12822         if that keeps or improves their balance in buffers.
12823         (electric-pair-delete-adjacent-pairs): Delete the pair when
12824         backspacing over adjacent matched delimiters.
12825         (electric-pair-open-extra-newline): Open extra newline when
12826         inserting newlines between adjacent matched delimiters.
12827         (electric--sort-post-self-insertion-hook):
12828         Sort post-self-insert-hook according to priority values when
12829         minor-modes are activated.
12830         * simple.el (newline-and-indent): Call newline with interactive
12831         set to t.
12832         (blink-paren-post-self-insert-function): Set priority to 100.
12833         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
12834         Use electric-pair-text-pairs to pair backtick-and-quote in strings and
12835         comments.  Locally set electric-pair-skip-whitespace to 'chomp and
12836         electric-pair-open-newline-between-pairs to nil.
12838 2013-12-26  Fabián Ezequiel Gallina  <fgallina@gnu.org>
12840         * progmodes/python.el: Use lexical-binding.
12841         (python-nav-beginning-of-defun): Stop searching ASAP.
12843 2013-12-25  Xue Fuqiao  <xfq.free@gmail.com>
12845         * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
12846         Fix interactive spec.  Doc fix.  (Bug#15754)
12848 2013-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
12850         * emacs-lisp/byte-run.el (eval-when-compile):
12851         * progmodes/cc-defs.el (cc-eval-when-compile):
12852         Fix edebug spec (bug#16184).
12854 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
12856         * net/shr.el (shr-visit-file): Remove debugging function.
12857         (shr-insert): Don't infloop if we can't find a good place to break
12858         the line (bug#16256).
12860 2013-12-25  Fabián Ezequiel Gallina  <fgallina@gnu.org>
12862         * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
12863         (python-nav--lisp-forward-sexp-safe): Use it.  Rename from
12864         python-nav-lisp-forward-sexp-safe.
12865         (python-nav--forward-sexp): New argument SAFE allows switching
12866         forward sexp movement behavior for parens.
12867         (python-nav-forward-sexp): Throw errors on unterminated parens
12868         (Bug#16191).
12869         (python-nav-backward-sexp, python-nav-forward-sexp-safe)
12870         (python-nav-backward-sexp-safe): New functions.
12871         (python-shell-buffer-substring):
12872         Use `python-nav-forward-sexp-safe'.
12874 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
12876         * net/shr.el (shr-find-fill-point): Don't break lines before a
12877         quotation mark.
12878         (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
12879         (shr-find-fill-point): Remove the special checks for the quotation
12880         mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
12882 2013-12-25  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
12884         * net/eww.el (eww-form-textarea): Use a different face for
12885         textareas than text input since they have different keymaps
12886         (bug#16142).
12888 2013-12-24  Fabián Ezequiel Gallina  <fgallina@gnu.org>
12890         * progmodes/python.el (python-nav-beginning-of-statement):
12891         Speed up (Bug#15295).
12893 2013-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
12895         * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
12896         the window configuration.
12898 2013-12-24  Eli Zaretskii  <eliz@gnu.org>
12900         * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
12901         we run on MS-Windows or MS-DOS.
12903 2013-12-24  Martin Rudalics  <rudalics@gmx.at>
12905         * window.el (balance-windows-area): Call window-size instead of
12906         window-height and window-width.  Bug#16241.
12908 2013-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
12910         * net/eww.el (eww-bookmark-quit): Remove.
12911         (eww-bookmark-browse): Restore the window configuration when you
12912         choose a bookmark (bug#16144).
12914 2013-12-24  Daniel Colascione  <dancol@dancol.org>
12916         * icomplete.el: Remove redundant :group arguments to `defcustom'
12917         throughout.
12918         (icomplete-show-matches-on-no-input): New customizable variable.
12919         (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
12920         we have something to show.
12921         (icomplete-exhibit): Compute completions even if we have no user input.
12923 2013-12-23  Daniel Colascione  <dancol@dancol.org>
12925         * icomplete.el: Move `provide' to end of file.
12927 2013-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
12929         * net/gnutls.el (gnutls-verify-error): Add version tag.
12931 2013-12-23  Chong Yidong  <cyd@gnu.org>
12933         * subr.el (set-transient-map): Rename from
12934         set-temporary-overlay-map.  Doc fix.
12936         * face-remap.el (text-scale-adjust):
12937         * indent.el (indent-rigidly):
12938         * kmacro.el (kmacro-call-macro):
12939         * minibuffer.el (minibuffer-force-complete):
12940         * repeat.el (repeat):
12941         * simple.el (universal-argument--mode):
12942         * calendar/todo-mode.el (todo-insert-item--next-param):
12943         * progmodes/f90.el (f90-abbrev-start): Callers changed.
12945         * indent.el (indent-rigidly): Use substitute-command-keys.
12947 2013-12-22  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
12949         * net/eww.el (eww-tag-select): Add text-property to jump to next
12950         select field.
12951         (eww): Add non-supported ftp error.
12953 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
12955         * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
12956         comments.  Handle electric indent after typing `?' and `!'.
12958 2013-12-22  Chong Yidong  <cyd@gnu.org>
12960         * faces.el (face-spec-recalc): If the theme specs are not
12961         applicable to a frame, fall back on the defface spec.
12962         This prevents themes from obliterating faces on low-color terminals.
12964 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
12966         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
12967         after `{'.  We need it after block openers, and it doesn't seem
12968         to hurt after hash openers.
12970 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
12972         * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
12973         extracted from `ruby-smie-rules'.
12974         (ruby--electric-indent-chars): New variable.
12975         (ruby--electric-indent-p): New function.
12976         (ruby-mode): Use `electric-indent-functions' instead of
12977         `electric-indent-chars'.
12979 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
12981         * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
12982         docstring.
12983         (ruby-smie-rules): Indent plus one level after `=>'.
12985 2013-12-21  Richard Stallman  <rms@gnu.org>
12987         * simple.el (newline): Doc fix.
12989 2013-12-21  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
12991         * net/eww.el (eww-list-histories, eww-list-histories)
12992         (eww-history-browse, eww-history-quit, eww-history-kill)
12993         (eww-history-mode-map, eww-history-mode): New command and
12994         functions to list browser histories.
12995         (eww-form-text): Support text form with disabled
12996         and readonly attributes.
12997         (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
12999 2013-12-21  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
13001         * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
13002         (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
13003         (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
13004         (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
13005         Use `user-error'.
13006         (eww-bookmark-mode-map): Add menu.
13007         (eww-render, eww-mode): Use `setq-local'.
13008         (eww-tool-bar-map): New variable.
13009         (eww-mode): Set `tool-bar-map'.
13010         (eww-view-source): Check for `html-mode' with `fboundp'.
13012 2013-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13014         * net/shr.el (shr--extract-best-source): Don't bug out on audio
13015         elements with text inside.  Also remove debugging.
13017 2013-12-21  Jan Djärv  <jan.h.d@swipnet.se>
13019         * cus-start.el (all): Add ns-use-srgb-colorspace.
13021 2013-12-21  Chong Yidong  <cyd@gnu.org>
13023         * custom.el (custom-theme-recalc-face): Do nothing if the face is
13024         undefined.  Thus, theme settings for undefined faces do not take
13025         effect until the faces are defined with defface, the same as with
13026         theme variables.
13028         * faces.el (face-spec-set): Use face-spec-recalc in all cases.
13029         (face-spec-reset-face): Don't assign extra properties in temacs.
13030         (face-spec-recalc): Apply X resources too.
13032 2013-12-21  Chong Yidong  <cyd@gnu.org>
13034         * faces.el (face-spec-set):
13035         * cus-face.el (custom-theme-set-faces, custom-set-faces):
13036         * custom.el (defface): Doc fixes (Bug#16203).
13038         * indent.el (indent-rigidly-map): Add docstring, and move commands
13039         into named functions.
13040         (indent-rigidly-left, indent-rigidly-right)
13041         (indent-rigidly-left-to-tab-stop)
13042         (indent-rigidly-right-to-tab-stop): New functions.  Decide on
13043         indentation direction based on bidi direction, and accumulate
13044         sequential commands in a single undo boundary.
13045         (indent-rigidly--pop-undo): New utility function.
13047 2013-12-20  Juanma Barranquero  <lekktu@gmail.com>
13049         * faces.el (read-face-name): Require crm.el when using crm-separator.
13051 2013-12-20  Daniel Colascione  <dancol@dancol.org>
13053         * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
13054         so that we don't reflow comments into the shebang line.
13056 2013-12-20  Juri Linkov  <juri@jurta.org>
13058         * saveplace.el (save-place-to-alist): Add `dired-filename' as
13059         a position when `dired-directory' is non-nil.  Check integer
13060         positions with `integerp'.
13061         (toggle-save-place, save-places-to-alist): Add check for
13062         `dired-directory'.
13063         (save-place-find-file-hook): Check integer positions with
13064         `integerp'.
13065         (save-place-dired-hook): Use `dired-goto-file' when
13066         `dired-filename' is found in the assoc list.  Check integer
13067         positions with `integerp'.
13068         (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
13070         * dired.el (dired-initial-position-hook): Rename back from
13071         `dired-initial-point-hook'.
13072         (dired-initial-position): Rename `dired-initial-point-hook' to
13073         `dired-initial-position-hook'.
13074         (dired-file-name-at-point): Doc fix.  (Bug#15329)
13076 2013-12-20  Juri Linkov  <juri@jurta.org>
13078         * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
13079         (read-regexp-suggestions): New function.
13080         (read-regexp): Use `read-regexp-defaults-function' to get default values.
13081         Use `read-regexp-suggestions'.  Add non-empty default to history
13082         for empty input.
13083         (occur-read-regexp-defaults-function): Remove function.
13084         (occur-read-primary-args): Use `regexp-history-last' instead of
13085         `occur-read-regexp-defaults-function'.
13087         * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
13088         (hi-lock-line-face-buffer, hi-lock-face-buffer)
13089         (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
13090         `hi-lock-read-regexp-defaults-function'.  Doc fix.
13091         (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
13092         with `find-tag-default-as-symbol-regexp'.  Doc fix.
13093         (hi-lock-read-regexp-defaults): Remove function.
13094         (hi-lock-regexp-okay): Add check for null.
13096         * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
13097         the arg DEFAULTS.  Move formatting of the prompt to `read-regexp'.
13099         * subr.el (find-tag-default-as-symbol-regexp): New function.
13100         (find-tag-default-as-regexp): Move symbol regexp formatting to
13101         `find-tag-default-as-symbol-regexp'.
13103 2013-12-20  E Sabof  <esabof@gmail.com>  (tiny change)
13105         * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
13106         (Bug#14179)
13108 2013-12-20  Stephen Berman  <stephen.berman@gmx.net>
13110         * calendar/todo-mode.el: New implementation of item insertion
13111         commands and key bindings.
13112         (todo-key-prompt): New face.
13113         (todo-insert-item): New command.
13114         (todo-insert-item--parameters): New defconst, replacing defvar
13115         todo-insertion-commands-args-genlist.
13116         (todo-insert-item--param-key-alist): New defconst, replacing
13117         defvar todo-insertion-commands-arg-key-list.
13118         (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
13119         (todo-insert-item--argsleft, todo-insert-item--apply-args)
13120         (todo-insert-item--next-param): New functions.
13121         (todo-insert-item--args, todo-insert-item--argleft)
13122         (todo-insert-item--argsleft, todo-insert-item--newargsleft):
13123         New variables.
13124         (todo-key-bindings-t): Change binding of "i" from
13125         todo-insertion-map to todo-insert-item.
13126         (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
13127         (todo-insertion-command-name, todo-insertion-commands-names)
13128         (todo-define-insertion-command, todo-insertion-commands)
13129         (todo-insertion-key-bindings, todo-insertion-map): Remove.
13131 2013-12-20  Stephen Berman  <stephen.berman@gmx.net>
13133         * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
13134         (todo-toggle-item-highlighting): Use eval-and-compile instead of
13135         eval-when-compile.
13136         (todo-move-category): Allow choosing a non-existing todo file to
13137         move the category to, and create that file.
13138         (todo-default-priority): New user option.
13139         (todo-set-item-priority): Use it.
13140         (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
13141         (desktop-restore-file-buffer): Declare.
13142         (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
13143         (todo-modes-set-2): Locally set desktop-save-buffer to
13144         todo-desktop-save-buffer.
13145         (todo-mode, todo-archive-mode, todo-filtered-items-mode)
13146         (auto-mode-alist): Add autoload cookie.
13148 2013-12-20  Bozhidar Batsov  <bozhidar@batsov.com>
13150         * emacs-lisp/subr-x.el: Renamed from helpers.el.
13151         helpers.el was a poor choice of name.
13152         (string-remove-prefix): New function.
13153         (string-remove-suffix): New function.
13155 2013-12-20  Martin Rudalics  <rudalics@gmx.at>
13157         Fix assignment for new window total sizes.
13158         * window.el (window--pixel-to-size): Remove function.
13159         (window--pixel-to-total-1, window--pixel-to-total):
13160         Fix calculation of new total sizes.
13162 2013-12-20  Vitalie Spinu  <spinuvit@gmail.com>
13164         * comint.el (comint-output-filter): Fix rear-nonsticky property
13165         placement (Bug#16010).
13167 2013-12-20  Chong Yidong  <cyd@gnu.org>
13169         * faces.el (read-color): Minor fix for completion function.
13171 2013-12-20  Dmitry Gutov  <dgutov@yandex.ru>
13173         * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
13174         New option.  (Bug#16182)
13175         (ruby-smie--indent-to-stmt-p): Use it.
13176         (ruby-smie-rules): Revert the logic in the handling of `when'.
13177         Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
13178         (ruby-deep-arglist, ruby-deep-indent-paren)
13179         (ruby-deep-indent-paren-style): Update docstrings to note that the
13180         vars don't have any effect with SMIE.
13182 2013-12-20  Jay Belanger  <jay.p.belanger@gmail.com>
13184         * calc/calc.el (calc-enter, calc-pop): Use the variable
13185         `calc-context-sensitive-enter'.
13187 2013-12-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13189         * net/shr.el (shr-insert): Protect against infloops in degenerate
13190         tables.
13192 2013-12-20  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
13194         * progmodes/octave.el (octave): Add link to manual and octave
13195         homepage.
13196         (octave-mode-menu): Link to octave-mode manual.
13198 2013-12-20  Leo Liu  <sdl.web@gmail.com>
13200         * skeleton.el (skeleton-pair-insert-maybe): Disable newline
13201         insertion using skeleton-end-newline.  (Bug#16138)
13203 2013-12-20  Juri Linkov  <juri@jurta.org>
13205         * replace.el (occur-engine): Use `add-face-text-property'
13206         to add the face property to matches and titles.  (Bug#14645)
13208         * hi-lock.el (hi-green): Use lighter color "light green" closer to
13209         the palette of other hi-lock colors.
13210         (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
13212 2013-12-19  Juri Linkov  <juri@jurta.org>
13214         * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
13215         Put :advertised-binding on `M-s c', `M-s r', `M-s e'.  (Bug#16035)
13216         (minibuffer-history-symbol): Move variable declaration closer to
13217         its usage.
13219         * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
13220         (Bug#14785)
13222 2013-12-19  Juri Linkov  <juri@jurta.org>
13224         * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
13225         New function.
13226         (log-edit-hook): Add it to :options.  (Bug#16170)
13228 2013-12-19  Juri Linkov  <juri@jurta.org>
13230         * simple.el (eval-expression-print-format): Don't check for
13231         command names and the last command.  Always display additional
13232         formats of the integer result in the echo area, and insert them
13233         to the current buffer only with a zero prefix arg.
13234         Display character when char-displayable-p is non-nil.
13235         (eval-expression): With a zero prefix arg, set `print-length' and
13236         `print-level' to nil, and insert the integer values from
13237         `eval-expression-print-format' at the end.  Doc fix.  (Bug#12985)
13239         * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
13240         `eval-last-sexp-arg-internal'.  Doc fix.
13241         (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
13242         `eval-last-sexp-print-value'.  Doc fix.
13243         (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
13244         Set `print-length' and `print-level' to nil when arg is zero.
13245         (eval-last-sexp): Doc fix.
13246         (eval-defun-2): Print the integer values from
13247         `eval-expression-print-format' at the end.
13249         * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
13250         values from `eval-expression-print-format' at the end.
13252         * ielm.el (ielm-eval-input): Print the integer
13253         values from `eval-expression-print-format' at the end.
13255 2013-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
13257         * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
13258         2013-12-11T19:01:44Z!tzz@lifelogs.com.
13260 2013-12-19  Stefan Monnier  <monnier@iro.umontreal.ca>
13262         * hl-line.el (hl-line-make-overlay): New fun.  Set priority (bug#16192).
13263         (hl-line-highlight, global-hl-line-highlight): Use it.
13264         (hl-line-overlay): Use defvar-local.
13266 2013-12-19  Jan Djärv  <jan.h.d@swipnet.se>
13268         * term/ns-win.el: Require dnd.
13269         (global-map): Remove drag items.
13270         (ns-insert-text, ns-set-foreground-at-mouse)
13271         (ns-set-background-at-mouse):
13272         Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
13273         (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
13274         New functions.
13276 2013-12-19  Glenn Morris  <rgm@gnu.org>
13278         * emacs-lisp/ert.el (ert-select-tests):
13279         Fix string/symbol mixup.  (Bug#16121)
13281 2013-12-19  Dmitry Gutov  <dgutov@yandex.ru>
13283         * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
13284         keywords to their parent.
13286 2013-12-19  Dmitry Gutov  <dgutov@yandex.ru>
13288         * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
13289         first arg to be a string (fixed dead code), or an operator symbol.
13290         (ruby-smie--forward-token): Tokenize ` @ ' before strings and
13291         operator symbols.
13292         (ruby-smie-rules): Remove parent token check in the `.' clause, it
13293         did nothing.  Don't respond to `(:after ".")', it will be called
13294         with :before anyway.  Remove the ` @ ' rule, it didn't seem to
13295         change anything.  Only return indentation for binary operators
13296         when they are hanging.  De-dent opening paren when its parent is
13297         `.', otherwise it looks bad when the dot is not at bol or eol
13298         (bug#16182).
13300 2013-12-19  Juri Linkov  <juri@jurta.org>
13302         * replace.el (query-replace-read-args): Split a non-negative arg
13303         and a negative arg into separate elements.
13304         (query-replace, query-replace-regexp, replace-string)
13305         (replace-regexp): Add arg `backward'.  Doc fix.
13306         (replace-match-maybe-edit): When new arg `backward' is non-nil,
13307         move point to the beginning of the match.
13308         (replace-search, replace-highlight): Use new arg `backward'
13309         to set the value of `isearch-forward'.
13310         (perform-replace): Add arg `backward' and use it to perform
13311         replacement backward.  (Bug#14979)
13313         * isearch.el (isearch-query-replace): Use a negative prefix arg
13314         to call `perform-replace' with a non-nil arg `backward'.
13316 2013-12-18  Juri Linkov  <juri@jurta.org>
13318         * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
13319         to the default list.  Move `log-edit-show-files' to the end.
13320         Add more available functions to options.
13321         (log-edit): Move default specific settings to
13322         `log-edit-insert-message-template'.  Don't move point.
13323         (log-edit-insert-message-template): New function.
13324         (log-edit-insert-changelog): Add `save-excursion' and don't move point.
13325         (Bug#16170)
13327 2013-12-18  Juri Linkov  <juri@jurta.org>
13329         * help-mode.el (help-mode-map): Bind "l" to help-go-back,
13330         and "r" to help-go-forward for compatibity with Info.  (Bug#16178)
13332 2013-12-18  Leo Liu  <sdl.web@gmail.com>
13334         * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
13335         (Bug#16186)
13337 2013-12-18  Eli Zaretskii  <eliz@gnu.org>
13339         * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
13340         formats for displaying file sizes when the -s switch is given.
13341         Instead, compute a separate format for displaying the size in
13342         blocks, which is displayed in addition to the "regular" size.
13343         When -h is given in addition to -s, produce size in blocks in
13344         human-readable form as well.  (Bug#16179)
13346 2013-12-18  Tassilo Horn  <tsdh@gnu.org>
13348         * textmodes/reftex-vars.el (reftex-label-alist-builtin):
13349         Reference tables with ~\ref{...} instead of only \ref{...}.
13351 2013-12-18  Chong Yidong  <cyd@gnu.org>
13353         * cus-edit.el (custom-magic-alist): Fix "themed" description
13354         (Bug#14348).
13356         * custom.el (custom-push-theme): If custom--inhibit-theme-enable
13357         is non-nil, do not create a new entry in the symbol's theme-value
13358         or theme-face property; update theme-settings only (Bug#14664).
13359         (custom-available-themes): Doc fix.
13361         * cus-theme.el (custom-new-theme-mode-map): Add bindings
13362         (Bug#15674).
13364         * replace.el (occur-engine): Avoid infloop (Bug#7593).
13366 2013-12-18  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
13368         * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
13369         (Bug#13914).
13371 2013-12-18  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
13373         * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
13375 2013-12-18  Glenn Morris  <rgm@gnu.org>
13377         * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
13378         * cus-start.el (load-prefer-newer): New option.
13380 2013-12-18  Le Wang  <l26wang@gmail.com>
13382         * comint.el (comint-previous-matching-input-from-input):
13383         Retain point (Bug#13404).
13385 2013-12-18  Chong Yidong  <cyd@gnu.org>
13387         * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
13389 2013-12-18  Glenn Morris  <rgm@gnu.org>
13391         * mail/emacsbug.el (report-emacs-bug):
13392         Only mention enable-multibyte-characters if non-standard.
13394 2013-12-17  Juri Linkov  <juri@jurta.org>
13396         * arc-mode.el (archive-extract-by-file): Check if directory exists
13397         before deletion to not show irrelevant errors if it doesn't exist.
13399 2013-12-17  Juri Linkov  <juri@jurta.org>
13401         * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
13402         (Bug#14751)
13404         * net/eww.el (browse-web): Add alias to `eww'.
13405         (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
13406         Bind "S-SPC" to `scroll-down-command'.  (Bug#16178)
13408         * net/browse-url.el (browse-url-browser-function): Move `eww'
13409         closer to similar functions.
13411         * startup.el (fancy-startup-screen, fancy-about-screen):
13412         Set browse-url-browser-function to eww-browse-url locally.
13413         (Bug#14751)
13415 2013-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13417         * window.el (window--pixel-to-total): Remove unused `mini' var.
13418         (maximize-window, minimize-window): Remove unused `pixelwise' arg.
13419         (split-window): Remove unused `new' var.
13420         (window--display-buffer): Remove unused `frame' and `delta' vars.
13421         (fit-window-to-buffer): Remove unused vars `frame', `display-height',
13422         and display-width'.
13424 2013-12-17  Martin Rudalics  <rudalics@gmx.at>
13426         * dired.el (dired-mark-pop-up):
13427         * register.el (register-preview): Don't bind
13428         split-height-threshold here since it's now done in
13429         display-buffer-below-selected.
13431 2013-12-17  oblique  <psyberbits@gmail.com>  (tiny change)
13433         * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
13434         xterm-rgb-convert-to-16bit.
13435         (rxvt-register-default-colors): Standardize with
13436         xterm-register-default-colors (Bug#14078).
13438 2013-12-17  Dima Kogan  <dima@secretsauce.net>  (tiny change)
13440         * simple.el (kill-region): Pass mark first, then point, so that
13441         kill-append works right (Bug#12819).
13442         (copy-region-as-kill, kill-ring-save): Likewise.
13444 2013-12-17  Leo Liu  <sdl.web@gmail.com>
13446         * net/rcirc.el (rcirc-add-face):
13447         * eshell/em-prompt.el (eshell-emit-prompt):
13448         * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
13449         (Bug#16167)
13451 2013-12-17  Chong Yidong  <cyd@gnu.org>
13453         * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
13454         Suggested by Xue Fuqiao.
13456 2013-12-17  Dmitry Gutov  <dgutov@yandex.ru>
13458         * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
13460 2013-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13462         * net/shr.el (shr-insert-document): Remove unused var
13463         `shr-preliminary-table-render'.
13464         (shr-rescale-image): Remove unused arg `force'.
13465         (shr-put-image): Update calls accordingly.
13466         (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
13468 2013-12-17  Dmitry Gutov  <dgutov@yandex.ru>
13470         * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
13471         (smie-indent-close): Call `smie-indent--rule-1' with METHOD
13472         :close-all, to see which indentation method to use (Bug#16116).
13473         (smie-rules-function): Document the method :close-all.
13475 2013-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13477         * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
13479         * net/eww.el (eww-display-html): If we can't find the anchor we're
13480         looking for, then go to point-min.
13482 2013-12-16  Paul Eggert  <eggert@cs.ucla.edu>
13484         Fix problems with CANNOT_DUMP and EMACSLOADPATH.
13485         * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
13486         * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
13487         Expand dir too, in case it's relative.
13489 2013-12-16  Juri Linkov  <juri@jurta.org>
13491         * desktop.el (desktop-auto-save-timeout): Change default to
13492         `auto-save-timeout'.  Doc fix.
13493         (desktop-save): Skip the timestamp in desktop-saved-frameset
13494         when checking for auto-save changes.
13495         (desktop-auto-save): Don't call desktop-auto-save-set-timer since
13496         `desktop-auto-save' is called repeatedly by the idle timer.
13497         (desktop-auto-save-set-timer): Replace `run-with-timer' with
13498         `run-with-idle-timer' and a non-nil arg REPEAT.  Doc fix.
13499         (Bug#15331)
13501 2013-12-16  Juri Linkov  <juri@jurta.org>
13503         * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
13504         (Bug#16035)
13505         (isearch-pre-command-hook): Check `this-command' for symbolp.
13507 2013-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
13509         * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
13511 2013-12-16  Teodor Zlatanov  <tzz@lifelogs.com>
13513         * progmodes/cfengine.el (cfengine3--current-word): Remove.
13514         (cfengine3--current-function): Bring in the current-function
13515         functionality from `cfengine3--current-word'.
13516         (cfengine3-completion-function): Bring in the
13517         bounds-of-current-word functionality from
13518         `cfengine3--current-word'.
13520 2013-12-16  Martin Rudalics  <rudalics@gmx.at>
13522         * window.el (display-buffer-below-selected):
13523         Bind split-height-threshold to 0 as suggested by Juri Linkov.
13525 2013-12-16  Leo Liu  <sdl.web@gmail.com>
13527         * progmodes/compile.el (compile-goto-error): Do not push-mark.
13528         Remove NOMSG arg and all uses changed.
13530 2013-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
13532         * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
13533         (cua--deactivate-rectangle): Don't deactivate the mark.
13534         (cua-set-rectangle-mark): Don't set mark-active since
13535         cua--activate-rectangle already does it for us.
13536         (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
13537         non-rectangular region.
13539         * emulation/cua-base.el (cua-repeat-replace-region):
13540         Use with-current-buffer.
13542         * net/gnutls.el: Use cl-lib.
13543         (gnutls-negotiate): `mapcan' -> cl-mapcan.
13545 2013-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
13547         * emacs-lisp/package.el (package-built-in-p): Support both
13548         built-in and the package.el converted package descriptions.
13549         (package-show-package-list): Allow keywords.
13550         (package-keyword-button-action): Use it instead of
13551         `finder-list-matches'.
13552         (package-menu-filter-interactive): Interactive filtering (by
13553         keyword) function.
13554         (package-menu--generate): Support keywords and change keymappings
13555         and headers when they are given.
13556         (package--has-keyword-p): Helper function.
13557         (package-menu--refresh): Use it.
13558         (package--mapc): Helper function.
13559         (package-all-keywords): Use it.
13560         (package-menu-mode-map): Set up menu items and keybindings to
13561         provide a filtering UI.
13563 2013-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
13565         * net/gnutls.el (gnutls-verify-error): New defcustom to control
13566         the behavior when a certificate fails validation.  Defaults to
13567         old behavior: never abort, just warn.
13568         (gnutls-negotiate): Use it.
13570 2013-12-14  Martin Rudalics  <rudalics@gmx.at>
13572         * window.el (display-buffer-below-selected): Never split window
13573         horizontally.  Suggested by Juri Linkov <juri@jurta.org>.
13575 2013-12-14  Tom Willemse  <tom@ryuslash.org>  (tiny change)
13577         * emacs-lisp/package.el (package--prepare-dependencies): New function.
13578         (package-buffer-info): Use it (bug#15108).
13580 2013-12-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13582         * icomplete.el (icomplete-completions): Make sure the prefix is already
13583         displayed elsewhere before hiding it (bug#16219).
13585 2013-12-14  Dmitry Gutov  <dgutov@yandex.ru>
13587         * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
13588         open-paren tokens when preceded by a open-paren, too.
13589         (ruby-smie-rules): Handle virtual indentation after open-paren
13590         tokens specially.  If there is code between it and eol, return the
13591         column where is starts (Bug#16118).
13593 2013-12-13  Teodor Zlatanov  <tzz@lifelogs.com>
13595         * progmodes/cfengine.el: Fix `add-hook' doc.
13596         (cfengine-mode-syntax-functions-regex): Initialize sensibly.
13597         (cfengine3--current-word): Fix parameters.
13598         (cfengine3-make-syntax-cache): Simplify further.
13599         (cfengine3-completion-function, cfengine3--current-function):
13600         Use `assq' for symbols.
13601         (cfengine3--current-function): Fix `cfengine3--current-word' call.
13603 2013-12-13  Glenn Morris  <rgm@gnu.org>
13605         * loadup.el (load-path): Warn if site-load or site-init changes it.
13606         No more need to reset it when bootstrapping.
13608 2013-12-13  Teodor Zlatanov  <tzz@lifelogs.com>
13610         * progmodes/cfengine.el (cfengine-cf-promises): Add more default
13611         locations for cf-promises.
13612         (cfengine-mode-syntax-functions-regex): New caching variable.
13613         (cfengine3-fallback-syntax): Fallback syntax for cases where
13614         cf-promises doesn't run.
13615         (cfengine3--current-word): Reimplement using
13616         `cfengine-mode-syntax-functions-regex'.
13617         (cfengine3-completion-function, cfengine3--current-function):
13618         Use `cfengine3-make-syntax-cache' directly.
13619         (cfengine3-clear-syntax-cache): New function.
13620         (cfengine3-make-syntax-cache): Simplify and create
13621         `cfengine-mode-syntax-functions-regex' on demand.
13622         (cfengine3-format-function-docstring): Don't call
13623         `cfengine3-make-syntax-cache' explicitly.
13625 2013-12-13  Martin Rudalics  <rudalics@gmx.at>
13627         Fix windmove-find-other-window broken after pixelwise resizing
13628         (Bug#16017).
13629         * windmove.el (windmove-other-window-loc): Revert change from
13630         2013-12-04.
13631         (windmove-find-other-window): Call window-in-direction.
13632         * window.el (window-in-direction): New arguments SIGN, WRAP and
13633         MINI to emulate original windmove-find-other-window behavior.
13635 2013-12-13  Dmitry Gutov  <dgutov@yandex.ru>
13637         * simple.el (blink-matching--overlay): New variable.
13638         (blink-matching-open): Instead of moving point, highlight the
13639         matching paren with an overlay
13640         (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
13642         * faces.el (paren-showing-faces, show-paren-match)
13643         (show-paren-mismatch): Move from paren.el.
13645 2013-12-13  Leo Liu  <sdl.web@gmail.com>
13647         * indent.el (indent-region): Disable progress reporter in
13648         minibuffer.  (Bug#16108)
13650         * bindings.el (visual-order-cursor-movement): Fix version.
13652 2013-12-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
13654         * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
13655         Also match after beginning of line.
13656         (python-pdbtrack-set-tracked-buffer): Fix logic for remote
13657         files.  Thanks to Russell Sim.  (Bug#15378)
13659 2013-12-13  Juri Linkov  <juri@jurta.org>
13661         * simple.el <Keypad support>: Remove key bindings duplicated
13662         with bindings.el.  (Bug#14397)
13664 2013-12-13  Juri Linkov  <juri@jurta.org>
13666         * comint.el (comint-mode-map): Replace `delete-char' with
13667         `delete-forward-char'.  (Bug#16109)
13669 2013-12-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
13671         * progmodes/python.el (python-indent-calculate-indentation):
13672         Fix de-denters cornercase.  (Bug#15731)
13674 2013-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13676         * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
13677         (advice--make): Pay attention to `depth'.
13678         (advice--make-1): Don't autoload commands eagerly.
13679         * emacs-lisp/elp.el (elp-instrument-function):
13680         * emacs-lisp/trace.el (trace-function-internal):
13681         * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
13683         * iswitchb.el (iswitchb-mode): Don't belittle ido.
13685 2013-12-12  Eli Zaretskii  <eliz@gnu.org>
13687         * term/w32-win.el (w32-handle-dropped-file):
13688         * startup.el (normal-top-level):
13689         * net/browse-url.el (browse-url-file-url):
13690         * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
13691         decode file names using 'utf-8' rather than
13692         file-name-coding-system.
13694 2013-12-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
13696         * progmodes/python.el (python-indent-context)
13697         (python-indent-calculate-indentation): Fix auto-identation
13698         behavior for comment blocks.  (Bug#15916)
13700 2013-12-12  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
13702         * progmodes/python.el (python-indent-calculate-indentation):
13703         When determining indentation, don't treat "return", "pass", etc., as
13704         operators when they are just string constituents.  (Bug#15812)
13706 2013-12-12  Juri Linkov  <juri@jurta.org>
13708         * uniquify.el (uniquify-buffer-name-style): Change default to
13709         `post-forward-angle-brackets'.
13711         * menu-bar.el (menu-bar-options-menu): Don't require preloaded
13712         `uniquify'.  Change default to `post-forward-angle-brackets'.
13714 2013-12-11  Glenn Morris  <rgm@gnu.org>
13716         * emacs-lisp/package.el (finder-list-matches):
13717         Autoload rather than falsely declaring.
13719 2013-12-11  Teodor Zlatanov  <tzz@lifelogs.com>
13721         * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
13722         (eww-mode-map): Use them.
13724 2013-12-11  Martin Rudalics  <rudalics@gmx.at>
13726         * window.el (display-buffer-in-side-window): Fix doc-string
13727         (Bug#16115).
13729 2013-12-11  Juanma Barranquero  <lekktu@gmail.com>
13731         * vc/vc-git.el: Silence byte-compiler warnings.
13732         (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
13733         (log-edit-set-header): Declare.
13735 2013-12-11  Eli Zaretskii  <eliz@gnu.org>
13737         * Makefile.in (custom-deps, finder-data): Run output file names
13738         through unmsys--file-name.  (Bug#16099)
13740 2013-12-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13742         * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
13743         comment-start-skip, which fails when that uses submatch 1 (bug#16041).
13745         * emulation/cua-base.el (cua-paste): Add `delete-selection' property
13746         instead of deleting the selection "by hand" (bug#16098).
13747         Rely on insert-for-yank to yank rectangles.
13748         (cua-highlight-region-shift-only): Mark obsolete.
13749         (cua-mode): Don't enable/disable transient-mark-mode,
13750         shift-select-mode (cua-mode works both with and without them), and
13751         pc-selection-mode (obsolete).
13752         * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
13753         (cua--deactivate-rectangle): Deactivate it.
13755         * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
13756         (delete-selection-helper): Make sure yank starts at the top of the
13757         deleted region.
13758         (minibuffer-keyboard-quit): Use region-active-p.
13760         * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
13762         * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
13763         to `delete' (bug#16109).
13765 2013-12-11  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
13767         * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
13768         info manual and show keybindings and set `:group' keyword.
13770 2013-12-11  Juri Linkov  <juri@jurta.org>
13772         * delsel.el (delete-active-region): Let-bind `this-command'
13773         to prevent `kill-region' from changing its original value.
13774         (delete-selection-helper): Handle `overwrite-mode' for the type
13775         `kill' exactly the same way as for the type `t'.
13776         (insert-char, quoted-insert, reindent-then-newline-and-indent):
13777         Support more commands.  (Bug#13312)
13779 2013-12-11  Juri Linkov  <juri@jurta.org>
13781         * bindings.el: Map kp keys to non-kp keys systematically
13782         with basic modifiers control, meta and shift.  (Bug#14397)
13784 2013-12-11  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
13786         * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
13787         "Close browser" menu items.  Fix wrong function of "List
13788         bookmarks".
13790 2013-12-11  Juri Linkov  <juri@jurta.org>
13792         * misearch.el (multi-isearch-buffers): Set the value of
13793         `multi-isearch-buffer-list' globally.  Set NO-RECURSIVE-EDIT
13794         arg of isearch-forward to t.
13795         (multi-isearch-buffers-regexp): Set the value of
13796         `multi-isearch-buffer-list' globally.  Set NO-RECURSIVE-EDIT
13797         arg of isearch-forward-regexp to t.
13798         (multi-isearch-files): Set the value of
13799         `multi-isearch-file-list' globally.  Set NO-RECURSIVE-EDIT
13800         arg of isearch-forward to t.
13801         (multi-isearch-files-regexp): Set the value of
13802         `multi-isearch-file-list' globally.  Set NO-RECURSIVE-EDIT
13803         arg of isearch-forward-regexp to t.  (Bug#16035)
13805         * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
13806         arg of isearch-forward to t.
13807         (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
13808         arg of isearch-forward-regexp to t.
13809         (dired-isearch-filter-filenames): Remove unnecessary check for
13810         `dired-isearch-filenames'.
13812         * comint.el (comint-history-isearch-backward):
13813         Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
13814         (comint-history-isearch-backward-regexp):
13815         Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
13817 2013-12-10  Eli Zaretskii  <eliz@gnu.org>
13819         * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
13820         unmsys--file-name.  (Bug#16099)
13822 2013-12-10  Teodor Zlatanov  <tzz@lifelogs.com>
13824         * emacs-lisp/package.el (package-keyword-button-action):
13825         Remove finder.el require dependency.
13827 2013-12-09  Teodor Zlatanov  <tzz@lifelogs.com>
13829         * emacs-lisp/package.el: Require finder.el.
13830         (describe-package-1): Add keyword buttons.
13831         (package-make-button): New convenience function.
13832         (package-keyword-button-action): Keyword button action using
13833         `finder-list-matches'.
13835 2013-12-09  Eli Zaretskii  <eliz@gnu.org>
13837         * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
13838         last commit.
13840 2013-12-09  Michael Albinus  <michael.albinus@gmx.de>
13842         * autorevert.el (auto-revert-notify-add-watch): Do not handle
13843         symlinked files.
13845 2013-12-09  Dmitry Gutov  <dgutov@yandex.ru>
13847         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
13848         after the end of a percent literal.
13850 2013-12-09  Cameron Desautels  <camdez@gmail.com>  (tiny change)
13852         * progmodes/ruby-mode.el (ruby-forward-string): Document.
13853         Handle caret-delimited strings (Bug#16079).
13855 2013-12-09  Dmitry Gutov  <dgutov@yandex.ru>
13857         * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
13858         When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
13859         `ruby-parse-partial' (Bug#16078).
13861 2013-12-09  Leo Liu  <sdl.web@gmail.com>
13863         * subr.el (read-passwd): Disable show-paren-mode.  (Bug#16091)
13865 2013-12-08  Dmitry Gutov  <dgutov@yandex.ru>
13867         * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
13868         (js-switch-indent-offset): New option.
13869         (js--proper-indentation): Use it.  And handle the case when
13870         "default" is actually a key in an object literal.
13871         (js--same-line): New function.
13872         (js--multi-line-declaration-indentation): Use it.
13873         (js--indent-in-array-comp, js--array-comp-indentation):
13874         New functions.
13875         (js--proper-indentation): Use them, to handle array comprehension
13876         continuations.
13878 2013-12-08  Leo Liu  <sdl.web@gmail.com>
13880         * progmodes/flymake.el (flymake-highlight-line): Re-write.
13881         (flymake-make-overlay): Remove arg MOUSE-FACE.
13882         (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
13884 2013-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13886         * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
13887         New function.
13888         (redisplay-highlight-region-function): Use it.
13890         * emulation/cua-base.el (cua--explicit-region-start)
13891         (cua--last-region-shifted): Remove.
13892         (cua--deactivate): Use deactivate-mark.
13893         (cua--pre-command-handler-1): Don't handle shift-selection.
13894         (cua--post-command-handler-1): Don't change transient-mark-mode.
13895         (cua--select-keymaps): Use region-active-p rather than
13896         cua--explicit-region-start or cua--last-region-shifted.
13897         (cua-mode): Enable shift-select-mode.
13899 2013-12-08  Leo Liu  <sdl.web@gmail.com>
13901         * progmodes/flymake.el (flymake-popup-current-error-menu):
13902         Rename from flymake-display-err-menu-for-current-line.  Reimplement.
13903         (flymake-posn-at-point-as-event, flymake-popup-menu)
13904         (flymake-make-emacs-menu): Remove.  (Bug#16077)
13906 2013-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13908         * rect.el (rectangle-mark-mode): Activate mark even if
13909         transient-mark-mode is off (bug#16066).
13910         (rectangle--highlight-for-redisplay): Fix boundary condition when point
13911         is > mark and at bolp.
13913         * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
13914         (region-extract-function): Use it.
13915         (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
13916         (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
13917         Delete functions.
13918         (cua--init-rectangles): Don't re-remap copy-region-as-kill,
13919         kill-ring-save, kill-region, delete-char, delete-forward-char.
13920         Ignore self-insert-iso.
13922         * emulation/cua-gmrk.el (cua--init-global-mark):
13923         Ignore `self-insert-iso'.
13925         * emulation/cua-base.el (cua--prefix-copy-handler)
13926         (cua--prefix-cut-handler): Rely on region-extract-function rather than
13927         checking cua--rectangle.
13928         (cua-delete-region): Use region-extract-function.
13929         (cua-replace-region): Delete function.
13930         (cua-copy-region, cua-cut-region): Obey region-extract-function.
13931         (cua--pre-command-handler-1): Don't do the delete-selection thing.
13932         (cua--self-insert-char-p): Ignore `self-insert-iso'.
13933         (cua--init-keymaps): Don't remap delete-selection commands.
13934         (cua-mode): Use delete-selection-mode instead of rolling our own
13935         (bug#16085).
13937         * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
13938         Obey region-extract-function.
13940         Make registers and delete-selection-mode work on rectangles.
13941         * register.el (describe-register-1): Don't modify the register's value.
13942         (copy-to-register): Obey region-extract-function.
13943         * delsel.el (delete-active-region): Obey region-extract-function.
13945 2013-12-08  Leo Liu  <sdl.web@gmail.com>
13947         * progmodes/flymake.el (flymake, flymake-error-bitmap)
13948         (flymake-warning-bitmap, flymake-fringe-indicator-position)
13949         (flymake-compilation-prevents-syntax-check)
13950         (flymake-start-syntax-check-on-newline)
13951         (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
13952         (flymake-start-syntax-check-on-find-file, flymake-log-level)
13953         (flymake-xml-program, flymake-master-file-dirs)
13954         (flymake-master-file-count-limit)
13955         (flymake-allowed-file-name-masks): Relocate.
13956         (flymake-makehash, flymake-float-time)
13957         (flymake-replace-regexp-in-string, flymake-split-string)
13958         (flymake-get-temp-dir): Remove.
13959         (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
13960         (flymake-current-row, flymake-selected-frame)
13961         (flymake-get-point-pixel-pos): Remove xemacs compatibity and
13962         related functions.  (Bug#16077)
13964 2013-12-07  Bozhidar Batsov  <bozhidar@batsov.com>
13966         * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
13968 2013-12-07  Tassilo Horn  <tsdh@gnu.org>
13970         * help-fns.el (describe-function-1): Use new advice-* functions
13971         rather than old ad-* functions.  Fix function type description and
13972         source links for advised functions and subrs.
13974 2013-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13976         * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
13978 2013-12-06  Michael Albinus  <michael.albinus@gmx.de>
13980         * progmodes/compile.el (compilation-start):
13981         * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
13983         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
13984         Handle long command lines, lasting from "sh -c ...".  (Bug#16045)
13986 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
13988         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
13989         Touch up the last change.
13991 2013-12-06  Leo Liu  <sdl.web@gmail.com>
13993         * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
13994         (inferior-octave-startup): Always use "octave> " for prompt.
13995         (octave-goto-function-definition)
13996         (octave-sync-function-file-names)
13997         (octave-find-definition-default-filename): Remove redundant backquotes.
13999 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
14001         * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
14002         syntax for `?'.
14003         (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
14004         where appropriate already.
14005         (ruby-syntax-propertize-function): Propertize `?' and `!' at the
14006         end of method names (Bug#15874).
14008 2013-12-06  Juri Linkov  <juri@jurta.org>
14010         * isearch.el (isearch--saved-overriding-local-map):
14011         New internal variable.
14012         (isearch-mode): Set it to the initial value of
14013         `overriding-terminal-local-map'.
14014         (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
14015         with `isearch--saved-overriding-local-map'.  (Bug#16035)
14017 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
14019         * progmodes/octave.el (inferior-octave-completion-table):
14020         Turn back into function, use `completion-table-with-cache'
14021         (Bug#11906).  Update all references.
14023         * minibuffer.el (completion-table-with-cache): New function.
14025 2013-12-05  Cameron Desautels  <camdez@gmail.com>  (tiny change)
14027         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
14029 2013-12-05  Teodor Zlatanov  <tzz@lifelogs.com>
14031         * net/eww.el (eww-current-source): New variable to store page
14032         source.
14033         (eww-display-html, eww-mode, eww-save-history)
14034         (eww-restore-history): Use it.
14035         (eww-view-source): New command to view page source.
14036         Opportunistically uses `html-mode' to highlight the buffer.
14037         (eww-mode-map): Install it.
14039 2013-12-05  Michael Albinus  <michael.albinus@gmx.de>
14041         * net/dbus.el (dbus-unregister-service)
14042         (dbus-escape-as-identifier, dbus-unescape-from-identifier):
14043         Fix docstring.
14044         (dbus-unregister-service): Skip :serial entries in
14045         `dbus-registered-objects-table'.
14046         (dbus-byte-array-to-string): New optional arg MULTIBYTE.
14048 2013-12-04  Teodor Zlatanov  <tzz@lifelogs.com>
14050         * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
14051         around keywords with extra `split-string' argument.
14053 2013-12-04  Martin Rudalics  <rudalics@gmx.at>
14055         * windmove.el (windmove-other-window-loc): Handle navigation
14056         between windows (excluding the minibuffer window - Bug#16017).
14058 2013-12-04  Michael Albinus  <michael.albinus@gmx.de>
14060         * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
14061         in D-Bus type syntax.
14062         (dbus-unescape-from-identifier): Use `byte-to-string' in order to
14063         preserve unibyte strings.  (Bug#16048)
14065 2013-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
14067         * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
14068         Call force-mode-line-update is the proper buffer (bug#16042).
14070 2013-12-04  Dmitry Gutov  <dgutov@yandex.ru>
14072         * vc/log-edit.el (log-edit-add-new-comment): Rename to
14073         `log-edit-remember-comment', make argument optional.  Adjust all
14074         callers.
14075         (log-edit-mode): Add `log-edit-remember-comment' to
14076         `kill-buffer-hook' locally.
14077         (log-edit-kill-buffer): Don't remember comment explicitly since
14078         the buffer is killed anyway.
14080 2013-12-04  Juri Linkov  <juri@jurta.org>
14082         * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
14083         add-hook and remove-hook for multi-buffer search.  (Bug#16035)
14085 2013-12-03  Tom Regner  <tom@goochesa.de>  (tiny change)
14087         * notifications.el (notifications-close-notification): Call the
14088         D-Bus method with ID being a `:uint32'.  (Bug#16030)
14090 2013-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
14092         * net/eww.el (eww-render): Don't pass arg to eww-display-image.
14094 2013-12-03  Juri Linkov  <juri@jurta.org>
14096         * progmodes/compile.el (compilation-start): Rename window alist
14097         entry `no-display-ok' to `allow-no-window'.
14099         * simple.el (shell-command): Add window alist entry
14100         `allow-no-window' to `display-buffer'.
14101         (async-shell-command): Doc fix.
14103         * window.el (display-buffer-no-window): New action function.
14104         (display-buffer-alist, display-buffer): Doc fix.  (Bug#13594)
14106 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
14108         * vc/log-edit.el (log-edit-set-header): Extract from
14109         `log-edit-toggle-header'.
14110         (log-edit-extract-headers): Separate the summary, when extracted
14111         from header, from the rest of the message with an empty line.
14113         * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
14114         line, if present, to the Summary header.
14116 2013-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
14118         * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
14119         in current-buffer (bug#16029).
14121 2013-12-02  Helmut Eller  <eller.helmut@gmail.com>
14123         * emacs-lisp/debug.el (debugger-toggle-locals): New command.
14124         (debugger-mode-map): Bind it.
14125         (debugger--backtrace-base): New function.
14126         (debugger-eval-expression): Use it.
14127         (debugger-frame-number): Skip local vars when present.
14128         (debugger--locals-visible-p, debugger--insert-locals)
14129         (debugger--show-locals, debugger--hide-locals): New functions.
14131 2013-12-02  Michael Albinus  <michael.albinus@gmx.de>
14133         * net/tramp-sh.el (tramp-remote-process-environment): Do not set
14134         "LC_ALL".
14135         (tramp-get-remote-locale): New defun.
14136         (tramp-open-connection-setup-interactive-shell): Use it.
14138 2013-12-02  Leo Liu  <sdl.web@gmail.com>
14140         * subr.el (process-live-p): Return nil for non-process.  (Bug#16023)
14142         * progmodes/sh-script.el (sh-shell-process):
14143         * progmodes/octave.el (inferior-octave-process-live-p):
14144         * progmodes/gdb-mi.el (gdb-delchar-or-quit)
14145         (gdb-inferior-io-sentinel):
14146         * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
14148 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
14150         * vc/log-edit.el (log-edit-kill-buffer): Move the use of
14151         `save-selected-window' to `log-edit-hide-buf'.  This makes
14152         `log-edit-show-files' idempotent.
14153         (log-edit-show-files): Mark the new window as dedicated.
14155 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
14157         * vc/log-edit.el (log-edit-mode-map): Add binding for
14158         `log-edit-kill-biffer'.
14159         (log-edit-hide-buf): Add a FIXME comment.
14160         (log-edit-add-new-comment): New function, extracted from
14161         `log-edit-done'.
14162         (log-edit-done, log-edit-add-to-changelog): Use it.
14163         (log-edit-kill-buffer): New command.
14165 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14167         * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
14168         instead of killing the buffer.
14170 2013-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
14172         * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
14174 2013-12-01  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
14176         * net/eww.el (eww-form-checkbox-selected-symbol)
14177         (eww-form-checkbox-symbol): New customizable variable.
14178         (eww-form-checkbox, eww-toggle-checkbox):
14179         Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
14181         * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
14182         (shr--get-media-pref, shr--extract-best-source): New function.
14183         (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
14184         no :src tag was specified.
14186         * net/eww.el (eww-use-external-browser-for-content-type): New variable.
14187         (eww-render): Handle `eww-use-external-browser-for-content-type'.
14188         Use \\` to match beginning of string instead of ^.
14189         (eww-browse-with-external-browser): Provide optional URL parameter.
14190         (eww-render): Set `eww-current-title' back to "".
14192         * net/shr.el (shr-tag-video): Display content for video if no
14193         poster is available.
14194         (shr-tag-audio): Add support for <audio> tag.
14196         * net/eww.el (eww-text-input-types): New const.
14197         (eww-process-text-input): Treat input types in
14198         `eww-text-input-types' as text.
14200         * net/shr.el (shr-tag-table): Fix comment typo.
14202 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14204         * net/eww.el (eww-follow-link): New command to avoid reloading
14205         pages when we follow #target links (bug#15243).
14206         (eww-quit): Special mode buffers shouldn't query before exiting.
14208 2013-12-01  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
14210         * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
14211         forms.
14213 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14215         * net/eww.el (eww-restore-history): Update the window title after
14216         moving in the history.
14217         (eww-current-dom): New variable used to save the current DOM.
14219 2013-12-01  Dmitry Gutov  <dgutov@yandex.ru>
14221         * vc/log-edit.el (log-edit-mode-map): Add binding for
14222         `log-edit-beginning-of-line'.
14223         (log-edit-setup-add-author): New user option.
14224         (log-edit-beginning-of-line): New command.
14225         (log-edit): Move major mode call above the contents setup so that
14226         the local variable values are already applied.
14227         (log-edit): Only insert "Author: " when
14228         `log-edit-setup-add-author' is non-nil.
14229         (log-edit): When SETUP is non-nil, position point after ": "
14230         instead of point-min.
14232 2013-12-01  Glenn Morris  <rgm@gnu.org>
14234         * startup.el (command-line): Warn if ~/emacs.d is in load-path.
14236 2013-11-30  Eli Zaretskii  <eliz@gnu.org>
14238         * startup.el (fancy-splash-frame): On MS-Windows, trigger
14239         redisplay to make sure the initial frame gets a chance to become
14240         visible.  (Bug#16014)
14242 2013-11-30  Martin Rudalics  <rudalics@gmx.at>
14244         Support resizing frames and windows pixelwise.
14245         * cus-start.el (frame-resize-pixelwise)
14246         (window-resize-pixelwise): New entries.
14247         * emacs-lisp/debug.el (debug): Use window-total-height instead
14248         of window-total-size.
14249         * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
14250         * help.el (describe-bindings-internal): Use help-buffer as
14251         argument for with-help-window.
14252         (temp-buffer-max-width): New option.
14253         (resize-temp-buffer-window, help-window-setup)
14254         (with-help-window): Rewrite.
14255         * mouse.el (mouse-drag-line): Rewrite.  Add key bindings for
14256         dragging dividers.
14257         * window.el (frame-char-size, window-min-pixel-height)
14258         (window-safe-min-pixel-height, window-safe-min-pixel-width)
14259         (window-min-pixel-width, window-safe-min-pixel-size)
14260         (window-combination-p, window-safe-min-size)
14261         (window-resizable-p, window--size-to-pixel)
14262         (window--pixel-to-size, window--resize-apply-p): New functions.
14263         (window-safe-min-height): Fix doc-string.
14264         (window-size, window-min-size, window--min-size-1)
14265         (window-sizable, window-sizable-p, window--min-delta-1)
14266         (window-min-delta, window--max-delta-1, window-max-delta)
14267         (window--resizable, window--resizable-p, window-resizable)
14268         (window-full-height-p, window-full-width-p, window-at-side-p)
14269         (window--in-direction-2, window-in-direction)
14270         (window--resize-reset-1, window--resize-mini-window)
14271         (window-resize, window-resize-no-error)
14272         (window--resize-child-windows-normal)
14273         (window--resize-child-windows, window--resize-siblings)
14274         (window--resize-this-window, window--resize-root-window)
14275         (window--resize-root-window-vertically)
14276         (adjust-window-trailing-edge, enlarge-window, shrink-window)
14277         (maximize-window, minimize-window, delete-window)
14278         (quit-restore-window, window-split-min-size, split-window)
14279         (balance-windows-2, balance-windows)
14280         (balance-windows-area-adjust, balance-windows-area)
14281         (window--state-get-1, window-state-get, window--state-put-1)
14282         (window--state-put-2, window-state-put)
14283         (display-buffer-record-window, window--display-buffer):
14284         Make functions handle pixelwise sizing of windows.
14285         (display-buffer--action-function-custom-type)
14286         (display-buffer-fallback-action):
14287         Add display-buffer-in-previous-window.
14288         (display-buffer-use-some-window): Resize window to height it had
14289         before.
14290         (fit-window-to-buffer-horizontally): New option.
14291         (fit-frame-to-buffer): Describe new values.
14292         (fit-frame-to-buffer-bottom-margin): Replace with
14293         fit-frame-to-buffer-margins.
14294         (window--sanitize-margin): New function.
14295         (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
14296         using window-text-pixel-size.
14298 2013-11-30  Glenn Morris  <rgm@gnu.org>
14300         * emacs-lisp/bytecomp.el (byte-compile-form):
14301         Make the `interactive-only' warning like the `obsolete' one.
14302         * comint.el (comint-run):
14303         * files.el (insert-file-literally, insert-file):
14304         * replace.el (replace-string, replace-regexp):
14305         * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
14306         (goto-line, insert-buffer, next-line, previous-line):
14307         Tweak `interactive-only' spec.
14309         Stop keeping (most) generated cedet grammar files in the repository.
14310         * Makefile.in (semantic): New.
14311         (compile-main): Depend on semantic.
14313 2013-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14315         * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
14316         available.  Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
14318         * uniquify.el (uniquify-buffer-name-style): Change default.
14320         * loadup.el: Preload "uniquify".
14322         * time.el (display-time-update): Update all mode lines (bug#15999).
14324         * electric.el (electric-indent-mode): Enable by default.
14325         * loadup.el: Preload "electric".
14327 2013-11-29  Bozhidar Batsov  <bozhidar@batsov.com>
14329         * emacs-lisp/helpers.el (string-empty-p): New function.
14330         (string-blank-p): New function.
14332 2013-11-29  Andreas Politz  <politza@hochschule-trier.de>
14334         * imenu.el (imenu--index-alist): Add missing dot to the docstring
14335         (Bug#14029).
14337 2013-11-29  Andreas Politz  <politza@fh-trier.de>
14338         * imenu.el (imenu--subalist-p): Don't error on non-conses and
14339         allow non-lambda lists as functions.
14340         (imenu--in-alist): Don't recurse into non-subalists.
14341         (imenu): Don't pass function itself as an argument (Bug#14029).
14343 2013-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14345         * progmodes/python.el (python-mode-map): Remove binding for ":".
14346         (python-indent-electric-colon): Remove command.
14347         (python-indent-post-self-insert-function): Integrate the previous code
14348         of python-indent-electric-colon.  Make it conditional on
14349         electric-indent-mode.
14350         (python-mode): Add ?: to electric-indent-chars.
14351         Move python-indent-post-self-insert-function to the end of
14352         post-self-insert-hook.
14354 2013-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14356         * doc-view.el (doc-view-goto-page): Update mode-line.
14358         * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
14360 2013-11-27  Glenn Morris  <rgm@gnu.org>
14362         * international/charprop.el, international/uni-bidi.el:
14363         * international/uni-category.el, international/uni-combining.el:
14364         * international/uni-comment.el, international/uni-decimal.el:
14365         * international/uni-decomposition.el, international/uni-digit.el:
14366         * international/uni-lowercase.el, international/uni-mirrored.el:
14367         * international/uni-name.el, international/uni-numeric.el:
14368         * international/uni-old-name.el, international/uni-titlecase.el:
14369         * international/uni-uppercase.el:
14370         Remove generated files from VCS repository.
14372 2013-11-27  Eli Zaretskii  <eliz@gnu.org>
14374         * filenotify.el (file-notify-add-watch): Don't special-case
14375         w32notify when computing the directory to watch.
14377 2013-11-27  Glenn Morris  <rgm@gnu.org>
14379         Make bootstrap without generated uni-*.el files possible again.
14380         * loadup.el: Update command-line-args checking for unidata-gen.
14381         Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
14382         * composite.el, international/characters.el:
14383         Handle unicode tables being undefined.
14385         Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
14386         * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
14387         (compile-main): Depend on leim rule.
14388         (leim): New rule.
14389         * loadup.el: Move leim-list.el to leim/ subdirectory.
14390         * startup.el (normal-top-level): No more leim directory.
14391         * international/ja-dic-cnv.el (skkdic-convert):
14392         Disable version-control and autoloads in output files.
14393         * international/titdic-cnv.el (titdic-convert, miscdic-convert):
14394         Disable version-control and autoloads in output files.
14395         * leim/quail: Move here from ../leim.
14396         * leim/quail/hangul.el (hangul-input-method-activate):
14397         Add autoload cookie.
14398         (generated-autoload-load-name): Set file-local value.
14399         * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
14400         (generated-autoload-load-name): Set file-local value.
14402 2013-11-26  Kenjiro NAKAYAMA  <knakayam@redhat.com>
14404         * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
14405         (eww-add-bookmark): Ask confirmation when add to bookmarks.
14406         (eww-quit): Ask confirmation before quitting eww.
14408 2013-11-26  Eli Zaretskii  <eliz@gnu.org>
14410         * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
14411         reading output from Diff on MS-Windows and MS-DOS.
14413 2013-11-26  Bozhidar Batsov  <bozhidar@batsov.com>
14415         * emacs-lisp/helpers.el (string-reverse): New function.
14417 2013-11-26  Michael Albinus  <michael.albinus@gmx.de>
14419         * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
14420         names on MS Windows, like "/[::1]:".
14422         * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
14423         SWITCHES.
14425 2013-11-26  Glenn Morris  <rgm@gnu.org>
14427         * progmodes/python.el (python-indent-guess-indent-offset):
14428         Avoid corner-case error.  (Bug#15975)
14430         Preload leim-list.el.  (Bug#4789)
14431         * loadup.el: Load leim-list.el when found.
14432         * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
14434 2013-11-25  Bozhidar Batsov  <bozhidar@batsov.com>
14436         * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
14438         * emacs-lisp/helpers.el (string-join): New function.
14440 2013-11-25  Sebastian Wiesner  <lunaryorn@gmail.com>  (tiny change)
14442         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
14443         Mark as obsolete and replace it with a symbol property.
14444         (byte-compile-form): Use new 'interactive-only property.
14445         * comint.el, files.el, replace.el, simple.el:
14446         Apply new 'interactive-only properly.
14448 2013-11-25  Martin Rudalics  <rudalics@gmx.at>
14450         * window.el (display-buffer-at-bottom): Make sure that
14451         split-window-sensibly creates the new window on bottom
14452         (Bug#15961).
14454 2013-11-23  David Kastrup  <dak@gnu.org>
14456         * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
14457         on the conflict markers when available.
14458         (smerge--get-marker): New function.
14459         (smerge-end-re, smerge-base-re): Add subgroup.
14461 2013-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
14463         * frame.el (handle-focus-in, handle-focus-out): Add missing
14464         interactive spec.
14466 2013-11-25  Michael Albinus  <michael.albinus@gmx.de>
14468         * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
14469         `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
14471 2013-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
14473         * play/gomoku.el: Don't use intangible property.  Use lexical-binding.
14474         (gomoku--last-pos): New var.
14475         (gomoku--intangible-chars): New const.
14476         (gomoku--intangible): New function.
14477         (gomoku-mode): Use it.  Derive from special-mode.
14478         (gomoku-move-up): Adjust line count.
14479         (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
14480         (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
14481         Simplify accordingly.
14483         * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
14484         Remove blink-cursor code.
14485         (blink-cursor-timer-function, blink-cursor-suspend):
14486         Don't special-case GUIs.
14487         (blink-cursor-mode): Use focus-in/out-hook.
14489 2013-11-25  Dmitry Gutov  <dgutov@yandex.ru>
14491         * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
14492         work when annotation is invisible (Bug#13886).
14494 2013-11-24  Simon Schubert  <2@0x2c.org>  (tiny change)
14496         * json.el (json-alist-p): Only return non-nil if the alist has
14497         simple keys (Bug#13518).
14499 2013-11-24  Mihir Rege  <mihirrege@gmail.com>  (tiny change)
14501         * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
14502         when control-statement is the first statement in a buffer (Bug#15956).
14504 2013-11-24  Dmitry Gutov  <dgutov@yandex.ru>
14506         * imenu.el (imenu-generic-skip-comments-and-strings):
14507         New option (Bug#15560).
14508         (imenu--generic-function): Use it.
14510 2013-11-24  Jorgen Schaefer  <contact@jorgenschaefer.de>
14512         * minibuffer.el (completion--in-region-1): Scroll the correct window.
14513         (Bug#13898)
14515 2013-11-24  Bozhidar Batsov  <bozhidar@batsov.com>
14517         * emacs-lisp/helpers.el: Add some string helpers.
14518         (string-trim-left): Removes leading whitespace.
14519         (string-trim-right): Removes trailing whitespace.
14520         (string-trim): Removes leading and trailing whitespace.
14522         * subr.el (string-suffix-p): New function.
14524 2013-11-23  Glenn Morris  <rgm@gnu.org>
14526         * progmodes/python.el (python-shell-send-file):
14527         Add option to delete file when done.  (Bug#15647)
14528         (python-shell-send-string, python-shell-send-region): Use it.
14530 2013-11-23  Ivan Shmakov  <ivan@siamics.net>
14532         * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
14533         to set buffer-read-only to t, never to nil.  (Bug#15938)
14535         * textmodes/tex-mode.el (latex-noindent-environments):
14536         Add safe-local-variable property.  (Bug#15936)
14538 2013-11-23  Glenn Morris  <rgm@gnu.org>
14540         * textmodes/enriched.el (enriched-mode): Doc fix.
14541         * emacs-lisp/authors.el (authors-renamed-files-alist):
14542         Add enriched.doc -> enriched.txt.
14544         * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
14546 2013-11-22  Leo Liu  <sdl.web@gmail.com>
14548         * progmodes/octave.el (inferior-octave-startup): Spit out error
14549         message.
14551 2013-11-22  Bozhidar Batsov  <bozhidar@batsov.com>
14553         * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
14554         Improve docstring.
14555         Add :version.
14556         (ruby-encoding-magic-comment-style): Add :version.
14558 2013-11-22  Leo Liu  <sdl.web@gmail.com>
14560         * progmodes/octave.el (octave-operator-regexp): Exclude newline.
14561         (Bug#15076)
14562         (octave-help-mode): Adapt to change to help-mode-finish to use
14563         derived-mode-p on 2013-09-17.
14564         (inferior-octave-prompt): Also match octave-gui.
14565         (octave-kill-process): Don't ask twice.  (Bug#10564)
14567 2013-11-22  Leo Liu  <sdl.web@gmail.com>
14569         * progmodes/octave.el (inferior-octave-process-live-p): New helper.
14570         (inferior-octave-startup, inferior-octave-check-process)
14571         (inferior-octave-track-window-width-change)
14572         (octave-completion-at-point, octave-eldoc-function): Use it.
14573         (octave-kill-process): Provide confirmation.  (Bug#10564)
14575 2013-11-21  Leo Liu  <sdl.web@gmail.com>
14577         * progmodes/octave.el (octave-mode, inferior-octave-mode):
14578         Fix obsolete variable comment-use-global-state.
14580 2013-11-21  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
14582         * progmodes/octave.el (octave-mode-map, octave-mode-menu):
14583         Add `octave-source-file'.
14584         (octave-source-file): New function.  (Bug#15935)
14586 2013-11-21  Kenjiro Nakayama  <nakayamakenjiro@gmail.com>
14588         * net/eww.el (eww-local-regex): New variable.
14589         (eww): Use it to detect localhost and similar.
14591 2013-11-21  Leo Liu  <sdl.web@gmail.com>
14593         Add completion for command `ag'.
14594         * pcmpl-x.el (pcmpl-x-ag-options): New variable.
14595         (pcomplete/ag): New function.
14596         (pcmpl-x-ag-options): New function.  Handle `[no]' in long options.
14598 2013-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
14600         * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
14601         (bug#14646).
14602         (make-obsolete): Remove interactive spec.
14604 2013-11-21  Glenn Morris  <rgm@gnu.org>
14606         * startup.el (command-line-1): Use path-separator with -L.
14608 2013-11-20  Teodor Zlatanov  <tzz@lifelogs.com>
14610         * emacs-lisp/package.el (describe-package-1): Add package archive
14611         to shown fields.
14613 2013-11-20  Bozhidar Batsov  <bozhidar@batsov.com>
14615         * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
14616         Change default to "# encoding: %s" to differentiate it from the
14617         default Ruby encoding comment template.
14619 2013-11-20  Era Eriksson  <era+emacsbugs@iki.fi>
14621         * ses.el (ses-mode): Doc fix.  (Bug#14748)
14623 2013-11-20  Leo Liu  <sdl.web@gmail.com>
14625         * window.el (display-buffer-alist): Doc fix.  (Bug#13594)
14627 2013-11-19  Dan Nicolaescu  <dann@gnu.org>
14629         * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
14630         when rebase or bisect are in progress.
14632 2013-11-19  Xue Fuqiao  <xfq.free@gmail.com>
14634         * filenotify.el (file-notify-add-watch): Doc fix.
14636 2013-11-19  Leo Liu  <sdl.web@gmail.com>
14638         * obsolete/rcompile.el: Mark obsolete.
14640         * progmodes/compile.el (compilation-start)
14641         (compilation-goto-locus, compilation-find-file):
14642         Pass no-display-ok and handle nil value from display-buffer.
14643         (Bug#13594)
14645         * window.el (display-buffer-alist, display-buffer): Document the
14646         new parameter no-display-ok.  Return either a window or nil
14647         but never a non-window value.
14649 2013-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
14651         * electric.el (electric-indent-mode-map): Remove.
14652         (electric-indent-mode): Change the global-map instead (bug#15915).
14654         * textmodes/text-mode.el (paragraph-indent-minor-mode):
14655         Use add-function.
14657 2013-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
14659         * emacs-lisp/nadvice.el (remove-function): Align with
14660         add-function's behavior.
14662         * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
14663         (gdb--string-regexp): New constant.
14664         (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
14665         (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
14666         (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
14667         submatch 1.
14668         (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
14669         Adjust use accordingly.
14670         (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
14672 2013-11-17  Adam Sokolnicki  <adam.sokolnicki@gmail.com>  (tiny change)
14674         * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
14675         interpolation curlies (Bug#15914).
14677 2013-11-17  Jay Belanger  <jay.p.belanger@gmail.com>
14679         * calc/calc.el (calc-context-sensitive-enter): New variable.
14680         (calc-enter): Use `calc-context-sensitive-enter'.
14682 2013-11-16  Teodor Zlatanov  <tzz@lifelogs.com>
14684         * progmodes/cfengine.el: Version bump.
14685         (cfengine-cf-promises): New defcustom to locate cf-promises.
14686         (cfengine3-vartypes): Add new "data" type.
14687         (cfengine3--current-word): New function to get current name-like
14688         word or its bounds.
14689         (cfengine3--current-function): New function to look up a CFEngine
14690         function's definition.
14691         (cfengine3-format-function-docstring): New function.
14692         (cfengine3-make-syntax-cache): New function.
14693         (cfengine3-documentation-function): New function: ElDoc glue.
14694         (cfengine3-completion-function): New function: completion glue.
14695         (cfengine3-mode): Set `compile-command',
14696         `eldoc-documentation-function', and add to
14697         `completion-at-point-functions'.
14699 2013-11-16  Michael Albinus  <michael.albinus@gmx.de>
14701         * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
14702         `tramp-current-connection'.
14704 2013-11-15  Dmitry Gutov  <dgutov@yandex.ru>
14706         * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
14707         nil/self/true/false with "end of symbol".
14709 2013-11-15  Bozhidar Batsov  <bozhidar@batsov.com>
14711         * subr.el (version-regexp-alist): Fix a typo.
14713 2013-11-15  Michael Albinus  <michael.albinus@gmx.de>
14715         * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
14716         "en_US.utf8" and "LC_CTYPE" to "".
14717         (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
14718         (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
14720 2013-11-15  Leo Liu  <sdl.web@gmail.com>
14722         * loadhist.el (read-feature): Get rid of fake feature nil.  (Bug#15889)
14724 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
14726         * progmodes/gud.el (ctl-x-map):
14727         Remove C-x SPC binding.  (Bug#12342)
14728         (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
14730 2013-11-14  Bozhidar Batsov  <bozhidar@batsov.com>
14732         * subr.el (version-regexp-alist):
14733         Recognize hg, svn and darcs versions as snapshot versions.
14735         * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
14736         'always-utf8 value of `ruby-insert-encoding-magic-comment'.
14737         (ruby--encoding-comment-required-p): Extract from
14738         `ruby-mode-set-encoding'.
14739         (ruby-mode-set-encoding): Add the ability to always insert an
14740         utf-8 encoding comment.  Fix and simplify coding comment update
14741         logic.
14743 2013-11-14  Michael Albinus  <michael.albinus@gmx.de>
14745         * net/tramp-gvfs.el (top): Run init code only when
14746         `tramp-gvfs-enabled' is not nil.
14747         (tramp-gvfs-enabled): Check also :system bus.
14749 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
14751         Sync with upstream verilog-mode revision 78e66ba.
14752         * progmodes/verilog-mode.el (verilog-end-of-defun)
14753         (verilog-type-completion, verilog-get-list): Remove unused funcs.
14754         (verilog-get-end-of-defun): Remove unused argument.
14755         (verilog-comment-depth): Remove unused local `e'.
14756         (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
14757         Don't pass arg to verilog-get-end-of-defun.
14759 2013-11-14  Glenn Morris  <rgm@gnu.org>
14761         * obsolete/assoc.el (aget): Prefix dynamic variable.
14763         * allout-widgets.el (allout-widgets): No need to autoload defgroup.
14765 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
14767         * widget.el, hfy-cmap.el: Remove bogus package version number.
14769 2013-11-13  Glenn Morris  <rgm@gnu.org>
14771         * replace.el (replace-eval-replacement):
14772         Try to give more helpful error message.  (Bug#15836)
14774         * arc-mode.el (archive-7z-extract, archive-7z-expunge)
14775         (archive-7z-update): Avoid custom type mismatches.
14777         * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
14779 2013-11-13  Michael Albinus  <michael.albinus@gmx.de>
14781         * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
14782         address can be empty.
14784         * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
14785         Accept nil SWITCHES.
14786         (tramp-gvfs-handle-write-region): Implement APPEND.
14788 2013-11-12  Dmitry Gutov  <dgutov@yandex.ru>
14790         * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
14791         binary "|" operator and closing block args delimiter.
14792         Remove FIXME comment referring to Ruby 1.8-only syntax.
14793         (ruby-smie--implicit-semi-p): Not after "|" operator.
14794         (ruby-smie--closing-pipe-p): New function.
14795         (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
14796         (ruby-smie-rules): Indent after "|".
14798 2013-11-12  Glenn Morris  <rgm@gnu.org>
14800         * ps-print.el (ps-face-attribute-list):
14801         Handle anonymous faces.  (Bug#15827)
14803 2013-11-12  Martin Rudalics  <rudalics@gmx.at>
14805         * window.el (display-buffer-other-frame): Fix doc-string.
14806         (Bug#15868)
14808 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14810         * subr.el (force-mode-line-update): Delete, move to buffer.c.
14812 2013-11-11  Michael Albinus  <michael.albinus@gmx.de>
14814         * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
14815         (tramp-sh-handle-file-local-copy): Don't write a message when
14816         saving temporary files.
14818         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
14819         both directories are remote.
14820         (tramp-smb-handle-directory-files): Do not return double entries.
14821         Do not expand full file names.
14822         (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
14823         (tramp-smb-handle-write-region): Implement APPEND.
14824         (tramp-smb-get-stat-capability): Fix a stupid bug.
14826 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14828         * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
14830 2013-11-11  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
14832         * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
14833         throwing error over malformed let/let* (bug#15814).
14835 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14837         * iswitchb.el (iswitchb-mode): Mark obsolete.
14839 2013-11-11  Glenn Morris  <rgm@gnu.org>
14841         * international/uni-bidi.el, international/uni-category.el:
14842         * international/uni-name.el, international/uni-numeric.el:
14843         Regenerate for Unicode 6.3.0.
14845 2013-11-10  Michael Albinus  <michael.albinus@gmx.de>
14847         * net/tramp.el (tramp-methods):
14848         * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
14849         2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
14851 2013-11-09  Andreas Schwab  <schwab@linux-m68k.org>
14853         * progmodes/sh-script.el (sh-font-lock-keywords-var):
14854         Force highlighting text after Summary keyword in doc face for rpm.
14856 2013-11-09  Dmitry Gutov  <dgutov@yandex.ru>
14858         * textmodes/ispell.el (ispell-lookup-words): When `look' is not
14859         available and the word has no wildcards, append one to the grep pattern.
14860         http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
14861         (ispell-complete-word): Call `ispell-lookup-words' with the value
14862         independent of `ispell-look-p'.
14864 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
14866         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
14867         Not after "||".
14868         (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
14869         their parent.
14871 2013-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
14873         * progmodes/ruby-mode.el: Don't require cl any more.  Use pcase instead.
14874         (ruby-font-lock-keywords): Use backquote.
14876 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
14878         * progmodes/ruby-mode.el (ruby-smie--forward-token)
14879         (ruby-smie--backward-token): Only consider full-string matches.
14881 2013-11-08  Jan Djärv  <jan.h.d@swipnet.se>
14883         * faces.el (describe-face): Add distant-foreground.
14885 2013-11-08  Bozhidar Batsov  <bozhidar@batsov.com>
14887         * progmodes/ruby-mode.el: Improve encoding comment handling.
14888         (ruby-encoding-magic-comment-style): New option.
14889         (ruby-custom-encoding-magic-comment-template): New option.
14890         (ruby--insert-coding-comment, ruby--detect-encoding):
14891         New functions extracted from `ruby-mode-set-encoding'.
14892         (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
14893         to control the style of the auto-inserted encoding comment.
14895 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
14897         * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
14898         Use `smie-backward-sexp' with token argument.
14900 2013-11-08  Michael Albinus  <michael.albinus@gmx.de>
14902         * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
14903         Remove instrumentation code.
14905 2013-11-08  Glenn Morris  <rgm@gnu.org>
14907         * progmodes/autoconf.el (autoconf-mode):
14908         Tweak comment-start-skip.  (Bug#15822)
14910 2013-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
14912         * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
14913         at bobp (bug#15826).
14914         (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
14916 2013-11-08  Darren Hoo  <darren.hoo@gmail.com>
14918         * man.el (Man-start-calling): New macro, extracted from
14919         Man-getpage-in-background.
14920         (Man-getpage-in-background): Use it.
14921         (Man-update-manpage): New command.
14922         (Man-mode-map): Bind it.
14924 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
14926         * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
14927         of "and", "or", "&&" and "||".
14928         (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
14929         argument.  Prohibit opening curly brace because it could only be a
14930         block opener in that position.
14931         (ruby-smie--forward-token, ruby-smie--backward-token):
14932         Separate "|" from "&" or "*" going after it.  That can happen in block
14933         arguments.
14934         (ruby-smie--indent-to-stmt): New function, seeks the end of
14935         previous statement or beginning of buffer.
14936         (ruby-smie-rules): Use it.
14937         (ruby-smie-rules): Check if there's a ":" before a curly block
14938         opener candidate; if there is, it's a hash.
14940 2013-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
14942         * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
14943         (cl--block-wrapper): Fix last accidental change.
14945 2013-11-07  Michael Albinus  <michael.albinus@gmx.de>
14947         * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
14948         Instrument, in order to hunt failure on hydra.
14950 2013-11-05  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
14952         * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
14953         malformed bindings form (bug#15814).
14955 2013-11-07  Dmitry Gutov  <dgutov@yandex.ru>
14957         * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
14958         "." compared to " @ ".  This incidentally fixes some indentation
14959         examples with "do".
14960         (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
14961         (ruby-smie-grammar): New tokens: "and" and "or".
14962         (ruby-smie--args-separator-p): Fix the check for tokens at POS.
14963         Exclude "and" and "or".  Remove "do" in order to work around token
14964         priorities.
14965         (ruby-smie-rules): Add all infix tokens.  Handle the case of
14966         beginning-of-buffer.
14968 2013-11-06  Glenn Morris  <rgm@gnu.org>
14970         * Makefile.in (setwins_almost, setwins_for_subdirs):
14971         Avoid accidental matches.
14973 2013-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
14975         * menu-bar.el (popup-menu): Use key-binding.
14977 2013-11-06  Eli Zaretskii  <eliz@gnu.org>
14979         * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
14980         menus, support also the menus produced by minor modes.
14981         (Bug#15817)
14983 2013-11-06  Leo Liu  <sdl.web@gmail.com>
14985         * thingatpt.el (thing-at-point-looking-at): Add optional arg
14986         DISTANCE to bound the search.  All uses changed.  (Bug#15808)
14988 2013-11-06  Glenn Morris  <rgm@gnu.org>
14990         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
14991         (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
14992         (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
14994 2013-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
14996         * electric.el (electric-indent-just-newline): New command.
14997         (electric-indent-mode-map): New keymap.
14998         (electric-indent-mode, electric-pair-mode, electric-layout-mode):
14999         Re-add :group which weren't redundant.
15001         * electric.el (electric-indent-local-mode): New minor mode.
15002         (electric-indent-functions-without-reindent): New var.
15003         (electric-indent-post-self-insert-function): Use it.
15004         * emacs-lisp/gv.el (buffer-local-value): Add setter.
15006 2013-11-05  Eli Zaretskii  <eliz@gnu.org>
15008         * international/quail.el (quail-help): Be more explicit about the
15009         meaning of the labels shown on the keys.  (Bug#15800)
15011         * startup.el (normal-top-level): Load the subdirs.el files before
15012         setting the locale environment.  (Bug#15805)
15014 2013-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15016         * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
15017         via arguments so as to get the right ones (bug#15418).
15019         * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
15021 2013-11-05  Michael Albinus  <michael.albinus@gmx.de>
15023         Fix problems found while writing a test suite.
15025         * net/tramp-compat.el (tramp-compat-load): New defun.
15026         * net/tramp.el (tramp-handle-load): Use it.
15028         * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
15029         "(numberp ok-if-already-exists)" correctly.
15031 2013-11-05  Xue Fuqiao  <xfq.free@gmail.com>
15033         * international/characters.el (glyphless-char-display-control):
15034         Add usage note.
15036 2013-11-05  Bozhidar Batsov  <bozhidar@batsov.com>
15038         * progmodes/python.el (python-mode):
15039         * progmodes/scheme.el (scheme-mode):
15040         * progmodes/prolog.el (prolog-mode):
15041         * progmodes/ruby-mode.el (ruby-mode):
15042         * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
15043         (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
15045 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
15047         * rect.el (rectangle--highlight-for-redisplay):
15048         * emacs-lisp/smie.el (smie--next-indent-change):
15049         Use buffer-chars-modified-tick.
15051         * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
15053         * electric.el (electric-indent-post-self-insert-function):
15054         Only delete trailing whitepsace if it is indeed trailing (bug#15767).
15056 2013-11-04  Helmut Eller  <eller.helmut@gmail.com>
15058         * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
15060 2013-11-04  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
15062         * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
15063         (bug#15786).
15065 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
15067         * emacs-lisp/helpers.el: Move from helpers.el.  Use lexical-binding.
15069         * progmodes/python.el: Fix up last change.
15070         (python-shell--save-temp-file): New function.
15071         (python-shell-send-string): Use it.  Remove `msg' arg.  Don't assume
15072         `string' comes from the current buffer.
15073         (python-shell-send-string-no-output): Remove `msg' arg.
15074         (python--use-fake-loc): New var.
15075         (python-shell-buffer-substring): Obey it.  Try to compensate for the
15076         extra coding line added by python-shell--save-temp-file.
15077         (python-shell-send-region): Use python-shell--save-temp-file and
15078         python-shell-send-file directly.  Add `nomain' argument.
15079         (python-shell-send-buffer): Use python-shell-send-region.
15080         (python-electric-pair-string-delimiter): New function.
15081         (python-mode): Use it.
15083 2013-11-04  Eli Zaretskii  <eliz@gnu.org>
15085         * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
15086         eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
15087         environment and decoding all of the default-directory's to here
15088         from command-line.
15089         (command-line): Decode also argv[0].
15091         * loadup.el: Error out if default-directory is a multibyte string
15092         when we are dumping.
15094         * Makefile.in (emacs): Don't set LC_ALL=C.  (Bug#15260)
15096 2013-11-04  Teodor Zlatanov  <tzz@lifelogs.com>
15098         * emacs-lisp/package.el (package-menu-mode)
15099         (package-menu--print-info, package-menu--archive-predicate):
15100         Add Archive column to package list.
15102 2013-11-04  Michael Albinus  <michael.albinus@gmx.de>
15104         Fix problems found while writing a test suite.
15106         * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
15107         (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
15108         (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
15109         to nil when running original file name handler.  Otherwise,
15110         there are problems with constructs like "$$FOO".
15112         * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
15113         for `localname'.
15115 2013-11-04  Bozhidar Batsov  <bozhidar@batsov.com>
15117         * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
15119         * subr.el (version<, version<=, version=):
15120         Update docstrings with information for snapshot versions.
15122         * helpers.el: New library for misc helper functions.
15123         (hash-table-keys): New function returning a list of hash keys.
15124         (hash-table-values): New function returning a list of hash values.
15126 2013-11-04  Dmitry Gutov  <dgutov@yandex.ru>
15128         * progmodes/ruby-mode.el (ruby-smie--forward-token)
15129         (ruby-smie--backward-token): Tokenize heredocs as semicolons.
15131 2013-11-04  Michal Nazarewicz  <mina86@mina86.com>
15133         * textmodes/fill.el (fill-single-char-nobreak-p): New function
15134         checking whether point is after a 1-letter word.
15136 2013-11-04  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
15138         * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
15139         Don't infloop when expanding region over `multiline' syntax-type that
15140         begins a line (bug#15778).
15142 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
15144         * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
15145         Make it into a proper minor mode.
15146         (rectangle--region): (Implicitly) rename to rectangle-mark-mode.
15147         (rectangle-mark-mode-map): New keymap.
15148         (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
15150 2013-11-04  Glenn Morris  <rgm@gnu.org>
15152         * startup.el (command-line-1): Allow `-L :...' to append to load-path.
15154 2013-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15156         * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
15157         (ruby-smie-rules): Use smie-rule-parent instead.
15159         * emacs-lisp/smie.el (smie-rule-parent): Always call
15160         smie-indent-virtual rather than only for hanging tokens.
15161         (smie--next-indent-change): New helper command.
15163 2013-11-03  Glenn Morris  <rgm@gnu.org>
15165         * Makefile.in (abs_srcdir): Remove.
15166         (emacs): Unset EMACSLOADPATH.
15168 2013-11-02  Glenn Morris  <rgm@gnu.org>
15170         * Makefile.in (EMACS): Use a relative filename.
15171         (abs_top_builddir): Remove.
15172         (custom-deps, finder-data, autoloads): Use --chdir.
15174         * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
15176         Use relative filenames in TAGS files.
15177         * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
15178         (lisptagsfiles4, TAGS): Use relative file names.
15179         (TAGS-LISP): Remove.
15180         (maintainer-clean): No more TAGS-LISP file.
15182         * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
15183         (lisptagsfiles4): Use absolute filenames again.
15184         (TAGS, TAGS-LISP): Not everything needs to run in one line.
15185         Remove all *loaddefs files, not just the first.  Remove esh-groups.
15186         (maintainer-clean): Delete TAGS, TAGS-LISP.
15188 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
15190         * emacs-lisp/package.el (package-version-join):
15191         Recognize snapshot versions.
15193 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
15195         * subr.el (version-regexp-alist): Add support for snapshot versions.
15197 2013-11-02  Dmitry Gutov  <dgutov@yandex.ru>
15199         * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
15200         New function, replacement for `smie-rule-parent' for when we want to
15201         skip over our direct parent if it's an assignment token..
15202         (ruby-smie-rules): Use it.
15204 2013-11-02  Dmitry Gutov  <dgutov@yandex.ru>
15206         * progmodes/ruby-mode.el: Use `syntax-propertize-function'
15207         unconditionally.  Remove now unnecessary forward declarations.
15208         Remove XEmacs-specific setup.
15209         (ruby-here-doc-end-re, ruby-here-doc-beg-match)
15210         (ruby-font-lock-syntactic-keywords)
15211         (ruby-comment-beg-syntax, ruby-in-here-doc-p)
15212         (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
15213         (ruby-here-doc-end-syntax): Remove.
15214         (ruby-mode): Don't check whether `syntax-propertize-rules' is
15215         defined as function.
15217 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
15219         * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
15221 2013-11-01  Bozhidar Batsov  <bozhidar@batsov.com>
15223         * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
15224         table and abbrev table, `define-derived-mode' does that for us
15225         anyway.
15227 2013-11-01  Glenn Morris  <rgm@gnu.org>
15229         * Makefile.in: Remove manual mh-e dependencies (writing .elc
15230         files is atomic for some time, so no parallel compilation issues).
15232 2013-11-01  Jan Djärv  <jan.h.d@swipnet.se>
15234         * faces.el (face-x-resources): Add :distant-foreground.
15235         (region): Use :distant-foreground for gtk and ns.
15237 2013-11-01  Tassilo Horn  <tsdh@gnu.org>
15239         Allow multiple bibliographies when BibLaTeX is used rather than
15240         BibTeX.
15241         * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
15242         (reftex-locate-bibliography-files): Us it.
15244 2013-11-01  Claudio Bley  <claudio.bley@googlemail.com>
15246         * image.el (image-type-header-regexps): Fix the 'pbm' part to
15247         allow comments in pbm files.
15249         * term/w32-win.el (dynamic-library-alist): Support newer versions
15250         of libjpeg starting with v7: look only for the DLL from the
15251         version against which Emacs was built.
15252         Support versions of libpng beyond 1.4.x.
15253         Support libtiff v4.x.
15255 2013-11-01  Bozhidar Batsov  <bozhidar@batsov.com>
15257         * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
15258         (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
15259         Add property :safe.
15260         (ruby-deep-arglist): Add property :type.
15262 2013-10-31  Glenn Morris  <rgm@gnu.org>
15264         * Makefile.in (custom-deps, finder-data): No need to setq the target
15265         variables, we are in the right directory and the defaults work fine.
15267 2013-10-30  Glenn Morris  <rgm@gnu.org>
15269         * Makefile.in (autoloads): Do not use abs_lisp.
15271         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
15272         `newline' does not respect `standard-output', so use `princ'.
15274 2013-10-30  Alp Aker  <alp.tekin.aker@gmail.com>
15276         Ensure unmarking in buffer menu clears 'S' marks.  (Bug#15761)
15277         * buff-menu.el (Buffer-menu--unmark): New function.
15278         (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
15280 2013-10-30  Glenn Morris  <rgm@gnu.org>
15282         * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
15284         * emacs-lisp/package.el (lm-homepage): Declare.
15286         * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
15287         Fix doc typos.
15289         * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
15291         * Makefile.in (finder-data, autoloads, update-subdirs)
15292         (compile-main, compile-clean, compile-always, bootstrap-clean):
15293         Check return value of cd.
15294         (compile-calc): Remove.
15296 2013-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
15298         * simple.el (copy-region-as-kill): Fix call to region-extract-function.
15300         * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
15301         (byte-compile-and-folded): New function.
15302         (=, <, >, <=, >=): Use it.
15304         * dos-w32.el (minibuffer-history-case-insensitive-variables)
15305         (path-separator, null-device, buffer-file-coding-system)
15306         (lpr-headers-switches): Check system-type before modifying them.
15307         (find-buffer-file-type-coding-system): Mark obsolete.
15308         (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
15309         find-file-not-found-set-buffer-file-coding-system.
15310         (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
15311         (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
15312         (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
15313         (w32-direct-print-region-helper, w32-direct-print-region-function)
15314         (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
15315         * startup.el (normal-top-level-add-subdirs-to-load-path):
15316         * ps-print.el (ps-print-region-function):
15317         * lpr.el (print-region-function): Use new name.
15319         * subr.el (custom-declare-variable-early): Remove function.
15320         (custom-declare-variable-list): Remove var.
15321         (error, user-error): Remove `while' loop.
15322         (read-quoted-char-radix, read-quoted-char): Move to simple.el.
15323         (user-emacs-directory-warning, locate-user-emacs-file):
15324         Move to files.el.
15325         * simple.el (read-quoted-char-radix, read-quoted-char):
15326         * files.el (user-emacs-directory-warning, locate-user-emacs-file):
15327         Move from subr.el.
15328         * custom.el (custom-declare-variable-list): Don't process
15329         custom-declare-variable-list.
15331         * progmodes/python.el (python-shell-get-buffer): New function.
15332         (python-shell-get-process): Use it.
15333         (python-shell-send-string): Always use utf-8 and add a cookie to tell
15334         Python which encoding was used.  Don't split-string since we only care
15335         about the first line.  Return the temp-file, if applicable.
15336         (python-shell-send-region): Tell compile.el how to turn locations in
15337         the temp-file into locations in the source buffer.
15339 2013-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
15341         * subr.el (undefined): Add missing behavior from the C code for
15342         unbound keys.
15344         * rect.el: Use lexical-binding.  Add new rectangular region support.
15345         (rectangle-mark): New command.
15346         (rectangle--region): New var.
15347         (deactivate-mark-hook): Reset rectangle--region.
15348         (rectangle--extract-region, rectangle--insert-for-yank)
15349         (rectangle--highlight-for-redisplay)
15350         (rectangle--unhighlight-for-redisplay): New functions.
15351         (region-extract-function, redisplay-unhighlight-region-function)
15352         (redisplay-highlight-region-function): Use them to handle
15353         rectangular region.
15354         * simple.el (region-extract-function): New var.
15355         (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
15356         (kill-new, kill-append): Remove obsolete `yank-handler' argument.
15357         (kill-region): Replace obsolete `yank-handler' arg with `region'.
15358         (copy-region-as-kill, kill-ring-save): Add `region' argument.
15359         (redisplay-unhighlight-region-function)
15360         (redisplay-highlight-region-function): New vars.
15361         (redisplay--update-region-highlight): New function.
15362         (pre-redisplay-function): Use it.
15363         (exchange-point-and-mark): Don't deactivate the mark before
15364         reactivate-it anyway.
15365         * comint.el (comint-kill-region): Remove yank-handler argument.
15366         * delsel.el (delete-backward-char, backward-delete-char-untabify)
15367         (delete-char): Remove property, since it's now part of their
15368         default behavior.
15369         (self-insert-iso): Remove property since this command doesn't exist.
15371         * emacs-lisp/package.el (package--download-one-archive)
15372         (describe-package-1): Don't query the user about final newline.
15374 2013-10-29  Daniel Colascione  <dancol@dancol.org>
15376         * net/tramp.el (tramp-methods): Document new functionality.
15377         * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
15378         tramp-hostname-checker if method provides one instead of scanning
15379         argument list for "%h" to decide hostname acceptability.
15381 2013-10-28  Michael Albinus  <michael.albinus@gmx.de>
15383         * net/tramp-sh.el (tramp-sh-handle-copy-directory):
15384         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
15385         Handle COPY-CONTENTS.  (Bug#15737)
15387 2013-10-28  Daiki Ueno  <ueno@gnu.org>
15389         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
15390         Document that this option has no effect with GnuPG 2.0 (bug#15552).
15392 2013-10-27  Xue Fuqiao  <xfq.free@gmail.com>
15394         * image.el (defimage, image-load-path): Doc fixes.
15396 2013-10-27  Alan Mackenzie  <acm@muc.de>
15398         Indent statements in macros following "##" correctly.
15399         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
15400         Modify the "#" arm of a cond form to handle "#" and "##" operators.
15402 2013-10-27  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
15404         * linum.el (linum-update-window): Fix boundary test (bug#13446).
15406 2013-10-27  Dmitry Gutov  <dgutov@yandex.ru>
15408         * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
15409         after `=' is probably a new expression.
15411 2013-10-27  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
15413         * man.el (man-imenu-title): New option.
15414         (Man-mode-map): Add menu.  (Bug#15722)
15415         (Man-mode): Add imenu to menu.
15417 2013-10-26  Dmitry Gutov  <dgutov@yandex.ru>
15419         * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
15420         specific in what the first arg can be: a non-keyword word,
15421         string/regexp/percent literal opener, opening paren, or unary
15422         operator followed directly by word.
15424 2013-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
15426         * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
15427         (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
15428         (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
15429         (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
15430         Remove vars, they do not apply any more.
15431         (prolog-mode-abbrev-table): Remove redundant declaration.
15432         (prolog-upper-case-string, prolog-lower-case-string): Remove.
15433         (prolog-use-smie): Remove.
15434         (prolog-smie-rules): Add indentation rule for the if-then-else layout
15435         supported by prolog-electric-if-then-else-flag.
15436         (prolog-mode-variables, prolog-menu): Use setq-local.
15437         (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
15438         Remove binding to `Backspace' since this key doesn't exist anyway.
15439         Remove bindings for electric self-inserting keys.
15440         (prog-mode): Assume it's defined.
15441         (prolog-post-self-insert): New function.
15442         (prolog-mode): Use it.
15443         (prolog-indent-line, prolog-indent-level)
15444         (prolog-find-indent-of-matching-paren)
15445         (prolog-indentation-level-of-line, prolog-goto-comment-column)
15446         (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
15447         (prolog-goto-next-paren, prolog-in-string-or-comment)
15448         (prolog-tokenize, prolog-inside-mline-comment)
15449         (prolog-find-start-of-mline-comment): Remove functions.
15450         (prolog-find-unmatched-paren, prolog-clause-end)
15451         (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
15452         (prolog-electric--if-then-else): Rename from
15453         prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
15454         (prolog-tokenize-searchkey): Remove const.
15455         (prolog-clause-info): Use forward-sexp.
15456         (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
15457         (prolog-electric-if-then-else): Remove commands.
15458         (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
15459         for use in post-self-insert-hook.
15460         (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
15461         for use in post-self-insert-hook.
15462         (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
15463         for use in post-self-insert-hook.
15464         (prolog-electric--underscore): Rename from prolog-electric--underscore;
15465         adapt it for use in post-self-insert-hook.
15467 2013-10-25  Michael Albinus  <michael.albinus@gmx.de>
15469         * emacs-lisp/ert.el (ert-run-tests-interactively):
15470         Use `completing-read'.  (Bug#9756)
15472 2013-10-25  Eli Zaretskii  <eliz@gnu.org>
15474         * simple.el (line-move): Call line-move-1 instead of
15475         line-move-visual when the current window hscroll is zero, but
15476         temporary-goal-column indicates we will need to hscroll as result
15477         of the movement.  (Bug#15712)
15479 2013-10-25  Dmitry Gutov  <dgutov@yandex.ru>
15481         * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
15482         capitalization.  Use :visible instead of :active.
15483         Fix `ruby-indent-exp' reference.  Add menu items for the generic
15484         commands that are used with SMIE.
15485         (ruby-do-end-to-brace): Insert space after `{'.
15487 2013-10-25  John Anthony  <john@jo.hnanthony.com>
15489         * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu.  (Bug#15600)
15491         * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu.  (Bug#15599)
15493 2013-10-25  Glenn Morris  <rgm@gnu.org>
15495         * vc/vc.el (vc-print-log): Don't use a working revision unless
15496         one was explicitly specified.  (Bug#15322)
15498 2013-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
15500         * subr.el (add-to-list): Preserve return value in compiler-macro
15501         (bug#15692).
15503 2013-10-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
15505         * progmodes/octave.el (octave-lookfor): Handle empty lookfor
15506         result.  Ask user to retry using '-all' flag.  (Bug#15701)
15508 2013-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
15510         * emacs-lisp/smie.el: New smie-config system.
15511         (smie-config): New defcustom.
15512         (smie-edebug, smie-config-show-indent, smie-config-set-indent)
15513         (smie-config-guess, smie-config-save): New commands.
15514         (smie-config--mode-local, smie-config--buffer-local)
15515         (smie-config--trace, smie-config--modefuns): New vars.
15516         (smie-config--advice, smie-config--mode-hook)
15517         (smie-config--setter, smie-config-local, smie-config--get-trace)
15518         (smie-config--guess-value, smie-config--guess): New functions.
15519         (smie-indent-forward-token, smie-indent-backward-token): Don't copy
15520         text properties.  Treat "string fence" syntax like string syntax.
15522         * progmodes/sh-script.el (sh-use-smie): Change default.
15523         (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
15524         (sh-var-value): Simplify by CSE.
15525         (sh-show-indent, sh-set-indent, sh-learn-line-indent)
15526         (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
15527         is used.
15528         (sh-guess-basic-offset): Use cl-incf.
15529         (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
15531 2013-10-24  Helmut Eller  <eller.helmut@gmail.com>
15533         * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
15534         (bug#15699).
15536 2013-10-24  Glenn Morris  <rgm@gnu.org>
15538         * Makefile.in (abs_top_srcdir): Remove.
15539         (update-subdirs): Use relative path to update-subdirs.
15541 2013-10-24  Eli Zaretskii  <eliz@gnu.org>
15543         * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
15544         ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
15545         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
15546         Call unmsys--file-name before expand-file-name, not after it.
15548 2013-10-24  Michael Albinus  <michael.albinus@gmx.de>
15550         * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
15551         (ert-test-skipped): New error.
15552         (ert-skip, ert-stats-skipped): New defuns.
15553         (ert--skip-unless): New macro.
15554         (ert-test-skipped): New struct.
15555         (ert--run-test-debugger, ert-test-result-type-p)
15556         (ert-test-result-expected-p, ert--stats, ert-stats-completed)
15557         (ert--stats-set-test-and-result, ert-char-for-test-result)
15558         (ert-string-for-test-result, ert-run-tests-batch)
15559         (ert--results-update-ewoc-hf, ert-run-tests-interactively):
15560         Handle skipped tests.  (Bug#9803)
15562 2013-10-24  Glenn Morris  <rgm@gnu.org>
15564         * Makefile.in (check-declare): Remove unnecessary path in -l argument.
15566         * Makefile.in (abs_top_srcdir): New, set by configure.
15567         (update-subdirs): Correct build-aux location.
15569 2013-10-24  Dmitry Gutov  <dgutov@yandex.ru>
15571         * vc/vc.el (vc-print-root-log): Always set `default-directory'
15572         value, whether we could auto-deduce `backend', or not.
15574         * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
15575         with parameters" example.  Simplify the "is it block or is it
15576         hash" check, but also make it more thorough.
15578 2013-10-23  Masashi Fujimoto  <masfj.dev@gmail.com>  (tiny change)
15580         * battery.el (battery-pmset): Handle OS X Mavericks.  (Bug#15694)
15582 2013-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
15584         * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
15585         { if it is hanging.
15587         * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
15588         :before ";".
15590 2013-10-23  Jed Brown  <jed@59A2.org>  (tiny change)
15592         * progmodes/compile.el (compilation-directory-matcher)
15593         (compilation-page-delimiter):
15594         Support GNU Make-4.0 directory quoting.  (Bug#15678)
15596 2013-10-23  Leo Liu  <sdl.web@gmail.com>
15598         * ido.el (ido-tidy): Handle read-only text.
15600 2013-10-23  Glenn Morris  <rgm@gnu.org>
15602         * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
15603         (emacs, compile, compile-always):
15604         Quote entities that might contain whitespace.
15605         (custom-deps, finder-data, autoloads): Use abs_lisp.
15606         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
15607         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
15608         ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
15610 2013-10-23  Dmitry Gutov  <dgutov@yandex.ru>
15612         * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
15613         Use `following-char'.
15615 2013-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
15617         * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
15618         * progmodes/ruby-mode.el (ruby-smie-rules):
15619         Remove corresponding workaround.  Fix indentation rule of ";" so it
15620         also applies when ";" is the parent.
15622 2013-10-22  Xue Fuqiao  <xfq.free@gmail.com>
15624         * frame.el (display-screens, display-pixel-height)
15625         (display-pixel-width, display-mm-width, display-backing-store)
15626         (display-save-under, display-planes, display-color-cells)
15627         (display-visual-class, display-monitor-attributes-list):
15628         Mention the optional ‘display’ argument in doc strings.
15630 2013-10-22  Michael Gauland  <mikelygee@amuri.net>
15632         * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
15633         viewers such as evince when ebnf-production-name-p is nil.  (Bug#15625)
15635 2013-10-21  Dmitry Gutov  <dgutov@yandex.ru>
15637         * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
15638         TODO.  Add "." after " @ ".
15639         (ruby-smie--at-dot-call): New function.  Checks if point at method
15640         call with explicit target.
15641         (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
15642         to the method name tokens when it precedes them.
15643         (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
15644         (ruby-smie-rules): Add rule for indentation before and after "."
15645         token.
15647 2013-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
15649         * textmodes/remember.el (remember-diary-extract-entries):
15650         Avoid add-to-list.
15652         * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
15653         an instruction.
15655 2013-10-21  Dmitry Gutov  <dgutov@yandex.ru>
15657         * progmodes/ruby-mode.el (ruby-smie-grammar):
15658         Add (almost) all infix operators.
15659         (ruby-smie--implicit-semi-p): Add new operator chars.
15661         * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
15662         `smie-down-list'.
15663         (ruby-smie--args-separator-p): Check that there's no newline
15664         between method call and its arguments.
15666 2013-10-20  Alan Mackenzie  <acm@muc.de>
15668         Allow comma separated lists after Java "implements".
15670         * progmodes/cc-engine.el (c-backward-over-enum-header):
15671         Parse commas.
15672         * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
15673         from a "disallowed" list in enum fontification.
15675 2013-10-20  Johan Bockgård  <bojohan@gnu.org>
15677         * startup.el (default-frame-background-mode): Remove unused defvar.
15679         * progmodes/verilog-mode.el (verilog-mode): Don't set
15680         comment-indent-function globally.
15682 2013-10-20  Jan Djärv  <jan.h.d@swipnet.se>
15684         * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
15685         Move Info menu item creation to ns-win.el.
15687         * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
15688         in menu bar.
15690         * menu-bar.el: Move GNUstep specific menus...
15692         * term/ns-win.el (ns-initialize-window-system): ... to here.
15694 2013-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
15696         * simple.el (newline): Only run post-self-insert-hook when
15697         called interactively.
15699 2013-10-19  Johan Bockgård  <bojohan@gnu.org>
15701         * icomplete.el (icomplete-with-completion-tables): Add :version.
15703 2013-10-19  Alan Mackenzie  <acm@muc.de>
15705         Fix fontification bugs with constructors and const.
15707         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
15708         CASE 2) Remove the check for the absence of a suffix construct
15709         after a function declaration with only types (no identifiers) in
15710         the parentheses.  Also, accept a function declaration with just a
15711         type inside the parentheses, if this type can be positively
15712         recognised as such, or if a prefix keyword like "explicit" nails
15713         down the construct as a declaration.
15715 2013-10-19  Eli Zaretskii  <eliz@gnu.org>
15717         * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
15718         TTY menu actions and down-mouse-N to tty-menu-ignore.  This solves
15719         the problem whereby selecting a menu item that leads to a
15720         minibuffer prompt moves the cursor out of the minibuffer window,
15721         making it hard to type at the prompt.  Suggested by Stefan Monnier
15722         <monnier@iro.umontreal.ca>.
15724 2013-10-19  Jan Djärv  <jan.h.d@swipnet.se>
15726         * menu-bar.el: Don't make Services menu.
15728 2013-10-19  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
15730         * ffap.el: Handle "/usr/include/c++/<version>" directories.
15731         (ffap-alist): Use ffap-c++-mode for c++-mode.
15732         (ffap-c++-path): New variable.
15733         (ffap-c++-mode): New function.
15735 2013-10-19  Joe Vornehm Jr.  <joe.vornehm@gmail.com>  (tiny change)
15737         * ido.el (dired-other-frame): Only list directories.  (Bug#15638)
15739 2013-10-18  Michael Albinus  <michael.albinus@gmx.de>
15741         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
15742         introduced on 2013-09-08, which results in an infinite loop
15743         requesting a password.
15745 2013-10-18  Glenn Morris  <rgm@gnu.org>
15747         * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
15749 2013-10-18  Wilson Snyder  <wsnyder@wsnyder.org>
15751         Sync with upstream verilog-mode revision 1a6ecec7.
15752         * progmodes/verilog-mode.el (verilog-mode-version): Update.
15753         (verilog-mode-release-date): Remove.
15754         (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
15755         (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
15756         (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
15757         (verilog-auto-tieoff-ignore-regexp)
15758         (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
15759         (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
15760         (verilog-signals-with, verilog-dir-cache-preserving)
15761         (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
15762         Doc fixes.
15763         (verilog-case-fold): New option, to control case folding in
15764         regexp searches, bug597.
15765         (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
15766         (verilog-string-match-fold, verilog-in-paren-count)
15767         (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
15768         (verilog-at-close-struct-p): New functions.
15769         (verilog-beg-block-re-ordered, verilog-extended-case-re)
15770         (verilog-forward-sexp, verilog-set-auto-endcomments)
15771         (verilog-leap-to-case-head): Handle "unique0" case.
15772         (verilog-in-constraint-re): New constant.
15773         (verilog-keywords, verilog-type-font-keywords):
15774         Add some SystemVerilog 1800-2012 keywords.
15775         (verilog-label-be): Remove unimplemented argument, bug669.
15776         (verilog-batch-execute-func): When batch expanding clear
15777         create-lockfiles to prevent spurious user locks when a file ends
15778         up not changing.
15779         (verilog-calculate-indent, verilog-calc-1)
15780         (verilog-at-close-constraint-p, verilog-at-constraint-p)
15781         (verilog-do-indent): Fix indentation of nested constraints
15782         and structures.
15783         (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
15784         (verilog-auto-inst-param): Use verilog-string-match-fold.
15785         (verilog-read-inst-module-matcher):
15786         Fix AUTOINST on gate primitives with #1.
15787         (verilog-read-decls): Fix double-declaring user-defined typed signals.
15788         Reads all user-defined typed variables.
15789         (verilog-read-defines): Fix reading definitions inside comments, bug647.
15790         (verilog-signals-matching-regexp)
15791         (verilog-signals-not-matching-regexp, verilog-auto):
15792         Respect verilog-case-fold.
15793         (verilog-diff-report): Fix line count.
15794         (verilog-auto-assign-modport): Remove unused local `modi'.
15795         (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
15796         better handle multidimensional arrays.
15797         Fix packed array ports misadding bit index in AUTOINST, bug637.
15798         (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
15799         to not double-declare existing outputs and inputs, respectively.
15800         (verilog-template-map): Bind U to verilog-sk-uvm-component.
15801         (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
15802         (verilog-sk-uvm-component): New skeleton.
15803         (verilog-submit-bug-report): Add verilog-case-fold,
15804         remove verilog-mode-release-date.
15806 2013-10-17  Barry O'Reilly  <gundaetiapo@gmail.com>
15808         * subr.el (sit-for): Call (input-pending-p t) so as to behave
15809         as before.
15811 2013-10-18  Reuben Thomas  <rrt@sc3d.org>
15813         * textmodes/remember.el (remember): Set buffer-offer-save in
15814         remember buffers (bug#13566).
15816 2013-10-18  Daniel Colascione  <dancol@dancol.org>
15818         When evaluating forms in ielm, direct standard output to ielm
15819         buffer.  Add new ielm-return-for-effect command.  Remove trailing
15820         whitespace throughout.
15822         * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
15823         (ielm-return-for-effect): New command.
15824         (ielm-send-input): Accept optional `for-effect' parameter.
15825         (ielm-eval-input): Accept optional `for-effect' parameter.
15826         Bind `standard-output' to stream we create using
15827         `ielm-standard-output-impl'.  Suppress printing result when
15828         `for-effect'.
15829         (ielm-standard-output-impl): New function.
15830         (inferior-emacs-lisp-mode): Explain new features in documentation.
15832 2013-10-17  Michael Albinus  <michael.albinus@gmx.de>
15834         Code cleanup.
15836         * net/tramp.el (tramp-debug-message): Do not check for connection
15837         buffer.
15838         (tramp-message): Use "vector" connection property.
15840         * net/tramp.el (tramp-rfn-eshadow-update-overlay)
15841         (tramp-equal-remote, tramp-eshell-directory-change)
15842         * net/tramp-adb.el (tramp-adb-handle-copy-file)
15843         (tramp-adb-handle-rename-file)
15844         * net/tramp-cmds.el (tramp-list-remote-buffers)
15845         (tramp-cleanup-connection, tramp-cleanup-this-connection)
15846         * net/tramp-compat.el (tramp-compat-process-running-p)
15847         * net/tramp-ftp.el (tramp-ftp-file-name-handler)
15848         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
15849         (tramp-gvfs-handle-rename-file)
15850         * net/tramp-sh.el (tramp-sh-handle-set-file-times)
15851         (tramp-set-file-uid-gid)
15852         * net/tramp-smb.el (tramp-smb-handle-copy-file)
15853         (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
15854         of `file-remote-p'.
15856         * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
15857         * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
15858         (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
15859         (tramp-gw-open-network-stream): Suppress unrelated traces.
15861         * net/tramp-adb.el (tramp-adb-maybe-open-connection)
15862         * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
15863         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
15864         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
15865         connection property.
15867         * net/tramp-cache.el (top): Suppress traces when reading
15868         persistency file.
15870         * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
15871         Refactor common code.  Improve debug message.
15872         (tramp-maybe-open-connection)
15873         * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
15874         connection buffer too early.
15876         * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
15877         from `tramp-smb-actions-with-acl'.
15878         (tramp-smb-actions-set-acl): New defconst.
15879         (tramp-smb-handle-copy-directory)
15880         (tramp-smb-action-get-acl): New defun, renamed from
15881         `tramp-smb-action-with-acl'.
15882         (tramp-smb-action-set-acl): New defun.
15883         (tramp-smb-handle-set-file-acl): Rewrite.
15885 2013-10-17  Glenn Morris  <rgm@gnu.org>
15887         * indent.el (indent-rigidly): Fix 2013-10-08 change.  (Bug#15635)
15889 2013-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
15891         * skeleton.el (skeleton-newline): Remove.
15892         (skeleton-internal-1): Use (insert "\n") instead.
15894         * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
15895         let-bindings.
15897         * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
15898         forward-sexp-function while we redo its job (bug#15613).
15900 2013-10-17  Jay Belanger  <jay.p.belanger@gmail.com>
15902         * calc/calc-comb.el (math-prime-test): Don't assume large integers are
15903         represented by lists.
15905 2013-10-16  Glenn Morris  <rgm@gnu.org>
15907         * tmm.el (tmm--history): New dynamic variable.
15908         (tmm-prompt): Use tmm--history in place of `history'.  (Bug#15623)
15910 2013-10-16  Michael Albinus  <michael.albinus@gmx.de>
15912         * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
15913         (tramp-smb-errors): Add error messages.
15914         (tramp-smb-actions-with-acl): New defconst.
15915         (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
15916         (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
15917         (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
15918         (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
15919         (tramp-smb-get-stat-capability): Fix tests.
15921 2013-10-16  Dima Kogan  <dima@secretsauce.net>  (tiny change)
15923         * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
15924         (bug#15580).
15926 2013-10-16  Glenn Morris  <rgm@gnu.org>
15928         * ansi-color.el (ansi-color-drop-regexp):
15929         Add 1J, 1K, 2K.  (Bug#15617)
15931         * files.el (hack-local-variables--warned-lexical): New.
15932         (hack-local-variables):
15933         Warn about misplaced lexical-binding.  (Bug#15616)
15935         * net/eww.el (eww-render): Always set eww-current-url,
15936         and update header line.  (Bug#15622)
15937         (eww-display-html): ... Rather than just doing it here.
15939 2013-10-15  Eli Zaretskii  <eliz@gnu.org>
15941         * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
15942         menu navigations commands.
15944 2013-10-14  Dima Kogan  <dima@secretsauce.net>  (tiny change)
15946         * progmodes/subword.el (subword-capitalize): Be careful when
15947         the search for [[:alpha:]] fails (bug#15580).
15949 2013-10-14  Eli Zaretskii  <eliz@gnu.org>
15951         * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
15952         to commands that scroll the menu.
15954 2013-10-14  Dmitry Gutov  <dgutov@yandex.ru>
15956         * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
15957         Handle methods ending with `?' and `!'.
15959 2013-10-14  Akinori MUSHA  <knu@iDaemons.org>
15961         * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
15962         `japanese-cp932' to `cp932' to fix the problem where saving a
15963         source file written in Shift_JIS twice would end up having
15964         `coding: japanese-cp932' which Ruby could not recognize.
15965         (ruby-mode-set-encoding): Add support for encodings mapped to nil
15966         in `ruby-encoding-map'.
15967         (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
15968         doesn't need to be explicitly declared in magic comment.
15969         (ruby-encoding-map): Add type declaration for better customize UI.
15971 2013-10-13  Glenn Morris  <rgm@gnu.org>
15973         * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
15974         Occur buffers are read-only.  http://bugs.debian.org/720775
15976         * emacs-lisp/authors.el (authors-fixed-entries):
15977         Comment out old alpha stuff.
15979 2013-10-13  Dmitry Gutov  <dgutov@yandex.ru>
15981         * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
15982         to `after-save-hook' instead of `before-save-hook'.
15983         (ruby-mode-set-encoding): Use the value of coding system used to
15984         write the file.  Call `basic-save-buffer-1' after modifying the
15985         buffer.
15987 2013-10-13  Alan Mackenzie  <acm@muc.de>
15989         Fix indentation/fontification of Java enum with
15990         "implements"/generic.
15992         * progmodes/cc-engine.el (c-backward-over-enum-header):
15993         Extracted from the three other places and enhanced to handle generics.
15994         (c-inside-bracelist-p): Uses new function above.
15995         * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
15996         function above.
15997         (c-font-lock-enum-tail): Uses new function above.
15999 2013-10-13  Kenichi Handa  <handa@gnu.org>
16001         * international/mule-cmds.el (select-safe-coding-system): Remove a
16002         superfluous condition in chekcing whether a coding system is safe
16003         or not.
16005 2013-10-13  Oleh Krehel  <ohwoeowho@gmail.com>
16007         * replace.el (how-many): Fix rstart and !rend case.  (Bug#15589)
16009 2013-10-13  Andreas Politz  <politza@hochschule-trier.de>
16011         * progmodes/sql.el (sql-add-product): Fix paren typo.  (Bug#15435)
16013 2013-10-13  Glenn Morris  <rgm@gnu.org>
16015         * menu-bar.el (menu-bar-update-buffers):
16016         Unify Buffers menu prompt string.  (Bug#15576)
16018         * face-remap.el (text-scale-adjust): Doc fix.  (Bug#15434)
16020         * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
16021         Add some entries.
16022         (authors-fixed-entries): Use accented form of name.
16024 2013-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
16026         * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
16027         method calls (bug#15594).
16028         (ruby-smie--args-separator-p): New function.
16029         (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
16030         recognize paren-free method calls.
16032         * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
16033         internals of universal-argument.
16035 2013-10-11  Eli Zaretskii  <eliz@gnu.org>
16037         * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
16038         Bind all menu-bar sequences to tty-menu-exit -- this pops down a
16039         dropped menu on second mouse click on the menu bar.
16041 2013-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
16043         * progmodes/sh-script.el: Provide simpl(e|istic) completion.
16044         (explicit-shell-file-name): Declare.
16045         (sh--vars-before-point, sh--cmd-completion-table): New functions.
16046         (sh-completion-at-point-function): New function.
16047         (sh-mode): Use it.
16048         (sh-smie--keyword-p): Remove unused argument.
16049         (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
16050         vars.
16051         (sh-set-shell): Always setup SMIE, even if we use the
16052         old indentation code.
16054 2013-10-11  Dmitry Gutov  <dgutov@yandex.ru>
16056         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
16057         cases of ? and =.
16058         (ruby-smie-rules): Simplify the "do" rule.  The cases when the
16059         predicate would return nil are almost non-existent.
16060         (ruby-smie--redundant-do-p): Include "until" and "for" statements.
16062         * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
16063         cache also after commands that modify the buffer but don't move
16064         point.
16066 2013-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
16068         * env.el (substitute-env-in-file-name): New function.
16069         (substitute-env-vars): Extend the meaning of the optional arg.
16071 2013-10-10  Eli Zaretskii  <eliz@gnu.org>
16073         * term/w32-win.el (dynamic-library-alist): Define separate lists
16074         of GIF DLLs for versions before and after 5.0.0 of giflib.
16075         (Bug#15531)
16077 2013-10-10  João Távora  <joaotavora@gmail.com>
16079         * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
16080         not locked, use last revision and current source as
16081         defaults.  (Bug#15569)
16083 2013-10-10  Masatake YAMATO  <yamato@redhat.com>
16085         * menu-bar.el (menu-bar-open): Don't use popup-menu if
16086         menu-bar is hidden.
16088 2013-10-10  Martin Rudalics  <rudalics@gmx.at>
16090         * window.el (pop-to-buffer-same-window): Fix doc-string.
16091         (Bug#15492)
16093 2013-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
16095         * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
16097 2013-10-10  Andrei Chițu  <andrei.chitu1@gmail.com>  (tiny change)
16099         * calendar/icalendar.el (icalendar-import-file):
16100         Fix interactive spec.  (Bug#15482)
16102 2013-10-10  Glenn Morris  <rgm@gnu.org>
16104         * desktop.el (desktop-save): Default to saving in .emacs.d,
16105         since PWD is no longer in desktop-path by default.  (Bug#15319)
16107         * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
16108         now that text mode has a menu with the same entry.
16109         (menu-bar-text-mode-auto-fill): Remove now unused func.
16110         * textmodes/text-mode.el (text-mode-map):
16111         Use auto-fill help text from menu-bar.el.
16113 2013-10-10  John Anthony  <john@jo.hnanthony.com>
16115         * textmodes/text-mode.el (text-mode-map): Add a menu.  (Bug#15562)
16117 2013-10-09  Juri Linkov  <juri@jurta.org>
16119         * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
16120         instead of this-command-keys.  Add universal-argument-more and
16121         universal-argument-minus to the list of prefix commands.  (Bug#15568)
16123 2013-10-09  Glenn Morris  <rgm@gnu.org>
16125         * vc/vc-svn.el (vc-svn-create-repo):
16126         Expand paths in file://... url.  (Bug#15446)
16128         * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
16129         Add some entries.
16130         (authors): Remove unused local variables.
16132 2013-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
16134         * profiler.el: Create a more coherent calltree from partial backtraces.
16135         (profiler-format): Hide the tail with `invisible' so that C-s can still
16136         find the hidden elements.
16137         (profiler-calltree-depth): Don't recurse so enthusiastically.
16138         (profiler-function-equal): New hash-table-test.
16139         (profiler-calltree-build-unified): New function.
16140         (profiler-calltree-build): Use it.
16141         (profiler-report-make-name-part): Indent the calltree less.
16142         (profiler-report-mode): Add visibility specs for profiler-format.
16143         (profiler-report-expand-entry, profiler-report-toggle-entry):
16144         Expand the whole subtree when provided with a prefix arg.
16146 2013-10-09  Dmitry Gutov  <dgutov@yandex.ru>
16148         * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
16149         iuwu-mod token.
16150         (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
16151         hanging iuwu-mod token.
16152         (ruby-smie--forward-token): Do not include a dot after a token in
16153         that token.
16154         (ruby-smie--backward-token): Likewise.
16156 2013-10-08  Juri Linkov  <juri@jurta.org>
16158         * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
16159         to isearch-other-control-char.
16160         (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
16161         and isearch-post-command-hook to post-command-hook.
16162         (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
16163         and isearch-post-command-hook from post-command-hook.
16164         (isearch-unread-key-sequence)
16165         (isearch-reread-key-sequence-naturally)
16166         (isearch-lookup-scroll-key, isearch-other-control-char)
16167         (isearch-other-meta-char): Remove functions.
16168         (isearch-pre-command-hook, isearch-post-command-hook):
16169         New functions based on isearch-other-meta-char rewritten
16170         relying on the new behavior of overriding-terminal-local-map
16171         that does not replace the local keymaps any more.  (Bug#15200)
16173 2013-10-08  Eli Zaretskii  <eliz@gnu.org>
16175         Support menus on text-mode terminals.
16176         * tmm.el (tmm-menubar): Adapt doc string to TTY menus
16177         functionality.
16179         * tooltip.el (tooltip-mode): Don't error out on TTYs.
16181         * menu-bar.el (popup-menu, popup-menu-normalize-position):
16182         Move here from mouse.el.
16183         (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
16184         and arrow keys.
16185         (tty-menu-navigation-map): New map for TTY menu navigation.
16187         * loadup.el ("tooltip"): Load even if x-show-tip is not available.
16189         * frame.el (display-mouse-p): Report text-mode mouse as available
16190         on w32.
16191         (display-popup-menus-p): Report availability if mouse is
16192         available; don't condition on window-system.
16194         * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
16195         (tty-menu-selected-face): New faces.
16197 2013-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
16199         * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
16200         (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
16201         (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
16202         (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
16203         New constants.
16204         (lisp-mode-variables): New `elisp' argument.
16205         (emacs-lisp-mode): Use it.
16206         * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
16207         (lisp-font-lock-keywords-2): Move to lisp-mode.el.
16209         * indent.el: Use lexical-binding.
16210         (indent-region): Add progress reporter.
16211         (tab-stop-list): Make it implicitly extend to infinity by repeating the
16212         last step.
16213         (indent--next-tab-stop): New function to implement this behavior.
16214         (tab-to-tab-stop, move-to-tab-stop): Use it.
16216 2013-10-08  Teemu Likonen  <tlikonen@iki.fi>
16218         * indent.el (indent-rigidly--current-indentation): New function.
16219         (indent-rigidly-map): New var.
16220         (indent-rigidly): Use it to provide interactive mode (bug#8196).
16222 2013-10-08  Bastien Guerry  <bzg@gnu.org>
16224         * register.el (insert-register): Fix 2013-10-07 change.
16226 2013-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
16228         * progmodes/perl-mode.el: Use lexical-binding.
16229         Remove redundant :group args.
16230         (perl-nochange): Change default to be closer to other major modes's
16231         standard behavior.
16232         (perl-indent-line): Don't consider text on current line as a
16233         valid beginning of function from which to indent.
16235         * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
16236         with more than one argument (bug#15538).
16238         * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
16240         * vc/pcvs.el: Use lexical-binding.
16241         (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
16242         environment of `eval'.
16243         (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
16244         than a list of expressions.  Adjust callers.
16245         * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
16247 2013-10-07  Dmitry Gutov  <dgutov@yandex.ru>
16249         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
16250         case of the dot in a chained method call being on the following line.
16252 2013-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
16254         * electric.el (electric-indent-inhibit): New var.
16255         (electric-indent-post-self-insert-function): Use it.
16256         * progmodes/python.el (python-mode): Set it.
16258         * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
16259         open braces.
16261         * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
16263         * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
16264         (css-mode): Use electric-indent-chars.
16266         * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
16267         (font-lock-beg, font-lock-end): Move before first use.
16268         (nxml-mode): Use syntax-propertize-function.
16269         (nxml-after-change, nxml-after-change1): Adjust accordingly.
16270         (nxml-extend-after-change-region): Remove.
16271         * nxml/xmltok.el: Use lexical-binding.
16272         (xmltok-save): Use `declare'.
16273         (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
16274         * nxml/nxml-util.el: Use lexical-binding.
16275         (nxml-with-degradation-on-error, nxml-with-invisible-motion):
16276         Use `declare'.
16277         * nxml/nxml-ns.el: Use lexical-binding.
16278         (nxml-ns-save): Use `declare'.
16279         (nxml-ns-prefixes-for): Avoid add-to-list.
16280         * nxml/rng-match.el: Use lexical-binding.
16281         (rng--ipattern): Use cl-defstruct.
16282         (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
16283         (rng-cons-group-after, rng-subst-group-after)
16284         (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
16285         Use closures instead of `(lambda...).
16287 2013-10-07  Michael Albinus  <michael.albinus@gmx.de>
16289         * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
16290         of BEG and END.
16292         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
16293         Use `tramp-handle-insert-file-contents'.
16294         (tramp-gvfs-handle-insert-file-contents): Remove function.
16296         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
16297         Use `save-restriction' in order to keep markers.
16299         * net/trampver.el: Update release number.
16301 2013-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
16303         * progmodes/compile.el (compilation-parse-errors):
16304         Use compilation--put-prop.
16305         (compilation--ensure-parse): Check compilation-multiline.
16307         * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
16309         * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
16310         lexical-binding.
16312         * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
16314         * progmodes/ruby-mode.el: Fix recently added tests.
16315         (ruby-smie-grammar): Add - and +.
16316         (ruby-smie--redundant-do-p, ruby-smie--forward-id)
16317         (ruby-smie--backward-id): New functions.
16318         (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
16319         (ruby-smie-rules): Handle hanging do.  Get rid of hack, not needed
16320         any more.
16322 2013-10-07  Leo Liu  <sdl.web@gmail.com>
16324         * register.el (register-preview-delay)
16325         (register-preview-functions): New variables.
16326         (register-read-with-preview, register-preview)
16327         (register-describe-oneline): New functions.
16328         (point-to-register, window-configuration-to-register)
16329         (frame-configuration-to-register, jump-to-register)
16330         (number-to-register, view-register, insert-register)
16331         (copy-to-register, append-to-register, prepend-to-register)
16332         (copy-rectangle-to-register): Use register-read-with-preview to
16333         read register.  (Bug#15525)
16335 2013-10-06  Dato Simó  <dato@net.com.org.es>  (tiny change)
16337         * net/network-stream.el (network-stream-open-starttls): Don't add
16338         --insecure if it's already present, because that gnutls-cli
16339         rejects getting that parameter twice.
16341 2013-10-06  Dmitry Gutov  <dgutov@yandex.ru>
16343         * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
16344         keyword, too.
16346 2013-10-05  Dmitry Gutov  <dgutov@yandex.ru>
16348         * newcomment.el (comment-use-global-state): Change default value
16349         to t, mark obsolete (Bug#15251).
16350         (comment-beginning): In addition to `comment-to-syntax', check the
16351         value of `comment-use-global-state'.
16353 2013-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
16355         * progmodes/ruby-mode.el (ruby-use-smie): Change default.
16356         (ruby-comment-column): Follow the global default, by default.
16357         (ruby-smie-grammar): Add assignment syntax.
16358         (ruby-smie--implicit-semi-p): No implicit semi-colon after an
16359         open-paren, a comma, or a \.
16360         (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
16361         and line continuations.
16362         (ruby-smie-rules): Adjust handling of open-paren, now that it's never
16363         followed by implicit semi-colons.  Add rule for string concatenation
16364         and for indentation at BOB.
16365         (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
16367         * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
16368         calling next-sexp, since next-token may have skipped chars which
16369         next-sexp doesn't know should be skipped!
16371 2013-10-05  Leo Liu  <sdl.web@gmail.com>
16373         * progmodes/octave.el (octave-send-region):
16374         Call compilation-forget-errors.
16376 2013-10-04  Xue Fuqiao  <xfq.free@gmail.com>
16378         * vc/vc-svn.el (vc-svn-find-admin-dir):
16379         * vc/vc-rcs.el (vc-rcs-find-admin-dir):
16380         * vc/vc-mtn.el (vc-mtn-find-admin-dir):
16381         * vc/vc-cvs.el (vc-cvs-find-admin-dir):
16382         * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
16384 2013-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
16386         * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
16388 2013-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
16390         * subr.el (read-passwd): Hide chars even when called within a context
16391         where after-change-functions is disabled (bug#15501).
16392         (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
16393         until we removed ourself from overriding-terminal-local-map.
16395 2013-10-04  Leo Liu  <sdl.web@gmail.com>
16397         * progmodes/octave.el (inferior-octave-mode):
16398         Call compilation-forget-errors.
16400 2013-10-04  Xue Fuqiao  <xfq.free@gmail.com>
16402         * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
16404 2013-10-04  Michael Albinus  <michael.albinus@gmx.de>
16406         * net/secrets.el (secrets-create-collection): Add optional
16407         argument ALIAS.  Use proper Label keyword.  Append ALIAS as
16408         dbus-call-method argument.  (Bug#15516)
16410 2013-10-04  Leo Liu  <sdl.web@gmail.com>
16412         * progmodes/octave.el (inferior-octave-error-regexp-alist)
16413         (inferior-octave-compilation-font-lock-keywords): New variables.
16414         (compilation-error-regexp-alist)
16415         (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
16416         (inferior-octave-mode): Use compilation-shell-minor-mode.
16418 2013-10-04  Jorgen Schaefer  <forcer@forcix.cx>
16420         * minibuffer.el (completion--replace): Be careful that `end' might be
16421         a marker.
16423 2013-10-03  Daiki Ueno  <ueno@gnu.org>
16425         Add support for package signature checking.
16426         * emacs-lisp/package.el (url-http-file-exists-p)
16427         (epg-make-context, epg-context-set-home-directory)
16428         (epg-verify-string, epg-context-result-for)
16429         (epg-signature-status, epg-signature-to-string)
16430         (epg-check-configuration, epg-configuration)
16431         (epg-import-keys-from-file): Declare.
16432         (package-check-signature): New user option.
16433         (package-unsigned-archives): New user option.
16434         (package-desc): Add `signed' field.
16435         (package-load-descriptor): Set `signed' field if .signed file exists.
16436         (package--archive-file-exists-p): New function.
16437         (package--check-signature): New function.
16438         (package-install-from-archive): Check package signature.
16439         (package--download-one-archive): Check archive signature.
16440         (package-delete): Remove .signed file.
16441         (package-import-keyring): New command.
16442         (package-refresh-contents): Import default keyring.
16443         (package-desc-status): Add "unsigned" status.
16444         (describe-package-1, package-menu--print-info)
16445         (package-menu-mark-delete, package-menu--find-upgrades)
16446         (package-menu--status-predicate): Support "unsigned" status.
16448 2013-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
16450         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
16451         the new compilation scheme using the new byte-codes.
16453         * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
16454         (byte-pophandler): New byte codes.
16455         (byte-goto-ops): Adjust accordingly.
16456         (byte-compile--use-old-handlers): New var.
16457         (byte-compile-catch): Use new byte codes depending on
16458         byte-compile--use-old-handlers.
16459         (byte-compile-condition-case--old): Rename from
16460         byte-compile-condition-case.
16461         (byte-compile-condition-case--new): New function.
16462         (byte-compile-condition-case): New function that dispatches depending
16463         on byte-compile--use-old-handlers.
16464         (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
16465         when we can.
16467         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
16468         Optimize under `condition-case' and `catch' if
16469         byte-compile--use-old-handlers is nil.
16470         (disassemble-offset): Handle new bytecodes.
16472 2013-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
16474         * subr.el (error): Use `declare'.
16475         (decode-char, encode-char): Use advertised-calling-convention instead
16476         of the docstring to discourage use of the `restriction' arg.
16478 2013-10-03  Daiki Ueno  <ueno@gnu.org>
16480         * epg.el (epg-verify-file): Add a comment saying that it does not
16481         notify verification error as a return value nor a signal.
16482         (epg-verify-string): Ditto.
16484 2013-10-02  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
16486         * progmodes/compile.el (compilation-start): Try globbing the arg to
16487         `cd' (bug#15417).
16489 2013-10-02  Michael Albinus  <michael.albinus@gmx.de>
16491         Sync with Tramp 2.2.8.
16493         * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
16494         * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
16495         * net/trampver.el: Update release number.
16497 2013-10-01  Jan Djärv  <jan.h.d@swipnet.se>
16499         * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
16500         and default-process-coding-system for darwin only.
16502 2013-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
16504         * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
16506 2013-10-01  Mitchel Humpherys  <mitch.special@gmail.com>  (tiny change)
16508         * vc/vc-git.el (vc-git-grep): Disable pager.
16510 2013-10-01  Dmitry Gutov  <dgutov@yandex.ru>
16512         * emacs-lisp/package.el (package-buffer-info, describe-package-1):
16513         Use :url instead of :homepage, as per
16514         http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
16516         * newcomment.el (comment-beginning): When `comment-use-syntax' is
16517         non-nil, use `syntax-ppss' (Bug#15251).
16519 2013-09-30  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
16521         * progmodes/octave.el (inferior-octave-startup-file):
16522         Prefer ~/.emacs.d/init_octave.m.
16524 2013-09-29  Dmitry Gutov  <dgutov@yandex.ru>
16526         * emacs-lisp/package.el (package-desc-from-define):
16527         Accept additional arguments as plist, convert them to an alist and store
16528         them in the `extras' slot.
16529         (package-generate-description-file): Convert extras alist back to
16530         plist and append to the `define-package' form arguments.
16531         (package--alist-to-plist): New function.
16532         (package--ac-desc): Add `extras' slot.
16533         (package--add-to-archive-contents): Check if the archive-contents
16534         vector is long enough, and if it is, pass its `extras' slot value
16535         to `package-desc-create'.
16536         (package-buffer-info): Call `lm-homepage', pass the returned value
16537         to `package-desc-from-define'.
16538         (describe-package-1): Render the homepage button (Bug#13291).
16540         * emacs-lisp/package-x.el (package-upload-buffer-internal):
16541         Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
16543 2013-09-29  Jan Djärv  <jan.h.d@swipnet.se>
16545         * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
16546         and default-process-coding-system to utf-8-unix (Bug#15402).
16548 2013-09-29  Xue Fuqiao  <xfq.free@gmail.com>
16550         * subr.el (looking-back): Do not recommend using looking-back.
16552 2013-09-28  Alan Mackenzie  <acm@muc.de>
16554         Fix indentation/fontification of Java enum with "implements".
16556         * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
16557         regexp which matches "implements", etc., in Java.
16558         * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
16559         specifier clauses coming after "enum".
16560         * progmodes/cc-fonts.el (c-font-lock-declarations)
16561         (c-font-lock-enum-tail): Check for extra specifier clauses coming
16562         after "enum".
16564 2013-09-28  Jan Djärv  <jan.h.d@swipnet.se>
16566         * faces.el (region): Change ns_selection_color to
16567         ns_selection_fg_color, add ns_selection_bg_color.
16569 2013-09-28  Leo Liu  <sdl.web@gmail.com>
16571         * progmodes/octave.el (inferior-octave-completion-table)
16572         (inferior-octave-completion-at-point): Minor tweaks.
16574         * textmodes/ispell.el (ispell-lookup-words): Rename from
16575         lookup-words.  (Bug#15460)
16576         (lookup-words): Obsolete.
16577         (ispell-complete-word, ispell-command-loop): All uses changed.
16579 2013-09-28  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
16581         * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
16582         (octave-mode-menu): Add octave-send-buffer.
16583         (octave-send-buffer): New function.
16585 2013-09-28  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
16587         * progmodes/octave.el (octave-mode-map): Add key binding for
16588         octave-lookfor.
16589         (octave-mode-menu): Add octave-lookfor.
16590         (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
16591         octave-lookfor.
16592         (octave-lookfor): New function.
16594 2013-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
16596         * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
16597         (cl--loop-iterator-function): Rename from cl--loop-map-form and change
16598         its convention.
16599         (cl--loop-set-iterator-function): New function.
16600         (cl-loop): Adjust accordingly, so as not to use cl-subst.
16601         (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
16602         Bind `it' with `let' instead of substituting it with `cl-subst'.
16603         (cl--unused-var-p): New function.
16604         (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
16605         Eliminate some unused variable warnings (bug#15326).
16607 2013-09-27  Tassilo Horn  <tsdh@gnu.org>
16609         * doc-view.el (doc-view-scale-reset): Rename from
16610         `doc-view-reset-zoom-level'.
16611         (doc-view-scale-adjust): New command.
16612         (doc-view-mode-map): Remap `text-scale-adjust' bindings to
16613         `doc-view-scale-adjust'.
16615 2013-09-26  Tassilo Horn  <tsdh@gnu.org>
16617         * doc-view.el (doc-view-reset-zoom-level): New command.
16618         (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
16619         zoom commands (bug#15466).
16621 2013-09-26  Kenichi Handa  <handa@gnu.org>
16623         * international/quail.el (quail-help): Make it not a command.
16625 2013-09-26  Leo Liu  <sdl.web@gmail.com>
16627         * minibuffer.el (completion-all-sorted-completions): Make args
16628         optional as they are.
16630 2013-09-25  Daniel Colascione  <dancol@dancol.org>
16632         * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
16633         specs are and that they're not evaluated.
16635 2013-09-24  Sam Steingold  <sds@gnu.org>
16637         * midnight.el (clean-buffer-list-kill-regexps)
16638         (clean-buffer-list-kill-buffer-names): Update for the new Man
16639         buffer naming which includes the object name.
16641 2013-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16643         * eshell/esh-cmd.el (eshell--sep-terms): New var.
16644         (eshell-parse-command, eshell-parse-pipeline): Use it since
16645         eshell-separate-commands requires a dynamic scoped var.
16646         Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
16648 2013-09-23  Leo Liu  <sdl.web@gmail.com>
16650         * autoinsert.el (auto-insert-alist): Make the value of
16651         lexical-binding match its file setting.
16653 2013-09-23  Juanma Barranquero  <lekktu@gmail.com>
16655         * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
16657         * autoarg.el (autoarg-kp-digit-argument):
16658         * electric.el (Electric-command-loop):
16659         * kmacro.el (kmacro-step-edit-insert):
16660         Do not set universal-argument-num-events.
16662 2013-09-22  Leo Liu  <sdl.web@gmail.com>
16664         * files.el (interpreter-mode-alist): Add octave.
16666 2013-09-21  Alan Mackenzie  <acm@muc.de>
16668         C++: fontify identifier in declaration following "public:" correctly.
16669         * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
16670         to match "public", etc.
16671         (c-decl-prefix-re): Add ":" into the C++ value.
16672         * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
16673         bit.  Add a check for a ":" preceded by "public", etc.
16675 2013-09-21  Eli Zaretskii  <eliz@gnu.org>
16677         * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
16678         recognized by GDB 7.5 and later.
16680 2013-09-21  Xue Fuqiao  <xfq.free@gmail.com>
16682         * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
16684 2013-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
16686         * subr.el (internal--call-interactively): New const.
16687         (called-interactively-p): Use it (bug#3984).
16689 2013-09-20  Xue Fuqiao  <xfq.free@gmail.com>
16691         * vc/pcvs.el (cvs-mode-ignore):
16692         * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
16693         Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
16695 2013-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
16697         * eshell/em-ls.el: Use advice.  Remove redundant :group keywords.
16698         (eshell-ls-orig-insert-directory): Remove.
16699         (eshell-ls-unload-hook): Not a defcustom any more.  Use advice-remove.
16700         (eshell-ls-use-in-dired): Use advice-add/remove.
16701         (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
16702         Add `orig-fun' arg for use in :around advice.
16703         Make it check (redundantly) eshell-ls-use-in-dired.
16705 2013-09-19  Glenn Morris  <rgm@gnu.org>
16707         * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
16709         * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
16711         * emacs-lisp/eieio.el (class-parent): Undo previous change.
16713 2013-09-19  Michael Albinus  <michael.albinus@gmx.de>
16715         * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
16716         (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
16717         (tramp-get-remote-python): New defuns.
16718         (tramp-get-remote-uid-with-perl)
16719         (tramp-get-remote-gid-with-perl): New defuns.  Perl code
16720         contributed by yary <not.com@gmail.com> (tiny change).
16721         (tramp-get-remote-uid-with-python)
16722         (tramp-get-remote-gid-with-python): New defuns.  Python code
16723         contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
16724         (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
16726 2013-09-19  Glenn Morris  <rgm@gnu.org>
16728         * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
16730         * eshell/em-unix.el (eshell-remove-entries):
16731         Rename argument to avoid name-clash with global `top-level'.
16733         * eshell/esh-proc.el (eshell-kill-process-function):
16734         Remove eshell-reset-after-proc from eshell-kill-hook if present.
16735         (eshell-reset-after-proc): Remove unused arg `proc'.
16737         * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
16738         (directory-files-and-attributes): Mark unused arg.
16740         * eshell/em-unix.el (eshell-remove-entries):
16741         Remove unused arg `path'.  Update callers.
16743         * eshell/em-hist.el (eshell-hist-parse-arguments):
16744         Remove unused arg `silent'.  Update callers.
16746         * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
16747         Fix (f)boundp mix-up.
16749         * eshell/em-smart.el (eshell-smart-scroll-window)
16750         (eshell-disable-after-change):
16751         * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
16753 2013-09-18  Alan Mackenzie  <acm@muc.de>
16755         Fix fontification of type when followed by "const".
16756         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
16757         "known" types from fontification.
16759 2013-09-18  Glenn Morris  <rgm@gnu.org>
16761         * emacs-lisp/chart.el (x-display-color-cells): Declare.
16762         (chart-face-list): Drop Emacsen without display-color-p.
16764         * net/eww.el (libxml-parse-html-region): Declare.
16765         (eww-display-html): Explicit error if no libxml2 support.
16767         * doc-view.el (doc-view-mode): Silence --without-x compilation.
16769         * image.el (image-type-from-buffer, image-multi-frame-p):
16770         Remove --without-x warning/error.
16772         * mouse.el (mouse-yank-primary):
16773         * term.el (term-mouse-paste):
16774         Reorder to silence --without-x compilation.
16776         * mpc.el (doc-view-mode): Silence --without-x compilation.
16778         * mail/rmailmm.el (rmail-mime-set-bulk-data):
16779         Silence --without-x compilation.
16781         * progmodes/gud.el (gud-find-file, gud-mode):
16782         Silence --without-x compilation.
16783         (tooltip-mode): Declare.
16785         * wdired.el (dired-backup-overwrite): Remove declaration.
16786         (wdired-mode-map): Add doc string.
16788         * custom.el (x-get-resource): Declare.
16790         * eshell/em-glob.el (ange-cache):
16791         * eshell/em-unix.el (ange-cache): Declare.
16793         * faces.el (x-display-list, x-open-connection, x-get-resource):
16794         Declare.
16796         * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
16797         (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
16798         Declare.
16800         * frame.el (x-display-grayscale-p, x-display-name): Declare.
16802         * net/gnutls.el (gnutls-log-level): Declare.
16804         * net/shr.el (image-size, image-animate): Declare.
16806         * simple.el (font-info): Declare.
16808         * subr.el (x-popup-dialog): Declare.
16810         * term/common-win.el (x-select-enable-primary)
16811         (x-last-selected-text-primary, x-last-selected-text-clipboard):
16812         Declare.
16814         * term/ns-win.el (x-handle-args): Declare.
16816         * term/x-win.el (x-select-enable-clipboard): Declare.
16818         * term/w32-win.el (create-default-fontset): Declare.
16820         * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
16821         Declare.
16823         * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
16824         (fit-frame-to-buffer): Explicit error if --without-x.
16825         (mouse-autoselect-window-select): Silence compiler.
16827         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
16829         * eshell/em-cmpl.el (eshell-complete-parse-arguments):
16830         * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
16831         * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
16832         * eshell/esh-util.el (eshell-sublist):
16833         Remove unused local variables.
16835         * eshell/esh-io.el (x-select-enable-clipboard): Declare.
16837         * textmodes/two-column.el: Make 2C-split work for --without-x.
16838         (scroll-bar-columns): Autoload.
16839         (top-level): Require fringe when compiling.
16841 2013-09-18  Leo Liu  <sdl.web@gmail.com>
16843         * subr.el (add-hook): Robustify to handle closure as well.
16845 2013-09-17  Glenn Morris  <rgm@gnu.org>
16847         * simple.el (messages-buffer-mode-map): Unbind "g".
16849 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
16851         * help-mode.el (help-mode-finish): Use derived-mode-p.
16852         Remove obsolete highlighting.
16854         * play/life.el (life-mode): Use define-derived-mode.  Derive from
16855         special-mode.
16856         (life): Let-bind inhibit-read-only.
16857         (life-setup): Avoid `setq'.  Use `life-mode'.
16859         * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
16860         which should not be needed any more.
16861         (package-menu-refresh, package-menu-describe-package): Use user-error.
16863         * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
16864         (eshell-post-rewrite-command-hook): Make obsolete.
16865         (eshell-parse-command): Simplify.
16866         (eshell-structure-basic-command): Remove unused arg `vocal-test'.
16867         (eshell--cmd): Declare.
16868         (eshell-parse-pipeline): Remove unused var `final-p'.
16869         Pass a dynvar to eshell-post-rewrite-command-hook.
16870         Implement the new eshell-post-rewrite-command-function.
16871         (eshell-invoke-directly): Remove unused arg `input'.
16872         * eshell/esh-io.el (eshell-io-initialize):
16873         Use eshell-post-rewrite-command-function (bug#15399).
16874         (eshell--apply-redirections): Rename from eshell-apply-redirections;
16875         adjust to new calling convention.
16876         (eshell-create-handles): Rename args to avoid clashing with dynvar
16877         `standard-output'.
16879 2013-09-17  Glenn Morris  <rgm@gnu.org>
16881         * simple.el (messages-buffer-mode): New major mode.
16882         (messages-buffer): New function.
16883         * startup.el (normal-top-level): Switch mode of *Messages* buffer.
16884         * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
16885         (ert-run-test): Use `messages-buffer' function.
16886         (ert--force-message-log-buffer-truncation): Ignore read-only.
16887         * help.el (view-echo-area-messages): Use `messages-buffer' function.
16888         * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
16890 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
16892         * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
16894         * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
16896 2013-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
16898         * icomplete.el (icomplete-in-buffer): New var.
16899         (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
16900         vars and replace them with functions.
16901         (icomplete-minibuffer-setup): Adjust accordingly.
16902         (icomplete--completion-table, icomplete--completion-predicate)
16903         (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
16904         New functions.
16905         (icomplete-forward-completions, icomplete-backward-completions)
16906         (icomplete-simple-completing-p, icomplete-exhibit)
16907         (icomplete-completions): Use them.
16908         (icomplete--in-region-buffer): New var.
16909         (icomplete--in-region-setup): New function.
16910         (icomplete-mode): Use it.
16912         * eshell/esh-opt.el: Fix last change to set lexical-vars properly
16913         (bug#15379).
16914         (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
16915         return args and options.
16916         (eshell-eval-using-options): Use the new return value of
16917         eshell--do-opts to set the options's vars in their scope.
16918         (eshell--set-option): Rename from eshell-set-option.
16919         Add arg `opt-vals'.
16920         (eshell--process-option): Rename from eshell-process-option.
16921         Add arg `opt-vals'.
16922         (eshell--process-args): Use an `opt-vals' alist to store the options's
16923         values during their processing and return them additionally to the
16924         remaining args.
16926 2013-09-15  Dmitry Gutov  <dgutov@yandex.ru>
16928         * progmodes/ruby-mode.el (ruby-operator-re): Consider line
16929         continuation character an operator, as far as indentation is
16930         concerned (Bug#15369).
16932 2013-09-15  Martin Rudalics  <rudalics@gmx.at>
16934         * window.el (window--state-put-2): Don't process buffer state
16935         when buffer doesn't exist any more (Bug#15382).
16937 2013-09-15  Glenn Morris  <rgm@gnu.org>
16939         * eshell/em-unix.el (eshell/rm):
16940         Make -f ignore missing files.  (Bug#15373)
16942         * eshell/esh-cmd.el (eshell--local-vars): New variable.  (Bug#15372)
16943         (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
16944         * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
16946 2013-09-14  Glenn Morris  <rgm@gnu.org>
16948         * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
16950 2013-09-13  Glenn Morris  <rgm@gnu.org>
16952         * dired-x.el (dired-guess-shell-alist-user): Doc fix.
16953         (dired-guess-default): Make `file' available in the env.  (Bug#15363)
16955 2013-09-13  Dmitry Antipov  <dmantipov@yandex.ru>
16957         * frame.el (x-focus-frame): Mark as declared in frame.c.
16959 2013-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
16961         * ls-lisp.el: Use advice-add.
16962         (original-insert-directory): Remove.
16963         (ls-lisp--insert-directory): Rename from insert-directory; add
16964         `orig-fun' argument.
16965         (insert-directory): Advise.
16967 2013-09-13  Eli Zaretskii  <eliz@gnu.org>
16969         * term.el (term-emulate-terminal): Decode the command string
16970         before passing it to term-command-hook.  (Bug#15337)
16972 2013-09-13  Glenn Morris  <rgm@gnu.org>
16974         * eshell/esh-util.el (ange-cache): Move declaration earlier.
16976         * eshell/esh-ext.el (eshell-search-path): Declare.
16978         * eshell/em-prompt.el (eshell/pwd): Autoload it.
16979         Otherwise an error occurs if eshell-dirs module not loaded.
16981         * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
16983 2013-09-13  Michael Albinus  <michael.albinus@gmx.de>
16985         * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
16986         `tramp-check-proper-host'.  Check for a valid method name.
16988         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
16989         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
16990         * net/tramp-sh.el (tramp-maybe-open-connection):
16991         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
16993         * net/tramp-cache.el (tramp-cache-print): Don't print text properties
16994         also for hash values.
16996 2013-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
16998         * term/ns-win.el (parameters): Don't declare as dynamic.
16999         (before-make-frame-hook): Don't add ineffective function.
17001         * eshell/*.el: Use lexical-binding (bug#15231).
17003 2013-09-12  Kenichi Handa  <handa@gnu.org>
17005         * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
17007 2013-09-12  Glenn Morris  <rgm@gnu.org>
17009         * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
17010         (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
17012         * subr.el (do-after-load-evaluation): Also give compiler warnings
17013         when obsolete files are used (except by obsolete files).
17015         * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
17016         in the status output, assume `filename' is the first.  (Bug#15322)
17018         * vc/vc.el (vc-deduce-fileset): Doc fix.
17020         * calc/calc-help.el (Info-goto-node):
17021         * progmodes/cperl-mode.el (Info-find-node):
17022         * vc/ediff.el (Info-goto-node): Update declarations.
17024         * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
17026         * vc/vc-bzr.el (vc-compilation-mode): Declare.
17027         (vc-bzr-pull): Require vc-dispatcher.
17028         * vc/vc-git.el (vc-compilation-mode): Declare.
17029         (vc-git-pull): Require vc-dispatcher.
17031         * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
17033         * progmodes/octave.el (help-button-action): Declare.
17035         * shell.el (shell-directory-tracker): Output error as a message
17036         rather than just returning it as a string.
17037         (shell-process-pushd): Remove useless use of message.
17039         * dframe.el (dframe-timer-fn):
17040         * files.el (dir-locals-read-from-file):
17041         * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
17042         (mpc-format):
17043         * reveal.el (reveal-post-command):
17044         * saveplace.el (load-save-place-alist-from-file):
17045         * shell.el (shell-resync-dirs):
17046         * w32-common-fns.el (x-get-selection-value):
17047         * emacs-lisp/copyright.el (copyright-find-copyright):
17048         * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
17049         * emulation/tpu-edt.el (tpu-copy-keyfile):
17050         * play/bubbles.el (bubbles--mark-neighbourhood):
17051         * progmodes/executable.el
17052         (executable-make-buffer-file-executable-if-script-p):
17053         * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
17055 2013-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
17057         Cleanup Eshell to rely less on dynamic scoping.
17058         * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
17059         last-value, and ext-command here.  Bind `args' closer to `body'.
17060         (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
17061         (eshell--args): Declare new dynamic var.
17062         (eshell-do-opt): Add argument `args'.  Bind our own usage-msg,
17063         last-value, and ext-command.  Pass `args' to `body'.
17064         (eshell-process-args): Bind eshell--args.
17065         (eshell-set-option): Use eshell--args.
17066         * eshell/eshell.el (eshell): Use derived-mode-p.
17067         * eshell/esh-var.el (eshell-parse-variable): Use backquote.
17068         (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
17069         (eshell-glob-function): Declare.
17070         * eshell/esh-util.el: Require cl-lib.
17071         (eshell-read-hosts-file): Avoid add-to-list.
17072         * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
17073         `err'.
17074         * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
17075         Declare.
17076         (eshell/diff): Remove unused var `err'.
17077         * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
17078         `killflag'.
17079         * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
17080         * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
17081         first use.
17082         * eshell/em-glob.el (eshell-glob-matches, message-shown):
17083         Move declaration before first use.
17084         * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
17085         * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
17086         rely on cl-return.
17088 2013-09-12  Glenn Morris  <rgm@gnu.org>
17090         * term/ns-win.el (global-map): Remove binding for ispell-next,
17091         deleted 1999-05-29.  (Bug#15357)
17093 2013-09-11  Glenn Morris  <rgm@gnu.org>
17095         * echistory.el (electric-command-history): Remove call to deleted func.
17097         * play/landmark.el (landmark-mode): Fix typos.
17099         * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
17100         Check cvs-sort-ignore-file is bound.
17102         * savehist.el: No need for cl when compiling on Emacs.
17104 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
17106         * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
17107         (bug#15338).
17108         (eshell-self-insert-command, eshell-send-invisible):
17109         Remove unused argument.
17110         (eshell-handle-control-codes): Remove unused var `orig'.
17111         Avoid delete-backward-char.
17113         * files.el (set-auto-mode): Simplify a bit further.
17115 2013-09-11  Glenn Morris  <rgm@gnu.org>
17117         * files.el (interpreter-mode-alist): Remove \\` \\' parts.
17118         (set-auto-mode): Don't regexp-quote elements.
17119         * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
17120         * progmodes/cc-mode.el (interpreter-mode-alist):
17121         * progmodes/ruby-mode.el (interpreter-mode-alist):
17122         Revert previous change.
17124 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
17126         * play/snake.el (snake-mode):
17127         * play/mpuz.el (mpuz-mode):
17128         * play/landmark.el (lm-mode):
17129         * play/blackbox.el (blackbox-mode):
17130         * play/5x5.el (5x5-mode):
17131         * obsolete/options.el (Edit-options-mode):
17132         * net/quickurl.el (quickurl-list-mode):
17133         * net/newst-treeview.el (newsticker-treeview-mode):
17134         * mail/rmailsum.el (rmail-summary-mode):
17135         * mail/mspools.el (mspools-mode):
17136         * locate.el (locate-mode):
17137         * ibuffer.el (ibuffer-mode):
17138         * emulation/ws-mode.el (wordstar-mode):
17139         * emacs-lisp/debug.el (debugger-mode):
17140         * array.el (array-mode):
17141         * net/eudc.el (eudc-mode): Use define-derived-mode.
17142         * net/mairix.el (mairix-searches-mode-font-lock-keywords):
17143         Move initialization into declaration.
17144         (mairix-searches-mode): Use define-derived-mode.
17145         * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
17146         (eudc-edit-hotlist): Use dolist.
17147         * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
17148         (Man-mode): Use define-derived-mode.
17149         * info.el (Info-edit-mode-map): Rename from Info-edit-map.
17150         (Info-edit-mode): Use define-derived-mode.
17151         (Info-cease-edit): Use Info-mode.
17152         * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
17153         into declaration.
17154         (eshell-mode): Use define-derived-mode.
17155         * chistory.el (command-history-mode-map): Rename from
17156         command-history-map.
17157         (command-history-mode): Use define-derived-mode.
17158         (Command-history-setup): Remove function.
17159         * calc/calc.el (calc-trail-mode-map): New var.
17160         (calc-trail-mode): Use define-derived-mode.
17161         (calc-trail-buffer): Set calc-main-buffer manually.
17162         * bookmark.el (bookmark-insert-annotation): New function.
17163         (bookmark-edit-annotation): Use it.
17164         (bookmark-edit-annotation-mode): Make it a proper major mode.
17165         (bookmark-send-edited-annotation): Use derived-mode-p.
17166         * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
17167         closer to its ideal place.  Use \' to match EOS.
17169         * profiler.el (profiler-calltree-find): Use function-equal.
17171 2013-09-10  Glenn Morris  <rgm@gnu.org>
17173         * files.el (interpreter-mode-alist): Convert to regexps.
17174         (set-auto-mode): Adapt for this.  (Bug#15306)
17175         * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
17176         Comment out unused variable.
17177         * progmodes/cc-mode.el (interpreter-mode-alist):
17178         * progmodes/python.el (interpreter-mode-alist):
17179         * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
17180         * progmodes/sh-script.el (sh-set-shell):
17181         No longer use interpreter-mode-alist to get list of shells.
17183         * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
17185 2013-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
17187         * simple.el: Use set-temporary-overlay-map for universal-argument.
17188         (universal-argument-map): Don't use default-bindings (bug#15317).
17189         Bind switch-frame explicitly.  Replace universal-argument-minus with
17190         a conditional binding.
17191         (universal-argument-num-events, saved-overriding-map): Remove.
17192         (restore-overriding-map): Remove.
17193         (universal-argument--mode): Rename from save&set-overriding-map,
17194         and rewrite.
17195         (universal-argument, universal-argument-more, negative-argument)
17196         (digit-argument): Adjust accordingly.
17197         (universal-argument-minus): Remove.
17198         (universal-argument-other-key): Remove.
17200         * subr.el (with-demoted-errors): Add `format' argument.
17202 2013-09-10  Michael Albinus  <michael.albinus@gmx.de>
17204         * net/tramp.el (tramp-cleanup): Remove.  Functionality added to
17205         `tramp-cleanup-connection'.
17207         * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
17208         parameters KEEP-DEBUG and KEEP-PASSWORD.
17210         * net/tramp.el (tramp-file-name-handler):
17211         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
17212         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
17213         (tramp-maybe-open-connection):
17214         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
17215         Use `tramp-cleanup-connection'.
17217         * net/tramp-sh.el (tramp-maybe-open-connection):
17218         Catch 'uname-changed inside the progress reporter.
17220 2013-09-10  Glenn Morris  <rgm@gnu.org>
17222         * simple.el (read-minibuffer): Unbreak it.  (Bug#15318)
17224         * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
17225         returns "alternate access method" in mode (eg "-rw-r--r--.").
17227 2013-09-08  Glenn Morris  <rgm@gnu.org>
17229         * saveplace.el (load-save-place-alist-from-file):
17230         Demote errors.  (Bug#15305)
17232 2013-09-08  Michael Albinus  <michael.albinus@gmx.de>
17234         Improve compatibility with older Emacsen, and XEmacs.
17236         * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
17237         only if it is bound.  It isn't for XEmacs.
17238         (with-tramp-progress-reporter): Do not let-bind `result'.
17239         This yields to scoping errors in XEmacs.
17240         (tramp-handle-make-auto-save-file-name): New function, moved from
17241         tramp-sh.el.
17243         * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
17244         for `make-auto-save-file-name'.
17245         (tramp-adb--gnu-switches-to-ash):
17246         Use `tramp-compat-replace-regexp-in-string'.
17248         * net/tramp-cache.el (tramp-cache-print): Call
17249         `substring-no-properties' only if it is bound.  It isn't for XEmacs.
17251         * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
17252         bound.  It isn't for XEmacs.
17254         * net/tramp-compat.el (tramp-compat-copy-file):
17255         Catch `wrong-number-of-arguments' error.
17256         (tramp-compat-replace-regexp-in-string): New defun.
17258         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
17259         for `make-auto-save-file-name'.
17260         (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
17261         `copy-file'.
17262         (tramp-gvfs-file-gvfs-monitor-file-process-filter)
17263         (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
17264         (tramp-synce-list-devices): Use `push' instead of `pushnew'.
17266         * net/tramp-gw.el (tramp-gw-open-network-stream):
17267         Use `tramp-compat-replace-regexp-in-string'.
17269         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
17270         Call `tramp-handle-make-auto-save-file-name'.
17271         (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
17272         (tramp-sh-file-gvfs-monitor-dir-process-filter)
17273         (tramp-sh-file-inotifywait-process-filter):
17274         Use `tramp-compat-replace-regexp-in-string'.
17275         (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
17277         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
17278         for `make-auto-save-file-name'.
17279         (tramp-smb-handle-copy-directory):
17280         Call `tramp-compat-replace-regexp-in-string'.
17281         (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
17282         (tramp-smb-handle-copy-file): Improve error message.
17283         (tramp-smb-handle-rename-file): Rename directly only in case
17284         `newname' does not exist yet.  This is a restriction of smbclient.
17285         (tramp-smb-maybe-open-connection): Rerun the function only when
17286         `auth-sources' is non-nil.
17288 2013-09-08  Kenichi Handa  <handa@gnu.org>
17290         * international/characters.el: Set category "^" (Combining) for
17291         more characters.
17293 2013-09-07  Alan Mackenzie  <acm@muc.de>
17295         Correctly fontify Java class constructors.
17296         * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
17297         in Java Mode.
17298         (c-recognize-typeless-decls): Set the Java value to t.
17299         * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
17300         While handling a "(", add a check for, effectively, Java, and handle a
17301         "typeless" declaration there.
17303 2013-09-07  Roland Winkler  <winkler@gnu.org>
17305         * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
17306         field subtitle for entry type book.
17308 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
17310         * minibuffer.el: Make minibuffer-complete call completion-in-region
17311         rather than other way around.
17312         (completion--some, completion-pcm--find-all-completions):
17313         Don't delay signals when debugging.
17314         (minibuffer-completion-contents): Beware fields within the
17315         minibuffer contents.
17316         (completion-all-sorted-completions): Use defvar-local.
17317         (completion--do-completion, completion--cache-all-sorted-completions)
17318         (completion-all-sorted-completions, minibuffer-force-complete):
17319         Add args `beg' and `end'.
17320         (completion--in-region-1): New fun, extracted from minibuffer-complete.
17321         (minibuffer-complete): Use completion-in-region.
17322         (completion-complete-and-exit): New fun, extracted from
17323         minibuffer-complete-and-exit.
17324         (minibuffer-complete-and-exit): Use it.
17325         (completion--complete-and-exit): Rename from
17326         minibuffer--complete-and-exit.
17327         (completion-in-region--single-word): New function, extracted from
17328         minibuffer-complete-word.
17329         (minibuffer-complete-word): Use it.
17330         (display-completion-list): Make `common-substring' argument obsolete.
17331         (completion--in-region): Call completion--in-region-1 instead of
17332         minibuffer-complete.
17333         (completion-help-at-point): Pass boundaries to
17334         minibuffer-completion-help as args rather than via an overlay.
17335         (completion-pcm--string->pattern): Use `any-delim'.
17336         (completion-pcm--optimize-pattern): New function.
17337         (completion-pcm--pattern->regex): Handle `any-delim'.
17338         * icomplete.el (icomplete-forward-completions)
17339         (icomplete-backward-completions, icomplete-completions):
17340         Adjust calls to completion-all-sorted-completions and
17341         completion--cache-all-sorted-completions.
17342         (icomplete-with-completion-tables): Default to t.
17343         * emacs-lisp/crm.el (crm--current-element): Rename from
17344         crm--select-current-element.  Don't put an overlay but return the
17345         boundaries instead.
17346         (crm--completion-command): Take two new args to bind to the boundaries.
17347         (crm-completion-help): Adjust accordingly.
17348         (crm-complete): Use completion-in-region.
17349         (crm-complete-word): Use completion-in-region--single-word.
17350         (crm-complete-and-exit): Use completion-complete-and-exit.
17352 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
17354         * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
17355         than dynamically.
17357 2013-09-06  Juri Linkov  <juri@jurta.org>
17359         * info.el (Info-display-images-node): When image file doesn't exist
17360         display text version of the image if it's provided in the Info file.
17361         Otherwise, display the location of missing image from SRC attribute.
17362         Add help-echo text property from ALT attribute.  (Bug#15279)
17364 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
17366         * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
17367         (edit-abbrevs-mode): Use define-derived-mode.
17369         * epa.el (epa--encode-coding-string, epa--decode-coding-string)
17370         (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
17371         that it's defined.
17372         (epa-key-list-mode, epa-key-mode, epa-info-mode):
17373         Use define-derived-mode.
17375         * epg.el (epg-start-encrypt): Minor CSE simplification.
17377 2013-09-06  William Xu  <william.xwl@gmail.com>
17379         * arc-mode.el: Add support for 7za (bug#15264).
17380         (archive-7z-program): New var.
17381         (archive-zip-extract, archive-zip-expunge, archive-zip-update)
17382         (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
17383         (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
17385 2013-09-06  Michael Albinus  <michael.albinus@gmx.de>
17387         Remove URL syntax.
17389         * net/tramp.el (tramp-syntax, tramp-prefix-format)
17390         (tramp-postfix-method-format, tramp-prefix-ipv6-format)
17391         (tramp-postfix-ipv6-format, tramp-prefix-port-format)
17392         (tramp-postfix-host-format, tramp-file-name-regexp)
17393         (tramp-completion-file-name-regexp)
17394         (tramp-completion-dissect-file-name)
17395         (tramp-handle-substitute-in-file-name): Remove 'url case.
17396         (tramp-file-name-regexp-url)
17397         (tramp-completion-file-name-regexp-url): Remove constants.
17399 2013-09-06  Glenn Morris  <rgm@gnu.org>
17401         * replace.el (replace-string): Doc fix re start/end.  (Bug#15275)
17403 2013-09-05  Dmitry Gutov  <dgutov@yandex.ru>
17405         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
17406         keywords" below "here-doc beginnings" (Bug#15270).
17408 2013-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17410         * subr.el (pop): Use `car-safe'.
17411         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
17412         to detect unused `pop' return value.
17414         * progmodes/python.el (python-nav-beginning-of-block): Remove unused
17415         var `block-regexp'.
17416         (python-nav--forward-sexp): Remove unused var `re-search-fn'.
17417         (python-fill-string): Remove unused var `marker'.
17418         (python-skeleton-add-menu-items): Remove unused var `items'.
17420         * international/mule-cmds.el: Require CL.
17421         (find-coding-systems-for-charsets): Avoid add-to-list.
17422         (sanitize-coding-system-list): New function, extracted from
17423         select-safe-coding-system-interactively.
17424         (select-safe-coding-system-interactively): Use it.
17425         (read-input-method-name): Accept symbols for `default'.
17427         * emacs-lisp/advice.el (defadvice): Add indent rule.
17429 2013-09-05  Daniel Hackney  <dan@haxney.org>
17431         * dired-x.el:
17432         * net/ange-ftp.el:
17433         * net/browse-url.el:
17434         * net/dbus.el:
17435         * net/eudc.el:
17436         * net/eudcb-ldap.el:
17437         * net/eww.el:
17438         * net/imap.el:
17439         * printing.el:
17440         * vc/ediff-diff.el:
17441         * vc/ediff-init.el:
17442         * vc/ediff-merg.el:
17443         * vc/ediff-mult.el:
17444         * vc/ediff-util.el:
17445         * vc/ediff-wind.el:
17446         * vc/ediff.el:
17447         * vc/emerge.el:
17448         * vc/pcvs.el:
17449         * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
17450         byte compiler.  Remove some unused let-bound variables.
17452 2013-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17454         * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
17455         a "ref-cell", since it gets better optimized (bug#14883).
17457 2013-09-05  Glenn Morris  <rgm@gnu.org>
17459         * progmodes/cc-awk.el (c-forward-sws): Declare.
17461 2013-09-04  Glenn Morris  <rgm@gnu.org>
17463         * generic-x.el [rul-generic-mode]: Require cc-mode.
17464         (c++-mode-syntax-table): Declare.
17465         (rul-generic-mode-syntax-table): Init in the defvar.
17467 2013-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
17469         * vc/vc-dispatcher.el (vc-run-delayed): New macro.
17470         (vc-do-command, vc-set-async-update):
17471         * vc/vc-mtn.el (vc-mtn-dir-status):
17472         * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
17473         (vc-hg-pull, vc-hg-merge-branch):
17474         * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
17475         (vc-git-merge-branch):
17476         * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
17477         (vc-cvs-dir-status-files):
17478         * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
17479         (vc-bzr-dir-status-files):
17480         * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
17481         * vc/vc-annotate.el: Use lexical-binding.
17482         (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
17483         (vc-sentinel-movepoint): Declare.
17484         (vc-annotate): Don't use `goto-line'.
17485         * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
17486         (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
17487         (vc-sentinel-movepoint): Declare.
17488         * vc/vc-svn.el: Use lexical-binding.
17489         (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
17490         * vc/vc-sccs.el:
17491         * vc/vc-rcs.el: Use lexical-binding.
17493         * autorevert.el (auto-revert-notify-handler): Explicitly ignore
17494         `deleted'.  Don't drop errors silently.
17496         * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
17498 2013-09-04  Xue Fuqiao  <xfq.free@gmail.com>
17500         * vc/vc.el (vc-ignore): Rewrite.
17501         (vc-default-ignore): New function.
17502         (vc-default-ignore-completion-table): Use find-ignore-file.
17504         * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
17505         * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
17506         * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
17507         Remove.  Most code moved to vc.el.
17509 2013-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
17511         * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
17512         * net/tramp-smb.el (tramp-smb-get-file-entries):
17513         * net/tramp-sh.el (tramp-sh-handle-insert-directory)
17514         (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
17516         * net/eww.el (eww-display-raw): Remove unused argument `charset'.
17517         Update call to it.
17518         (eww-change-select): Remove unused var `properties'.
17519         (eww-make-unique-file-name): Remove unused var `base'.
17521         * finder.el (finder-compile-keywords): Don't mess with windows.
17523         * calculator.el (calculator-funcall): Fix typo in last change.
17525         * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
17527         * emacs-lisp/package.el (package-activate-1): Don't let a missing
17528         <pkg>-autoloads.el file stop us.
17530         * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
17531         warnings, and factor out common code.
17533 2013-09-03  Dmitry Gutov  <dgutov@yandex.ru>
17535         * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
17536         two-character operators and whether the character preceding them
17537         changes their meaning (Bug#15208).
17539 2013-09-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
17541         Format code sent to Python shell for robustness.
17542         * progmodes/python.el (python-shell-buffer-substring):
17543         New function.
17544         (python-shell-send-region, python-shell-send-buffer): Use it.
17546 2013-09-02  Michael Albinus  <michael.albinus@gmx.de>
17548         * net/tramp-compat.el (tramp-compat-user-error): Move it ...
17549         * net/tramp.el (tramp-user-error): ... here.
17550         (tramp-find-method, tramp-check-proper-host)
17551         (tramp-dissect-file-name, tramp-debug-message)
17552         (tramp-handle-shell-command):
17553         * net/tramp-adb.el (tramp-adb-handle-shell-command):
17554         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
17556         * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
17558 2013-09-02  Martin Rudalics  <rudalics@gmx.at>
17560         * avoid.el (mouse-avoidance-point-position)
17561         (mouse-avoidance-too-close-p): Handle case where posn-at-point
17562         returns nil.
17564 2013-09-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
17566         * progmodes/python.el (python-shell-completion-get-completions):
17567         Drop use of deleted `comint-last-prompt-overlay'.
17568         (python-nav-if-name-main): New command.
17570 2013-09-01  Glenn Morris  <rgm@gnu.org>
17572         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
17573         Avoid leading space in $wins.  Otherwise the sed command used by
17574         eg compile-main ends up containing "/*.el".  (Bug#15170)
17576         * frame.el (frame-background-mode): Doc fix.  (Bug#15226)
17578 2013-08-30  Glenn Morris  <rgm@gnu.org>
17580         * emacs-lisp/bytecomp.el (byte-recompile-directory):
17581         Fix is-this-a-directory logic.  (Bug#15220)
17583 2013-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
17585         * textmodes/css-mode.el: Use SMIE.
17586         (css-smie-grammar): New var.
17587         (css-smie--forward-token, css-smie--backward-token)
17588         (css-smie-rules): New functions.
17589         (css-mode): Use them.
17590         (css-navigation-syntax-table): Remove var.
17591         (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
17592         (css-indent-calculate, css-indent-line): Remove functions.
17594         Misc changes to reduce use of `(lambda...); and other cleanups.
17595         * cus-edit.el: Use lexical-binding.
17596         (customize-push-and-save, customize-apropos)
17597         (custom-buffer-create-internal): Use closures.
17598         * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
17599         * progmodes/ada-xref.el: Use setq.
17600         * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
17601         * dframe.el: Use lexical-binding.
17602         (dframe-frame-mode): Fix calling convention for hooks.  Use a closure.
17603         * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
17604         * descr-text.el: Use lexical-binding.
17605         (describe-text-widget, describe-text-sexp, describe-property-list):
17606         Use closures.
17607         * comint.el (comint-history-isearch-push-state): Use a closure.
17608         * calculator.el: Use lexical-binding.
17609         (calculator-number-to-string): Make it work with lexical-binding.
17610         (calculator-funcall): Same and use cl-letf.
17612         * emacs-lisp/lisp.el (lisp--company-doc-buffer)
17613         (lisp--company-doc-string, lisp--company-location): New functions.
17614         (lisp-completion-at-point): Use them to improve Company support.
17616         * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
17617         params of lambda expressions.
17618         (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
17619         (ruby-smie--opening-pipe-p): New function.
17620         (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
17621         symbols and matched |...| for formal params.
17622         (ruby-smie-rules): Don't let the formal params of a "do" prevent it
17623         from being treated as hanging.  Handle "rescue".
17625 2013-08-29  Glenn Morris  <rgm@gnu.org>
17627         * progmodes/cc-engine.el (c-pull-open-brace):
17628         Move definition before use.
17630 2013-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
17632         * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
17633         are immutable.  Don't use `unsafe' any more.
17634         (cl--defsubst-expand): Don't substitute at the same time as keeping
17635         a residual unused let-binding.  Don't use `unsafe' any more.
17637 2013-08-29  Glenn Morris  <rgm@gnu.org>
17639         * calendar/cal-china.el (calendar-chinese-year-cache):
17640         Recenter on 2015.
17642         * nxml/nxml-util.el (nxml-debug-clear-inside):
17643         Use cl-loop rather than loop.
17645         * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
17647         * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
17649 2013-08-28  Glenn Morris  <rgm@gnu.org>
17651         * progmodes/antlr-mode.el: No need to require cc-mode twice.
17653         * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
17655         * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
17657 2013-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17659         * simple.el (repeat-complex-command--called-interactively-skip):
17660         New function.
17661         (repeat-complex-command): Use it (bug#14136).
17663         * progmodes/cc-mode.el: Minor cleanup of var declarations.
17664         (c-define-abbrev-table): Add `doc' argument.
17665         (c-mode-abbrev-table, c++-mode-abbrev-table)
17666         (objc-mode-abbrev-table, java-mode-abbrev-table)
17667         (idl-mode-abbrev-table, pike-mode-abbrev-table)
17668         (awk-mode-abbrev-table): Use it.
17669         (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
17670         (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
17671         (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
17672         (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
17673         Move initialization into the declaration; and remove any
17674         autoload cookie.
17676         * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
17677         and dynamic let binding.
17679         * vc/smerge-mode.el: Remove redundant :group args.
17681         * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
17682         to load-path.
17684 2013-08-28  Juri Linkov  <juri@jurta.org>
17686         * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
17687         arg DONT-DOWNCASE-LAST of `read-key-sequence'.
17688         (isearch-other-meta-char): Handle an undefined shifted printing
17689         character by downshifting it.  (Bug#15200)
17691 2013-08-28  Juri Linkov  <juri@jurta.org>
17693         * isearch.el (isearch-search): Change regexp error message for
17694         non-regexp searches.  (Bug#15166)
17696 2013-08-28  Paul Eggert  <eggert@cs.ucla.edu>
17698         * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
17699         for portability to hosts where /bin/sh has problems.
17701 2013-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17703         * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
17705 2013-08-27  Juri Linkov  <juri@jurta.org>
17707         * isearch.el (isearch-other-meta-char): Don't store kmacro commands
17708         in the keyboard macro.  (Bug#15126)
17710 2013-08-27  Juri Linkov  <juri@jurta.org>
17712         * isearch.el (isearch-quote-char): Comment out converting unibyte
17713         to multibyte, thus syncing with its `quoted-insert' counterpart.
17714         (Bug#15166)
17716 2013-08-27  Martin Rudalics  <rudalics@gmx.at>
17718         * window.el (display-buffer-use-some-window): Add missing
17719         argument in call of get-largest-window (Bug#15185).
17720         Reported by Stephen Leake.
17722 2013-08-27  Glenn Morris  <rgm@gnu.org>
17724         * emacs-lisp/package.el (package-buffer-info): Fix message typo.
17726 2013-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
17728         * progmodes/python.el (python-font-lock-keywords): Don't return nil
17729         from a matcher-function unless there's no more matches (bug#15161).
17731 2013-08-26  Michael Albinus  <michael.albinus@gmx.de>
17733         * minibuffer.el: Revert change from 2013-08-20.
17735         * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
17736         with text property `tramp-default', if appropriate.
17737         (tramp-check-proper-host): New defun.
17738         (tramp-dissect-file-name): Do not check hostname.  Revert change
17739         of 2013-03-18.
17740         (tramp-backtrace): Make VEC-OR-PROC optional.
17742         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
17743         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
17744         * net/tramp-sh.el (tramp-maybe-open-connection):
17745         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
17746         Apply `tramp-check-proper-host'.
17748 2013-08-26  Tassilo Horn  <tsdh@gnu.org>
17750         * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
17751         lambda expression in order to have `describe-variable' display it.
17753 2013-08-26  Michael Albinus  <michael.albinus@gmx.de>
17755         * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
17756         BUF can be optional.  (Bug#15186)
17758 2013-08-25  Xue Fuqiao  <xfq.free@gmail.com>
17760         * progmodes/flymake.el (flymake-get-real-file-name-function):
17761         Fix broken customization.  (Bug#15184)
17763 2013-08-25  Alan Mackenzie  <acm@muc.de>
17765         Improve indentation of bracelists defined by macros (without "=").
17767         * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
17768         expansion begins with "{", regard it as bracelist when it doesn't
17769         contain a ";".
17771         Parse C++ inher-intro when there's a template split over 2 lines.
17773         * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
17774         rigorously the search for "class" etc. followed by ":".
17776         * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
17777         random languages a regexp which never matches rather than nil.
17779         Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
17781         * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
17782         (c-awk-regexp-one-line-possibly-open-char-list-re)
17783         (c-awk-one-line-possibly-open-regexp-re)
17784         (c-awk-one-line-non-syn-ws*-re): Remove.
17785         (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
17786         (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
17787         (c-awk-space*-unclosed-regexp-/-re): New constants.
17788         (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
17789         aren't regexp delimiters.
17791         * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
17792         handling for a rare situation in AWK Mode involving unterminated
17793         strings/regexps.
17795 2013-08-23  Glenn Morris  <rgm@gnu.org>
17797         * files.el (auto-mode-alist): Use sh-mode for .bash_history.
17799         * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
17801         * files.el (create-file-buffer): If the result would begin with
17802         spaces, prepend a "|" instead of removing them.  (Bug#15162)
17804 2013-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
17806         * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
17807         text-properties (bug#15155).
17809         * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
17810         exist any more.
17811         (calc-keypad-redraw): Remove unused var `pad'.
17812         (calc-keypad-press): Remove unused var `menu'.
17814 2013-08-23  Martin Rudalics  <rudalics@gmx.at>
17816         * window.el (display-buffer-pop-up-frame):
17817         Call pop-up-frame-function with BUFFER current so `make-frame' will
17818         use it as the new frame's buffer (Bug#15133).
17820 2013-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
17822         * calendar/timeclock.el: Minor cleanups.
17823         (timeclock-ask-before-exiting, timeclock-use-display-time):
17824         Use `symbol'.
17825         (timeclock-modeline-display): Define as alias before the
17826         actual definition.
17827         (timeclock-mode-line-display): Use define-minor-mode.
17828         (timeclock-day-list-template): Make it a function, add an argument.
17829         (timeclock-day-list-required, timeclock-day-list-length)
17830         (timeclock-day-list-debt, timeclock-day-list-span)
17831         (timeclock-day-list-break): Adjust calls accordingly.
17833 2013-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
17835         * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
17836         Use read--expression so that completion works again.
17838 2013-08-21  Sam Steingold  <sds@gnu.org>
17840         Add rudimentary inferior shell interaction
17841         * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
17842         (sh-set-shell): Reset it.
17843         (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
17844         New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
17846 2013-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17848         * align.el: Use lexical-binding.
17849         (align-region): Simplify accordingly.
17851 2013-08-20  Michael Albinus  <michael.albinus@gmx.de>
17853         * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
17855         * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
17856         `non-essential' up.
17858 2013-08-17  Michael Albinus  <michael.albinus@gmx.de>
17860         * net/tramp.el:
17861         * net/tramp-adb.el:
17862         * net/tramp-cmds.el:
17863         * net/tramp-ftp.el:
17864         * net/tramp-gvfs.el:
17865         * net/tramp-gw.el:
17866         * net/tramp-sh.el: Don't wrap external variable declarations by
17867         `eval-when-compile'.
17869 2013-08-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17871         * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
17872         now that Emacs supports ImageMagick animations.
17874 2013-08-16  Michael Albinus  <michael.albinus@gmx.de>
17876         * net/tramp-cmds.el (top): Don't declare `buffer-name'.
17877         (tramp-append-tramp-buffers): Rewrite buffer local variables part.
17879 2013-08-16  Martin Rudalics  <rudalics@gmx.at>
17881         * window.el (mouse-autoselect-window-select): Do autoselect when
17882         mouse pointer is on margin.
17884 2013-08-16  William Parsons  <wbparsons@alum.mit.edu>  (tiny change)
17886         * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV.  (Bug#1972)
17888 2013-08-16  Glenn Morris  <rgm@gnu.org>
17890         * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
17891         Handle "Remote Directory" response of some clients.  (Bug#15058)
17893         * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
17894         Tweak warning.  (Bug#14926)
17896         * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
17897         (menu-bar-tools-menu): Simplify news and mail items.  (Bug#15095)
17899         * image-mode.el (image-mode-map): Add menu items to reverse,
17900         increase, decrease, reset animation speed.
17901         (image--set-speed, image-increase-speed, image-decrease-speed)
17902         (image-reverse-speed, image-reset-speed): New functions.
17903         (image-mode-map): Add bindings for speed commands.
17905         * image.el (image-animate-get-speed, image-animate-set-speed):
17906         New functions.
17907         (image-animate-timeout): Respect image :speed property.
17909 2013-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
17911         * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
17912         previous line (bug#15101).
17913         (debugger-eval-expression, debugger-record-expression):
17914         Use read--expression (bug#15102).
17916 2013-08-15  Michael Albinus  <michael.albinus@gmx.de>
17918         Remove byte compiler warnings, visible when compiling with
17919         `byte-compile-force-lexical-warnings' set to t.
17921         * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
17922         (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
17923         (tramp-handle-unhandled-file-name-directory)
17924         (tramp-handle-file-notify-add-watch, tramp-action-login)
17925         (tramp-action-succeed, tramp-action-permission-denied)
17926         (tramp-action-terminal, tramp-action-process-alive): Prefix unused
17927         arguments with "_".
17929         * net/tramp-adb.el (tramp-adb-parse-device-names)
17930         (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
17931         (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
17932         (tramp-adb-handle-file-truename): Remove unused arguments.
17934         * net/tramp-cache.el (tramp-flush-directory-property)
17935         (tramp-flush-connection-property, tramp-list-connections)
17936         (tramp-parse-connection-properties): Prefix unused arguments with "_".
17938         * net/tramp-compat.el (tramp-compat-make-temp-file):
17939         Rename FILENAME to F.
17941         * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
17942         (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
17943         (tramp-zeroconf-parse-workstation-device-names)
17944         (tramp-zeroconf-parse-webdav-device-names)
17945         (tramp-synce-parse-device-names): Prefix unused arguments with "_".
17947         * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
17948         (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
17950         * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
17951         arguments.
17952         (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
17953         (tramp-sh-handle-insert-file-contents-literally)
17954         (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
17955         with "_".
17956         (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
17957         Remove unused variables.
17959         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
17960         (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
17961         (tramp-smb-read-file-entry): Prefix unused arguments with "_".
17963         * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
17964         Make them a defconst.
17965         (tramp-uuencode-region): Remove unused variable.
17967 2013-08-14  Juanma Barranquero  <lekktu@gmail.com>
17969         * frameset.el (frameset--prop-setter): New function.
17970         (frameset-prop): Add gv-setter declaration.
17971         (frameset-filter-minibuffer): Deal with the case that the minibuffer
17972         parameter was already set in FILTERED.  Doc fix.
17973         (frameset--record-minibuffer-relationships): Allow saving a
17974         minibufferless frame without its corresponding minibuffer frame.
17975         (frameset--reuse-frame): Accept a match from an orphaned minibufferless
17976         frame, if the frame id matches.
17977         (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
17978         frames before orphaned ones.
17979         (frameset-restore): Warn about orphaned windows, instead of error out.
17981 2013-08-14  Martin Rudalics  <rudalics@gmx.at>
17983         * window.el (window-make-atom): Don't overwrite parameter
17984         already present.
17985         (display-buffer-in-atom-window): Handle special case where we
17986         split an already atomic window.
17987         (window--major-non-side-window, display-buffer-in-side-window)
17988         (window--side-check): Ignore minibuffer window when walking
17989         window tree.
17990         (window-deletable-p): Return 'frame only if no other frame uses
17991         our minibuffer window.
17992         (record-window-buffer): Run buffer-list-update-hook.
17993         (split-window): Make sure window--check-frame won't destroy an
17994         existing atomic window in case the new window gets nested
17995         inside.
17996         (display-buffer-at-bottom): Ignore minibuffer window when
17997         walking window tree.  Don't split a side window.
17998         (pop-to-buffer): Don't set-buffer here, the select-window call
17999         should do that.
18000         (mouse-autoselect-window-select): Autoselect only if we are in the
18001         text portion of the window.
18003 2013-08-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18005         * net/shr.el (shr-parse-image-data): New function to grab both the
18006         data itself and the Content-Type.
18007         (shr-put-image): Use it.
18009         * net/eww.el (eww-display-image): Ditto.
18011         * image.el (image-content-type-suffixes): New variable.
18013 2013-08-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
18015         * progmodes/python.el (python-imenu--build-tree)
18016         (python-imenu--put-parent): Simplify and Fix (GH bug 146).
18018 2013-08-13  Xue Fuqiao  <xfq.free@gmail.com>
18020         * simple.el (backward-word): Mention the optional argument.
18022 2013-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
18024         * frameset.el (frameset--make): Rename constructor from make-frameset.
18025         (frameset-p, frameset-valid-p): Don't autoload.
18026         (frameset-valid-p): Use normal accessors.
18028 2013-08-13  Glenn Morris  <rgm@gnu.org>
18030         * progmodes/compile.el (compile-command): Tweak example in doc.
18031         * obsolete/scribe.el (scribe-mode):
18032         * progmodes/mixal-mode.el (mixal-mode): Quote buffer name.  (Bug#15053)
18034         * mail/feedmail.el (feedmail-confirm-outgoing)
18035         (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
18037         * cus-start.el (truncate-partial-width-windows): Fix type.
18039         * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
18041         * net/shr.el (shr-table-horizontal-line): Fix custom type.
18043 2013-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
18045         * emacs-lisp/timer.el (timer--time-setter): New function.
18046         (timer--time): Use it as gv-setter.
18048         * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
18049         setter is not a symbol.
18051 2013-08-12  Grégoire Jadi  <daimrod@gmail.com>
18053         * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
18054         if sending fails.  This makes debugging easier.
18056 2013-08-12  Juanma Barranquero  <lekktu@gmail.com>
18058         * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
18059         2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
18060         https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
18062 2013-08-12  Eli Zaretskii  <eliz@gnu.org>
18064         * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
18066 2013-08-12  Glenn Morris  <rgm@gnu.org>
18068         * format.el (format-annotate-function):
18069         Handle read-only text properties in the source.  (Bug#14887)
18071 2013-08-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18073         * net/eww.el (eww-display-html): Ignore coding system errors.
18074         One web site uses "utf-8lias" as the coding system.
18076 2013-08-11  Juanma Barranquero  <lekktu@gmail.com>
18078         * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
18080 2013-08-10  Juanma Barranquero  <lekktu@gmail.com>
18082         * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
18083         (tutorial--detailed-help): Remove unused local variables.
18084         (tutorial--save-tutorial-to): Use ignore-errors.
18085         (help-with-tutorial): Use looking-at-p.
18087         * view.el (view-buffer-other-window, view-buffer-other-frame):
18088         Mark unused arguments.
18090         * woman.el (woman-parse-colon-path, woman-parse-colon-path)
18091         (woman-select-symbol-fonts, woman, woman-find-file)
18092         (woman-insert-file-contents, woman-non-underline-faces):
18093         Use string-match-p.
18094         (woman1-unquote): Move declaration.
18096         * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
18097         (xml-parse-dtd): Use looking-at-p, string-match-p.  Mark unused
18098         argument.  Remove unused local variable.
18099         (xml-parse-elem-type): Use string-match-p.
18100         (xml-substitute-numeric-entities): Use ignore-errors.
18102         * calculator.el (calculator): Mark unused argument.
18103         (calculator-paste, calculator-quit, calculator-integer-p):
18104         Use ignore-errors.
18105         (calculator-string-to-number, calculator-decimal, calculator-exp)
18106         (calculator-op-or-exp): Use string-match-p.
18108         * dired.el (dired-buffer-more-recently-used-p): Declare.
18109         (dired-insert-set-properties, dired-insert-old-subdirs):
18110         Use ignore-errors.
18112         * dired-aux.el (dired-compress): Use ignore-errors.
18113         (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
18114         (dired-do-async-shell-command, dired-do-shell-command)
18115         (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
18116         (dired-insert-subdir-validate): Use string-match-p.
18117         (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
18118         (dired-add-entry): Use string-match-p, looking-at-p.
18119         (dired-insert-subdir-newpos): Remove unused local variable.
18121         * filenotify.el (file-notify-callback): Remove unused local variable.
18123         * filesets.el (filesets-error): Mark unused argument.
18124         (filesets-which-command-p, filesets-filter-dir-names)
18125         (filesets-directory-files, filesets-get-external-viewer)
18126         (filesets-ingroup-get-data): Use string-match-p.
18128         * find-file.el (ff-other-file-name, ff-other-file-name)
18129         (ff-find-the-other-file, ff-cc-hh-converter):
18130         Remove unused local variables.
18131         (ff-get-file-name): Use string-match-p.
18132         (ff-all-dirs-under): Use ignore-errors.
18134         * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
18135         (follow-select-if-visible): Remove unused local variable.
18137         * forms.el (read-file-filter): Move declaration.
18138         (forms--make-format, forms--make-parser, forms-insert-record):
18139         Quote function with #'.
18140         (forms--update): Use string-match-p.  Quote function with #'.
18142         * help-mode.el (help-dir-local-var-def): Mark unused argument.
18143         (help-make-xrefs): Use looking-at-p.
18144         (help-xref-on-pp): Use looking-at-p, ignore-errors.
18146         * ibuffer.el (ibuffer-ext-visible-p): Declare.
18147         (ibuffer-confirm-operation-on): Use string-match-p.
18149         * msb.el (msb-item-handler, msb-dired-item-handler):
18150         Mark unused arguments.
18152         * ses.el (ses-decode-cell-symbol)
18153         (ses-kill-override): Remove unused local variable.
18154         (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
18155         (ses-load): Use ignore-errors, looking-at-p.
18156         (ses-jump-safe): Use ignore-errors.
18157         (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
18159         * tabify.el (untabify, tabify): Mark unused arguments.
18161         * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
18162         Mark unused argument.
18163         (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
18164         (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
18166         * emacs-lisp/timer.el (timer--time): Define setter with
18167         gv-define-setter to avoid deprecation warning.
18169         * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
18170         (*record-cmpl-statistics-p*): Remove (was commented out).
18171         (cmpl-statistics-block): Remove (body was commented out).
18172         All callers changed.
18173         (add-completions-from-buffer, load-completions-from-file):
18174         Remove unused variables.
18176 2013-08-09  Juanma Barranquero  <lekktu@gmail.com>
18178         * filecache.el (file-cache-delete-file-list):
18179         Print message only when told so.
18180         (file-cache-files-matching): Use #' in mapconcat argument.
18182         * ffap.el (ffap-url-at-point): Fix reference to variable
18183         thing-at-point-default-mail-uri-scheme.
18185 2013-08-09  Stefan Monnier  <monnier@iro.umontreal.ca>
18187         * subr.el (define-error): New function.
18188         * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
18189         error-file-not-found and define with define-error.
18190         * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
18191         and define with define-error.
18192         * userlock.el (file-locked, file-supersession):
18193         * simple.el (mark-inactive):
18194         * progmodes/js.el (js-moz-bad-rpc, js-js-error):
18195         * progmodes/ada-mode.el (ada-mode-errors):
18196         * play/life.el (life-extinct):
18197         * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
18198         * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
18199         * nxml/rng-util.el (rng-error):
18200         * nxml/rng-uri.el (rng-uri-error):
18201         * nxml/rng-match.el (rng-compile-error):
18202         * nxml/rng-cmpct.el (rng-c-incorrect-schema):
18203         * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
18204         * nxml/nxml-rap.el (nxml-scan-error):
18205         * nxml/nxml-outln.el (nxml-outline-error):
18206         * net/soap-client.el (soap-error):
18207         * net/gnutls.el (gnutls-error):
18208         * net/ange-ftp.el (ftp-error):
18209         * mpc.el (mpc-proc-error):
18210         * json.el (json-error, json-readtable-error, json-unknown-keyword)
18211         (json-number-format, json-string-escape, json-string-format)
18212         (json-key-format, json-object-format):
18213         * jka-compr.el (compression-error):
18214         * international/quail.el (quail-error):
18215         * international/kkc.el (kkc-error):
18216         * emacs-lisp/ert.el (ert-test-failed):
18217         * calc/calc.el (calc-error, inexact-result, math-overflow)
18218         (math-underflow):
18219         * bookmark.el (bookmark-error-no-filename):
18220         * epg.el (epg-error): Define with define-error.
18222         * time.el (display-time-event-handler)
18223         (display-time-next-load-average): Don't call sit-for since it seems
18224         unnecessary (bug#15045).
18226         * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
18227         Use #' instead of ' to quote functions.
18228         (checkdoc-output-mode): Use setq-local.
18229         (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
18230         (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
18231         (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
18232         (checkdoc-ispell, checkdoc-ispell-current-buffer)
18233         (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
18234         (checkdoc-ispell-message-text, checkdoc-ispell-start)
18235         (checkdoc-ispell-continue, checkdoc-ispell-comments)
18236         (checkdoc-ispell-defun): Remove unused arg `take-notes'.
18238         * ido.el (ido-completion-help): Fix up compiler warning.
18240 2013-08-09  Juanma Barranquero  <lekktu@gmail.com>
18242         * frameset.el (frameset-p): Add autoload cookie.
18243         (frameset--jump-to-register): New function, based on code moved from
18244         register.el.
18245         (frameset-to-register): Move from register.el.  Adapt to `registerv'.
18247         * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
18248         (frameset-restore, frameset-save, frameset-session-filter-alist):
18249         Remove declarations.
18250         (register-alist): Doc fix.
18251         (frameset-to-register): Move to frameset.el.
18252         (jump-to-register, describe-register-1): Remove frameset-specific code.
18254 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
18256         * allout-widgets.el (allout-widgets-pre-command-business)
18257         (allout-widgets-post-command-business)
18258         (allout-widgets-after-change-handler)
18259         (allout-decorate-item-and-context, allout-set-boundary-marker)
18260         (allout-body-modification-handler)
18261         (allout-graphics-modification-handler): Mark ignored arguments.
18262         (allout-widgets-post-command-business)
18263         (allout-widgets-exposure-change-processor)
18264         (allout-widgets-exposure-undo-processor)
18265         (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
18266         (allout-parse-item-at-point, allout-decorate-item-guides)
18267         (allout-decorate-item-cue, allout-item-span): Remove unused variables.
18268         * allout.el (epa-passphrase-callback-function): Declare.
18269         (allout-overlay-insert-in-front-handler)
18270         (allout-overlay-interior-modification-handler)
18271         (allout-isearch-end-handler, allout-chart-siblings)
18272         (allout-up-current-level, allout-end-of-level, allout-reindent-body)
18273         (allout-yank-processing, allout-process-exposed)
18274         (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
18275         (allout-latex-verbatim-quote-curr-line): Remove unused variables.
18276         * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
18277         (lisp-indent-defform): Mark ignored arguments.
18278         (lisp-indent-line): Mark ignored arguments.  Remove unused variables.
18279         (calculate-lisp-indent): Remove unused variables.
18280         * international/characters.el (indian-2-column, arabic-2-column)
18281         (tibetan): Mark ignored arguments.
18282         (use-cjk-char-width-table): Mark ignored arguments.
18283         Remove unused variables.
18284         * international/fontset.el (build-default-fontset-data)
18285         (x-compose-font-name, create-fontset-from-fontset-spec):
18286         Mark ignored arguments.
18287         (fontset-plain-name): Remove unused variables.
18288         * international/mule.el (charset-id, charset-bytes, generic-char-p)
18289         (keyboard-coding-system): Mark ignored arguments.
18290         (find-auto-coding): Remove unused variables.  Use `ignore-errors'.
18291         * help.el (resize-temp-buffer-window):
18292         * window.el (display-buffer-in-major-side-window)
18293         (display-buffer-in-side-window, display-buffer-in-previous-window):
18294         Remove unused variables.
18295         * isearch.el (isearch-forward-symbol):
18296         * version.el (emacs-bzr-version-bzr):
18297         * international/mule-cmds.el (current-language-environment):
18298         * term/common-win.el (x-handle-iconic, x-handle-geometry)
18299         (x-handle-display):
18300         * term/pc-win.el (x-list-fonts, x-display-planes)
18301         (x-display-color-cells, x-server-max-request-size, x-server-vendor)
18302         (x-server-version, x-display-screens, x-display-mm-height)
18303         (x-display-mm-width, x-display-backing-store, x-display-visual-class)
18304         (x-selection-owner-p, x-own-selection-internal)
18305         (x-disown-selection-internal, x-get-selection-internal)
18306         (msdos-initialize-window-system):
18307         * term/tty-colors.el (tty-color-alist, tty-color-clear):
18308         * term/x-win.el (x-handle-no-bitmap-icon):
18309         * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
18310         (vc-default-find-file-hook, vc-default-extra-menu):
18311         Mark ignored arguments.
18313 2013-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18315         * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
18316         break-condition in the context of the debugged code (bug#12685).
18318 2013-08-08  Christopher Schmidt  <christopher@ch.ristopher.com>
18320         * comint.el:
18321         Do not use an overlay to highlight the last prompt.  (Bug#14744)
18322         (comint-mode): Make comint-last-prompt buffer local.
18323         (comint-last-prompt): New variable.
18324         (comint-last-prompt-overlay): Remove.  Superseded by
18325         comint-last-prompt.
18326         (comint-snapshot-last-prompt, comint-output-filter):
18327         Use comint-last-prompt.
18329 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
18331         * frameset.el (frameset-valid-p): Check vector length.  Doc fix.
18332         (frameset-save): Check validity of the resulting frameset.
18334 2013-08-08  Xue Fuqiao  <xfq.free@gmail.com>
18336         * ido.el (ido-record-command): Add doc string.
18338 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
18340         * frameset.el (frameset): Do not disable creation of the default
18341         frameset-p predicate.  Doc fix.
18342         (frameset-valid-p): New function, copied from the old predicate-p.
18343         Add additional checks.
18344         (frameset-restore): Check with frameset-valid-p.
18345         (frameset-p, frameset-version, frameset-timestamp, frameset-app)
18346         (frameset-name, frameset-description, frameset-properties)
18347         (frameset-states): Add docstring.
18348         (frameset-session-filter-alist, frameset-persistent-filter-alist)
18349         (frameset-filter-alist): Doc fixes.
18351 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
18353         * frameset.el (frameset-p, frameset-prop): Doc fixes.
18355 2013-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
18357         * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
18358         extracted from byte-compile-callargs-warn and byte-compile-normal-call.
18359         (byte-compile-callargs-warn, byte-compile-function-form): Use it.
18360         (byte-compile-normal-call): Remove obsolescence check.
18362 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
18364         * frameset.el (frameset-restore): Doc fix.
18366         * register.el (frameset-frame-id, frameset-frame-with-id)
18367         (frameset-p, frameset-restore, frameset-save): Declare.
18368         (register-alist): Document framesets.
18369         (frameset-session-filter-alist): Declare.
18370         (frameset-to-register): New function.
18371         (jump-to-register): Implement jumping to framesets.  Doc fix.
18372         (describe-register-1): Describe framesets.
18374         * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
18376 2013-08-07  Juanma Barranquero  <lekktu@gmail.com>
18378         * desktop.el (desktop-save-frameset): Use new frameset-save args.
18379         Use lexical-binding.
18381         * frameset.el (frameset): Use type vector, not list (incompatible
18382         change).  Do not declare a new constructor, use the default one.
18383         Upgrade suggested properties `app', `name' and `desc' to slots `app',
18384         `name' and `description', respectively, and add read-only slot
18385         `timestamp'.  Doc fixes.
18386         (frameset-copy, frameset-persistent-filter-alist)
18387         (frameset-filter-alist, frameset-switch-to-gui-p)
18388         (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
18389         (frameset-filter-sanitize-color, frameset-filter-minibuffer)
18390         (frameset-filter-iconified, frameset-keep-original-display-p):
18391         Doc fixes.
18392         (frameset-filter-shelve-param, frameset-filter-unshelve-param):
18393         Rename from frameset-filter-(save|restore)-param.  All callers changed.
18394         Doc fix.
18395         (frameset-p): Adapt to change to vector and be more thorough.
18396         Change arg name to OBJECT.  Doc fix.
18397         (frameset-prop): Rename arg PROP to PROPERTY.  Doc fix.
18398         (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
18399         All callers changed.
18400         (frameset-frame-with-id): Rename from frameset-locate-frame-id.
18401         All callers changed.
18402         (frameset--record-minibuffer-relationships): Rename from
18403         frameset--process-minibuffer-frames.  All callers changed.
18404         (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
18405         Use new default constructor (again).  Doc fix.
18406         (frameset--find-frame-if): Rename from `frameset--find-frame'.
18407         All callers changed.
18408         (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
18409         (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
18410         Doc fix.
18411         (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
18412         PARAMETERS and WINDOW-STATE, respectively.
18413         (frameset-restore): Add new keyword argument PREDICATE.
18414         Reset frameset--target-display to nil.  Doc fix.
18416 2013-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
18418         * progmodes/bat-mode.el (bat--syntax-propertize): New var.
18419         (bat-mode): Use it.
18420         (bat-mode-syntax-table): Mark \n as end-of-comment.
18421         (bat-font-lock-keywords): Remove comment rule.
18423         * progmodes/bat-mode.el: Rename from dos.el.  Use "bat-" prefix.
18424         (dos-mode-help): Remove.  Use describe-mode (C-h m) instead.
18426         * emacs-lisp/bytecomp.el: Check existence of f in #'f.
18427         (byte-compile-callargs-warn): Use `push'.
18428         (byte-compile-arglist-warn): Ignore higher-order "calls".
18429         (byte-compile-file-form-autoload): Use `pcase'.
18430         (byte-compile-function-form): If quoting a symbol, check that it exists.
18432 2013-08-07  Eli Zaretskii  <eliz@gnu.org>
18434         * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
18435         and add a few popular commands found in batch files.
18436         (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
18437         (dos-mode): Doc fixes.
18439 2013-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
18441         * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
18442         (dos-mode): Use setq-local.  Add space after "rem".
18443         (dos-mode-syntax-table): Don't use "w" for symbol chars.
18444         (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
18446 2013-08-07  Arni Magnusson  <arnima@hafro.is>
18448         * progmodes/dos.el: New file.
18449         * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
18450         dos-mode.
18452 2013-08-06  Glenn Morris  <rgm@gnu.org>
18454         * calendar/calendar.el: Add new faces, and day-header-array.
18455         (calendar-weekday-header, calendar-weekend-header)
18456         (calendar-month-header): New faces.
18457         (calendar-day-header-construct): New function.
18458         (calendar-day-header-width): Also :set calendar-day-header-array.
18459         (calendar-american-month-header, calendar-european-month-header)
18460         (calendar-iso-month-header): Use calendar- faces.
18461         (calendar-generate-month):
18462         Use calendar-day-header-array for day headers; apply faces to them.
18463         (calendar-mode): Check calendar-font-lock-keywords non-nil.
18464         (calendar-abbrev-construct): Add optional maxlen argument.
18465         (calendar-day-name-array): Doc fix.
18466         (calendar-day-name-array, calendar-abbrev-length)
18467         (calendar-day-abbrev-array):
18468         Also :set calendar-day-header-array, and maybe redraw.
18469         (calendar-day-header-array): New option.  (Bug#15007)
18470         (calendar-font-lock-keywords): Set to nil and make obsolete.
18471         (calendar-day-name): Add option to use header array.
18473 2013-08-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18475         * net/shr.el (shr-render-td): Remove debugging.
18476         (shr-render-td): Make width computation consistent by defaulting
18477         all zero-width columns to 10 characters.  This may not be optimal,
18478         but it's at least consistent.
18479         (shr-make-table-1): Redo last change to fix the real problem in
18480         colspan handling.
18482 2013-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
18484         * files.el (cache-long-line-scans):
18485         Make obsolete alias to `cache-long-scans'.
18487 2013-08-06  Juanma Barranquero  <lekktu@gmail.com>
18489         * frameset.el (frameset, frameset-filter-alist)
18490         (frameset-filter-params, frameset-save, frameset--reuse-frame)
18491         (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
18492         (frameset-compute-pos): Rename from frameset--compute-pos,
18493         and add docstring.
18494         (frameset-move-onscreen): Use frameset-compute-pos.
18495         Most changes suggested by Drew Adams <drew.adams@oracle.com>.
18497         * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
18498         Fix typos in docstrings.
18500 2013-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
18502         * frame.el (get-other-frame): Tiny cleanup.
18504 2013-08-06  Juanma Barranquero  <lekktu@gmail.com>
18506         * vc/vc.el (vc-default-ignore-completion-table):
18507         Silence byte-compiler warning.
18509         * frameset.el (frameset-p): Don't check non-nullness of the `properties'
18510         slot, which can indeed be nil.
18511         (frameset-live-filter-alist, frameset-persistent-filter-alist):
18512         Move entry for `left' from persistent to live filter alist.
18513         (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
18514         Doc fixes.
18515         (frameset-filter-params): When restoring a frame, copy items added to
18516         `filtered', to avoid unwittingly modifying the original parameters.
18517         (frameset-move-onscreen): Rename from frameset--move-onscreen.  Doc fix.
18518         (frameset--restore-frame): Fix reference to frameset-move-onscreen.
18520         * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
18521         to use looking-at-p instead of looking-at.  (Bug#15028)
18523 2013-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
18525         Revert introduction of isearch-filter-predicates (bug#14714).
18526         Rely on add-function instead.
18527         * isearch.el (isearch-filter-predicates): Rename it back to
18528         isearch-filter-predicate.
18529         (isearch-message-prefix): Use advice-function-mapc and advice
18530         properties to get the isearch-message-prefix.
18531         (isearch-search, isearch-lazy-highlight-search): Revert to funcall
18532         instead of run-hook-with-args-until-failure.
18533         (isearch-filter-visible): Not obsolete any more.
18534         * loadup.el: Preload nadvice.
18535         * replace.el (perform-replace): Revert to funcall
18536         instead of run-hook-with-args-until-failure.
18537         * wdired.el (wdired-change-to-wdired-mode): Use add-function.
18538         * dired-aux.el (dired-isearch-filenames-mode): Rename from
18539         dired-isearch-filenames-toggle; make it into a proper minor mode.
18540         Use add/remove-function.
18541         (dired-isearch-filenames-setup, dired-isearch-filenames-end):
18542         Call the minor-mode rather than add/remove-hook.
18543         (dired-isearch-filter-filenames):
18544         Remove isearch-message-prefix property.
18545         * info.el (Info--search-loop): New function, extracted from Info-search.
18546         Funcall isearch-filter-predicate instead of
18547         run-hook-with-args-until-failure isearch-filter-predicates.
18548         (Info-search): Use it.
18549         (Info-mode): Use isearch-filter-predicate instead of
18550         isearch-filter-predicates.
18552 2013-08-05  Dmitry Antipov  <dmantipov@yandex.ru>
18554         Do not call to `selected-window' where it is assumed by default.
18555         Affected functions are `window-minibuffer-p', `window-dedicated-p',
18556         `window-hscroll', `window-width', `window-height', `window-buffer',
18557         `window-frame', `window-start', `window-point', `next-window'
18558         and `window-display-table'.
18559         * abbrev.el (abbrev--default-expand):
18560         * bs.el (bs--show-with-configuration):
18561         * buff-menu.el (Buffer-menu-mouse-select):
18562         * calc/calc.el (calc):
18563         * calendar/calendar.el (calendar-generate-window):
18564         * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
18565         (diary-make-entry):
18566         * comint.el (send-invisible, comint-dynamic-complete-filename)
18567         (comint-dynamic-simple-complete, comint-dynamic-list-completions):
18568         * completion.el (complete):
18569         * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
18570         * disp-table.el (describe-current-display-table):
18571         * doc-view.el (doc-view-insert-image):
18572         * ebuff-menu.el (Electric-buffer-menu-mouse-select):
18573         * ehelp.el (with-electric-help):
18574         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
18575         * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
18576         * emacs-lisp/helper.el (Helper-help-scroller):
18577         * emulation/cua-base.el (cua--post-command-handler-1):
18578         * eshell/esh-mode.el (eshell-output-filter):
18579         * ffap.el (ffap-gnus-wrapper):
18580         * help-macro.el (make-help-screen):
18581         * hilit-chg.el (highlight-compare-buffers):
18582         * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
18583         * hl-line.el (global-hl-line-highlight):
18584         * icomplete.el (icomplete-simple-completing-p):
18585         * isearch.el (isearch-done):
18586         * jit-lock.el (jit-lock-stealth-fontify):
18587         * mail/rmailsum.el (rmail-summary-scroll-msg-up):
18588         * mouse-drag.el (mouse-drag-should-do-col-scrolling):
18589         * mpc.el (mpc-tagbrowser, mpc):
18590         * net/rcirc.el (rcirc-any-buffer):
18591         * play/gomoku.el (gomoku-max-width, gomoku-max-height):
18592         * play/landmark.el (landmark-max-width, landmark-max-height):
18593         * play/zone.el (zone):
18594         * progmodes/compile.el (compilation-goto-locus):
18595         * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
18596         * progmodes/etags.el (find-tag-other-window):
18597         * progmodes/fortran.el (fortran-column-ruler):
18598         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
18599         * progmodes/verilog-mode.el (verilog-point-text):
18600         * reposition.el (reposition-window):
18601         * rot13.el (toggle-rot13-mode):
18602         * server.el (server-switch-buffer):
18603         * shell.el (shell-dynamic-complete-command)
18604         (shell-dynamic-complete-environment-variable):
18605         * simple.el (insert-buffer, set-selective-display)
18606         (delete-completion-window):
18607         * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
18608         (speedbar-recenter):
18609         * startup.el (fancy-splash-head):
18610         * textmodes/ispell.el (ispell-command-loop):
18611         * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
18612         * tutorial.el (help-with-tutorial):
18613         * vc/add-log.el (add-change-log-entry):
18614         * vc/compare-w.el (compare-windows):
18615         * vc/ediff-help.el (ediff-indent-help-message):
18616         * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
18617         * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
18618         (ediff-setup-control-frame):
18619         * vc/emerge.el (emerge-position-region):
18620         * vc/pcvs-util.el (cvs-bury-buffer):
18621         * window.el (walk-windows, mouse-autoselect-window-select):
18622         * winner.el (winner-set-conf, winner-undo): Related users changed.
18624 2013-08-05  Juanma Barranquero  <lekktu@gmail.com>
18626         * frameset.el (frameset--set-id): Doc fix.
18627         (frameset-frame-id, frameset-frame-id-equal-p)
18628         (frameset-locate-frame-id): New functions.
18629         (frameset--process-minibuffer-frames, frameset--reuse-frame)
18630         (frameset-restore): Use them.
18632 2013-08-05  Dmitry Antipov  <dmantipov@yandex.ru>
18634         Do not call to `selected-frame' where it is assumed by default.
18635         Affected functions are `raise-frame', `redraw-frame',
18636         `frame-first-window', `frame-terminal' and `delete-frame'.
18637         * calendar/appt.el (appt-disp-window):
18638         * epg.el (epg-wait-for-completion):
18639         * follow.el (follow-delete-other-windows-and-split)
18640         (follow-avoid-tail-recenter):
18641         * international/mule.el (set-terminal-coding-system):
18642         * mail/rmail.el (rmail-mail-return):
18643         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
18644         * progmodes/f90.el (f90-add-imenu-menu):
18645         * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
18646         * server.el (server-switch-buffer):
18647         * simple.el (delete-completion-window):
18648         * talk.el (talk):
18649         * term/xterm.el (terminal-init-xterm-modify-other-keys)
18650         (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
18651         * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
18652         * vc/ediff.el (ediff-documentation): Related users changed.
18653         * frame.el (selected-terminal): Remove the leftover.
18655 2013-08-05  Glenn Morris  <rgm@gnu.org>
18657         * calendar/calendar.el (calendar-generate-month):
18658         Fix for calendar-column-width != 1 + calendar-day-digit-width.
18659         (calendar-generate-month, calendar-font-lock-keywords):
18660         Fix for calendar-day-header-width > length of any day name.
18662 2013-08-05  Juanma Barranquero  <lekktu@gmail.com>
18664         * desktop.el (desktop-clear): Use new name of sort predicate.
18666         * frameset.el (frameset): Add docstring.  Move :version property to its
18667         own `version' slot.
18668         (frameset-copy): Rename from copy-frameset.
18669         (frameset-p): Check more thoroughly.
18670         (frameset-prop): Do not check for :version, which is no longer a prop.
18671         (frameset-live-filter-alist, frameset-persistent-filter-alist):
18672         Use new :never value instead of t.
18673         (frameset-filter-alist): Expand and clarify docstring.
18674         (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
18675         (frameset-filter-minibuffer, frameset-filter-save-param)
18676         (frameset-filter-restore-param, frameset-filter-iconified):
18677         Add pointer to docstring of frameset-filter-alist.
18678         (frameset-filter-params): Rename filter values to be more meaningful:
18679         :never instead of t, and reverse the meanings of :save and :restore.
18680         (frameset--process-minibuffer-frames): Clarify error message.
18681         (frameset-save): Avoid unnecessary and confusing call to framep.
18682         Use new BOA constructor for framesets.
18683         (frameset--reuse-list): Doc fix.
18684         (frameset--restore-frame): Rename from frameset--get-frame.  Doc fix.
18685         (frameset--minibufferless-last-p): Rename from frameset--sort-states.
18686         (frameset-minibufferless-first-p): Doc fix.
18687         Rename from frameset-sort-frames-for-deletion.
18688         (frameset-restore): Doc fixes.  Use new function names.
18689         Most changes suggested by Drew Adams <drew.adams@oracle.com>.
18691 2013-08-04  Juanma Barranquero  <lekktu@gmail.com>
18693         * desktop.el (desktop-restore-forces-onscreen)
18694         (desktop-restore-reuses-frames): Document :keyword constant values.
18695         (desktop-filter-parameters-alist): Remove, now identical to
18696         frameset-filter-alist.
18697         (desktop--filter-tty*): Remove, moved to frameset.el.
18698         (desktop-save-frameset, desktop-restore-frameset):
18699         Do not pass :filters argument.
18701         * frameset.el (frameset-live-filter-alist)
18702         (frameset-persistent-filter-alist): New variables.
18703         (frameset-filter-alist): Use them.  Add autoload cookie.
18704         (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
18705         (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
18706         `frameset--id' (it's supposed to be internal to frameset.el).
18707         (frameset--process-minibuffer-frames): Ditto.  Doc fix.
18708         (frameset--initial-params): New function.
18709         (frameset--get-frame): Use it.  Doc fix.
18710         (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
18711         Accept :all, not 'all.
18712         (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
18713         FORCE-DISPLAY.  Use :keywords for constant arguments to avoid collision
18714         with fbound symbols.  Fix frame id matching, and remove matching ids if
18715         the frame being restored is deleted.  Obey :delete.
18717 2013-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
18719         * subr.el (macrop): New function.
18720         (text-clone--maintaining): New var.
18721         (text-clone--maintain): Rename from text-clone-maintain.  Use it
18722         instead of inhibit-modification-hooks.
18724         * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
18725         a proxy, so as handle autoloads and redefinitions of the target.
18726         (advice--defalias-fset, advice-remove): Use advice--symbol-function.
18728         * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
18729         Remove bogus (arrayp . stringp) pair.  Add entries for `vectorp'.
18730         (pcase--mutually-exclusive-p): New function.
18731         (pcase--split-consp): Use it.
18732         (pcase--split-pred): Use it.  Optimize the case where `pat' is a qpat
18733         mutually exclusive with the current predicate.
18735         * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
18736         (edebug-macrop): Remove.  Use `macrop' instead.
18737         * emacs-lisp/advice.el (ad-subr-p): Remove.  Use `subrp' instead.
18738         (ad-macro-p):
18739         * eshell/esh-cmd.el (eshell-macrop):
18740         * apropos.el (apropos-macrop): Remove.  Use `macrop' instead.
18742 2013-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
18744         * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
18745         (advice-mapc): New function, using it.
18746         (advice-function-member-p): New function.
18747         (advice--normalize): Store the cdr in advice--saved-rewrite since
18748         that's the part that will be changed.
18749         (advice--symbol-function): New function.
18750         (advice-remove): Handle removal before the function is defined.
18751         Adjust to new advice--saved-rewrite.
18752         (advice-member-p): Use advice-function-member-p and
18753         advice--symbol-function.
18755 2013-08-04  Juanma Barranquero  <lekktu@gmail.com>
18757         * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
18758         (frameset-filter-minibuffer): Doc fix.
18759         (frameset-restore): Fix autoload cookie.  Fix typo in docstring.
18760         (frameset--set-id, frameset--process-minibuffer-frames)
18761         (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
18762         (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
18764         * desktop.el (desktop-clear): Only delete frames when called
18765         interactively and desktop-restore-frames is non-nil.  Doc fix.
18766         (desktop-read): Set desktop-saved-frameset to nil.
18768 2013-08-04  Xue Fuqiao  <xfq.free@gmail.com>
18770         * vc/vc.el (vc-ignore): Rewrite.
18771         (vc-default-ignore-completion-table, vc--read-lines)
18772         (vc--add-line, vc--remove-regexp): New functions.
18774         * vc/vc-svn.el (vc-svn-ignore): Doc fix.
18775         (vc-svn-ignore-completion-table): New function.
18777         * vc/vc-hg.el (vc-hg-ignore): Rewrite.
18778         (vc-hg-ignore-completion-table)
18779         (vc-hg-find-ignore-file): New functions.
18781         * vc/vc-git.el (vc-git-ignore): Rewrite.
18782         (vc-git-ignore-completion-table)
18783         (vc-git-find-ignore-file): New functions.
18785         * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
18787         * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
18788         (vc-bzr-ignore-completion-table)
18789         (vc-bzr-find-ignore-file): New functions.
18791 2013-08-03  Juanma Barranquero  <lekktu@gmail.com>
18793         * frameset.el (frameset-prop): New function and setter.
18794         (frameset-save): Do not modify frame list passed by the caller.
18796 2013-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
18798         * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
18800 2013-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
18802         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
18803         (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
18805         * custom.el (custom-initialize-default, custom-initialize-set)
18806         (custom-initialize-reset, custom-initialize-changed): Affect the
18807         toplevel-default-value (bug#6275, bug#14586).
18808         * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
18809         for bug#6275.
18811 2013-08-02  Juanma Barranquero  <lekktu@gmail.com>
18813         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
18814         Add cl-def* expressions.
18816         * frameset.el (frameset-filter-params): Fix order of arguments.
18818 2013-08-02  Juanma Barranquero  <lekktu@gmail.com>
18820         Move code related to saving frames to frameset.el.
18821         * desktop.el: Require frameset.
18822         (desktop-restore-frames): Doc fix.
18823         (desktop-restore-reuses-frames): Rename from
18824         desktop-restoring-reuses-frames.
18825         (desktop-saved-frameset): Rename from desktop-saved-frame-states.
18826         (desktop-clear): Clear frames too.
18827         (desktop-filter-parameters-alist): Set from frameset-filter-alist.
18828         (desktop--filter-tty*, desktop-save, desktop-read):
18829         Use frameset functions.
18830         (desktop-before-saving-frames-functions, desktop--filter-*-color)
18831         (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
18832         (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
18833         (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
18834         (desktop--process-minibuffer-frames, desktop-save-frames)
18835         (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
18836         (desktop--find-frame, desktop--select-frame, desktop--make-frame)
18837         (desktop--sort-states, desktop-restoring-frames-p)
18838         (desktop-restore-frames): Remove.  Most code moved to frameset.el.
18839         (desktop-restoring-frameset-p, desktop-restore-frameset)
18840         (desktop--check-dont-save, desktop-save-frameset): New functions.
18841         (desktop--app-id): New constant.
18842         (desktop-first-buffer, desktop-buffer-ok-count)
18843         (desktop-buffer-fail-count): Move before first use.
18844         * frameset.el: New file.
18846 2013-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
18848         * files.el: Use lexical-binding.
18849         (dir-locals-read-from-file): Remove unused `err' variable.
18850         (hack-dir-local-variables--warned-coding): New var.
18851         (hack-dir-local-variables): Use it to avoid repeated warnings.
18852         (make-backup-file-name--default-function): New function.
18853         (make-backup-file-name-function): Use it as default.
18854         (buffer-stale--default-function): New function.
18855         (buffer-stale-function): Use it as default.
18856         (revert-buffer-insert-file-contents--default-function): New function.
18857         (revert-buffer-insert-file-contents-function): Use it as default.
18858         (insert-directory): Avoid add-to-list.
18860         * autorevert.el (auto-revert-handler): Simplify.
18861         Use buffer-stale--default-function.
18863 2013-08-01  Tassilo Horn  <tsdh@gnu.org>
18865         * speedbar.el (speedbar-query-confirmation-method): Doc fix.
18867         * whitespace.el (whitespace-ensure-local-variables): New function.
18868         (whitespace-cleanup-region): Call it.
18869         (whitespace-turn-on): Call it.
18871 2013-08-01  Michael Albinus  <michael.albinus@gmx.de>
18873         Complete file name handlers.
18875         * net/tramp.el (tramp-handle-set-visited-file-modtime)
18876         (tramp-handle-verify-visited-file-modtime)
18877         (tramp-handle-file-notify-rm-watch): New functions.
18878         (tramp-call-process): Do not bind `default-directory'.
18880         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
18881         Order alphabetically.
18882         <access-file, add-name-to-file, dired-call-process>:
18883         <dired-compress-file, file-acl, file-notify-rm-watch>:
18884         <file-ownership-preserved-p, file-selinux-context>:
18885         <make-directory-internal, make-symbolic-link, set-file-acl>:
18886         <set-file-selinux-context, set-visited-file-modtime>:
18887         <verify-visited-file-modtime>: Add handler.
18888         (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
18890         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
18891         <file-notify-add-watch, file-notify-rm-watch>:
18892         <set-file-times, set-visited-file-modtime>:
18893         <verify-visited-file-modtime>: Add handler.
18894         (with-tramp-gvfs-error-message)
18895         (tramp-gvfs-handle-set-visited-file-modtime)
18896         (tramp-gvfs-fuse-file-name): Remove.
18897         (tramp-gvfs-handle-file-notify-add-watch)
18898         (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
18899         (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
18901         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
18902         Order alphabetically.
18903         <file-notify-rm-watch>: Use default Tramp handler.
18904         <executable-find>: Remove private handler.
18905         (tramp-do-copy-or-rename-file-out-of-band): Do not bind
18906         `default-directory'.
18907         (tramp-sh-handle-executable-find)
18908         (tramp-sh-handle-file-notify-rm-watch): Remove functions.
18909         (tramp-sh-file-gvfs-monitor-dir-process-filter)
18910         (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
18911         Do not use `format' in `tramp-message'.
18913         * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
18914         <file-notify-rm-watch, set-visited-file-modtime>:
18915         <verify-visited-file-modtime>: Add handler.
18916         (tramp-smb-call-winexe): Do not bind `default-directory'.
18918 2013-08-01  Xue Fuqiao  <xfq.free@gmail.com>
18920         * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
18922 2013-07-31  Dmitry Gutov  <dgutov@yandex.ru>
18924         * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
18925         use it.
18926         (log-view-diff-changeset): Same.
18927         (log-view-diff-common): Call backend command `previous-revision'
18928         to find out the previous revision, in both cases.  Swap the
18929         variables `to' and `fr', so that `fr' usually refers to the
18930         earlier revision (Bug#14989).
18932 2013-07-31  Kan-Ru Chen  <kanru@kanru.info>
18934         * ibuf-ext.el (ibuffer-filter-by-filename):
18935         Make it work with dired buffers too.
18937 2013-07-31  Dmitry Antipov  <dmantipov@yandex.ru>
18939         * emacs-lisp/re-builder.el (reb-color-display-p):
18940         * files.el (save-buffers-kill-terminal):
18941         * net/browse-url.el (browse-url):
18942         * server.el (server-save-buffers-kill-terminal):
18943         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
18944         Prefer nil to selected-frame for the first arg of frame-parameter.
18946 2013-07-31  Xue Fuqiao  <xfq.free@gmail.com>
18948         * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
18950 2013-07-30  Stephen Berman  <stephen.berman@gmx.net>
18952         * minibuffer.el (completion--twq-all): Try and preserve each
18953         completion's case choice (bug#14907).
18955 2013-07-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18957         * net/network-stream.el (open-network-stream): Mention the new
18958         :nogreeting parameter.
18959         (network-stream-open-starttls): Use the :nogreeting parameter
18960         (bug#14938).
18962         * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
18964         * net/eww.el (eww-setup-buffer): Switching to the buffer seems
18965         more natural than popping.
18967         * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
18968         (shr-urlify): Highlight under mouse.
18970 2013-07-30  Xue Fuqiao  <xfq.free@gmail.com>
18972         * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
18974         * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
18976         * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'.  Use `*vc*'
18977         buffer for output.
18979         * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'.  Do not assume
18980         point-min==1.  Fix search string.  Fix parentheses missing.
18982         * vc/vc-git.el (vc-git-ignore): Remove `interactive'.  Do not
18983         assume point-min==1.  Fix search string.  Fix parentheses missing.
18985         * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
18987         * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'.  Use `*vc*'
18988         buffer for output.
18990 2013-07-29  Eli Zaretskii  <eliz@gnu.org>
18992         * frame.el (frame-notice-user-settings): Avoid inflooping when the
18993         initial frame is minibuffer-less.  (Bug#14841)
18995 2013-07-29  Michael Albinus  <michael.albinus@gmx.de>
18997         * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
18998         option.
19000         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
19001         (tramp-maybe-open-connection): Use it.
19003 2013-07-28  Juanma Barranquero  <lekktu@gmail.com>
19005         * desktop.el (desktop--make-frame): Include `minibuffer' in the
19006         minimal set of parameters passed when creating a frame, because
19007         the minibuffer status of a frame cannot be changed later.
19009 2013-07-28  Stephen Berman  <stephen.berman@gmx.net>
19011         * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
19012         replace-regexp-in-string and inadvertent omissions in previous change.
19013         (todo-filter-items): Ensure only file names are comma-separated in
19014         name of filtered items buffer.
19016 2013-07-28  Juanma Barranquero  <lekktu@gmail.com>
19018         * desktop.el: Optionally force offscreen frames back onscreen.
19019         (desktop-restoring-reuses-frames): New option.
19020         (desktop--compute-pos, desktop--move-onscreen): New functions.
19021         (desktop--make-frame): Use desktop--move-onscreen.
19023 2013-07-27  Alan Mackenzie  <acm@muc.de>
19025         Fontify a Java generic method as a function.
19026         * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
19027         value to t.
19029 2013-07-27  Stephen Berman  <stephen.berman@gmx.net>
19031         * calendar/todo-mode.el: Add command to rename todo files.
19032         (todo-rename-file): New command.
19033         (todo-key-bindings-t): Add key binding for it.  Change the
19034         bindings of todo-filter-regexp-items(-multifile) to use `x'
19035         instead of `r', since the latter is better suited to the new
19036         renaming command.
19038 2013-07-27  Alan Mackenzie  <acm@muc.de>
19040         Make Java try-with-resources statement parse properly.
19041         * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
19042         (c-block-stmt-1-2-key): New language constants/variables.
19043         * progmodes/cc-engine.el (c-beginning-of-statement-1)
19044         (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
19045         * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
19046         with c-block-stmt-1-2-key.
19048 2013-07-27  Juanma Barranquero  <lekktu@gmail.com>
19050         * desktop.el (desktop--make-frame): Apply most frame parameters after
19051         creating the frame to force (partially or totally) offscreen frames to
19052         be restored as such.
19054 2013-07-26  Xue Fuqiao  <xfq.free@gmail.com>
19056         * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
19057         (Bug#14948)
19059 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
19061         * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
19062         `base' arg of backtrace-frame.
19064 2013-07-26  Eli Zaretskii  <eliz@gnu.org>
19066         * simple.el (list-processes): Doc fix.
19068 2013-07-26  Juanma Barranquero  <lekktu@gmail.com>
19070         * desktop.el (desktop--select-frame):
19071         Try harder to reuse existing frames.
19073 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
19075         * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
19076         (edebug-eval): Use backtrace-eval.
19077         (edebug--display, edebug--recursive-edit): Don't let-bind the
19078         edebug-outer-* vars that keep track of variables we locally let-bind.
19079         (edebug-outside-excursion): Don't restore outside values of locally
19080         let-bound vars.
19081         (edebug--display): Use user-error.
19082         (cl-lexical-debug, cl-debug-env): Remove.
19084 2013-07-26  Juanma Barranquero  <lekktu@gmail.com>
19086         * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
19087         are restored to be sure that they are visible before deleting any
19088         remaining ones.
19090 2013-07-26  Matthias Meulien  <orontee@gmail.com>
19092         * vc/vc-dir.el (vc-dir-mode-map): Add binding for
19093         vc-print-root-log.  (Bug#14948)
19095 2013-07-26  Richard Stallman  <rms@gnu.org>
19097         Add aliases for encrypting mail.
19098         * epa.el (epa-mail-aliases): New option.
19099         * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
19100         Bind inhibit-read-only so read-only text doesn't ruin everything.
19101         (epa-mail-default-recipients): New subroutine broken out.
19102         Handle epa-mail-aliases.
19104 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
19106         Add support for lexical variables to the debugger's `e' command.
19107         * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
19108         vars, except for debugger-outer-match-data.
19109         (debugger-frame-number): Move check for "on a function call" from
19110         callers into it.  Add `skip-base' argument.
19111         (debugger-frame, debugger-frame-clear): Simplify accordingly.
19112         (debugger-env-macro): Only reset the state stored in non-variables,
19113         i.e. current-buffer and match-data.
19114         (debugger-eval-expression): Rewrite using backtrace-eval.
19115         * subr.el (internal--called-interactively-p--get-frame): Remove.
19116         (called-interactively-p):
19117         * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
19118         `base' arg of backtrace-frame instead.
19120 2013-07-26  Glenn Morris  <rgm@gnu.org>
19122         * align.el (align-regexp): Doc fix.  (Bug#14857)
19123         (align-region): Explicit error if subexpression missing/does not match.
19125         * simple.el (global-visual-line-mode):
19126         Do not duplicate the mode lighter.  (Bug#14858)
19128 2013-07-25  Martin Rudalics  <rudalics@gmx.at>
19130         * window.el (display-buffer): In display-buffer bind
19131         split-window-keep-point to t, bug#14829.
19133 2013-07-25  Juanma Barranquero  <lekktu@gmail.com>
19135         * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
19136         (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
19137         (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
19138         (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
19139         Change accordingly.
19140         (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
19141         Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
19143 2013-07-25  Glenn Morris  <rgm@gnu.org>
19145         * dired-x.el (dired-mark-extension): Convert comment to doc string.
19147 2013-07-25  Juanma Barranquero  <lekktu@gmail.com>
19149         * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
19150         parameter to modify-frame-parameters if the value has not changed;
19151         this is a workaround for bug#14949.
19152         (desktop--make-frame): On cl-delete-if call, check parameter name,
19153         not full parameter.
19155 2013-07-30  Xue Fuqiao  <xfq.free@gmail.com>
19157         * vc/vc.el (vc-ignore): New function.
19159         * vc/vc-svn.el (vc-svn-ignore): New function.
19161         * vc/vc-hg.el (vc-hg-ignore): New function.
19163         * vc/vc-git.el (vc-git-ignore): New function.
19165         * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
19166         (vc-dir-ignore): New function.
19168         * vc/vc-cvs.el (vc-cvs-ignore): New function.
19169         (cvs-append-to-ignore): Move here from pcvs.el.
19171         * vc/vc-bzr.el (vc-bzr-ignore): New function.
19173         * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
19175 2013-07-24  Juanma Barranquero  <lekktu@gmail.com>
19177         * desktop.el (desktop-restoring-frames-p): Return a true boolean.
19178         (desktop-restore-frames): Warn when deleting an existing frame failed.
19180 2013-07-24  Glenn Morris  <rgm@gnu.org>
19182         * ffap.el (ffap-machine-p): Handle "not known" response.  (Bug#14929)
19184 2013-07-24  Michael Albinus  <michael.albinus@gmx.de>
19186         * filenotify.el (file-notify-supported-p):
19187         * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
19188         Remove functions.
19190         * autorevert.el (auto-revert-use-notify)
19191         (auto-revert-notify-add-watch):
19192         * net/tramp.el (tramp-file-name-for-operation):
19193         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
19194         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
19195         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
19196         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
19197         Remove `file-notify-supported-p' entry.
19199 2013-07-24  Glenn Morris  <rgm@gnu.org>
19201         * printing.el: Replace all uses of deleted ps-windows-system,
19202         ps-lp-system, ps-flatten-list with lpr- versions.
19204 2013-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
19206         * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
19207         checked with memq (bug#14935).
19209         * files.el (revert-buffer-function): Use a non-nil default.
19210         (revert-buffer-preserve-modes): Declare var to
19211         provide access to the `preserve-modes' argument.
19212         (revert-buffer): Let-bind it.
19213         (revert-buffer--default): New function, extracted from revert-buffer.
19215 2013-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
19217         * lpr.el: Signal print errors more prominently.
19218         (print-region-function): Don't default to nil.
19219         (lpr-print-region): New function, extracted from print-region-1.
19220         Check lpr's return value and signal an error in case of problem.
19221         (print-region-1): Use it.
19222         * ps-print.el (ps-windows-system, ps-lp-system): Remove.  Use the lpr-*
19223         versions instead.
19224         (ps-printer-name): Default to nil.
19225         (ps-printer-name-option): Default to lpr-printer-switch.
19226         (ps-print-region-function): Don't default to nil.
19227         (ps-postscript-code-directory): Simplify default.
19228         (ps-do-despool): Use lpr-print-region to properly check the outcome.
19229         (ps-string-list, ps-eval-switch, ps-flatten-list)
19230         (ps-flatten-list-1): Remove.
19231         (ps-multibyte-buffer): Avoid setq.
19232         * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
19233         (print-region-function, ps-print-region-function): Don't set them here.
19235 2013-07-24  Xue Fuqiao  <xfq.free@gmail.com>
19237         * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
19238         (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
19239         (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
19240         (ido-decorations): Doc fix.
19242         * ansi-color.el: Fix old URL.
19244 2013-07-23  Michael R. Mauger  <michael@mauger.com>
19246         * progmodes/sql.el: Version 3.3
19247         (sql-product-alist): Improve oracle :prompt-cont-regexp.
19248         (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
19249         (sql-interactive-remove-continuation-prompt): Rewrite, use
19250         functions above.  Fix continuation prompt and complete output line
19251         handling.
19252         (sql-redirect-one, sql-execute): Use `read-only-mode' on
19253         redirected output buffer.
19254         (sql-mode): Restore deleted code (Bug#13591).
19256 2013-07-23  Juanma Barranquero  <lekktu@gmail.com>
19258         * desktop.el (desktop-clear, desktop-list*): Fix previous change.
19260 2013-07-23  Michael Albinus  <michael.albinus@gmx.de>
19262         * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
19264         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
19265         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
19266         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
19268 2013-07-23  Juanma Barranquero  <lekktu@gmail.com>
19270         * desktop.el (desktop-clear): Simplify; remove useless checks
19271         against invalid buffer names.
19272         (desktop-list*): Use cl-list*.
19273         (desktop-buffer-info, desktop-create-buffer): Simplify.
19275 2013-07-23  Leo Liu  <sdl.web@gmail.com>
19277         * bookmark.el (bookmark-make-record): Restore NAME as a default
19278         value.  (Bug#14933)
19280 2013-07-22  Stefan Monnier  <monnier@iro.umontreal.ca>
19282         * emacs-lisp/autoload.el (autoload--setup-output): New function,
19283         extracted from autoload--insert-text.
19284         (autoload--insert-text): Remove.
19285         (autoload--print-cookie-text): New function, extracted from
19286         autoload--insert-cookie-text.
19287         (autoload--insert-cookie-text): Remove.
19288         (autoload-generate-file-autoloads): Adjust calls accordingly.
19290         * winner.el (winner-hook-installed-p): Remove.
19291         (winner-mode): Simplify accordingly.
19293         * subr.el (add-to-list): Fix compiler-macro when `append' is
19294         not constant.  Don't use `cl-member' for the base case.
19296         * progmodes/subword.el: Fix boundary case (bug#13758).
19297         (subword-forward-regexp): Make it a constant.  Wrap optional \\W in its
19298         own group.
19299         (subword-backward-regexp): Make it a constant.
19300         (subword-forward-internal): Don't treat a trailing capital as the
19301         beginning of a word.
19303 2013-07-22  Ari Roponen  <ari.roponen@gmail.com>  (tiny change)
19305         * emacs-lisp/package.el (package-menu-mode): Don't modify the
19306         global value of tabulated-list-revert-hook (bug#14930).
19308 2013-07-22  Juanma Barranquero  <lekktu@gmail.com>
19310         * desktop.el: Require 'cl-lib.
19311         (desktop-before-saving-frames-functions): New hook.
19312         (desktop--process-minibuffer-frames): Set desktop-mini parameter only
19313         for frames being saved.  Rename from desktop--save-minibuffer-frames.
19314         (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
19315         Do not save frames with non-nil `desktop-dont-save' parameter.
19316         Filter out deleted frames.
19317         (desktop--find-frame): Use cl-find-if.
19318         (desktop--select-frame): Use cl-(first|second|third) to access values
19319         of desktop-mini.
19320         (desktop--make-frame): Use cl-delete-if.
19321         (desktop--sort-states): Fix sorting of minibuffer-owning frames.
19322         (desktop-restore-frames): Use cl-(first|second|third) to access values
19323         of desktop-mini.  Look for visible frame at the end, not while
19324         restoring frames.
19326         * dired-x.el (dired-mark-unmarked-files, dired-virtual)
19327         (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
19328         Use string-match-p, looking-at-p (bug#14927).
19330 2013-07-21  Juanma Barranquero  <lekktu@gmail.com>
19332         * desktop.el (desktop-saved-frame-states):
19333         Rename from desktop--saved-states; all users changed.
19334         (desktop-save-frames): Rename from desktop--save-frames.
19335         Do not save state to desktop file.
19336         (desktop-save): Save desktop-saved-frame-states to desktop file
19337         and reset to nil.
19338         (desktop-restoring-frames-p): New function.
19339         (desktop-restore-frames): Use it.  Rename from desktop--restore-frames.
19340         (desktop-read): Use desktop-restoring-frames-p.  Do not try to fix
19341         buffer-lists when restoring frames.  Suggested by Martin Rudalics.
19343         * desktop.el: Correctly restore iconified frames.
19344         (desktop--filter-iconified-position): New function.
19345         (desktop-filter-parameters-alist): Add entries for `top' and `left'.
19347 2013-07-20  Glenn Morris  <rgm@gnu.org>
19349         * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
19350         Let `message' do the formatting.
19351         (def-gdb-preempt-display-buffer): Add explicit format.
19353         * image-dired.el (image-dired-track-original-file):
19354         Use with-current-buffer.
19355         (image-dired-track-thumbnail): Use with-current-buffer.
19356         Avoid changing point of wrong window.
19358         * image-dired.el (image-dired-track-original-file):
19359         Avoid changing point of wrong window.  (Bug#14909)
19361 2013-07-20  Richard Copley  <rcopley@gmail.com>  (tiny change)
19363         * progmodes/gdb-mi.el (gdb-done-or-error):
19364         Guard against "%" in gdb output.  (Bug#14127)
19366 2013-07-20  Andreas Schwab  <schwab@linux-m68k.org>
19368         * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
19369         (Bug#14826)
19371         * international/mule.el (coding-system-iso-2022-flags): Fix last
19372         change.
19374 2013-07-20  Kenichi Handa  <handa@gnu.org>
19376         * international/mule.el (coding-system-iso-2022-flags):
19377         Add `8-bit-level-4'.  (Bug#8522)
19379 2013-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19381         * net/shr.el (shr-mouse-browse-url): New command and keystroke
19382         (bug#14815).
19384         * net/eww.el (eww-process-text-input): Allow inputting when the
19385         point is at the start of the line, as the properties aren't
19386         front-sticky.
19388         * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
19389         degenerate widths.
19391 2013-07-19  Richard Stallman  <rms@gnu.org>
19393         * epa.el (epa-popup-info-window): Doc fix.
19395         * subr.el (split-string): New arg TRIM.
19397 2013-07-18  Juanma Barranquero  <lekktu@gmail.com>
19399         * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
19400         Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
19402 2013-07-18  Michael Albinus  <michael.albinus@gmx.de>
19404         * filenotify.el (file-notify--library): Rename from
19405         `file-notify-support'.  Do not autoload.  Adapt all uses.
19406         (file-notify-supported-p): New defun.
19408         * autorevert.el (auto-revert-use-notify):
19409         Use `file-notify-supported-p' instead of `file-notify-support'.
19410         Adapt docstring.
19411         (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
19413         * net/tramp.el (tramp-file-name-for-operation):
19414         Add `file-notify-supported-p'.
19416         * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
19417         New defun.
19418         (tramp-sh-file-name-handler-alist): Add it as handler for
19419         `file-notify-supported-p '.
19421         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
19422         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
19423         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
19424         Add `ignore' as handler for `file-notify-*' functions.
19426 2013-07-17  Eli Zaretskii  <eliz@gnu.org>
19428         * simple.el (line-move-partial, line-move): Don't start vscroll or
19429         scroll-up if the current line is not taller than the window.
19430         (Bug#14881)
19432 2013-07-16  Dmitry Gutov  <dgutov@yandex.ru>
19434         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
19435         highlight question marks in the method names as strings.
19436         (ruby-block-beg-keywords): Inline.
19437         (ruby-font-lock-keyword-beg-re): Extract from
19438         `ruby-font-lock-keywords'.
19440 2013-07-16  Jan Djärv  <jan.h.d@swipnet.se>
19442         * frame.el (blink-cursor-blinks): New defcustom.
19443         (blink-cursor-blinks-done): New defvar.
19444         (blink-cursor-start): Set blink-cursor-blinks-done to 1.
19445         (blink-cursor-timer-function): Check if number of blinks has been
19446         done on X and NS.
19447         (blink-cursor-suspend, blink-cursor-check): New defuns.
19449 2013-07-15  Glenn Morris  <rgm@gnu.org>
19451         * edmacro.el (edmacro-format-keys): Fix previous change.
19453 2013-07-15  Paul Eggert  <eggert@cs.ucla.edu>
19455         * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
19456         The hack didn't work outside English locales anyway.
19458 2013-07-15  Juanma Barranquero  <lekktu@gmail.com>
19460         * simple.el (define-alternatives): Rename from alternatives-define,
19461         per RMS' suggestion.
19463 2013-07-14  Juanma Barranquero  <lekktu@gmail.com>
19465         * desktop.el (desktop-restore-frames): Change default to t.
19466         (desktop-restore-in-current-display): Now offer more options.
19467         (desktop-restoring-reuses-frames): New customization option.
19468         (desktop--saved-states): Doc fix.
19469         (desktop-filter-parameters-alist): New variable, renamed and expanded
19470         from desktop--excluded-frame-parameters.
19471         (desktop--target-display): New variable.
19472         (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
19473         (desktop--filter-tty*, desktop--filter-*-color)
19474         (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
19475         (desktop--filter-save-desktop-parm)
19476         (desktop-restore-in-original-display-p): New functions.
19477         (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
19478         (desktop--save-minibuffer-frames): New function, inspired by a similar
19479         function from Martin Rudalics.
19480         (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
19481         (desktop--restore-in-this-display-p): Remove.
19482         (desktop--find-frame): Rename from desktop--find-frame-in-display
19483         and add predicate argument.
19484         (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
19485         (desktop--reuse-list): New variable.
19486         (desktop--select-frame, desktop--make-frame, desktop--sort-states):
19487         New functions.
19488         (desktop--restore-frames): Add support for "minibuffer-special" frames.
19490 2013-07-14  Michael Albinus  <michael.albinus@gmx.de>
19492         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
19494 2013-07-13  Dmitry Gutov  <dgutov@yandex.ru>
19496         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
19497         Highlight conversion methods on Kernel.
19499 2013-07-13  Alan Mackenzie  <acm@muc.de>
19501         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
19502         and comment it out.  This out-commenting enables certain C++
19503         declarations to be parsed correctly.
19505 2013-07-13  Eli Zaretskii  <eliz@gnu.org>
19507         * international/mule.el (define-coding-system): Doc fix.
19509         * simple.el (default-font-height): Don't call font-info if the
19510         frame's default font didn't change since the frame was created.
19511         (Bug#14838)
19513 2013-07-13  Leo Liu  <sdl.web@gmail.com>
19515         * ido.el (ido-read-file-name): Guard against non-symbol value.
19517 2013-07-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
19519         * progmodes/python.el (python-imenu--build-tree): Fix corner case
19520         in nested defuns.
19522 2013-07-13  Leo Liu  <sdl.web@gmail.com>
19524         * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
19525         ido-set-matches call.  (Bug#6852)
19527 2013-07-12  Dmitry Gutov  <dgutov@yandex.ru>
19529         * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
19530         (ruby-syntax-expansion-allowed-p): Support array of symbols, for
19531         Ruby 2.0.
19532         (ruby-font-lock-keywords): Distinguish calls to functions with
19533         module-like names from module references.  Highlight character
19534         literals.
19536 2013-07-12  Sergio Durigan Junior  <sergiodj@riseup.net>  (tiny change)
19538         * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
19539         (gdb-send): Handle continued commands.  (Bug#14847)
19541 2013-07-12  Juanma Barranquero  <lekktu@gmail.com>
19543         * desktop.el (desktop--v2s): Remove unused local variable.
19544         (desktop-save-buffer): Make defvar-local; adjust docstring.
19545         (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
19546         (desktop-clear, desktop-save-buffer-p): Use string-match-p.
19548 2013-07-12  Andreas Schwab  <schwab@linux-m68k.org>
19550         * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
19552 2013-07-12  Eli Zaretskii  <eliz@gnu.org>
19554         * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
19555         (Bug#14842)
19557 2013-07-12  Glenn Morris  <rgm@gnu.org>
19559         * doc-view.el: Require cl-lib at runtime too.
19560         (doc-view-remove-if): Remove.
19561         (doc-view-search-next-match, doc-view-search-previous-match):
19562         Use cl-remove-if.
19564         * edmacro.el: Require cl-lib at runtime too.
19565         (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
19566         (edmacro-mismatch, edmacro-subseq): Remove.
19568         * shadowfile.el: Require cl-lib.
19569         (shadow-remove-if): Remove.
19570         (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
19571         Use cl-remove-if.
19573         * wid-edit.el: Require cl-lib.
19574         (widget-choose): Use cl-remove-if.
19575         (widget-remove-if): Remove.
19577         * progmodes/ebrowse.el: Require cl-lib at runtime too.
19578         (ebrowse-delete-if-not): Remove.
19579         (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
19580         (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
19581         Use cl-delete-if-not.
19583 2013-07-12  Juanma Barranquero  <lekktu@gmail.com>
19585         * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
19586         (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
19588 2013-07-12  Leo Liu  <sdl.web@gmail.com>
19590         * ido.el (dired-do-copy, dired): Set 'ido property.  (Bug#11954)
19592 2013-07-11  Glenn Morris  <rgm@gnu.org>
19594         * emacs-lisp/edebug.el: Require cl-lib at run-time too.
19595         (edebug-gensym-index, edebug-gensym):
19596         Remove reimplementation of cl-gensym.
19597         (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
19599         * thumbs.el: Require cl-lib at run-time too.
19600         (thumbs-gensym-counter, thumbs-gensym):
19601         Remove reimplementation of cl-gensym.
19602         (thumbs-temp-file): Use cl-gensym.
19604         * emacs-lisp/ert.el: Require cl-lib at runtime too.
19605         (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
19606         (ert--intersection, ert--set-difference, ert--set-difference-eq)
19607         (ert--union, ert--gensym-counter, ert--gensym-counter)
19608         (ert--coerce-to-vector, ert--remove*, ert--string-position)
19609         (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
19610         (ert-make-test-unbound, ert--expand-should-1)
19611         (ert--expand-should, ert--should-error-handle-error)
19612         (should-error, ert--explain-equal-rec)
19613         (ert--plist-difference-explanation, ert-select-tests)
19614         (ert--make-stats, ert--remove-from-list, ert--string-first-line):
19615         Use cl-lib functions rather than reimplementations.
19617 2013-07-11  Michael Albinus  <michael.albinus@gmx.de>
19619         * net/tramp.el (tramp-methods): Extend docstring.
19620         (tramp-connection-timeout): New defcustom.
19621         (tramp-error-with-buffer): Reset timestamp only when appropriate.
19622         (with-tramp-progress-reporter): Simplify.
19623         (tramp-process-actions): Improve messages.
19625         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
19626         * net/tramp-sh.el (tramp-maybe-open-connection):
19627         Use `tramp-connection-timeout'.
19628         (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
19629         (Bug#14808)
19631 2013-07-11  Leo Liu  <sdl.web@gmail.com>
19633         * ido.el (ido-read-file-name): Conform to the requirements of
19634         read-file-name.  (Bug#11861)
19635         (ido-read-directory-name): Conform to the requirements of
19636         read-directory-name.
19638 2013-07-11  Juanma Barranquero  <lekktu@gmail.com>
19640         * subr.el (delay-warning): New function.
19642 2013-07-10  Eli Zaretskii  <eliz@gnu.org>
19644         * simple.el (default-line-height): New function.
19645         (line-move-partial, line-move): Use it instead of computing the
19646         line height inline.
19647         (line-move-partial): Always compute ROWH.  If the last line is
19648         partially-visible, but its text is completely visible, allow
19649         cursor to enter such a partially-visible line.
19651 2013-07-10  Michael Albinus  <michael.albinus@gmx.de>
19653         Improve error messages.  (Bug#14808)
19655         * net/tramp.el (tramp-current-connection): New defvar, moved from
19656         tramp-sh.el.
19657         (tramp-message-show-progress-reporter-message): Remove, not
19658         needed anymore.
19659         (tramp-error-with-buffer): Show message in minibuffer.
19660         Discard input before waiting.  Reset connection timestamp.
19661         (with-tramp-progress-reporter): Improve messages.
19662         (tramp-process-actions): Use progress reporter.  Delete process in
19663         case of error.  Improve messages.
19665         * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
19666         Call `tramp-error-with-buffer' with vector and buffer.
19667         (tramp-current-connection): Remove.
19668         (tramp-maybe-open-connection): The car of
19669         `tramp-current-connection' are the first 3 slots of the vector.
19671 2013-07-10  Teodor Zlatanov  <tzz@lifelogs.com>
19673         * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
19674         inside continued strings.
19676 2013-07-10  Paul Eggert  <eggert@cs.ucla.edu>
19678         Timestamp fixes for undo (Bug#14824).
19679         * files.el (clear-visited-file-modtime): Move here from fileio.c.
19681 2013-07-10  Leo Liu  <sdl.web@gmail.com>
19683         * files.el (require-final-newline): Allow safe local value.
19684         (Bug#14834)
19686 2013-07-09  Leo Liu  <sdl.web@gmail.com>
19688         * ido.el (ido-read-directory-name): Handle fallback.
19689         (ido-read-file-name): Update DIR to ido-current-directory.
19690         (Bug#1516)
19691         (ido-add-virtual-buffers-to-list): Robustify.  (Bug#14552)
19693 2013-07-09  Dmitry Gutov  <dgutov@yandex.ru>
19695         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
19696         "autoload".  Remove "warn lower camel case" section, previously
19697         commented out.  Highlight negation char.  Do not highlight the
19698         target in singleton method definitions.
19700 2013-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
19702         * faces.el (tty-setup-hook): Declare the hook.
19704         * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
19705         and detect when a guard/pred depends on local vars (bug#14773).
19706         (pcase--u1): Adjust caller.
19708 2013-07-08  Eli Zaretskii  <eliz@gnu.org>
19710         * simple.el (line-move-partial, line-move): Account for
19711         line-spacing.
19712         (line-move-partial): Avoid setting vscroll when the last
19713         partially-visible line in window is of default height.
19715 2013-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19717         * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
19718         been used a while.
19720 2013-07-07  Juanma Barranquero  <lekktu@gmail.com>
19722         * subr.el (read-quoted-char): Remove unused local variable `char'.
19724 2013-07-07  Michael Kifer  <kifer@cs.stonybrook.edu>
19726         * vc/ediff.el (ediff-version): Version update.
19727         (ediff-files-command, ediff3-files-command, ediff-merge-command)
19728         (ediff-merge-with-ancestor-command, ediff-directories-command)
19729         (ediff-directories3-command, ediff-merge-directories-command)
19730         (ediff-merge-directories-with-ancestor-command): New functions.
19731         All are command-line interfaces to ediff: to facilitate calling
19732         Emacs with the appropriate ediff functions invoked.
19734         * emulation/viper-cmd.el (viper-del-forward-char-in-insert):
19735         New function.
19736         (viper-save-kill-buffer): Check if buffer is modified.
19738         * emulation/viper.el (viper-version): Version update.
19739         (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
19741 2013-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
19743         * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
19744         * emulation/viper-cmd.el (viper-envelop-ESC-key): Remove function.
19745         (viper-intercept-ESC-key): Simplify.
19746         * emulation/viper-keym.el (viper-ESC-key): Make it a constant,
19747         don't use kbd.
19748         * emulation/viper.el (viper--tty-ESC-filter, viper--lookup-key)
19749         (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
19750         (viper-setup-ESC-to-escape): New functions.
19751         (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
19752         (viper-set-hooks): Do not modify flyspell-mode-hook.  (Bug#13793)
19754 2013-07-07  Eli Zaretskii  <eliz@gnu.org>
19756         * simple.el (default-font-height, window-screen-lines):
19757         New functions.
19758         (line-move, line-move-partial): Use them instead of
19759         frame-char-height and window-text-height.  This makes scrolling
19760         text smoother when the buffer's default face uses a font that is
19761         different from the frame's default font.
19763 2013-07-06  Jan Djärv  <jan.h.d@swipnet.se>
19765         * files.el (write-file): Do not display confirm dialog for NS,
19766         it does its own dialog, which can't be canceled (Bug#14578).
19768 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
19770         * simple.el (line-move-partial): Adjust the row returned by
19771         posn-at-point for the current window-vscroll.  (Bug#14567)
19773 2013-07-06  Michael Albinus  <michael.albinus@gmx.de>
19775         * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
19776         (tramp-sh-file-inotifywait-process-filter): Handle file names with
19777         spaces.
19779 2013-07-06  Martin Rudalics  <rudalics@gmx.at>
19781         * window.el (window-state-put-stale-windows): New variable.
19782         (window--state-put-2): Save list of windows without matching buffer.
19783         (window-state-put): Remove "bufferless" windows if possible.
19785 2013-07-06  Juanma Barranquero  <lekktu@gmail.com>
19787         * simple.el (alternatives-define): Remove leftover :group keyword.
19788         Tweak docstring.
19790 2013-07-06  Leo Liu  <sdl.web@gmail.com>
19792         * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
19793         (ido-enable-virtual-buffers): New variable.
19794         (ido-buffer-internal, ido-toggle-virtual-buffers)
19795         (ido-make-buffer-list): Use it.
19796         (ido-exhibit): Support turning on and off virtual buffers
19797         automatically.
19799 2013-07-06  Juanma Barranquero  <lekktu@gmail.com>
19801         * simple.el (alternatives-define): New macro.
19803 2013-07-06  Stefan Monnier  <monnier@iro.umontreal.ca>
19805         * subr.el (read-quoted-char): Use read-key.
19806         (sit-for): Let read-event decode tty input (bug#14782).
19808 2013-07-05  Stephen Berman  <stephen.berman@gmx.net>
19810         * calendar/todo-mode.el: Add handling of file deletion, both by
19811         mode command and externally.  Fix various related bugs.
19812         Clarify Commentary and improve some documentation strings and code.
19813         (todo-delete-file): New command.
19814         (todo-check-file): New function.
19815         (todo-show): Handle external deletion of the file we're trying to
19816         show (bug#14688).  Replace called-interactively-p by an optional
19817         prefix argument to avoid problematic interaction with catch form
19818         when byte compiled (bug#14702).
19819         (todo-quit): Handle external deletion of the archive's todo file.
19820         Make sure the buffer that was visiting the archive file is still
19821         live before trying to bury it.
19822         (todo-category-completions): Handle external deletion of any
19823         category completion files.
19824         (todo-jump-to-category, todo-basic-insert-item): Recalculate list
19825         of todo files, in case of external deletion.
19826         (todo-add-file): Replace unnecessary setq by let-binding.
19827         (todo-find-archive): Check whether there are any archives.
19828         Replace unnecessary setq by let-binding.
19829         (todo-archive-done-item): Use find-file-noselect to get the
19830         archive buffer whether or not the archive already exists.
19831         Remove superfluous code.  Use file size instead of buffer-file-name to
19832         check if the archive is new; if it is, update list of archives.
19833         (todo-default-todo-file): Allow nil to be a valid value for when
19834         there are no todo files.
19835         (todo-reevaluate-default-file-defcustom): Use corrected definition
19836         of todo-default-todo-file.
19837         (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
19838         (todo-delete-category, todo-show-categories-table)
19839         (todo-category-number): Clarify comment.
19840         (todo-filter-items): Clarify documentation string.
19841         (todo-show-current-file, todo-display-as-todo-file)
19842         (todo-reset-and-enable-done-separator): Tweak documentation string.
19843         (todo-done-separator): Make separator length window-width, since
19844         bug#2749 is now fixed.
19846 2013-07-05  Michael Albinus  <michael.albinus@gmx.de>
19848         * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
19849         Support both "gvfs-monitor-dir" and "inotifywait".
19850         (tramp-sh-file-inotifywait-process-filter): Rename from
19851         `tramp-sh-file-notify-process-filter'.
19852         (tramp-sh-file-gvfs-monitor-dir-process-filter)
19853         (tramp-get-remote-gvfs-monitor-dir): New defuns.
19855 2013-07-05  Leo Liu  <sdl.web@gmail.com>
19857         * autoinsert.el (auto-insert-alist): Default to lexical-binding.
19859 2013-07-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
19861         * frame.el (display-pixel-height, display-pixel-width)
19862         (display-mm-height, display-mm-width): Mention behavior on
19863         multi-monitor setups in docstrings.
19864         (w32-display-monitor-attributes-list): Declare function.
19865         (display-monitor-attributes-list): Use it.
19867 2013-07-04  Michael Albinus  <michael.albinus@gmx.de>
19869         * filenotify.el: New package.
19871         * autorevert.el (top): Require filenotify.el.
19872         (auto-revert-notify-enabled): Remove.  Use `file-notify-support'
19873         instead.
19874         (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
19875         (auto-revert-notify-handler): Use `file-notify-*' functions.
19877         * subr.el (file-notify-handle-event): Move function to filenotify.el.
19879         * net/tramp.el (tramp-file-name-for-operation):
19880         Handle `file-notify-add-watch' and `file-notify-rm-watch'.
19882         * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
19883         for `file-notify-add-watch' and `file-notify-rm-watch'.
19884         (tramp-process-sentinel): Improve trace.
19885         (tramp-sh-handle-file-notify-add-watch)
19886         (tramp-sh-file-notify-process-filter)
19887         (tramp-sh-handle-file-notify-rm-watch)
19888         (tramp-get-remote-inotifywait): New defuns.
19890 2013-07-03  Juri Linkov  <juri@jurta.org>
19892         * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
19893         call of `occur-read-primary-args' to interactive spec.
19895         * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
19896         `ibuffer-do-occur' like in buff-menu.el.  (Bug#14673)
19898 2013-07-03  Matthias Meulien  <orontee@gmail.com>
19900         * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
19901         `Buffer-menu-multi-occur'.  Add it to the menu.
19902         (Buffer-menu-mode): Document it in docstring.
19903         (Buffer-menu-multi-occur): New command.  (Bug#14673)
19905 2013-07-03  Dmitry Gutov  <dgutov@yandex.ru>
19907         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
19908         keywords and built-ins.
19910 2013-07-03  Glenn Morris  <rgm@gnu.org>
19912         * subr.el (y-or-n-p): Handle empty prompts.  (Bug#14770)
19914         Make info-xref checks case-sensitive by default
19915         * info.el (Info-find-node, Info-find-in-tag-table)
19916         (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
19917         Add option for exact case matching of nodes.
19918         * info-xref.el (info-xref): New custom group.
19919         (info-xref-case-fold): New option.
19920         (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
19922 2013-07-03  Leo Liu  <sdl.web@gmail.com>
19924         * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
19926 2013-07-03  Dmitry Gutov  <dgutov@yandex.ru>
19928         * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
19929         middle of block statement initially, lower the depth.  Remove
19930         FIXME comment, not longer valid.  Remove middle of block statement
19931         detection, no need to do that anymore since we've been using
19932         `ruby-parse-region' here.
19934 2013-07-02  Jan Djärv  <jan.h.d@swipnet.se>
19936         * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
19938 2013-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
19940         * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
19942 2013-07-01  Juanma Barranquero  <lekktu@gmail.com>
19944         * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
19945         (desktop-restore-in-current-display): New customization option.
19946         (desktop--excluded-frame-parameters): Add `font'.
19947         (desktop--save-frames): Rename from desktop--save-windows.
19948         (desktop--restore-in-this-display-p): New function.
19949         (desktop--make-full-frame): Remove unwanted width/height from
19950         full(width|height) frames.
19951         (desktop--restore-frames): Rename from desktop--restore-windows.
19952         Obey desktop-restore-current-display.  Do not delete old frames or
19953         select a new frame unless we were able to restore at least one frame.
19955 2013-06-30  Michal Nazarewicz  <mina86@mina86.com>
19957         * files.el (find-file-noselect): Simplify conditional expression.
19959         * textmodes/remember.el (remember-append-to-file):
19960         Don't mix `find-buffer-visiting' and `get-file-buffer'.
19962         Add `remember-notes' function to store random notes across Emacs
19963         restarts.
19964         * textmodes/remember.el (remember-data-file): Add :set callback to
19965         affect notes buffer (if any).
19966         (remember-notes): New command.
19967         (remember-notes-buffer-name, bury-remember-notes-on-kill):
19968         New defcustoms for the `remember-notes' function.
19969         (remember-notes-save-and-bury-buffer): New command.
19970         (remember-notes-mode-map): New variable.
19971         (remember-mode): New minor mode.
19972         (remember-notes--kill-buffer-query): New function.
19973         * startup.el (initial-buffer-choice): Add notes to custom type.
19975 2013-06-30  Eli Zaretskii  <eliz@gnu.org>
19977         * bindings.el (right-char, left-char): Don't call sit-for, this is
19978         no longer needed.  Use arithmetic comparison only for numerical
19979         arguments.
19981         * international/mule-cmds.el (select-safe-coding-system):
19982         Handle the case of FROM being a string correctly.  (Bug#14755)
19984 2013-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19986         * net/shr.el (shr-make-table-1): Add a sanity check that allows
19987         progression on degenerate tables.
19988         (shr-rescale-image): ImageMagick animated images currently don't work.
19990 2013-06-30  Juanma Barranquero  <lekktu@gmail.com>
19992         Some fixes and improvements for desktop frame restoration.
19993         It is still experimental and disabled by default.
19994         * desktop.el (desktop--save-windows): Put the selected frame at
19995         the head of the list.
19996         (desktop--make-full-frame): New function.
19997         (desktop--restore-windows): Try to re-select the frame that was
19998         selected upon saving.  Do not abort if some frames fail to restore,
19999         just show an error message and continue.  Set up maximized frames
20000         so they have default non-maximized dimensions.
20002 2013-06-30  Dmitry Gutov  <dgutov@yandex.ru>
20004         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
20005         Don't start heredoc inside a string or comment.
20007 2013-06-29  Eli Zaretskii  <eliz@gnu.org>
20009         * bindings.el (visual-order-cursor-movement): New defcustom.
20010         (right-char, left-char): Provide visual-order cursor motion by
20011         calling move-point-visually.  Update the doc strings.
20013 2013-06-28  Kenichi Handa  <handa@gnu.org>
20015         * international/mule.el (define-coding-system): New coding system
20016         properties :inhibit-null-byte-detection,
20017         :inhibit-iso-escape-detection, and :prefer-utf-8.
20018         (set-buffer-file-coding-system): If :charset-list property of
20019         CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
20020         appropriate for setting.
20022         * international/mule-cmds.el (select-safe-coding-system):
20023         If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
20024         multibyte characters, return utf-8 (or one of its siblings).
20026         * international/mule-conf.el (prefer-utf-8): New coding system.
20027         (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
20028         files.
20030 2013-06-28  Ivan Kanis  <ivan@kanis.fr>
20032         * net/shr.el (shr-render-region): New function.
20034         * net/eww.el: Autoload `eww-browse-url'.
20036 2013-06-27  Dmitry Gutov  <dgutov@yandex.ru>
20038         * emacs-lisp/package-x.el (package-upload-buffer-internal):
20039         Adapt to `package-desc-version' being a list.
20040         Use `package--ac-desc-version' to retrieve version from a package
20041         archive element.
20043 2013-06-27  Juanma Barranquero  <lekktu@gmail.com>
20045         New experimental feature to save&restore window and frame setup.
20046         * desktop.el (desktop-save-windows): New defcustom.
20047         (desktop--saved-states): New var.
20048         (desktop--excluded-frame-parameters): New defconst.
20049         (desktop--filter-frame-parms, desktop--find-frame-in-display)
20050         (desktop--restore-windows, desktop--save-windows): New functions.
20051         (desktop-save): Call `desktop--save-windows'.
20052         (desktop-read): Call `desktop--restore-windows'.
20054 2013-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20056         * net/shr.el (add-face-text-property): Remove compat definition.
20058 2013-06-27  Stephen Berman  <stephen.berman@gmx.net>
20060         * info.el (Info-try-follow-nearest-node): Move search for footnote
20061         above search for node name to prevent missing a footnote (bug#14717).
20063 2013-06-27  Stephen Berman  <stephen.berman@gmx.net>
20065         * obsolete/otodo-mode.el: Add obsolescence info to file header.
20067 2013-06-27  Leo Liu  <sdl.web@gmail.com>
20069         * net/eww.el (eww-read-bookmarks): Check file size.
20071 2013-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
20073         * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
20074         advice--pending if newdef is nil or an autoload (bug#13820).
20075         (advice-mapc): New function.
20077 2013-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20079         * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
20080         probably.
20081         (eww-mode-map): Add a menu bar.
20082         (eww-add-bookmark): New command.
20083         (eww-bookmark-mode): New mode and commands.
20084         (eww-add-bookmark): Remove newlines from the title.
20085         (eww-bookmark-browse): Don't bug out if it's the only window.
20087 2013-06-26  Glenn Morris  <rgm@gnu.org>
20089         * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
20090         (hfy-size): Handle ttys.  (Bug#14668)
20092         * info-xref.el: Update for Texinfo 5 change in *note format.
20093         (info-xref-node-re, info-xref-note-re): New constants.
20094         (info-xref-check-buffer): Use info-xref-note-re.
20096 2013-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
20098         * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
20100         * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
20101         nil terminate the loop (bug#14718).
20103 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20105         * net/eww.el: Rework history traversal.  When going forward/back,
20106         put these actions into the history, too, so that they can be
20107         replayed.
20108         (eww-render): Move the history reset to the correct buffer.
20110 2013-06-25  Juri Linkov  <juri@jurta.org>
20112         * files-x.el (modify-dir-local-variable): Change the header comment
20113         in the file with directory local variables.  (Bug#14692)
20115         * files-x.el (read-file-local-variable-value): Add `default'.
20116         (Bug#14710)
20118 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20120         * net/eww.el (eww-make-unique-file-name): Create a unique file
20121         name before saving to entering `y' accidentally asynchronously.
20123 2013-06-25  Ivan Kanis  <ivan@kanis.fr>
20125         * net/eww.el (eww-download): New command and keystroke.
20127 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20129         * net/eww.el (eww-copy-page-url): Change name of command.
20131         * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
20132         be more consistent with Info and dired.
20134         * net/eww.el (eww-mode-map): Ditto.
20136 2013-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
20138         * emacs-lisp/package.el: Use lexical-binding.  Include obsolete
20139         packages from archives.
20140         (package-archive-contents): Change format; include obsolete packages.
20141         (package-desc): Use `dir' to mark builtin packages.
20142         (package--from-builtin): Set the `dir' field to `builtin'.
20143         (generated-autoload-file, version-control): Declare.
20144         (package-compute-transaction): Change first arg and return value to be
20145         lists of package-descs.  Adjust to new package-archive-contents format.
20146         (package--add-to-archive-contents): Adjust to new
20147         package-archive-contents format.
20148         (package-download-transaction): Arg is now a list of package-descs.
20149         (package-install): If `pkg' is a package name, pass it as
20150         a requirement, so it is subject to the usual (e.g. disabled) checks.
20151         (describe-package): Accept package-desc as well.
20152         (describe-package-1): Describe a specific package-desc.  Add links to
20153         other package-descs for the same package name.
20154         (package-menu-describe-package): Pass the actual package-desc.
20155         (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
20156         works correctly.
20157         (package-desc-status): New function.
20158         (package-menu--refresh): New function, extracted
20159         from package-menu--generate.
20160         (package-menu--generate): Use it.
20161         (package-delete): Update package-alist.
20162         (package-menu-execute): Don't call package-initialize.
20164         * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
20165         progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
20166         progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
20167         progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
20168         progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
20169         emacs-lisp/cl-macs.el: Neuter the "Version:" header.
20171 2013-06-25  Martin Rudalics  <rudalics@gmx.at>
20173         * window.el (window--state-get-1): Workaround for bug#14527.
20174         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
20176 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20178         * net/eww.el (eww-back-url): Implement the history by stashing all
20179         the data into a list.
20180         (eww-forward-url): Allow going forward in the history, too.
20182 2013-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
20184         * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
20185         for values and use read--expression for expressions (bug#14710).
20186         (read-file-local-variable): Avoid setq.
20187         (read-file-local-variable-mode): Use minor-mode-list.
20189 2013-06-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
20191         * textmodes/bibtex.el (bibtex-generate-url-list): Add support
20192         for DOI URLs.
20194 2013-06-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
20196         * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
20197         Update imenu-support when dialect changes.
20199 2013-06-25  Leo Liu  <sdl.web@gmail.com>
20201         * ido.el (ido-read-internal): Allow forward slash on windows.
20203 2013-06-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20205         * net/eww.el (eww): Start of strings is \\`, not ^.
20207 2013-06-24  Ivan Kanis  <ivan@kanis.fr>
20209         * net/shr.el (shr-browse-url): Fix interactive spec.
20211         * net/eww.el (eww): Add a trailing slash to domain names.
20213 2013-06-24  Juanma Barranquero  <lekktu@gmail.com>
20215         * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
20217 2013-06-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20219         * net/shr.el (shr-browse-url): Use an external browser if given a
20220         prefix.
20222         * net/eww.el (eww-external-browser): Move to shr.
20224 2013-06-24  Ivan Kanis  <ivan@kanis.fr>
20226         * net/eww.el (eww): Work more correctly for file: URLs.
20227         (eww-detect-charset): Allow quoted charsets.
20228         (eww-yank-page-url): New command and keystroke.
20230 2013-06-24  Daiki Ueno  <ueno@gnu.org>
20232         * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
20233         file name of gpg executable.
20234         (epg-context-program): New function.
20235         (epg-context-home-directory): New function.
20236         (epg-context-set-program): New function.
20237         (epg-context-set-home-directory): New function.
20238         (epg--start): Use `epg-context-program' instead of
20239         'epg-gpg-program'.
20240         (epg--list-keys-1): Likewise.
20242 2013-06-24  Leo Liu  <sdl.web@gmail.com>
20244         * ido.el (ido-read-internal): Fix bug#14620.
20246 2013-06-23  Juanma Barranquero  <lekktu@gmail.com>
20248         * faces.el (face-documentation): Simplify.
20249         (read-face-attribute, tty-find-type, x-resolve-font-name):
20250         Use `string-match-p'.
20251         (list-faces-display): Use `string-match-p'.  Simplify.
20252         (face-spec-recalc): Check face to avoid face alias loops.
20253         (read-color): Use `string-match-p' and non-capturing parenthesis.
20255 2013-06-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20257         * net/shr.el (shr-rescale-image): Use the new
20258         :max-width/:max-height functionality.
20260 2013-06-23  Ivan Kanis  <ivan@kanis.fr>
20262         * net/eww.el (eww-search-prefix): New variable.
20263         (eww): Use it.
20264         (eww-external-browser): New variable.
20265         (eww-mode-map): New keystroke.
20266         (eww-browse-with-external-browser): New command.
20268         * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
20270 2013-06-23  Juanma Barranquero  <lekktu@gmail.com>
20272         * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
20273         Don't skip aligning the next header field when padding is 0;
20274         otherwise, field width is not respected unless the title is as
20275         wide as the field.
20277 2013-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
20279         * emacs-lisp/package.el (package-el-version): Remove.
20280         (package-process-define-package): Fix inf-loop.
20281         (package-install): Allow symbols as arguments again.
20283 2013-06-22  Dmitry Gutov  <dgutov@yandex.ru>
20285         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
20286         add some more keyword-like methods.
20287         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
20289 2013-06-22  Juanma Barranquero  <lekktu@gmail.com>
20291         * bs.el (bs-buffer-show-mark): Make defvar-local.
20292         (bs-mode): Use setq-local.
20294         * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
20295         (emacs-lock--try-unlocking): Make defvar-local.
20297 2013-06-22  Glenn Morris  <rgm@gnu.org>
20299         * play/cookie1.el (cookie-apropos): Minor simplification.
20301         * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
20303 2013-06-22  Dmitry Gutov  <dgutov@yandex.ru>
20305         * progmodes/ruby-mode.el (auto-mode-alist): Do not use
20306         `regexp-opt', it breaks the build during dumping.
20308 2013-06-21  Dmitry Gutov  <dgutov@yandex.ru>
20310         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
20311         Highlight keyword-like methods on Kernel and Module with
20312         font-lock-builtin-face.
20313         (auto-mode-alist): Consolidate different entries into one regexp
20314         and add more *file-s.
20316 2013-06-21  Stephen Berman  <stephen.berman@gmx.net>
20318         * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
20320         * calendar/diary-lib.el (diary-goto-entry-function): New variable.
20321         (diary-entry): Use it in the action of this button type instead of
20322         diary-goto-entry.
20324         * calendar/todo-mode.el: New version.
20325         (todo-add-category): Append new category to end of file and give
20326         it the highest number, instead of putting it at the beginning and
20327         giving it 0.  Incorporate noninteractive functionality.
20328         (todo-forward-category): Adapt to 1-based category numbering.
20329         Allow skipping over archived categories.
20330         (todo-backward-category): Derive from todo-forward-category.
20331         (todo-backward-item, todo-forward-item): Make noninteractive and
20332         delegate interactive part to new commands.  Make sensitive to done items.
20333         (todo-categories): Make value an alist of category names and
20334         vectors of item counts.
20335         (todo-category-beg): Make a defconst.
20336         (todo-category-number): Use 1 instead of 0 as initial value.
20337         (todo-category-select): Make sensitive to overlays, optional item
20338         highlighting and done items.
20339         (todo-delete-item): Make sensitive to overlays and marked and done items.
20340         (todo-edit-item): Make sensitive to overlays and editing of
20341         date/time header optional.  Add format checks.
20342         (todo-edit-multiline): Rename to todo-edit-multiline-item.  Make a
20343         no-op if point is not on an item.  Advertise using todo-edit-quit.
20344         (todo-edit-mode): Make sensitive to new format, font-locking, and
20345         multiple todo files.
20346         (todo-insert-item, todo-insert-item-here): Derive from
20347         todo-basic-insert-item and extend functionality.
20348         (todo-item-end, todo-item-start): Make sensitive to done items.
20349         (todo-item-string): Don't return text properties.  Restore point.
20350         (todo-jump-to-category): Make sensitive to multiple todo files and
20351         todo archives.  Use extended category completion.
20352         (todo-lower-item, todo-raise-item): Rename to *-priority and
20353         derive from todo-set-item-priority.
20354         (todo-mode): Derive from special-mode.  Make sensitive to new
20355         format, font-locking and multiple todo files.  Make read-only.
20356         (todo-mode-map): Don't suppress digit keys, so they can supply
20357         prefix arguments.  Add many new key bindings.
20358         (todo-prefix): Insert as an overlay instead of file text.
20359         Change semantics from diary date expression to purely visual mark.
20360         (todo-print): Rename to todo-print-buffer.  Make buffer display
20361         features printable.  Remove option to restrict number of items
20362         printed.  Add option to print to file.
20363         (todo-print-function): Rename to todo-print-buffer-function.
20364         (todo-quit): Extend to handle exiting new todo modes.
20365         (todo-remove-item): Make sensitive to overlays.
20366         (todo-save): Extend to buffers of filtered items.
20367         (todo-show): Make sensitive to done items, multiple todo files and
20368         new todo modes.  Offer to convert legacy todo file before creating
20369         first new todo file.
20370         (todo-show-priorities): Rename to todo-top-priorities.
20371         Change semantics of value 0.
20372         (todo-top-priorities): Rename to todo-filter-top-priorities,
20373         derive from todo-filter-items and extend functionality.
20374         (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
20375         and extend functionality to other types of filtered items.
20376         (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
20377         (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
20378         (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
20379         (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
20380         (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
20381         (todo-edit-mode-hook, todo-entry-prefix-function)
20382         (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
20383         (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
20384         (todo-initials, todo-insert-threshold, todo-item-string-start)
20385         (todo-line-string, todo-menu, todo-mode-hook)
20386         (todo-more-important-p, todo-previous-answer, todo-previous-line)
20387         (todo-print-priorities, todo-remove-separator)
20388         (todo-save-top-priorities-too, todo-string-count-lines)
20389         (todo-string-multiline-p, todo-time-string-format)
20390         (todo-tmp-buffer-name): Remove.
20391         (todo-add-file, todo-archive-done-item, todo-choose-archive)
20392         (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
20393         (todo-edit-category-diary-inclusion)
20394         (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
20395         (todo-edit-file, todo-edit-item-date-day)
20396         (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
20397         (todo-edit-item-date-month, todo-edit-item-date-to-today)
20398         (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
20399         (todo-edit-item-diary-nonmarking, todo-edit-item-header)
20400         (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
20401         (todo-filter-diary-items-multifile, todo-filter-regexp-items)
20402         (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
20403         (todo-filter-top-priorities-multifile, todo-find-archive)
20404         (todo-find-filtered-items-file, todo-go-to-source-item)
20405         (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
20406         (todo-jump-to-archive-category, todo-lower-category)
20407         (todo-mark-category, todo-marked-item-p, todo-merge-category)
20408         (todo-move-category, todo-move-item, todo-next-button)
20409         (todo-next-item, todo-padded-string, todo-powerset)
20410         (todo-previous-button, todo-previous-item)
20411         (todo-print-buffer-to-file, todo-raise-category)
20412         (todo-rename-category, todo-repair-categories-sexp, todo-search)
20413         (todo-set-category-number, todo-set-item-priority)
20414         (todo-set-top-priorities-in-category)
20415         (todo-set-top-priorities-in-file, todo-show-categories-table)
20416         (todo-sort-categories-alphabetically-or-numerically)
20417         (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
20418         (todo-sort-categories-by-done, todo-sort-categories-by-todo)
20419         (todo-toggle-item-header, todo-toggle-item-highlighting)
20420         (todo-toggle-mark-item, todo-toggle-prefix-numbers)
20421         (todo-toggle-view-done-items, todo-toggle-view-done-only)
20422         (todo-unarchive-items, todo-unmark-category): New commands.
20423         (todo-absolute-file-name, todo-add-to-buffer-list)
20424         (todo-adjusted-category-label-length, todo-basic-edit-item-header)
20425         (todo-basic-insert-item, todo-category-completions)
20426         (todo-category-number, todo-category-string-matcher-1)
20427         (todo-category-string-matcher-2, todo-check-filtered-items-file)
20428         (todo-check-format, todo-clear-matches)
20429         (todo-comment-string-matcher, todo-convert-legacy-date-time)
20430         (todo-current-category, todo-date-string-matcher)
20431         (todo-define-insertion-command, todo-diary-expired-matcher)
20432         (todo-diary-goto-entry, todo-diary-item-p)
20433         (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
20434         (todo-display-categories, todo-display-sorted, todo-done-item-p)
20435         (todo-done-item-section-p, todo-done-separator)
20436         (todo-done-string-matcher, todo-files, todo-filter-items)
20437         (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
20438         (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
20439         (todo-insert-category-line, todo-insert-item-from-calendar)
20440         (todo-insert-sort-button, todo-insert-with-overlays)
20441         (todo-insertion-command-name, todo-insertion-key-bindings)
20442         (todo-label-to-key, todo-longest-category-name-length)
20443         (todo-make-categories-list, todo-mode-external-set)
20444         (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
20445         (todo-modes-set-3, todo-multiple-filter-files)
20446         (todo-nondiary-marker-matcher, todo-prefix-overlays)
20447         (todo-read-category, todo-read-date, todo-read-dayname)
20448         (todo-read-file-name, todo-read-time)
20449         (todo-reevaluate-category-completions-files-defcustom)
20450         (todo-reevaluate-default-file-defcustom)
20451         (todo-reevaluate-filelist-defcustoms)
20452         (todo-reevaluate-filter-files-defcustom)
20453         (todo-reset-and-enable-done-separator, todo-reset-comment-string)
20454         (todo-reset-done-separator, todo-reset-done-separator-string)
20455         (todo-reset-done-string, todo-reset-global-current-todo-file)
20456         (todo-reset-highlight-item, todo-reset-nondiary-marker)
20457         (todo-reset-prefix, todo-set-categories)
20458         (todo-set-date-from-calendar, todo-set-show-current-file)
20459         (todo-set-top-priorities, todo-short-file-name)
20460         (todo-show-current-file, todo-sort, todo-time-string-matcher)
20461         (todo-total-item-counts, todo-update-buffer-list)
20462         (todo-update-categories-display, todo-update-categories-sexp)
20463         (todo-update-count, todo-validate-name, todo-y-or-n-p):
20464         New functions.
20465         (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
20466         New major modes.
20467         (todo-categories, todo-display, todo-edit, todo-faces)
20468         (todo-filtered): New defgroups.
20469         (todo-archived-only, todo-button, todo-category-string, todo-date)
20470         (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
20471         (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
20472         (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
20473         (todo-add-item-if-new-category, todo-always-add-time-string)
20474         (todo-categories-align, todo-categories-archived-label)
20475         (todo-categories-category-label, todo-categories-diary-label)
20476         (todo-categories-done-label, todo-categories-number-separator)
20477         (todo-categories-todo-label, todo-categories-totals-label)
20478         (todo-category-completions-files, todo-completion-ignore-case)
20479         (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
20480         (todo-done-separator-string, todo-done-string)
20481         (todo-files-function, todo-filter-done-items, todo-filter-files)
20482         (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
20483         (todo-initial-category, todo-initial-file, todo-item-mark)
20484         (todo-legacy-date-time-regexp, todo-mode-line-function)
20485         (todo-nondiary-marker, todo-number-prefix)
20486         (todo-print-buffer-function, todo-show-current-file)
20487         (todo-show-done-only, todo-show-first, todo-show-with-done)
20488         (todo-skip-archived-categories, todo-top-priorities-overrides)
20489         (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
20490         (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
20491         New defcustoms.
20492         (todo-category-done, todo-date-pattern, todo-date-string-start)
20493         (todo-diary-items-buffer, todo-done-string-start)
20494         (todo-filtered-items-buffer, todo-item-start)
20495         (todo-month-abbrev-array, todo-month-name-array)
20496         (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
20497         (todo-top-priorities-buffer): New defconsts.
20498         (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
20499         (todo-categories-with-marks, todo-category-string-face)
20500         (todo-comment-face, todo-comment-string, todo-current-todo-file)
20501         (todo-date-face, todo-date-from-calendar, todo-descending-counts)
20502         (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
20503         (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
20504         (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
20505         (todo-font-lock-keywords, todo-global-current-todo-file)
20506         (todo-insertion-commands, todo-insertion-commands-arg-key-list)
20507         (todo-insertion-commands-args)
20508         (todo-insertion-commands-args-genlist)
20509         (todo-insertion-commands-names, todo-insertion-map)
20510         (todo-key-bindings-t, todo-key-bindings-t+a)
20511         (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
20512         (todo-multiple-filter-files, todo-multiple-filter-files-widget)
20513         (todo-nondiary-face, todo-print-buffer, todo-time-face)
20514         (todo-visited): New variables.
20516 2013-06-21  Glenn Morris  <rgm@gnu.org>
20518         * play/cookie1.el (cookie-apropos): Add optional display argument.
20519         * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
20520         (psychoanalyze-pinhead): Use cookie-doctor.
20522 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
20524         * emacs-lisp/package.el (tar-get-file-descriptor)
20525         (tar--extract): Declare.
20527 2013-06-21  Eduard Wiebe  <usenet@pusto.de>
20529         Extend flymake's warning predicate to be a function (bug#14217).
20530         * progmodes/flymake.el (flymake-warning-predicate): New.
20531         (flymake-parse-line): Use it.
20532         (flymake-warning-re): Make obsolete alias to
20533         `flymake-warning-predicate'.
20535 2013-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20537         * emacs-lisp/package.el (package-alist): Include obsolete packages.
20538         (package-obsolete-list): Remove.
20539         (package-activate): Remove min-version argument.  Add `force' argument.
20540         Adjust to new package-alist format.
20541         (package-mark-obsolete): Remove.
20542         (package-unpack): Force reload of the package's autoloads.
20543         (package-installed-p): Check builtins if the installed package is not
20544         recent enough.
20545         (package-initialize): Don't reset package-obsolete-list.
20546         Don't specify which package version to activate.
20547         (package-process-define-package, describe-package-1)
20548         (package-menu--generate): Adjust to new package-alist format.
20550 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
20552         * allout-widgets.el (allout-widgets-mode-off)
20553         (allout-widgets-mode-on, allout-widgets-pre-command-business)
20554         (allout-widgets-post-command-business)
20555         (allout-widgets-after-copy-or-kill-function)
20556         (allout-widgets-after-undo-function, allout-test-range-overlaps)
20557         (allout-decorate-item-and-context)
20558         (allout-graphics-modification-handler): Fix typos in docstrings.
20559         (allout-get-or-create-parent-widget): Use `looking-at-p'.
20561         * cmuscheme.el (scheme-start-file): Doc fix.
20562         (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
20563         (scheme-input-filter): Use `string-match-p'.
20565         * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
20567         * dired-x.el: Use Dired consistently in docstrings.
20569         * dired.el: Use Dired consistently in docstrings.
20570         (dired-readin, dired-mode): Use `setq-local'.
20571         (dired-switches-alist): Make defvar-local.
20572         (dired-buffers-for-dir): Use `zerop'.
20573         (dired-safe-switches-p, dired-switches-escape-p)
20574         (dired-insert-old-subdirs, dired-move-to-end-of-filename)
20575         (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
20576         (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
20577         (dired-goto-next-nontrivial-file): Use `string-match-p'.
20578         (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
20579         (dired-toggle-marks, dired-mark-files-containing-regexp)
20580         (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
20581         (dired-flag-auto-save-files, dired-flag-backup-files):
20582         Use `looking-at-p'.
20583         (dired-mark-files-regexp, dired-build-subdir-alist):
20584         Use `string-match-p', `looking-at-p'.
20586         * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
20587         (direct-print-region-helper): Use `string-match-p'.
20589 2013-06-21  Leo Liu  <sdl.web@gmail.com>
20591         * comint.el (comint-redirect-results-list-from-process):
20592         Fix infinite loop.
20594 2013-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20596         * net/eww.el (eww-update-header-line-format): Quote % characters.
20598 2013-06-21  Glenn Morris  <rgm@gnu.org>
20600         * play/cookie1.el (cookie): New custom group.
20601         (cookie-file): New option.
20602         (cookie-check-file): New function.
20603         (cookie): Make it interactive.  Make start and end messages optional.
20604         Interactively, display the result.  Default to cookie-file.
20605         (cookie-insert): Default to cookie-file.
20606         (cookie-snarf): Make start and end messages optional.
20607         Default to cookie-file.  Use with-temp-buffer.
20608         (cookie-read): Rename from read-cookie.
20609         Make start and end messages optional.  Default to cookie-file.
20610         (cookie-shuffle-vector): Rename from shuffle-vector.  Use dotimes.
20611         Do not autoload it.
20612         (cookie-apropos, cookie-doctor): New functions, copied from yow.el
20613         * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
20615 2013-06-21  Leo Liu  <sdl.web@gmail.com>
20617         * progmodes/octave.el (octave-mode): Backward compatibility fix.
20619 2013-06-21  Glenn Morris  <rgm@gnu.org>
20621         * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
20623 2013-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
20624             Daniel Hackney  <dan@haxney.org>
20626         * emacs-lisp/package.el: Use tar-mode rather than tar executable.
20627         Consolidate the single-file vs tarball code.
20628         (package-desc-suffix): New function.
20629         (package-desc-full-name): Don't bother inlining it.
20630         (package-load-descriptor): Return the new package-desc.
20631         (package-mark-obsolete): Remove unused arg `package'.
20632         (package-unpack): Make it work for single files as well.
20633         Make it update package-alist.
20634         (package--make-autoloads-and-stuff): Rename from
20635         package--make-autoloads-and-compile.  Don't compile any more.
20636         (package--compile): New function.
20637         (package-generate-description-file): New function, extracted from
20638         package-unpack-single.
20639         (package-unpack-single): Remove.
20640         (package--with-work-buffer): Add indentation and debugging info.
20641         (package-download-single): Remove.
20642         (package-install-from-archive): Rename from package-download-tar, make
20643         it take a pkg-desc, and make it work for single files as well.
20644         (package-download-transaction): Simplify.
20645         (package-tar-file-info): Remove `file' arg.  Rewrite not to use an
20646         external tar program.
20647         (package-install-from-buffer): Remove `pkg-desc' argument.
20648         Use package-tar-file-info for tar-mode buffers.
20649         (package-install-file): Simplify accordingly.
20650         (package-archive-base): Change to take a pkg-desc.
20651         * tar-mode.el (tar--check-descriptor): New function, extracted from
20652         tar-get-descriptor.
20653         (tar-get-descriptor): Use it.
20654         (tar-get-file-descriptor): New function.
20655         (tar--extract): New function, extracted from tar-extract.
20656         (tar--extract): Use it.
20657         * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
20658         case the summary uses non-ascii.  Adjust to new calling convention of
20659         package-tar-file-info.
20661 2013-06-21  Leo Liu  <sdl.web@gmail.com>
20663         * comint.el (comint-redirect-results-list-from-process):
20664         Fix random delay.  (Bug#14681)
20666 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
20668         * profiler.el (profiler-format-number): Use log, not log10.
20670 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
20672         * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
20674 2013-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
20676         * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
20677         * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
20678         yet available.
20679         * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
20680         (AUTOGENEL): ... here.
20681         * emacs-lisp/cl-macs.el (cl--sublis): New function.
20682         (cl--defsubst-expand): Use it.
20684 2013-06-20  Paul Eggert  <eggert@cs.ucla.edu>
20686         * subr.el (log10): Move here from C code, and declare as obsolete.
20687         All uses of (log10 X) replaced with (log X 10).
20689 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
20691         * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
20692         Declare with `defvar-local'.
20693         (tabulated-list-use-header-line, tabulated-list-entries)
20694         (tabulated-list-padding, tabulated-list-printer)
20695         (tabulated-list-sort-key): Declare with `defvar-local'.
20696         (tabulated-list-init-header, tabulated-list-print-fake-header):
20697         Use `setq-local'.
20699 2013-06-20  Michael Albinus  <michael.albinus@gmx.de>
20701         * arc-mode.el (archive-mode): Add `archive-write-file' to
20702         `write-contents-functions' also for remote files.  (Bug#14652)
20704 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
20706         * cus-edit.el (custom-commands): Fix typos.
20707         (custom-display): Fix tooltip text.
20708         (custom-magic-alist, custom-filter-face-spec, custom-group-members):
20709         Fix typos in docstrings.
20710         (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
20711         (custom-unlispify-menu-entry, custom-magic-value-create)
20712         (custom-add-see-also, custom-group-value-create): Use ?\s.
20713         (custom-guess-type, customize-apropos, editable-field)
20714         (custom-face-value-create): Use `string-match-p'.
20715         (custom-save-variables, custom-save-faces): Use `looking-at-p'.
20717         * custom.el (custom-load-symbol): Use `string-match-p'.
20719         * ansi-color.el: Convert to lexical binding.
20720         (ansi-colors): Fix URL.
20721         (ansi-color-context, ansi-color-context-region): Use defvar-local.
20722         (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
20723         (ansi-color-make-color-map): Rename local var ansi-color-map to map.
20725 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20727         * net/eww.el (eww-process-text-input): Display passwords as asterisks.
20729         * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
20731 2013-06-19  Tom Tromey  <tromey@redhat.com>
20733         * net/eww.el (eww-top-url): Remove.
20734         (eww-home-url, eww-start-url, eww-contents-url): New defvars.
20735         (eww-render): Set new variables.  Don't set eww-top-url.
20736         (eww-handle-link): Handle "prev", "home", and "contents".
20737         Downcase the rel text.
20738         (eww-top-url): Choose best top URL.
20740 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20742         * net/eww.el: Rewrite to implement form elements "by hand" instead of
20743         relying in widget.el.  Using widget.el leads to too many
20744         user interface inconsistencies.
20745         (eww-self-insert): Implement entering commands in text fields.
20746         (eww-process-text-input): New function to make text input field editing
20747         work.
20748         (eww-submit): Rewrite to use the new-style form methods.
20749         (eww-select-display): Display the correct selected item.
20750         (eww-change-select): Implement changing the select value.
20751         (eww-toggle-checkbox): Implement radio/checkboxes.
20752         (eww-update-field): Fix compilation error.
20753         (eww-tag-textarea): Implement <textarea>.
20755         * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
20756         we don't shadow mode-specific bindings.
20758         * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
20759         nothing to push.
20761         * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
20763 2013-06-19  Glenn Morris  <rgm@gnu.org>
20765         * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
20767 2013-06-19  Michael Albinus  <michael.albinus@gmx.de>
20769         * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
20770         not needed.
20772         * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
20774 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20776         * net/browse-url.el (browse-url-browser-function):
20777         `eww-browse-url' has the right calling signature, `eww' does not.
20779 2013-06-19  Glenn Morris  <rgm@gnu.org>
20781         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
20782         Only eval autoloaded macros.
20783         (byte-compile-autoload): Only give the macro warning for macros.
20785         * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
20786         (ps-underlined-faces): Declare.
20788         * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
20789         (speedbar-add-supported-extension): Declare.
20791         * international/titdic-cnv.el (tit-process-header, miscdic-convert):
20792         Don't include a date stamp in the header of the generated file;
20793         it leads to needless differences between output files.
20795 2013-06-19  Michael Albinus  <michael.albinus@gmx.de>
20797         * net/secrets.el (secrets-struct-secret-content-type):
20798         Replace check of introspection data by a test call of "CreateItem".
20799         Some servers do not offer introspection.
20801 2013-06-19  Stefan Monnier  <monnier@iro.umontreal.ca>
20803         * electric.el (electric-pair-mode): Improve interaction with
20804         electric-layout-mode.
20805         (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
20806         (electric-pair-syntax): Use text-mode-syntax-table in comments
20807         and strings.
20808         (electric-pair--insert): New function.
20809         (electric-pair-post-self-insert-function): Use it and
20810         electric--after-char-pos.
20812 2013-06-19  Leo Liu  <sdl.web@gmail.com>
20814         * progmodes/octave.el (octave-help): Fix regexp.
20816 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20818         * net/shr.el (shr-make-table-1): Implement <td rowspan>.
20819         (shr-table-horizontal-line): Allow nil as a value, and change the
20820         default.
20821         (shr-insert-table-ruler): Respect the nil value.
20823 2013-06-18  Tom Tromey  <tromey@barimba>
20825         * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
20826         New defvars.
20827         (eww-open-file): New defun.
20828         (eww-render): Initialize new variables.
20829         (eww-display-html): Handle "link" and "a".
20830         (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
20831         (eww-mode-map): Move "p" to "l".  Bind "p", "n", "t", and "u".
20832         (eww-back-url): Rename from eww-previous-url.
20833         (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
20834         New defuns.
20836 2013-06-18  Dmitry Gutov  <dgutov@yandex.ru>
20838         * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
20839         Distinguish ternary operator tokens from slash symbol and slash
20840         char literal.
20842 2013-06-18  Juanma Barranquero  <lekktu@gmail.com>
20844         Convert symbol prettification into minor mode and global minor mode.
20846         * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
20847         `prog-prettify-symbols', and make a local defvar instead of defcustom.
20848         (prettify-symbols--keywords): Rename from
20849         `prog-prettify-symbols-alist' and make a local defvar.
20850         (prettify-symbols--compose-symbol): Rename from
20851         `prog--prettify-font-lock-compose-symbol'.
20852         (prettify-symbols--make-keywords): Rename from
20853         `prog-prettify-font-lock-symbols-keywords' and simplify.
20854         (prog-prettify-install): Remove.
20855         (prettify-symbols-mode): New minor mode, based on
20856         `prog-prettify-install'.
20857         (turn-on-prettify-symbols-mode): New function.
20858         (global-prettify-symbols-mode): New globalized minor mode.
20860         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
20861         * progmodes/cfengine.el (cfengine3-mode):
20862         * progmodes/perl-mode.el (perl-mode): Don't call
20863         `prog-prettify-install'; set `prettify-symbols-alist' instead.
20865 2013-06-18  Juri Linkov  <juri@jurta.org>
20867         * files-x.el (modify-file-local-variable-message): New function.
20868         (modify-file-local-variable)
20869         (modify-file-local-variable-prop-line): Add arg INTERACTIVE
20870         and call `modify-file-local-variable-message' when it's non-nil.
20871         (add-file-local-variable, delete-file-local-variable)
20872         (add-file-local-variable-prop-line)
20873         (delete-file-local-variable-prop-line): Add arg INTERACTIVE
20874         and use it.  (Bug#9820)
20876 2013-06-18  Juri Linkov  <juri@jurta.org>
20878         * emulation/vi.el (vi-shell-op):
20879         * emulation/vip.el (vip-execute-com, ex-command):
20880         * emulation/viper-cmd.el (viper-exec-bang):
20881         * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
20882         the call of `shell-command-on-region'.  (Bug#14637)
20884         * simple.el (shell-command-on-region): Doc fix.
20886 2013-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
20888         * emacs-lisp/eieio-custom.el: Remove misleading Version: header
20889         (bug#14633).
20891 2013-06-18  Glenn Morris  <rgm@gnu.org>
20893         * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
20895         * newcomment.el (comment-search-forward, comment-search-backward):
20896         Doc fix.  (Bug#14376)
20898 2013-06-18  Juanma Barranquero  <lekktu@gmail.com>
20900         * face-remap.el (buffer-face-toggle): Fix typo in docstring.
20901         (buffer-face-mode-invoke): Doc fix.
20903 2013-06-18  Matthias Meulien  <orontee@gmail.com>
20905         * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
20906         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
20908 2013-06-18  Glenn Morris  <rgm@gnu.org>
20910         * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
20911         Replace obsolete function generic-make-keywords with its expansion.
20913         * progmodes/python.el (ffap-alist): Declare.
20915         * textmodes/reftex.el (bibtex-mode-map): Declare.
20917 2013-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
20919         * emacs-lisp/package.el: Update package-alist after install (bug#14632).
20920         (package-unpack, package-unpack-single): Return the pkg-dir.
20921         (package-download-transaction): Use it to update package-alist.
20923 2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20925         * net/browse-url.el (browse-url-browser-function): Add `eww' as a
20926         possible choice.
20928 2013-06-17  Juri Linkov  <juri@jurta.org>
20930         * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
20932 2013-06-17  Dmitry Gutov  <dgutov@yandex.ru>
20934         * emacs-lisp/package.el (package-load-descriptor):
20935         Remove `with-syntax-table' call, `read' doesn't need it.
20936         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
20938 2013-06-17  Juanma Barranquero  <lekktu@gmail.com>
20940         * startup.el (command-line): Expand package name returned by
20941         `package--description-file' (bug#14639).
20943 2013-06-17  Dmitry Gutov  <dgutov@yandex.ru>
20945         * emacs-lisp/package.el (package-load-descriptor): Do not call
20946         `emacs-lisp-mode', just use its syntax table.
20948 2013-06-17  Juanma Barranquero  <lekktu@gmail.com>
20950         * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
20951         `font-lock-extra-managed-props' if any prettifying keyword is added.
20952         (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
20953         (prog-mode): Use `setq-local'.
20955 2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
20957         * international/characters.el (standard-case-table): Set syntax of ?»
20958         and ?« to punctuation.
20960 2013-06-16  Juanma Barranquero  <lekktu@gmail.com>
20962         * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
20963         Save relevant match data before calling `syntax-ppss' (bug#14595).
20965 2013-06-15  Juri Linkov  <juri@jurta.org>
20967         * files-x.el (modify-file-local-variable-prop-line): Add local
20968         variables to the end of the existing comment on the first line.
20969         Use `file-auto-mode-skip' to skip interpreter magic line,
20970         and also skip XML declaration.
20972 2013-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
20974         * startup.el (package--builtin-versions): New var.
20975         (package-subdirectory-regexp): Remove.
20976         (package--description-file): Hard code its value instead.
20978         * emacs-lisp/package.el: Don't activate packages older than builtin.
20979         (package-obsolete-list): Rename from package-obsolete-alist, and make
20980         it into a simple list of package-desc.
20981         (package-strip-version): Remove.
20982         (package-built-in-p): Use package--builtin-versions.
20983         (package-mark-obsolete): Simplify.
20984         (package-process-define-package): Mark it obsolete if older than the
20985         builtin version.
20986         (package-handle-response): Use line-end-position.
20987         (package-read-archive-contents, package--download-one-archive):
20988         Simplify.
20989         (package--add-to-archive-contents): Skip if older than the builtin or
20990         installed version.
20991         (package-menu-describe-package): Fix last change.
20992         (package-list-unversioned): New var.
20993         (package-menu--generate): Use it.
20995         * emacs-lisp/autoload.el: Manage package--builtin-versions.
20996         (autoload--insert-text, autoload--insert-cookie-text): New functions.
20997         (autoload-builtin-package-versions): New variable.
20998         (autoload-generate-file-autoloads): Use them.
20999         Remove the list of autoloaded functions/macros from the
21000         (autoload...) comments.
21002         * Makefile.in (autoloads): Set autoload-builtin-package-versions.
21004 2013-06-15  Eli Zaretskii  <eliz@gnu.org>
21006         * simple.el (line-move-partial): Don't jump to the next screen
21007         line as soon as it becomes visible.  Instead, continue enlarging
21008         the vscroll until the portion of a tall screen line that's left on
21009         display is about the height of the frame's default font.
21010         (Bug#14567)
21012 2013-06-15  Glenn Morris  <rgm@gnu.org>
21014         * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
21015         compilation-error-regexp-alist void, or local while let-bound.
21017         * progmodes/make-mode.el (makefile-mode-syntax-table):
21018         Treat "=" as punctuation.  (Bug#14614)
21020 2013-06-15  Juanma Barranquero  <lekktu@gmail.com>
21022         * help-fns.el (describe-variable):
21023         Add extra line for permanent-local variables.
21025 2013-06-15  Simen Heggestøyl  <simenheg@ifi.uio.no>  (tiny change)
21027         * progmodes/scheme.el (scheme-font-lock-keywords-2):
21028         Add export, import, library.  (Bug#9164)
21029         (library): Set indent function.
21031 2013-06-14  Glenn Morris  <rgm@gnu.org>
21033         * term/xterm.el (xterm--query):
21034         Stop after first matching handler.  (Bug#14615)
21036 2013-06-14  Ivan Kanis  <ivan@kanis.fr>
21038         Add support for dired in saveplace.
21039         * dired.el (dired-initial-position-hook): New variable.
21040         (dired-initial-position): Call hook to place cursor position.
21041         * saveplace.el (save-place-to-alist): Add dired position.
21042         (save-place-dired-hook): New function.
21044 2013-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
21046         * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
21047         through a symbol rather than letrec.
21049         * emacs-lisp/package.el: Don't recompute dir.  Use pkg-descs more.
21050         (package-desc): Add `dir' field.
21051         (package-desc-full-name): New function.
21052         (package-load-descriptor): Combine the two arguments.  Don't use `load'.
21053         (package-maybe-load-descriptor): Remove.
21054         (package-load-all-descriptors): Just call package-load-descriptor.
21055         (package--disabled-p): New function.
21056         (package-desc-vers, package-desc-doc): Remove aliases.
21057         (package--dir): Remove function.
21058         (package-activate): Check if a package is disabled.
21059         (package-process-define-package): New function, extracted from
21060         define-package.
21061         (define-package): Turn into a place holder.
21062         (package-unpack-single, package-tar-file-info):
21063         Use package--description-file.
21064         (package-compute-transaction): Use package--disabled-p.
21065         (package-download-transaction): Don't call
21066         package-maybe-load-descriptor since they're all loaded anyway.
21067         (package-install): Change argument to be a pkg-desc.
21068         (package-delete): Use a single pkg-desc argument.
21069         (describe-package-1): Use package-desc-dir instead of package--dir.
21070         Use package-desc property instead of package-symbol.
21071         (package-install-button-action): Adjust accordingly.
21072         (package--push): Rewrite.
21073         (package-menu--print-info): Adjust accordingly.  Change the ID format
21074         to be a pkg-desc.
21075         (package-menu-describe-package, package-menu-get-status)
21076         (package-menu--find-upgrades, package-menu-mark-upgrades)
21077         (package-menu-execute, package-menu--name-predicate):
21078         Adjust accordingly.
21079         * startup.el (package--description-file): New function.
21080         (command-line): Use it.
21081         * emacs-lisp/package-x.el (package-upload-buffer-internal):
21082         Use package-desc-version.
21084         * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
21085         (byte-compile-preprocess): Use it.
21086         (byte-compile-file-form-defalias): Try a bit harder to use macros we
21087         can't quite recognize.
21088         (byte-compile-add-to-list): Remove.
21089         * emacs-lisp/cconv.el (cconv-warnings-only): New function.
21090         (cconv-closure-convert): Add assertion.
21092         * emacs-lisp/map-ynp.el: Use lexical-binding.
21093         (map-y-or-n-p): Remove unused vars `tail' and `object'.
21094         Factor out some repeated code.
21096 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
21098         * subr.el (with-eval-after-load): New macro.
21099         (eval-after-load): Allow form to be a function.
21100         take advantage of lexical-binding.
21101         (do-after-load-evaluation): Use dolist and adjust to new format.
21102         * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
21104 2013-06-13  Juri Linkov  <juri@jurta.org>
21106         * replace.el (perform-replace): Display "symbol " and other search
21107         modes from `isearch-message-prefix' in the *Help* buffer.
21109         * isearch.el (isearch-query-replace): Add " symbol" and other
21110         possible search modes from `isearch-message-prefix' to the prompt.
21111         (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
21112         when reading a regexp to collect.
21114 2013-06-13  Juri Linkov  <juri@jurta.org>
21116         * isearch.el (word-search-regexp): Match whitespace if the search
21117         string begins or ends in whitespace.  The LAX arg is applied to
21118         both ends of the search string.  Use `regexp-quote' and explicit
21119         \< and \> instead of \b.  Use \` and \' instead of ^ and $.
21120         (isearch-symbol-regexp): Sync with `word-search-regexp' where word
21121         boundaries are replaced with symbol boundaries, and characters
21122         between symbols match non-word non-symbol syntax.  (Bug#14602)
21124 2013-06-13  Juri Linkov  <juri@jurta.org>
21126         * isearch.el (isearch-del-char): Don't exceed the length of
21127         `isearch-string' by the prefix arg.  (Bug#14563)
21129 2013-06-13  Juri Linkov  <juri@jurta.org>
21131         * isearch.el (isearch-yank-word, isearch-yank-line)
21132         (isearch-char-by-name, isearch-quote-char)
21133         (isearch-printing-char, isearch-process-search-char):
21134         Add optional count prefix arg.  (Bug#14563)
21136         * international/isearch-x.el
21137         (isearch-process-search-multibyte-characters):
21138         Add optional count prefix arg.
21140 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
21142         * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
21143         (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
21144         lexical-binding.
21146 2013-06-13  Vitalie Spinu  <spinuvit@gmail.com>
21148         * subr.el (set-temporary-overlay-map): Add on-exit argument.
21150 2013-06-13  Glenn Morris  <rgm@gnu.org>
21152         * startup.el (tty-handle-args):
21153         Don't just discard "--" and anything after.  (Bug#14608)
21155         * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
21157 2013-06-13  Michael Albinus  <michael.albinus@gmx.de>
21159         Implement changes in Secret Service API.  Make it backward compatible.
21160         * net/secrets.el (secrets-struct-secret-content-type): New defonst.
21161         (secrets-create-item): Use it.  Prefix properties with interface.
21163 2013-06-13  Michael Hoffman  <9qobl2n02@sneakemail.com>  (tiny change)
21165         * term.el (term-suppress-hard-newline): New option.  (Bug#12017)
21166         (term-emulate-terminal): Respect term-suppress-hard-newline.
21168 2013-06-13  E Sabof  <esabof@gmail.com>  (tiny change)
21170         * image-dired.el (image-dired-dired-toggle-marked-thumbs):
21171         Only remove a `thumb-file' overlay.  (Bug#14548)
21173 2013-06-12  Grégoire Jadi  <daimrod@gmail.com>
21175         * mail/reporter.el (reporter-submit-bug-report):
21176         Handle missing package-name.  (Bug#14600)
21178 2013-06-12  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
21180         * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
21181         (reftex-citation-prompt, reftex-default-bibliography)
21182         (reftex-bib-or-thebib, reftex-get-bibfile-list)
21183         (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
21184         (reftex-bib-sort-author, reftex-bib-sort-year)
21185         (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
21186         (reftex-extract-bib-entries-from-thebibliography)
21187         (reftex-get-bibkey-default, reftex-get-bib-names)
21188         (reftex-parse-bibtex-entry, reftex-get-bib-field)
21189         (reftex-format-bib-entry, reftex-parse-bibitem)
21190         (reftex-format-bibitem, reftex-do-citation)
21191         (reftex-figure-out-cite-format, reftex-offer-bib-menu)
21192         (reftex-restrict-bib-matches, reftex-extract-bib-file)
21193         (reftex-insert-bib-matches, reftex-format-citation)
21194         (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
21195         (reftex-create-bibtex-file): Add docstrings, mostly by converting
21196         existing comments into docstrings.
21198 2013-06-12  Xue Fuqiao  <xfq.free@gmail.com>
21200         * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
21202 2013-06-12  Andreas Schwab  <schwab@suse.de>
21204         * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
21205         for auto-save files.
21207 2013-06-12  Glenn Morris  <rgm@gnu.org>
21209         * ido.el (ido-delete-ignored-files): Remove.
21210         (ido-wide-find-dirs-or-files, ido-make-file-list-1):
21211         Go back to calling ido-ignore-item-p directly.
21213 2013-06-12  Eyal Lotem  <eyal.lotem@gmail.com>  (tiny change)
21215         * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
21217         * ido.el (ido-delete-ignored-files): New function,
21218         split from ido-make-file-list-1.
21219         (ido-wide-find-dirs-or-files): Maybe ignore files.  (Bug#13003)
21220         (ido-make-file-list-1): Use ido-delete-ignored-files.
21222 2013-06-12  Leo Liu  <sdl.web@gmail.com>
21224         * progmodes/octave.el (inferior-octave-startup)
21225         (inferior-octave-completion-table)
21226         (inferior-octave-track-window-width-change)
21227         (octave-eldoc-function-signatures, octave-help)
21228         (octave-find-definition): Use single quoted strings.
21229         (inferior-octave-startup-args): Change default value.
21230         (inferior-octave-startup): Do not hard code "-i" and
21231         "--no-line-editing".
21232         (inferior-octave-resync-dirs): Add optional arg NOERROR.
21233         (inferior-octave-directory-tracker): Use it.
21234         (octave-goto-function-definition): Robustify.
21235         (octave-help): Support highlighting operators in 'See also'.
21236         (octave-find-definition): Find subfunctions only in Octave mode.
21238 2013-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
21240         * help-fns.el (help-fns--compiler-macro): If the handler function is
21241         named, then put a link to it.
21242         * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
21243         * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
21244         (cl-typep): Use it.
21245         (cl-eval-when): Simplify debug spec.
21246         (cl-define-compiler-macro): Use eval-and-compile.  Give a name to the
21247         compiler-macro function instead of setting `compiler-macro-file'.
21249 2013-06-12  Xue Fuqiao  <xfq.free@gmail.com>
21251         * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
21252         * vc/vc-hooks.el (vc-stay-local): Doc fix.
21254 2013-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
21255             Daniel Hackney  <dan@haxney.org>
21257         First part of Daniel Hackney's patch to package.el.
21258         * emacs-lisp/package.el: Use defstruct.
21259         (package-desc): New, main struct.
21260         (package--bi-desc, package--ac-desc): New structs, used to describe the
21261         format in external files.
21262         (package-desc-vers): Replace with package-desc-version accessor.
21263         (package-desc-doc): Replace with package-desc-summary accessor.
21264         (package-activate-1): Remove `package' arg since the pkg-vec now
21265         includes the name.
21266         (define-package): Use package-desc-from-define.
21267         (package-unpack-single): Change file-name arg to be a symbol.
21268         (package--add-to-archive-contents): Use package-desc-create and new
21269         accessor functions to package--ac-desc.
21270         (package-buffer-info, package-tar-file-info): Return a package-desc.
21271         (package-install-from-buffer): Remove `type' argument.  Change pkg-info
21272         arg to be a package-desc.
21273         (package-install-file): Adjust accordingly.  Use \' to match EOS.
21274         (package--from-builtin): New function.
21275         (describe-package-1, package-menu--generate): Use it.
21276         (package--make-autoloads-and-compile): Change name arg to be a symbol.
21277         (package-generate-autoloads): Idem and return the name of the file.
21278         * emacs-lisp/package-x.el (package-upload-buffer-internal):
21279         Change pkg-info arg to be a package-desc.
21280         Use package-make-ac-desc.
21281         (package-upload-file): Use \' to match EOS.
21282         * finder.el (finder-compile-keywords): Use package-make-builtin.
21284 2013-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
21286         * vc/vc.el (vc-deduce-fileset): Change error message.
21287         (vc-read-backend): New function.
21288         (vc-next-action): Use it.
21290         * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
21292         * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
21293         (prolog-font-lock-keywords): Use regexp-opt instead.
21294         Don't manually highlight strings.
21295         (prolog-mode-variables): Simplify comment-start-skip.
21296         (prolog-consult-compile): Use display-buffer.  Remove unused old-filter.
21298         * emacs-lisp/generic.el (generic--normalise-comments)
21299         (generic-set-comment-syntax, generic-set-comment-vars): New functions.
21300         (generic-mode-set-comments): Use them.
21301         (generic-bracket-support): Use setq-local.
21302         (generic-make-keywords-list): Declare obsolete.
21304 2013-06-11  Glenn Morris  <rgm@gnu.org>
21306         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
21307         Prettify after setting font-lock-defaults.  (Bug#14574)
21309 2013-06-11  Juanma Barranquero  <lekktu@gmail.com>
21311         * replace.el (query-replace, occur-read-regexp-defaults-function)
21312         (replace-search):
21313         * subr.el (declare-function, number-sequence, local-set-key)
21314         (substitute-key-definition, locate-user-emacs-file)
21315         (with-silent-modifications, split-string, eval-after-load):
21316         Fix typos, remove unneeded backslashes and reflow some docstrings.
21318 2013-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
21320         * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
21321         default for Elisp files.
21323 2013-06-11  Glenn Morris  <rgm@gnu.org>
21325         * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
21326         although define-derived-mode was doing this anyway.  (Bug#14583)
21328 2013-06-10  Juanma Barranquero  <lekktu@gmail.com>
21330         * allout.el (allout-encryption-plaintext-sanitization-regexps):
21331         Fix make-variable-buffer-local call to refer to the correct variable.
21333 2013-06-10  Aidan Gauland  <aidalgol@amuri.net>
21335         * eshell/em-term.el (eshell-visual-commands)
21336         (eshell-visual-subcommands, eshell-visual-options):
21337         Add summary line to docstrings.  Add cross-references.
21339 2013-06-10  Glenn Morris  <rgm@gnu.org>
21341         * epa.el (epa-read-file-name): New function.  (Bug#14510)
21342         (epa-decrypt-file): Make plain-file optional.  Use epa-read-file-name.
21344 2013-06-09  Aidan Gauland  <aidalgol@amuri.net>
21346         * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
21347         output redirection to be ignored with visual commands.
21349 2013-06-09  Aidan Gauland  <aidalgol@amuri.net>
21351         * eshell/em-term.el (eshell-visual-command-p): New function.
21352         (eshell-term-initialize): Move long lambda to separate function
21353         eshell-visual-command-p.
21354         * eshell/em-dirs.el (eshell-dirs-initialize):
21355         * eshell/em-script.el (eshell-script-initialize):
21356         Add missing #' to lambda.
21358 2013-06-08  Leo Liu  <sdl.web@gmail.com>
21360         * progmodes/octave.el (octave-add-log-current-defun): New function.
21361         (octave-mode): Set add-log-current-defun-function.
21362         (octave-goto-function-definition): Do not move point if not found.
21363         (octave-find-definition): Enhance to try subfunctions first.
21365 2013-06-08  Glenn Morris  <rgm@gnu.org>
21367         * emacs-lisp/bytecomp.el (byte-compile-char-before)
21368         (byte-compile-backward-char, byte-compile-backward-word):
21369         Improve previous change, to handle non-explicit nil.
21371 2013-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
21373         * emacs-lisp/smie.el: Improve show-paren-mode behavior.
21374         (smie--opener/closer-at-point): New function.
21375         (smie--matching-block-data): Use it.  Don't match from right after an
21376         opener or right before a closer.  Obey smie-blink-matching-inners.
21377         Don't signal a mismatch for repeated inners like "switch..case..case".
21379 2013-06-07  Leo Liu  <sdl.web@gmail.com>
21381         * progmodes/octave.el (octave-mode): Set comment-use-global-state
21382         to t.  (Bug#14303)
21383         (octave-function-header-regexp): Fix.  (Bug#14570)
21384         (octave-help-mode-finish-hook, octave-help-mode-finish):
21385         Remove.  Just use temp-buffer-show-hook.
21387         * newcomment.el (comment-search-backward): Revert last change.
21388         (Bug#14434)
21390         * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
21392 2013-06-07  Eli Zaretskii  <eliz@gnu.org>
21394         * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
21395         through xargs, to avoid failure due to MS-Windows limitations on
21396         command-line length.
21398 2013-06-06  Glenn Morris  <rgm@gnu.org>
21400         * font-lock.el (lisp-font-lock-keywords-2):
21401         Treat user-error like error.
21403         * emacs-lisp/bytecomp.el (byte-compile-char-before)
21404         (byte-compile-backward-char, byte-compile-backward-word):
21405         Handle explicit nil arguments.  (Bug#14565)
21407 2013-06-05  Alan Mackenzie  <acm@muc.de>
21409         * isearch.el (isearch-allow-prefix): New user option.
21410         (isearch-other-meta-char): Don't exit isearch when a prefix
21411         argument is typed whilst `isearch-allow-prefix' is non-nil.
21412         (Bug#9706)
21414 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
21416         * autorevert.el (auto-revert-notify-handler): Use memq.
21417         Hide assertion failure.
21419         * skeleton.el: Use cl-lib.
21420         (skeleton-further-elements): Use defvar-local.
21421         (skeleton-insert): Use cl-progv.
21423 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
21425         * progmodes/prog-mode.el (prog-prettify-symbols)
21426         (prog-prettify-install): Update docstrings.
21428 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
21430         * simple.el: Move all the prog-mode code to prog-mode.el.
21431         * progmodes/prog-mode.el: New file.
21432         * loadup.el: Add prog-mode.el.
21434 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
21436         * simple.el (prog-prettify-symbols): Add version.
21437         (prog-prettify-install): Add convenience function to prettify symbols.
21439         * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
21440         (perl--augmented-font-lock-keywords-1)
21441         (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
21442         variables and use it.
21444         * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
21445         (cfengine3-mode): Remove unneeded variable and use it.
21447         * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
21448         (lisp--augmented-font-lock-keywords-1)
21449         (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
21450         Remove unneeded variables and use it.
21452 2013-06-05  João Távora  <joaotavora@gmail.com>
21454         * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
21455         to point when opening the connection.  (Bug#14380)
21457 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
21459         * subr.el (load-history-regexp, load-history-filename-element)
21460         (eval-after-load, after-load-functions, do-after-load-evaluation)
21461         (eval-next-after-load, display-delayed-warnings)
21462         (collapse-delayed-warnings, delayed-warnings-hook): Move after the
21463         definition of save-match-data.
21464         (overriding-local-map): Remove accidental obsolescence declaration.
21466         * emacs-lisp/edebug.el (edebug-result): Move before first use.
21468 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
21470         Generalize symbol prettify support to prog-mode and implement it
21471         for perl-mode, cfengine3-mode, and emacs-lisp-mode.
21472         * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
21473         (prog--prettify-font-lock-compose-symbol)
21474         (prog-prettify-font-lock-symbols-keywords): New variables and
21475         functions to support symbol prettification.
21476         * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
21477         (lisp--augmented-font-lock-keywords-1)
21478         (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
21479         (lisp--prettify-symbols-alist): Implement prettify of lambda.
21480         * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
21481         (cfengine3--prettify-symbols-alist, cfengine3-mode):
21482         Implement prettify of -> => :: strings.
21483         * progmodes/perl-mode.el (perl-prettify-symbols)
21484         (perl--font-lock-compose-symbol)
21485         (perl--font-lock-symbols-keywords): Move to prog-mode.
21486         (perl--prettify-symbols-alist): Prettify -> => :: strings.
21487         (perl-font-lock-keywords-1)
21488         (perl-font-lock-keywords-2): Remove explicit prettify support.
21489         (perl--augmented-font-lock-keywords)
21490         (perl--augmented-font-lock-keywords-1)
21491         (perl--augmented-font-lock-keywords-2, perl-mode):
21492         Implement prettify support.
21494 2013-06-05  Leo Liu  <sdl.web@gmail.com>
21496         Re-implement SMIE matching block highlight using
21497         show-paren-data-function.  (Bug#14395)
21498         * emacs-lisp/smie.el (smie-matching-block-highlight)
21499         (smie--highlight-matching-block-overlay)
21500         (smie--highlight-matching-block-lastpos)
21501         (smie-highlight-matching-block)
21502         (smie-highlight-matching-block-mode): Remove.
21503         (smie--matching-block-data-cache): New variable.
21504         (smie--matching-block-data): New function.
21505         (smie-setup): Use smie--matching-block-data for
21506         show-paren-data-function.
21508         * progmodes/octave.el (octave-mode-menu): Fix.
21509         (octave-find-definition): Skip garbage lines.
21511 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
21513         Fix compilation error with simultaneous dynamic+lexical scoping.
21514         Add warning when a defvar appears after the first let-binding.
21515         * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
21516         (byte-compile-close-variables): Initialize it.
21517         (byte-compile--declare-var): New function.
21518         (byte-compile-file-form-defvar)
21519         (byte-compile-file-form-define-abbrev-table)
21520         (byte-compile-file-form-custom-declare-variable): Use it.
21521         (byte-compile-make-lambda-lexenv): Change the argument.  Simplify.
21522         (byte-compile-lambda): Share call to byte-compile-arglist-vars.
21523         (byte-compile-bind): Handle dynamic bindings that shadow
21524         lexical bindings.
21525         (byte-compile-unbind): Make arg non-optional.
21526         (byte-compile-let): Simplify.
21527         * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
21528         (cconv--analyse-function, cconv-analyse-form): Populate it.
21529         Protect byte-compile-bound-variables to limit the scope of defvars.
21530         (cconv-analyse-form): Add missing rule for (defvar <foo>).
21531         Remove unneeded rule for `declare'.
21533         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
21534         so as to avoid depending on cl-adjoin at run-time.
21535         * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
21537         * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
21538         (macroexp--warn-and-return): Use it.
21540 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
21542         * subr.el: Convert to lexical binding.
21543         (overriding-local-map): Make obsolete.
21544         (add-to-list): Doc fix.  Add compiler macro.
21545         (read-key): Swap values of local maps.
21547 2013-06-05  Leo Liu  <sdl.web@gmail.com>
21549         * eshell/esh-mode.el (eshell-mode): Fix key bindings.
21551 2013-06-04  Leo Liu  <sdl.web@gmail.com>
21553         * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
21554         (compilation-auto-jump): Suppress the "Mark set" message to give
21555         way to exit message.
21557 2013-06-04  Alan Mackenzie  <acm@muc.de>
21559         Remove faulty optimization from indentation calculation.
21560         * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
21561         search limit based on 2000 characters back from indent-point.
21563 2013-06-03  Tassilo Horn  <tsdh@gnu.org>
21565         * eshell/em-term.el (cl-lib): Require `cl-lib'.
21567 2013-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
21569         * emacs-lisp/lisp.el: Use lexical-binding.
21570         (lisp--local-variables-1, lisp--local-variables): New functions.
21571         (lisp--local-variables-completion-table): New var.
21572         (lisp-completion-at-point): Use it complete let-bound vars.
21574         * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
21575         eagerly (bug#14422).
21577 2013-06-03  Michael Albinus  <michael.albinus@gmx.de>
21579         * autorevert.el (auto-revert-notify-enabled)
21580         (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
21581         (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
21582         (auto-revert-notify-handler): Handle also gfilenotify.
21584         * subr.el (file-notify-handle-event): New defun.  Replacing ...
21585         (inotify-event-p, inotify-handle-event, w32notify-handle-event):
21586         Remove.
21588 2013-06-03  Juri Linkov  <juri@jurta.org>
21590         * bindings.el (search-map): Bind `highlight-symbol-at-point' to
21591         `M-s h .'.  (Bug#14427)
21593         * hi-lock.el (highlight-symbol-at-point): New alias for the new
21594         command `hi-lock-face-symbol-at-point'.
21595         (hi-lock-face-symbol-at-point): New command.
21596         (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
21597         (hi-lock-menu): Add `highlight-symbol-at-point'.
21598         (hi-lock-mode): Doc fix.
21600         * isearch.el (isearch-forward-symbol-at-point): New command.
21601         (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
21602         (isearch-highlight-regexp): Add a regexp which matches
21603         words/symbols for word/symbol mode.
21605         * subr.el (find-tag-default-bounds): New function with the body
21606         mostly moved from `find-tag-default'.
21607         (find-tag-default): Move most code to `find-tag-default-bounds',
21608         call it and apply `buffer-substring-no-properties' afterwards.
21610 2013-06-03  Tassilo Horn  <tsdh@gnu.org>
21612         * eshell/em-term.el (eshell-term-initialize):
21613         Use `cl-intersection' rather than `intersection'.
21615 2013-06-02  Xue Fuqiao  <xfq.free@gmail.com>
21617         * vc/log-view.el: Doc fix.
21618         (log-view-mode-map): Copy keymap from `special-mode-map'.
21620 2013-06-02  Eric Ludlam  <zappo@gnu.org>
21622         * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
21623         (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
21624         (eieio-optimize-primary-methods-flag, eieio-initializing-object)
21625         (eieio-unbound, eieio-default-superclass)
21626         (eieio--define-field-accessors, method-static, method-before)
21627         (method-primary, method-after, method-num-lists)
21628         (method-generic-before, method-generic-primary)
21629         (method-generic-after, method-num-slots)
21630         (eieio-specialized-key-to-generic-key)
21631         (eieio--check-type, class-v, class-p)
21632         (eieio-class-name, define-obsolete-function-alias)
21633         (eieio-class-parents-fast, eieio-class-children-fast)
21634         (same-class-fast-p, class-constructor, generic-p)
21635         (generic-primary-only-p, generic-primary-only-one-p)
21636         (class-option-assoc, class-option, eieio-object-p)
21637         (class-abstract-p, class-method-invocation-order)
21638         (eieio-defclass-autoload-map, eieio-defclass-autoload)
21639         (eieio-class-un-autoload, eieio-defclass)
21640         (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
21641         (eieio-add-new-slot, eieio-copy-parents-into-subclass)
21642         (eieio--defgeneric-init-form, eieio-defgeneric-form)
21643         (eieio-defgeneric-reset-generic-form)
21644         (eieio-defgeneric-form-primary-only)
21645         (eieio-defgeneric-reset-generic-form-primary-only)
21646         (eieio-defgeneric-form-primary-only-one)
21647         (eieio-defgeneric-reset-generic-form-primary-only-one)
21648         (eieio-unbind-method-implementations)
21649         (eieio--defmethod, eieio--typep)
21650         (eieio-perform-slot-validation, eieio-validate-slot-value)
21651         (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
21652         (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
21653         (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
21654         (eieio-slot-name-index, eieio-class-slot-name-index)
21655         (eieio-set-defaults, eieio-initarg-to-attribute)
21656         (eieio-attribute-to-initarg, eieio-c3-candidate)
21657         (eieio-c3-merge-lists, eieio-class-precedence-c3)
21658         (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
21659         (eieio-class-precedence-list, eieio-generic-call-methodname)
21660         (eieio-generic-call-arglst, eieio-generic-call-key)
21661         (eieio-generic-call-next-method-list)
21662         (eieio-pre-method-execution-functions, eieio-generic-call)
21663         (eieio-generic-call-primary-only, eieiomt-method-list)
21664         (eieiomt-optimizing-obarray, eieiomt-install)
21665         (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
21666         (eieio-generic-form, eieio-defmethod, make-obsolete)
21667         (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
21668         (defclass): Remove `eval-and-compile' from macro.
21669         (call-next-method, shared-initialize): Instead of using
21670         `scoped-class' variable, use new eieio--scoped-class, and
21671         eieio--with-scoped-class.
21672         (initialize-instance): Rename local variable 'scoped-class' to
21673         'this-class' to remove ambiguitity from old global.
21675         * emacs-lisp/eieio-core.el: New file.  Derived from key parts of
21676         eieio.el.
21677         (eieio--scoped-class-stack): New variable.
21678         (eieio--scoped-class): New fcn.
21679         (eieio--with-scoped-class): New scoping macro.
21680         (eieio-defclass): Use pushnew instead of add-to-list.
21681         (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
21682         (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
21683         (eieio-generic-call-primary-only, eieiomt-add): Instead of using
21684         `scoped-class' variable, use new eieio--scoped-class, and
21685         eieio--with-scoped-class.
21687         * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
21689 2013-06-02  Tassilo Horn  <tsdh@gnu.org>
21691         * eshell/esh-ext.el (eshell-external-command): Pass args to
21692         `eshell-find-interpreter'.
21693         (eshell-find-interpreter): Add new second parameter ARGS.
21695         * eshell/em-script.el (eshell-script-initialize): Add second arg
21696         to the function added as MATCH to `eshell-interpreter-alist'.
21698         * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
21699         the function added as MATCH to `eshell-interpreter-alist'.
21701         * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
21702         (eshell-visual-options): New defcustom.
21703         (eshell-escape-control-x): Adapt docstring.
21704         (eshell-term-initialize): Test `eshell-visual-subcommands' and
21705         `eshell-visual-options' in addition to `eshell-visual-commands'.
21706         (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
21708 2013-06-01  Fabián Ezequiel Gallina  <fgallina@gnu.org>
21710         * progmodes/python.el (python-indent-block-enders): Add break,
21711         continue and raise keywords.
21713 2013-06-01  Glenn Morris  <rgm@gnu.org>
21715         * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
21717         Plain (f)boundp silences compilation warnings since Emacs 22.1.
21718         * progmodes/cc-cmds.el (delete-forward-p):
21719         * progmodes/cc-defs.el (buffer-syntactic-context-depth):
21720         * progmodes/cc-engine.el (buffer-syntactic-context):
21721         * progmodes/cc-fonts.el (face-property-instance):
21722         * progmodes/cc-mode.el (set-keymap-parents):
21723         * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
21724         * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
21725         * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
21726         * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
21727         (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
21729         * progmodes/cc-vars.el (other): Emacs has this widget since
21730         at least 21.1, so don't (re)define it.
21732         * eshell/em-cmpl.el (eshell-cmpl-initialize):
21733         Replace the obsolete alias pcomplete-arg-quote-list.
21735 2013-06-01  Leo Liu  <sdl.web@gmail.com>
21737         * progmodes/octave.el (octave-mode-syntax-table): Give `.'
21738         punctuation syntax.
21739         (inferior-octave-minimal-columns)
21740         (inferior-octave-last-column-width): New variables.
21741         (inferior-octave-track-window-width-change): New function.
21742         (inferior-octave-mode): Adjust column width so that Octave output,
21743         for example from 'ls', can fit into the window nicely.
21745 2013-05-31  Dmitry Gutov  <dgutov@yandex.ru>
21747         * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
21748         Highlight expansions inside regexp literals.
21750 2013-05-31  Glenn Morris  <rgm@gnu.org>
21752         * obsolete/sym-comp.el (symbol-complete):
21753         Replace obsolete completion-annotate-function.
21755         * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
21757 2013-05-31  Dmitry Gutov  <dgutov@yandex.ru>
21759         * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
21760         New function, checks if point is inside a literal that allows
21761         expression expansion.
21762         (ruby-syntax-propertize-expansion): Use it.
21763         (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
21764         around the body.
21766 2013-05-30  Juri Linkov  <juri@jurta.org>
21768         * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
21769         to "\M-si".
21770         (isearch-invisible): New variable.
21771         (isearch-forward): Doc fix.
21772         (isearch-mode): Set `isearch-invisible'
21773         to the value of `search-invisible'.
21774         (isearch-toggle-case-fold): Doc fix.
21775         (isearch-toggle-invisible): New command.
21776         (isearch-query-replace): Let-bind `search-invisible'
21777         to the value of `isearch-invisible'.
21778         (isearch-search): Use `isearch-invisible' instead of
21779         `search-invisible'.  Let-bind `search-invisible'
21780         to the value of `isearch-invisible'.  (Bug#11378)
21782 2013-05-30  Juri Linkov  <juri@jurta.org>
21784         * replace.el (perform-replace): Avoid `isearch-range-invisible'
21785         call when `query-flag' is nil and `search-invisible' is non-nil.
21786         (Bug#11746)
21788 2013-05-30  Glenn Morris  <rgm@gnu.org>
21790         * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
21792         * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
21793         (cc-require): Suppress spurious "noruntime" warnings.
21794         (cc-require-when-compile): Use fboundp, for sake of compiler.
21796         * progmodes/cc-mode.el: Move load of cc-vars before that of
21797         cc-langs (which in turn loads cc-vars), to quieten compiler.
21799 2013-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21801         * paren.el: Simplify the code.
21802         (show-paren-mode): Always start the timer.
21803         (show-paren--idle-timer): Rename from show-paren-idle-timer.
21804         (show-paren--overlay, show-paren--overlay-1): Rename from
21805         show-paren-overlay and show-paren-overlay-1, and initialize to an
21806         overlay rather than to nil.
21807         (show-paren-function): Misc cleanup and simplifications.
21809 2013-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
21811         * paren.el (show-paren-data-function): New hook.
21812         (show-paren--default): New function, extracted from show-paren-function.
21813         (show-paren-function): Use show-paren-data-function.
21815 2013-05-30  Glenn Morris  <rgm@gnu.org>
21817         * ielm.el (ielm-map, ielm-complete-symbol):
21818         Use completion-at-point rather than obsolete functions.
21819         (inferior-emacs-lisp-mode): Doc fix.
21820         Set completion-at-point-functions, rather than
21821         comint-dynamic-complete-functions.
21823         * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
21824         (eshell-cmpl-initialize, eshell-complete-parse-arguments):
21825         Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
21827         * image.el (image-animated-p): Tweak definition.
21829         * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
21830         (rlogin-process-connection-type): Tweak default.  Add set-after.
21831         (rlogin-host): Doc fix.
21832         (rlogin): Tweak prompt.
21833         (rlogin-tab-or-complete): Use completion-at-point rather than alias.
21835         * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
21836         * progmodes/tcl.el (inferior-tcl-mode-map):
21837         Use completion-at-point rather than obsolete alias.
21839         * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
21841         * minibuffer.el (read-file-name-completion-ignore-case):
21842         Move before completion--in-region, for eager macro expansion.
21844 2013-05-29  Juri Linkov  <juri@jurta.org>
21846         * replace.el (occur-engine): Rename `globalcount' to `global-lines'
21847         for total count of matching lines.  Add `global-matches' for total
21848         count of matches.  Rename `matches' to `lines' for count of
21849         matching lines.  Add `matches' for count of matches.
21850         Rename `lines' to `curr-line' for line count.  Rename `prev-lines'
21851         to `prev-line' for line number of prev match endpt.
21852         Increment `matches' for every match.  Print the number of
21853         matching lines in the header.
21854         (occur-context-lines): Rename `lines' to `curr-line'.
21855         Rename `prev-lines' to `prev-line'.  (Bug#14017)
21857 2013-05-29  Juri Linkov  <juri@jurta.org>
21859         * replace.el (perform-replace): Add `skip-read-only-count',
21860         `skip-filtered-count', `skip-invisible-count' let-bound to 0.
21861         Increment them for corresponding conditions and report the number
21862         of skipped occurrences in the final message.  (Bug#11746)
21863         (query-replace, query-replace-regexp, query-replace-regexp-eval)
21864         (replace-string, replace-regexp): Doc fix.
21866 2013-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
21868         * emacs-lisp/trace.el (trace--read-args): Provide a default.
21870         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
21871         prog-mode-map (bug#14504).
21873 2013-05-29  Leo Liu  <sdl.web@gmail.com>
21875         * progmodes/octave.el (octave-indent-comment): Tweak regexps.
21876         (octave-help): Small simplification.
21878         * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
21879         off the highlight first.
21881 2013-05-29  Glenn Morris  <rgm@gnu.org>
21883         * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
21884         Handle idlwave-last-system-routine-info-cons-cell being nil.
21886         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
21887         (idlwave-write-paths): Simplify via with-temp-buffer.
21889         * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
21890         * emulation/cua-rect.el: Also load cua-base at run time.
21892         * progmodes/cperl-mode.el (imenu-choose-buffer-index)
21893         (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
21894         (cperl-imenu-on-info): Require imenu.
21896 2013-05-28  Alan Mackenzie  <acm@muc.de>
21898         Handle "capitalised keywords" correctly.
21899         * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
21901 2013-05-28  Aidan Gauland  <aidalgol@amuri.net>
21903         * eshell/em-unix.el: Add -r option to cp.
21905 2013-05-28  Glenn Morris  <rgm@gnu.org>
21907         * vc/vc-arch.el (vc-exec-after): Declare.
21908         (vc-switches): Autoload.
21909         * vc/vc-bzr.el: No need to require vc when compiling.
21910         (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
21911         (vc-resynch-buffer, vc-dir-refresh): Declare.
21912         (vc-setup-buffer, vc-switches): Autoload.
21913         * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
21914         (vc-resynch-buffer): Declare.
21915         (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
21916         * vc/vc-dir.el (desktop-missing-file-warning): Declare.
21917         * vc/vc-git.el (vc-exec-after, vc-set-async-update)
21918         (grep-read-regexp, grep-read-files, grep-expand-template)
21919         (vc-dir-refresh): Declare.
21920         (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
21921         * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
21922         (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
21923         * vc/vc-mtn.el (vc-exec-after): Declare.
21924         (vc-switches): Autoload.
21925         * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
21926         (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
21927         (vc-file-tree-walk): Declare.
21928         * vc/vc-sccs.el (vc-file-tree-walk): Declare.
21929         (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
21930         (vc-tag-precondition, vc-rename-master): Autoload.
21931         * vc/vc-svn.el (vc-exec-after): Declare.
21932         (vc-switches, vc-setup-buffer): Autoload.
21933         * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
21934         Autoload.
21935         (vc-resynch-buffer): Declare.
21937         * obsolete/fast-lock.el (byte-compile-warnings):
21938         Don't warn about obsolete features in this obsolete file.
21940         * progmodes/cc-vars.el (c-macro-names-with-semicolon):
21941         Move definition before use.
21943         * play/dunnet.el (byte-compile-warnings): Don't disable them all.
21944         (dun-unix-verbs): Remove dun-zippy.
21945         (dun-zippy): Remove function.
21947         * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
21949 2013-05-27  Juri Linkov  <juri@jurta.org>
21951         * replace.el (replace-search): New function with code moved out
21952         from `perform-replace'.
21953         (replace-highlight, replace-dehighlight): Move function definitions
21954         up closer to `replace-search'.  (Bug#11746)
21956 2013-05-27  Juri Linkov  <juri@jurta.org>
21958         * replace.el (perform-replace): Ignore invisible matches.
21959         In addition to checking `query-replace-skip-read-only', also
21960         filter out matches by calling `run-hook-with-args-until-failure'
21961         on `isearch-filter-predicates', and also check `search-invisible'
21962         for t or call `isearch-range-invisible'.
21963         (replace-dehighlight): Call `isearch-clean-overlays'.  (Bug#11746)
21965 2013-05-27  Juri Linkov  <juri@jurta.org>
21967         * isearch.el (isearch-filter-predicates): Rename from
21968         `isearch-filter-predicate'.  Doc fix.  (Bug#11378)
21969         (isearch-message-prefix): Display text from the property
21970         `isearch-message-prefix' of the currently active filters.
21971         (isearch-search): Don't compare `isearch-filter-predicate' with
21972         `isearch-filter-visible'.  Call `run-hook-with-args-until-failure'
21973         on `isearch-filter-predicates'.  Also check `search-invisible' for t
21974         or call `isearch-range-invisible'.
21975         (isearch-filter-visible): Make obsolete.
21976         (isearch-lazy-highlight-search):
21977         Call `run-hook-with-args-until-failure' on
21978         `isearch-filter-predicates' and use `isearch-range-invisible'.
21980         * info.el (Info-search): Call `run-hook-with-args-until-failure' on
21981         `isearch-filter-predicates' instead of `funcall'ing
21982         `isearch-filter-predicate'.
21983         (Info-mode): Set `Info-isearch-filter' to
21984         `isearch-filter-predicates' instead of `isearch-filter-predicate'.
21986         * dired-aux.el (dired-isearch-filter-predicate-orig):
21987         Remove variable.
21988         (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
21989         (dired-isearch-filenames-end): Add and remove
21990         `dired-isearch-filter-filenames' in `isearch-filter-predicates'
21991         instead of changing the value of `isearch-filter-predicate'.
21992         Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
21993         (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
21994         Put property `isearch-message-prefix' to "filename " on
21995         `dired-isearch-filter-filenames'.
21997         * wdired.el (wdired-change-to-wdired-mode):
21998         Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
21999         locally instead of changing `isearch-filter-predicate'.
22000         (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
22002 2013-05-27  Dmitry Gutov  <dgutov@yandex.ru>
22004         * vc/vc-git.el (vc-git-working-revision): When in detached mode,
22005         return the commit hash (Bug#14459).  Also set the
22006         `vc-git-detached' property.
22007         (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
22008         (vc-git-mode-line-string): Use the same help-echo format whether
22009         in detached mode or not, because we know the actual revision now.
22010         When in detached mode, shorten the revision to 7 chars.
22012 2013-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
22014         * emacs-lisp/easy-mmode.el (define-minor-mode):
22015         * emacs-lisp/derived.el (define-derived-mode): Always defvar the
22016         mode hook and provide a docstring.
22018 2013-05-27  Alan Mackenzie  <acm@muc.de>
22020         Remove spurious syntax-table text properties inserted by C-y.
22021         * progmodes/cc-mode.el (c-after-change): Also clear hard
22022         syntax-table property with value nil.
22024 2013-05-27  Michael Albinus  <michael.albinus@gmx.de>
22026         * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
22027         when reading the events; the buffer layout shall not be changed.
22029 2013-05-27  Leo Liu  <sdl.web@gmail.com>
22031         * progmodes/octave.el (inferior-octave-directory-tracker-resync):
22032         New variable.
22033         (inferior-octave-directory-tracker): Automatically re-sync
22034         default-directory.
22035         (octave-help): Improve handling of 'See also'.
22037 2013-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
22039         * doc-view.el: Minor naming convention tweaks.
22040         (desktop-buffer-mode-handlers): Don't add to it repeatedly.
22042         * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
22043         even if there's no `display' property yet (bug#14435).
22045 2013-05-25  Eli Zaretskii  <eliz@gnu.org>
22047         * subr.el (unmsys--file-name): Rename from reveal-filename.
22049         * Makefile.in (custom-deps, finder-data, autoloads)
22050         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
22051         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
22052         ($(CAL_DIR)/hol-loaddefs.el): All users changed.
22054 2013-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
22056         * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
22057         error-completion on the first 2 args of condition-case (bug#14446).
22058         Don't burp at EOB.
22060 2013-05-25  Leo Liu  <sdl.web@gmail.com>
22062         * comint.el (comint-previous-matching-input): Do not flood the
22063         *Messages* buffer with trivial messages.
22065 2013-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
22067         * progmodes/flymake.el (flymake-nop): Don't return a string.
22068         (flymake-set-at): Fix typo.
22070         * simple.el (read--expression): New function, extracted from
22071         eval-expression.  Set completion-at-point-functions (bug#14465).
22072         (eval-expression, eval-minibuffer): Use it.
22074 2013-05-25  Xue Fuqiao  <xfq.free@gmail.com>
22076         * progmodes/flymake.el (flymake-save-buffer-in-file)
22077         (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
22078         (flymake-selected-frame, flymake-log, flymake-ins-after)
22079         (flymake-set-at, flymake-get-buildfile-from-cache)
22080         (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
22081         (flymake-find-possible-master-files, flymake-save-buffer-in-file):
22082         Refine the doc string.
22083         (flymake-get-file-name-mode-and-masks): Reformat.
22084         (flymake-get-real-file-name-function): Fix a minor bug.
22086 2013-05-24  Juri Linkov  <juri@jurta.org>
22088         * progmodes/grep.el (grep-mode-font-lock-keywords):
22089         Support =linenumber= format used by git-grep for lines with
22090         function names.  (Bug#13549)
22092 2013-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
22094         * progmodes/octave.el (octave-smie-rules): Return nil rather than
22095         0 after a semi-colon; it works better for smie-auto-fill.
22096         (octave--indent-new-comment-line): New function.
22097         (octave-indent-new-comment-line): Use it (indirectly).
22098         (octave-mode): Don't disable smie-auto-fill.  Use add-function to
22099         modify comment-line-break-function.
22101         * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
22102         (smie-setup): Use add-function to set it.
22104 2013-05-24  Sam Steingold  <sds@gnu.org>
22106         * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
22107         argument (before the `interactive' argument).
22109 2013-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
22111         * image-mode.el (image-mode-winprops): Add winprops to
22112         image-mode-winprops-alist before running
22113         image-mode-new-window-functions.
22114         * doc-view.el (doc-view-new-window-function): Don't delay
22115         doc-view-goto-page via timers (bug#14435).
22117 2013-05-24  Tassilo Horn  <tsdh@gnu.org>
22119         * doc-view.el: Integrate with desktop.el.  (Bug#14435)
22120         (doc-view-desktop-save-buffer): New function.
22121         (doc-view-restore-desktop-buffer): New function.
22122         (desktop-buffer-mode-handlers):
22123         Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
22124         handler.
22125         (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
22126         `desktop-save-buffer' function.
22128 2013-05-24  Michael Albinus  <michael.albinus@gmx.de>
22130         * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
22131         (tramp-gvfs-file-name-handler): Raise a user error when
22132         `tramp-gvfs-enabled' is nil.
22133         (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
22134         Do not raise a user error when loading package.  (Bug#14447)
22136         * net/xesam.el: Move to obsolete/.
22138 2013-05-24  Glenn Morris  <rgm@gnu.org>
22140         * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
22142         * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
22144         * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
22145         (Info-find-node, Man-getpage-in-background): Declare.
22147         * mail/unrmail.el (unrmail):
22148         Replace obsolete detect-coding-with-priority.
22150         * net/socks.el (socks-split-string): Use this rather than split-string.
22151         (socks-nslookup-host): Update for above change.
22152         (dynamic-choice, s5-dynamic-choice-match)
22153         (s5-dynamic-choice-match-inline, s5-widget-value-create):
22154         Comment out unused code.
22156         * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
22157         * progmodes/gud.el (gud-gdb-completion-function): Move before use.
22158         (gud-tooltip-echo-area): Make obsolete.
22159         (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
22161         * progmodes/js.el (js--optimize-arglist): Declare.
22163         * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
22165         * progmodes/which-func.el (ediff-window-A, ediff-window-B)
22166         (ediff-window-C): Declare.
22168         * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
22169         Tweak requires to silence compiler.
22171         * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
22172         (he-search-string, he-tried-table, he-expand-list)
22173         (he-init-string, he-string-member, he-substitute-string)
22174         (he-reset-string): Declare.
22176         * obsolete/options.el (list-options): Use custom-variable-p,
22177         rather than obsolete alias.
22179 2013-05-23  Sam Steingold  <sds@gnu.org>
22181         * simple.el (shell-command-on-region): Pass the `replace' argument
22182         down to `call-process-region' to comply with the doc as reported on
22183         <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
22185 2013-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
22187         * emacs-lisp/smie.el (smie-indent-forward-token)
22188         (smie-indent-backward-token): Handle string tokens (bug#14381).
22190 2013-05-23  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
22192         * ielm.el (ielm-menu): New menu.
22193         (inferior-emacs-lisp-mode): Set comment-start.
22195 2013-05-23  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
22197         * textmodes/reftex.el (reftex-ref-style-toggle):
22198         Fix deactivate action.
22200         * textmodes/reftex-vars.el (reftex-ref-style-alist):
22201         Add cleveref macros.
22203         * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
22204         Accept options for bibliography commands.
22205         * textmodes/reftex-vars.el (reftex-bibliography-commands):
22206         Add addbibresource.  Basic Biblatex support.
22208 2013-05-23  Michael Albinus  <michael.albinus@gmx.de>
22210         * net/tramp-gvfs.el (top):
22211         * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
22212         when loading package.  (Bug#14447)
22214 2013-05-23  Glenn Morris  <rgm@gnu.org>
22216         * progmodes/js.el: No need to load comint when compiling.
22217         (ring-insert, comint-send-string, comint-send-input)
22218         (comint-last-input-end, ido-chop): Declare.
22220         * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
22221         * vc/ediff-mult.el: Adjust requires.
22222         (ediff-directories-internal, ediff-directory-revisions-internal)
22223         (ediff-patch-file-internal): Declare.
22224         * vc/ediff-ptch.el: Adjust requires.
22225         (ediff-use-last-dir, ediff-buffers-internal): Declare.
22226         (ediff-find-file): Autoload.
22227         * vc/ediff-util.el: No need to load ediff when compiling.
22228         (ediff-regions-internal): Declare.
22229         * vc/ediff-wind.el: Adjust requires.
22230         (ediff-compute-toolbar-width): Define when compiling.
22231         (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
22232         * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
22233         (dired-get-filename, dired-get-marked-files)
22234         (ediff-last-dir-patch, ediff-patch-default-directory)
22235         (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
22236         (ediff-patch-buffer-internal): Declare.
22238         * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
22239         (ispell-process, ispell-buffer-local-words, lm-summary)
22240         (lm-section-start, lm-section-end): Declare.
22241         (checkdoc-ispell-init): Simplify.
22243         * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
22244         (he-string-member, he-reset-string, he-substitute-string): Declare.
22246         * eshell/em-ls.el: Adjust requires.
22247         (eshell-glob-regexp): Declare.
22248         * eshell/em-tramp.el: Adjust requires.
22249         (eshell-parse-command): Autoload.
22250         * eshell/em-xtra.el: Adjust requires.
22251         (eshell-parse-command): Autoload.
22252         * eshell/esh-ext.el: Adjust requires.
22253         (eshell-parse-command, eshell-close-handles): Autoload.
22254         * eshell/esh-io.el: Adjust requires.
22255         (eshell-output-filter): Autoload.
22256         * eshell/esh-util.el: No need to load tramp when compiling.
22257         (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
22258         Declare.
22259         (eshell-parse-ange-ls): Require ange-ftp and tramp.
22260         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
22261         * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
22262         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
22263         * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
22264         * eshell/esh-opt.el, eshell/esh-proc.el:
22265         * eshell/esh-var.el: Adjust requires.
22266         * eshell/eshell.el: Do not require esh-util twice.
22267         (eshell-add-input-to-history): Declare.
22268         (eshell-command): Check history module is active before using it.
22270         * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
22272 2013-05-22  Leo Liu  <sdl.web@gmail.com>
22274         * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
22276 2013-05-22  Michael Albinus  <michael.albinus@gmx.de>
22278         * autorevert.el (auto-revert-notify-add-watch)
22279         (auto-revert-notify-handler): Add `attrib' for the inotify case,
22280         it indicates changes in file modification time.
22282 2013-05-22  Glenn Morris  <rgm@gnu.org>
22284         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
22285         Always delete the autoloaded function from the noruntime and
22286         unresolved functions lists.
22288         * allout.el: No need to load epa, epg, overlay when compiling.
22289         (epg-context-set-passphrase-callback, epg-list-keys)
22290         (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
22291         (epg-key-user-id-list): Declare.
22293         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
22294         (viper-set-parsing-style-toggling-macro)
22295         (viper-set-emacs-state-searchstyle-macros):
22296         Use called-interactively-p on Emacs.
22297         (viper-looking-back): Make it an obsolete alias.  Update callers.
22298         * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
22299         Use looking-back rather than viper-looking-back.
22300         (viper-tmp-insert-at-eob, viper-enlarge-region)
22301         (viper-read-string-with-history, viper-register-to-point)
22302         (viper-append-to-register, viper-change-state-to-vi)
22303         (viper-backward-char-carefully, viper-forward-char-carefully)
22304         (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
22305         (viper-change-state-to-emacs): Declare.
22306         * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
22307         (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
22308         * emulation/viper-mous.el: Do not load viper-cmd.
22309         (viper-backward-char-carefully, viper-forward-char-carefully)
22310         (viper-forward-word, viper-adjust-window): Declare.
22312         * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
22314         * progmodes/idlw-help.el (idlwave-help-fontify):
22315         Use called-interactively-p.
22317         * term/w32console.el (w32-get-console-codepage)
22318         (w32-get-console-output-codepage): Declare.
22320         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
22321         Remove unnecessary declarations.
22322         (dframe-message): Doc fix.
22324         * info.el (dframe-select-attached-frame, dframe-current-frame):
22325         Declare.
22327         * speedbar.el (speedbar-message): Make it an obsolete alias.
22328         Update all callers.
22329         (speedbar-with-attached-buffer)
22330         (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
22331         (speedbar-with-writable): Use backquote.
22332         * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
22333         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
22334         Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
22335         rather than speedbar- aliases.
22336         * mail/rmail.el: Load dframe rather than speedbar when compiling.
22337         (speedbar-make-specialized-keymap, speedbar-insert-button)
22338         (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
22339         (speedbar-do-function-pointer): Declare.
22340         (rmail-speedbar-button, rmail-speedbar-find-file)
22341         (rmail-speedbar-move-message):
22342         Use dframe-with-attached-buffer rather than speedbar- alias.
22343         * progmodes/gud.el: Load dframe rather than speedbar when compiling.
22344         (dframe-message, speedbar-make-specialized-keymap)
22345         (speedbar-add-expansion-list, speedbar-mode-functions-list)
22346         (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
22347         (speedbar-insert-button, dframe-select-attached-frame)
22348         (dframe-maybee-jump-to-attached-frame)
22349         (speedbar-change-initial-expansion-list)
22350         (speedbar-previously-used-expansion-list-name): Declare.
22351         (gud-speedbar-item-info, gud-gdb-goto-stackframe):
22352         Use dframe-message, dframe-with-attached-buffer rather than
22353         speedbar- aliases.
22354         (gud-sentinel): Silence compiler.
22355         * progmodes/vhdl-mode.el (speedbar-refresh)
22356         (speedbar-do-function-pointer, speedbar-add-supported-extension)
22357         (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
22358         (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
22359         (speedbar-extension-list-to-regex, speedbar-directory-buttons)
22360         (speedbar-file-lists, speedbar-make-tag-line)
22361         (speedbar-line-directory, speedbar-goto-this-file)
22362         (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
22363         (speedbar-delete-subblock, speedbar-position-cursor-on-line)
22364         (speedbar-make-button, speedbar-reset-scanners)
22365         (speedbar-files-item-info, speedbar-line-text)
22366         (speedbar-find-file-in-frame, speedbar-set-timer)
22367         (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
22368         (speedbar-with-writable): Do not (re)define it.
22369         (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
22370         rather than speedbar- alias.
22372 2013-05-21  Leo Liu  <sdl.web@gmail.com>
22374         * progmodes/octave.el (octave-mode-menu): Update and re-organize
22375         menu items.
22376         (octave-mode): Tweak fill-nobreak-predicate.
22377         (inferior-octave-startup): Check process to avoid infinite loop.
22378         (inferior-octave): Pop to buffer first to show abornmal process
22379         exit information.
22381 2013-05-21  Glenn Morris  <rgm@gnu.org>
22383         * printing.el (pr-menu-bar): Define when compiling.
22385 2013-05-21  Leo Liu  <sdl.web@gmail.com>
22387         * progmodes/octave.el (octave-auto-fill): Remove.
22388         (octave-indent-new-comment-line): Improve.
22389         (octave-mode): Use auto fill mode through
22390         comment-line-break-function and fill-nobreak-predicate.
22391         (octave-goto-function-definition): Support DEFUN_DLD.
22392         (octave-beginning-of-defun): Small tweak.
22393         (octave-help): Show parent directory.
22395 2013-05-21  Glenn Morris  <rgm@gnu.org>
22397         * files.el (dired-unmark):
22398         * progmodes/gud.el (gdb-input): Update declarations.
22400         * calculator.el (electric, ehelp): No need to load when compiling.
22401         (Electric-command-loop, electric-describe-mode): Declare.
22403         * doc-view.el (doc-view-current-converter-processes): Move before use.
22405         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
22406         Move MODE-set-explicitly definition before use.
22408         * international/mule-diag.el (mule-diag):
22409         Don't use obsolete window-system-version.
22411         * mail/feedmail.el (smtpmail): No need to load when compiling.
22412         (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
22414         * mail/mail-utils.el (rfc822): No need to load when compiling.
22415         (rfc822-addresses): Autoload it.
22416         (mail-strip-quoted-names): Trivial simplification.
22418         * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
22419         (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
22421         * net/snmp-mode.el (tempo): Don't duplicate requires.
22423         * progmodes/prolog.el (info): No need to load when compiling.
22424         (comint): Require before shell requires it.
22425         (Info-goto-node): Autoload it.
22426         (Info-follow-nearest-node): Declare.
22427         (prolog-help-info, prolog-goto-predicate-info): No need to require info.
22429         * textmodes/artist.el (picture-mode-exit): Declare.
22431         * textmodes/reftex-parse.el (reftex-parse-from-file):
22432         Trivial rewrite so the compiler can parse it better.
22434 2013-05-20  Leo Liu  <sdl.web@gmail.com>
22436         * progmodes/octave.el (octave-help-mode-map)
22437         (octave-help-mode-finish-hook): New variables.
22438         (octave-help-mode, octave-help-mode-finish): New functions.
22439         (octave-help): Use octave-help-mode.
22441 2013-05-20  Glenn Morris  <rgm@gnu.org>
22443         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
22445 2013-05-19  Dmitry Gutov  <dgutov@yandex.ru>
22447         * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
22448         start at point, so that expansion starting right after opening
22449         slash in a regexp is recognized.
22450         (ruby-syntax-before-regexp-re): New defvar, extracted from
22451         ruby-syntax-propertize-function.  Since the value of this regexp
22452         is looked up at runtime now, we should be able to turn
22453         `ruby-syntax-methods-before-regexp' into a defcustom later.
22454         (ruby-syntax-propertize-function): Split regexp matching into two
22455         parts, for opening and closing slashes.  That allows us to skip
22456         over string interpolations and support multiline regexps.
22457         Don't call `ruby-syntax-propertize-expansions', instead use another rule
22458         for them, which calls `ruby-syntax-propertize-expansion'.
22459         (ruby-syntax-propertize-expansions): Move `remove-text-properties'
22460         call to `ruby-syntax-propertize-function'.
22461         (ruby-syntax-propertize-expansion): Extracted from
22462         `ruby-syntax-propertize-expansions'.  Handles one expansion.
22463         (ruby-syntax-propertize-percent-literal): Leave point right after
22464         the percent symbol, so that the expression expansion rule can
22465         propertize the contents.
22466         (ruby-syntax-propertize-heredoc): Leave point at bol following the
22467         heredoc openers.
22468         (ruby-syntax-propertize-expansions): Remove.
22470 2013-05-18  Juri Linkov  <juri@jurta.org>
22472         * man.el (Man-default-man-entry): Remove `-' from the end
22473         of the default value.  (Bug#14400)
22475 2013-05-18  Glenn Morris  <rgm@gnu.org>
22477         * comint.el (comint-password-prompt-regexp):
22478         Allow "password for XXX" where XXX contains colons (eg https://...).
22480 2013-05-18  Leo Liu  <sdl.web@gmail.com>
22482         * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
22483         instead.  Include "--no-gui" to prevent hangs for Octave > 3.7.
22484         (octave-source-directories): Don't check process.
22485         (octave-source-directories, octave-find-definition): Doc fix.
22487 2013-05-18  Glenn Morris  <rgm@gnu.org>
22489         * progmodes/vhdl-mode.el (vhdl-mode-map-init):
22490         Remove backspace/delete bindings.  (Bug#14392)
22492         * cus-dep.el (custom-make-dependencies): Sort the output.
22493         (custom-versions-load-alist): Convert comment to doc.
22495 2013-05-17  Leo Liu  <sdl.web@gmail.com>
22497         * newcomment.el (comment-search-backward): Stricter in finding
22498         comment start.  (Bug#14303)
22500         * progmodes/octave.el (octave-comment-start): Remove the SPC char.
22501         (octave-comment-start-skip): Properly anchored.
22503 2013-05-17  Leo Liu  <sdl.web@gmail.com>
22505         * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
22506         Clean up when turned off.  (Bug#14395)
22507         (smie--highlight-matching-block-overlay): No longer buffer-local.
22508         (smie-highlight-matching-block): Adjust.
22510 2013-05-17  Paul Eggert  <eggert@cs.ucla.edu>
22512         Doc string fix for "nanoseconds" (Bug#14406).
22513         * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
22514         Fix doc string typo that had "nanoseconds" instead of "microseconds".
22516 2013-05-17  Jay Belanger  <jay.p.belanger@gmail.com>
22518         * calc/calc-units.el (math-extract-units): Preserve powers
22519         of units.
22521 2013-05-17  Leo Liu  <sdl.web@gmail.com>
22523         * subr.el (delete-consecutive-dups): New function.
22524         * ido.el (ido-set-matches-1): Use it.
22525         * progmodes/octave.el (inferior-octave-completion-table): Use it.
22526         * ido.el (ido-remove-consecutive-dups): Remove.
22528 2013-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
22530         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
22531         (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
22532         regexp-opt's `words'.
22534 2013-05-16  Leo Liu  <sdl.web@gmail.com>
22536         * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
22537         (smie--highlight-matching-block-overlay)
22538         (smie--highlight-matching-block-lastpos)
22539         (smie--highlight-matching-block-timer): New variables.
22540         (smie-highlight-matching-block): New function.
22541         (smie-highlight-matching-block-mode): New minor mode.  (Bug#14395)
22542         (smie-setup): Conditionally enable smie-blink-matching-open.
22544 2013-05-16  Wilson Snyder  <wsnyder@wsnyder.org>
22546         Sync with upstream verilog-mode r840.
22547         * progmodes/verilog-mode.el (verilog-mode-version)
22548         (verilog-mode-release-date): Update.
22549         (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
22550         (verilog-sig-tieoff): Fix string error on
22551         AUTORESET with colon define, bug594.  Reported by Andrew Hou.
22552         (verilog-read-decls): Fix parameters confusing
22553         AUTOINST interfaces, bug565.  Reported by Leith Johnson.
22555 2013-05-16  Eli Zaretskii  <eliz@gnu.org>
22557         * subr.el (reveal-filename): New function.
22559         * loadup.el: Compute Emacs executable versions on MS-Windows,
22560         where executables have the .exe extension.  Add a hard link
22561         emacs-XX.YY.ZZ.exe on MS-Windows.
22563         * Makefile.in (XARGS_LIMIT): New variable.
22564         (custom-deps, finder-data, autoloads)
22565         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
22566         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
22567         ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
22568         (compile-main): Limit xargs according to $(XARGS_LIMIT).
22570 2013-05-16  Leo Liu  <sdl.web@gmail.com>
22572         * progmodes/octave.el (octave-indent-defun): Mark obsolete.
22573         (octave-mode-menu, octave-mode-map): Remove its uses.
22575 2013-05-16  Reto Zimmermann  <reto@gnu.org>
22577         Sync with upstream vhdl mode v3.34.2.
22578         * progmodes/vhdl-mode.el: Use `push' throughout.
22579         (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
22580         (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
22581         Add IBM & Quartus compiler.  Enhance entry for ADVance MS compiler.
22582         (vhdl-actual-generic-name): New option to derive actual generic name.
22583         (vhdl-port-paste-signals): Replace formal by actual generics.
22584         (vhdl-beautify): New name for old group vhdl-align.  Update users.
22585         (vhdl-beautify-options): New option.
22586         (vhdl-last-input-event): New compat alias.  Use throughout.
22587         (vhdl-goto-line): Replace user level function `goto-line'.
22588         (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
22589         vhdl-fix-statement-buffer.
22590         (vhdl-create-mode-menu): Add some entries.
22591         (vhdl-align-region-groups): Respect vhdl-beautify-options.
22592         (vhdl-align-inline-comment-region-1): Handle "--" inside string.
22593         (vhdl-fixup-whitespace-region): Handle symbols at EOL.
22594         (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
22595         to force statements on one line.
22596         (vhdl-remove-trailing-spaces-region):
22597         New, split from vhdl-remove-trailing-spaces.
22598         (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
22599         Respect vhdl-beautify-options.
22600         (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
22601         (vhdl-update-sensitivity-list): Not add with index if exists without.
22602         Not include array index with signal.  Ignore keywords in comments.
22603         (vhdl-get-visible-signals): Regexp tweaks.
22604         (vhdl-template-component-inst): Handle empty library.
22605         (vhdl-template-type): Add template for 'enum' type.
22606         (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
22607         Use vhdl-replace-string.
22608         (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
22609         (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
22610         (vhdl-speedbar-initialize): Update for above name change.
22611         (vhdl-compose-wire-components): Fix in handling of constants.
22612         (vhdl-error-regexp-emacs-alist): New variable.
22613         (vhdl-error-regexp-add-emacs): New function;
22614         adds support for new compile.el (Emacs 22+)
22615         (vhdl-generate-makefile-1): Change target order for single lib. units.
22616         Allow use of absolute file names.
22618 2013-05-16  Leo Liu  <sdl.web@gmail.com>
22620         * simple.el (prog-indent-sexp): Indent enclosing defun.
22622 2013-05-15  Glenn Morris  <rgm@gnu.org>
22624         * cus-start.el (show-trailing-whitespace): Move to editing basics.
22625         * faces.el (trailing-whitespace): Don't use whitespace-faces group.
22626         * obsolete/old-whitespace.el (whitespace-faces): Remove group.
22627         (whitespace-highlight): Move to whitespace group.
22629         * comint.el (comint-source):
22630         * pcmpl-linux.el (pcmpl-linux):
22631         * shell.el (shell-faces):
22632         * eshell/esh-opt.el (eshell-opt):
22633         * international/ccl.el (ccl): Remove empty custom groups.
22635         * completion.el (dynamic-completion-mode):
22636         * jit-lock.el (jit-lock-debug-mode):
22637         * minibuffer.el (completion-in-region-mode):
22638         * type-break.el (type-break-mode-line-message-mode)
22639         (type-break-query-mode):
22640         * emulation/tpu-edt.el (tpu-edt-mode):
22641         * progmodes/subword.el (global-subword-mode, global-superword-mode):
22642         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
22643         * term/vt100.el (vt100-wide-mode): Specify explicit :group.
22645         * term/xterm.el (xterm): Change parent group to terminals.
22647         * master.el (master): Remove empty custom group.
22648         (master-mode): Remove unused :group argument.
22649         * textmodes/refill.el (refill): Remove empty custom group.
22650         (refill-mode): Remove unused :group argument.
22652         * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
22654         * cus-dep.el: Provide a feature.
22655         (custom-make-dependencies): Ignore dotfiles (dir-locals).
22656         Don't mistakenly ignore files whose basenames match a basename
22657         from preloaded-file-list (eg cedet/ede/simple.el).
22658         Add a fallback method for getting :group.
22660 2013-05-15  Juri Linkov  <juri@jurta.org>
22662         * isearch.el (isearch-char-by-name): Rename from
22663         `isearch-insert-char-by-name'.  Doc fix.
22664         (isearch-forward): Mention `isearch-char-by-name' in
22665         the docstring.  (Bug#13348)
22667         * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
22668         `exit-minibuffer' instead of
22669         `isearch-nonincremental-exit-minibuffer'.
22670         (isearch-edit-string): Remove mention of
22671         `isearch-nonincremental-exit-minibuffer' from docstring.
22672         (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
22673         (isearch-forward-exit-minibuffer)
22674         (isearch-reverse-exit-minibuffer): Add docstring.  (Bug#13348)
22676 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
22678         * loadup.el: Just use unversioned DOC.
22680         * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
22681         literals as extending to EOB.
22682         (nxml-last-fontify-end): Remove unused variable.
22683         (nxml-after-change1): Use with-silent-modifications.
22684         (nxml-extend-after-change-region): Simplify.
22685         (nxml-extend-after-change-region1): Remove function.
22686         (nxml-after-change1): Don't adjust for dependent regions.
22687         (nxml-fontify-matcher): Simplify.
22688         * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
22689         (xmltok-add-dependent): Remove function.
22690         (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
22691         (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
22692         (xmltok-scan-prolog-after-processing-instruction-open): Treat
22693         unclosed <[[, <?, comment, and other literals as extending to EOB.
22694         * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
22695         (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
22696         Remove functions.
22697         (rng-do-some-validation-1): Don't mark dependent regions.
22698         * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
22699         (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
22700         (nxml-clear-dependent-regions): Remove functions.
22701         (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
22702         (nxml-ensure-scan-up-to-date):
22703         Don't clear&mark dependent regions.
22705 2013-05-15  Leo Liu  <sdl.web@gmail.com>
22707         * progmodes/octave.el (octave-goto-function-definition):
22708         Improve and fix callers.
22710 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
22712         * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
22713         the setter (bug#14387).
22715         * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
22716         surrounding group (bug#14402).
22718 2013-05-14  Juri Linkov  <juri@jurta.org>
22720         * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
22721         (Bug#14390)
22723 2013-05-14  Glenn Morris  <rgm@gnu.org>
22725         * progmodes/f90.el (f90-imenu-generic-expression):
22726         Fix typo in 2013-05-08 change.  (Bug#14402)
22728 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
22730         * progmodes/gdb-mi.el (gdb-running, gdb-starting):
22731         Remove signals for which replies are never received.
22733 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
22735         * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
22736         (gdb-handler-alist, gdb-handler-number): Remove variables.
22737         (gdb-handler-list): New variable.
22738         (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
22739         (gdb-pending-handler-p, gdb-handle-reply)
22740         (gdb-remove-all-pending-triggers): New functions.
22741         (gdb-discard-unordered-replies): New defcustom.
22742         (gdb-handler): New defstruct.
22743         (gdb-wait-for-pending): Fix invalid backquote.  Use gdb-handler-list.
22744         instead of gdb-pending-triggers.  Update docstring.
22745         (gdb-init-1): Remove dead variables.  Initialize gdb-handler-list.
22746         (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
22747         (gdb-var-update-handler, def-gdb-auto-update-trigger)
22748         (def-gdb-auto-update-handler, gdb-get-changed-registers)
22749         (gdb-changed-registers-handler, gdb-get-main-selected-frame)
22750         (gdb-frame-handler): Pending triggers are now automatically managed.
22751         (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
22752         Remove argument.
22753         (gdb-input): Automatically handles pending triggers.  Update docstring.
22754         (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
22755         (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
22756         Update comments.
22757         (gdb-done-or-error): Now use gdb-handle-reply.
22759 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
22761         * progmodes/gdb-mi.el (gdb-input): Include token numbers in
22762         gdb-debug-log.
22764 2013-05-14  Glenn Morris  <rgm@gnu.org>
22766         * subr.el (user-emacs-directory-warning): New option.
22767         (locate-user-emacs-file): Handle non-accessible .emacs.d.  (Bug#13930)
22769 2013-05-14  Leo Liu  <sdl.web@gmail.com>
22771         * progmodes/octave.el (octave-font-lock-keywords): Fix error
22772         during redisplay.
22773         (octave-goto-function-definition, octave-find-definition): Minor tweaks.
22774         (octave-font-lock-texinfo-comment): Fix invalid search bound
22775         error: wrong side of point.
22777 2013-05-14  Glenn Morris  <rgm@gnu.org>
22779         * progmodes/flymake.el (flymake-xml-program): New option.
22780         (flymake-xml-init): Use it.
22782         * term/xterm.el: Provide a feature.
22784         * term/sup-mouse.el: Move to obsolete/.  Provide a feature.
22786 2013-05-13  Glenn Morris  <rgm@gnu.org>
22788         * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
22789         Add compat aliases as a hack workaround.  (Bug#14384)
22791 2013-05-13  Leo Liu  <sdl.web@gmail.com>
22793         * progmodes/octave.el (octave-indent-comment): Fix indentation for
22794         ###, and %!.
22795         (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
22796         C-M-q.
22797         (octave-comment-start-skip): Include %!.
22798         (octave-mode): Set comment-start-skip to octave-comment-start-skip.
22800 2013-05-12  Leo Liu  <sdl.web@gmail.com>
22802         * progmodes/octave.el (inferior-octave-startup): Store the value
22803         of __octave_srcdir__ for octave-source-directories.
22804         (inferior-octave-check-process): New function refactored out of
22805         inferior-octave-send-list-and-digest.
22806         (octave-source-directories)
22807         (octave-find-definition-filename-function): New variables.
22808         (octave-source-directories)
22809         (octave-find-definition-default-filename): New functions.
22810         (octave-find-definition): Improve to find functions implemented in C++.
22812 2013-05-12  Glenn Morris  <rgm@gnu.org>
22814         * calendar/diary-lib.el (diary-outlook-format-1):
22815         Don't include dayname in the output.  (Bug#14349)
22817 2013-05-11  Glenn Morris  <rgm@gnu.org>
22819         * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
22821         * cus-dep.el (custom-make-dependencies): Only use safe local variables.
22822         Treat cc-provide like provide.
22824 2013-05-11  Kevin Ryde  <user42@zip.com.au>
22826         * cus-dep.el (custom-make-dependencies):
22827         Use generated-autoload-load-name for the sake of files such
22828         such cedet/semantic/bovine/c.el, where the base file name
22829         is not in load-path.  (Bug#5277)
22831 2013-05-11  Glenn Morris  <rgm@gnu.org>
22833         * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
22834         Provide features.
22836 2013-05-11  Leo Liu  <sdl.web@gmail.com>
22838         * progmodes/octave.el (octave-indent-comment): Improve.
22839         (octave-eldoc-message-style, octave-eldoc-cache): New variables.
22840         (octave-eldoc-function-signatures, octave-eldoc-function):
22841         New functions.
22842         (octave-mode, inferior-octave-mode): Add eldoc support.
22844 2013-05-11  Richard Stallman  <rms@gnu.org>
22846         * epa.el (epa-decrypt-file): Take output file name as argument
22847         and read it using `interactive'.
22849 2013-05-11  Leo Liu  <sdl.web@gmail.com>
22851         * progmodes/octave.el (octave-beginning-of-line)
22852         (octave-end-of-line): Check before using up-list because it jumps
22853         out of more syntactic contructs since moving to smie.
22854         (octave-indent-comment): New function.
22855         (octave-mode): Use it in smie-indent-functions.  (Bug#14350)
22856         (octave-begin-keywords, octave-end-keywords)
22857         (octave-reserved-words, octave-smie-bnf-table)
22858         (octave-smie-rules): Add new keywords from Octave 3.6.4.
22860 2013-05-11  Glenn Morris  <rgm@gnu.org>
22862         * faces.el (internal-face-x-get-resource):
22863         * frame.el (ns-display-monitor-attributes-list):
22864         * calc/calc-aent.el (math-to-radians-2):
22865         * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
22866         Fix declarations.
22868         * calc/calc-menu.el: Make it loadable in isolation.
22870         * net/eudcb-bbdb.el: Make it loadable without bbdb.
22871         (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
22872         (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
22873         (eudc-bbdb-query-internal): Require 'bbdb.
22875         * lpr.el (lpr-headers-switches):
22876         * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
22878         * progmodes/sql.el (sql-login-params): Fix and improve :type.
22880         * emulation/edt-mapper.el: In batch mode, error rather than hang.
22882         * term.el (term-set-escape-char): Make it idempotent.
22884 2013-05-10  Leo Liu  <sdl.web@gmail.com>
22886         * progmodes/octave.el (inferior-octave-completion-table):
22887         No longer a function and all uses changed.  Use cache to speed up
22888         completion due to bug#11906.
22889         (octave-beginning-of-defun): Re-write to be more general.
22891 2013-05-10  Glenn Morris  <rgm@gnu.org>
22893         * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
22895 2013-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
22897         * comint.el (comint-redirect-send-command-to-process): Use :around
22898         rather than :override for comint-redirect-filter.
22899         (comint-redirect-filter): Add the corresponding `orig-filter' argument.
22900         Call it instead of comint-redirect-original-filter-function (which
22901         is gone).  Reported by Juanma Barranquero <lekktu@gmail.com>.
22903 2013-05-09  Jan Djärv  <jan.h.d@swipnet.se>
22905         * frame.el (display-monitor-attributes-list): Add NS case.
22906         (ns-display-monitor-attributes-list): Declare.
22908 2013-05-09  Ulrich Mueller  <ulm@gentoo.org>
22910         * descr-text.el (describe-char): Fix %d/%x typo.  (Bug#14360)
22912 2013-05-09  Glenn Morris  <rgm@gnu.org>
22914         * international/fontset.el (vertical-centering-font-regexp):
22915         Set standard-value.
22917         * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
22919         * bookmark.el (bookmark-search-delay):
22920         * cus-start.el (vertical-centering-font-regexp):
22921         * ps-mule.el (ps-mule-font-info-database-default):
22922         * ps-print.el (ps-default-fg, ps-default-bg):
22923         * type-break.el (type-break-good-break-interval):
22924         * whitespace.el (whitespace-indentation-regexp)
22925         (whitespace-space-after-tab-regexp):
22926         * emacs-lisp/testcover.el (testcover-1value-functions)
22927         (testcover-noreturn-functions, testcover-progn-functions)
22928         (testcover-prog1-functions):
22929         * emulation/viper-init.el (viper-emacs-state-cursor-color):
22930         * eshell/em-glob.el (eshell-glob-translate-alist):
22931         * play/tetris.el (tetris-tty-colors):
22932         * progmodes/cpp.el (cpp-face-default-list):
22933         * progmodes/flymake.el (flymake-allowed-file-name-masks):
22934         * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
22935         (idlwave-help-browser-generic-args):
22936         * progmodes/make-mode.el (makefile-special-targets-list):
22937         * progmodes/python.el (python-shell-virtualenv-path):
22938         * progmodes/verilog-mode.el (verilog-active-low-regexp)
22939         (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
22940         (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
22941         (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
22942         * textmodes/reftex-vars.el (reftex-format-label-function):
22943         * textmodes/remember.el (remember-diary-file): Fix custom types.
22945         * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
22946         Add :version.
22948 2013-05-09  Leo Liu  <sdl.web@gmail.com>
22950         * progmodes/octave.el (inferior-octave-completion-at-point):
22951         Restore file completion.  (Bug#14300)
22952         (inferior-octave-startup): Fix incorrect highlighting for the
22953         first prompt.
22955 2013-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
22957         * progmodes/ruby-mode.el: First cut at SMIE support.
22958         (ruby-use-smie): New var.
22959         (ruby-smie-grammar): New constant.
22960         (ruby-smie--bosp, ruby-smie--implicit-semi-p)
22961         (ruby-smie--forward-token, ruby-smie--backward-token)
22962         (ruby-smie-rules): New functions.
22963         (ruby-mode-variables): Setup SMIE if applicable.
22965 2013-05-08  Eli Zaretskii  <eliz@gnu.org>
22967         * simple.el (line-move-visual): Signal beginning/end of buffer
22968         only if vertical-motion moved less than it was requested.  Avoids
22969         silly incorrect error messages when there are display strings with
22970         multiple newlines at EOL.
22972 2013-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
22974         * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
22975         * progmodes/prolog.el (prolog-underscore-wordchar-flag)
22976         (prolog-char-quote-workaround):
22977         * progmodes/cperl-mode.el (cperl-under-as-char):
22978         * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
22979         Mark as obsolete.
22980         (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
22981         their declaration.
22982         (vhdl-mode-syntax-table-init): Remove.
22984         * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
22985         last change.
22987         * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
22988         syntax for "_".
22989         (ld-script-font-lock-keywords):
22990         Change regexps to use things like \_< and \_>.
22992         * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
22993         Change all regexps to use things like \_< and \_>.
22995         * progmodes/autoconf.el (autoconf-definition-regexp)
22996         (autoconf-font-lock-keywords, autoconf-current-defun-function):
22997         Handle a _ with symbol syntax.
22998         (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
23000         * progmodes/ada-mode.el (ada-mode-abbrev-table):
23001         Consolidate declaration.
23002         (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
23003         the declaration.
23004         (ada-create-syntax-table): Remove.
23005         (ada-capitalize-word): Don't mess with the syntax of "_" since it
23006         already has the right syntax nowadays.
23007         (ada-goto-next-word): Don't change the syntax of "_".
23009         * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
23010         with-wrapper-hook.
23012 2013-05-08  Sam Steingold  <sds@gnu.org>
23014         * thingatpt.el (thing-at-point): Accept optional second argument
23015         NO-PROPERTIES to strip the text properties from the return value.
23016         * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
23017         to `thing-at-point' instead of stripping the properties ourselves.
23018         Also, when `thing-at-point' fails to find a url, prepend "http://"
23019         to the filename at point on the assumption that the user is
23020         pointing at something like gnu.org/gnu.
23022 2013-05-08  Juanma Barranquero  <lekktu@gmail.com>
23024         * emacs-lisp/bytecomp.el (byte-compile-insert-header):
23025         * faces.el (crm-separator):
23026         Silence byte-compiler.
23028         * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
23029         (tool-bar-map): Remove unneeded defvars.
23031 2013-05-08  Leo Liu  <sdl.web@gmail.com>
23033         Re-work a fix for bug#10994 based on Le Wang's patch.
23034         * ido.el (ido-remove-consecutive-dups): New helper.
23035         (ido-completing-read): Use it.
23036         (ido-chop): Revert fix for bug#10994.
23038 2013-05-08  Adam Spiers  <emacs@adamspiers.org>
23040         * cus-edit.el (custom-save-variables):
23041         Pretty-print long values.  (Bug#14187)
23043 2013-05-08  Glenn Morris  <rgm@gnu.org>
23045         * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
23046         (m4-mode-syntax-table): Init in the defvar.
23047         (m4-mode-abbrev-table): Let define-derived-mode define it.
23049 2013-05-08  Tom Tromey  <tromey@redhat.com>
23051         * progmodes/m4-mode.el (m4-mode-syntax-table):
23052         Do not treat "_" as word constituent.  (Bug#14167)
23054 2013-05-07  Glenn Morris  <rgm@gnu.org>
23056         * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
23057         Remove explicit eshell-isearch-cancel-map.
23059         * progmodes/f90.el (f90-smart-end-names): New option.
23060         (f90-smart-end): Doc fix.
23061         (f90-end-block-optional-name): New constant.
23062         (f90-block-match): Respect f90-smart-end-names.
23064 2013-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
23066         * progmodes/octave.el (octave-smie-forward-token): Be more careful
23067         about implicit semi-colons (bug#14218).
23069 2013-05-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
23071         * frame.el (display-monitor-attributes-list)
23072         (frame-monitor-attributes): New functions.
23074 2013-05-06  Leo Liu  <sdl.web@gmail.com>
23076         * progmodes/octave.el (octave-syntax-propertize-function): Change
23077         \'s syntax to escape when inside double-quoted strings.  (Bug#14332)
23078         (octave-font-lock-keywords): Use octave-operator-regexp.
23079         (octave-completion-at-point): Rename from
23080         octave-completion-at-point-function.
23081         (inferior-octave-directory-tracker): Robustify.
23082         (octave-text-functions): Remove and fix its uses.  No such things
23083         any more.
23085 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
23087         * emacs-lisp/trace.el (trace--display-buffer): New function.
23088         (trace-make-advice): Use it.
23090 2013-05-06  Juri Linkov  <juri@jurta.org>
23092         * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix.  (Bug#14344)
23093         (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
23094         Doc fix.
23095         (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
23096         in the help string.  (Bug#12985)
23098 2013-05-06  Kelly Dean  <kellydeanch@yahoo.com>  (tiny change)
23100         * simple.el (shell-command-on-region): Doc fix.  (Bug#14279)
23102 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
23104         * progmodes/perl-mode.el: Add support for here documents.
23105         (perl-syntax-propertize-function): Match here-doc markers.
23106         (perl-syntax-propertize-special-constructs): Find their end.
23107         (perl-imenu-generic-expression): Use [:alnum:].
23109         * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
23110         (advice--add-function): Refresh the advice if already present
23111         (bug#14317).
23113 2013-05-06  Ivan Andrus  <darthandrus@gmail.com>
23115         * find-file.el (cc-other-file-alist): Add ".m" for ObjC.  (Bug#14339)
23117 2013-05-06  Glenn Morris  <rgm@gnu.org>
23119         * w32-fns.el (w32-charset-info-alist): Declare.
23121         * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
23122         of its defcustom properties.
23123         (eshell-cmpl-initialize): No need to load pcomplete.
23125         * generic-x.el: No need to require comint when compiling.
23127         * net/eudc-export.el: Make it loadable without bbdb.
23128         (top-level): Use require rather than load-library.
23129         (eudc-create-bbdb-record, eudc-bbdbify-phone)
23130         (eudc-batch-export-records-to-bbdb)
23131         (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
23132         Require bbdb.
23134 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
23136         * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
23137         (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
23138         some tweaks, instead.
23140 2013-05-05  Leo Liu  <sdl.web@gmail.com>
23142         * progmodes/octave.el (octave-font-lock-keywords)
23143         (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
23144         (inferior-octave-send-list-and-digest): Improve error message.
23145         (octave-mode, inferior-octave-mode): Use setq-local.
23146         (octave-help): Set info-lookup-mode.
23148 2013-05-05  Richard Stallman  <rms@gnu.org>
23150         * vc/compare-w.el (compare-windows-whitespace):
23151         Treat no-break space as whitespace.
23153         * mail/rmailsum.el (rmail-summary-rmail-update):
23154         Detect empty summary and don't change selected message.
23155         (rmail-summary-goto-msg): Likewise.
23157         * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
23158         Doc fixes, rename args.
23160 2013-05-05  Alan Mackenzie  <acm@muc.de>
23162         * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
23164 2013-05-05  Juri Linkov  <juri@jurta.org>
23166         * info.el (Info-read-subfile): Use (point-min) instead of (point)
23167         to not add the length of the summary segment to the return value.
23168         (Bug#14125)
23170 2013-05-05  Leo Liu  <sdl.web@gmail.com>
23172         * progmodes/octave.el (inferior-octave-strip-ctrl-g)
23173         (inferior-octave-output-filter): Remove.
23174         (octave-send-region, inferior-octave-startup): Fix callers.
23175         (inferior-octave-mode-map): Don't use comint-dynamic-complete.
23176         (octave-binary-file-extensions): New user variable.
23177         (octave-find-definition): Confirm if opening binary files.
23178         (octave-help-file): Use octave-find-definition to get the binary
23179         confirmation.
23180         (octave-help): Adjust for octave-help-file change.
23182 2013-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
23184         * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
23185         Merge the two entries that handle function definitions.
23186         (pascal--syntax-propertize): New const.
23187         (pascal-mode): Use it.  Use setq-local.
23189 2013-05-04  Glenn Morris  <rgm@gnu.org>
23191         * calendar/diary-lib.el (diary-from-outlook-function): New variable.
23192         (diary-from-outlook): Respect diary-from-outlook-function.
23194 2013-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
23196         * simple.el (read-expression-map): Use completion-at-point (bug#14255).
23197         Move the declaration from C.
23198         (read-minibuffer, eval-minibuffer): Move from C.
23199         (completion-setup-function): Avoid minibuffer-completion-contents.
23201 2013-05-03  Leo Liu  <sdl.web@gmail.com>
23203         * progmodes/octave.el (octave-font-lock-keywords): Do not
23204         dehighlight 'end' in comments or strings.
23205         (octave-completing-read, octave-goto-function-definition):
23206         New helpers.
23207         (octave-help-buffer): New user variable.
23208         (octave-help-file, octave-help-function): New button types.
23209         (octave-help): New command and bind it to C-h ;.
23210         (octave-find-definition): New command and bind it to M-.
23211         (user-error): Alias to error if not defined.
23213 2013-05-02  Leo Liu  <sdl.web@gmail.com>
23215         * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
23216         for \.  (bug#14332)
23217         (octave-font-lock-keywords): Include [ and {.
23219 2013-05-02  Leo Liu  <sdl.web@gmail.com>
23221         * progmodes/octave.el (inferior-octave-startup-file): Change default.
23222         (inferior-octave): Remove calling comint-mode and return the buffer.
23223         (inferior-octave-startup): Cosmetic changes.
23225 2013-05-02  Leo Liu  <sdl.web@gmail.com>
23227         * progmodes/octave.el (octave-syntax-propertize-function):
23228         Include the case when ' is at line beginning.  (Bug#14336)
23230 2013-05-02  Glenn Morris  <rgm@gnu.org>
23232         * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
23233         * desktop.el (vc-dir-mode): Just autoload it here.
23235 2013-05-02  Alan Mackenzie  <acm@muc.de>
23237         Eliminate variable c-standard-font-lock-fontify-region-function.
23238         * progmodes/cc-mode.el
23239         (c-standard-font-lock-fontify-region-function): Remove.
23240         (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
23242 2013-05-01  Leo Liu  <sdl.web@gmail.com>
23244         * progmodes/octave.el: Compatible with older emacs-24 releases.
23245         (inferior-octave-has-built-in-variables): Remove.  Built-in
23246         variables were removed from Octave in 2007.
23247         (inferior-octave-startup): Fix uses.
23248         (comint-line-beginning-position): Remove compatibility code for
23249         emacs 21.
23251 2013-05-01  Juri Linkov  <juri@jurta.org>
23253         * isearch.el (isearch-forward, isearch-mode): Doc fix.  (Bug#13923)
23255 2013-05-01  Juri Linkov  <juri@jurta.org>
23257         * comint.el (comint-previous-matching-input): Don't print message
23258         "History item: %d" when `isearch-mode' is active.
23259         (comint-history-isearch-message): Print message "History item: %d"
23260         when `comint-input-ring-index' is not empty and this function is
23261         called from `isearch-update' with a nil `ellipsis'.  (Bug#13223)
23263 2013-05-01  Leo Liu  <sdl.web@gmail.com>
23265         * progmodes/octave.el (octave-abbrev-table): Remove abbrev
23266         definitions.  Use completion-at-point to insert keywords.
23267         (octave-abbrev-start): Remove.
23268         (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
23270 2013-04-30  Leo Liu  <sdl.web@gmail.com>
23272         * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
23273         change.
23275 2013-04-30  Alan Mackenzie  <acm@muc.de>
23277         Handle arbitrarily long C++ member initialisation lists.
23278         * progmodes/cc-engine.el (c-back-over-member-initializers):
23279         new function.
23280         (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
23281         (most) member init lists.
23283 2013-04-30  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
23285         * progmodes/octave.el (inferior-octave-prompt-read-only): New user
23286         variable.
23288 2013-04-30  Leo Liu  <sdl.web@gmail.com>
23290         * progmodes/octave.el (octave-variables): Remove.  No builtin
23291         variables any more.  All converted to functions.
23292         (octave-font-lock-keywords, octave-completion-at-point-function):
23293         Fix uses.
23294         (octave-font-lock-texinfo-comment): New user variable.
23295         (octave-texinfo-font-lock-keywords): New variable for texinfo
23296         comment block.
23297         (octave-function-comment-block): New face.
23298         (octave-font-lock-texinfo-comment): New function.
23299         (octave-mode): Font lock texinfo comment block.
23301 2013-04-29  Leo Liu  <sdl.web@gmail.com>
23303         * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
23304         indexing expression.
23305         (octave-continuation-string): Do not use \.
23306         (inferior-octave-complete-impossible): Remove.
23307         (inferior-octave-completion-table)
23308         (inferior-octave-completion-at-point): Remove its uses.
23309         (inferior-octave-startup): completion_matches was introduced to
23310         Octave in 1996 so safe to assume it.
23311         (octave-function-file-comment): Improve to follow how Octave does it.
23312         (octave-update-function-file-comment): Tweak.
23314 2013-04-29  Leo Liu  <sdl.web@gmail.com>
23316         * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
23317         (inferior-octave-startup): Remove inferior-octave-startup-hook.
23318         (octave-function-file-comment): Fix typo.
23319         (octave-sync-function-file-names): Use read-char-choice.
23321 2013-04-28  Jay Belanger  <jay.p.belanger@gmail.com>
23323         * calc/calc.el (math-normalize): Don't set `math-normalize-error'
23324         to t for the less important warnings.
23326 2013-04-27  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
23328         * isearch.el (isearch-fail-pos): Check for empty `cmds'.  (Bug#14268)
23330 2013-04-27  Glenn Morris  <rgm@gnu.org>
23332         * vc/log-view.el (log-view-current-entry):
23333         Treat "---" separator lines as part of the following rev.  (Bug#14169)
23335 2013-04-27  Juri Linkov  <juri@jurta.org>
23337         * subr.el (read-number): Doc fix about using it by interactive
23338         code letter `n'.  (Bug#14254)
23340 2013-04-27  Juri Linkov  <juri@jurta.org>
23342         * desktop.el (desktop-auto-save-timeout): New option.
23343         (desktop-file-checksum): New variable.
23344         (desktop-save): Add optional arg `auto-save' and don't auto-save
23345         if nothing changed.
23346         (desktop-auto-save-timer): New variable.
23347         (desktop-auto-save, desktop-auto-save-set-timer): New functions.
23348         (after-init-hook): Call `desktop-auto-save-set-timer'.
23349         Suggested by Reuben Thomas <rrt@sc3d.org> in
23350         <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
23352 2013-04-27  Leo Liu  <sdl.web@gmail.com>
23354         * progmodes/octave.el (octave-function-file-p)
23355         (octave-skip-comment-forward, octave-function-file-comment)
23356         (octave-update-function-file-comment): New functions.
23357         (octave-mode-map): Bind C-c ; to
23358         octave-update-function-file-comment.
23359         (octave-mode-menu): Add octave-update-function-file-comment.
23360         (octave-mode, inferior-octave-mode): Fix doc-string.
23361         (octave-insert-defun): Conform to Octave's coding convention.
23362         (Bug#14285)
23364         * files.el (basic-save-buffer): Don't let errors in
23365         before-save-hook prevent saving buffer.
23367 2013-04-20  Roland Winkler  <winkler@gnu.org>
23369         * faces.el (read-face-name): Use completing-read if arg multiple
23370         is nil.
23372 2013-04-27  Ingo Lohmar  <i.lohmar@gmail.com>  (tiny change)
23374         * ls-lisp.el (ls-lisp-insert-directory): If no files are
23375         displayed, move point to after the totals line.
23376         See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
23377         for the details.
23379 2013-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
23381         * emacs-lisp/package.el (package-autoload-ensure-default-file):
23382         Add current dir to the load-path.
23383         (package-generate-autoloads): Don't rely on
23384         autoload-ensure-default-file.
23386 2013-04-26  Reuben Thomas  <rrt@sc3d.org>
23388         * textmodes/remember.el (remember-store-in-files): Document that
23389         the file name format is passed to `format-time-string'.
23391 2013-04-26  Leo Liu  <sdl.web@gmail.com>
23393         * progmodes/octave.el (octave-sync-function-file-names): New function.
23394         (octave-mode): Use it in before-save-hook.
23396 2013-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
23398         * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
23399         (bug#14274).
23401         * progmodes/octave.el (octave-smie-forward-token): Properly skip
23402         \n and comment, even if it's not an implicit ; (bug#14218).
23404 2013-04-26  Glenn Morris  <rgm@gnu.org>
23406         * subr.el (read-number): Once more use `read' rather than
23407         `string-to-number', to trap non-numeric input.  (Bug#14254)
23409 2013-04-26  Erik Charlebois  <erikcharlebois@gmail.com>
23411         * emacs-lisp/syntax.el (syntax-propertize-multiline):
23412         Use `syntax-multiline' text property consistently instead of
23413         `font-lock-multiline'.  (Bug#14237)
23415 2013-04-26  Glenn Morris  <rgm@gnu.org>
23417         * emacs-lisp/shadow.el (list-load-path-shadows):
23418         No longer necessary to check for duplicate simple.el, since
23419         2012-07-07 change to init_lread to not include installation lisp
23420         directories in load-path when running uninstalled.  (Bug#14270)
23422 2013-04-26  Leo Liu  <sdl.web@gmail.com>
23424         * progmodes/octave.el (octave-submit-bug-report): Obsolete.
23425         (octave-mode, inferior-octave-mode): Use setq-local.
23426         (octave-not-in-string-or-comment-p): Rename to
23427         octave-in-string-or-comment-p.
23428         (octave-in-comment-p, octave-in-string-p)
23429         (octave-in-string-or-comment-p): Replace defsubst with defun.
23431 2013-04-25  Paul Eggert  <eggert@cs.ucla.edu>
23433         * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
23435 2013-04-25  Bastien Guerry  <bzg@gnu.org>
23437         * textmodes/remember.el (remember-data-directory)
23438         (remember-directory-file-name-format): Fix custom types.
23440 2013-04-25  Leo Liu  <sdl.web@gmail.com>
23442         * progmodes/octave.el (octave-completion-at-point-function):
23443         Make use of inferior octave process.
23444         (octave-initialize-completions): Remove.
23445         (inferior-octave-completion-table): New function.
23446         (inferior-octave-completion-at-point): Use it.
23447         (octave-completion-alist): Remove.
23449 2013-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
23451         * progmodes/opascal.el: Use font-lock and syntax-propertize.
23452         (opascal-mode-syntax-table): New var.
23453         (opascal-literal-kind, opascal-is-literal-end)
23454         (opascal-literal-token-at): Rewrite.
23455         (opascal--literal-start-re, opascal-font-lock-keywords)
23456         (opascal--syntax-propertize): New constants.
23457         (opascal-font-lock-defaults): Adjust.
23458         (opascal-mode): Use them.  Set comment-<foo> variables as well.
23459         (delphi-comment-face, opascal-comment-face, delphi-string-face)
23460         (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
23461         (delphi-other-face, opascal-other-face): Remove face variables.
23462         (opascal-save-state): Remove macro.
23463         (opascal-fontifying-progress-step): Remove constant.
23464         (opascal--ignore-changes): Remove var.
23465         (opascal-set-token-property, opascal-parse-next-literal)
23466         (opascal-is-stable-literal, opascal-complete-literal)
23467         (opascal-is-literal-start, opascal-face-of)
23468         (opascal-parse-region, opascal-parse-region-until-stable)
23469         (opascal-fontify-region, opascal-after-change)
23470         (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
23471         (opascal-debug-parse-region, opascal-debug-parse-window)
23472         (opascal-debug-parse-buffer, opascal-debug-fontify-window)
23473         (opascal-debug-fontify-buffer): Remove.
23474         (opascal-debug-mode-map): Adjust accordingly.
23476 2013-04-25  Leo Liu  <sdl.web@gmail.com>
23478         Merge octave-mod.el and octave-inf.el into octave.el with some
23479         cleanups.
23480         * progmodes/octave.el: New file renamed from octave-mod.el.
23481         * progmodes/octave-inf.el: Merged into octave.el.
23482         * progmodes/octave-mod.el: Renamed to octave.el.
23484 2013-04-25  Tassilo Horn  <tsdh@gnu.org>
23486         * textmodes/reftex-vars.el
23487         (reftex-label-ignored-macros-and-environments): New defcustom.
23489         * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
23491 2013-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
23493         * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
23494         (smie-indent-keyword): Improve the check to ensure that the next
23495         comment is really on the same line.
23496         (smie-indent-comment): Don't align with a subsequent closer (or eob).
23498         * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
23499         semi-colons if the line is not otherwise empty (bug#14218).
23501 2013-04-25  Glenn Morris  <rgm@gnu.org>
23503         * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
23505 2013-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
23507         * progmodes/opascal.el (opascal-set-token-property): Rename from
23508         opascal-set-text-properties and only set `token' (bug#14134).
23509         Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
23510         (opascal-literal-text-properties): Remove.
23511         (opascal-parse-next-literal, opascal-debug-unparse-buffer):
23512         Adjust callers.
23514 2013-04-24  Reuben Thomas  <rrt@sc3d.org>
23516         * textmodes/remember.el (remember-handler-functions): Add an
23517         option for a new handler `remember-store-in-files'.
23518         (remember-data-directory, remember-directory-file-name-format):
23519         New options.
23520         (remember-store-in-files): New function to store remember notes
23521         as separate files within a directory.
23523 2013-04-24  Magnus Henoch  <magnus.henoch@gmail.com>
23525         * progmodes/compile.el (compilation-next-error-function):
23526         Pass "formats" to compilation-find-file (bug#11777).
23528 2013-04-24  Glenn Morris  <rgm@gnu.org>
23530         * vc/vc-bzr.el (vc-bzr-print-log):
23531         * vc/vc-hg.el (vc-hg-print-log):
23532         * vc/vc-svn.el (vc-svn-print-log):
23533         Fix START-REVISION with LIMIT != 1.  (Bug#14168)
23535         * vc/vc-bzr.el (vc-bzr-print-log):
23536         * vc/vc-cvs.el (vc-cvs-print-log):
23537         * vc/vc-git.el (vc-git-print-log):
23538         * vc/vc-hg.el (vc-hg-print-log):
23539         * vc/vc-mtn.el (vc-mtn-print-log):
23540         * vc/vc-rcs.el (vc-rcs-print-log):
23541         * vc/vc-sccs.el (vc-sccs-print-log):
23542         * vc/vc-svn.el (vc-svn-print-log):
23543         * vc/vc.el (vc-print-log-internal): Doc fixes.
23545 2013-04-23  Glenn Morris  <rgm@gnu.org>
23547         * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
23548         Remove venerable code attempting to avoid substitute-command-keys.
23550 2013-04-23  Tassilo Horn  <tsdh@gnu.org>
23552         * textmodes/reftex-vars.el (reftex-label-regexps):
23553         Call `reftex-compile-variables' after changes to this variable.
23555 2013-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
23557         * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
23558         Use lexical-binding.
23559         (jit-lock-force-redisplay): Use markers, check buffer's continued
23560         existence and beware narrowed buffers.
23561         (jit-lock-fontify-now): Adjust call accordingly.
23563 2013-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
23565         * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
23566         to avoid misleading the user.
23568 2013-04-22  Leo Liu  <sdl.web@gmail.com>
23570         * info-look.el: Prefer latex2e.info.  (Bug#14240)
23572 2013-04-22  Michael Albinus  <michael.albinus@gmx.de>
23574         Fix pack/unpack coding.  Reported by David Smith <davidsmith@acm.org>.
23576         * net/tramp-compat.el (tramp-compat-call-process): Move function ...
23577         * net/tramp.el (tramp-call-process): ... here.
23578         (tramp-set-completion-function, tramp-parse-putty):
23579         * net/tramp-adb.el (tramp-adb-execute-adb-command):
23580         * net/tramp-gvfs.el (tramp-gvfs-send-command):
23581         * net/tramp-sh.el (tramp-sh-handle-set-file-times)
23582         (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
23583         (tramp-call-local-coding-command): Use `tramp-call-process'
23584         instead of `tramp-compat-call-process'.
23586         * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
23587         (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
23588         (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
23589         (tramp-find-inline-compress): Improve traces.
23590         (tramp-maybe-send-script): Check for Perl binary.
23591         (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
23593 2013-04-22  Daiki Ueno  <ueno@gnu.org>
23595         * epg.el (epg-context-pinentry-mode): New function.
23596         (epg-context-set-pinentry-mode): New function.
23597         (epg--start): Pass --pinentry-mode option to gpg command.
23599 2013-04-21  Xue Fuqiao  <xfq.free@gmail.com>
23601         * comint.el (comint-dynamic-complete-functions, comint-mode-map):
23602         `comint-dynamic-complete' is obsolete since 24.1, replaced by
23603         `completion-at-point'.  (Bug#13774)
23605         * startup.el (normal-no-mouse-startup-screen): Bug fix, the
23606         default key binding for `describe-distribution' has been moved to
23607         `C-h C-o'.  (Bug#13970)
23609 2013-04-21  Glenn Morris  <rgm@gnu.org>
23611         * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
23612         Add doc strings.
23613         (vc-print-log): Clarify interactive prompt.
23615 2013-04-20  Glenn Morris  <rgm@gnu.org>
23617         * emacs-lisp/bytecomp.el (byte-compile-insert-header):
23618         No longer include timestamp etc information.
23620 2013-04-20  Roland Winkler  <winkler@gnu.org>
23622         * faces.el (read-face-name): Bug fix, return just one face if arg
23623         multiple is nil.  (Bug#14209)
23625 2013-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
23627         * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
23628         (remove-function): Autoload.
23630         * comint.el (comint-redirect-original-filter-function): Remove.
23631         (comint-redirect-cleanup, comint-redirect-send-command-to-process):
23632         * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
23633         (vc-cvs-annotate-command):
23634         * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
23635         * progmodes/prolog.el (prolog-consult-compile):
23636         * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
23637         Use add/remove-function instead.
23638         * progmodes/gud.el (gud-tooltip-original-filter): Remove.
23639         (gud-tooltip-process-output, gud-tooltip-tips):
23640         Use add/remove-function instead.
23641         * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
23642         (scheme-interaction-mode, exit-scheme-interaction-mode):
23643         Use add/remove-function instead.
23645         * vc/vc-dispatcher.el: Use lexical-binding.
23646         (vc--process-sentinel): Rename from vc-process-sentinel.
23647         Change last arg to be the code to run.  Don't use vc-previous-sentinel
23648         and vc-sentinel-commands any more.
23649         (vc-exec-after): Allow code to be a function.  Use add/remove-function.
23650         (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
23652 2013-04-19  Masatake YAMATO  <yamato@redhat.com>
23654         * progmodes/sh-script.el (sh-imenu-generic-expression):
23655         Handle function names with a single character.  (Bug#14111)
23657 2013-04-19  Dima Kogan  <dima@secretsauce.net>  (tiny change)
23659         * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
23660         for subroutines defined in an eval (bug#14182).
23662 2013-04-19  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
23664         * bookmark.el (bookmark-completing-read): Improve handling of empty
23665         string (bug#14176).
23667 2013-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
23669         * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
23671 2013-04-19  Fabián Ezequiel Gallina  <fgallina@gnu.org>
23673         New faster Imenu implementation (bug#14058).
23674         * progmodes/python.el (python-imenu-prev-index-position)
23675         (python-imenu-format-item-label-function)
23676         (python-imenu-format-parent-item-label-function)
23677         (python-imenu-format-parent-item-jump-label-function):
23678         New vars.
23679         (python-imenu-format-item-label)
23680         (python-imenu-format-parent-item-label)
23681         (python-imenu-format-parent-item-jump-label)
23682         (python-imenu--put-parent, python-imenu--build-tree)
23683         (python-imenu-create-index, python-imenu-create-flat-index)
23684         (python-util-popn): New functions.
23685         (python-mode): Set imenu-create-index-function to
23686         python-imenu-create-index.
23688 2013-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
23690         * winner.el (winner-active-region): Use region-active-p, activate-mark
23691         and deactivate-mark (bug#14225).
23693         * simple.el (deactivate-mark): Don't inline it.
23695 2013-04-18  Michael Albinus  <michael.albinus@gmx.de>
23697         * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
23699 2013-04-18  Tassilo Horn  <tsdh@gnu.org>
23701         * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
23702         file extensions from the archive-mode entry in order to prefer
23703         doc-view-mode-maybe with archive-mode as fallback (bug#14188).
23705 2013-04-18  Leo Liu  <sdl.web@gmail.com>
23707         * bindings.el (help-event-list): Add ?\?.
23709 2013-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
23711         * subr.el (with-wrapper-hook): Declare obsolete.
23712         * simple.el (filter-buffer-substring-function): New hook.
23713         (filter-buffer-substring): Use it.
23714         (filter-buffer-substring-functions): Mark obsolete.
23715         * minibuffer.el (completion-in-region-function): New hook.
23716         (completion-in-region): Use it.
23717         (completion-in-region-functions): Mark obsolete.
23718         * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
23719         * abbrev.el (abbrev-expand-function): New hook.
23720         (expand-abbrev): Use it.
23721         (abbrev-expand-functions): Mark obsolete.
23722         * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
23723         and :filter-return.
23725 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
23727         * progmodes/python.el (python-nav--syntactically): Fix cornercases
23728         and do not care about match data.
23730 2013-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
23732         * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
23733         completion tables when completing error conditions and
23734         `declare' arguments.
23735         (lisp-complete-symbol, field-complete): Mark as obsolete.
23736         (check-parens): Unmatched parens are user errors.
23737         * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
23739 2013-04-17  Michal Nazarewicz  <mina86@mina86.com>
23741         * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
23742         command changed buffer (ie. `flyspell-pre-buffer' is not current
23743         buffer), which prevents making decisions based on invalid value of
23744         `flyspell-pre-point' in the wrong buffer.  Most notably, this used to
23745         cause an error when `flyspell-pre-point' was nil after switching
23746         buffers.
23747         (flyspell-post-command-hook): No longer needs to change buffers when
23748         checking pre-word.  While at it remove unnecessary progn.
23750 2013-04-17  Nicolas Richard  <theonewiththeevillook@yahoo.fr>  (tiny change)
23752         * textmodes/ispell.el (ispell-add-per-file-word-list):
23753         Fix `flyspell-correct-word-before-point' error when accepting
23754         words and `coment-padding' is an integer by using
23755         `comment-normalize-vars' (Bug #14214).
23757 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
23759         New defun movement commands.
23760         * progmodes/python.el (python-nav--syntactically)
23761         (python-nav--forward-defun, python-nav-backward-defun)
23762         (python-nav-forward-defun): New functions.
23764 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
23766         * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
23767         (python-syntax-context): Use named compiler-macro for backwards
23768         compatibility with Emacs 24.x.
23770 2013-04-17  Leo Liu  <sdl.web@gmail.com>
23772         * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
23773         octave-hide-process-buffer.
23775 2013-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
23777         * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
23778         (bug#14216).
23780 2013-04-17  Jean-Philippe Gravel  <jpgravel@gmail.com>
23782         * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
23783         Fix adjustment of offset when receiving incomplete responses from GDB
23784         (bug#14129).
23786 2013-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
23788         * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
23789         python-mode-abbrev-table.
23790         (python-skeleton-define): Adjust accordingly.
23791         (python-mode-abbrev-table): New table that inherits from it so that
23792         python-skeleton-autoinsert does not affect non-skeleton abbrevs.
23794         * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
23795         (abbrev-symbol): Use it.
23796         (abbrev--before-point): Use it since we already handle inheritance.
23798 2013-04-16  Leo Liu  <sdl.web@gmail.com>
23800         * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
23801         binding to info-lookup-symbol.
23803 2013-04-16  Juanma Barranquero  <lekktu@gmail.com>
23805         * minibuffer.el (completion--twq-all):
23806         * term/ns-win.el (ns-initialize-window-system):
23807         * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
23809 2013-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
23811         * emacs-lisp/nadvice.el (add-function): Default simple vars to their
23812         global bindings.
23814         * doc-view.el (doc-view-start-process): Handle url-handler directories.
23816 2013-04-15  Dmitry Gutov  <dgutov@yandex.ru>
23818         * progmodes/ruby-mode.el (ruby-beginning-of-defun)
23819         (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
23820         to nil.
23821         (ruby-end-of-defun): Remove the unused arg, change the docstring
23822         to reflect that this function is only used as the value of
23823         `end-of-defun-function'.
23824         (ruby-beginning-of-defun): Remove "top-level" from the docstring,
23825         to reflect an earlier change that beginning/end-of-defun functions
23826         jump between methods in a class definition, as well as top-level
23827         functions.
23829 2013-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
23831         * minibuffer.el (minibuffer-complete): Don't just scroll
23832         a *Completions* that's been iconified.
23833         (minibuffer-force-complete): Make sure repetitions do cycle when going
23834         through completion-in-region -> minibuffer-complete.
23836 2013-04-15  Alan Mackenzie  <acm@muc.de>
23838         Correct the placement of c-cpp-delimiters when there're #s not at
23839         col 0.
23841         * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
23842         place a submatch around the #.
23843         * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
23844         Start a search at BOL.  Put the c-cpp-delimiter category text propertiy
23845         on the #, not BOL.
23847 2013-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
23849         * emacs-lisp/nadvice.el: Properly test names when adding advice.
23850         (advice--member-p): New arg `name'.
23851         (advice--add-function, advice-member-p): Use it (bug#14202).
23853 2013-04-15  Filipp Gunbin  <fgunbin@fastmail.fm>
23855         Reformulate java imenu-generic-expression.
23856         The old expression contained ill formed regexps.
23858         * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
23859         (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
23860         (cc-imenu-java-method-arg-regexp): New defconsts.
23861         (cc-imenu-java-build-type-args-regex): New defun.
23862         (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
23863         handling of spaces in the regexp.
23865 2013-03-15  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
23867         * textmodes/ispell.el (ispell-command-loop): Remove
23868         flyspell highlight of a word when ispell accepts it (bug #14178).
23870 2013-04-15  Michael Albinus  <michael.albinus@gmx.de>
23872         * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
23873         uses code from the previous `ange-ftp-run-real-handler'.
23874         (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
23875         only in case that function exist.  This is needed for proper
23876         unloading of Tramp.
23878 2013-04-15  Tassilo Horn  <tsdh@gnu.org>
23880         * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
23882         * textmodes/reftex.el (reftex-compile-variables): Use it.
23884 2013-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
23886         * files.el (normal-mode): Only use default major-mode if no other mode
23887         was specified.
23889         * emacs-lisp/trace.el (trace-values): New function.
23891         * files.el: Allow : in local variables (bug#14089).
23892         (hack-local-variable-regexp): New var.
23893         (hack-local-variables-prop-line, hack-local-variables): Use it.
23895 2013-04-13  Roland Winkler  <winkler@gnu.org>
23897         * textmodes/bibtex.el (bibtex-search-entries): Bug fix.  Use match
23898         data before it gets modified by bibtex-beginning-of-entry.
23900 2013-04-13  Roland Winkler  <winkler@gnu.org>
23902         * textmodes/bibtex.el (bibtex-url): Doc fix.
23904 2013-04-13  Roland Winkler  <winkler@gnu.org>
23906         * textmodes/bibtex.el (bibtex-initialize): If the current buffer
23907         does not visit a BibTeX file, exclude it from the list of buffers
23908         returned by bibtex-initialize.
23910 2013-04-13  Stephen Berman  <stephen.berman@gmx.net>
23912         * window.el (split-window): Remove interactive form, since as a
23913         command this function is a special case of split-window-below.
23914         Correct doc string.
23916 2013-04-12  Roland Winkler  <winkler@gnu.org>
23918         * faces.el (read-face-name): Do not override value of arg default.
23919         Allow single faces and strings as default values.  Remove those
23920         elements from return value that are not faces.
23921         (describe-face): Simplify.
23922         (face-at-point): New optional args thing and multiple so that this
23923         function can provide the same functionality previously provided by
23924         read-face-name.
23925         (make-face-bold, make-face-unbold, make-face-italic)
23926         (make-face-unitalic, make-face-bold-italic, invert-face)
23927         (modify-face, read-face-and-attribute): Use face-at-point.
23929         * cus-edit.el (customize-face, customize-face-other-window)
23930         * cus-theme.el (custom-theme-add-face)
23931         * face-remap.el (buffer-face-set)
23932         * facemenu.el (facemenu-set-face): Use face-at-point.
23934 2013-04-12  Michael Albinus  <michael.albinus@gmx.de>
23936         * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
23938 2013-04-10  Tassilo Horn  <tsdh@gnu.org>
23940         * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
23941         off leading { and trailing } from field values.
23943 2013-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
23945         * emacs-lisp/timer.el (timer--check): New function.
23946         (timer--time, timer-set-function, timer-event-handler): Use it.
23947         (timer-set-idle-time): Simplify.
23948         (timer--activate): CSE.
23949         (timer-event-handler): Give more info in error message.
23950         (internal-timer-start-idle): New function, moved from C.
23952         * mpc.el (mpc-proc): Add `restart' argument.
23953         (mpc-proc-cmd): Use it.
23954         (mpc--status-timer-run): Also catch signals from `mpc-proc'.
23955         (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
23956         less often.
23958 2013-04-10  Masatake YAMATO  <yamato@redhat.com>
23960         * progmodes/sh-script.el: Implement `sh-mode' own
23961         `add-log-current-defun-function' (bug#14112).
23962         (sh-current-defun-name): New function.
23963         (sh-mode): Use the function.
23965 2013-04-09  Bastien Guerry  <bzg@gnu.org>
23967         * simple.el (choose-completion-string): Fix docstring (bug#14163).
23969 2013-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
23971         * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
23973         * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
23974         timer (bug#14156).
23976 2013-04-07  Nic Ferrier  <nferrier@ferrier.me.uk>
23978         * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
23979         declaration.
23981 2013-04-07  Leo Liu  <sdl.web@gmail.com>
23983         * pcmpl-x.el: New file.
23985 2013-04-06  Dmitry Antipov  <dmantipov@yandex.ru>
23987         Do not set x-display-name until X connection is established.
23988         This is needed to prevent from weird situation described at
23989         <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
23990         * frame.el (make-frame): Set x-display-name after call to
23991         window system initialization function, not before.
23992         * term/x-win.el (x-initialize-window-system): Add optional
23993         display argument and use it.
23994         * term/w32-win.el (w32-initialize-window-system):
23995         * term/ns-win.el (ns-initialize-window-system):
23996         * term/pc-win.el (msdos-initialize-window-system):
23997         Add compatible optional display argument.
23999 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
24001         * files.el (normal-backup-enable-predicate): On MS-Windows and
24002         MS-DOS compare truenames of temporary-file-directory and of the
24003         file, so that 8+3 aliases (usually found in $TEMP on Windows)
24004         don't fail comparison by compare-strings.  Also, compare file
24005         names case-insensitively on MS-Windows and MS-DOS.
24007 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
24009         * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
24010         Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
24012 2013-04-05  Dmitry Gutov  <dgutov@yandex.ru>
24014         * whitespace.el (whitespace-color-on, whitespace-color-off):
24015         Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
24017 2013-04-05  Jacek Chrząszcz  <chrzaszcz@mimuw.edu.pl>  (tiny change)
24019         * ispell.el (ispell-set-spellchecker-params):
24020         Really set `ispell-args' for all equivs.
24022 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
24024         * ido.el (ido-completions): Use extra elements of ido-decorations
24025         (bug#14143).
24026         (ido-decorations): Update docstring.
24028 2013-04-05  Michael Albinus  <michael.albinus@gmx.de>
24030         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
24031         (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
24032         nil during initialization, in order not to miss changes since the
24033         file was opened.  (Bug#14140)
24035 2013-04-05  Leo Liu  <sdl.web@gmail.com>
24037         * kmacro.el (kmacro-call-macro): Fix bug#14135.
24039 2013-04-05  Jay Belanger  <jay.p.belanger@gmail.com>
24041         * calc/calc-units.el (calc-convert-units): Rewrite conditional.
24043 2013-04-04  Glenn Morris  <rgm@gnu.org>
24045         * electric.el (electric-pair-inhibit-predicate): Add :version.
24047 2013-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
24049         * emacs-lisp/package.el (package-compute-transaction): Fix ordering
24050         when a package is required several times (bug#14082).
24052 2013-04-04  Roland Winkler  <winkler@gnu.org>
24054         * faces.el (read-face-name): Behave as promised by the docstring.
24055         Assume that arg default is a list of faces.
24056         (describe-face): Call read-face-name with list of default faces.
24058 2013-04-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
24060         * bookmark.el: Fix deletion of bookmarks (bug#13972).
24061         (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
24062         (bookmark-bmenu-execute-deletions): Only skip first line if it's
24063         the header.
24064         (bookmark-exit-hook-internal): Save even if list is empty.
24066 2013-04-04  Yann Hodique  <yann.hodique@gmail.com>  (tiny change)
24068         * emacs-lisp/package.el (package-pinned-packages): New var.
24069         (package--add-to-archive-contents): Obey it (bug#14118).
24071 2013-04-03  Alan Mackenzie  <acm@muc.de>
24073         Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
24074         Also adapt to the new values of element 7 of a parse state.
24076         * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
24077         parameter `not-in-delimiter'.  Handle being inside comment opener.
24078         (c-invalidate-state-cache-1): Reckon with an extra "invalid"
24079         character in case we're typing a '*' after a '/'.
24080         (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
24081         instead by passing the parameter to c-state-pp-to-literal.
24083         * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
24084         for elt. 7 of a parse state.
24086 2013-04-01  Paul Eggert  <eggert@cs.ucla.edu>
24088         Use UTF-8 for most files with non-ASCII characters (Bug#13936).
24089         * international/latin1-disp.el, international/mule-util.el:
24090         * language/cyril-util.el, language/european.el, language/ind-util.el:
24091         * language/lao-util.el, language/thai.el, language/tibet-util.el:
24092         * language/tibetan.el, language/viet-util.el:
24093         Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
24095 2013-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
24097         * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
24098         (electric-pair-post-self-insert-function): Use it.
24099         (electric-pair-default-inhibit): New function, extracted from
24100         electric-pair-post-self-insert-function.
24102 2013-03-31  Roland Winkler  <winkler@gnu.org>
24104         * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
24106 2013-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
24108         * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
24110 2013-03-30  Fabián Ezequiel Gallina  <fabian@anue.biz>
24112         Un-indent after "pass" and "return" statements (Bug#13888)
24113         * progmodes/python.el (python-indent-block-enders): New var.
24114         (python-indent-calculate-indentation): Use it.
24116 2013-03-30  Michael Albinus  <michael.albinus@gmx.de>
24118         * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
24119         defun.  Defining it as defalias could introduce too eager
24120         byte-compiler optimization.  (Bug#14030)
24122 2013-03-30  Chong Yidong  <cyd@gnu.org>
24124         * iswitchb.el (iswitchb-read-buffer): Fix typo.
24126 2013-03-30  Leo Liu  <sdl.web@gmail.com>
24128         * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
24129         (kmacro-execute-from-register): Pass the keyboard macro to
24130         kmacro-call-macro or repeating won't work correctly.
24132 2013-03-30  Teodor Zlatanov  <tzz@lifelogs.com>
24134         * progmodes/subword.el: Back to using `forward-symbol'.
24136         * subr.el (forward-whitespace, forward-symbol)
24137         (forward-same-syntax): Move from thingatpt.el.
24139 2013-03-29  Leo Liu  <sdl.web@gmail.com>
24141         * kmacro.el (kmacro-to-register): New command.
24142         (kmacro-execute-from-register): New function.
24143         (kmacro-keymap): Bind to 'x'.  (Bug#14071)
24145 2013-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
24147         * mpc.el: Use defvar-local and setq-local.
24148         (mpc--proc-connect): Connection failures are not bugs.
24149         (mpc-mode-map): `follow-link' only applies to the buffer's content.
24150         (mpc-volume-map): Bind to the up-events.
24152 2013-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
24154         * progmodes/subword.el (superword-mode): Use `forward-sexp'
24155         instead of `forward-symbol'.
24157 2013-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
24159         * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
24160         (edebug--recursive-edit): Use it.
24161         (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
24162         (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
24164 2013-03-28  Leo Liu  <sdl.web@gmail.com>
24166         * vc/vc-bzr.el (vc-bzr-revert): Don't backup.  (Bug#14066)
24168 2013-03-27  Eli Zaretskii  <eliz@gnu.org>
24170         * facemenu.el (list-colors-callback): New defvar.
24171         (list-colors-redisplay): New function.
24172         (list-colors-display): Install list-colors-redisplay as the
24173         revert-buffer-function.  (Bug#14063)
24175 2013-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
24177         * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
24178         and suffixes don't overlap (bug#14061).
24180         * case-table.el: Use lexical-binding.
24181         (case-table-get-table): New function.
24182         (get-upcase-table): Use it.  Mark as obsolete.  Adjust callers.
24184 2013-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
24186         * progmodes/subword.el: Add `superword-mode' to do word motion
24187         over symbol_words (parallels and leverages `subword-mode' which
24188         does word motion inside MixedCaseWords).
24190 2013-03-27  Aidan Gauland  <aidalgol@no8wireless.co.nz>
24192         * eshell/em-unix.el: Move su and sudo to...
24193         * eshell/em-tramp.el: ...Eshell tramp module.
24195 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
24197         * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
24198         Change return value to be a sexp.  Delay `get-buffer' to after
24199         restoring the desktop (bug#13951).
24201 2013-03-26  Leo Liu  <sdl.web@gmail.com>
24203         * register.el: Move semantic tag handling back to
24204         cedet/semantic/senator.el.  (Bug#14052)
24206 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
24208         * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
24209         into the prompt either (bug#13963).
24211 2013-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
24213         * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
24214         part of "(error-foo)".
24216 2013-03-24  Juri Linkov  <juri@jurta.org>
24218         * replace.el (list-matching-lines-prefix-face): New defcustom.
24219         (occur-1): Pass `list-matching-lines-prefix-face' to the function
24220         `occur-engine' if `face-differs-from-default-p' returns t.
24221         (occur-engine): Add `,' inside backquote construct to evaluate
24222         `prefix-face'.  Propertize the prefix with the `prefix-face' face.
24223         Pass `prefix-face' to the functions `occur-context-lines' and
24224         `occur-engine-add-prefix'.
24225         (occur-engine-add-prefix, occur-context-lines): Add optional arg
24226         `prefix-face' and propertize the prefix with `prefix-face'.
24227         (Bug#14017)
24229 2013-03-24  Leo Liu  <sdl.web@gmail.com>
24231         * nxml/rng-valid.el (rng-validate-while-idle)
24232         (rng-validate-quick-while-idle): Guard against deleted buffer.
24233         (Bug#13999)
24235         * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
24236         is the last entry in kill-buffer-hook.
24238         * files.el (kill-buffer-hook): Doc fix.
24240 2013-03-23  Dmitry Gutov  <dgutov@yandex.ru>
24242         * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
24243         Make it safe-local.
24245         * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
24247 2013-03-23  Leo Liu  <sdl.web@gmail.com>
24249         * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
24250         Remove.
24252         * nxml/rng-valid.el (rng-validate-mode)
24253         (rng-after-change-function, rng-do-some-validation):
24254         * nxml/rng-maint.el (rng-validate-buffer):
24255         * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
24256         * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
24257         * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
24258         (nxml-extend-after-change-region): Use with-silent-modifications.
24260         * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
24261         timer-idle-list.
24263         * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
24264         (rng-next-error-1, rng-previous-error-1): Do not let-bind
24265         timer-idle-list.  (Bug#13999)
24267 2013-03-23  Juri Linkov  <juri@jurta.org>
24269         * info.el (info-index-match): New face.
24270         (Info-index, Info-apropos-matches): Add a nested subgroup to the
24271         main pattern and add text properties with the new face to matches
24272         in index entries relative to the beginning of the index entry.
24273         (Bug#14015)
24275 2013-03-21  Eric Ludlam  <zappo@gnu.org>
24277         * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
24278         Inhibit read only while inserting objects.
24280 2013-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
24282         * progmodes/cfengine.el: Update docs to mention
24283         `cfengine-auto-mode'.  Use \_> and \_< instead of \> and \< for
24284         symbol motion.  Remove "_" from the word syntax.
24286 2013-03-21  Teodor Zlatanov  <tzz@lifelogs.com>
24288         * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
24289         syntax for both `cfengine2-mode' and `cfengine3-mode'.
24291 2013-03-20  Juri Linkov  <juri@jurta.org>
24293         * info.el (Info-next-reference-or-link)
24294         (Info-prev-reference-or-link): New functions.
24295         (Info-next-reference, Info-prev-reference): Use them.
24296         (Info-try-follow-nearest-node): Handle footnote navigation.
24297         (Info-fontify-node): Fontify footnotes.  (Bug#13989)
24299 2013-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
24301         * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
24302         * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
24304 2013-03-20  Paul Eggert  <eggert@cs.ucla.edu>
24306         Suppress unnecessary non-ASCII chatter during build process.
24307         * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
24308         (batch-skkdic-convert): Suppress most of the chatter.
24309         It's not needed so much now that machines are faster,
24310         and its non-ASCII component was confusing; see Dmitry Gutov in
24311         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
24313 2013-03-20  Leo Liu  <sdl.web@gmail.com>
24315         * ido.el (ido-chop): Fix bug#10994.
24317 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
24319         * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
24320         Remove vars.
24321         (whitespace-color-on, whitespace-color-off):
24322         Use `font-lock-fontify-buffer' (Bug#13817).
24324 2013-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
24326         * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
24327         remapping in mode-line.
24328         (mouse-on-link-p): Also check [mode-line follow-link] bindings.
24330 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
24332         * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
24333         value for `whitespace-line' face (Bug#13875).
24334         (whitespace-font-lock-keywords): Change description.
24335         (whitespace-color-on): Don't save `font-lock-keywords' value, save
24336         the constructed keywords instead.
24337         (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
24339 2013-03-19  Leo Liu  <sdl.web@gmail.com>
24341         * progmodes/compile.el (compilation-display-error): New command.
24342         (compilation-mode-map, compilation-minor-mode-map): Bind it to
24343         C-o.  (Bug#13992)
24345 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
24347         * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
24349 2013-03-18  Jan Djärv  <jan.h.d@swipnet.se>
24351         * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
24353 2013-03-18  Michael Albinus  <michael.albinus@gmx.de>
24355         * net/tramp-compat.el (tramp-compat-user-error): New defun.
24357         * net/tramp-adb.el (tramp-adb-handle-shell-command):
24358         * net/tramp-gvfs.el (top):
24359         * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
24360         (tramp-handle-shell-command): Use it.
24361         (tramp-dissect-file-name): Raise an error when hostname is a
24362         method name, and neither method nor user is specified.
24364         * net/trampver.el: Update release number.
24366 2013-03-18  Leo Liu  <sdl.web@gmail.com>
24368         Make sure eldoc can be turned off properly.
24369         * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
24370         eldoc-mode.
24371         (eldoc-display-message-p): Revert last change.
24372         (eldoc-display-message-no-interference-p)
24373         (eldoc-print-current-symbol-info): Tweak.
24375 2013-03-18  Tassilo Horn  <tsdh@gnu.org>
24377         * doc-view.el (doc-view-new-window-function): Check the new window
24378         overlay's display property instead the char property of the
24379         buffer's first char.  Use `with-selected-window' instead of
24380         `save-window-excursion' with `select-window'.
24381         (doc-view-document->bitmap): Check the current doc-view overlay's
24382         display property instead the char property of the buffer's first char.
24384 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
24386         Automate the build of ja-dic.el (Bug#13984).
24387         * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
24388         from the input, rather than assume that it's been done for us by the
24389         SKK script unannotate.awk.  Switch ja-dic.el to UTF-8.  Don't put
24390         the current date into a ja-dic.el comment, as that complicates
24391         regression testing.
24393 2013-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
24395         * whitespace.el: Fix double evaluation.
24396         (whitespace-space, whitespace-hspace, whitespace-tab)
24397         (whitespace-newline, whitespace-trailing, whitespace-line)
24398         (whitespace-space-before-tab, whitespace-indentation)
24399         (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
24400         obsolete defvars.
24401         (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
24402         (whitespace-color-on): Use a single font-lock-add-keywords call.
24403         Fix double-evaluation of face variables.
24405 2013-03-17  Michael Albinus  <michael.albinus@gmx.de>
24407         * net/tramp-adb.el (tramp-adb-parse-device-names):
24408         Use `start-process' instead of `call-process'.  Otherwise, the
24409         function might be blocked under MS Windows.  (Bug#13299)
24411 2013-03-17  Leo Liu  <sdl.web@gmail.com>
24413         Extend eldoc to display info in the mode-line.  (Bug#13978)
24414         * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
24415         (eldoc-mode-line-string): New variable.
24416         (eldoc-minibuffer-message): New function.
24417         (eldoc-message-function): New variable.
24418         (eldoc-message): Use it.
24419         (eldoc-display-message-p)
24420         (eldoc-display-message-no-interference-p):
24421         Support eldoc-post-insert-mode.
24423         * simple.el (eval-expression-minibuffer-setup-hook): New hook.
24424         (eval-expression): Run it.
24426 2013-03-17  Roland Winkler  <winkler@gnu.org>
24428         * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
24429         strings in the list of return values.
24431 2013-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
24433         * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
24434         radix before checking for HMS forms.
24436 2013-03-16  Leo Liu  <sdl.web@gmail.com>
24438         * progmodes/scheme.el: Add indentation and font-locking for λ.
24439         (Bug#13975)
24441 2013-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
24443         * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
24444         token before point (bug#13942).
24446 2013-03-16  Leo Liu  <sdl.web@gmail.com>
24448         * thingatpt.el (end-of-sexp): Fix bug#13952.  Use syntax-after.
24450 2013-03-16  Eli Zaretskii  <eliz@gnu.org>
24452         * startup.el (command-line-normalize-file-name): Fix handling of
24453         backslashes in DOS and Windows file names.  Reported by Xue Fuqiao
24454         <xfq.free@gmail.com> in
24455         http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
24457 2013-03-15  Michael Albinus  <michael.albinus@gmx.de>
24459         Sync with Tramp 2.2.7.
24461         * net/trampver.el: Update release number.
24463 2013-03-14  Tassilo Horn  <tsdh@gnu.org>
24465         * doc-view.el: Fix bug#13887.
24466         (doc-view-insert-image): Don't modify overlay associated to
24467         non-live windows, and implement horizontal centering of image in
24468         case it's smaller than the window.
24469         (doc-view-new-window-function): Force redisplay of new windows on
24470         doc-view buffers.
24472 2013-03-13  Karl Fogel  <kfogel@red-bean.com>
24474         * saveplace.el (save-place-alist-to-file): Don't sort
24475         `save-place-alist', just pretty-print it (bug#13882).
24477 2013-03-13  Michael Albinus  <michael.albinus@gmx.de>
24479         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
24480         Check whether `default-file-name-coding-system' is bound.
24481         It isn't in XEmacs.
24483 2013-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
24485         * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
24486         backquotes for `obsolete' (bug#13929).
24488         * international/mule.el (find-auto-coding): Include file name in
24489         obsolescence warning (bug#13922).
24491 2013-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
24493         * progmodes/cfengine.el (cfengine-parameters-indent): New variable
24494         for CFEngine 3-specific indentation.
24495         (cfengine3-indent-line): Use it.  Fix up category regex.
24496         (cfengine3-font-lock-keywords): Add bundle and namespace characters.
24498 2013-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
24500         * type-break.el (type-break-file-name):
24501         * textmodes/remember.el (remember-data-file):
24502         * strokes.el (strokes-file):
24503         * shadowfile.el (shadow-initialize):
24504         * saveplace.el (save-place-file):
24505         * ps-bdf.el (bdf-cache-file):
24506         * progmodes/idlwave.el (idlwave-config-directory):
24507         * net/quickurl.el (quickurl-url-file):
24508         * international/kkc.el (kkc-init-file-name):
24509         * ido.el (ido-save-directory-list-file):
24510         * emulation/viper.el (viper-custom-file-name):
24511         * emulation/vip.el (vip-startup-file):
24512         * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
24513         * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
24515 2013-03-12  Paul Eggert  <eggert@cs.ucla.edu>
24517         Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
24518         * language/thai-word.el: Switch to UTF-8.
24520 See ChangeLog.16 for earlier changes.
24522 ;; Local Variables:
24523 ;; coding: utf-8
24524 ;; End:
24526   Copyright (C) 2011-2015 Free Software Foundation, Inc.
24528   This file is part of GNU Emacs.
24530   GNU Emacs is free software: you can redistribute it and/or modify
24531   it under the terms of the GNU General Public License as published by
24532   the Free Software Foundation, either version 3 of the License, or
24533   (at your option) any later version.
24535   GNU Emacs is distributed in the hope that it will be useful,
24536   but WITHOUT ANY WARRANTY; without even the implied warranty of
24537   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24538   GNU General Public License for more details.
24540   You should have received a copy of the GNU General Public License
24541   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.