* progmodes/python.el (python-shell-send-string):
[emacs.git] / lisp / ChangeLog
blobaee691b82c57d898c7d36acc532b0ff35e9f1e12
1 2014-02-04  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3         * progmodes/python.el (python-shell-send-string):
4         (python-shell-send-string-no-output): Fix docstring (Bug#16547).
6 2014-02-04  Anders Lindgren  <andlind@gmail.com>
8         * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
9         the names (bug#16620).
11 2014-02-03  Martin Rudalics  <rudalics@gmx.at>
13         * faces.el (window-divider): New default value.  Rewrite doc-string.
14         (window-divider-first-pixel, window-divider-last-pixel): New faces.
16 2014-02-03  Dmitry Gutov  <dgutov@yandex.ru>
18         * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
19         `protected' and `public' can also be called without arguments.
21 2014-02-03  Glenn Morris  <rgm@gnu.org>
23         * register.el (window-configuration-to-register)
24         (frame-configuration-to-register): Unadvertise unused argument.
25         * frameset.el (frameset-to-register): Remove unused argument.
27         * kmacro.el (kmacro-to-register):
28         * register.el (increment-register):
29         * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
30         (calc-append-to-register, calc-prepend-to-register):
31         * play/gametree.el (gametree-layout-to-register)
32         (gametree-apply-register-layout):
33         * textmodes/picture.el (picture-clear-rectangle-to-register)
34         (picture-yank-rectangle-from-register):
35         * vc/emerge.el (emerge-combine-versions-register):
36         Use register-read-with-preview to read registers.
38 2014-02-03  João Távora  <joaotavora@gmail.com>
40         * elec-pair.el (electric-pair-backward-delete-char): Don't error
41         when at beginning of (possibly narrowed) buffer.
43 2014-02-02  Daniel Colascione  <dancol@dancol.org>
45         * help-at-pt.el (help-at-pt-string,help-at-pt-maybe-display):
46         Also try to display local help from just before point.
48 2014-02-02  Alan Mackenzie  <bug-cc-mode@gnu.org>
50         c-parse-state.  Don't "append-lower-brace-pair" in certain
51         circumstances.  Also fix an obscure bug where "\\s!" shouldn't be
52         recognised as a comment.
54         * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
55         as well as normal comment starter.
56         (c-parse-state-get-strategy): Extra return possibility
57         'back-and-forward.
58         (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
59         return value list to indicate replacement of a brace-pair cons
60         with its car.
61         (c-parse-state-1): With 'back-and-forward, only call
62         c-append-lower-brace-pair-to state-cache when cons-separated.
64 2014-02-02  Jan Djärv  <jan.h.d@swipnet.se>
66         * term/ns-win.el (ns-suspend-error): New function.
67         (ns-initialize-window-system): Add ns-suspend-error to
68         suspend-hook (Bug#16612).
70 2014-02-02  Daniel Colascione  <dancol@dancol.org>
72         * progmodes/cc-defs.el (c-find-assignment-for-mode): Make loading cc-mode silent.
74 2014-02-02  Daniel Colascione  <dancol@dancol.org>
76         * comint.el (comint-prompt-read-only): Change doc to suggest remap keybinding.
78 2014-02-02  Glenn Morris  <rgm@gnu.org>
80         * register.el (register-read-with-preview, point-to-register)
81         (window-configuration-to-register, frame-configuration-to-register)
82         (jump-to-register, number-to-register, view-register, insert-register)
83         (copy-to-register, append-to-register, prepend-to-register)
84         (copy-rectangle-to-register): Doc fixes.
86 2014-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
88         * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
89         * emacs-lisp/find-func.el (find-function-C-source): Idem.
90         * emacs-lisp/nadvice.el (advice--cd*r): New function.
91         * help-fns.el (describe-function-1): Use it.
93 2014-02-02  Glenn Morris  <rgm@gnu.org>
95         * register.el (register-preview-default): New function,
96         split from register-preview.
97         (register-preview-function): Rename from register-preview-functions,
98         make it not a hook.
99         (register-preview): Use register-preview-function.
100         (register-read-with-preview): Error on non-character event.  (Bug#16595)
102 2014-02-01  Dmitry Gutov  <dgutov@yandex.ru>
104         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
105         `:' before binary operators (bug#16609).  Don't check for `:'
106         before `[' and `(', or their syntax status.  A percent literal
107         can't end with either.
108         (ruby-font-lock-keywords): For built-ins that require arguments,
109         check that they're followed by something that looks like argument
110         (bug#16610).
112 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
114         * subr.el (butlast): Document what an omitted N means (bug#13437).
115         (nbutlast): Ditto.
117 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
119         * net/shr.el (shr-generic): Make into a defsubst to make the stack
120         depth shallower (bug#16587).
121         (shr-tag-svg): Respect `shr-inhibit-images'.
122         (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
124 2014-01-31  Dmitry Gutov  <dgutov@yandex.ru>
126         * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
127         (ruby-smie-grammar): Make "." right-associative.  Make its priority
128         lower than the ternary and all binary operators.
129         (ruby-smie-rules): Indent "(" relative to the first non-"."
130         parent, or the first "." parent at indentation.
131         Use `ruby-align-chained-calls' for indentation of "." tokens.
132         (Bug#16593)
134 2014-01-31  Juri Linkov  <juri@jurta.org>
136         * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
137         from `make-hash-table'.
139         * textmodes/ispell.el (ispell-init-process): Change message format
140         to be consistent with other messages.
142 2014-01-31  Glenn Morris  <rgm@gnu.org>
144         * delsel.el (delete-selection-mode): Doc fix.
146         * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
147         (trace-function-background): Doc fixes.
149         * ido.el (ido-use-virtual-buffers): Doc fix.
150         Reset :version, since the default value has not changed.
152         * register.el (register-preview-delay, register-read-with-preview):
153         Doc fixes.
155         * mail/reporter.el (reporter-dump-variable): In case of void-variable,
156         do not mess with mail-buffer position (fixes 2009-11-03 change).
157         * progmodes/cc-mode.el (c-submit-bug-report):
158         Check auto-fill-mode is bound.  (Bug#16592)
160 2014-01-31  Darren Hoo  <darren.hoo@gmail.com>
162         * startup.el (fancy-splash-image-file): New function,
163         split from fancy-splash-head.
164         (fancy-splash-head, use-fancy-splash-screens-p): Use it,
165         so that we are both using the same image.  (Bug#16574)
167 2014-01-30  Glenn Morris  <rgm@gnu.org>
169         * simple.el (eval-expression): Doc fix.
171         * hexl.el (hexl-mode-hook):
172         * ielm.el (ielm-mode-hook):
173         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
174         (lisp-interaction-mode-hook):
175         * progmodes/cfengine.e (cfengine3-documentation-function):
176         Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
178 2014-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
180         * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
181         is a symbol (bug#16584).
183 2014-01-30  Glenn Morris  <rgm@gnu.org>
185         * help.el (help-for-help-internal): Add "P" to text.
187 2014-01-29  Glenn Morris  <rgm@gnu.org>
189         * simple.el (just-one-space, cycle-spacing): Doc fixes.
191 2014-01-28  Martin Rudalics  <rudalics@gmx.at>
193         * window.el (fit-frame-to-buffer): Fix calculations for margins and
194         height constraints.
196 2014-01-28  Luke Lee  <luke.yx.lee@gmail.com>
198         * progmodes/hideif.el: Extend to full CPP expression syntax.
199         (hif-token-alist): Add missing tokens.
200         (hif-token-regexp): Add support for float/octal/hex immediates.
201         (hif-string-literal-regexp): New const.
202         (hif-tokenize): Recognize strings and float/octal/hex immediates.
203         (hif-exprlist): New function.
204         (hif-parse-if-exp): Use it.
205         (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
206         (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
207         (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
208         (hif-logxor, hif-comma): New functions.
210 2014-01-28  Glenn Morris  <rgm@gnu.org>
212         * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
214         * indent.el (tab-stop-list): Doc fix.  Add :version.
216         * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
217         (cvs-append-to-ignore): Add compatibility alias.
219 2014-01-27  Glenn Morris  <rgm@gnu.org>
221         * dired.el (dired-hide-details-mode): Don't autoload it,
222         since it cannot be used outside Dired buffers anyway.
224         * emulation/cua-base.el (cua-mode): Doc fix.
226         * dired.el (dired-hide-details-hide-symlink-targets)
227         (dired-hide-details-hide-information-lines)
228         (dired-hide-details-mode): Doc fixes.
230         * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
231         * strokes.el (strokes-file): Doc fix.  Bump :version.
232         (strokes-help): Doc fix.
233         * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
234         * emulation/viper.el (viper): Doc fix for custom group.
235         (top-level): Remove oh-so-no-longer-relevant text about vip.
236         * obsolete/otodo-mode.el (todo-prefix): Doc fix.
238         * ido.el (ido-save-directory-list-file):
239         * saveplace.el (save-place-file):
240         * calendar/timeclock.el (timeclock-file):
241         * net/quickurl.el (quickurl-url-file):
242         * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
243         * progmodes/idlwave.el (idlwave-config-directory):
244         * textmodes/remember.el (remember-data-file):
245         Bump :version.
247 2014-01-26  Glenn Morris  <rgm@gnu.org>
249         * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
250         Doc fix.  Make obsolete.
251         (opascal-mode): No longer mention opascal-tab-always-indents in doc.
253         * sort.el (delete-duplicate-lines): Doc fix.
255 2014-01-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
257         * progmodes/ada-mode.el (ada):
258         * woman.el (woman): Link to info manual and Commentary section.
260         * progmodes/flymake.el (flymake):
261         * nxml/nxml-mode.el (nxml):
262         * net/eww.el (eww):
263         * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
264         * htmlfontify.el (htmlfontify):
265         * ses.el (ses):
266         * epa.el (epa):
267         * ido.el (ido): Link to info manual.
269 2014-01-25  Leo Liu  <sdl.web@gmail.com>
271         * progmodes/flymake.el (flymake-make-overlay): No rear advance.
273 2014-01-25  Adam Sjøgren  <asjo@koldfront.dk>
275         * net/shr.el (shr-tag-img): Prefer the title over the alt text
276         (bug#16537).
278 2014-01-24  Juanma Barranquero  <lekktu@gmail.com>
280         * net/eww.el (eww-download-callback):
281         Fix reference to eww-download-directory.
283         * emacs-lisp/bytecomp.el (byte-compile-file):
284         Remove unused local variable `file-name'.
286 2014-01-24  Glenn Morris  <rgm@gnu.org>
288         * woman.el (woman-default-faces, woman-monochrome-faces):
289         Fix obsolescence specification.
291         * subr.el (with-demoted-errors): Doc fix.
293 2014-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
295         * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
296         (cl--macroexp-fboundp): New function.
297         (cl--make-type-test): Use it.
299 2014-01-23  Glenn Morris  <rgm@gnu.org>
301         * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
302         * simple.el (eval-expression): Doc fixes.
304 2014-01-22  Glenn Morris  <rgm@gnu.org>
306         * emacs-lisp/authors.el (authors-fixed-entries): Addition.
308 2014-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
310         * emacs-lisp/package.el: Write files silently.
311         (package-autoload-ensure-default-file, package--write-file-no-coding)
312         (package-generate-description-file, package--download-one-archive)
313         (package-install-from-archive): Tell `write-region' to stay quiet.
314         (package-menu-mode, package-menu--print-info): Omit the Archive column
315         if there's only one archive.
316         (package-all-keywords, package--has-keyword-p): Remove dead code.
318 2014-01-22  Glenn Morris  <rgm@gnu.org>
320         * version.el (emacs-bzr-version-bzr): Fix typo.
322         * version.el (emacs-repository-get-version):
323         Check either .bzr or .git, but not both.
324         Make the git case actually use the DIR argument, and return nil
325         rather than the empty string.
326         Avoid error if .git exists but the git executable is not found.
328 2014-01-22  Martin Rudalics  <rudalics@gmx.at>
330         Fixes in window size functions around Bug#16430 and Bug#16470.
331         * window.el (window-total-size, window-size): New argument ROUND.
332         (window--min-delta-1, window-min-delta, window--max-delta-1):
333         Be more conservative when calculating the numbers of lines or
334         columns a window can shrink (Bug#16430).
335         (fit-window-to-buffer): Simplify code.
336         * term.el (term-window-width): Call window-body-width again.
338 2014-01-22  Glenn Morris  <rgm@gnu.org>
340         * image.el (image-format-suffixes): Doc fix.
342         * international/quail.el (quail-define-package): Doc fix.
344         * emacs-lisp/authors.el (authors-valid-file-names):
345         (authors-renamed-files-alist): Additions.
347         * vc/vc-git.el (vc-git-print-log): Remove --follow;
348         reverts 2014-01-09 change.  (Bug#16422)
350         * calc/calc-embed.el (thing-at-point-looking-at):
351         * emacs-lisp/map-ynp.el (x-popup-dialog):
352         * obsolete/lmenu.el (x-popup-dialog):
353         * emacs-lisp/package.el (url-recreate-url):
354         * mail/mailclient.el (clipboard-kill-ring-save):
355         * subr.el (x-popup-dialog): Update declaration.
356         * mail/rmail.el (rmail-mime-message-p):
357         * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
359 2014-01-21  Daniel Colascione  <dancol@dancol.org>
361         * progmodes/sh-script.el (sh--inside-noncommand-expression):
362         Correctly detect when we're inside an arithmetic expansion form
363         containing nested parenthesis.
364         (sh--maybe-here-document): Use `sh--inside-noncommand-expression`
365         to detect cases where we shouldn't expand "<<" to a heredoc
366         skeleton.
368 2014-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
370         * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
371         (eldoc--message-command-p): New function.
372         (eldoc-display-message-p): Use it.
373         (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
374         message is not automatically erased for us.
375         (eldoc-print-current-symbol-info): Erase previous message, if any.
377 2014-01-21  Tassilo Horn  <tsdh@gnu.org>
379         * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
380         specify it's an interactive function.
382         * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
383         Fix regex used for scanning for citation keys which failed for
384         citations with optional arguments.
386 2014-01-21  Leo Liu  <sdl.web@gmail.com>
388         * simple.el (read--expression): Don't enable eldoc-mode.
390 2014-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
392         * simple.el (move-beginning-of-line): Make sure we don't move forward
393         (bug#16497).
395 2014-01-20  Juri Linkov  <juri@jurta.org>
397         * saveplace.el (toggle-save-place, save-place-to-alist)
398         (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
399         'dired-mode) before checking for dired-directory.  (Bug#16477)
401 2014-01-20  Juri Linkov  <juri@jurta.org>
403         * indent.el (indent-line-to): Use backward-to-indentation
404         instead of back-to-indentation.  (Bug#16461)
406 2014-01-20  Paul Eggert  <eggert@cs.ucla.edu>
408         Revert some of the CANNOT_DUMP fix (Bug#16494).
409         Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
410         but fixing this can wait until after the next release.
411         * Makefile.in (emacs): Keep EMACSLOADPATH empty.
413 2014-01-19  Michael Albinus  <michael.albinus@gmx.de>
415         * eshell/esh-mode.el (eshell-password-prompt-regexp):
416         Use `password-word-equivalents'.
417         (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
418         to t.  (Bug#5664, Bug#13124)
420 2014-01-19  Alan Mackenzie  <acm@muc.de>
422         Bind open-paren-in-column-0-is-defun-start to nil at some entry
423         points.
424         * progmodes/cc-engine.el (c-invalidate-state-cache-1)
425         (c-parse-state-1, c-guess-basic-syntax): Bind it here.
426         * progmodes/cc-mode.el (c-before-change, c-after-change)
427         (c-font-lock-fontify-region): Bind it here.
429 2014-01-19  Martin Rudalics  <rudalics@gmx.at>
431         * term.el (term-window-width): Call window-text-width instead of
432         window-width (Bug#16470).
434 2014-01-18  Paul Eggert  <eggert@cs.ucla.edu>
436         * simple.el (password-word-equivalents): Remove duplicates.
437         Sort, to make this easier next time.
438         Downcase.  Omit ": " after "jelszó".
440 2014-01-18  Jan Djärv  <jan.h.d@swipnet.se>
442         * term/common-win.el (saved-region-selection): Defvar it.
443         (x-select-text): Set saved-region-selection (Bug#16382).
445 2014-01-18  Glenn Morris  <rgm@gnu.org>
447         * emacs-lisp/authors.el (authors-aliases)
448         (authors-renamed-files-alist): Add some entries.
450 2014-01-17  Michael Albinus  <michael.albinus@gmx.de>
452         * net/tramp.el (tramp-password-prompt-regexp):
453         Use `password-word-equivalents' if available.
454         (tramp-action-password, tramp-process-one-action)
455         (tramp-read-passwd): Let-bind `case-fold-search' to t.  (Bug#13124)
457 2014-01-17  Chong Yidong  <cyd@gnu.org>
459         * simple.el (password-word-equivalents): New defcustom.
460         * comint.el (comint-password-prompt-regexp): Use it.  Bump version
461         to 24.4.
462         (comint-watch-for-password-prompt): Let-bind `case-fold-search'
463         to t.  (Bug#13124)
465 2014-01-17  Dmitry Gutov  <dgutov@yandex.ru>
467         * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
468         (ruby-align-to-stmt-keywords): Change the default value.
469         Use `ruby-alignable-keywords' to generate the possible customization
470         choices.
471         (ruby-smie-rules): Instead of using a hardcoded list of alignable
472         keywords, check against the value of `ruby-alignable-keywords'
473         (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
475 2014-01-17  Glenn Morris  <rgm@gnu.org>
477         * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
479         Make M-x authors return zero *Authors Errors* from current logs.
480         * emacs-lisp/authors.el (authors-obsolete-files-regexps):
481         (authors-ignored-files): Add some entries, remove others.
482         (authors-ambiguous-files, authors-valid-file-names):
483         Add some entries.
484         (authors-renamed-files-alist): Add, remove, and adjust entries.
485         (authors-renamed-files-regexps): Add some entries.
486         Remove some very broad ones.  Make some entries `lax'.
487         (authors-lax-changelogs): New constant.
488         (authors-disambiguate-file-name): Treat top-level specially.
489         (authors-lax-changelog-p): New function.
490         (authors-canonical-file-name): Check file as written against
491         authors-valid-file-names.  Do not special-case etc/.
492         Handle `lax' logs and authors-renamed-files-regexps elements.
494 2014-01-16  Dmitry Gutov  <dgutov@yandex.ru>
496         * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
497         `assoc'.  Use `nth' instead of `cdr'.  Make private.  Update all
498         callers.
500 2014-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
502         * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
503         Assume we're already in the proper buffer.
504         Inspired by Anders Lindgren <andlind@gmail.com>.
505         (follow-post-command-hook): Call it from the right buffer.
506         (follow-comint-scroll-to-bottom): Adjust call.
507         (follow-all-followers): Use get-buffer-window-list.
509 2014-01-15  Daniel Colascione  <dancol@dancol.org>
511         * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
512         `buffer-file-name' in interactive-form so that we don't leave
513         pathless file names in `file-name-history'.
515 2014-01-15  Juri Linkov  <juri@jurta.org>
517         * indent.el (indent-rigidly): Set deactivate-mark to nil
518         in transient indentation mode.  (Bug#16438)
520 2014-01-15  Dmitry Gutov  <dgutov@yandex.ru>
522         * emacs-lisp/package.el (package-desc-keywords): New function
523         (Bug#16222).
524         (describe-package-1, package-all-keywords)
525         (package--has-keyword-p): Use it.
527 2014-01-14  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
529         * simple.el (define-alternatives): When creating the
530         COMMAND-alternatives variable, assign COMMAND as its definition
531         name so that `describe-variable' can relocate it.
533 2014-01-14  Matthew Leach  <matthew@mattleach.net>  (tiny change)
535         * font-lock.el (font-lock-keywords): Fix typo in docstring
536         (bug#16307).
538 2014-01-14  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
540         * ispell.el (ispell-region): Reset `in-comment' for new line
541         instead of wrongly reset `add-coment' (bug#13577).
543 2014-01-14  Daiki Ueno  <ueno@gnu.org>
545         * epa-file.el (epa-file-write-region): Encode the region according
546         to `buffer-file-format'.  Problem reported at:
547         <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
549 2014-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
551         * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
552         so it applies in the right buffer (bug#16410).
554 2014-01-13  Daniel Colascione  <dancol@dancol.org>
556         * textmodes/rst.el (rst-define-key): Provide deprecated
557         keybindings through named functions instead of anonymous ones so
558         that "??" doesn't appear in describe-mode output.
560 2014-01-13  Bastien Guerry  <bzg@gnu.org>
562         * simple.el (define-alternatives): Call the selected command
563         interactively.  When setting `COMMAND--implementation' for the
564         first time, tell the user how to chose another implementation.
565         Enhance the docstring.
567 2014-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
569         * vc/log-edit.el: Fix highlighting of summary when it's the first line.
570         (log-edit--match-first-line): New function.
571         (log-edit-font-lock-keywords): Use it.
572         (log-edit-mode): Make jit-lock-defer-multiline work.
574 2014-01-13  Bastien Guerry  <bzg@gnu.org>
576         * rect.el (rectangle-mark-mode): When the region is not active,
577         display a message saying that the mark as been set and that
578         rectangle mode is in use.
579         (rectangle--highlight-for-redisplay): Only put an overlay with a
580         visible vertical bar when (display-graphic-p) is non-nil.
581         This partially fixes Bug#16403.
583 2014-01-13  Juri Linkov  <juri@jurta.org>
585         * info.el (Info-find-file): Go to DIR before displaying the error
586         about a nonexistent file if no previous Info file is visited.
587         Use `user-error' instead of `error' for "Info file %s does not exist".
588         (Info-find-node-2): In case of a nonexistent node in unwind forms
589         go to the Top node if there is no previous node to revert to.
590         (Bug#16405)
592 2014-01-13  Martin Rudalics  <rudalics@gmx.at>
594         fit-frame/window-to-buffer code fixes including one for Bug#14096.
595         * window.el (fit-frame-to-buffer): Fix doc-string.
596         Respect window-min-height/-width.  Fit pixelwise when
597         frame-resize-pixelwise is non-nil.  Adjust right/bottom edge
598         when avoiding that frame goes partially off-screen.
599         (fit-window-to-buffer): Respect window-min-height/-width
600         (Bug#14096).
602 2014-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
604         * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
605         after an empty line.
607 2014-01-12  Stefan Monnier  <monnier@iro.umontreal.ca>
609         * net/shr.el (shr-render-region): Autoload.
611 2014-01-12  Xue Fuqiao  <xfq.free@gmail.com>
613         * net/eww.el (eww-download-directory): Rename from
614         `eww-download-path' (Bug#16419).
616 2014-01-12  Leo Liu  <sdl.web@gmail.com>
618         * dired-x.el (dired-mode-map): Fix last change.
620         * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
622 2014-01-12  Paul Eggert  <eggert@cs.ucla.edu>
624         Spelling fixes.
625         * emacs-lisp/generic.el (generic--normalize-comments):
626         Rename from generic--normalise-comments.  All uses changed.
627         * play/bubbles.el (bubbles--neighborhood-score):
628         (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
629         (bubbles--neighborhood-available)
630         (bubbles--update-neighborhood-score):
631         Rename from names with 'neighbourhood'.  All uses changed.
633 2014-01-12  Leo Liu  <sdl.web@gmail.com>
635         Re-implement the feature of showing eldoc info after editing.
636         * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
637         (eldoc-edit-message-commands): New function.
638         (eldoc-print-after-edit): New variable.
639         (eldoc-pre-command-refresh-echo-area): Emit message only by
640         eldoc-message-commands.
641         (eldoc-mode): Restrict eldoc-message-commands to editing commands
642         if eldoc-print-after-edit is set.  (Bug#16346)
643         * simple.el (read--expression): Enable eldoc-mode.
644         * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
646 2014-01-11  Dani Moncayo  <dmoncayo@gmail.com>
647             Eric S. Raymond  <esr@thyrsus.com>
649         * version.el (emacs-repository-get-version): Enhance so the
650         function works correctly in either a Bazaar or Git repo.
652 2014-01-11  Eric S. Raymond  <esr@thyrsus.com>
654         * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
655         Goes with removal of the joke manpages from /etc.
657 2014-01-10  K. Handa  <handa@gnu.org>
659         * mail/rmail.el (rmail-get-coding-system):
660         Check rmail-get-coding-function before "funcall"ing it.
662 2014-01-10  Glenn Morris  <rgm@gnu.org>
664         * emacs-lisp/authors.el (authors-fixed-entries):
665         Update for files that no longer exist.
667 2014-01-10  Eric S. Raymond  <esr@thyrsus.com>
669         * version.el (emacs-bzr-get-version): Restore compatibilty with
670         24.3 (Tested).
672 2014-01-10  Bozhidar Batsov  <bozhidar@batsov.com>
674         * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
675         and Podfile.
677 2014-01-10  Eli Zaretskii  <eliz@gnu.org>
679         * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
681 2014-01-10  Chong Yidong  <cyd@gnu.org>
683         * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
685 2014-01-10  Anders Lindgren  <andlind@gmail.com>
687         * follow.el (follow-cache-command-list): Include right-char and
688         left-char.
690 2014-01-10  Paul Eggert  <eggert@cs.ucla.edu>
692         Spelling fixes.
693         * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
694         * woman.el (woman-mark-horizontal-position):
695         Rename from woman-mark-horizonal-position.  Use changed.
697 2014-01-10  Glenn Morris  <rgm@gnu.org>
699         * info.el (info-initialize): If running uninstalled, ensure our
700         own info files are always found first, even if INFOPATH is set.
702         * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
704 2014-01-09  David Engster  <deng@randomsample.de>
706         * emacs-lisp/eieio-custom.el:
707         * emacs-lisp/eieio-opt.el: Set generated autoload file to
708         'eieio.el'.  This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
709         * emacs-lisp/eieio.el: Regenerate autoloads.
711 2014-01-09  Eric S. Raymond  <esr@thyrsus.com>
713         * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
714         following renames.  (Bug#8756)
716 2014-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
718         * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
719         (bug#16382).
720         (activate-mark): Add `no-tmm' argument.
721         (set-mark, push-mark-command): Use it instead of running
722         activate-mark-hook by hand.
724 2014-01-08  Eric S. Raymond  <esr@thyrsus.com>
726         In preparation for the move to git, sanitize out some
727         Bazaar-specific names.
729         * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
731         * version.el (emacs-bzr-version): Name changed to
732         emacs-repository-version.  Obsolete-variable alias made.
733         * loadup.el: Follow through on this name change.
734         * mail/emacsbug.el (report-emacs-bug): Factor out any
735         assumption about the version control system in use.
737 2014-01-08  David Engster  <deng@randomsample.de>
739         * help-fns.el (help-fns-describe-function-functions):
740         New variable to call functions for augmenting help buffers.
741         (describe-function-1): Remove explicit calls to
742         `help-fns--compiler-macro', `help-fns--parent-mode' and
743         `help-fns--obsolete'.  Put them in above new variable instead, and
744         call them through `run-hook-with-args'.
745         * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
746         `eieio-describe-class'.  Not meant for interactive use anymore,
747         but to augment existing help buffers.  Remove optional second
748         argument.  Create proper button for file location.
749         Rewrite function to use `insert' instead of `princ' and `prin1' where
750         possible.
751         (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
752         (eieio-method-def, eieio-class-def): Move further up.
753         (describe-method, describe-generic, eieio-describe-method):
754         Remove aliases.
755         (eieio-help-constructor, eieio-help-generic): Rename from
756         `eieio-describe-constructor' and `eieio-describe-generic', resp.
757         Rewrite to use `insert' in the current buffer and use proper help
758         buttons.
759         (eieio-help-find-method-definition)
760         (eieio-help-find-class-definition): Also accept symbols as
761         arguments.
762         (eieio-help-mode-augmentation-maybee): Remove.
763         (eieio-describe-class-sb): Use `describe-function'.
764         * emacs-lisp/eieio.el (help-fns-describe-function-functions):
765         Add `eieio-help-generic' and `eieio-help-constructor'.
767 2014-01-08  Paul Eggert  <eggert@cs.ucla.edu>
769         Spelling fixes.
770         * language/china-util.el (hz-ascii-designation):
771         Rename from hz-ascii-designnation.
772         (hz-ascii-designation): Rename from hz-ascii-designnation.
773         All uses changed.
775 2014-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
777         * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
778         package-alist.
780 2014-01-08  Bastien Guerry  <bzg@gnu.org>
782         * emacs-lisp/package.el (package-delete):
783         Correctly delete the package from package-alist.
785 2014-01-08  Daiki Ueno  <ueno@gnu.org>
787         * emacs-lisp/package.el (url-recreate-url): Declare.
788         (url-http-target-url): Declare.
789         (package-handle-response): Include requested URL in the error message.
790         (package--check-signature): Don't re-signal errors from
791         package--with-work-buffer.  Suggested by Stefan Monnier.
793 2014-01-07  Bastien Guerry  <bzg@gnu.org>
795         * minibuffer.el (completion--try-word-completion): When both a
796         hyphen and a space are possible candidates for the character
797         following a word, display both candidates.  (Bug#15980)
799 2014-01-07  Martin Rudalics  <rudalics@gmx.at>
801         * window.el (balance-windows-2): While rounding don't give a
802         window more than the remainder.  Bug#16351, Bug#16383.
804 2014-01-07  Glenn Morris  <rgm@gnu.org>
806         * menu-bar.el (menu-bar-help-extra-packages): Remove.
807         (menu-bar-help-menu): Use view-external-packages instead.
809 2014-01-07  Bastien Guerry  <bzg@gnu.org>
811         * emacs-lisp/package.el (package-delete): Also delete the package
812         name from `package-alist', not its description only.
814 2014-01-07  Glenn Morris  <rgm@gnu.org>
816         * help.el (view-external-packages):
817         * menu-bar.el (menu-bar-help-extra-packages):
818         Visit efaq.info rather than etc/MORE.STUFF.
820 2014-01-07  Juri Linkov  <juri@jurta.org>
822         * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
823         isearch-exit and isearch-delete-char resp.  (Bug#16342, bug#16035)
825         * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
826         that shadows RET.  (Bug#16342)
828 2014-01-07  Chong Yidong  <cyd@gnu.org>
830         * isearch.el (isearch-yank-char, isearch-yank-word)
831         (isearch-yank-line): Doc fix.
833 2014-01-06  Stefan Monnier  <monnier@iro.umontreal.ca>
835         * abbrev.el (define-abbrev): Beware new meaning of fboundp.
836         * emacs-lisp/elint.el (elint-find-builtins):
837         * emacs-lisp/eldoc.el (eldoc-symbol-function):
838         * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
839         (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
840         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
841         * apropos.el (apropos-safe-documentation):
842         * subr.el (symbol-file): Remove redundant fboundp.
843         * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
845 2014-01-06  Bastien Guerry  <bzg@gnu.org>
847         * hl-line.el (global-hl-line-overlay): Make a local variable.
848         (global-hl-line-overlays): New variable to store all overlays.
849         (global-hl-line-mode): Don't delete overlays from the current
850         buffer when `global-hl-line-sticky-flag' is non-nil.
851         (global-hl-line-highlight): Add new overlays to
852         `global-hl-line-overlays'.
853         (global-hl-line-unhighlight-all): New function to delete all
854         overlays when turning off `global-hl-line-mode'.
855         This fixes Bug#16183.
857 2014-01-06  Stefan Monnier  <monnier@iro.umontreal.ca>
859         * subr.el (set-transient-map): Fix nested case and docstring.
861 2014-01-06  Tassilo Horn  <tsdh@gnu.org>
863         * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
864         `Texinfo' entry.
866 2014-01-06  Daniel Colascione  <dancol@dancol.org>
868         Fix defun navigation in vc log view.
870         * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
871         like `beginning-of-defun'.
872         (log-view-end-of-defun,log-view-end-of-defun-1): Rename old
873         log-view-end-of-defun to log-view-end-of-defun-1.  Replace
874         log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
875         (log-view-extract-comment): Call `log-view-current-entry' directly
876         instead of relying on broken `log-view-beginning-of-defun' behavior.
878 2014-01-06  Paul Eggert  <eggert@cs.ucla.edu>
880         Spelling fixes.
881         * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
882         * emacs-lisp/debug.el (cancel-debug-on-entry):
883         * epg.el (epg-error-to-string):
884         * files.el (recover-file):
885         * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
886         * mail/emacsbug.el (report-emacs-bug-hook):
887         * mail/sendmail.el (mail-recover):
888         * ses.el (ses-yank-resize):
889         * term/ns-win.el (ns-print-buffer):
890         Spelling fixes in diagnostics, mostly for "canceled" with one L.
891         * epg.el (epg-key-capability-alist): Rename from misspelled version.
892         All uses changed.
893         * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
895 2014-01-06  Leo Liu  <sdl.web@gmail.com>
897         * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
898         to avoid shadowing global key.  (Bug#16354)
900 2014-01-06  Daniel Colascione  <dancol@dancol.org>
902         * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
903         rst-mode.
905 2014-01-05  Martin Rudalics  <rudalics@gmx.at>
907         * window.el (balance-windows): Add mising t to fix Bug#16351.
909 2014-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
911         * net/shr.el (shr-descend): Don't bug out if the anchor is empty
912         (bug#16285).
913         (shr-insert): If we have a word that's longer than `shr-width',
914         break after it anyway.  Otherwise we'll do no breaking once we get
915         such a long word.
917 2014-01-05  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
919         * net/eww.el (eww): Support single/double quote for search.
920         * net/eww.el (eww-list-histories,eww-history-browse): Fixup.
921         (eww-history-quit): Delete and use quit-window.
922         (eww-history-kill): Delete, because it doesn't work well and
923         not necessary.
924         (eww-history-mode-map): Delete some keys and add easy-menu.
926 2014-01-05  Paul Eggert  <eggert@cs.ucla.edu>
928         Fix misspelling of 'chinese' in rx (Bug#16237).
929         * emacs-lisp/rx.el (rx-categories): Correct spelling of
930         chinese-two-byte.
932         Change subword regexps back to vars (Bug#16296).
933         * progmodes/subword.el (subword-forward-regexp)
934         (subword-backward-regexp): Change these back to variables.
936 2014-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
938         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
939         syntax-begin-function (bug#16247).
941 2014-01-03  Chong Yidong  <cyd@gnu.org>
943         * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
944         (advice--docstring): Delete variable.
945         (advice--make-1): Leave the docstring empty.
946         (advice-add): Use function-documentation for advised docstring.
948         * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
949         Ignore function-documentation property when getting documentation.
950         (ad-activate-advised-definition): Use function-documentation
951         generate the docstring.
952         (ad-make-advised-definition): Don't call
953         ad-make-advised-definition-docstring.
954         (ad-make-advised-definition-docstring, ad-advised-definition-p):
955         Delete functions.
957         * progmodes/sql.el (sql-help): Use function-documentation instead
958         of dynamic-docstring-function property.  No need to autoload now.
959         (sql--help-docstring): New variable.
960         (sql--make-help-docstring): Use it.
962 2014-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
964         * ielm.el (ielm-tab): Retarget.
965         (ielm-map): Use ielm-tab for tab.
966         (ielm-complete-filename): Use comint-filename-completion.
967         (ielm-complete-symbol): Remove.
968         (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
969         remove ielm-tab from completion-at-point-functions (bug#16224).
971         * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
972         Beware signals raised by predicates (bug#16201).
974 2014-01-02  Richard Stallman  <rms@gnu.org>
976         * dired-aux.el (dired-do-print): Handle printer-name.
978         * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
979         * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
980         (rmail-epa-decrypt): Turn off mime processing.
982         * mail/rmail.el (rmail-make-in-reply-to-field):
983         Add parens in message-id.
985         * mail/rmail.el (rmail-get-coding-function): Variable.
986         (rmail-get-coding-system): Use it.
988 2013-12-31  Eli Zaretskii  <eliz@gnu.org>
990         * international/mule-conf.el: Unify the charset indian-is13194.
991         (indian-is13194): Specify unify-map.
993 2013-12-31  Leo Liu  <sdl.web@gmail.com>
995         * subr.el (set-temporary-overlay-map): Obsolete alias.  (Bug#16305)
997 2013-12-30  Daniel Colascione  <dancol@dancol.org>
999         * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
1000         of printing a useless when we resume from sleep.
1002         * progmodes/sh-script.el
1003         (sh-smie-sh-forward-token,sh-smie-rc-forward-token): Fix infloop
1004         in indentation code.  (Bug#16233)
1006 2013-12-28  João Távora  <joaotavora@gmail.com>
1008         * elec-pair.el (electric-pair-post-self-insert-function):
1009         Don't open extra newlines at beginning of buffer.  (Bug#16272)
1011 2013-12-28  Eli Zaretskii  <eliz@gnu.org>
1013         * frame.el (window-system-for-display): Don't allow to create a
1014         GUI frame from a -nw session on MS-Windows.  (Bug#14739)
1016 2013-12-28  Glenn Morris  <rgm@gnu.org>
1018         * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
1019         Update callers.
1021         * apropos.el (apropos-match-face):
1022         * calculator.el (calculator-displayer):
1023         * dabbrev.el (dabbrev-search-these-buffers-only):
1024         * face-remap.el (buffer-face-mode-face):
1025         * simple.el (yank-handled-properties):
1026         * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
1027         * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
1028         * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
1029         (hashcash-double-spend-database):
1030         * progmodes/ruby-mode.el (ruby-deep-indent-paren)
1031         (ruby-deep-indent-paren-style):
1032         * textmodes/flyspell.el (flyspell-auto-correct-binding):
1033         * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
1034         (rst-toc-insert-number-separator, rst-toc-insert-max-level):
1035         * vc/pcvs-defs.el (cvs-minor-mode-prefix):
1036         Specify custom types.
1038         * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
1039         * bookmark.el (bookmark-bmenu-use-header-line):
1040         * doc-view.el (doc-view-scale-internally):
1041         * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
1042         * register.el (register-preview-delay):
1043         * net/shr.el (shr-bullet):
1044         * progmodes/cfengine.el (cfengine-cf-promises)
1045         (cfengine-parameters-indent):
1046         * progmodes/octave.el (inferior-octave-error-regexp-alist):
1047         * textmodes/reftex-vars.el (reftex-label-regexps):
1048         * vc/log-edit.el (log-edit-setup-add-author): Add version.
1050         * net/tls.el (tls-certtool-program): Fix default value.
1052         * desktop.el (desktop-restore-in-current-display):
1053         * newcomment.el (comment-empty-lines):
1054         * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
1055         (idlwave-pad-keyword):
1056         * progmodes/tcl.el (tcl-tab-always-indent):
1057         * textmodes/reftex-vars.el (reftex-index-default-tag):
1058         * elec-pair.el (electric-pair-skip-whitespace):
1059         * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
1061         * emacs-lisp/authors.el (authors-ignored-files)
1062         (authors-valid-file-names, authors-renamed-files-alist): Additions.
1064 2013-12-27  Jarek Czekalski  <jarekczek@poczta.onet.pl>
1066         * shell.el (shell-dynamic-complete-command): Doc fix.
1067         (shell--command-completion-data): Shell completion now matches
1068         executable filenames from the current buffer's directory, on
1069         systems in which this behavior is the default (windows-nt, ms-dos).
1071 2013-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
1073         * net/shr.el (shr-insert): Don't infloop if the width is zero.
1075 2013-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
1077         * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
1078         (bug#16251).
1080         * electric.el: Move all electric-pair-* to elec-pair.el.
1081         * elec-pair.el: New file, split from electric.el.
1083 2013-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
1085         * net/shr.el (shr-find-fill-point): Don't try to fill if the
1086         indentation level is larger than the width, because that will
1087         infloop.
1088         (shr-insert): Fill repeatedly long texts, so that Japanese is
1089         formatted correctly (bug#16263).
1090         (shr-find-fill-point): Off by one error in comparison with the
1091         indentation.
1093 2013-12-26  João Távora  <joaotavora@gmail.com>
1095         * electric.el (electric-pair-mode): More flexible engine for skip-
1096         and inhibit predicates, new options for pairing-related functionality.
1097         (electric-pair-preserve-balance): Pair/skip parentheses and quotes
1098         if that keeps or improves their balance in buffers.
1099         (electric-pair-delete-adjacent-pairs): Delete the pair when
1100         backspacing over adjacent matched delimiters.
1101         (electric-pair-open-extra-newline): Open extra newline when
1102         inserting newlines between adjacent matched delimiters.
1103         (electric--sort-post-self-insertion-hook):
1104         Sort post-self-insert-hook according to priority values when
1105         minor-modes are activated.
1106         * simple.el (newline-and-indent): Call newline with interactive
1107         set to t.
1108         (blink-paren-post-self-insert-function): Set priority to 100.
1109         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
1110         Use electric-pair-text-pairs to pair backtick-and-quote in strings and
1111         comments.  Locally set electric-pair-skip-whitespace to 'chomp and
1112         electric-pair-open-newline-between-pairs to nil.
1114 2013-12-26  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1116         * progmodes/python.el: Use lexical-binding.
1117         (python-nav-beginning-of-defun): Stop searching ASAP.
1119 2013-12-25  Xue Fuqiao  <xfq.free@gmail.com>
1121         * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
1122         Fix interactive spec.  Doc fix.  (Bug#15754)
1124 2013-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
1126         * emacs-lisp/byte-run.el (eval-when-compile):
1127         * progmodes/cc-defs.el (cc-eval-when-compile):
1128         Fix edebug spec (bug#16184).
1130 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
1132         * net/shr.el (shr-visit-file): Remove debugging function.
1133         (shr-insert): Don't infloop if we can't find a good place to break
1134         the line (bug#16256).
1136 2013-12-25  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1138         * progmodes/python.el:
1139         (python-nav--lisp-forward-sexp): New function.
1140         (python-nav--lisp-forward-sexp-safe): Use it.  Rename from
1141         python-nav-lisp-forward-sexp-safe.
1142         (python-nav--forward-sexp): New argument SAFE allows switching
1143         forward sexp movement behavior for parens.
1144         (python-nav-forward-sexp): Throw errors on unterminated parens
1145         (Bug#16191).
1146         (python-nav-backward-sexp, python-nav-forward-sexp-safe)
1147         (python-nav-backward-sexp-safe): New functions.
1148         (python-shell-buffer-substring):
1149         Use `python-nav-forward-sexp-safe'.
1151 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
1153         * net/shr.el (shr-find-fill-point): Don't break lines before a
1154         quotation mark.
1155         (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
1156         (shr-find-fill-point): Remove the special checks for the quotation
1157         mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
1159 2013-12-25  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
1161         * net/eww.el (eww-form-textarea): Use a different face for
1162         textareas than text input since they have different keymaps
1163         (bug#16142).
1165 2013-12-24  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1167         * progmodes/python.el (python-nav-beginning-of-statement):
1168         Speed up (Bug#15295).
1170 2013-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
1172         * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
1173         the window configuration.
1175 2013-12-24  Eli Zaretskii  <eliz@gnu.org>
1177         * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
1178         we run on MS-Windows or MS-DOS.
1180 2013-12-24  Martin Rudalics  <rudalics@gmx.at>
1182         * window.el (balance-windows-area): Call window-size instead of
1183         window-height and window-width.  Bug#16241.
1185 2013-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
1187         * net/eww.el (eww-bookmark-quit): Remove.
1188         (eww-bookmark-browse): Restore the window configuration when you
1189         choose a bookmark (bug#16144).
1191 2013-12-24  Daniel Colascione  <dancol@dancol.org>
1193         * icomplete.el: Remove redundant :group arguments to `defcustom'
1194         throughout.
1195         (icomplete-show-matches-on-no-input): New customizable variable.
1196         (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
1197         we have something to show.
1198         (icomplete-exhibit): Compute completions even if we have no user input.
1200 2013-12-23  Daniel Colascione  <dancol@dancol.org>
1202         * icomplete.el: Move `provide' to end of file.
1204 2013-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
1206         * net/gnutls.el (gnutls-verify-error): Add version tag.
1208 2013-12-23  Chong Yidong  <cyd@gnu.org>
1210         * subr.el (set-transient-map): Rename from
1211         set-temporary-overlay-map.  Doc fix.
1213         * face-remap.el (text-scale-adjust):
1214         * indent.el (indent-rigidly):
1215         * kmacro.el (kmacro-call-macro):
1216         * minibuffer.el (minibuffer-force-complete):
1217         * repeat.el (repeat):
1218         * simple.el (universal-argument--mode):
1219         * calendar/todo-mode.el (todo-insert-item--next-param):
1220         * progmodes/f90.el (f90-abbrev-start): Callers changed.
1222         * indent.el (indent-rigidly): Use substitute-command-keys.
1224 2013-12-22  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
1226         * net/eww.el (eww-tag-select): Add text-property to jump to next
1227         select field.
1228         (eww): Add non-supported ftp error.
1230 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
1232         * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
1233         comments.  Handle electric indent after typing `?' and `!'.
1235 2013-12-22  Chong Yidong  <cyd@gnu.org>
1237         * faces.el (face-spec-recalc): If the theme specs are not
1238         applicable to a frame, fall back on the defface spec.
1239         This prevents themes from obliterating faces on low-color terminals.
1241 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
1243         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
1244         after `{'.  We need it after block openers, and it doesn't seem
1245         to hurt after hash openers.
1247 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
1249         * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
1250         extracted from `ruby-smie-rules'.
1251         (ruby--electric-indent-chars): New variable.
1252         (ruby--electric-indent-p): New function.
1253         (ruby-mode): Use `electric-indent-functions' instead of
1254         `electric-indent-chars'.
1256 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
1258         * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
1259         docstring.
1260         (ruby-smie-rules): Indent plus one level after `=>'.
1262 2013-12-21  Richard Stallman  <rms@gnu.org>
1264         * simple.el (newline): Doc fix.
1266 2013-12-21  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
1268         * net/eww.el (eww-list-histories, eww-list-histories)
1269         (eww-history-browse, eww-history-quit, eww-history-kill)
1270         (eww-history-mode-map, eww-history-mode): New command and
1271         functions to list browser histories.
1272         (eww-form-text): Support text form with disabled
1273         and readonly attributes.
1274         (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
1276 2013-12-21  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
1278         * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
1279         (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
1280         (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
1281         (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
1282         Use `user-error'.
1283         (eww-bookmark-mode-map): Add menu.
1284         (eww-render, eww-mode): Use `setq-local'.
1285         (eww-tool-bar-map): New variable.
1286         (eww-mode): Set `tool-bar-map'.
1287         (eww-view-source): Check for `html-mode' with `fboundp'.
1289 2013-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1291         * net/shr.el (shr--extract-best-source): Don't bug out on audio
1292         elements with text inside.  Also remove debugging.
1294 2013-12-21  Jan Djärv  <jan.h.d@swipnet.se>
1296         * cus-start.el (all): Add ns-use-srgb-colorspace.
1298 2013-12-21  Chong Yidong  <cyd@gnu.org>
1300         * custom.el (custom-theme-recalc-face): Do nothing if the face is
1301         undefined.  Thus, theme settings for undefined faces do not take
1302         effect until the faces are defined with defface, the same as with
1303         theme variables.
1305         * faces.el (face-spec-set): Use face-spec-recalc in all cases.
1306         (face-spec-reset-face): Don't assign extra properties in temacs.
1307         (face-spec-recalc): Apply X resources too.
1309 2013-12-21  Chong Yidong  <cyd@gnu.org>
1311         * faces.el (face-spec-set):
1312         * cus-face.el (custom-theme-set-faces, custom-set-faces):
1313         * custom.el (defface): Doc fixes (Bug#16203).
1315         * indent.el (indent-rigidly-map): Add docstring, and move commands
1316         into named functions.
1317         (indent-rigidly-left, indent-rigidly-right)
1318         (indent-rigidly-left-to-tab-stop)
1319         (indent-rigidly-right-to-tab-stop): New functions.  Decide on
1320         indentation direction based on bidi direction, and accumulate
1321         sequential commands in a single undo boundary.
1322         (indent-rigidly--pop-undo): New utility function.
1324 2013-12-20  Juanma Barranquero  <lekktu@gmail.com>
1326         * faces.el (read-face-name): Require crm.el when using crm-separator.
1328 2013-12-20  Daniel Colascione  <dancol@dancol.org>
1330         * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
1331         so that we don't reflow comments into the shebang line.
1333 2013-12-20  Juri Linkov  <juri@jurta.org>
1335         * saveplace.el (save-place-to-alist): Add `dired-filename' as
1336         a position when `dired-directory' is non-nil.  Check integer
1337         positions with `integerp'.
1338         (toggle-save-place, save-places-to-alist): Add check for
1339         `dired-directory'.
1340         (save-place-find-file-hook): Check integer positions with
1341         `integerp'.
1342         (save-place-dired-hook): Use `dired-goto-file' when
1343         `dired-filename' is found in the assoc list.  Check integer
1344         positions with `integerp'.
1345         (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
1347         * dired.el (dired-initial-position-hook): Rename back from
1348         `dired-initial-point-hook'.
1349         (dired-initial-position): Rename `dired-initial-point-hook' to
1350         `dired-initial-position-hook'.
1351         (dired-file-name-at-point): Doc fix.  (Bug#15329)
1353 2013-12-20  Juri Linkov  <juri@jurta.org>
1355         * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
1356         (read-regexp-suggestions): New function.
1357         (read-regexp): Use `read-regexp-defaults-function' to get default values.
1358         Use `read-regexp-suggestions'.  Add non-empty default to history
1359         for empty input.
1360         (occur-read-regexp-defaults-function): Remove function.
1361         (occur-read-primary-args): Use `regexp-history-last' instead of
1362         `occur-read-regexp-defaults-function'.
1364         * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
1365         (hi-lock-line-face-buffer, hi-lock-face-buffer)
1366         (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
1367         `hi-lock-read-regexp-defaults-function'.  Doc fix.
1368         (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
1369         with `find-tag-default-as-symbol-regexp'.  Doc fix.
1370         (hi-lock-read-regexp-defaults): Remove function.
1371         (hi-lock-regexp-okay): Add check for null.
1373         * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
1374         the arg DEFAULTS.  Move formatting of the prompt to `read-regexp'.
1376         * subr.el (find-tag-default-as-symbol-regexp): New function.
1377         (find-tag-default-as-regexp): Move symbol regexp formatting to
1378         `find-tag-default-as-symbol-regexp'.
1380 2013-12-20  E Sabof  <esabof@gmail.com>  (tiny change)
1382         * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
1383         (Bug#14179)
1385 2013-12-20  Stephen Berman  <stephen.berman@gmx.net>
1387         * calendar/todo-mode.el: New implementation of item insertion
1388         commands and key bindings.
1389         (todo-key-prompt): New face.
1390         (todo-insert-item): New command.
1391         (todo-insert-item--parameters): New defconst, replacing defvar
1392         todo-insertion-commands-args-genlist.
1393         (todo-insert-item--param-key-alist): New defconst, replacing
1394         defvar todo-insertion-commands-arg-key-list.
1395         (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
1396         (todo-insert-item--argsleft, todo-insert-item--apply-args)
1397         (todo-insert-item--next-param): New functions.
1398         (todo-insert-item--args, todo-insert-item--argleft)
1399         (todo-insert-item--argsleft, todo-insert-item--newargsleft):
1400         New variables.
1401         (todo-key-bindings-t): Change binding of "i" from
1402         todo-insertion-map to todo-insert-item.
1403         (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
1404         (todo-insertion-command-name, todo-insertion-commands-names)
1405         (todo-define-insertion-command, todo-insertion-commands)
1406         (todo-insertion-key-bindings, todo-insertion-map): Remove.
1408 2013-12-20  Stephen Berman  <stephen.berman@gmx.net>
1410         * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
1411         (todo-toggle-item-highlighting): Use eval-and-compile instead of
1412         eval-when-compile.
1413         (todo-move-category): Allow choosing a non-existing todo file to
1414         move the category to, and create that file.
1415         (todo-default-priority): New user option.
1416         (todo-set-item-priority): Use it.
1417         (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
1418         (desktop-restore-file-buffer): Declare.
1419         (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
1420         (todo-modes-set-2): Locally set desktop-save-buffer to
1421         todo-desktop-save-buffer.
1422         (todo-mode, todo-archive-mode, todo-filtered-items-mode)
1423         (auto-mode-alist): Add autoload cookie.
1425 2013-12-20  Bozhidar Batsov  <bozhidar@batsov.com>
1427         * emacs-lisp/subr-x.el: Renamed from helpers.el.
1428         helpers.el was a poor choice of name.
1429         (string-remove-prefix): New function.
1430         (string-remove-suffix): New function.
1432 2013-12-20  Martin Rudalics  <rudalics@gmx.at>
1434         Fix assignment for new window total sizes.
1435         * window.el (window--pixel-to-size): Remove function.
1436         (window--pixel-to-total-1, window--pixel-to-total):
1437         Fix calculation of new total sizes.
1439 2013-12-20  Vitalie Spinu  <spinuvit@gmail.com>
1441         * comint.el (comint-output-filter): Fix rear-nonsticky property
1442         placement (Bug#16010).
1444 2013-12-20  Chong Yidong  <cyd@gnu.org>
1446         * faces.el (read-color): Minor fix for completion function.
1448 2013-12-20  Dmitry Gutov  <dgutov@yandex.ru>
1450         * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
1451         New option.  (Bug#16182)
1452         (ruby-smie--indent-to-stmt-p): Use it.
1453         (ruby-smie-rules): Revert the logic in the handling of `when'.
1454         Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
1455         (ruby-deep-arglist, ruby-deep-indent-paren)
1456         (ruby-deep-indent-paren-style): Update docstrings to note that the
1457         vars don't have any effect with SMIE.
1459 2013-12-20  Jay Belanger  <jay.p.belanger@gmail.com>
1461         * calc/calc.el (calc-enter, calc-pop): Use the variable
1462         `calc-context-sensitive-enter'.
1464 2013-12-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1466         * net/shr.el (shr-insert): Protect against infloops in degenerate
1467         tables.
1469 2013-12-20  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
1471         * progmodes/octave.el (octave): Add link to manual and octave
1472         homepage.
1473         (octave-mode-menu): Link to octave-mode manual.
1475 2013-12-20  Leo Liu  <sdl.web@gmail.com>
1477         * skeleton.el (skeleton-pair-insert-maybe): Disable newline
1478         insertion using skeleton-end-newline.  (Bug#16138)
1480 2013-12-20  Juri Linkov  <juri@jurta.org>
1482         * replace.el (occur-engine): Use `add-face-text-property'
1483         to add the face property to matches and titles.  (Bug#14645)
1485         * hi-lock.el (hi-green): Use lighter color "light green" closer to
1486         the palette of other hi-lock colors.
1487         (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
1489 2013-12-19  Juri Linkov  <juri@jurta.org>
1491         * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
1492         Put :advertised-binding on `M-s c', `M-s r', `M-s e'.  (Bug#16035)
1493         (minibuffer-history-symbol): Move variable declaration closer to
1494         its usage.
1496         * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
1497         (Bug#14785)
1499 2013-12-19  Juri Linkov  <juri@jurta.org>
1501         * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
1502         New function.
1503         (log-edit-hook): Add it to :options.  (Bug#16170)
1505 2013-12-19  Juri Linkov  <juri@jurta.org>
1507         * simple.el (eval-expression-print-format): Don't check for
1508         command names and the last command.  Always display additional
1509         formats of the integer result in the echo area, and insert them
1510         to the current buffer only with a zero prefix arg.
1511         Display character when char-displayable-p is non-nil.
1512         (eval-expression): With a zero prefix arg, set `print-length' and
1513         `print-level' to nil, and insert the integer values from
1514         `eval-expression-print-format' at the end.  Doc fix.  (Bug#12985)
1516         * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
1517         `eval-last-sexp-arg-internal'.  Doc fix.
1518         (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
1519         `eval-last-sexp-print-value'.  Doc fix.
1520         (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
1521         Set `print-length' and `print-level' to nil when arg is zero.
1522         (eval-last-sexp): Doc fix.
1523         (eval-defun-2): Print the integer values from
1524         `eval-expression-print-format' at the end.
1526         * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
1527         values from `eval-expression-print-format' at the end.
1529         * ielm.el (ielm-eval-input): Print the integer
1530         values from `eval-expression-print-format' at the end.
1532 2013-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
1534         * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
1535         2013-12-11T19:01:44Z!tzz@lifelogs.com.
1537 2013-12-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1539         * hl-line.el (hl-line-make-overlay): New fun.  Set priority (bug#16192).
1540         (hl-line-highlight, global-hl-line-highlight): Use it.
1541         (hl-line-overlay): Use defvar-local.
1543 2013-12-19  Jan Djärv  <jan.h.d@swipnet.se>
1545         * term/ns-win.el: Require dnd.
1546         (global-map): Remove drag items.
1547         (ns-insert-text, ns-set-foreground-at-mouse)
1548         (ns-set-background-at-mouse):
1549         Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
1550         (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
1551         New functions.
1553 2013-12-19  Glenn Morris  <rgm@gnu.org>
1555         * emacs-lisp/ert.el (ert-select-tests):
1556         Fix string/symbol mixup.  (Bug#16121)
1558 2013-12-19  Dmitry Gutov  <dgutov@yandex.ru>
1560         * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
1561         keywords to their parent.
1563 2013-12-19  Dmitry Gutov  <dgutov@yandex.ru>
1565         * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
1566         first arg to be a string (fixed dead code), or an operator symbol.
1567         (ruby-smie--forward-token): Tokenize ` @ ' before strings and
1568         operator symbols.
1569         (ruby-smie-rules): Remove parent token check in the `.' clause, it
1570         did nothing.  Don't respond to `(:after ".")', it will be called
1571         with :before anyway.  Remove the ` @ ' rule, it didn't seem to
1572         change anything.  Only return indentation for binary operators
1573         when they are hanging.  De-dent opening paren when its parent is
1574         `.', otherwise it looks bad when the dot is not at bol or eol
1575         (bug#16182).
1577 2013-12-19  Juri Linkov  <juri@jurta.org>
1579         * replace.el (query-replace-read-args): Split a non-negative arg
1580         and a negative arg into separate elements.
1581         (query-replace, query-replace-regexp, replace-string)
1582         (replace-regexp): Add arg `backward'.  Doc fix.
1583         (replace-match-maybe-edit): When new arg `backward' is non-nil,
1584         move point to the beginning of the match.
1585         (replace-search, replace-highlight): Use new arg `backward'
1586         to set the value of `isearch-forward'.
1587         (perform-replace): Add arg `backward' and use it to perform
1588         replacement backward.  (Bug#14979)
1590         * isearch.el (isearch-query-replace): Use a negative prefix arg
1591         to call `perform-replace' with a non-nil arg `backward'.
1593 2013-12-18  Juri Linkov  <juri@jurta.org>
1595         * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
1596         to the default list.  Move `log-edit-show-files' to the end.
1597         Add more available functions to options.
1598         (log-edit): Move default specific settings to
1599         `log-edit-insert-message-template'.  Don't move point.
1600         (log-edit-insert-message-template): New function.
1601         (log-edit-insert-changelog): Add `save-excursion' and don't move point.
1602         (Bug#16170)
1604 2013-12-18  Juri Linkov  <juri@jurta.org>
1606         * help-mode.el (help-mode-map): Bind "l" to help-go-back,
1607         and "r" to help-go-forward for compatibity with Info.  (Bug#16178)
1609 2013-12-18  Leo Liu  <sdl.web@gmail.com>
1611         * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
1612         (Bug#16186)
1614 2013-12-18  Eli Zaretskii  <eliz@gnu.org>
1616         * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
1617         formats for displaying file sizes when the -s switch is given.
1618         Instead, compute a separate format for displaying the size in
1619         blocks, which is displayed in addition to the "regular" size.
1620         When -h is given in addition to -s, produce size in blocks in
1621         human-readable form as well.  (Bug#16179)
1623 2013-12-18  Tassilo Horn  <tsdh@gnu.org>
1625         * textmodes/reftex-vars.el (reftex-label-alist-builtin):
1626         Reference tables with ~\ref{...} instead of only \ref{...}.
1628 2013-12-18  Chong Yidong  <cyd@gnu.org>
1630         * cus-edit.el (custom-magic-alist): Fix "themed" description
1631         (Bug#14348).
1633         * custom.el (custom-push-theme): If custom--inhibit-theme-enable
1634         is non-nil, do not create a new entry in the symbol's theme-value
1635         or theme-face property; update theme-settings only (Bug#14664).
1636         (custom-available-themes): Doc fix.
1638         * cus-theme.el (custom-new-theme-mode-map): Add bindings
1639         (Bug#15674).
1641         * replace.el (occur-engine): Avoid infloop (Bug#7593).
1643 2013-12-18  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
1645         * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
1646         (Bug#13914).
1648 2013-12-18  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
1650         * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
1652 2013-12-18  Glenn Morris  <rgm@gnu.org>
1654         * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
1655         * cus-start.el (load-prefer-newer): New option.
1657 2013-12-18  Le Wang  <l26wang@gmail.com>
1659         * comint.el (comint-previous-matching-input-from-input):
1660         Retain point (Bug#13404).
1662 2013-12-18  Chong Yidong  <cyd@gnu.org>
1664         * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
1666 2013-12-18  Glenn Morris  <rgm@gnu.org>
1668         * mail/emacsbug.el (report-emacs-bug):
1669         Only mention enable-multibyte-characters if non-standard.
1671 2013-12-17  Juri Linkov  <juri@jurta.org>
1673         * arc-mode.el (archive-extract-by-file): Check if directory exists
1674         before deletion to not show irrelevant errors if it doesn't exist.
1676 2013-12-17  Juri Linkov  <juri@jurta.org>
1678         * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
1679         (Bug#14751)
1681         * net/eww.el (browse-web): Add alias to `eww'.
1682         (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
1683         Bind "S-SPC" to `scroll-down-command'.  (Bug#16178)
1685         * net/browse-url.el (browse-url-browser-function): Move `eww'
1686         closer to similar functions.
1688         * startup.el (fancy-startup-screen, fancy-about-screen):
1689         Set browse-url-browser-function to eww-browse-url locally.
1690         (Bug#14751)
1692 2013-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1694         * window.el (window--pixel-to-total): Remove unused `mini' var.
1695         (maximize-window, minimize-window): Remove unused `pixelwise' arg.
1696         (split-window): Remove unused `new' var.
1697         (window--display-buffer): Remove unused `frame' and `delta' vars.
1698         (fit-window-to-buffer): Remove unused vars `frame', `display-height',
1699         and display-width'.
1701 2013-12-17  Martin Rudalics  <rudalics@gmx.at>
1703         * dired.el (dired-mark-pop-up):
1704         * register.el (register-preview): Don't bind
1705         split-height-threshold here since it's now done in
1706         display-buffer-below-selected.
1708 2013-12-17  oblique  <psyberbits@gmail.com>  (tiny change)
1710         * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
1711         xterm-rgb-convert-to-16bit.
1712         (rxvt-register-default-colors): Standardize with
1713         xterm-register-default-colors (Bug#14078).
1715 2013-12-17  Dima Kogan  <dima@secretsauce.net>  (tiny change)
1717         * simple.el (kill-region): Pass mark first, then point, so that
1718         kill-append works right (Bug#12819).
1719         (copy-region-as-kill, kill-ring-save): Likewise.
1721 2013-12-17  Leo Liu  <sdl.web@gmail.com>
1723         * net/rcirc.el (rcirc-add-face):
1724         * eshell/em-prompt.el (eshell-emit-prompt):
1725         * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
1726         (Bug#16167)
1728 2013-12-17  Chong Yidong  <cyd@gnu.org>
1730         * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
1731         Suggested by Xue Fuqiao.
1733 2013-12-17  Dmitry Gutov  <dgutov@yandex.ru>
1735         * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
1737 2013-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
1739         * net/shr.el (shr-insert-document): Remove unused var
1740         `shr-preliminary-table-render'.
1741         (shr-rescale-image): Remove unused arg `force'.
1742         (shr-put-image): Update calls accordingly.
1743         (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
1745 2013-12-17  Dmitry Gutov  <dgutov@yandex.ru>
1747         * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
1748         (smie-indent-close): Call `smie-indent--rule-1' with METHOD
1749         :close-all, to see which indentation method to use (Bug#16116).
1750         (smie-rules-function): Document the method :close-all.
1752 2013-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1754         * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
1756         * net/eww.el (eww-display-html): If we can't find the anchor we're
1757         looking for, then go to point-min.
1759 2013-12-16  Paul Eggert  <eggert@cs.ucla.edu>
1761         Fix problems with CANNOT_DUMP and EMACSLOADPATH.
1762         * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
1763         * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
1764         Expand dir too, in case it's relative.
1766 2013-12-16  Juri Linkov  <juri@jurta.org>
1768         * desktop.el (desktop-auto-save-timeout): Change default to
1769         `auto-save-timeout'.  Doc fix.
1770         (desktop-save): Skip the timestamp in desktop-saved-frameset
1771         when checking for auto-save changes.
1772         (desktop-auto-save): Don't call desktop-auto-save-set-timer since
1773         `desktop-auto-save' is called repeatedly by the idle timer.
1774         (desktop-auto-save-set-timer): Replace `run-with-timer' with
1775         `run-with-idle-timer' and a non-nil arg REPEAT.  Doc fix.
1776         (Bug#15331)
1778 2013-12-16  Juri Linkov  <juri@jurta.org>
1780         * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
1781         (Bug#16035)
1782         (isearch-pre-command-hook): Check `this-command' for symbolp.
1784 2013-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1786         * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
1788 2013-12-16  Teodor Zlatanov  <tzz@lifelogs.com>
1790         * progmodes/cfengine.el (cfengine3--current-word): Remove.
1791         (cfengine3--current-function): Bring in the current-function
1792         functionality from `cfengine3--current-word'.
1793         (cfengine3-completion-function): Bring in the
1794         bounds-of-current-word functionality from
1795         `cfengine3--current-word'.
1797 2013-12-16  Martin Rudalics  <rudalics@gmx.at>
1799         * window.el (display-buffer-below-selected):
1800         Bind split-height-threshold to 0 as suggested by Juri Linkov.
1802 2013-12-16  Leo Liu  <sdl.web@gmail.com>
1804         * progmodes/compile.el (compile-goto-error): Do not push-mark.
1805         Remove NOMSG arg and all uses changed.
1807 2013-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
1809         * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
1810         (cua--deactivate-rectangle): Don't deactivate the mark.
1811         (cua-set-rectangle-mark): Don't set mark-active since
1812         cua--activate-rectangle already does it for us.
1813         (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
1814         non-rectangular region.
1816         * emulation/cua-base.el (cua-repeat-replace-region):
1817         Use with-current-buffer.
1819         * net/gnutls.el: Use cl-lib.
1820         (gnutls-negotiate): `mapcan' -> cl-mapcan.
1822 2013-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
1824         * emacs-lisp/package.el (package-built-in-p): Support both
1825         built-in and the package.el converted package descriptions.
1826         (package-show-package-list): Allow keywords.
1827         (package-keyword-button-action): Use it instead of
1828         `finder-list-matches'.
1829         (package-menu-filter-interactive): Interactive filtering (by
1830         keyword) function.
1831         (package-menu--generate): Support keywords and change keymappings
1832         and headers when they are given.
1833         (package--has-keyword-p): Helper function.
1834         (package-menu--refresh): Use it.
1835         (package--mapc): Helper function.
1836         (package-all-keywords): Use it.
1837         (package-menu-mode-map): Set up menu items and keybindings to
1838         provide a filtering UI.
1840 2013-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
1842         * net/gnutls.el (gnutls-verify-error): New defcustom to control
1843         the behavior when a certificate fails validation.  Defaults to
1844         old behavior: never abort, just warn.
1845         (gnutls-negotiate): Use it.
1847 2013-12-14  Martin Rudalics  <rudalics@gmx.at>
1849         * window.el (display-buffer-below-selected): Never split window
1850         horizontally.  Suggested by Juri Linkov <juri@jurta.org>.
1852 2013-12-14  Tom Willemse  <tom@ryuslash.org>  (tiny change)
1854         * emacs-lisp/package.el (package--prepare-dependencies): New function.
1855         (package-buffer-info): Use it (bug#15108).
1857 2013-12-14  Stefan Monnier  <monnier@iro.umontreal.ca>
1859         * icomplete.el (icomplete-completions): Make sure the prefix is already
1860         displayed elsewhere before hiding it (bug#16219).
1862 2013-12-14  Dmitry Gutov  <dgutov@yandex.ru>
1864         * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
1865         open-paren tokens when preceded by a open-paren, too.
1866         (ruby-smie-rules): Handle virtual indentation after open-paren
1867         tokens specially.  If there is code between it and eol, return the
1868         column where is starts (Bug#16118).
1870 2013-12-13  Teodor Zlatanov  <tzz@lifelogs.com>
1872         * progmodes/cfengine.el: Fix `add-hook' doc.
1873         (cfengine-mode-syntax-functions-regex): Initialize sensibly.
1874         (cfengine3--current-word): Fix parameters.
1875         (cfengine3-make-syntax-cache): Simplify further.
1876         (cfengine3-completion-function, cfengine3--current-function):
1877         Use `assq' for symbols.
1878         (cfengine3--current-function): Fix `cfengine3--current-word' call.
1880 2013-12-13  Glenn Morris  <rgm@gnu.org>
1882         * loadup.el (load-path): Warn if site-load or site-init changes it.
1883         No more need to reset it when bootstrapping.
1885 2013-12-13  Teodor Zlatanov  <tzz@lifelogs.com>
1887         * progmodes/cfengine.el (cfengine-cf-promises): Add more default
1888         locations for cf-promises.
1889         (cfengine-mode-syntax-functions-regex): New caching variable.
1890         (cfengine3-fallback-syntax): Fallback syntax for cases where
1891         cf-promises doesn't run.
1892         (cfengine3--current-word): Reimplement using
1893         `cfengine-mode-syntax-functions-regex'.
1894         (cfengine3-completion-function, cfengine3--current-function):
1895         Use `cfengine3-make-syntax-cache' directly.
1896         (cfengine3-clear-syntax-cache): New function.
1897         (cfengine3-make-syntax-cache): Simplify and create
1898         `cfengine-mode-syntax-functions-regex' on demand.
1899         (cfengine3-format-function-docstring): Don't call
1900         `cfengine3-make-syntax-cache' explicitly.
1902 2013-12-13  Martin Rudalics  <rudalics@gmx.at>
1904         Fix windmove-find-other-window broken after pixelwise resizing
1905         (Bug#16017).
1906         * windmove.el (windmove-other-window-loc): Revert change from
1907         2013-12-04.
1908         (windmove-find-other-window): Call window-in-direction.
1909         * window.el (window-in-direction): New arguments SIGN, WRAP and
1910         MINI to emulate original windmove-find-other-window behavior.
1912 2013-12-13  Dmitry Gutov  <dgutov@yandex.ru>
1914         * simple.el (blink-matching--overlay): New variable.
1915         (blink-matching-open): Instead of moving point, highlight the
1916         matching paren with an overlay
1917         (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
1919         * faces.el (paren-showing-faces, show-paren-match)
1920         (show-paren-mismatch): Move from paren.el.
1922 2013-12-13  Leo Liu  <sdl.web@gmail.com>
1924         * indent.el (indent-region): Disable progress reporter in
1925         minibuffer.  (Bug#16108)
1927         * bindings.el (visual-order-cursor-movement): Fix version.
1929 2013-12-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1931         * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
1932         Also match after beginning of line.
1933         (python-pdbtrack-set-tracked-buffer): Fix logic for remote
1934         files.  Thanks to Russell Sim.  (Bug#15378)
1936 2013-12-13  Juri Linkov  <juri@jurta.org>
1938         * simple.el <Keypad support>: Remove key bindings duplicated
1939         with bindings.el.  (Bug#14397)
1941 2013-12-13  Juri Linkov  <juri@jurta.org>
1943         * comint.el (comint-mode-map): Replace `delete-char' with
1944         `delete-forward-char'.  (Bug#16109)
1946 2013-12-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1948         * progmodes/python.el (python-indent-calculate-indentation):
1949         Fix de-denters cornercase.  (Bug#15731)
1951 2013-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
1953         * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
1954         (advice--make): Pay attention to `depth'.
1955         (advice--make-1): Don't autoload commands eagerly.
1956         * emacs-lisp/elp.el (elp-instrument-function):
1957         * emacs-lisp/trace.el (trace-function-internal):
1958         * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
1960         * iswitchb.el (iswitchb-mode): Don't belittle ido.
1962 2013-12-12  Eli Zaretskii  <eliz@gnu.org>
1964         * term/w32-win.el (w32-handle-dropped-file):
1965         * startup.el (normal-top-level):
1966         * net/browse-url.el (browse-url-file-url):
1967         * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
1968         decode file names using 'utf-8' rather than
1969         file-name-coding-system.
1971 2013-12-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1973         * progmodes/python.el (python-indent-context)
1974         (python-indent-calculate-indentation): Fix auto-identation
1975         behavior for comment blocks.  (Bug#15916)
1977 2013-12-12  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
1979         * progmodes/python.el (python-indent-calculate-indentation):
1980         When determining indentation, don't treat "return", "pass", etc., as
1981         operators when they are just string constituents.  (Bug#15812)
1983 2013-12-12  Juri Linkov  <juri@jurta.org>
1985         * uniquify.el (uniquify-buffer-name-style): Change default to
1986         `post-forward-angle-brackets'.
1988         * menu-bar.el (menu-bar-options-menu): Don't require preloaded
1989         `uniquify'.  Change default to `post-forward-angle-brackets'.
1991 2013-12-11  Glenn Morris  <rgm@gnu.org>
1993         * emacs-lisp/package.el (finder-list-matches):
1994         Autoload rather than falsely declaring.
1996 2013-12-11  Teodor Zlatanov  <tzz@lifelogs.com>
1998         * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
1999         (eww-mode-map): Use them.
2001 2013-12-11  Martin Rudalics  <rudalics@gmx.at>
2003         * window.el (display-buffer-in-side-window): Fix doc-string
2004         (Bug#16115).
2006 2013-12-11  Juanma Barranquero  <lekktu@gmail.com>
2008         * vc/vc-git.el: Silence byte-compiler warnings.
2009         (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
2010         (log-edit-set-header): Declare.
2012 2013-12-11  Eli Zaretskii  <eliz@gnu.org>
2014         * Makefile.in (custom-deps, finder-data): Run output file names
2015         through unmsys--file-name.  (Bug#16099)
2017 2013-12-11  Stefan Monnier  <monnier@iro.umontreal.ca>
2019         * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
2020         comment-start-skip, which fails when that uses submatch 1 (bug#16041).
2022         * emulation/cua-base.el (cua-paste): Add `delete-selection' property
2023         instead of deleting the selection "by hand" (bug#16098).
2024         Rely on insert-for-yank to yank rectangles.
2025         (cua-highlight-region-shift-only): Mark obsolete.
2026         (cua-mode): Don't enable/disable transient-mark-mode,
2027         shift-select-mode (cua-mode works both with and without them), and
2028         pc-selection-mode (obsolete).
2029         * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
2030         (cua--deactivate-rectangle): Deactivate it.
2032         * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
2033         (delete-selection-helper): Make sure yank starts at the top of the
2034         deleted region.
2035         (minibuffer-keyboard-quit): Use region-active-p.
2037         * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
2039         * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
2040         to `delete' (bug#16109).
2042 2013-12-11  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
2044         * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
2045         info manual and show keybindings and set `:group' keyword.
2047 2013-12-11  Juri Linkov  <juri@jurta.org>
2049         * delsel.el (delete-active-region): Let-bind `this-command'
2050         to prevent `kill-region' from changing its original value.
2051         (delete-selection-helper): Handle `overwrite-mode' for the type
2052         `kill' exactly the same way as for the type `t'.
2053         (insert-char, quoted-insert, reindent-then-newline-and-indent):
2054         Support more commands.  (Bug#13312)
2056 2013-12-11  Juri Linkov  <juri@jurta.org>
2058         * bindings.el: Map kp keys to non-kp keys systematically
2059         with basic modifiers control, meta and shift.  (Bug#14397)
2061 2013-12-11  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
2063         * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
2064         "Close browser" menu items.  Fix wrong function of "List
2065         bookmarks".
2067 2013-12-11  Juri Linkov  <juri@jurta.org>
2069         * misearch.el (multi-isearch-buffers): Set the value of
2070         `multi-isearch-buffer-list' globally.  Set NO-RECURSIVE-EDIT
2071         arg of isearch-forward to t.
2072         (multi-isearch-buffers-regexp): Set the value of
2073         `multi-isearch-buffer-list' globally.  Set NO-RECURSIVE-EDIT
2074         arg of isearch-forward-regexp to t.
2075         (multi-isearch-files): Set the value of
2076         `multi-isearch-file-list' globally.  Set NO-RECURSIVE-EDIT
2077         arg of isearch-forward to t.
2078         (multi-isearch-files-regexp): Set the value of
2079         `multi-isearch-file-list globally.  Set NO-RECURSIVE-EDIT
2080         arg of isearch-forward-regexp to t.  (Bug#16035)
2082         * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
2083         arg of isearch-forward to t.
2084         (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
2085         arg of isearch-forward-regexp to t.
2086         (dired-isearch-filter-filenames): Remove unnecessary check for
2087         `dired-isearch-filenames'.
2089         * comint.el (comint-history-isearch-backward):
2090         Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
2091         (comint-history-isearch-backward-regexp):
2092         Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
2094 2013-12-10  Eli Zaretskii  <eliz@gnu.org>
2096         * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
2097         unmsys--file-name.  (Bug#16099)
2099 2013-12-10  Teodor Zlatanov  <tzz@lifelogs.com>
2101         * emacs-lisp/package.el (package-keyword-button-action):
2102         Remove finder.el require dependency.
2104 2013-12-09  Teodor Zlatanov  <tzz@lifelogs.com>
2106         * emacs-lisp/package.el: Require finder.el.
2107         (describe-package-1): Add keyword buttons.
2108         (package-make-button): New convenience function.
2109         (package-keyword-button-action): Keyword button action using
2110         `finder-list-matches'.
2112 2013-12-09  Eli Zaretskii  <eliz@gnu.org>
2114         * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
2115         last commit.
2117 2013-12-09  Michael Albinus  <michael.albinus@gmx.de>
2119         * autorevert.el (auto-revert-notify-add-watch): Do not handle
2120         symlinked files.
2122 2013-12-09  Dmitry Gutov  <dgutov@yandex.ru>
2124         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
2125         after the end of a percent literal.
2127 2013-12-09  Cameron Desautels  <camdez@gmail.com>  (tiny change)
2129         * progmodes/ruby-mode.el (ruby-forward-string): Document.
2130         Handle caret-delimited strings (Bug#16079).
2132 2013-12-09  Dmitry Gutov  <dgutov@yandex.ru>
2134         * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
2135         When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
2136         `ruby-parse-partial' (Bug#16078).
2138 2013-12-09  Leo Liu  <sdl.web@gmail.com>
2140         * subr.el (read-passwd): Disable show-paren-mode.  (Bug#16091)
2142 2013-12-08  Dmitry Gutov  <dgutov@yandex.ru>
2144         * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
2145         (js-switch-indent-offset): New option.
2146         (js--proper-indentation): Use it.  And handle the case when
2147         "default" is actually a key in an object literal.
2148         (js--same-line): New function.
2149         (js--multi-line-declaration-indentation): Use it.
2150         (js--indent-in-array-comp, js--array-comp-indentation):
2151         New functions.
2152         (js--proper-indentation): Use them, to handle array comprehension
2153         continuations.
2155 2013-12-08  Leo Liu  <sdl.web@gmail.com>
2157         * progmodes/flymake.el (flymake-highlight-line): Re-write.
2158         (flymake-make-overlay): Remove arg MOUSE-FACE.
2159         (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
2161 2013-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2163         * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
2164         New function.
2165         (redisplay-highlight-region-function): Use it.
2167         * emulation/cua-base.el (cua--explicit-region-start)
2168         (cua--last-region-shifted): Remove.
2169         (cua--deactivate): Use deactivate-mark.
2170         (cua--pre-command-handler-1): Don't handle shift-selection.
2171         (cua--post-command-handler-1): Don't change transient-mark-mode.
2172         (cua--select-keymaps): Use region-active-p rather than
2173         cua--explicit-region-start or cua--last-region-shifted.
2174         (cua-mode): Enable shift-select-mode.
2176 2013-12-08  Leo Liu  <sdl.web@gmail.com>
2178         * progmodes/flymake.el (flymake-popup-current-error-menu):
2179         Rename from flymake-display-err-menu-for-current-line.  Reimplement.
2180         (flymake-posn-at-point-as-event, flymake-popup-menu)
2181         (flymake-make-emacs-menu): Remove.  (Bug#16077)
2183 2013-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2185         * rect.el (rectangle-mark-mode): Activate mark even if
2186         transient-mark-mode is off (bug#16066).
2187         (rectangle--highlight-for-redisplay): Fix boundary condition when point
2188         is > mark and at bolp.
2190         * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
2191         (region-extract-function): Use it.
2192         (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
2193         (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
2194         Delete functions.
2195         (cua--init-rectangles): Don't re-remap copy-region-as-kill,
2196         kill-ring-save, kill-region, delete-char, delete-forward-char.
2197         Ignore self-insert-iso.
2199         * emulation/cua-gmrk.el (cua--init-global-mark):
2200         Ignore `self-insert-iso'.
2202         * emulation/cua-base.el (cua--prefix-copy-handler)
2203         (cua--prefix-cut-handler): Rely on region-extract-function rather than
2204         checking cua--rectangle.
2205         (cua-delete-region): Use region-extract-function.
2206         (cua-replace-region): Delete function.
2207         (cua-copy-region, cua-cut-region): Obey region-extract-function.
2208         (cua--pre-command-handler-1): Don't do the delete-selection thing.
2209         (cua--self-insert-char-p): Ignore `self-insert-iso'.
2210         (cua--init-keymaps): Don't remap delete-selection commands.
2211         (cua-mode): Use delete-selection-mode instead of rolling our own
2212         (bug#16085).
2214         * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
2215         Obey region-extract-function.
2217         Make registers and delete-selection-mode work on rectangles.
2218         * register.el (describe-register-1): Don't modify the register's value.
2219         (copy-to-register): Obey region-extract-function.
2220         * delsel.el (delete-active-region): Obey region-extract-function.
2222 2013-12-08  Leo Liu  <sdl.web@gmail.com>
2224         * progmodes/flymake.el (flymake, flymake-error-bitmap)
2225         (flymake-warning-bitmap, flymake-fringe-indicator-position)
2226         (flymake-compilation-prevents-syntax-check)
2227         (flymake-start-syntax-check-on-newline)
2228         (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
2229         (flymake-start-syntax-check-on-find-file, flymake-log-level)
2230         (flymake-xml-program, flymake-master-file-dirs)
2231         (flymake-master-file-count-limit)
2232         (flymake-allowed-file-name-masks): Relocate.
2233         (flymake-makehash, flymake-float-time)
2234         (flymake-replace-regexp-in-string, flymake-split-string)
2235         (flymake-get-temp-dir): Remove.
2236         (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
2237         (flymake-current-row, flymake-selected-frame)
2238         (flymake-get-point-pixel-pos): Remove xemacs compatibity and
2239         related functions.  (Bug#16077)
2241 2013-12-07  Bozhidar Batsov  <bozhidar@batsov.com>
2243         * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
2245 2013-12-07  Tassilo Horn  <tsdh@gnu.org>
2247         * help-fns.el (describe-function-1): Use new advice-* functions
2248         rather than old ad-* functions.  Fix function type description and
2249         source links for advised functions and subrs.
2251 2013-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2253         * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
2255 2013-12-06  Michael Albinus  <michael.albinus@gmx.de>
2257         * progmodes/compile.el (compilation-start):
2258         * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
2260         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
2261         Handle long command lines, lasting from "sh -c ...".  (Bug#16045)
2263 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
2265         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
2266         Touch up the last change.
2268 2013-12-06  Leo Liu  <sdl.web@gmail.com>
2270         * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
2271         (inferior-octave-startup): Always use "octave> " for prompt.
2272         (octave-goto-function-definition)
2273         (octave-sync-function-file-names)
2274         (octave-find-definition-default-filename): Remove redundant backquotes.
2276 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
2278         * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
2279         syntax for `?'.
2280         (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
2281         where appropriate already.
2282         (ruby-syntax-propertize-function): Propertize `?' and `!' at the
2283         end of method names (Bug#15874).
2285 2013-12-06  Juri Linkov  <juri@jurta.org>
2287         * isearch.el (isearch--saved-overriding-local-map):
2288         New internal variable.
2289         (isearch-mode): Set it to the initial value of
2290         `overriding-terminal-local-map'.
2291         (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
2292         with `isearch--saved-overriding-local-map'.  (Bug#16035)
2294 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
2296         * progmodes/octave.el (inferior-octave-completion-table):
2297         Turn back into function, use `completion-table-with-cache'
2298         (Bug#11906).  Update all references.
2300         * minibuffer.el (completion-table-with-cache): New function.
2302 2013-12-05  Cameron Desautels  <camdez@gmail.com>  (tiny change)
2304         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
2306 2013-12-05  Teodor Zlatanov  <tzz@lifelogs.com>
2308         * net/eww.el (eww-current-source): New variable to store page
2309         source.
2310         (eww-display-html, eww-mode, eww-save-history)
2311         (eww-restore-history): Use it.
2312         (eww-view-source): New command to view page source.
2313         Opportunistically uses `html-mode' to highlight the buffer.
2314         (eww-mode-map): Install it.
2316 2013-12-05  Michael Albinus  <michael.albinus@gmx.de>
2318         * net/dbus.el (dbus-unregister-service)
2319         (dbus-escape-as-identifier, dbus-unescape-from-identifier):
2320         Fix docstring.
2321         (dbus-unregister-service): Skip :serial entries in
2322         `dbus-registered-objects-table'.
2323         (dbus-byte-array-to-string): New optional arg MULTIBYTE.
2325 2013-12-04  Teodor Zlatanov  <tzz@lifelogs.com>
2327         * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
2328         around keywords with extra `split-string' argument.
2330 2013-12-04  Martin Rudalics  <rudalics@gmx.at>
2332         * windmove.el (windmove-other-window-loc): Handle navigation
2333         between windows (excluding the minibuffer window - Bug#16017).
2335 2013-12-04  Michael Albinus  <michael.albinus@gmx.de>
2337         * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
2338         in D-Bus type syntax.
2339         (dbus-unescape-from-identifier): Use `byte-to-string' in order to
2340         preserve unibyte strings.  (Bug#16048)
2342 2013-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2344         * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
2345         Call force-mode-line-update is the proper buffer (bug#16042).
2347 2013-12-04  Dmitry Gutov  <dgutov@yandex.ru>
2349         * vc/log-edit.el (log-edit-add-new-comment): Rename to
2350         `log-edit-remember-comment', make argument optional.  Adjust all
2351         callers.
2352         (log-edit-mode): Add `log-edit-remember-comment' to
2353         `kill-buffer-hook' locally.
2354         (log-edit-kill-buffer): Don't remember comment explicitly since
2355         the buffer is killed anyway.
2357 2013-12-04  Juri Linkov  <juri@jurta.org>
2359         * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
2360         add-hook and remove-hook for multi-buffer search.  (Bug#16035)
2362 2013-12-03  Tom Regner  <tom@goochesa.de>  (tiny change)
2364         * notifications.el (notifications-close-notification): Call the
2365         D-Bus method with ID being a `:uint32'.  (Bug#16030)
2367 2013-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
2369         * net/eww.el (eww-render): Don't pass arg to eww-display-image.
2371 2013-12-03  Juri Linkov  <juri@jurta.org>
2373         * progmodes/compile.el (compilation-start): Rename window alist
2374         entry `no-display-ok' to `allow-no-window'.
2376         * simple.el (shell-command): Add window alist entry
2377         `allow-no-window' to `display-buffer'.
2378         (async-shell-command): Doc fix.
2380         * window.el (display-buffer-no-window): New action function.
2381         (display-buffer-alist, display-buffer): Doc fix.  (Bug#13594)
2383 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
2385         * vc/log-edit.el (log-edit-set-header): Extract from
2386         `log-edit-toggle-header'.
2387         (log-edit-extract-headers): Separate the summary, when extracted
2388         from header, from the rest of the message with an empty line.
2390         * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
2391         line, if present, to the Summary header.
2393 2013-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2395         * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
2396         in current-buffer (bug#16029).
2398 2013-12-02  Helmut Eller  <eller.helmut@gmail.com>
2400         * emacs-lisp/debug.el (debugger-toggle-locals): New command.
2401         (debugger-mode-map): Bind it.
2402         (debugger--backtrace-base): New function.
2403         (debugger-eval-expression): Use it.
2404         (debugger-frame-number): Skip local vars when present.
2405         (debugger--locals-visible-p, debugger--insert-locals)
2406         (debugger--show-locals, debugger--hide-locals): New functions.
2408 2013-12-02  Michael Albinus  <michael.albinus@gmx.de>
2410         * net/tramp-sh.el (tramp-remote-process-environment): Do not set
2411         "LC_ALL".
2412         (tramp-get-remote-locale): New defun.
2413         (tramp-open-connection-setup-interactive-shell): Use it.
2415 2013-12-02  Leo Liu  <sdl.web@gmail.com>
2417         * subr.el (process-live-p): Return nil for non-process.  (Bug#16023)
2419         * progmodes/sh-script.el (sh-shell-process):
2420         * progmodes/octave.el (inferior-octave-process-live-p):
2421         * progmodes/gdb-mi.el (gdb-delchar-or-quit)
2422         (gdb-inferior-io-sentinel):
2423         * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
2425 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
2427         * vc/log-edit.el (log-edit-kill-buffer): Move the use of
2428         `save-selected-window' to `log-edit-hide-buf'.  This makes
2429         `log-edit-show-files' idempotent.
2430         (log-edit-show-files): Mark the new window as dedicated.
2432 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
2434         * vc/log-edit.el (log-edit-mode-map): Add binding for
2435         `log-edit-kill-biffer'.
2436         (log-edit-hide-buf): Add a FIXME comment.
2437         (log-edit-add-new-comment): New function, extracted from
2438         `log-edit-done'.
2439         (log-edit-done, log-edit-add-to-changelog): Use it.
2440         (log-edit-kill-buffer): New command.
2442 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2444         * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
2445         instead of killing the buffer.
2447 2013-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2449         * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
2451 2013-12-01  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
2453         * net/eww.el (eww-form-checkbox-selected-symbol)
2454         (eww-form-checkbox-symbol): New customizable variable.
2455         (eww-form-checkbox, eww-toggle-checkbox):
2456         Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
2458         * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
2459         (shr--get-media-pref, shr--extract-best-source): New function.
2460         (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
2461         no :src tag was specified.
2463         * net/eww.el (eww-use-external-browser-for-content-type): New variable.
2464         (eww-render): Handle `eww-use-external-browser-for-content-type'.
2465         Use \\` to match beginning of string instead of ^.
2466         (eww-browse-with-external-browser): Provide optional URL parameter.
2467         (eww-render): Set `eww-current-title' back to "".
2469         * net/shr.el (shr-tag-video): Display content for video if no
2470         poster is available.
2471         (shr-tag-audio): Add support for <audio> tag.
2473         * net/eww.el (eww-text-input-types): New const.
2474         (eww-process-text-input): Treat input types in
2475         `eww-text-input-types' as text.
2477         * net/shr.el (shr-tag-table): Fix comment typo.
2479 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2481         * net/eww.el (eww-follow-link): New command to avoid reloading
2482         pages when we follow #target links (bug#15243).
2483         (eww-quit): Special mode buffers shouldn't query before exiting.
2485 2013-12-01  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
2487         * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
2488         forms.
2490 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2492         * net/eww.el (eww-restore-history): Update the window title after
2493         moving in the history.
2494         (eww-current-dom): New variable used to save the current DOM.
2496 2013-12-01  Dmitry Gutov  <dgutov@yandex.ru>
2498         * vc/log-edit.el (log-edit-mode-map): Add binding for
2499         `log-edit-beginning-of-line'.
2500         (log-edit-setup-add-author): New user option.
2501         (log-edit-beginning-of-line): New command.
2502         (log-edit): Move major mode call above the contents setup so that
2503         the local variable values are already applied.
2504         (log-edit): Only insert "Author: " when
2505         `log-edit-setup-add-author' is non-nil.
2506         (log-edit): When SETUP is non-nil, position point after ": "
2507         instead of point-min.
2509 2013-12-01  Glenn Morris  <rgm@gnu.org>
2511         * startup.el (command-line): Warn if ~/emacs.d is in load-path.
2513 2013-11-30  Eli Zaretskii  <eliz@gnu.org>
2515         * startup.el (fancy-splash-frame): On MS-Windows, trigger
2516         redisplay to make sure the initial frame gets a chance to become
2517         visible.  (Bug#16014)
2519 2013-11-30  Martin Rudalics  <rudalics@gmx.at>
2521         Support resizing frames and windows pixelwise.
2522         * cus-start.el (frame-resize-pixelwise)
2523         (window-resize-pixelwise): New entries.
2524         * emacs-lisp/debug.el (debug): Use window-total-height instead
2525         of window-total-size.
2526         * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
2527         * help.el (describe-bindings-internal): Call help-buffer
2528         (temp-buffer-max-width): New option.
2529         (resize-temp-buffer-window, help-window-setup)
2530         (with-help-window): Rewrite.
2531         * mouse.el (mouse-drag-line): Rewrite.  Add key bindings for
2532         dragging dividers.
2533         * window.el (frame-char-size, window-min-pixel-height)
2534         (window-safe-min-pixel-height, window-safe-min-pixel-width)
2535         (window-min-pixel-width, window-safe-min-pixel-size)
2536         (window-combination-p, window-safe-min-size)
2537         (window-resizable-p, window--size-to-pixel)
2538         (window--pixel-to-size, window--resize-apply-p): New functions.
2539         (window-safe-min-height): Fix doc-string.
2540         (window-size, window-min-size, window--min-size-1)
2541         (window-sizable, window-sizable-p, window--min-delta-1)
2542         (window-min-delta, window--max-delta-1, window-max-delta)
2543         (window--resizable, window--resizable-p, window-resizable)
2544         (window-full-height-p, window-full-width-p, window-at-side-p)
2545         (window--in-direction-2, window-in-direction)
2546         (window--resize-reset-1, window--resize-mini-window)
2547         (window-resize, window-resize-no-error)
2548         (window--resize-child-windows-normal)
2549         (window--resize-child-windows, window--resize-siblings)
2550         (window--resize-this-window, window--resize-root-window)
2551         (window--resize-root-window-vertically)
2552         (adjust-window-trailing-edge, enlarge-window, shrink-window)
2553         (maximize-window, minimize-window, delete-window)
2554         (quit-restore-window, window-split-min-size, split-window)
2555         (balance-windows-2, balance-windows)
2556         (balance-windows-area-adjust, balance-windows-area)
2557         (window--state-get-1, window-state-get, window--state-put-1)
2558         (window--state-put-2, window-state-put)
2559         (display-buffer-record-window, window--display-buffer):
2560         Make functions handle pixelwise sizing of windows.
2561         (display-buffer--action-function-custom-type)
2562         (display-buffer-fallback-action):
2563         Add display-buffer-in-previous-window.
2564         (display-buffer-use-some-window): Resize window to height it had
2565         before.
2566         (fit-window-to-buffer-horizontally): New option.
2567         (fit-frame-to-buffer): Describe new values.
2568         (fit-frame-to-buffer-bottom-margin): Replace with
2569         fit-frame-to-buffer-margins.
2570         (window--sanitize-margin): New function.
2571         (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
2572         using window-text-pixel-size.
2574 2013-11-30  Glenn Morris  <rgm@gnu.org>
2576         * emacs-lisp/bytecomp.el (byte-compile-form):
2577         Make the `interactive-only' warning like the `obsolete' one.
2578         * comint.el (comint-run):
2579         * files.el (insert-file-literally, insert-file):
2580         * replace.el (replace-string, replace-regexp):
2581         * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
2582         (goto-line, insert-buffer, next-line, previous-line):
2583         Tweak `interactive-only' spec.
2585         Stop keeping (most) generated cedet grammar files in the repository.
2586         * Makefile.in (semantic): New.
2587         (compile-main): Depend on semantic.
2589 2013-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2591         * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
2592         available.  Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
2594         * uniquify.el (uniquify-buffer-name-style): Change default.
2596         * loadup.el: Preload "uniquify".
2598         * time.el (display-time-update): Update all mode lines (bug#15999).
2600         * electric.el (electric-indent-mode): Enable by default.
2601         * loadup.el: Preload "electric".
2603 2013-11-29  Bozhidar Batsov  <bozhidar@batsov.com>
2605         * emacs-lisp/helpers.el (string-empty-p): New function.
2606         (string-blank-p): New function.
2608 2013-11-29  Andreas Politz  <politza@hochschule-trier.de>
2610         * imenu.el (imenu--index-alist): Add missing dot to the docstring
2611         (Bug#14029).
2613 2013-11-29  Andreas Politz  <politza@fh-trier.de>
2614         * imenu.el (imenu--subalist-p): Don't error on non-conses and
2615         allow non-lambda lists as functions.
2616         (imenu--in-alist): Don't recurse into non-subalists.
2617         (imenu): Don't pass function itself as an argument (Bug#14029).
2619 2013-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2621         * progmodes/python.el (python-mode-map): Remove binding for ":".
2622         (python-indent-electric-colon): Remove command.
2623         (python-indent-post-self-insert-function): Integrate the previous code
2624         of python-indent-electric-colon.  Make it conditional on
2625         electric-indent-mode.
2626         (python-mode): Add ?: to electric-indent-chars.
2627         Move python-indent-post-self-insert-function to the end of
2628         post-self-insert-hook.
2630 2013-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
2632         * doc-view.el (doc-view-goto-page): Update mode-line.
2634         * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
2636 2013-11-27  Glenn Morris  <rgm@gnu.org>
2638         * international/charprop.el, international/uni-bidi.el:
2639         * international/uni-category.el, international/uni-combining.el:
2640         * international/uni-comment.el, international/uni-decimal.el:
2641         * international/uni-decomposition.el, international/uni-digit.el:
2642         * international/uni-lowercase.el, international/uni-mirrored.el:
2643         * international/uni-name.el, international/uni-numeric.el:
2644         * international/uni-old-name.el, international/uni-titlecase.el:
2645         * international/uni-uppercase.el:
2646         Remove generated files from VCS repository.
2648 2013-11-27  Eli Zaretskii  <eliz@gnu.org>
2650         * filenotify.el (file-notify-add-watch): Don't special-case
2651         w32notify when computing the directory to watch.
2653 2013-11-27  Glenn Morris  <rgm@gnu.org>
2655         Make bootstrap without generated uni-*.el files possible again.
2656         * loadup.el: Update command-line-args checking for unidata-gen.
2657         Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
2658         * composite.el, international/characters.el:
2659         Handle unicode tables being undefined.
2661         Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
2662         * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
2663         (compile-main): Depend on leim rule.
2664         (leim): New rule.
2665         * loadup.el: Move leim-list.el to leim/ subdirectory.
2666         * startup.el (normal-top-level): No more leim directory.
2667         * international/ja-dic-cnv.el (skkdic-convert):
2668         Disable version-control and autoloads in output files.
2669         * international/titdic-cnv.el (titdic-convert, miscdic-convert):
2670         Disable version-control and autoloads in output files.
2671         * leim/quail: Move here from ../leim.
2672         * leim/quail/hangul.el (hangul-input-method-activate):
2673         Add autoload cookie.
2674         (generated-autoload-load-name): Set file-local value.
2675         * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
2676         (generated-autoload-load-name): Set file-local value.
2678 2013-11-26  Kenjiro NAKAYAMA  <knakayam@redhat.com>
2680         * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
2681         (eww-add-bookmark): Ask confirmation when add to bookmarks.
2682         (eww-quit): Ask confirmation before quitting eww.
2684 2013-11-26  Eli Zaretskii  <eliz@gnu.org>
2686         * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
2687         reading output from Diff on MS-Windows and MS-DOS.
2689 2013-11-26  Bozhidar Batsov  <bozhidar@batsov.com>
2691         * emacs-lisp/helpers.el (string-reverse): New function.
2693 2013-11-26  Michael Albinus  <michael.albinus@gmx.de>
2695         * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
2696         names on MS Windows, like "/[::1]:".
2698         * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
2699         SWITCHES.
2701 2013-11-26  Glenn Morris  <rgm@gnu.org>
2703         * progmodes/python.el (python-indent-guess-indent-offset):
2704         Avoid corner-case error.  (Bug#15975)
2706         Preload leim-list.el.  (Bug#4789)
2707         * loadup.el: Load leim-list.el when found.
2708         * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
2710 2013-11-25  Bozhidar Batsov  <bozhidar@batsov.com>
2712         * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
2714         * emacs-lisp/helpers.el (string-join): New function.
2716 2013-11-25  Sebastian Wiesner  <lunaryorn@gmail.com>  (tiny change)
2718         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
2719         Mark as obsolete and replace it with a symbol property.
2720         (byte-compile-form): Use new 'interactive-only property.
2721         * comint.el, files.el, replace.el, simple.el:
2722         Apply new 'interactive-only properly.
2724 2013-11-25  Martin Rudalics  <rudalics@gmx.at>
2726         * window.el (display-buffer-at-bottom): Make sure that
2727         split-window-sensibly creates the new window on bottom
2728         (Bug#15961).
2730 2013-11-23  David Kastrup  <dak@gnu.org>
2732         * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
2733         on the conflict markers when available.
2734         (smerge--get-marker): New function.
2735         (smerge-end-re, smerge-base-re): Add subgroup.
2737 2013-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2739         * frame.el (handle-focus-in, handle-focus-out): Add missing
2740         interactive spec.
2742 2013-11-25  Michael Albinus  <michael.albinus@gmx.de>
2744         * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
2745         `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
2747 2013-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2749         * play/gomoku.el: Don't use intangible property.  Use lexical-binding.
2750         (gomoku--last-pos): New var.
2751         (gomoku--intangible-chars): New const.
2752         (gomoku--intangible): New function.
2753         (gomoku-mode): Use it.  Derive from special-mode.
2754         (gomoku-move-up): Adjust line count.
2755         (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
2756         (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
2757         Simplify accordingly.
2759         * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
2760         Remove blink-cursor code.
2761         (blink-cursor-timer-function, blink-cursor-suspend):
2762         Don't special-case GUIs.
2763         (blink-cursor-mode): Use focus-in/out-hook.
2765 2013-11-25  Dmitry Gutov  <dgutov@yandex.ru>
2767         * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
2768         work when annotation is invisible (Bug#13886).
2770 2013-11-24  Simon Schubert  <2@0x2c.org>  (tiny change)
2772         * json.el (json-alist-p): Only return non-nil if the alist has
2773         simple keys (Bug#13518).
2775 2013-11-24  Mihir Rege  <mihirrege@gmail.com>  (tiny change)
2777         * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
2778         when control-statement is the first statement in a buffer (Bug#15956).
2780 2013-11-24  Dmitry Gutov  <dgutov@yandex.ru>
2782         * imenu.el (imenu-generic-skip-comments-and-strings):
2783         New option (Bug#15560).
2784         (imenu--generic-function): Use it.
2786 2013-11-24  Jorgen Schaefer  <contact@jorgenschaefer.de>
2788         * minibuffer.el (completion--in-region-1): Scroll the correct window.
2789         (Bug#13898)
2791 2013-11-24  Bozhidar Batsov  <bozhidar@batsov.com>
2793         * emacs-lisp/helpers.el: Add some string helpers.
2794         (string-trim-left): Removes leading whitespace.
2795         (string-trim-right): Removes trailing whitespace.
2796         (string-trim): Removes leading and trailing whitespace.
2798         * subr.el (string-suffix-p): New function.
2800 2013-11-23  Glenn Morris  <rgm@gnu.org>
2802         * progmodes/python.el (python-shell-send-file):
2803         Add option to delete file when done.  (Bug#15647)
2804         (python-shell-send-string, python-shell-send-region): Use it.
2806 2013-11-23  Ivan Shmakov  <ivan@siamics.net>  (tiny change)
2808         * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
2809         to set buffer-read-only to t, never to nil.  (Bug#15938)
2811         * textmodes/tex-mode.el (latex-noindent-environments):
2812         Add safe-local-variable property.  (Bug#15936)
2814 2013-11-23  Glenn Morris  <rgm@gnu.org>
2816         * textmodes/enriched.el (enriched-mode): Doc fix.
2817         * emacs-lisp/authors.el (authors-renamed-files-alist):
2818         Add enriched.doc -> enriched.txt.
2820         * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
2822 2013-11-22  Leo Liu  <sdl.web@gmail.com>
2824         * progmodes/octave.el (inferior-octave-startup): Spit out error
2825         message.
2827 2013-11-22  Bozhidar Batsov  <bozhidar@batsov.com>
2829         * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
2830         Improve docstring.
2831         Add :version.
2832         (ruby-encoding-magic-comment-style): Add :version.
2834 2013-11-22  Leo Liu  <sdl.web@gmail.com>
2836         * progmodes/octave.el (octave-operator-regexp): Exclude newline.
2837         (Bug#15076)
2838         (octave-help-mode): Adapt to change to help-mode-finish to use
2839         derived-mode-p on 2013-09-17.
2840         (inferior-octave-prompt): Also match octave-gui.
2841         (octave-kill-process): Don't ask twice.  (Bug#10564)
2843 2013-11-22  Leo Liu  <sdl.web@gmail.com>
2845         * progmodes/octave.el (inferior-octave-process-live-p): New helper.
2846         (inferior-octave-startup, inferior-octave-check-process)
2847         (inferior-octave-track-window-width-change)
2848         (octave-completion-at-point, octave-eldoc-function): Use it.
2849         (octave-kill-process): Provide confirmation.  (Bug#10564)
2851 2013-11-21  Leo Liu  <sdl.web@gmail.com>
2853         * progmodes/octave.el (octave-mode, inferior-octave-mode):
2854         Fix obsolete variable comment-use-global-state.
2856 2013-11-21  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
2858         * progmodes/octave.el (octave-mode-map, octave-mode-menu):
2859         Add `octave-source-file'.
2860         (octave-source-file): New function.  (Bug#15935)
2862 2013-11-21  Kenjiro Nakayama  <nakayamakenjiro@gmail.com>
2864         * net/eww.el (eww-local-regex): New variable.
2865         (eww): Use it to detect localhost and similar.
2867 2013-11-21  Leo Liu  <sdl.web@gmail.com>
2869         Add completion for command `ag'.
2870         * pcmpl-x.el (pcmpl-x-ag-options): New variable.
2871         (pcomplete/ag): New function.
2872         (pcmpl-x-ag-options): New function.  Handle `[no]' in long options.
2874 2013-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2876         * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
2877         (bug#14646).
2878         (make-obsolete): Remove interactive spec.
2880 2013-11-21  Glenn Morris  <rgm@gnu.org>
2882         * startup.el (command-line-1): Use path-separator with -L.
2884 2013-11-20  Teodor Zlatanov  <tzz@lifelogs.com>
2886         * emacs-lisp/package.el (describe-package-1): Add package archive
2887         to shown fields.
2889 2013-11-20  Bozhidar Batsov  <bozhidar@batsov.com>
2891         * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
2892         Change default to "# encoding: %s" to differentiate it from the
2893         default Ruby encoding comment template.
2895 2013-11-20  era eriksson  <era+emacsbugs@iki.fi>
2897         * ses.el (ses-mode): Doc fix.  (Bug#14748)
2899 2013-11-20  Leo Liu  <sdl.web@gmail.com>
2901         * window.el (display-buffer-alist): Doc fix.  (Bug#13594)
2903 2013-11-19  Dan Nicolaescu  <dann@gnu.org>
2905         * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
2906         when rebase or bisect are in progress.
2908 2013-11-19  Xue Fuqiao  <xfq.free@gmail.com>
2910         * filenotify.el (file-notify-add-watch): Doc fix.
2912 2013-11-19  Leo Liu  <sdl.web@gmail.com>
2914         * obsolete/rcompile.el: Mark obsolete.
2916         * progmodes/compile.el (compilation-start)
2917         (compilation-goto-locus, compilation-find-file):
2918         Pass no-display-ok and handle nil value from display-buffer.
2919         (Bug#13594)
2921         * window.el (display-buffer-alist, display-buffer): Document the
2922         new parameter no-display-ok.  Return either a window or nil
2923         but never a non-window value.
2925 2013-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2927         * electric.el (electric-indent-mode-map): Remove.
2928         (electric-indent-mode): Change the global-map instead (bug#15915).
2930         * textmodes/text-mode.el (paragraph-indent-minor-mode):
2931         Use add-function.
2933 2013-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2935         * emacs-lisp/nadvice.el (remove-function): Align with
2936         add-function's behavior.
2938         * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
2939         (gdb--string-regexp): New constant.
2940         (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
2941         (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
2942         (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
2943         submatch 1.
2944         (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
2945         Adjust use accordingly.
2946         (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
2948 2013-11-17  Adam Sokolnicki  <adam.sokolnicki@gmail.com>  (tiny change)
2950         * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
2951         interpolation curlies (Bug#15914).
2953 2013-11-17  Jay Belanger  <jay.p.belanger@gmail.com>
2955         * calc/calc.el (calc-context-sensitive-enter): New variable.
2956         (calc-enter): Use `calc-context-sensitive-enter'.
2958 2013-11-16  Teodor Zlatanov  <tzz@lifelogs.com>
2960         * progmodes/cfengine.el: Version bump.
2961         (cfengine-cf-promises): New defcustom to locate cf-promises.
2962         (cfengine3-vartypes): Add new "data" type.
2963         (cfengine3--current-word): New function to get current name-like
2964         word or its bounds.
2965         (cfengine3--current-function): New function to look up a CFEngine
2966         function's definition.
2967         (cfengine3-format-function-docstring): New function.
2968         (cfengine3-make-syntax-cache): New function.
2969         (cfengine3-documentation-function): New function: ElDoc glue.
2970         (cfengine3-completion-function): New function: completion glue.
2971         (cfengine3-mode): Set `compile-command',
2972         `eldoc-documentation-function', and add to
2973         `completion-at-point-functions'.
2975 2013-11-16  Michael Albinus  <michael.albinus@gmx.de>
2977         * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
2978         `tramp-current-connection'.
2980 2013-11-15  Dmitry Gutov  <dgutov@yandex.ru>
2982         * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
2983         nil/self/true/false with "end of symbol".
2985 2013-11-15  Bozhidar Batsov  <bozhidar@batsov.com>
2987         * subr.el (version-regexp-alist): Fix a typo.
2989 2013-11-15  Michael Albinus  <michael.albinus@gmx.de>
2991         * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
2992         "en_US.utf8" and "LC_CTYPE" to "".
2993         (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
2994         (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
2996 2013-11-15  Leo Liu  <sdl.web@gmail.com>
2998         * loadhist.el (read-feature): Get rid of fake feature nil.  (Bug#15889)
3000 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3002         * progmodes/gud.el (ctl-x-map):
3003         Remove C-x SPC binding.  (Bug#12342)
3004         (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
3006 2013-11-14  Bozhidar Batsov  <bozhidar@batsov.com>
3008         * subr.el (version-regexp-alist):
3009         Recognize hg, svn and darcs versions as snapshot versions.
3011         * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
3012         'always-utf8 value of `ruby-insert-encoding-magic-comment'.
3013         (ruby--encoding-comment-required-p): Extract from
3014         `ruby-mode-set-encoding'.
3015         (ruby-mode-set-encoding): Add the ability to always insert an
3016         utf-8 encoding comment.  Fix and simplify coding comment update
3017         logic.
3019 2013-11-14  Michael Albinus  <michael.albinus@gmx.de>
3021         * net/tramp-gvfs.el (top): Run init code only when
3022         `tramp-gvfs-enabled' is not nil.
3023         (tramp-gvfs-enabled): Check also :system bus.
3025 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3027         Sync with upstream verilog-mode revision 78e66ba.
3028         * progmodes/verilog-mode.el (verilog-end-of-defun)
3029         (verilog-type-completion, verilog-get-list): Remove unused funcs.
3030         (verilog-get-end-of-defun): Remove unused argument.
3031         (verilog-comment-depth): Remove unused local `e'.
3032         (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
3033         Don't pass arg to verilog-get-end-of-defun.
3035 2013-11-14  Glenn Morris  <rgm@gnu.org>
3037         * obsolete/assoc.el (aget): Prefix dynamic variable.
3039         * allout-widgets.el (allout-widgets): No need to autoload defgroup.
3041 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
3043         * widget.el, hfy-cmap.el: Remove bogus package version number.
3045 2013-11-13  Glenn Morris  <rgm@gnu.org>
3047         * replace.el (replace-eval-replacement):
3048         Try to give more helpful error message.  (Bug#15836)
3050         * arc-mode.el (archive-7z-extract, archive-7z-expunge)
3051         (archive-7z-update): Avoid custom type mismatches.
3053         * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
3055 2013-11-13  Michael Albinus  <michael.albinus@gmx.de>
3057         * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
3058         address can be empty.
3060         * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
3061         Accept nil SWITCHES.
3062         (tramp-gvfs-handle-write-region): Implement APPEND.
3064 2013-11-12  Dmitry Gutov  <dgutov@yandex.ru>
3066         * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
3067         binary "|" operator and closing block args delimiter.
3068         Remove FIXME comment referring to Ruby 1.8-only syntax.
3069         (ruby-smie--implicit-semi-p): Not after "|" operator.
3070         (ruby-smie--closing-pipe-p): New function.
3071         (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
3072         (ruby-smie-rules): Indent after "|".
3074 2013-11-12  Glenn Morris  <rgm@gnu.org>
3076         * ps-print.el (ps-face-attribute-list):
3077         Handle anonymous faces.  (Bug#15827)
3079 2013-11-12  Martin Rudalics  <rudalics@gmx.at>
3081         * window.el (display-buffer-other-frame): Fix doc-string.
3082         (Bug#15868)
3084 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3086         * subr.el (force-mode-line-update): Delete, move to buffer.c.
3088 2013-11-11  Michael Albinus  <michael.albinus@gmx.de>
3090         * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
3091         (tramp-sh-handle-file-local-copy): Don't write a message when
3092         saving temporary files.
3094         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
3095         both directories are remote.
3096         (tramp-smb-handle-directory-files): Do not return double entries.
3097         Do not expand full file names.
3098         (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
3099         (tramp-smb-handle-write-region): Implement APPEND.
3100         (tramp-smb-get-stat-capability): Fix a stupid bug.
3102 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3104         * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
3106 2013-11-11  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
3108         * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
3109         throwing error over malformed let/let* (bug#15814).
3111 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3113         * iswitchb.el (iswitchb-mode): Mark obsolete.
3115 2013-11-11  Glenn Morris  <rgm@gnu.org>
3117         * international/uni-bidi.el, international/uni-category.el:
3118         * international/uni-name.el, international/uni-numeric.el:
3119         Regenerate for Unicode 6.3.0.
3121 2013-11-10  Michael Albinus  <michael.albinus@gmx.de>
3123         * net/tramp.el (tramp-methods):
3124         * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
3125         2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
3127 2013-11-09  Andreas Schwab  <schwab@linux-m68k.org>
3129         * progmodes/sh-script.el (sh-font-lock-keywords-var):
3130         Force highlighting text after Summary keyword in doc face for rpm.
3132 2013-11-09  Dmitry Gutov  <dgutov@yandex.ru>
3134         * textmodes/ispell.el (ispell-lookup-words): When `look' is not
3135         available and the word has no wildcards, append one to the grep pattern.
3136         http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
3137         (ispell-complete-word): Call `ispell-lookup-words' with the value
3138         independent of `ispell-look-p'.
3140 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
3142         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
3143         Not after "||".
3144         (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
3145         their parent.
3147 2013-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3149         * progmodes/ruby-mode.el: Don't require cl any more.  Use pcase instead.
3150         (ruby-font-lock-keywords): Use backquote.
3152 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
3154         * progmodes/ruby-mode.el (ruby-smie--forward-token)
3155         (ruby-smie--backward-token): Only consider full-string matches.
3157 2013-11-08  Jan Djärv  <jan.h.d@swipnet.se>
3159         * faces.el (describe-face): Add distant-foreground.
3161 2013-11-08  Bozhidar Batsov  <bozhidar@batsov.com>
3163         * progmodes/ruby-mode.el: Improve encoding comment handling.
3164         (ruby-encoding-magic-comment-style): New option.
3165         (ruby-custom-encoding-magic-comment-template): New option.
3166         (ruby--insert-coding-comment, ruby--detect-encoding):
3167         New functions extracted from `ruby-mode-set-encoding'.
3168         (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
3169         to control the style of the auto-inserted encoding comment.
3171 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
3173         * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
3174         Use `smie-backward-sexp' with token argument.
3176 2013-11-08  Michael Albinus  <michael.albinus@gmx.de>
3178         * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
3179         Remove instrumentation code.
3181 2013-11-08  Glenn Morris  <rgm@gnu.org>
3183         * progmodes/autoconf.el (autoconf-mode):
3184         Tweak comment-start-skip.  (Bug#15822)
3186 2013-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3188         * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
3189         at bobp (bug#15826).
3190         (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
3192 2013-11-08  Darren Hoo  <darren.hoo@gmail.com>
3194         * man.el (Man-start-calling): New macro, extracted from
3195         Man-getpage-in-background.
3196         (Man-getpage-in-background): Use it.
3197         (Man-update-manpage): New command.
3198         (Man-mode-map): Bind it.
3200 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
3202         * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
3203         of "and", "or", "&&" and "||".
3204         (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
3205         argument.  Prohibit opening curly brace because it could only be a
3206         block opener in that position.
3207         (ruby-smie--forward-token, ruby-smie--backward-token):
3208         Separate "|" from "&" or "*" going after it.  That can happen in block
3209         arguments.
3210         (ruby-smie--indent-to-stmt): New function, seeks the end of
3211         previous statement or beginning of buffer.
3212         (ruby-smie-rules): Use it.
3213         (ruby-smie-rules): Check if there's a ":" before a curly block
3214         opener candidate; if there is, it's a hash.
3216 2013-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
3218         * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
3219         (cl--block-wrapper): Fix last accidental change.
3221 2013-11-07  Michael Albinus  <michael.albinus@gmx.de>
3223         * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
3224         Instrument, in order to hunt failure on hydra.
3226 2013-11-05  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
3228         * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
3229         malformed bindings form (bug#15814).
3231 2013-11-07  Dmitry Gutov  <dgutov@yandex.ru>
3233         * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
3234         "." compared to " @ ".  This incidentally fixes some indentation
3235         examples with "do".
3236         (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
3237         (ruby-smie-grammar): New tokens: "and" and "or".
3238         (ruby-smie--args-separator-p): Fix the check for tokens at POS.
3239         Exclude "and" and "or".  Remove "do" in order to work around token
3240         priorities.
3241         (ruby-smie-rules): Add all infix tokens.  Handle the case of
3242         beginning-of-buffer.
3244 2013-11-06  Glenn Morris  <rgm@gnu.org>
3246         * Makefile.in (setwins_almost, setwins_for_subdirs):
3247         Avoid accidental matches.
3249 2013-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3251         * menu-bar.el (popup-menu): Use key-binding.
3253 2013-11-06  Eli Zaretskii  <eliz@gnu.org>
3255         * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
3256         menus, support also the menus produced by minor modes.
3257         (Bug#15817)
3259 2013-11-06  Leo Liu  <sdl.web@gmail.com>
3261         * thingatpt.el (thing-at-point-looking-at): Add optional arg
3262         DISTANCE to bound the search.  All uses changed.  (Bug#15808)
3264 2013-11-06  Glenn Morris  <rgm@gnu.org>
3266         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
3267         (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
3268         (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
3270 2013-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
3272         * electric.el (electric-indent-just-newline): New command.
3273         (electric-indent-mode-map): New keymap.
3274         (electric-indent-mode, electric-pair-mode, electric-layout-mode):
3275         Re-add :group which weren't redundant.
3277         * electric.el (electric-indent-local-mode): New minor mode.
3278         (electric-indent-functions-without-reindent): New var.
3279         (electric-indent-post-self-insert-function): Use it.
3280         * emacs-lisp/gv.el (buffer-local-value): Add setter.
3282 2013-11-05  Eli Zaretskii  <eliz@gnu.org>
3284         * international/quail.el (quail-help): Be more explicit about the
3285         meaning of the labels shown on the keys.  (Bug#15800)
3287         * startup.el (normal-top-level): Load the subdirs.el files before
3288         setting the locale environment.  (Bug#15805)
3290 2013-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3292         * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
3293         via arguments so as to get the right ones (bug#15418).
3295         * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
3297 2013-11-05  Michael Albinus  <michael.albinus@gmx.de>
3299         Fix problems found while writing a test suite.
3301         * net/tramp-compat.el (tramp-compat-load): New defun.
3302         * net/tramp.el (tramp-handle-load): Use it.
3304         * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
3305         "(numberp ok-if-already-exists)" correctly.
3307 2013-11-05  Xue Fuqiao  <xfq.free@gmail.com>
3309         * international/characters.el (glyphless-char-display-control):
3310         Add usage note.
3312 2013-11-05  Bozhidar Batsov  <bozhidar@batsov.com>
3314         * progmodes/python.el (python-mode):
3315         * progmodes/scheme.el (scheme-mode):
3316         * progmodes/prolog.el (prolog-mode):
3317         * progmodes/ruby-mode.el (ruby-mode):
3318         * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
3319         (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
3321 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3323         * rect.el (rectangle--highlight-for-redisplay):
3324         * emacs-lisp/smie.el (smie--next-indent-change):
3325         Use buffer-chars-modified-tick.
3327         * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
3329         * electric.el (electric-indent-post-self-insert-function):
3330         Only delete trailing whitepsace if it is indeed trailing (bug#15767).
3332 2013-11-04  Helmut Eller  <eller.helmut@gmail.com>
3334         * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
3336 2013-11-04  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
3338         * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
3339         (bug#15786).
3341 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3343         * emacs-lisp/helpers.el: Move from helpers.el.  Use lexical-binding.
3345         * progmodes/python.el: Fix up last change.
3346         (python-shell--save-temp-file): New function.
3347         (python-shell-send-string): Use it.  Remove `msg' arg.  Don't assume
3348         `string' comes from the current buffer.
3349         (python-shell-send-string-no-output): Remove `msg' arg.
3350         (python--use-fake-loc): New var.
3351         (python-shell-buffer-substring): Obey it.  Try to compensate for the
3352         extra coding line added by python-shell--save-temp-file.
3353         (python-shell-send-region): Use python-shell--save-temp-file and
3354         python-shell-send-file directly.  Add `nomain' argument.
3355         (python-shell-send-buffer): Use python-shell-send-region.
3356         (python-electric-pair-string-delimiter): New function.
3357         (python-mode): Use it.
3359 2013-11-04  Eli Zaretskii  <eliz@gnu.org>
3361         * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
3362         eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
3363         environment and decoding all of the default-directory's to here
3364         from command-line.
3365         (command-line): Decode also argv[0].
3367         * loadup.el: Error out if default-directory is a multibyte string
3368         when we are dumping.
3370         * Makefile.in (emacs): Don't set LC_ALL=C.  (Bug#15260)
3372 2013-11-04  Teodor Zlatanov  <tzz@lifelogs.com>
3374         * emacs-lisp/package.el (package-menu-mode)
3375         (package-menu--print-info, package-menu--archive-predicate):
3376         Add Archive column to package list.
3378 2013-11-04  Michael Albinus  <michael.albinus@gmx.de>
3380         Fix problems found while writing a test suite.
3382         * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
3383         (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
3384         (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
3385         to nil when running original file name handler.  Otherwise,
3386         there are problems with constructs like "$$FOO".
3388         * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
3389         for `localname'.
3391 2013-11-04  Bozhidar Batsov  <bozhidar@batsov.com>
3393         * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
3395         * subr.el (version<, version<=, version=):
3396         Update docstrings with information for snapshot versions.
3398         * helpers.el: New library for misc helper functions.
3399         (hash-table-keys): New function returning a list of hash keys.
3400         (hash-table-values): New function returning a list of hash values.
3402 2013-11-04  Dmitry Gutov  <dgutov@yandex.ru>
3404         * progmodes/ruby-mode.el (ruby-smie--forward-token)
3405         (ruby-smie--backward-token): Tokenize heredocs as semicolons.
3407 2013-11-04  Michal Nazarewicz  <mina86@mina86.com>
3409         * textmodes/fill.el (fill-single-char-nobreak-p): New function
3410         checking whether point is after a 1-letter word.
3412 2013-11-04  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
3414         * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
3415         Don't infloop when expanding region over `multiline' syntax-type that
3416         begins a line (bug#15778).
3418 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3420         * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
3421         Make it into a proper minor mode.
3422         (rectangle--region): (implicitly) rename to rectangle-mark-mode.
3423         (rectangle-mark-mode-map): New keymap.
3424         (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
3426 2013-11-04  Glenn Morris  <rgm@gnu.org>
3428         * startup.el (command-line-1): Allow `-L :...' to append to load-path.
3430 2013-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3432         * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
3433         (ruby-smie-rules): Use smie-rule-parent instead.
3435         * emacs-lisp/smie.el (smie-rule-parent): Always call
3436         smie-indent-virtual rather than only for hanging tokens.
3437         (smie--next-indent-change): New helper command.
3439 2013-11-03  Glenn Morris  <rgm@gnu.org>
3441         * Makefile.in (abs_srcdir): Remove.
3442         (emacs): Unset EMACSLOADPATH.
3444 2013-11-02  Glenn Morris  <rgm@gnu.org>
3446         * Makefile.in (EMACS): Use a relative filename.
3447         (abs_top_builddir): Remove.
3448         (custom-deps, finder-data, autoloads): Use --chdir.
3450         * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
3452         Use relative filenames in TAGS files.
3453         * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
3454         (lisptagsfiles4, TAGS): Use relative file names.
3455         (TAGS-LISP): Remove.
3456         (maintainer-clean): No more TAGS-LISP file.
3458         * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
3459         (lisptagsfiles4): Use absolute filenames again.
3460         (TAGS, TAGS-LISP): Not everything needs to run in one line.
3461         Remove all *loaddefs files, not just the first.  Remove esh-groups.
3462         (maintainer-clean): Delete TAGS, TAGS-LISP.
3464 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
3466         * emacs-lisp/package.el (package-version-join):
3467         Recognize snapshot versions.
3469 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
3471         * subr.el (version-regexp-alist): Add support for snapshot versions.
3473 2013-11-02  Dmitry Gutov  <dgutov@yandex.ru>
3475         * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
3476         New function, replacement for `smie-rule-parent' for when we want to
3477         skip over our direct parent if it's an assignment token..
3478         (ruby-smie-rules): Use it.
3480 2013-11-02  Dmitry Gutov  <dgutov@yandex.ru>
3482         * progmodes/ruby-mode.el: Use `syntax-propertize-function'
3483         unconditionally.  Remove now unnecessary forward declarations.
3484         Remove XEmacs-specific setup.
3485         (ruby-here-doc-end-re, ruby-here-doc-beg-match)
3486         (ruby-font-lock-syntactic-keywords)
3487         (ruby-comment-beg-syntax, ruby-in-here-doc-p)
3488         (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
3489         (ruby-here-doc-end-syntax): Remove.
3490         (ruby-mode): Don't check whether `syntax-propertize-rules' is
3491         defined as function.
3493 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
3495         * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
3497 2013-11-01  Bozhidar Batsov  <bozhidar@batsov.com>
3499         * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
3500         table and abbrev table, `define-derived-mode' does that for us
3501         anyway.
3503 2013-11-01  Glenn Morris  <rgm@gnu.org>
3505         * Makefile.in: Remove manual mh-e dependencies (writing .elc
3506         files is atomic for some time, so no parallel compilation issues).
3508 2013-11-01  Jan Djärv  <jan.h.d@swipnet.se>
3510         * faces.el (face-x-resources): Add :distant-foreground.
3511         (region): Use :distant-foreground for gtk and ns.
3513 2013-11-01  Tassilo Horn  <tsdh@gnu.org>
3515         Allow multiple bibliographies when BibLaTeX is used rather than
3516         BibTeX.
3517         * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
3518         (reftex-locate-bibliography-files): Us it.
3520 2013-11-01  Claudio Bley  <claudio.bley@googlemail.com>
3522         * image.el (image-type-header-regexps): Fix the 'pbm' part to
3523         allow comments in pbm files.
3525         * term/w32-win.el (dynamic-library-alist): Support newer versions
3526         of libjpeg starting with v7: look only for the DLL from the
3527         version against which Emacs was built.
3528         Support versions of libpng beyond 1.4.x.
3529         Support libtiff v4.x.
3531 2013-11-01  Bozhidar Batsov  <bozhidar@batsov.com>
3533         * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
3534         (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
3535         Add property :safe.
3536         (ruby-deep-arglist): Add property :type.
3538 2013-10-31  Glenn Morris  <rgm@gnu.org>
3540         * Makefile.in (custom-deps, finder-data): No need to setq the target
3541         variables, we are in the right directory and the defaults work fine.
3543 2013-10-30  Glenn Morris  <rgm@gnu.org>
3545         * Makefile.in (autoloads): Do not use abs_lisp.
3547         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
3548         `newline' does not respect `standard-output', so use `princ'.
3550 2013-10-30  Alp Aker  <alp.tekin.aker@gmail.com>
3552         Ensure unmarking in buffer menu clears 'S' marks.  (Bug#15761)
3553         * buff-menu.el (Buffer-menu--unmark): New function.
3554         (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
3556 2013-10-30  Glenn Morris  <rgm@gnu.org>
3558         * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
3560         * emacs-lisp/package.el (lm-homepage): Declare.
3562         * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
3563         Fix doc typos.
3565         * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
3567         * Makefile.in (finder-data, autoloads, update-subdirs)
3568         (compile-main, compile-clean, compile-always, bootstrap-clean):
3569         Check return value of cd.
3570         (compile-calc): Remove.
3572 2013-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
3574         * simple.el (copy-region-as-kill): Fix call to region-extract-function.
3576         * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
3577         (byte-compile-and-folded): New function.
3578         (=, <, >, <=, >=): Use it.
3580         * dos-w32.el (minibuffer-history-case-insensitive-variables)
3581         (path-separator, null-device, buffer-file-coding-system)
3582         (lpr-headers-switches): Check system-type before modifying them.
3583         (find-buffer-file-type-coding-system): Mark obsolete.
3584         (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
3585         find-file-not-found-set-buffer-file-coding-system.
3586         (w32-untranslated-filesystem-list, w32-untranslated-canonical-name):
3587         (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
3588         (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p):
3589         (w32-direct-print-region-helper, w32-direct-print-region-function)
3590         (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
3591         * startup.el (normal-top-level-add-subdirs-to-load-path):
3592         * ps-print.el (ps-print-region-function):
3593         * lpr.el (print-region-function): Use new name.
3595         * subr.el (custom-declare-variable-early): Remove function.
3596         (custom-declare-variable-list): Remove var.
3597         (error, user-error): Remove `while' loop.
3598         (read-quoted-char-radix, read-quoted-char): Move to simple.el.
3599         (user-emacs-directory-warning, locate-user-emacs-file):
3600         Move to files.el.
3601         * simple.el (read-quoted-char-radix, read-quoted-char):
3602         * files.el (user-emacs-directory-warning, locate-user-emacs-file):
3603         Move from subr.el.
3604         * custom.el (custom-declare-variable-list): Don't process
3605         custom-declare-variable-list.
3607         * progmodes/python.el (python-shell-get-buffer): New function.
3608         (python-shell-get-process): Use it.
3609         (python-shell-send-string): Always use utf-8 and add a cookie to tell
3610         Python which encoding was used.  Don't split-string since we only care
3611         about the first line.  Return the temp-file, if applicable.
3612         (python-shell-send-region): Tell compile.el how to turn locations in
3613         the temp-file into locations in the source buffer.
3615 2013-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
3617         * subr.el (undefined): Add missing behavior from the C code for
3618         unbound keys.
3620         * rect.el: Use lexical-binding.  Add new rectangular region support.
3621         (rectangle-mark): New command.
3622         (rectangle--region): New var.
3623         (deactivate-mark-hook): Reset rectangle--region.
3624         (rectangle--extract-region, rectangle--insert-for-yank)
3625         (rectangle--highlight-for-redisplay)
3626         (rectangle--unhighlight-for-redisplay): New functions.
3627         (region-extract-function, redisplay-unhighlight-region-function)
3628         (redisplay-highlight-region-function): Use them to handle
3629         rectangular region.
3630         * simple.el (region-extract-function): New var.
3631         (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
3632         (kill-new, kill-append): Remove obsolete `yank-handler' argument.
3633         (kill-region): Replace obsolete `yank-handler' arg with `region'.
3634         (copy-region-as-kill, kill-ring-save): Add `region' argument.
3635         (redisplay-unhighlight-region-function)
3636         (redisplay-highlight-region-function): New vars.
3637         (redisplay--update-region-highlight): New function.
3638         (pre-redisplay-function): Use it.
3639         (exchange-point-and-mark): Don't deactivate the mark before
3640         reactivate-it anyway.
3641         * comint.el (comint-kill-region): Remove yank-handler argument.
3642         * delsel.el (delete-backward-char, backward-delete-char-untabify)
3643         (delete-char): Remove property, since it's now part of their
3644         default behavior.
3645         (self-insert-iso): Remove property since this command doesn't exist.
3647         * emacs-lisp/package.el (package--download-one-archive)
3648         (describe-package-1): Don't query the user about final newline.
3650 2013-10-29  Daniel Colascione  <dancol@dancol.org>
3652         * net/tramp.el (tramp-methods): Document new functionality.
3653         * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
3654         tramp-hostname-checker if method provides one instead of scanning
3655         argument list for "%h" to decide hostname acceptability.
3657 2013-10-28  Michael Albinus  <michael.albinus@gmx.de>
3659         * net/tramp-sh.el (tramp-sh-handle-copy-directory):
3660         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
3661         Handle COPY-CONTENTS.  (Bug#15737)
3663 2013-10-28  Daiki Ueno  <ueno@gnu.org>
3665         * epa-file.el
3666         (epa-file-cache-passphrase-for-symmetric-encryption):
3667         Document that this option has no effect with GnuPG 2.0 (bug#15552).
3669 2013-10-27  Xue Fuqiao  <xfq.free@gmail.com>
3671         * image.el (defimage):
3672         (image-load-path): Doc fixes.
3674 2013-10-27  Alan Mackenzie  <acm@muc.de>
3676         Indent statements in macros following "##" correctly.
3677         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
3678         Modify the "#" arm of a cond form to handle "#" and "##" operators.
3680 2013-10-27  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
3682         * linum.el (linum-update-window): Fix boundary test (bug#13446).
3684 2013-10-27  Dmitry Gutov  <dgutov@yandex.ru>
3686         * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
3687         after `=' is probably a new expression.
3689 2013-10-27  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
3691         * man.el (man-imenu-title): New option.
3692         (Man-mode-map): Add menu.  (Bug#15722)
3693         (Man-mode): Add imenu to menu.
3695 2013-10-26  Dmitry Gutov  <dgutov@yandex.ru>
3697         * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
3698         specific in what the first arg can be: a non-keyword word,
3699         string/regexp/percent literal opener, opening paren, or unary
3700         operator followed directly by word.
3702 2013-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3704         * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
3705         (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
3706         (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
3707         (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
3708         Remove vars, they do not apply any more.
3709         (prolog-mode-abbrev-table): Remove redundant declaration.
3710         (prolog-upper-case-string, prolog-lower-case-string): Remove.
3711         (prolog-use-smie): Remove.
3712         (prolog-smie-rules): Add indentation rule for the if-then-else layout
3713         supported by prolog-electric-if-then-else-flag.
3714         (prolog-mode-variables, prolog-menu): Use setq-local.
3715         (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
3716         Remove binding to `Backspace' since this key doesn't exist anyway.
3717         Remove bindings for electric self-inserting keys.
3718         (prog-mode): Assume it's defined.
3719         (prolog-post-self-insert): New function.
3720         (prolog-mode): Use it.
3721         (prolog-indent-line, prolog-indent-level)
3722         (prolog-find-indent-of-matching-paren)
3723         (prolog-indentation-level-of-line, prolog-goto-comment-column)
3724         (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
3725         (prolog-goto-next-paren, prolog-in-string-or-comment)
3726         (prolog-tokenize, prolog-inside-mline-comment)
3727         (prolog-find-start-of-mline-comment): Remove functions.
3728         (prolog-find-unmatched-paren, prolog-clause-end)
3729         (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
3730         (prolog-electric--if-then-else): Rename from
3731         prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
3732         (prolog-tokenize-searchkey): Remove const.
3733         (prolog-clause-info): Use forward-sexp.
3734         (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
3735         (prolog-electric-if-then-else): Remove commands.
3736         (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
3737         for use in post-self-insert-hook.
3738         (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
3739         for use in post-self-insert-hook.
3740         (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
3741         for use in post-self-insert-hook.
3742         (prolog-electric--underscore): Rename from prolog-electric--underscore;
3743         adapt it for use in post-self-insert-hook.
3745 2013-10-25  Michael Albinus  <michael.albinus@gmx.de>
3747         * emacs-lisp/ert.el (ert-run-tests-interactively):
3748         Use `completing-read'.  (Bug#9756)
3750 2013-10-25  Eli Zaretskii  <eliz@gnu.org>
3752         * simple.el (line-move): Call line-move-1 instead of
3753         line-move-visual when the current window hscroll is zero, but
3754         temporary-goal-column indicates we will need to hscroll as result
3755         of the movement.  (Bug#15712)
3757 2013-10-25  Dmitry Gutov  <dgutov@yandex.ru>
3759         * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
3760         capitalization.  Use :visible instead of :active.
3761         Fix `ruby-indent-exp' reference.  Add menu items for the generic
3762         commands that are used with SMIE.
3763         (ruby-do-end-to-brace): Insert space after `{'.
3765 2013-10-25  John Anthony  <john@jo.hnanthony.com>
3767         * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu.  (Bug#15600)
3769         * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu.  (Bug#15599)
3771 2013-10-25  Glenn Morris  <rgm@gnu.org>
3773         * vc/vc.el (vc-print-log): Don't use a working revision unless
3774         one was explicitly specified.  (Bug#15322)
3776 2013-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
3778         * subr.el (add-to-list): Preserve return value in compiler-macro
3779         (bug#15692).
3781 2013-10-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
3783         * progmodes/octave.el (octave-lookfor): Handle empty lookfor
3784         result.  Ask user to retry using '-all' flag.  (Bug#15701)
3786 2013-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
3788         * emacs-lisp/smie.el: New smie-config system.
3789         (smie-config): New defcustom.
3790         (smie-edebug, smie-config-show-indent, smie-config-set-indent)
3791         (smie-config-guess, smie-config-save): New commands.
3792         (smie-config--mode-local, smie-config--buffer-local)
3793         (smie-config--trace, smie-config--modefuns): New vars.
3794         (smie-config--advice, smie-config--mode-hook)
3795         (smie-config--setter, smie-config-local, smie-config--get-trace)
3796         (smie-config--guess-value, smie-config--guess): New functions.
3797         (smie-indent-forward-token, smie-indent-backward-token): Don't copy
3798         text properties.  Treat "string fence" syntax like string syntax.
3800         * progmodes/sh-script.el (sh-use-smie): Change default.
3801         (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
3802         (sh-var-value): Simplify by CSE.
3803         (sh-show-indent, sh-set-indent, sh-learn-line-indent)
3804         (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
3805         is used.
3806         (sh-guess-basic-offset): Use cl-incf.
3807         (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
3809 2013-10-24  Helmut Eller  <eller.helmut@gmail.com>
3811         * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
3812         (bug#15699).
3814 2013-10-24  Glenn Morris  <rgm@gnu.org>
3816         * Makefile.in (abs_top_srcdir): Remove.
3817         (update-subdirs): Use relative path to update-subdirs.
3819 2013-10-24  Eli Zaretskii  <eliz@gnu.org>
3821         * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
3822         ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
3823         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
3824         Call unmsys--file-name before expand-file-name, not after it.
3826 2013-10-24  Michael Albinus  <michael.albinus@gmx.de>
3828         * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
3829         (ert-test-skipped): New error.
3830         (ert-skip, ert-stats-skipped): New defuns.
3831         (ert--skip-unless): New macro.
3832         (ert-test-skipped): New struct.
3833         (ert--run-test-debugger, ert-test-result-type-p)
3834         (ert-test-result-expected-p, ert--stats, ert-stats-completed)
3835         (ert--stats-set-test-and-result, ert-char-for-test-result)
3836         (ert-string-for-test-result, ert-run-tests-batch)
3837         (ert--results-update-ewoc-hf, ert-run-tests-interactively):
3838         Handle skipped tests.  (Bug#9803)
3840 2013-10-24  Glenn Morris  <rgm@gnu.org>
3842         * Makefile.in (check-declare): Remove unnecessary path in -l argument.
3844         * Makefile.in (abs_top_srcdir): New, set by configure.
3845         (update-subdirs): Correct build-aux location.
3847 2013-10-24  Dmitry Gutov  <dgutov@yandex.ru>
3849         * vc/vc.el (vc-print-root-log): Always set `default-directory'
3850         value, whether we could auto-deduce `backend', or not.
3852         * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
3853         with parameters" example.  Simplify the "is it block or is it
3854         hash" check, but also make it more thorough.
3856 2013-10-23  Masashi Fujimoto  <masfj.dev@gmail.com>  (tiny change)
3858         * battery.el (battery-pmset): Handle OS X Mavericks.  (Bug#15694)
3860 2013-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3862         * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
3863         { if it is hanging.
3865         * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
3866         :before ";".
3868 2013-10-23  Jed Brown  <jed@59A2.org>  (tiny change)
3870         * progmodes/compile.el (compilation-directory-matcher)
3871         (compilation-page-delimiter):
3872         Support GNU Make-4.0 directory quoting.  (Bug#15678)
3874 2013-10-23  Leo Liu  <sdl.web@gmail.com>
3876         * ido.el (ido-tidy): Handle read-only text.
3878 2013-10-23  Glenn Morris  <rgm@gnu.org>
3880         * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
3881         (emacs, compile, compile-always):
3882         Quote entities that might contain whitespace.
3883         (custom-deps, finder-data, autoloads): Use abs_lisp.
3884         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
3885         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
3886         ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
3888 2013-10-23  Dmitry Gutov  <dgutov@yandex.ru>
3890         * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
3891         Use `following-char'.
3893 2013-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
3895         * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
3896         * progmodes/ruby-mode.el (ruby-smie-rules):
3897         Remove corresponding workaround.  Fix indentation rule of ";" so it
3898         also applies when ";" is the parent.
3900 2013-10-22  Xue Fuqiao  <xfq.free@gmail.com>
3902         * frame.el (display-screens, display-pixel-height)
3903         (display-pixel-width, display-mm-width, display-backing-store)
3904         (display-save-under, display-planes, display-color-cells)
3905         (display-visual-class, display-monitor-attributes-list):
3906         Mention the optional ‘display’ argument in doc strings.
3908 2013-10-22  Michael Gauland  <mikelygee@amuri.net>
3910         * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
3911         viewers such as evince when ebnf-production-name-p is nil.  (Bug#15625)
3913 2013-10-21  Dmitry Gutov  <dgutov@yandex.ru>
3915         * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
3916         TODO.  Add "." after " @ ".
3917         (ruby-smie--at-dot-call): New function.  Checks if point at method
3918         call with explicit target.
3919         (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
3920         to the method name tokens when it precedes them.
3921         (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
3922         (ruby-smie-rules): Add rule for indentation before and after "."
3923         token.
3925 2013-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
3927         * textmodes/remember.el (remember-diary-extract-entries):
3928         Avoid add-to-list.
3930         * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
3931         an instruction.
3933 2013-10-21  Dmitry Gutov  <dgutov@yandex.ru>
3935         * progmodes/ruby-mode.el (ruby-smie-grammar):
3936         Add (almost) all infix operators.
3937         (ruby-smie--implicit-semi-p): Add new operator chars.
3939         * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
3940         `smie-down-list'.
3941         (ruby-smie--args-separator-p): Check that there's no newline
3942         between method call and its arguments.
3944 2013-10-20  Alan Mackenzie  <acm@muc.de>
3946         Allow comma separated lists after Java "implements".
3948         * progmodes/cc-engine.el (c-backward-over-enum-header):
3949         Parse commas.
3950         * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
3951         from a "disallowed" list in enum fontification.
3953 2013-10-20  Johan Bockgård  <bojohan@gnu.org>
3955         * startup.el (default-frame-background-mode): Remove unused defvar.
3957         * progmodes/verilog-mode.el (verilog-mode): Don't set
3958         comment-indent-function globally.
3960 2013-10-20  Jan Djärv  <jan.h.d@swipnet.se>
3962         * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
3963         Move Info menu item creation to ns-win.el.
3965         * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
3966         in menu bar.
3968         * menu-bar.el: Move GNUstep specific menus...
3970         * term/ns-win.el (ns-initialize-window-system): ... to here.
3972 2013-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
3974         * simple.el (newline): Only run post-self-insert-hook when
3975         called interactively.
3977 2013-10-19  Johan Bockgård  <bojohan@gnu.org>
3979         * icomplete.el (icomplete-with-completion-tables): Add :version.
3981 2013-10-19  Alan Mackenzie  <acm@muc.de>
3983         Fix fontification bugs with constructors and const.
3985         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
3986         CASE 2) Remove the check for the absence of a suffix construct
3987         after a function declaration with only types (no identifiers) in
3988         the parentheses.  Also, accept a function declaration with just a
3989         type inside the parentheses, if this type can be positively
3990         recognised as such, or if a prefix keyword like "explicit" nails
3991         down the construct as a declaration.
3993 2013-10-19  Eli Zaretskii  <eliz@gnu.org>
3995         * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
3996         TTY menu actions and down-mouse-N to tty-menu-ignore.  This solves
3997         the problem whereby selecting a menu item that leads to a
3998         minibuffer prompt moves the cursor out of the minibuffer window,
3999         making it hard to type at the prompt.  Suggested by Stefan Monnier
4000         <monnier@iro.umontreal.ca>.
4002 2013-10-19  Jan Djärv  <jan.h.d@swipnet.se>
4004         * menu-bar.el: Don't make Services menu.
4006 2013-10-19  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
4008         * ffap.el: Handle "/usr/include/c++/<version>" directories.
4009         (ffap-alist): Use ffap-c++-mode for c++-mode.
4010         (ffap-c++-path): New variable.
4011         (ffap-c++-mode): New function.
4013 2013-10-19  Joe Vornehm Jr.  <joe.vornehm@gmail.com>  (tiny change)
4015         * ido.el (dired-other-frame): Only list directories.  (Bug#15638)
4017 2013-10-18  Michael Albinus  <michael.albinus@gmx.de>
4019         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
4020         introduced on 2013-09-08, which results in an infinite loop
4021         requesting a password.
4023 2013-10-18  Glenn Morris  <rgm@gnu.org>
4025         * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
4027 2013-10-18  Wilson Snyder  <wsnyder@wsnyder.org>
4029         Sync with upstream verilog-mode revision 1a6ecec7.
4030         * progmodes/verilog-mode.el (verilog-mode-version): Update.
4031         (verilog-mode-release-date): Remove.
4032         (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
4033         (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
4034         (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
4035         (verilog-auto-tieoff-ignore-regexp)
4036         (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
4037         (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
4038         (verilog-signals-with, verilog-dir-cache-preserving)
4039         (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
4040         Doc fixes.
4041         (verilog-case-fold): New option, to control case folding in
4042         regexp searches, bug597.
4043         (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
4044         (verilog-string-match-fold, verilog-in-paren-count)
4045         (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
4046         (verilog-at-close-struct-p): New functions.
4047         (verilog-beg-block-re-ordered, verilog-extended-case-re)
4048         (verilog-forward-sexp, verilog-set-auto-endcomments):
4049         (verilog-leap-to-case-head): Handle "unique0" case.
4050         (verilog-in-constraint-re): New constant.
4051         (verilog-keywords, verilog-type-font-keywords):
4052         Add some SystemVerilog 1800-2012 keywords.
4053         (verilog-label-be): Remove unimplemented argument, bug669.
4054         (verilog-batch-execute-func): When batch expanding clear
4055         create-lockfiles to prevent spurious user locks when a file ends
4056         up not changing.
4057         (verilog-calculate-indent, verilog-calc-1)
4058         (verilog-at-close-constraint-p, verilog-at-constraint-p)
4059         (verilog-do-indent): Fix indentation of nested constraints
4060         and structures.
4061         (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
4062         (verilog-auto-inst-param): Use verilog-string-match-fold.
4063         (verilog-read-inst-module-matcher):
4064         Fix AUTOINST on gate primitives with #1.
4065         (verilog-read-decls): Fix double-declaring user-defined typed signals.
4066         Reads all user-defined typed variables.
4067         (verilog-read-defines): Fix reading definitions inside comments, bug647.
4068         (verilog-signals-matching-regexp)
4069         (verilog-signals-not-matching-regexp, verilog-auto):
4070         Respect verilog-case-fold.
4071         (verilog-diff-report): Fix line count.
4072         (verilog-auto-assign-modport): Remove unused local `modi'.
4073         (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
4074         better handle multidimensional arrays.
4075         Fix packed array ports misadding bit index in AUTOINST, bug637.
4076         (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
4077         to not double-declare existing outputs and inputs, respectively.
4078         (verilog-template-map): Bind U to verilog-sk-uvm-component.
4079         (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
4080         (verilog-sk-uvm-component): New skeleton.
4081         (verilog-submit-bug-report): Add verilog-case-fold,
4082         remove verilog-mode-release-date.
4084 2013-10-17  Barry O'Reilly  <gundaetiapo@gmail.com>
4086         * subr.el (sit-for): Call (input-pending-p t) so as to behave
4087         as before.
4089 2013-10-18  Reuben Thomas  <rrt@sc3d.org>
4091         * textmodes/remember.el (remember): Set buffer-offer-save in
4092         remember buffers (bug#13566).
4094 2013-10-18  Daniel Colascione  <dancol@dancol.org>
4096         When evaluating forms in ielm, direct standard output to ielm
4097         buffer.  Add new ielm-return-for-effect command.  Remove trailing
4098         whitespace throughout.
4100         * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
4101         (ielm-return-for-effect): New command.
4102         (ielm-send-input): Accept optional `for-effect' parameter.
4103         (ielm-eval-input): Accept optional `for-effect' parameter.
4104         Bind `standard-output' to stream we create using
4105         `ielm-standard-output-impl'.  Suppress printing result when
4106         `for-effect'.
4107         (ielm-standard-output-impl): New function.
4108         (inferior-emacs-lisp-mode): Explain new features in documentation.
4110 2013-10-17  Michael Albinus  <michael.albinus@gmx.de>
4112         Code cleanup.
4114         * net/tramp.el (tramp-debug-message): Do not check for connection
4115         buffer.
4116         (tramp-message): Use "vector" connection property.
4118         * net/tramp.el (tramp-rfn-eshadow-update-overlay)
4119         (tramp-equal-remote, tramp-eshell-directory-change)
4120         * net/tramp-adb.el (tramp-adb-handle-copy-file)
4121         (tramp-adb-handle-rename-file)
4122         * net/tramp-cmds.el (tramp-list-remote-buffers)
4123         (tramp-cleanup-connection, tramp-cleanup-this-connection)
4124         * net/tramp-compat.el (tramp-compat-process-running-p)
4125         * net/tramp-ftp.el (tramp-ftp-file-name-handler)
4126         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
4127         (tramp-gvfs-handle-rename-file)
4128         * net/tramp-sh.el (tramp-sh-handle-set-file-times)
4129         (tramp-set-file-uid-gid)
4130         * net/tramp-smb.el (tramp-smb-handle-copy-file)
4131         (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
4132         of `file-remote-p'.
4134         * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
4135         * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
4136         (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
4137         (tramp-gw-open-network-stream): Suppress unrelated traces.
4139         * net/tramp-adb.el (tramp-adb-maybe-open-connection)
4140         * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
4141         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
4142         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
4143         connection property.
4145         * net/tramp-cache.el (top): Suppress traces when reading
4146         persistency file.
4148         * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
4149         Refactor common code.  Improve debug message.
4150         (tramp-maybe-open-connection)
4151         * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
4152         connection buffer too early.
4154         * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
4155         from `tramp-smb-actions-with-acl'.
4156         (tramp-smb-actions-set-acl): New defconst.
4157         (tramp-smb-handle-copy-directory)
4158         (tramp-smb-action-get-acl): New defun, renamed from
4159         `tramp-smb-action-with-acl'.
4160         (tramp-smb-action-set-acl): New defun.
4161         (tramp-smb-handle-set-file-acl): Rewrite.
4163 2013-10-17  Glenn Morris  <rgm@gnu.org>
4165         * indent.el (indent-rigidly): Fix 2013-10-08 change.  (Bug#15635)
4167 2013-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
4169         * skeleton.el (skeleton-newline): Remove.
4170         (skeleton-internal-1): Use (insert "\n") instead.
4172         * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
4173         let-bindings.
4175         * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
4176         forward-sexp-function while we redo its job (bug#15613).
4178 2013-10-17  Jay Belanger  <jay.p.belanger@gmail.com>
4180         * calc/calc-comb.el (math-prime-test): Don't assume large integers are
4181         represented by lists.
4183 2013-10-16  Glenn Morris  <rgm@gnu.org>
4185         * tmm.el (tmm--history): New dynamic variable.
4186         (tmm-prompt): Use tmm--history in place of `history'.  (Bug#15623)
4188 2013-10-16  Michael Albinus  <michael.albinus@gmx.de>
4190         * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
4191         (tramp-smb-errors): Add error messages.
4192         (tramp-smb-actions-with-acl): New defconst.
4193         (tramp-smb-file-name-handler-alist) [set-file-acl]: Add handler.
4194         (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
4195         (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
4196         (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
4197         (tramp-smb-get-stat-capability): Fix tests.
4199 2013-10-16  Dima Kogan  <dima@secretsauce.net>  (tiny change)
4201         * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
4202         (bug#15580).
4204 2013-10-16  Glenn Morris  <rgm@gnu.org>
4206         * ansi-color.el (ansi-color-drop-regexp):
4207         Add 1J, 1K, 2K.  (Bug#15617)
4209         * files.el (hack-local-variables--warned-lexical): New.
4210         (hack-local-variables):
4211         Warn about misplaced lexical-binding.  (Bug#15616)
4213         * net/eww.el (eww-render): Always set eww-current-url,
4214         and update header line.  (Bug#15622)
4215         (eww-display-html): ... Rather than just doing it here.
4217 2013-10-15  Eli Zaretskii  <eliz@gnu.org>
4219         * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
4220         menu navigations commands.
4222 2013-10-14  Dima Kogan  <dima@secretsauce.net>  (tiny change)
4224         * progmodes/subword.el (subword-capitalize): Be careful when
4225         the search for [[:alpha:]] fails (bug#15580).
4227 2013-10-14  Eli Zaretskii  <eliz@gnu.org>
4229         * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
4230         to commands that scroll the menu.
4232 2013-10-14  Dmitry Gutov  <dgutov@yandex.ru>
4234         * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
4235         Handle methods ending with `?' and `!'.
4237 2013-10-14  Akinori MUSHA  <knu@iDaemons.org>
4239         * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
4240         `japanese-cp932' to `cp932' to fix the problem where saving a
4241         source file written in Shift_JIS twice would end up having
4242         `coding: japanese-cp932' which Ruby could not recognize.
4243         (ruby-mode-set-encoding): Add support for encodings mapped to nil
4244         in `ruby-encoding-map'.
4245         (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
4246         doesn't need to be explicitly declared in magic comment.
4247         (ruby-encoding-map): Add type declaration for better customize UI.
4249 2013-10-13  Glenn Morris  <rgm@gnu.org>
4251         * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
4252         Occur buffers are read-only.  http://bugs.debian.org/720775
4254         * emacs-lisp/authors.el (authors-fixed-entries):
4255         Comment out old alpha stuff.
4257 2013-10-13  Dmitry Gutov  <dgutov@yandex.ru>
4259         * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
4260         to `after-save-hook' instead of `before-save-hook'.
4261         (ruby-mode-set-encoding): Use the value of coding system used to
4262         write the file.  Call `basic-save-buffer-1' after modifying the
4263         buffer.
4265 2013-10-13  Alan Mackenzie  <acm@muc.de>
4267         Fix indentation/fontification of Java enum with
4268         "implements"/generic.
4270         * progmodes/cc-engine.el (c-backward-over-enum-header):
4271         Extracted from the three other places and enhanced to handle generics.
4272         (c-inside-bracelist-p): Uses new function above.
4273         * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
4274         function above.
4275         (c-font-lock-enum-tail): Uses new function above.
4277 2013-10-13  Kenichi Handa  <handa@gnu.org>
4279         * international/mule-cmds.el (select-safe-coding-system): Remove a
4280         superfluous condition in chekcing whether a coding system is safe
4281         or not.
4283 2013-10-13  Oleh Krehel  <ohwoeowho@gmail.com>
4285         * replace.el (how-many): Fix rstart and !rend case.  (Bug#15589)
4287 2013-10-13  Andreas Politz  <politza@hochschule-trier.de>
4289         * progmodes/sql.el (sql-add-product): Fix paren typo.  (Bug#15435)
4291 2013-10-13  Glenn Morris  <rgm@gnu.org>
4293         * menu-bar.el (menu-bar-update-buffers):
4294         Unify Buffers menu prompt string.  (Bug#15576)
4296         * face-remap.el (text-scale-adjust): Doc fix.  (Bug#15434)
4298         * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
4299         Add some entries.
4300         (authors-fixed-entries): Use accented form of name.
4302 2013-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4304         * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
4305         method calls (bug#15594).
4306         (ruby-smie--args-separator-p): New function.
4307         (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
4308         recognize paren-free method calls.
4310         * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
4311         internals of universal-argument.
4313 2013-10-11  Eli Zaretskii  <eliz@gnu.org>
4315         * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
4316         Bind all menu-bar sequences to tty-menu-exit -- this pops down a
4317         dropped menu on second mouse click on the menu bar.
4319 2013-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
4321         * progmodes/sh-script.el: Provide simpl(e|istic) completion.
4322         (explicit-shell-file-name): Declare.
4323         (sh--vars-before-point, sh--cmd-completion-table): New functions.
4324         (sh-completion-at-point-function): New function.
4325         (sh-mode): Use it.
4326         (sh-smie--keyword-p): Remove unused argument.
4327         (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
4328         vars.
4329         (sh-set-shell): Always setup SMIE, even if we use the
4330         old indentation code.
4332 2013-10-11  Dmitry Gutov  <dgutov@yandex.ru>
4334         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
4335         cases of ? and =.
4336         (ruby-smie-rules): Simplify the "do" rule.  The cases when the
4337         predicate would return nil are almost non-existent.
4338         (ruby-smie--redundant-do-p): Include "until" and "for" statements.
4340         * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
4341         cache also after commands that modify the buffer but don't move
4342         point.
4344 2013-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4346         * env.el (substitute-env-in-file-name): New function.
4347         (substitute-env-vars): Extend the meaning of the optional arg.
4349 2013-10-10  Eli Zaretskii  <eliz@gnu.org>
4351         * term/w32-win.el (dynamic-library-alist): Define separate lists
4352         of GIF DLLs for versions before and after 5.0.0 of giflib.
4353         (Bug#15531)
4355 2013-10-10  João Távora  <joaotavora@gmail.com>
4357         * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
4358         not locked, use last revision and current source as
4359         defaults.  (Bug#15569)
4361 2013-10-10  Masatake YAMATO  <yamato@redhat.com>
4363         * menu-bar.el (menu-bar-open): Don't use popup-menu if
4364         menu-bar is hidden.
4366 2013-10-10  Martin Rudalics  <rudalics@gmx.at>
4368         * window.el (pop-to-buffer-same-window): Fix doc-string.
4369         (Bug#15492)
4371 2013-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4373         * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
4375 2013-10-10  Andrei Chițu  <andrei.chitu1@gmail.com>  (tiny change)
4377         * calendar/icalendar.el (icalendar-import-file):
4378         Fix interactive spec.  (Bug#15482)
4380 2013-10-10  Glenn Morris  <rgm@gnu.org>
4382         * desktop.el (desktop-save): Default to saving in .emacs.d,
4383         since PWD is no longer in desktop-path by default.  (Bug#15319)
4385         * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
4386         now that text mode has a menu with the same entry.
4387         (menu-bar-text-mode-auto-fill): Remove now unused func.
4388         * textmodes/text-mode.el (text-mode-map):
4389         Use auto-fill help text from menu-bar.el.
4391 2013-10-10  John Anthony  <john@jo.hnanthony.com>
4393         * textmodes/text-mode.el (text-mode-map): Add a menu.  (Bug#15562)
4395 2013-10-09  Juri Linkov  <juri@jurta.org>
4397         * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
4398         instead of this-command-keys.  Add universal-argument-more and
4399         universal-argument-minus to the list of prefix commands.  (Bug#15568)
4401 2013-10-09  Glenn Morris  <rgm@gnu.org>
4403         * vc/vc-svn.el (vc-svn-create-repo):
4404         Expand paths in file://... url.  (Bug#15446)
4406         * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
4407         Add some entries.
4408         (authors): Remove unused local variables.
4410 2013-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4412         * profiler.el: Create a more coherent calltree from partial backtraces.
4413         (profiler-format): Hide the tail with `invisible' so that C-s can still
4414         find the hidden elements.
4415         (profiler-calltree-depth): Don't recurse so enthusiastically.
4416         (profiler-function-equal): New hash-table-test.
4417         (profiler-calltree-build-unified): New function.
4418         (profiler-calltree-build): Use it.
4419         (profiler-report-make-name-part): Indent the calltree less.
4420         (profiler-report-mode): Add visibility specs for profiler-format.
4421         (profiler-report-expand-entry, profiler-report-toggle-entry):
4422         Expand the whole subtree when provided with a prefix arg.
4424 2013-10-09  Dmitry Gutov  <dgutov@yandex.ru>
4426         * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
4427         iuwu-mod token.
4428         (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
4429         hanging iuwu-mod token.
4430         (ruby-smie--forward-token): Do not include a dot after a token in
4431         that token.
4432         (ruby-smie--backward-token): Likewise.
4434 2013-10-08  Juri Linkov  <juri@jurta.org>
4436         * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
4437         to isearch-other-control-char.
4438         (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
4439         and isearch-post-command-hook to post-command-hook.
4440         (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
4441         and isearch-post-command-hook from post-command-hook.
4442         (isearch-unread-key-sequence)
4443         (isearch-reread-key-sequence-naturally)
4444         (isearch-lookup-scroll-key, isearch-other-control-char)
4445         (isearch-other-meta-char): Remove functions.
4446         (isearch-pre-command-hook, isearch-post-command-hook):
4447         New functions based on isearch-other-meta-char rewritten
4448         relying on the new behavior of overriding-terminal-local-map
4449         that does not replace the local keymaps any more.  (Bug#15200)
4451 2013-10-08  Eli Zaretskii  <eliz@gnu.org>
4453         Support menus on text-mode terminals.
4454         * tmm.el (tmm-menubar): Adapt doc string to TTY menus
4455         functionality.
4457         * tooltip.el (tooltip-mode): Don't error out on TTYs.
4459         * menu-bar.el (popup-menu, popup-menu-normalize-position):
4460         Move here from mouse.el.
4461         (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
4462         and arrow keys.
4463         (tty-menu-navigation-map): New map for TTY menu navigation.
4465         * loadup.el ("tooltip"): Load even if x-show-tip is not available.
4467         * frame.el (display-mouse-p): Report text-mode mouse as available
4468         on w32.
4469         (display-popup-menus-p): Report availability if mouse is
4470         available; don't condition on window-system.
4472         * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
4473         (tty-menu-selected-face): New faces.
4475 2013-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4477         * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
4478         (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
4479         (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
4480         (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
4481         New constants.
4482         (lisp-mode-variables): New `elisp' argument.
4483         (emacs-lisp-mode): Use it.
4484         * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
4485         (lisp-font-lock-keywords-2): Move to lisp-mode.el.
4487         * indent.el: Use lexical-binding.
4488         (indent-region): Add progress reporter.
4489         (tab-stop-list): Make it implicitly extend to infinity by repeating the
4490         last step.
4491         (indent--next-tab-stop): New function to implement this behavior.
4492         (tab-to-tab-stop, move-to-tab-stop): Use it.
4494 2013-10-08  Teemu Likonen  <tlikonen@iki.fi>
4496         * indent.el (indent-rigidly--current-indentation): New function.
4497         (indent-rigidly-map): New var.
4498         (indent-rigidly): Use it to provide interactive mode (bug#8196).
4500 2013-10-08  Bastien Guerry  <bzg@gnu.org>
4502         * register.el (insert-register): Fix 2013-10-07 change.
4504 2013-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4506         * progmodes/perl-mode.el: Use lexical-binding.
4507         Remove redundant :group args.
4508         (perl-nochange): Change default to be closer to other major modes's
4509         standard behavior.
4510         (perl-indent-line): Don't consider text on current line as a
4511         valid beginning of function from which to indent.
4513         * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
4514         with more than one argument (bug#15538).
4516         * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
4518         * vc/pcvs.el: Use lexical-binding.
4519         (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
4520         environment of `eval'.
4521         (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
4522         than a list of expressions.  Adjust callers.
4523         * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
4525 2013-10-07  Dmitry Gutov  <dgutov@yandex.ru>
4527         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
4528         case of the dot in a chained method call being on the following line.
4530 2013-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4532         * electric.el (electric-indent-inhibit): New var.
4533         (electric-indent-post-self-insert-function): Use it.
4534         * progmodes/python.el (python-mode): Set it.
4536         * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
4537         open braces.
4539         * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
4541         * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
4542         (css-mode): Use electric-indent-chars.
4544         * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
4545         (font-lock-beg, font-lock-end): Move before first use.
4546         (nxml-mode): Use syntax-propertize-function.
4547         (nxml-after-change, nxml-after-change1): Adjust accordingly.
4548         (nxml-extend-after-change-region): Remove.
4549         * nxml/xmltok.el: Use lexical-binding.
4550         (xmltok-save): Use `declare'.
4551         (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
4552         * nxml/nxml-util.el: Use lexical-binding.
4553         (nxml-with-degradation-on-error, nxml-with-invisible-motion):
4554         Use `declare'.
4555         * nxml/nxml-ns.el: Use lexical-binding.
4556         (nxml-ns-save): Use `declare'.
4557         (nxml-ns-prefixes-for): Avoid add-to-list.
4558         * nxml/rng-match.el: Use lexical-binding.
4559         (rng--ipattern): Use cl-defstruct.
4560         (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
4561         (rng-cons-group-after, rng-subst-group-after)
4562         (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
4563         Use closures instead of `(lambda...).
4565 2013-10-07  Michael Albinus  <michael.albinus@gmx.de>
4567         * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
4568         of BEG and END.
4570         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
4571         Use `tramp-handle-insert-file-contents'.
4572         (tramp-gvfs-handle-insert-file-contents): Remove function.
4574         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
4575         Use `save-restriction' in order to keep markers.
4577         * net/trampver.el: Update release number.
4579 2013-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
4581         * progmodes/compile.el (compilation-parse-errors):
4582         Use compilation--put-prop.
4583         (compilation--ensure-parse): Check compilation-multiline.
4585         * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
4587         * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
4588         lexical-binding.
4590         * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
4592         * progmodes/ruby-mode.el: Fix recently added tests.
4593         (ruby-smie-grammar): Add - and +.
4594         (ruby-smie--redundant-do-p, ruby-smie--forward-id)
4595         (ruby-smie--backward-id): New functions.
4596         (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
4597         (ruby-smie-rules): Handle hanging do.  Get rid of hack, not needed
4598         any more.
4600 2013-10-07  Leo Liu  <sdl.web@gmail.com>
4602         * register.el (register-preview-delay)
4603         (register-preview-functions): New variables.
4604         (register-read-with-preview, register-preview)
4605         (register-describe-oneline): New functions.
4606         (point-to-register, window-configuration-to-register)
4607         (frame-configuration-to-register, jump-to-register)
4608         (number-to-register, view-register, insert-register)
4609         (copy-to-register, append-to-register, prepend-to-register)
4610         (copy-rectangle-to-register): Use register-read-with-preview to
4611         read register.  (Bug#15525)
4613 2013-10-06  Dato Simó  <dato@net.com.org.es>  (tiny change)
4615         * net/network-stream.el (network-stream-open-starttls): Don't add
4616         --insecure if it's already present, because that gnutls-cli
4617         rejects getting that parameter twice.
4619 2013-10-06  Dmitry Gutov  <dgutov@yandex.ru>
4621         * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
4622         keyword, too.
4624 2013-10-05  Dmitry Gutov  <dgutov@yandex.ru>
4626         * newcomment.el (comment-use-global-state): Change default value
4627         to t, mark obsolete (Bug#15251).
4628         (comment-beginning): In addition to `comment-to-syntax', check the
4629         value of `comment-use-global-state'.
4631 2013-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
4633         * progmodes/ruby-mode.el (ruby-use-smie): Change default.
4634         (ruby-comment-column): Follow the global default, by default.
4635         (ruby-smie-grammar): Add assignment syntax.
4636         (ruby-smie--implicit-semi-p): No implicit semi-colon after an
4637         open-paren, a comma, or a \.
4638         (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
4639         and line continuations.
4640         (ruby-smie-rules): Adjust handling of open-paren, now that it's never
4641         followed by implicit semi-colons.  Add rule for string concatenation
4642         and for indentation at BOB.
4643         (ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
4645         * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
4646         calling next-sexp, since next-token may have skipped chars which
4647         next-sexp doesn't know should be skipped!
4649 2013-10-05  Leo Liu  <sdl.web@gmail.com>
4651         * progmodes/octave.el (octave-send-region):
4652         Call compilation-forget-errors.
4654 2013-10-04  Xue Fuqiao  <xfq.free@gmail.com>
4656         * vc/vc-svn.el (vc-svn-find-admin-dir):
4657         * vc/vc-rcs.el (vc-rcs-find-admin-dir):
4658         * vc/vc-mtn.el (vc-mtn-find-admin-dir):
4659         * vc/vc-cvs.el (vc-cvs-find-admin-dir):
4660         * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
4662 2013-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
4664         * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
4666 2013-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
4668         * subr.el (read-passwd): Hide chars even when called within a context
4669         where after-change-functions is disabled (bug#15501).
4670         (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
4671         until we removed ourself from overriding-terminal-local-map.
4673 2013-10-04  Leo Liu  <sdl.web@gmail.com>
4675         * progmodes/octave.el (inferior-octave-mode):
4676         Call compilation-forget-errors.
4678 2013-10-04  Xue Fuqiao  <xfq.free@gmail.com>
4680         * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
4682 2013-10-04  Michael Albinus  <michael.albinus@gmx.de>
4684         * net/secrets.el (secrets-create-collection): Add optional
4685         argument ALIAS.  Use proper Label keyword.  Append ALIAS as
4686         dbus-call-method argument.  (Bug#15516)
4688 2013-10-04  Leo Liu  <sdl.web@gmail.com>
4690         * progmodes/octave.el (inferior-octave-error-regexp-alist)
4691         (inferior-octave-compilation-font-lock-keywords): New variables.
4692         (compilation-error-regexp-alist)
4693         (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
4694         (inferior-octave-mode): Use compilation-shell-minor-mode.
4696 2013-10-04  Jorgen Schaefer  <forcer@forcix.cx>
4698         * minibuffer.el (completion--replace): Be careful that `end' might be
4699         a marker.
4701 2013-10-03  Daiki Ueno  <ueno@gnu.org>
4703         Add support for package signature checking.
4704         * emacs-lisp/package.el (url-http-file-exists-p)
4705         (epg-make-context, epg-context-set-home-directory)
4706         (epg-verify-string, epg-context-result-for)
4707         (epg-signature-status, epg-signature-to-string)
4708         (epg-check-configuration, epg-configuration)
4709         (epg-import-keys-from-file): Declare.
4710         (package-check-signature): New user option.
4711         (package-unsigned-archives): New user option.
4712         (package-desc): Add `signed' field.
4713         (package-load-descriptor): Set `signed' field if .signed file exists.
4714         (package--archive-file-exists-p): New function.
4715         (package--check-signature): New function.
4716         (package-install-from-archive): Check package signature.
4717         (package--download-one-archive): Check archive signature.
4718         (package-delete): Remove .signed file.
4719         (package-import-keyring): New command.
4720         (package-refresh-contents): Import default keyring.
4721         (package-desc-status): Add "unsigned" status.
4722         (describe-package-1, package-menu--print-info)
4723         (package-menu-mark-delete, package-menu--find-upgrades)
4724         (package-menu--status-predicate): Support "unsigned" status.
4726 2013-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4728         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
4729         the new compilation scheme using the new byte-codes.
4731         * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
4732         (byte-pophandler): New byte codes.
4733         (byte-goto-ops): Adjust accordingly.
4734         (byte-compile--use-old-handlers): New var.
4735         (byte-compile-catch): Use new byte codes depending on
4736         byte-compile--use-old-handlers.
4737         (byte-compile-condition-case--old): Rename from
4738         byte-compile-condition-case.
4739         (byte-compile-condition-case--new): New function.
4740         (byte-compile-condition-case): New function that dispatches depending
4741         on byte-compile--use-old-handlers.
4742         (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
4743         when we can.
4745         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
4746         Optimize under `condition-case' and `catch' if
4747         byte-compile--use-old-handlers is nil.
4748         (disassemble-offset): Handle new bytecodes.
4750 2013-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4752         * subr.el (error): Use `declare'.
4753         (decode-char, encode-char): Use advertised-calling-convention instead
4754         of the docstring to discourage use of the `restriction' arg.
4756 2013-10-03  Daiki Ueno  <ueno@gnu.org>
4758         * epg.el (epg-verify-file): Add a comment saying that it does not
4759         notify verification error as a return value nor a signal.
4760         (epg-verify-string): Ditto.
4762 2013-10-02  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
4764         * progmodes/compile.el (compilation-start): Try globbing the arg to
4765         `cd' (bug#15417).
4767 2013-10-02  Michael Albinus  <michael.albinus@gmx.de>
4769         Sync with Tramp 2.2.8.
4771         * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
4772         * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
4773         * net/trampver.el: Update release number.
4775 2013-10-01  Jan Djärv  <jan.h.d@swipnet.se>
4777         * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
4778         and default-process-coding-system for darwin only.
4780 2013-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4782         * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
4784 2013-10-01  Mitchel Humpherys  <mitch.special@gmail.com>  (tiny change)
4786         * vc/vc-git.el (vc-git-grep): Disable pager.
4788 2013-10-01  Dmitry Gutov  <dgutov@yandex.ru>
4790         * emacs-lisp/package.el (package-buffer-info, describe-package-1):
4791         Use :url instead of :homepage, as per
4792         http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
4794         * newcomment.el (comment-beginning): When `comment-use-syntax' is
4795         non-nil, use `syntax-ppss' (Bug#15251).
4797 2013-09-30  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
4799         * progmodes/octave.el (inferior-octave-startup-file):
4800         Prefer ~/.emacs.d/init_octave.m.
4802 2013-09-29  Dmitry Gutov  <dgutov@yandex.ru>
4804         * emacs-lisp/package.el (package-desc-from-define):
4805         Accept additional arguments as plist, convert them to an alist and store
4806         them in the `extras' slot.
4807         (package-generate-description-file): Convert extras alist back to
4808         plist and append to the `define-package' form arguments.
4809         (package--alist-to-plist): New function.
4810         (package--ac-desc): Add `extras' slot.
4811         (package--add-to-archive-contents): Check if the archive-contents
4812         vector is long enough, and if it is, pass its `extras' slot value
4813         to `package-desc-create'.
4814         (package-buffer-info): Call `lm-homepage', pass the returned value
4815         to `package-desc-from-define'.
4816         (describe-package-1): Render the homepage button (Bug#13291).
4818         * emacs-lisp/package-x.el (package-upload-buffer-internal):
4819         Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
4821 2013-09-29  Jan Djärv  <jan.h.d@swipnet.se>
4823         * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
4824         and default-process-coding-system to utf-8-unix (Bug#15402).
4826 2013-09-29  Xue Fuqiao  <xfq.free@gmail.com>
4828         * subr.el (looking-back): Do not recommend using looking-back.
4830 2013-09-28  Alan Mackenzie  <acm@muc.de>
4832         Fix indentation/fontification of Java enum with "implements".
4834         * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
4835         regexp which matches "implements", etc., in Java.
4836         * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
4837         specifier clauses coming after "enum".
4838         * progmodes/cc-fonts.el (c-font-lock-declarations)
4839         (c-font-lock-enum-tail): Check for extra specifier clauses coming
4840         after "enum".
4842 2013-09-28  Jan Djärv  <jan.h.d@swipnet.se>
4844         * faces.el (region): Change ns_selection_color to
4845         ns_selection_fg_color, add ns_selection_bg_color.
4847 2013-09-28  Leo Liu  <sdl.web@gmail.com>
4849         * progmodes/octave.el (inferior-octave-completion-table)
4850         (inferior-octave-completion-at-point): Minor tweaks.
4852         * textmodes/ispell.el (ispell-lookup-words): Rename from
4853         lookup-words.  (Bug#15460)
4854         (lookup-words): Obsolete.
4855         (ispell-complete-word, ispell-command-loop): All uses changed.
4857 2013-09-28  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
4859         * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
4860         (octave-mode-menu): Add octave-send-buffer.
4861         (octave-send-buffer): New function.
4863 2013-09-28  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
4865         * progmodes/octave.el (octave-mode-map): Add key binding for
4866         octave-lookfor.
4867         (octave-mode-menu): Add octave-lookfor.
4868         (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
4869         octave-lookfor.
4870         (octave-lookfor): New function.
4872 2013-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4874         * emacs-lisp/cl-macs.el:
4875         (cl--loop-destr-temps): Remove.
4876         (cl--loop-iterator-function): Rename from cl--loop-map-form and change
4877         its convention.
4878         (cl--loop-set-iterator-function): New function.
4879         (cl-loop): Adjust accordingly, so as not to use cl-subst.
4880         (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
4881         Bind `it' with `let' instead of substituting it with `cl-subst'.
4882         (cl--unused-var-p): New function.
4883         (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
4884         Eliminate some unused variable warnings (bug#15326).
4886 2013-09-27  Tassilo Horn  <tsdh@gnu.org>
4888         * doc-view.el (doc-view-scale-reset): Rename from
4889         `doc-view-reset-zoom-level'.
4890         (doc-view-scale-adjust): New command.
4891         (doc-view-mode-map): Remap `text-scale-adjust' bindings to
4892         `doc-view-scale-adjust'.
4894 2013-09-26  Tassilo Horn  <tsdh@gnu.org>
4896         * doc-view.el (doc-view-reset-zoom-level): New command.
4897         (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
4898         zoom commands (bug#15466).
4900 2013-09-26  Kenichi Handa  <handa@gnu.org>
4902         * international/quail.el (quail-help): Make it not a command.
4904 2013-09-26  Leo Liu  <sdl.web@gmail.com>
4906         * minibuffer.el (completion-all-sorted-completions): Make args
4907         optional as they are.
4909 2013-09-25  Daniel Colascione  <dancol@dancol.org>
4911         * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
4912         specs are and that they're not evaluated.
4914 2013-09-24  Sam Steingold  <sds@gnu.org>
4916         * midnight.el (clean-buffer-list-kill-regexps)
4917         (clean-buffer-list-kill-buffer-names): Update for the new Man
4918         buffer naming which includes the object name.
4920 2013-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4922         * eshell/esh-cmd.el (eshell--sep-terms): New var.
4923         (eshell-parse-command, eshell-parse-pipeline): Use it since
4924         eshell-separate-commands requires a dynamic scoped var.
4925         Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
4927 2013-09-23  Leo Liu  <sdl.web@gmail.com>
4929         * autoinsert.el (auto-insert-alist): Make the value of
4930         lexical-binding match its file setting.
4932 2013-09-23  Juanma Barranquero  <lekktu@gmail.com>
4934         * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
4936         * autoarg.el (autoarg-kp-digit-argument):
4937         * electric.el (Electric-command-loop):
4938         * kmacro.el (kmacro-step-edit-insert):
4939         Do not set universal-argument-num-events.
4941 2013-09-22  Leo Liu  <sdl.web@gmail.com>
4943         * files.el (interpreter-mode-alist): Add octave.
4945 2013-09-21  Alan Mackenzie  <acm@muc.de>
4947         C++: fontify identifier in declaration following "public:" correctly.
4948         * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
4949         to match "public", etc.
4950         (c-decl-prefix-re): Add ":" into the C++ value.
4951         * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
4952         bit.  Add a check for a ":" preceded by "public", etc.
4954 2013-09-21  Eli Zaretskii  <eliz@gnu.org>
4956         * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
4957         recognized by GDB 7.5 and later.
4959 2013-09-21  Xue Fuqiao  <xfq.free@gmail.com>
4961         * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
4963 2013-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
4965         * subr.el (internal--call-interactively): New const.
4966         (called-interactively-p): Use it (bug#3984).
4968 2013-09-20  Xue Fuqiao  <xfq.free@gmail.com>
4970         * vc/pcvs.el (cvs-mode-ignore):
4971         * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
4972         Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
4974 2013-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4976         * eshell/em-ls.el: Use advice.  Remove redundant :group keywords.
4977         (eshell-ls-orig-insert-directory): Remove.
4978         (eshell-ls-unload-hook): Not a defcustom any more.  Use advice-remove.
4979         (eshell-ls-use-in-dired): Use advice-add/remove.
4980         (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
4981         Add `orig-fun' arg for use in :around advice.
4982         Make it check (redundantly) eshell-ls-use-in-dired.
4984 2013-09-19  Glenn Morris  <rgm@gnu.org>
4986         * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
4988         * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
4990         * emacs-lisp/eieio.el (class-parent): Undo previous change.
4992 2013-09-19  Michael Albinus  <michael.albinus@gmx.de>
4994         * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
4995         (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
4996         (tramp-get-remote-python): New defuns.
4997         (tramp-get-remote-uid-with-perl)
4998         (tramp-get-remote-gid-with-perl): New defuns.  Perl code
4999         contributed by yary <not.com@gmail.com> (tiny change).
5000         (tramp-get-remote-uid-with-python)
5001         (tramp-get-remote-gid-with-python): New defuns.  Python code
5002         contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
5003         (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
5005 2013-09-19  Glenn Morris  <rgm@gnu.org>
5007         * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
5009         * eshell/em-unix.el (eshell-remove-entries):
5010         Rename argument to avoid name-clash with global `top-level'.
5012         * eshell/esh-proc.el (eshell-kill-process-function):
5013         Remove eshell-reset-after-proc from eshell-kill-hook if present.
5014         (eshell-reset-after-proc): Remove unused arg `proc'.
5016         * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
5017         (directory-files-and-attributes): Mark unused arg.
5019         * eshell/em-unix.el (eshell-remove-entries):
5020         Remove unused arg `path'.  Update callers.
5022         * eshell/em-hist.el (eshell-hist-parse-arguments):
5023         Remove unused arg `silent'.  Update callers.
5025         * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
5026         Fix (f)boundp mix-up.
5028         * eshell/em-smart.el (eshell-smart-scroll-window)
5029         (eshell-disable-after-change):
5030         * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
5032 2013-09-18  Alan Mackenzie  <acm@muc.de>
5034         Fix fontification of type when followed by "const".
5035         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
5036         "known" types from fontification.
5038 2013-09-18  Glenn Morris  <rgm@gnu.org>
5040         * emacs-lisp/chart.el (x-display-color-cells): Declare.
5041         (chart-face-list): Drop Emacsen without display-color-p.
5043         * net/eww.el (libxml-parse-html-region): Declare.
5044         (eww-display-html): Explicit error if no libxml2 support.
5046         * doc-view.el (doc-view-mode): Silence --without-x compilation.
5048         * image.el (image-type-from-buffer, image-multi-frame-p):
5049         Remove --without-x warning/error.
5051         * mouse.el (mouse-yank-primary):
5052         * term.el (term-mouse-paste):
5053         Reorder to silence --without-x compilation.
5055         * mpc.el (doc-view-mode): Silence --without-x compilation.
5057         * mail/rmailmm.el (rmail-mime-set-bulk-data):
5058         Silence --without-x compilation.
5060         * progmodes/gud.el (gud-find-file, gud-mode):
5061         Silence --without-x compilation.
5062         (tooltip-mode): Declare.
5064         * wdired.el (dired-backup-overwrite): Remove declaration.
5065         (wdired-mode-map): Add doc string.
5067         * custom.el (x-get-resource): Declare.
5069         * eshell/em-glob.el (ange-cache):
5070         * eshell/em-unix.el (ange-cache): Declare.
5072         * faces.el (x-display-list, x-open-connection, x-get-resource):
5073         Declare.
5075         * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
5076         (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
5077         Declare.
5079         * frame.el (x-display-grayscale-p, x-display-name): Declare.
5081         * net/gnutls.el (gnutls-log-level): Declare.
5083         * net/shr.el (image-size, image-animate): Declare.
5085         * simple.el (font-info): Declare.
5087         * subr.el (x-popup-dialog): Declare.
5089         * term/common-win.el (x-select-enable-primary)
5090         (x-last-selected-text-primary, x-last-selected-text-clipboard):
5091         Declare.
5093         * term/ns-win.el (x-handle-args): Declare.
5095         * term/x-win.el (x-select-enable-clipboard): Declare.
5097         * term/w32-win.el (create-default-fontset): Declare.
5099         * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
5100         Declare.
5102         * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
5103         (fit-frame-to-buffer): Explicit error if --without-x.
5104         (mouse-autoselect-window-select): Silence compiler.
5106         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
5108         * eshell/em-cmpl.el (eshell-complete-parse-arguments):
5109         * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
5110         * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
5111         * eshell/esh-util.el (eshell-sublist):
5112         Remove unused local variables.
5114         * eshell/esh-io.el (x-select-enable-clipboard): Declare.
5116         * textmodes/two-column.el: Make 2C-split work for --without-x.
5117         (scroll-bar-columns): Autoload.
5118         (top-level): Require fringe when compiling.
5120 2013-09-18  Leo Liu  <sdl.web@gmail.com>
5122         * subr.el (add-hook): Robustify to handle closure as well.
5124 2013-09-17  Glenn Morris  <rgm@gnu.org>
5126         * simple.el (messages-buffer-mode-map): Unbind "g".
5128 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5130         * help-mode.el (help-mode-finish): Use derived-mode-p.
5131         Remove obsolete highlighting.
5133         * play/life.el (life-mode): Use define-derived-mode.  Derive from
5134         special-mode.
5135         (life): Let-bind inhibit-read-only.
5136         (life-setup): Avoid `setq'.  Use `life-mode'.
5138         * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
5139         which should not be needed any more.
5140         (package-menu-refresh, package-menu-describe-package): Use user-error.
5142         * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
5143         (eshell-post-rewrite-command-hook): Make obsolete.
5144         (eshell-parse-command): Simplify.
5145         (eshell-structure-basic-command): Remove unused arg `vocal-test'.
5146         (eshell--cmd): Declare.
5147         (eshell-parse-pipeline): Remove unused var `final-p'.
5148         Pass a dynvar to eshell-post-rewrite-command-hook.
5149         Implement the new eshell-post-rewrite-command-function.
5150         (eshell-invoke-directly): Remove unused arg `input'.
5151         * eshell/esh-io.el (eshell-io-initialize):
5152         Use eshell-post-rewrite-command-function (bug#15399).
5153         (eshell--apply-redirections): Rename from eshell-apply-redirections;
5154         adjust to new calling convention.
5155         (eshell-create-handles): Rename args to avoid clashing with dynvar
5156         `standard-output'.
5158 2013-09-17  Glenn Morris  <rgm@gnu.org>
5160         * simple.el (messages-buffer-mode): New major mode.
5161         (messages-buffer): New function.
5162         * startup.el (normal-top-level): Switch mode of *Messages* buffer.
5163         * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
5164         (ert-run-test): Use `messages-buffer' function.
5165         (ert--force-message-log-buffer-truncation): Ignore read-only.
5166         * help.el (view-echo-area-messages): Use `messages-buffer' function.
5167         * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
5169 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5171         * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
5173         * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
5175 2013-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
5177         * icomplete.el (icomplete-in-buffer): New var.
5178         (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
5179         vars and replace them with functions.
5180         (icomplete-minibuffer-setup): Adjust accordingly.
5181         (icomplete--completion-table, icomplete--completion-predicate)
5182         (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
5183         New functions.
5184         (icomplete-forward-completions, icomplete-backward-completions)
5185         (icomplete-simple-completing-p, icomplete-exhibit)
5186         (icomplete-completions): Use them.
5187         (icomplete--in-region-buffer): New var.
5188         (icomplete--in-region-setup): New function.
5189         (icomplete-mode): Use it.
5191         * eshell/esh-opt.el: Fix last change to set lexical-vars properly
5192         (bug#15379).
5193         (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
5194         return args and options.
5195         (eshell-eval-using-options): Use the new return value of
5196         eshell--do-opts to set the options's vars in their scope.
5197         (eshell--set-option): Rename from eshell-set-option.
5198         Add arg `opt-vals'.
5199         (eshell--process-option): Rename from eshell-process-option.
5200         Add arg `opt-vals'.
5201         (eshell--process-args): Use an `opt-vals' alist to store the options's
5202         values during their processing and return them additionally to the
5203         remaining args.
5205 2013-09-15  Dmitry Gutov  <dgutov@yandex.ru>
5207         * progmodes/ruby-mode.el (ruby-operator-re): Consider line
5208         continuation character an operator, as far as indentation is
5209         concerned (Bug#15369).
5211 2013-09-15  Martin Rudalics  <rudalics@gmx.at>
5213         * window.el (window--state-put-2): Don't process buffer state
5214         when buffer doesn't exist any more (Bug#15382).
5216 2013-09-15  Glenn Morris  <rgm@gnu.org>
5218         * eshell/em-unix.el (eshell/rm):
5219         Make -f ignore missing files.  (Bug#15373)
5221         * eshell/esh-cmd.el (eshell--local-vars): New variable.  (Bug#15372)
5222         (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
5223         * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
5225 2013-09-14  Glenn Morris  <rgm@gnu.org>
5227         * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
5229 2013-09-13  Glenn Morris  <rgm@gnu.org>
5231         * dired-x.el (dired-guess-shell-alist-user): Doc fix.
5232         (dired-guess-default): Make `file' available in the env.  (Bug#15363)
5234 2013-09-13  Dmitry Antipov  <dmantipov@yandex.ru>
5236         * frame.el (x-focus-frame): Mark as declared in frame.c.
5238 2013-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5240         * ls-lisp.el: Use advice-add.
5241         (original-insert-directory): Remove.
5242         (ls-lisp--insert-directory): Rename from insert-directory; add
5243         `orig-fun' argument.
5244         (insert-directory): Advise.
5246 2013-09-13  Eli Zaretskii  <eliz@gnu.org>
5248         * term.el (term-emulate-terminal): Decode the command string
5249         before passing it to term-command-hook.  (Bug#15337)
5251 2013-09-13  Glenn Morris  <rgm@gnu.org>
5253         * eshell/esh-util.el (ange-cache): Move declaration earlier.
5255         * eshell/esh-ext.el (eshell-search-path): Declare.
5257         * eshell/em-prompt.el (eshell/pwd): Autoload it.
5258         Otherwise an error occurs if eshell-dirs module not loaded.
5260         * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
5262 2013-09-13  Michael Albinus  <michael.albinus@gmx.de>
5264         * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
5265         `tramp-check-proper-host'.  Check for a valid method name.
5267         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
5268         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
5269         * net/tramp-sh.el (tramp-maybe-open-connection):
5270         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
5272         * net/tramp-cache.el (tramp-cache-print): Don't print text properties
5273         also for hash values.
5275 2013-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5277         * term/ns-win.el (parameters): Don't declare as dynamic.
5278         (before-make-frame-hook): Don't add ineffective function.
5280         * eshell/*.el: Use lexical-binding (bug#15231).
5282 2013-09-12  Kenichi Handa  <handa@gnu.org>
5284         * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
5286 2013-09-12  Glenn Morris  <rgm@gnu.org>
5288         * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
5289         (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
5291         * subr.el (do-after-load-evaluation): Also give compiler warnings
5292         when obsolete files are used (except by obsolete files).
5294         * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
5295         in the status output, assume `filename' is the first.  (Bug#15322)
5297         * vc/vc.el (vc-deduce-fileset): Doc fix.
5299         * calc/calc-help.el (Info-goto-node):
5300         * progmodes/cperl-mode.el (Info-find-node):
5301         * vc/ediff.el (Info-goto-node): Update declarations.
5303         * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
5305         * vc/vc-bzr.el (vc-compilation-mode): Declare.
5306         (vc-bzr-pull): Require vc-dispatcher.
5307         * vc/vc-git.el (vc-compilation-mode): Declare.
5308         (vc-git-pull): Require vc-dispatcher.
5310         * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
5312         * progmodes/octave.el (help-button-action): Declare.
5314         * shell.el (shell-directory-tracker): Output error as a message
5315         rather than just returning it as a string.
5316         (shell-process-pushd): Remove useless use of message.
5318         * dframe.el (dframe-timer-fn):
5319         * files.el (dir-locals-read-from-file):
5320         * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
5321         (mpc-format):
5322         * reveal.el (reveal-post-command):
5323         * saveplace.el (load-save-place-alist-from-file):
5324         * shell.el (shell-resync-dirs):
5325         * w32-common-fns.el (x-get-selection-value):
5326         * emacs-lisp/copyright.el (copyright-find-copyright):
5327         * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
5328         * emulation/tpu-edt.el (tpu-copy-keyfile):
5329         * play/bubbles.el (bubbles--mark-neighbourhood):
5330         * progmodes/executable.el
5331         (executable-make-buffer-file-executable-if-script-p):
5332         * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
5334 2013-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5336         Cleanup Eshell to rely less on dynamic scoping.
5337         * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
5338         last-value, and ext-command here.  Bind `args' closer to `body'.
5339         (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
5340         (eshell--args): Declare new dynamic var.
5341         (eshell-do-opt): Add argument `args'.  Bind our own usage-msg,
5342         last-value, and ext-command.  Pass `args' to `body'.
5343         (eshell-process-args): Bind eshell--args.
5344         (eshell-set-option): Use eshell--args.
5345         * eshell/eshell.el (eshell): Use derived-mode-p.
5346         * eshell/esh-var.el (eshell-parse-variable): Use backquote.
5347         (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
5348         (eshell-glob-function): Declare.
5349         * eshell/esh-util.el: Require cl-lib.
5350         (eshell-read-hosts-file): Avoid add-to-list.
5351         * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
5352         `err'.
5353         * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
5354         Declare.
5355         (eshell/diff): Remove unused var `err'.
5356         * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
5357         `killflag'.
5358         * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
5359         * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
5360         first use.
5361         * eshell/em-glob.el (eshell-glob-matches, message-shown):
5362         Move declaration before first use.
5363         * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
5364         * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
5365         rely on cl-return.
5367 2013-09-12  Glenn Morris  <rgm@gnu.org>
5369         * term/ns-win.el (global-map): Remove binding for ispell-next,
5370         deleted 1999-05-29.  (Bug#15357)
5372 2013-09-11  Glenn Morris  <rgm@gnu.org>
5374         * echistory.el (electric-command-history): Remove call to deleted func.
5376         * play/landmark.el (landmark-mode): Fix typos.
5378         * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
5379         Check cvs-sort-ignore-file is bound.
5381         * savehist.el: No need for cl when compiling on Emacs.
5383 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5385         * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
5386         (bug#15338).
5387         (eshell-self-insert-command, eshell-send-invisible):
5388         Remove unused argument.
5389         (eshell-handle-control-codes): Remove unused var `orig'.
5390         Avoid delete-backward-char.
5392         * files.el (set-auto-mode): Simplify a bit further.
5394 2013-09-11  Glenn Morris  <rgm@gnu.org>
5396         * files.el (interpreter-mode-alist): Remove \\` \\' parts.
5397         (set-auto-mode): Don't regexp-quote elements.
5398         * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
5399         * progmodes/cc-mode.el (interpreter-mode-alist):
5400         * progmodes/ruby-mode.el (interpreter-mode-alist):
5401         Revert previous change.
5403 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5405         * play/snake.el (snake-mode):
5406         * play/mpuz.el (mpuz-mode):
5407         * play/landmark.el (lm-mode):
5408         * play/blackbox.el (blackbox-mode):
5409         * play/5x5.el (5x5-mode):
5410         * obsolete/options.el (Edit-options-mode):
5411         * net/quickurl.el (quickurl-list-mode):
5412         * net/newst-treeview.el (newsticker-treeview-mode):
5413         * mail/rmailsum.el (rmail-summary-mode):
5414         * mail/mspools.el (mspools-mode):
5415         * locate.el (locate-mode):
5416         * ibuffer.el (ibuffer-mode):
5417         * emulation/ws-mode.el (wordstar-mode):
5418         * emacs-lisp/debug.el (debugger-mode):
5419         * array.el (array-mode):
5420         * net/eudc.el (eudc-mode): Use define-derived-mode.
5421         * net/mairix.el (mairix-searches-mode-font-lock-keywords):
5422         Move initialization into declaration.
5423         (mairix-searches-mode): Use define-derived-mode.
5424         * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
5425         (eudc-edit-hotlist): Use dolist.
5426         * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
5427         (Man-mode): Use define-derived-mode.
5428         * info.el (Info-edit-mode-map): Rename from Info-edit-map.
5429         (Info-edit-mode): Use define-derived-mode.
5430         (Info-cease-edit): Use Info-mode.
5431         * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
5432         into declaration.
5433         (eshell-mode): Use define-derived-mode.
5434         * chistory.el (command-history-mode-map): Rename from
5435         command-history-map.
5436         (command-history-mode): Use define-derived-mode.
5437         (Command-history-setup): Remove function.
5438         * calc/calc.el (calc-trail-mode-map): New var.
5439         (calc-trail-mode): Use define-derived-mode.
5440         (calc-trail-buffer): Set calc-main-buffer manually.
5441         * bookmark.el (bookmark-insert-annotation): New function.
5442         (bookmark-edit-annotation): Use it.
5443         (bookmark-edit-annotation-mode): Make it a proper major mode.
5444         (bookmark-send-edited-annotation): Use derived-mode-p.
5445         * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
5446         closer to its ideal place.  Use \' to match EOS.
5448         * profiler.el (profiler-calltree-find): Use function-equal.
5450 2013-09-10  Glenn Morris  <rgm@gnu.org>
5452         * files.el (interpreter-mode-alist): Convert to regexps.
5453         (set-auto-mode): Adapt for this.  (Bug#15306)
5454         * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
5455         Comment out unused variable.
5456         * progmodes/cc-mode.el (interpreter-mode-alist):
5457         * progmodes/python.el (interpreter-mode-alist):
5458         * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
5459         * progmodes/sh-script.el (sh-set-shell):
5460         No longer use interpreter-mode-alist to get list of shells.
5462         * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
5464 2013-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5466         * simple.el: Use set-temporary-overlay-map for universal-argument.
5467         (universal-argument-map): Don't use default-bindings (bug#15317).
5468         Bind switch-frame explicitly.  Replace universal-argument-minus with
5469         a conditional binding.
5470         (universal-argument-num-events, saved-overriding-map): Remove.
5471         (restore-overriding-map): Remove.
5472         (universal-argument--mode): Rename from save&set-overriding-map,
5473         and rewrite.
5474         (universal-argument, universal-argument-more, negative-argument)
5475         (digit-argument): Adjust accordingly.
5476         (universal-argument-minus): Remove.
5477         (universal-argument-other-key): Remove.
5479         * subr.el (with-demoted-errors): Add `format' argument.
5481 2013-09-10  Michael Albinus  <michael.albinus@gmx.de>
5483         * net/tramp.el (tramp-cleanup): Remove.  Functionality added to
5484         `tramp-cleanup-connection'.
5486         * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
5487         parameters KEEP-DEBUG and KEEP-PASSWORD.
5489         * net/tramp.el (tramp-file-name-handler):
5490         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
5491         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
5492         (tramp-maybe-open-connection):
5493         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
5494         Use `tramp-cleanup-connection'.
5496         * net/tramp-sh.el (tramp-maybe-open-connection):
5497         Catch 'uname-changed inside the progress reporter.
5499 2013-09-10  Glenn Morris  <rgm@gnu.org>
5501         * simple.el (read-minibuffer): Unbreak it.  (Bug#15318)
5503         * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
5504         returns "alternate access method" in mode (eg "-rw-r--r--.").
5506 2013-09-08  Glenn Morris  <rgm@gnu.org>
5508         * saveplace.el (load-save-place-alist-from-file):
5509         Demote errors.  (Bug#15305)
5511 2013-09-08  Michael Albinus  <michael.albinus@gmx.de>
5513         Improve compatibility with older Emacsen, and XEmacs.
5515         * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
5516         only if it is bound.  It isn't for XEmacs.
5517         (with-tramp-progress-reporter): Do not let-bind `result'.
5518         This yields to scoping errors in XEmacs.
5519         (tramp-handle-make-auto-save-file-name): New function, moved from
5520         tramp-sh.el.
5522         * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
5523         for `make-auto-save-file-name'.
5524         (tramp-adb--gnu-switches-to-ash):
5525         Use `tramp-compat-replace-regexp-in-string'.
5527         * net/tramp-cache.el (tramp-cache-print): Call
5528         `substring-no-properties' only if it is bound.  It isn't for XEmacs.
5530         * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
5531         bound.  It isn't for XEmacs.
5533         * net/tramp-compat.el (tramp-compat-copy-file):
5534         Catch `wrong-number-of-arguments' error.
5535         (tramp-compat-replace-regexp-in-string): New defun.
5537         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
5538         for `make-auto-save-file-name'.
5539         (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
5540         `copy-file'.
5541         (tramp-gvfs-file-gvfs-monitor-file-process-filter)
5542         (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
5543         (tramp-synce-list-devices): Use `push' instead of `pushnew'.
5545         * net/tramp-gw.el (tramp-gw-open-network-stream):
5546         Use `tramp-compat-replace-regexp-in-string'.
5548         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
5549         Call `tramp-handle-make-auto-save-file-name'.
5550         (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
5551         (tramp-sh-file-gvfs-monitor-dir-process-filter)
5552         (tramp-sh-file-inotifywait-process-filter):
5553         Use `tramp-compat-replace-regexp-in-string'.
5554         (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
5556         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
5557         for `make-auto-save-file-name'.
5558         (tramp-smb-handle-copy-directory):
5559         Call `tramp-compat-replace-regexp-in-string'.
5560         (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
5561         (tramp-smb-handle-copy-file): Improve error message.
5562         (tramp-smb-handle-rename-file): Rename directly only in case
5563         `newname' does not exist yet.  This is a restriction of smbclient.
5564         (tramp-smb-maybe-open-connection): Rerun the function only when
5565         `auth-sources' is non-nil.
5567 2013-09-08  Kenichi Handa  <handa@gnu.org>
5569         * international/characters.el: Set category "^" (Combining) for
5570         more characters.
5572 2013-09-07  Alan Mackenzie  <acm@muc.de>
5574         Correctly fontify Java class constructors.
5575         * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
5576         in Java Mode.
5577         (c-recognize-typeless-decls): Set the Java value to t.
5578         * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
5579         While handling a "(", add a check for, effectively, Java, and handle a
5580         "typeless" declaration there.
5582 2013-09-07  Roland Winkler  <winkler@gnu.org>
5584         * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
5585         field subtitle for entry type book.
5587 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5589         * minibuffer.el: Make minibuffer-complete call completion-in-region
5590         rather than other way around.
5591         (completion--some, completion-pcm--find-all-completions):
5592         Don't delay signals when debugging.
5593         (minibuffer-completion-contents): Beware fields within the
5594         minibuffer contents.
5595         (completion-all-sorted-completions): Use defvar-local.
5596         (completion--do-completion, completion--cache-all-sorted-completions)
5597         (completion-all-sorted-completions, minibuffer-force-complete):
5598         Add args `beg' and `end'.
5599         (completion--in-region-1): New fun, extracted from minibuffer-complete.
5600         (minibuffer-complete): Use completion-in-region.
5601         (completion-complete-and-exit): New fun, extracted from
5602         minibuffer-complete-and-exit.
5603         (minibuffer-complete-and-exit): Use it.
5604         (completion--complete-and-exit): Rename from
5605         minibuffer--complete-and-exit.
5606         (completion-in-region--single-word): New function, extracted from
5607         minibuffer-complete-word.
5608         (minibuffer-complete-word): Use it.
5609         (display-completion-list): Make `common-substring' argument obsolete.
5610         (completion--in-region): Call completion--in-region-1 instead of
5611         minibuffer-complete.
5612         (completion-help-at-point): Pass boundaries to
5613         minibuffer-completion-help as args rather than via an overlay.
5614         (completion-pcm--string->pattern): Use `any-delim'.
5615         (completion-pcm--optimize-pattern): New function.
5616         (completion-pcm--pattern->regex): Handle `any-delim'.
5617         * icomplete.el (icomplete-forward-completions)
5618         (icomplete-backward-completions, icomplete-completions):
5619         Adjust calls to completion-all-sorted-completions and
5620         completion--cache-all-sorted-completions.
5621         (icomplete-with-completion-tables): Default to t.
5622         * emacs-lisp/crm.el (crm--current-element): Rename from
5623         crm--select-current-element.  Don't put an overlay but return the
5624         boundaries instead.
5625         (crm--completion-command): Take two new args to bind to the boundaries.
5626         (crm-completion-help): Adjust accordingly.
5627         (crm-complete): Use completion-in-region.
5628         (crm-complete-word): Use completion-in-region--single-word.
5629         (crm-complete-and-exit): Use completion-complete-and-exit.
5631 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5633         * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
5634         than dynamically.
5636 2013-09-06  Juri Linkov  <juri@jurta.org>
5638         * info.el (Info-display-images-node): When image file doesn't exist
5639         display text version of the image if it's provided in the Info file.
5640         Otherwise, display the location of missing image from SRC attribute.
5641         Add help-echo text property from ALT attribute.  (Bug#15279)
5643 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5645         * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
5646         (edit-abbrevs-mode): Use define-derived-mode.
5648         * epa.el (epa--encode-coding-string, epa--decode-coding-string)
5649         (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
5650         that it's defined.
5651         (epa-key-list-mode, epa-key-mode, epa-info-mode):
5652         Use define-derived-mode.
5654         * epg.el (epg-start-encrypt): Minor CSE simplification.
5656 2013-09-06  William Xu  <william.xwl@gmail.com>
5658         * arc-mode.el: Add support for 7za (bug#15264).
5659         (archive-7z-program): New var.
5660         (archive-zip-extract, archive-zip-expunge, archive-zip-update)
5661         (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
5662         (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
5664 2013-09-06  Michael Albinus  <michael.albinus@gmx.de>
5666         Remove URL syntax.
5668         * net/tramp.el (tramp-syntax, tramp-prefix-format)
5669         (tramp-postfix-method-format, tramp-prefix-ipv6-format)
5670         (tramp-postfix-ipv6-format, tramp-prefix-port-format)
5671         (tramp-postfix-host-format, tramp-file-name-regexp)
5672         (tramp-completion-file-name-regexp)
5673         (tramp-completion-dissect-file-name)
5674         (tramp-handle-substitute-in-file-name): Remove 'url case.
5675         (tramp-file-name-regexp-url)
5676         (tramp-completion-file-name-regexp-url): Remove constants.
5678 2013-09-06  Glenn Morris  <rgm@gnu.org>
5680         * replace.el (replace-string): Doc fix re start/end.  (Bug#15275)
5682 2013-09-05  Dmitry Gutov  <dgutov@yandex.ru>
5684         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
5685         keywords" below "here-doc beginnings" (Bug#15270).
5687 2013-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5689         * subr.el (pop): Use `car-safe'.
5690         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
5691         to detect unused `pop' return value.
5693         * progmodes/python.el (python-nav-beginning-of-block): Remove unused
5694         var `block-regexp'.
5695         (python-nav--forward-sexp): Remove unused var `re-search-fn'.
5696         (python-fill-string): Remove unused var `marker'.
5697         (python-skeleton-add-menu-items): Remove unused var `items'.
5699         * international/mule-cmds.el: Require CL.
5700         (find-coding-systems-for-charsets): Avoid add-to-list.
5701         (sanitize-coding-system-list): New function, extracted from
5702         select-safe-coding-system-interactively.
5703         (select-safe-coding-system-interactively): Use it.
5704         (read-input-method-name): Accept symbols for `default'.
5706         * emacs-lisp/advice.el (defadvice): Add indent rule.
5708 2013-09-05  Daniel Hackney  <dan@haxney.org>
5710         * dired-x.el:
5711         * net/ange-ftp.el:
5712         * net/browse-url.el:
5713         * net/dbus.el:
5714         * net/eudc.el:
5715         * net/eudcb-ldap.el:
5716         * net/eww.el:
5717         * net/imap.el:
5718         * printing.el:
5719         * vc/ediff-diff.el:
5720         * vc/ediff-init.el:
5721         * vc/ediff-merg.el:
5722         * vc/ediff-mult.el:
5723         * vc/ediff-util.el:
5724         * vc/ediff-wind.el:
5725         * vc/ediff.el:
5726         * vc/emerge.el:
5727         * vc/pcvs.el:
5728         * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
5729         byte compiler.  Remove some unused let-bound variables.
5731 2013-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5733         * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
5734         a "ref-cell", since it gets better optimized (bug#14883).
5736 2013-09-05  Glenn Morris  <rgm@gnu.org>
5738         * progmodes/cc-awk.el (c-forward-sws): Declare.
5740 2013-09-04  Glenn Morris  <rgm@gnu.org>
5742         * generic-x.el [rul-generic-mode]: Require cc-mode.
5743         (c++-mode-syntax-table): Declare.
5744         (rul-generic-mode-syntax-table): Init in the defvar.
5746 2013-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
5748         * vc/vc-dispatcher.el (vc-run-delayed): New macro.
5749         (vc-do-command, vc-set-async-update):
5750         * vc/vc-mtn.el (vc-mtn-dir-status):
5751         * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
5752         (vc-hg-pull, vc-hg-merge-branch):
5753         * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
5754         (vc-git-merge-branch):
5755         * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
5756         (vc-cvs-dir-status-files):
5757         * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
5758         (vc-bzr-dir-status-files):
5759         * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
5760         * vc/vc-annotate.el: Use lexical-binding.
5761         (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
5762         (vc-sentinel-movepoint): Declare.
5763         (vc-annotate): Don't use `goto-line'.
5764         * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
5765         (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
5766         (vc-sentinel-movepoint): Declare.
5767         * vc/vc-svn.el: Use lexical-binding.
5768         (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
5769         * vc/vc-sccs.el:
5770         * vc/vc-rcs.el: Use lexical-binding.
5772         * autorevert.el (auto-revert-notify-handler): Explicitly ignore
5773         `deleted'.  Don't drop errors silently.
5775         * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
5777 2013-09-04  Xue Fuqiao  <xfq.free@gmail.com>
5779         * vc/vc.el (vc-ignore): Rewrite.
5780         (vc-default-ignore): New function.
5781         (vc-default-ignore-completion-table): Use find-ignore-file.
5783         * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
5784         * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
5785         * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
5786         Remove.  Most code moved to vc.el.
5788 2013-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5790         * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
5791         * net/tramp-smb.el (tramp-smb-get-file-entries):
5792         * net/tramp-sh.el (tramp-sh-handle-insert-directory)
5793         (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
5795         * net/eww.el (eww-display-raw): Remove unused argument `charset'.
5796         Update call to it.
5797         (eww-change-select): Remove unused var `properties'.
5798         (eww-make-unique-file-name): Remove unused var `base'.
5800         * finder.el (finder-compile-keywords): Don't mess with windows.
5802         * calculator.el (calculator-funcall): Fix typo in last change.
5804         * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
5806         * emacs-lisp/package.el (package-activate-1): Don't let a missing
5807         <pkg>-autoloads.el file stop us.
5809         * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
5810         warnings, and factor out common code.
5812 2013-09-03  Dmitry Gutov  <dgutov@yandex.ru>
5814         * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
5815         two-character operators and whether the character preceding them
5816         changes their meaning (Bug#15208).
5818 2013-09-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
5820         Format code sent to Python shell for robustness.
5821         * progmodes/python.el (python-shell-buffer-substring):
5822         New function.
5823         (python-shell-send-region, python-shell-send-buffer): Use it.
5825 2013-09-02  Michael Albinus  <michael.albinus@gmx.de>
5827         * net/tramp-compat.el (tramp-compat-user-error): Move it ...
5828         * net/tramp.el (tramp-user-error): ... here.
5829         (tramp-find-method, tramp-check-proper-host)
5830         (tramp-dissect-file-name, tramp-debug-message)
5831         (tramp-handle-shell-command):
5832         * net/tramp-adb.el (tramp-adb-handle-shell-command):
5833         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
5835         * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
5837 2013-09-02  Martin Rudalics  <rudalics@gmx.at>
5839         * avoid.el (mouse-avoidance-point-position)
5840         (mouse-avoidance-too-close-p): Handle case where posn-at-point
5841         returns nil.
5843 2013-09-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
5845         * progmodes/python.el (python-shell-completion-get-completions):
5846         Drop use of deleted `comint-last-prompt-overlay'.
5847         (python-nav-if-name-main): New command.
5849 2013-09-01  Glenn Morris  <rgm@gnu.org>
5851         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
5852         Avoid leading space in $wins.  Otherwise the sed command used by
5853         eg compile-main ends up containing "/*.el".  (Bug#15170)
5855         * frame.el (frame-background-mode): Doc fix.  (Bug#15226)
5857 2013-08-30  Glenn Morris  <rgm@gnu.org>
5859         * emacs-lisp/bytecomp.el (byte-recompile-directory):
5860         Fix is-this-a-directory logic.  (Bug#15220)
5862 2013-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5864         * textmodes/css-mode.el: Use SMIE.
5865         (css-smie-grammar): New var.
5866         (css-smie--forward-token, css-smie--backward-token)
5867         (css-smie-rules): New functions.
5868         (css-mode): Use them.
5869         (css-navigation-syntax-table): Remove var.
5870         (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
5871         (css-indent-calculate, css-indent-line): Remove functions.
5873         Misc changes to reduce use of `(lambda...); and other cleanups.
5874         * cus-edit.el: Use lexical-binding.
5875         (customize-push-and-save, customize-apropos)
5876         (custom-buffer-create-internal): Use closures.
5877         * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
5878         * progmodes/ada-xref.el: Use setq.
5879         * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
5880         * dframe.el: Use lexical-binding.
5881         (dframe-frame-mode): Fix calling convention for hooks.  Use a closure.
5882         * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
5883         * descr-text.el: Use lexical-binding.
5884         (describe-text-widget, describe-text-sexp, describe-property-list):
5885         Use closures.
5886         * comint.el (comint-history-isearch-push-state): Use a closure.
5887         * calculator.el: Use lexical-binding.
5888         (calculator-number-to-string): Make it work with lexical-binding.
5889         (calculator-funcall): Same and use cl-letf.
5891         * emacs-lisp/lisp.el (lisp--company-doc-buffer)
5892         (lisp--company-doc-string, lisp--company-location): New functions.
5893         (lisp-completion-at-point): Use them to improve Company support.
5895         * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
5896         params of lambda expressions.
5897         (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
5898         (ruby-smie--opening-pipe-p): New function.
5899         (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
5900         symbols and matched |...| for formal params.
5901         (ruby-smie-rules): Don't let the formal params of a "do" prevent it
5902         from being treated as hanging.  Handle "rescue".
5904 2013-08-29  Glenn Morris  <rgm@gnu.org>
5906         * progmodes/cc-engine.el (c-pull-open-brace):
5907         Move definition before use.
5909 2013-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5911         * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
5912         are immutable.  Don't use `unsafe' any more.
5913         (cl--defsubst-expand): Don't substitute at the same time as keeping
5914         a residual unused let-binding.  Don't use `unsafe' any more.
5916 2013-08-29  Glenn Morris  <rgm@gnu.org>
5918         * calendar/cal-china.el (calendar-chinese-year-cache):
5919         Recenter on 2015.
5921         * nxml/nxml-util.el (nxml-debug-clear-inside):
5922         Use cl-loop rather than loop.
5924         * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
5926         * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
5928 2013-08-28  Glenn Morris  <rgm@gnu.org>
5930         * progmodes/antlr-mode.el: No need to require cc-mode twice.
5932         * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
5934         * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
5936 2013-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5938         * simple.el (repeat-complex-command--called-interactively-skip):
5939         New function.
5940         (repeat-complex-command): Use it (bug#14136).
5942         * progmodes/cc-mode.el: Minor cleanup of var declarations.
5943         (c-define-abbrev-table): Add `doc' argument.
5944         (c-mode-abbrev-table, c++-mode-abbrev-table)
5945         (objc-mode-abbrev-table, java-mode-abbrev-table)
5946         (idl-mode-abbrev-table, pike-mode-abbrev-table)
5947         (awk-mode-abbrev-table): Use it.
5948         (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
5949         (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
5950         (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
5951         (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
5952         Move initialization into the declaration; and remove any
5953         autoload cookie.
5955         * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
5956         and dynamic let binding.
5958         * vc/smerge-mode.el: Remove redundant :group args.
5960         * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
5961         to load-path.
5963 2013-08-28  Juri Linkov  <juri@jurta.org>
5965         * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
5966         arg DONT-DOWNCASE-LAST of `read-key-sequence'.
5967         (isearch-other-meta-char): Handle an undefined shifted printing
5968         character by downshifting it.  (Bug#15200)
5970 2013-08-28  Juri Linkov  <juri@jurta.org>
5972         * isearch.el (isearch-search): Change regexp error message for
5973         non-regexp searches.  (Bug#15166)
5975 2013-08-28  Paul Eggert  <eggert@cs.ucla.edu>
5977         * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
5978         for portability to hosts where /bin/sh has problems.
5980 2013-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5982         * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
5984 2013-08-27  Juri Linkov  <juri@jurta.org>
5986         * isearch.el (isearch-other-meta-char): Don't store kmacro commands
5987         in the keyboard macro.  (Bug#15126)
5989 2013-08-27  Juri Linkov  <juri@jurta.org>
5991         * isearch.el (isearch-quote-char): Comment out converting unibyte
5992         to multibyte, thus syncing with its `quoted-insert' counterpart.
5993         (Bug#15166)
5995 2013-08-27  Martin Rudalics  <rudalics@gmx.at>
5997         * window.el (display-buffer-use-some-window): Add missing
5998         argument in call of get-largest-window (Bug#15185).
5999         Reported by Stephen Leake.
6001 2013-08-27  Glenn Morris  <rgm@gnu.org>
6003         * emacs-lisp/package.el (package-buffer-info): Fix message typo.
6005 2013-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6007         * progmodes/python.el (python-font-lock-keywords): Don't return nil
6008         from a matcher-function unless there's no more matches (bug#15161).
6010 2013-08-26  Michael Albinus  <michael.albinus@gmx.de>
6012         * minibuffer.el: Revert change from 2013-08-20.
6014         * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
6015         with text property `tramp-default', if appropriate.
6016         (tramp-check-proper-host): New defun.
6017         (tramp-dissect-file-name): Do not check hostname.  Revert change
6018         of 2013-03-18.
6019         (tramp-backtrace): Make VEC-OR-PROC optional.
6021         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
6022         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
6023         * net/tramp-sh.el (tramp-maybe-open-connection):
6024         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
6025         Apply `tramp-check-proper-host'.
6027 2013-08-26  Tassilo Horn  <tsdh@gnu.org>
6029         * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
6030         lambda expression in order to have `describe-variable' display it.
6032 2013-08-26  Michael Albinus  <michael.albinus@gmx.de>
6034         * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
6035         BUF can be optional.  (Bug#15186)
6037 2013-08-25  Xue Fuqiao  <xfq.free@gmail.com>
6039         * progmodes/flymake.el (flymake-get-real-file-name-function):
6040         Fix broken customization.  (Bug#15184)
6042 2013-08-25  Alan Mackenzie  <acm@muc.de>
6044         Improve indentation of bracelists defined by macros (without "=").
6046         * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
6047         expansion begins with "{", regard it as bracelist when it doesn't
6048         contain a ";".
6050         Parse C++ inher-intro when there's a template split over 2 lines.
6052         * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
6053         rigorously the search for "class" etc. followed by ":".
6055         * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
6056         random languages a regexp which never matches rather than nil.
6058         Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
6060         * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
6061         (c-awk-regexp-one-line-possibly-open-char-list-re)
6062         (c-awk-one-line-possibly-open-regexp-re)
6063         (c-awk-one-line-non-syn-ws*-re): Remove.
6064         (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
6065         (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
6066         (c-awk-space*-unclosed-regexp-/-re): New constants.
6067         (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
6068         aren't regexp delimiters.
6070         * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
6071         handling for a rare situation in AWK Mode involving unterminated
6072         strings/regexps.
6074 2013-08-23  Glenn Morris  <rgm@gnu.org>
6076         * files.el (auto-mode-alist): Use sh-mode for .bash_history.
6078         * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
6080         * files.el (create-file-buffer): If the result would begin with
6081         spaces, prepend a "|" instead of removing them.  (Bug#15162)
6083 2013-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6085         * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
6086         text-properties (bug#15155).
6088         * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
6089         exist any more.
6090         (calc-keypad-redraw): Remove unused var `pad'.
6091         (calc-keypad-press): Remove unused var `menu'.
6093 2013-08-23  Martin Rudalics  <rudalics@gmx.at>
6095         * window.el (display-buffer-pop-up-frame):
6096         Call pop-up-frame-function with BUFFER current so `make-frame' will
6097         use it as the new frame's buffer (Bug#15133).
6099 2013-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6101         * calendar/timeclock.el: Minor cleanups.
6102         (timeclock-ask-before-exiting, timeclock-use-display-time):
6103         Use `symbol'.
6104         (timeclock-modeline-display): Define as alias before the
6105         actual definition.
6106         (timeclock-mode-line-display): Use define-minor-mode.
6107         (timeclock-day-list-template): Make it a function, add an argument.
6108         (timeclock-day-list-required, timeclock-day-list-length)
6109         (timeclock-day-list-debt, timeclock-day-list-span)
6110         (timeclock-day-list-break): Adjust calls accordingly.
6112 2013-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6114         * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
6115         Use read--expression so that completion works again.
6117 2013-08-21  Sam Steingold  <sds@gnu.org>
6119         Add rudimentary inferior shell interaction
6120         * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
6121         (sh-set-shell): Reset it.
6122         (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
6123         New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
6125 2013-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
6127         * align.el: Use lexical-binding.
6128         (align-region): Simplify accordingly.
6130 2013-08-20  Michael Albinus  <michael.albinus@gmx.de>
6132         * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
6134         * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
6135         `non-essential' up.
6137 2013-08-17  Michael Albinus  <michael.albinus@gmx.de>
6139         * net/tramp.el:
6140         * net/tramp-adb.el:
6141         * net/tramp-cmds.el:
6142         * net/tramp-ftp.el:
6143         * net/tramp-gvfs.el:
6144         * net/tramp-gw.el:
6145         * net/tramp-sh.el: Don't wrap external variable declarations by
6146         `eval-when-compile'.
6148 2013-08-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6150         * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
6151         now that Emacs supports ImageMagick animations.
6153 2013-08-16  Michael Albinus  <michael.albinus@gmx.de>
6155         * net/tramp-cmds.el (top): Don't declare `buffer-name'.
6156         (tramp-append-tramp-buffers): Rewrite buffer local variables part.
6158 2013-08-16  Martin Rudalics  <rudalics@gmx.at>
6160         * window.el (mouse-autoselect-window-select): Do autoselect when
6161         mouse pointer is on margin.
6163 2013-08-16  William Parsons  <wbparsons@alum.mit.edu>  (tiny change)
6165         * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV.  (Bug#1972)
6167 2013-08-16  Glenn Morris  <rgm@gnu.org>
6169         * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
6170         Handle "Remote Directory" response of some clients.  (Bug#15058)
6172         * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
6173         Tweak warning.  (Bug#14926)
6175         * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
6176         (menu-bar-tools-menu): Simplify news and mail items.  (Bug#15095)
6178         * image-mode.el (image-mode-map): Add menu items to reverse,
6179         increase, decrease, reset animation speed.
6180         (image--set-speed, image-increase-speed, image-decrease-speed)
6181         (image-reverse-speed, image-reset-speed): New functions.
6182         (image-mode-map): Add bindings for speed commands.
6184         * image.el (image-animate-get-speed, image-animate-set-speed):
6185         New functions.
6186         (image-animate-timeout): Respect image :speed property.
6188 2013-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
6190         * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
6191         previous line (bug#15101).
6192         (debugger-eval-expression, debugger-record-expression):
6193         Use read--expression (bug#15102).
6195 2013-08-15  Michael Albinus  <michael.albinus@gmx.de>
6197         Remove byte compiler warnings, visible when compiling with
6198         `byte-compile-force-lexical-warnings' set to t.
6200         * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
6201         (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
6202         (tramp-handle-unhandled-file-name-directory)
6203         (tramp-handle-file-notify-add-watch, tramp-action-login)
6204         (tramp-action-succeed, tramp-action-permission-denied)
6205         (tramp-action-terminal, tramp-action-process-alive): Prefix unused
6206         arguments with "_".
6208         * net/tramp-adb.el (tramp-adb-parse-device-names)
6209         (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
6210         (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
6211         (tramp-adb-handle-file-truename): Remove unused arguments.
6213         * net/tramp-cache.el (tramp-flush-directory-property)
6214         (tramp-flush-connection-property, tramp-list-connections)
6215         (tramp-parse-connection-properties): Prefix unused arguments with "_".
6217         * net/tramp-compat.el (tramp-compat-make-temp-file):
6218         Rename FILENAME to F.
6220         * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
6221         (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
6222         (tramp-zeroconf-parse-workstation-device-names)
6223         (tramp-zeroconf-parse-webdav-device-names)
6224         (tramp-synce-parse-device-names): Prefix unused arguments with "_".
6226         * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
6227         (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
6229         * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
6230         arguments.
6231         (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
6232         (tramp-sh-handle-insert-file-contents-literally)
6233         (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
6234         with "_".
6235         (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
6236         Remove unused variables.
6238         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
6239         (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
6240         (tramp-smb-read-file-entry): Prefix unused arguments with "_".
6242         * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
6243         Make them a defconst.
6244         (tramp-uuencode-region): Remove unused variable.
6246 2013-08-14  Juanma Barranquero  <lekktu@gmail.com>
6248         * frameset.el (frameset--prop-setter): New function.
6249         (frameset-prop): Add gv-setter declaration.
6250         (frameset-filter-minibuffer): Deal with the case that the minibuffer
6251         parameter was already set in FILTERED.  Doc fix.
6252         (frameset--record-minibuffer-relationships): Allow saving a
6253         minibufferless frame without its corresponding minibuffer frame.
6254         (frameset--reuse-frame): Accept a match from an orphaned minibufferless
6255         frame, if the frame id matches.
6256         (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
6257         frames before orphaned ones.
6258         (frameset-restore): Warn about orphaned windows, instead of error out.
6260 2013-08-14  Martin Rudalics  <rudalics@gmx.at>
6262         * window.el (window-make-atom): Don't overwrite parameter
6263         already present.
6264         (display-buffer-in-atom-window): Handle special case where we
6265         split an already atomic window.
6266         (window--major-non-side-window, display-buffer-in-side-window)
6267         (window--side-check): Ignore minibuffer window when walking
6268         window tree.
6269         (window-deletable-p): Return 'frame only if no other frame uses
6270         our minibuffer window.
6271         (record-window-buffer): Run buffer-list-update-hook.
6272         (split-window): Make sure window--check-frame won't destroy an
6273         existing atomic window in case the new window gets nested
6274         inside.
6275         (display-buffer-at-bottom): Ignore minibuffer window when
6276         walking window tree.  Don't split a side window.
6277         (pop-to-buffer): Don't set-buffer here, the select-window call
6278         should do that.
6279         (mouse-autoselect-window-select): Autoselect only if we are in the
6280         text portion of the window.
6282 2013-08-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6284         * net/shr.el (shr-parse-image-data): New function to grab both the
6285         data itself and the Content-Type.
6286         (shr-put-image): Use it.
6288         * net/eww.el (eww-display-image): Ditto.
6290         * image.el (image-content-type-suffixes): New variable.
6292 2013-08-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
6294         * progmodes/python.el (python-imenu--build-tree)
6295         (python-imenu--put-parent): Simplify and Fix (GH bug 146).
6297 2013-08-13  Xue Fuqiao  <xfq.free@gmail.com>
6299         * simple.el (backward-word): Mention the optional argument.
6301 2013-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
6303         * frameset.el (frameset--make): Rename constructor from make-frameset.
6304         (frameset-p, frameset-valid-p): Don't autoload.
6305         (frameset-valid-p): Use normal accessors.
6307 2013-08-13  Glenn Morris  <rgm@gnu.org>
6309         * progmodes/compile.el (compile-command): Tweak example in doc.
6310         * obsolete/scribe.el (scribe-mode):
6311         * progmodes/mixal-mode.el (mixal-mode): Quote buffer name.  (Bug#15053)
6313         * mail/feedmail.el (feedmail-confirm-outgoing)
6314         (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
6316         * cus-start.el (truncate-partial-width-windows): Fix type.
6318         * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
6320         * net/shr.el (shr-table-horizontal-line): Fix custom type.
6322 2013-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
6324         * emacs-lisp/timer.el (timer--time-setter): New function.
6325         (timer--time): Use it as gv-setter.
6327         * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
6328         setter is not a symbol.
6330 2013-08-12  Grégoire Jadi  <daimrod@gmail.com>
6332         * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
6333         if sending fails.  This makes debugging easier.
6335 2013-08-12  Juanma Barranquero  <lekktu@gmail.com>
6337         * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
6338         2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
6339         https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
6341 2013-08-12  Eli Zaretskii  <eliz@gnu.org>
6343         * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
6345 2013-08-12  Glenn Morris  <rgm@gnu.org>
6347         * format.el (format-annotate-function):
6348         Handle read-only text properties in the source.  (Bug#14887)
6350 2013-08-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6352         * net/eww.el (eww-display-html): Ignore coding system errors.
6353         One web site uses "utf-8lias" as the coding system.
6355 2013-08-11  Juanma Barranquero  <lekktu@gmail.com>
6357         * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
6359 2013-08-10  Juanma Barranquero  <lekktu@gmail.com>
6361         * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
6362         (tutorial--detailed-help): Remove unused local variables.
6363         (tutorial--save-tutorial-to): Use ignore-errors.
6364         (help-with-tutorial): Use looking-at-p.
6366         * view.el (view-buffer-other-window, view-buffer-other-frame):
6367         Mark unused arguments.
6369         * woman.el (woman-parse-colon-path, woman-parse-colon-path)
6370         (woman-select-symbol-fonts, woman, woman-find-file)
6371         (woman-insert-file-contents, woman-non-underline-faces):
6372         Use string-match-p.
6373         (woman1-unquote): Move declaration.
6375         * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
6376         (xml-parse-dtd): Use looking-at-p, string-match-p.  Mark unused
6377         argument.  Remove unused local variable.
6378         (xml-parse-elem-type): Use string-match-p.
6379         (xml-substitute-numeric-entities): Use ignore-errors.
6381         * calculator.el (calculator): Mark unused argument.
6382         (calculator-paste, calculator-quit, calculator-integer-p):
6383         Use ignore-errors.
6384         (calculator-string-to-number, calculator-decimal, calculator-exp)
6385         (calculator-op-or-exp): Use string-match-p.
6387         * dired.el (dired-buffer-more-recently-used-p): Declare.
6388         (dired-insert-set-properties, dired-insert-old-subdirs):
6389         Use ignore-errors.
6391         * dired-aux.el (dired-compress): Use ignore-errors.
6392         (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
6393         (dired-do-async-shell-command, dired-do-shell-command)
6394         (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
6395         (dired-insert-subdir-validate): Use string-match-p.
6396         (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
6397         (dired-add-entry): Use string-match-p, looking-at-p.
6398         (dired-insert-subdir-newpos): Remove unused local variable.
6400         * filenotify.el (file-notify-callback): Remove unused local variable.
6402         * filesets.el (filesets-error): Mark unused argument.
6403         (filesets-which-command-p, filesets-filter-dir-names)
6404         (filesets-directory-files, filesets-get-external-viewer)
6405         (filesets-ingroup-get-data): Use string-match-p.
6407         * find-file.el (ff-other-file-name, ff-other-file-name)
6408         (ff-find-the-other-file, ff-cc-hh-converter):
6409         Remove unused local variables.
6410         (ff-get-file-name): Use string-match-p.
6411         (ff-all-dirs-under): Use ignore-errors.
6413         * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
6414         (follow-select-if-visible): Remove unused local variable.
6416         * forms.el (read-file-filter): Move declaration.
6417         (forms--make-format, forms--make-parser, forms-insert-record):
6418         Quote function with #'.
6419         (forms--update): Use string-match-p.  Quote function with #'.
6421         * help-mode.el (help-dir-local-var-def): Mark unused argument.
6422         (help-make-xrefs): Use looking-at-p.
6423         (help-xref-on-pp): Use looking-at-p, ignore-errors.
6425         * ibuffer.el (ibuffer-ext-visible-p): Declare.
6426         (ibuffer-confirm-operation-on): Use string-match-p.
6428         * msb.el (msb-item-handler, msb-dired-item-handler):
6429         Mark unused arguments.
6431         * ses.el (ses-decode-cell-symbol)
6432         (ses-kill-override): Remove unused local variable.
6433         (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
6434         (ses-load): Use ignore-errors, looking-at-p.
6435         (ses-jump-safe): Use ignore-errors.
6436         (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
6438         * tabify.el (untabify, tabify): Mark unused arguments.
6440         * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
6441         Mark unused argument.
6442         (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
6443         (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
6445         * emacs-lisp/timer.el (timer--time): Define setter with
6446         gv-define-setter to avoid deprecation warning.
6448         * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
6449         (*record-cmpl-statistics-p*): Remove (was commented out).
6450         (cmpl-statistics-block): Remove (body was commented out).
6451         All callers changed.
6452         (add-completions-from-buffer, load-completions-from-file):
6453         Remove unused variables.
6455 2013-08-09  Juanma Barranquero  <lekktu@gmail.com>
6457         * filecache.el (file-cache-delete-file-list):
6458         Print message only when told so.
6459         (file-cache-files-matching): Use #' in mapconcat argument.
6461         * ffap.el (ffap-url-at-point): Fix reference to variable
6462         thing-at-point-default-mail-uri-scheme.
6464 2013-08-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6466         * subr.el (define-error): New function.
6467         * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
6468         error-file-not-found and define with define-error.
6469         * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
6470         and define with define-error.
6471         * userlock.el (file-locked, file-supersession):
6472         * simple.el (mark-inactive):
6473         * progmodes/js.el (js-moz-bad-rpc, js-js-error):
6474         * progmodes/ada-mode.el (ada-mode-errors):
6475         * play/life.el (life-extinct):
6476         * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
6477         * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
6478         * nxml/rng-util.el (rng-error):
6479         * nxml/rng-uri.el (rng-uri-error):
6480         * nxml/rng-match.el (rng-compile-error):
6481         * nxml/rng-cmpct.el (rng-c-incorrect-schema):
6482         * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
6483         * nxml/nxml-rap.el (nxml-scan-error):
6484         * nxml/nxml-outln.el (nxml-outline-error):
6485         * net/soap-client.el (soap-error):
6486         * net/gnutls.el (gnutls-error):
6487         * net/ange-ftp.el (ftp-error):
6488         * mpc.el (mpc-proc-error):
6489         * json.el (json-error, json-readtable-error, json-unknown-keyword)
6490         (json-number-format, json-string-escape, json-string-format)
6491         (json-key-format, json-object-format):
6492         * jka-compr.el (compression-error):
6493         * international/quail.el (quail-error):
6494         * international/kkc.el (kkc-error):
6495         * emacs-lisp/ert.el (ert-test-failed):
6496         * calc/calc.el (calc-error, inexact-result, math-overflow)
6497         (math-underflow):
6498         * bookmark.el (bookmark-error-no-filename):
6499         * epg.el (epg-error): Define with define-error.
6501         * time.el (display-time-event-handler)
6502         (display-time-next-load-average): Don't call sit-for since it seems
6503         unnecessary (bug#15045).
6505         * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
6506         Use #' instead of ' to quote functions.
6507         (checkdoc-output-mode): Use setq-local.
6508         (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
6509         (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
6510         (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
6511         (checkdoc-ispell, checkdoc-ispell-current-buffer)
6512         (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
6513         (checkdoc-ispell-message-text, checkdoc-ispell-start)
6514         (checkdoc-ispell-continue, checkdoc-ispell-comments)
6515         (checkdoc-ispell-defun): Remove unused arg `take-notes'.
6517         * ido.el (ido-completion-help): Fix up compiler warning.
6519 2013-08-09  Juanma Barranquero  <lekktu@gmail.com>
6521         * frameset.el (frameset-p): Add autoload cookie.
6522         (frameset--jump-to-register): New function, based on code moved from
6523         register.el.
6524         (frameset-to-register): Move from register.el.  Adapt to `registerv'.
6526         * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
6527         (frameset-restore, frameset-save, frameset-session-filter-alist):
6528         Remove declarations.
6529         (register-alist): Doc fix.
6530         (frameset-to-register): Move to frameset.el.
6531         (jump-to-register, describe-register-1): Remove frameset-specific code.
6533 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
6535         * allout-widgets.el (allout-widgets-pre-command-business)
6536         (allout-widgets-post-command-business)
6537         (allout-widgets-after-change-handler)
6538         (allout-decorate-item-and-context, allout-set-boundary-marker)
6539         (allout-body-modification-handler)
6540         (allout-graphics-modification-handler): Mark ignored arguments.
6541         (allout-widgets-post-command-business)
6542         (allout-widgets-exposure-change-processor)
6543         (allout-widgets-exposure-undo-processor)
6544         (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
6545         (allout-parse-item-at-point, allout-decorate-item-guides)
6546         (allout-decorate-item-cue, allout-item-span): Remove unused variables.
6547         * allout.el (epa-passphrase-callback-function): Declare.
6548         (allout-overlay-insert-in-front-handler)
6549         (allout-overlay-interior-modification-handler)
6550         (allout-isearch-end-handler, allout-chart-siblings)
6551         (allout-up-current-level, allout-end-of-level, allout-reindent-body)
6552         (allout-yank-processing, allout-process-exposed)
6553         (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
6554         (allout-latex-verbatim-quote-curr-line): Remove unused variables.
6555         * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
6556         (lisp-indent-defform): Mark ignored arguments.
6557         (lisp-indent-line): Mark ignored arguments.  Remove unused variables.
6558         (calculate-lisp-indent): Remove unused variables.
6559         * international/characters.el (indian-2-column, arabic-2-column)
6560         (tibetan): Mark ignored arguments.
6561         (use-cjk-char-width-table): Mark ignored arguments.
6562         Remove unused variables.
6563         * international/fontset.el (build-default-fontset-data)
6564         (x-compose-font-name, create-fontset-from-fontset-spec):
6565         Mark ignored arguments.
6566         (fontset-plain-name): Remove unused variables.
6567         * international/mule.el (charset-id, charset-bytes, generic-char-p)
6568         (keyboard-coding-system): Mark ignored arguments.
6569         (find-auto-coding): Remove unused variables.  Use `ignore-errors'.
6570         * help.el (resize-temp-buffer-window):
6571         * window.el (display-buffer-in-major-side-window)
6572         (display-buffer-in-side-window, display-buffer-in-previous-window):
6573         Remove unused variables.
6574         * isearch.el (isearch-forward-symbol):
6575         * version.el (emacs-bzr-version-bzr):
6576         * international/mule-cmds.el (current-language-environment):
6577         * term/common-win.el (x-handle-iconic, x-handle-geometry)
6578         (x-handle-display):
6579         * term/pc-win.el (x-list-fonts, x-display-planes)
6580         (x-display-color-cells, x-server-max-request-size, x-server-vendor)
6581         (x-server-version, x-display-screens, x-display-mm-height)
6582         (x-display-mm-width, x-display-backing-store, x-display-visual-class)
6583         (x-selection-owner-p, x-own-selection-internal)
6584         (x-disown-selection-internal, x-get-selection-internal)
6585         (msdos-initialize-window-system):
6586         * term/tty-colors.el (tty-color-alist, tty-color-clear):
6587         * term/x-win.el (x-handle-no-bitmap-icon):
6588         * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
6589         (vc-default-find-file-hook, vc-default-extra-menu):
6590         Mark ignored arguments.
6592 2013-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6594         * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
6595         break-condition in the context of the debugged code (bug#12685).
6597 2013-08-08  Christopher Schmidt  <christopher@ch.ristopher.com>
6599         * comint.el:
6600         Do not use an overlay to highlight the last prompt.  (Bug#14744)
6601         (comint-mode): Make comint-last-prompt buffer local.
6602         (comint-last-prompt): New variable.
6603         (comint-last-prompt-overlay): Remove.  Superseded by
6604         comint-last-prompt.
6605         (comint-snapshot-last-prompt, comint-output-filter):
6606         Use comint-last-prompt.
6608 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
6610         * frameset.el (frameset-valid-p): Check vector length.  Doc fix.
6611         (frameset-save): Check validity of the resulting frameset.
6613 2013-08-08  Xue Fuqiao  <xfq.free@gmail.com>
6615         * ido.el (ido-record-command): Add doc string.
6617 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
6619         * frameset.el (frameset): Do not disable creation of the default
6620         frameset-p predicate.  Doc fix.
6621         (frameset-valid-p): New function, copied from the old predicate-p.
6622         Add additional checks.
6623         (frameset-restore): Check with frameset-valid-p.
6624         (frameset-p, frameset-version, frameset-timestamp, frameset-app)
6625         (frameset-name, frameset-description, frameset-properties)
6626         (frameset-states): Add docstring.
6627         (frameset-session-filter-alist, frameset-persistent-filter-alist)
6628         (frameset-filter-alist): Doc fixes.
6630 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
6632         * frameset.el (frameset-p, frameset-prop): Doc fixes.
6634 2013-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6636         * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
6637         extracted from byte-compile-callargs-warn and byte-compile-normal-call.
6638         (byte-compile-callargs-warn, byte-compile-function-form): Use it.
6639         (byte-compile-normal-call): Remove obsolescence check.
6641 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
6643         * frameset.el (frameset-restore): Doc fix.
6645         * register.el (frameset-frame-id, frameset-frame-with-id)
6646         (frameset-p, frameset-restore, frameset-save): Declare.
6647         (register-alist): Document framesets.
6648         (frameset-session-filter-alist): Declare.
6649         (frameset-to-register): New function.
6650         (jump-to-register): Implement jumping to framesets.  Doc fix.
6651         (describe-register-1): Describe framesets.
6653         * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
6655 2013-08-07  Juanma Barranquero  <lekktu@gmail.com>
6657         * desktop.el (desktop-save-frameset): Use new frameset-save args.
6658         Use lexical-binding.
6660         * frameset.el (frameset): Use type vector, not list (incompatible
6661         change).  Do not declare a new constructor, use the default one.
6662         Upgrade suggested properties `app', `name' and `desc' to slots `app',
6663         `name' and `description', respectively, and add read-only slot
6664         `timestamp'.  Doc fixes.
6665         (frameset-copy, frameset-persistent-filter-alist)
6666         (frameset-filter-alist, frameset-switch-to-gui-p)
6667         (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
6668         (frameset-filter-sanitize-color, frameset-filter-minibuffer)
6669         (frameset-filter-iconified, frameset-keep-original-display-p):
6670         Doc fixes.
6671         (frameset-filter-shelve-param, frameset-filter-unshelve-param):
6672         Rename from frameset-filter-(save|restore)-param.  All callers changed.
6673         Doc fix.
6674         (frameset-p): Adapt to change to vector and be more thorough.
6675         Change arg name to OBJECT.  Doc fix.
6676         (frameset-prop): Rename arg PROP to PROPERTY.  Doc fix.
6677         (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
6678         All callers changed.
6679         (frameset-frame-with-id): Rename from frameset-locate-frame-id.
6680         All callers changed.
6681         (frameset--record-minibuffer-relationships): Rename from
6682         frameset--process-minibuffer-frames.  All callers changed.
6683         (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
6684         Use new default constructor (again).  Doc fix.
6685         (frameset--find-frame-if): Rename from `frameset--find-frame.
6686         All callers changed.
6687         (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
6688         (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
6689         Doc fix.
6690         (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
6691         PARAMETERS and WINDOW-STATE, respectively.
6692         (frameset-restore): Add new keyword argument PREDICATE.
6693         Reset frameset--target-display to nil.  Doc fix.
6695 2013-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6697         * progmodes/bat-mode.el (bat--syntax-propertize): New var.
6698         (bat-mode): Use it.
6699         (bat-mode-syntax-table): Mark \n as end-of-comment.
6700         (bat-font-lock-keywords): Remove comment rule.
6702         * progmodes/bat-mode.el: Rename from dos.el.  Use "bat-" prefix.
6703         (dos-mode-help): Remove.  Use describe-mode (C-h m) instead.
6705         * emacs-lisp/bytecomp.el: Check existence of f in #'f.
6706         (byte-compile-callargs-warn): Use `push'.
6707         (byte-compile-arglist-warn): Ignore higher-order "calls".
6708         (byte-compile-file-form-autoload): Use `pcase'.
6709         (byte-compile-function-form): If quoting a symbol, check that it exists.
6711 2013-08-07  Eli Zaretskii  <eliz@gnu.org>
6713         * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
6714         and add a few popular commands found in batch files.
6715         (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
6716         (dos-mode): Doc fixes.
6718 2013-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6720         * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
6721         (dos-mode): Use setq-local.  Add space after "rem".
6722         (dos-mode-syntax-table): Don't use "w" for symbol chars.
6723         (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
6725 2013-08-07  Arni Magnusson  <arnima@hafro.is>
6727         * progmodes/dos.el: New file.
6728         * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
6729         dos-mode.
6731 2013-08-06  Glenn Morris  <rgm@gnu.org>
6733         * calendar/calendar.el: Add new faces, and day-header-array.
6734         (calendar-weekday-header, calendar-weekend-header)
6735         (calendar-month-header): New faces.
6736         (calendar-day-header-construct): New function.
6737         (calendar-day-header-width): Also :set calendar-day-header-array.
6738         (calendar-american-month-header, calendar-european-month-header)
6739         (calendar-iso-month-header): Use calendar- faces.
6740         (calendar-generate-month):
6741         Use calendar-day-header-array for day headers; apply faces to them.
6742         (calendar-mode): Check calendar-font-lock-keywords non-nil.
6743         (calendar-abbrev-construct): Add optional maxlen argument.
6744         (calendar-day-name-array): Doc fix.
6745         (calendar-day-name-array, calendar-abbrev-length)
6746         (calendar-day-abbrev-array):
6747         Also :set calendar-day-header-array, and maybe redraw.
6748         (calendar-day-header-array): New option.  (Bug#15007)
6749         (calendar-font-lock-keywords): Set to nil and make obsolete.
6750         (calendar-day-name): Add option to use header array.
6752 2013-08-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6754         * net/shr.el (shr-render-td): Remove debugging.
6755         (shr-render-td): Make width computation consistent by defaulting
6756         all zero-width columns to 10 characters.  This may not be optimal,
6757         but it's at least consistent.
6758         (shr-make-table-1): Redo last change to fix the real problem in
6759         colspan handling.
6761 2013-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
6763         * files.el (cache-long-line-scans):
6764         Make obsolete alias to `cache-long-scans'.
6766 2013-08-06  Juanma Barranquero  <lekktu@gmail.com>
6768         * frameset.el (frameset, frameset-filter-alist)
6769         (frameset-filter-params, frameset-save, frameset--reuse-frame)
6770         (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
6771         (frameset-compute-pos): Rename from frameset--compute-pos,
6772         and add docstring.
6773         (frameset-move-onscreen): Use frameset-compute-pos.
6774         Most changes suggested by Drew Adams <drew.adams@oracle.com>.
6776         * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
6777         Fix typos in docstrings.
6779 2013-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
6781         * frame.el (get-other-frame): Tiny cleanup.
6783 2013-08-06  Juanma Barranquero  <lekktu@gmail.com>
6785         * vc/vc.el (vc-default-ignore-completion-table):
6786         Silence byte-compiler warning.
6788         * frameset.el (frameset-p): Don't check non-nullness of the `properties'
6789         slot, which can indeed be nil.
6790         (frameset-live-filter-alist, frameset-persistent-filter-alist):
6791         Move entry for `left' from persistent to live filter alist.
6792         (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
6793         Doc fixes.
6794         (frameset-filter-params): When restoring a frame, copy items added to
6795         `filtered', to avoid unwittingly modifying the original parameters.
6796         (frameset-move-onscreen): Rename from frameset--move-onscreen.  Doc fix.
6797         (frameset--restore-frame): Fix reference to frameset-move-onscreen.
6799         * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
6800         to use looking-at-p instead of looking-at.  (Bug#15028)
6802 2013-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6804         Revert introduction of isearch-filter-predicates (bug#14714).
6805         Rely on add-function instead.
6806         * isearch.el (isearch-filter-predicates): Rename it back to
6807         isearch-filter-predicate.
6808         (isearch-message-prefix): Use advice-function-mapc and advice
6809         properties to get the isearch-message-prefix.
6810         (isearch-search, isearch-lazy-highlight-search): Revert to funcall
6811         instead of run-hook-with-args-until-failure.
6812         (isearch-filter-visible): Not obsolete any more.
6813         * loadup.el: Preload nadvice.
6814         * replace.el (perform-replace): Revert to funcall
6815         instead of run-hook-with-args-until-failure.
6816         * wdired.el (wdired-change-to-wdired-mode): Use add-function.
6817         * dired-aux.el (dired-isearch-filenames-mode): Rename from
6818         dired-isearch-filenames-toggle; make it into a proper minor mode.
6819         Use add/remove-function.
6820         (dired-isearch-filenames-setup, dired-isearch-filenames-end):
6821         Call the minor-mode rather than add/remove-hook.
6822         (dired-isearch-filter-filenames):
6823         Remove isearch-message-prefix property.
6824         * info.el (Info--search-loop): New function, extracted from Info-search.
6825         Funcall isearch-filter-predicate instead of
6826         run-hook-with-args-until-failure isearch-filter-predicates.
6827         (Info-search): Use it.
6828         (Info-mode): Use isearch-filter-predicate instead of
6829         isearch-filter-predicates.
6831 2013-08-05  Dmitry Antipov  <dmantipov@yandex.ru>
6833         Do not call to `selected-window' where it is assumed by default.
6834         Affected functions are `window-minibuffer-p', `window-dedicated-p',
6835         `window-hscroll', `window-width', `window-height', `window-buffer',
6836         `window-frame', `window-start', `window-point', `next-window'
6837         and `window-display-table'.
6838         * abbrev.el (abbrev--default-expand):
6839         * bs.el (bs--show-with-configuration):
6840         * buff-menu.el (Buffer-menu-mouse-select):
6841         * calc/calc.el (calc):
6842         * calendar/calendar.el (calendar-generate-window):
6843         * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
6844         (diary-make-entry):
6845         * comint.el (send-invisible, comint-dynamic-complete-filename)
6846         (comint-dynamic-simple-complete, comint-dynamic-list-completions):
6847         * completion.el (complete):
6848         * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
6849         * disp-table.el (describe-current-display-table):
6850         * doc-view.el (doc-view-insert-image):
6851         * ebuff-menu.el (Electric-buffer-menu-mouse-select):
6852         * ehelp.el (with-electric-help):
6853         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
6854         * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
6855         * emacs-lisp/helper.el (Helper-help-scroller):
6856         * emulation/cua-base.el (cua--post-command-handler-1):
6857         * eshell/esh-mode.el (eshell-output-filter):
6858         * ffap.el (ffap-gnus-wrapper):
6859         * help-macro.el (make-help-screen):
6860         * hilit-chg.el (highlight-compare-buffers):
6861         * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
6862         * hl-line.el (global-hl-line-highlight):
6863         * icomplete.el (icomplete-simple-completing-p):
6864         * isearch.el (isearch-done):
6865         * jit-lock.el (jit-lock-stealth-fontify):
6866         * mail/rmailsum.el (rmail-summary-scroll-msg-up):
6867         * mouse-drag.el (mouse-drag-should-do-col-scrolling):
6868         * mpc.el (mpc-tagbrowser, mpc):
6869         * net/rcirc.el (rcirc-any-buffer):
6870         * play/gomoku.el (gomoku-max-width, gomoku-max-height):
6871         * play/landmark.el (landmark-max-width, landmark-max-height):
6872         * play/zone.el (zone):
6873         * progmodes/compile.el (compilation-goto-locus):
6874         * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
6875         * progmodes/etags.el (find-tag-other-window):
6876         * progmodes/fortran.el (fortran-column-ruler):
6877         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
6878         * progmodes/verilog-mode.el (verilog-point-text):
6879         * reposition.el (reposition-window):
6880         * rot13.el (toggle-rot13-mode):
6881         * server.el (server-switch-buffer):
6882         * shell.el (shell-dynamic-complete-command)
6883         (shell-dynamic-complete-environment-variable):
6884         * simple.el (insert-buffer, set-selective-display)
6885         (delete-completion-window):
6886         * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
6887         (speedbar-recenter):
6888         * startup.el (fancy-splash-head):
6889         * textmodes/ispell.el (ispell-command-loop):
6890         * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
6891         * tutorial.el (help-with-tutorial):
6892         * vc/add-log.el (add-change-log-entry):
6893         * vc/compare-w.el (compare-windows):
6894         * vc/ediff-help.el (ediff-indent-help-message):
6895         * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
6896         * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
6897         (ediff-setup-control-frame):
6898         * vc/emerge.el (emerge-position-region):
6899         * vc/pcvs-util.el (cvs-bury-buffer):
6900         * window.el (walk-windows, mouse-autoselect-window-select):
6901         * winner.el (winner-set-conf, winner-undo): Related users changed.
6903 2013-08-05  Juanma Barranquero  <lekktu@gmail.com>
6905         * frameset.el (frameset--set-id): Doc fix.
6906         (frameset-frame-id, frameset-frame-id-equal-p)
6907         (frameset-locate-frame-id): New functions.
6908         (frameset--process-minibuffer-frames, frameset--reuse-frame)
6909         (frameset-restore): Use them.
6911 2013-08-05  Dmitry Antipov  <dmantipov@yandex.ru>
6913         Do not call to `selected-frame' where it is assumed by default.
6914         Affected functions are `raise-frame', `redraw-frame',
6915         `frame-first-window', `frame-terminal' and `delete-frame'.
6916         * calendar/appt.el (appt-disp-window):
6917         * epg.el (epg-wait-for-completion):
6918         * follow.el (follow-delete-other-windows-and-split)
6919         (follow-avoid-tail-recenter):
6920         * international/mule.el (set-terminal-coding-system):
6921         * mail/rmail.el (rmail-mail-return):
6922         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
6923         * progmodes/f90.el (f90-add-imenu-menu):
6924         * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
6925         * server.el (server-switch-buffer):
6926         * simple.el (delete-completion-window):
6927         * talk.el (talk):
6928         * term/xterm.el (terminal-init-xterm-modify-other-keys)
6929         (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
6930         * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
6931         * vc/ediff.el (ediff-documentation): Related users changed.
6932         * frame.el (selected-terminal): Remove the leftover.
6934 2013-08-05  Glenn Morris  <rgm@gnu.org>
6936         * calendar/calendar.el (calendar-generate-month):
6937         Fix for calendar-column-width != 1 + calendar-day-digit-width.
6938         (calendar-generate-month, calendar-font-lock-keywords):
6939         Fix for calendar-day-header-width > length of any day name.
6941 2013-08-05  Juanma Barranquero  <lekktu@gmail.com>
6943         * desktop.el (desktop-clear): Use new name of sort predicate.
6945         * frameset.el (frameset): Add docstring.  Move :version property to its
6946         own `version' slot.
6947         (frameset-copy): Rename from copy-frameset.
6948         (frameset-p): Check more thoroughly.
6949         (frameset-prop): Do not check for :version, which is no longer a prop.
6950         (frameset-live-filter-alist, frameset-persistent-filter-alist):
6951         Use new :never value instead of t.
6952         (frameset-filter-alist): Expand and clarify docstring.
6953         (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
6954         (frameset-filter-minibuffer, frameset-filter-save-param)
6955         (frameset-filter-restore-param, frameset-filter-iconified):
6956         Add pointer to docstring of frameset-filter-alist.
6957         (frameset-filter-params): Rename filter values to be more meaningful:
6958         :never instead of t, and reverse the meanings of :save and :restore.
6959         (frameset--process-minibuffer-frames): Clarify error message.
6960         (frameset-save): Avoid unnecessary and confusing call to framep.
6961         Use new BOA constructor for framesets.
6962         (frameset--reuse-list): Doc fix.
6963         (frameset--restore-frame): Rename from frameset--get-frame.  Doc fix.
6964         (frameset--minibufferless-last-p): Rename from frameset--sort-states.
6965         (frameset-minibufferless-first-p): Doc fix.
6966         Rename from frameset-sort-frames-for-deletion.
6967         (frameset-restore): Doc fixes.  Use new function names.
6968         Most changes suggested by Drew Adams <drew.adams@oracle.com>.
6970 2013-08-04  Juanma Barranquero  <lekktu@gmail.com>
6972         * desktop.el (desktop-restore-forces-onscreen)
6973         (desktop-restore-reuses-frames): Document :keyword constant values.
6974         (desktop-filter-parameters-alist): Remove, now identical to
6975         frameset-filter-alist.
6976         (desktop--filter-tty*): Remove, moved to frameset.el.
6977         (desktop-save-frameset, desktop-restore-frameset):
6978         Do not pass :filters argument.
6980         * frameset.el (frameset-live-filter-alist)
6981         (frameset-persistent-filter-alist): New variables.
6982         (frameset-filter-alist): Use them.  Add autoload cookie.
6983         (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
6984         (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
6985         `frameset--id' (it's supposed to be internal to frameset.el).
6986         (frameset--process-minibuffer-frames): Ditto.  Doc fix.
6987         (frameset--initial-params): New function.
6988         (frameset--get-frame): Use it.  Doc fix.
6989         (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
6990         Accept :all, not 'all.
6991         (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
6992         FORCE-DISPLAY.  Use :keywords for constant arguments to avoid collision
6993         with fbound symbols.  Fix frame id matching, and remove matching ids if
6994         the frame being restored is deleted.  Obey :delete.
6996 2013-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
6998         * subr.el (macrop): New function.
6999         (text-clone--maintaining): New var.
7000         (text-clone--maintain): Rename from text-clone-maintain.  Use it
7001         instead of inhibit-modification-hooks.
7003         * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
7004         a proxy, so as handle autoloads and redefinitions of the target.
7005         (advice--defalias-fset, advice-remove): Use advice--symbol-function.
7007         * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
7008         Remove bogus (arrayp . stringp) pair.  Add entries for `vectorp'.
7009         (pcase--mutually-exclusive-p): New function.
7010         (pcase--split-consp): Use it.
7011         (pcase--split-pred): Use it.  Optimize the case where `pat' is a qpat
7012         mutually exclusive with the current predicate.
7014         * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
7015         (edebug-macrop): Remove.  Use `macrop' instead.
7016         * emacs-lisp/advice.el (ad-subr-p): Remove.  Use `subrp' instead.
7017         (ad-macro-p):
7018         * eshell/esh-cmd.el (eshell-macrop):
7019         * apropos.el (apropos-macrop): Remove.  Use `macrop' instead.
7021 2013-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7023         * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
7024         (advice-mapc): New function, using it.
7025         (advice-function-member-p): New function.
7026         (advice--normalize): Store the cdr in advice--saved-rewrite since
7027         that's the part that will be changed.
7028         (advice--symbol-function): New function.
7029         (advice-remove): Handle removal before the function is defined.
7030         Adjust to new advice--saved-rewrite.
7031         (advice-member-p): Use advice-function-member-p and
7032         advice--symbol-function.
7034 2013-08-04  Juanma Barranquero  <lekktu@gmail.com>
7036         * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
7037         (frameset-filter-minibuffer): Doc fix.
7038         (frameset-restore): Fix autoload cookie.  Fix typo in docstring.
7039         (frameset--set-id, frameset--process-minibuffer-frames)
7040         (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
7041         (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
7043         * desktop.el (desktop-clear): Only delete frames when called
7044         interactively and desktop-restore-frames is non-nil.  Doc fix.
7045         (desktop-read): Set desktop-saved-frameset to nil.
7047 2013-08-04  Xue Fuqiao  <xfq.free@gmail.com>
7049         * vc/vc.el (vc-ignore): Rewrite.
7050         (vc-default-ignore-completion-table):
7051         (vc--read-lines):
7052         (vc--add-line, vc--remove-regexp): New functions.
7054         * vc/vc-svn.el (vc-svn-ignore): Doc fix.
7055         (vc-svn-ignore-completion-table): New function.
7057         * vc/vc-hg.el (vc-hg-ignore): Rewrite.
7058         (vc-hg-ignore-completion-table):
7059         (vc-hg-find-ignore-file): New functions.
7061         * vc/vc-git.el (vc-git-ignore): Rewrite.
7062         (vc-git-ignore-completion-table):
7063         (vc-git-find-ignore-file): New functions.
7065         * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
7067         * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
7068         (vc-bzr-ignore-completion-table):
7069         (vc-bzr-find-ignore-file): New functions.
7071 2013-08-03  Juanma Barranquero  <lekktu@gmail.com>
7073         * frameset.el (frameset-prop): New function and setter.
7074         (frameset-save): Do not modify frame list passed by the caller.
7076 2013-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7078         * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
7080 2013-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7082         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
7083         (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
7085         * custom.el (custom-initialize-default, custom-initialize-set)
7086         (custom-initialize-reset, custom-initialize-changed): Affect the
7087         toplevel-default-value (bug#6275, bug#14586).
7088         * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
7089         for bug#6275.
7091 2013-08-02  Juanma Barranquero  <lekktu@gmail.com>
7093         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
7094         Add cl-def* expressions.
7096         * frameset.el (frameset-filter-params): Fix order of arguments.
7098 2013-08-02  Juanma Barranquero  <lekktu@gmail.com>
7100         Move code related to saving frames to frameset.el.
7101         * desktop.el: Require frameset.
7102         (desktop-restore-frames): Doc fix.
7103         (desktop-restore-reuses-frames): Rename from
7104         desktop-restoring-reuses-frames.
7105         (desktop-saved-frameset): Rename from desktop-saved-frame-states.
7106         (desktop-clear): Clear frames too.
7107         (desktop-filter-parameters-alist): Set from frameset-filter-alist.
7108         (desktop--filter-tty*, desktop-save, desktop-read):
7109         Use frameset functions.
7110         (desktop-before-saving-frames-functions, desktop--filter-*-color)
7111         (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
7112         (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
7113         (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
7114         (desktop--process-minibuffer-frames, desktop-save-frames)
7115         (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
7116         (desktop--find-frame, desktop--select-frame, desktop--make-frame)
7117         (desktop--sort-states, desktop-restoring-frames-p)
7118         (desktop-restore-frames): Remove.  Most code moved to frameset.el.
7119         (desktop-restoring-frameset-p, desktop-restore-frameset)
7120         (desktop--check-dont-save, desktop-save-frameset): New functions.
7121         (desktop--app-id): New constant.
7122         (desktop-first-buffer, desktop-buffer-ok-count)
7123         (desktop-buffer-fail-count): Move before first use.
7124         * frameset.el: New file.
7126 2013-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
7128         * files.el: Use lexical-binding.
7129         (dir-locals-read-from-file): Remove unused `err' variable.
7130         (hack-dir-local-variables--warned-coding): New var.
7131         (hack-dir-local-variables): Use it to avoid repeated warnings.
7132         (make-backup-file-name--default-function): New function.
7133         (make-backup-file-name-function): Use it as default.
7134         (buffer-stale--default-function): New function.
7135         (buffer-stale-function): Use it as default.
7136         (revert-buffer-insert-file-contents--default-function): New function.
7137         (revert-buffer-insert-file-contents-function): Use it as default.
7138         (insert-directory): Avoid add-to-list.
7140         * autorevert.el (auto-revert-handler): Simplify.
7141         Use buffer-stale--default-function.
7143 2013-08-01  Tassilo Horn  <tsdh@gnu.org>
7145         * speedbar.el (speedbar-query-confirmation-method): Doc fix.
7147         * whitespace.el (whitespace-ensure-local-variables): New function.
7148         (whitespace-cleanup-region): Call it.
7149         (whitespace-turn-on): Call it.
7151 2013-08-01  Michael Albinus  <michael.albinus@gmx.de>
7153         Complete file name handlers.
7155         * net/tramp.el (tramp-handle-set-visited-file-modtime)
7156         (tramp-handle-verify-visited-file-modtime)
7157         (tramp-handle-file-notify-rm-watch): New functions.
7158         (tramp-call-process): Do not bind `default-directory'.
7160         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
7161         Order alphabetically.
7162         [access-file, add-name-to-file, dired-call-process]:
7163         [dired-compress-file, file-acl, file-notify-rm-watch]:
7164         [file-ownership-preserved-p, file-selinux-context]:
7165         [make-directory-internal, make-symbolic-link, set-file-acl]:
7166         [set-file-selinux-context, set-visited-file-modtime]:
7167         [verify-visited-file-modtime]: Add handler.
7168         (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
7170         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
7171         [file-notify-add-watch, file-notify-rm-watch]:
7172         [set-file-times, set-visited-file-modtime]:
7173         [verify-visited-file-modtime]: Add handler.
7174         (with-tramp-gvfs-error-message)
7175         (tramp-gvfs-handle-set-visited-file-modtime)
7176         (tramp-gvfs-fuse-file-name): Remove.
7177         (tramp-gvfs-handle-file-notify-add-watch)
7178         (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
7179         (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
7181         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
7182         Order alphabetically.
7183         [file-notify-rm-watch ]: Use default Tramp handler.
7184         [executable-find]: Remove private handler.
7185         (tramp-do-copy-or-rename-file-out-of-band): Do not bind
7186         `default-directory'.
7187         (tramp-sh-handle-executable-find)
7188         (tramp-sh-handle-file-notify-rm-watch): Remove functions.
7189         (tramp-sh-file-gvfs-monitor-dir-process-filter)
7190         (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
7191         Do not use `format' in `tramp-message'.
7193         * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
7194         [file-notify-rm-watch, set-visited-file-modtime]:
7195         [verify-visited-file-modtime]: Add handler.
7196         (tramp-smb-call-winexe): Do not bind `default-directory'.
7198 2013-08-01  Xue Fuqiao  <xfq.free@gmail.com>
7200         * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
7202 2013-07-31  Dmitry Gutov  <dgutov@yandex.ru>
7204         * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
7205         use it.
7206         (log-view-diff-changeset): Same.
7207         (log-view-diff-common): Call backend command `previous-revision'
7208         to find out the previous revision, in both cases.  Swap the
7209         variables `to' and `fr', so that `fr' usually refers to the
7210         earlier revision (Bug#14989).
7212 2013-07-31  Kan-Ru Chen  <kanru@kanru.info>
7214         * ibuf-ext.el (ibuffer-filter-by-filename):
7215         Make it work with dired buffers too.
7217 2013-07-31  Dmitry Antipov  <dmantipov@yandex.ru>
7219         * emacs-lisp/re-builder.el (reb-color-display-p):
7220         * files.el (save-buffers-kill-terminal):
7221         * net/browse-url.el (browse-url):
7222         * server.el (server-save-buffers-kill-terminal):
7223         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
7224         Prefer nil to selected-frame for the first arg of frame-parameter.
7226 2013-07-31  Xue Fuqiao  <xfq.free@gmail.com>
7228         * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
7230 2013-07-30  Stephen Berman  <stephen.berman@gmx.net>
7232         * minibuffer.el (completion--twq-all): Try and preserve each
7233         completion's case choice (bug#14907).
7235 2013-07-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7237         * net/network-stream.el (open-network-stream): Mention the new
7238         :nogreeting parameter.
7239         (network-stream-open-starttls): Use the :nogreeting parameter
7240         (bug#14938).
7242         * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
7244         * net/eww.el (eww-setup-buffer): Switching to the buffer seems
7245         more natural than popping.
7247         * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
7248         (shr-urlify): Highlight under mouse.
7250 2013-07-30  Xue Fuqiao  <xfq.free@gmail.com>
7252         * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
7254         * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
7256         * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'.  Use `*vc*'
7257         buffer for output.
7259         * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'.  Do not assume
7260         point-min==1.  Fix search string.  Fix parentheses missing.
7262         * vc/vc-git.el (vc-git-ignore): Remove `interactive'.  Do not
7263         assume point-min==1.  Fix search string.  Fix parentheses missing.
7265         * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
7267         * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'.  Use `*vc*'
7268         buffer for output.
7270 2013-07-29  Eli Zaretskii  <eliz@gnu.org>
7272         * frame.el (frame-notice-user-settings): Avoid inflooping when the
7273         initial frame is minibuffer-less.  (Bug#14841)
7275 2013-07-29  Michael Albinus  <michael.albinus@gmx.de>
7277         * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
7278         option.
7280         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
7281         (tramp-maybe-open-connection): Use it.
7283 2013-07-28  Juanma Barranquero  <lekktu@gmail.com>
7285         * desktop.el (desktop--make-frame): Include `minibuffer' in the
7286         minimal set of parameters passed when creating a frame, because
7287         the minibuffer status of a frame cannot be changed later.
7289 2013-07-28  Stephen Berman  <stephen.berman@gmx.net>
7291         * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
7292         replace-regexp-in-string and inadvertent omissions in previous change.
7293         (todo-filter-items): Ensure only file names are comma-separated in
7294         name of filtered items buffer.
7296 2013-07-28  Juanma Barranquero  <lekktu@gmail.com>
7298         * desktop.el: Optionally force offscreen frames back onscreen.
7299         (desktop-restoring-reuses-frames): New option.
7300         (desktop--compute-pos, desktop--move-onscreen): New functions.
7301         (desktop--make-frame): Use desktop--move-onscreen.
7303 2013-07-27  Alan Mackenzie  <acm@muc.de>
7305         Fontify a Java generic method as a function.
7306         * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
7307         value to t.
7309 2013-07-27  Stephen Berman  <stephen.berman@gmx.net>
7311         * calendar/todo-mode.el: Add command to rename todo files.
7312         (todo-rename-file): New command.
7313         (todo-key-bindings-t): Add key binding for it.  Change the
7314         bindings of todo-filter-regexp-items(-multifile) to use `x'
7315         instead of `r', since the latter is better suited to the new
7316         renaming command.
7318 2013-07-27  Alan Mackenzie  <acm@muc.de>
7320         Make Java try-with-resources statement parse properly.
7321         * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
7322         (c-block-stmt-1-2-key): New language constants/variables.
7323         * progmodes/cc-engine.el (c-beginning-of-statement-1)
7324         (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
7325         * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
7326         with c-block-stmt-1-2-key.
7328 2013-07-27  Juanma Barranquero  <lekktu@gmail.com>
7330         * desktop.el (desktop--make-frame): Apply most frame parameters after
7331         creating the frame to force (partially or totally) offscreen frames to
7332         be restored as such.
7334 2013-07-26  Xue Fuqiao  <xfq.free@gmail.com>
7336         * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
7337         (Bug#14948)
7339 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7341         * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
7342         `base' arg of backtrace-frame.
7344 2013-07-26  Eli Zaretskii  <eliz@gnu.org>
7346         * simple.el (list-processes): Doc fix.
7348 2013-07-26  Juanma Barranquero  <lekktu@gmail.com>
7350         * desktop.el (desktop--select-frame):
7351         Try harder to reuse existing frames.
7353 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7355         * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
7356         (edebug-eval): Use backtrace-eval.
7357         (edebug--display, edebug--recursive-edit): Don't let-bind the
7358         edebug-outer-* vars that keep track of variables we locally let-bind.
7359         (edebug-outside-excursion): Don't restore outside values of locally
7360         let-bound vars.
7361         (edebug--display): Use user-error.
7362         (cl-lexical-debug, cl-debug-env): Remove.
7364 2013-07-26  Juanma Barranquero  <lekktu@gmail.com>
7366         * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
7367         are restored to be sure that they are visible before deleting any
7368         remaining ones.
7370 2013-07-26  Matthias Meulien  <orontee@gmail.com>
7372         * vc/vc-dir.el (vc-dir-mode-map): Add binding for
7373         vc-print-root-log.  (Bug#14948)
7375 2013-07-26  Richard Stallman  <rms@gnu.org>
7377         Add aliases for encrypting mail.
7378         * epa.el (epa-mail-aliases): New option.
7379         * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
7380         Bind inhibit-read-only so read-only text doesn't ruin everything.
7381         (epa-mail-default-recipients): New subroutine broken out.
7382         Handle epa-mail-aliases.
7384 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7386         Add support for lexical variables to the debugger's `e' command.
7387         * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
7388         vars, except for debugger-outer-match-data.
7389         (debugger-frame-number): Move check for "on a function call" from
7390         callers into it.  Add `skip-base' argument.
7391         (debugger-frame, debugger-frame-clear): Simplify accordingly.
7392         (debugger-env-macro): Only reset the state stored in non-variables,
7393         i.e. current-buffer and match-data.
7394         (debugger-eval-expression): Rewrite using backtrace-eval.
7395         * subr.el (internal--called-interactively-p--get-frame): Remove.
7396         (called-interactively-p):
7397         * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
7398         `base' arg of backtrace-frame instead.
7400 2013-07-26  Glenn Morris  <rgm@gnu.org>
7402         * align.el (align-regexp): Doc fix.  (Bug#14857)
7403         (align-region): Explicit error if subexpression missing/does not match.
7405         * simple.el (global-visual-line-mode):
7406         Do not duplicate the mode lighter.  (Bug#14858)
7408 2013-07-25  Martin Rudalics  <rudalics@gmx.at>
7410         * window.el (display-buffer): In display-buffer bind
7411         split-window-keep-point to t, bug#14829.
7413 2013-07-25  Juanma Barranquero  <lekktu@gmail.com>
7415         * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
7416         (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
7417         (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
7418         (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
7419         Change accordingly.
7420         (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
7421         Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
7423 2013-07-25  Glenn Morris  <rgm@gnu.org>
7425         * dired-x.el (dired-mark-extension): Convert comment to doc string.
7427 2013-07-25  Juanma Barranquero  <lekktu@gmail.com>
7429         * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
7430         parameter to modify-frame-parameters if the value has not changed;
7431         this is a workaround for bug#14949.
7432         (desktop--make-frame): On cl-delete-if call, check parameter name,
7433         not full parameter.
7435 2013-07-30  Xue Fuqiao  <xfq.free@gmail.com>
7437         * vc/vc.el (vc-ignore): New function.
7439         * vc/vc-svn.el (vc-svn-ignore): New function.
7441         * vc/vc-hg.el (vc-hg-ignore): New function.
7443         * vc/vc-git.el (vc-git-ignore): New function.
7445         * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
7446         (vc-dir-ignore): New function.
7448         * vc/vc-cvs.el (vc-cvs-ignore): New function.
7449         (cvs-append-to-ignore): Move here from pcvs.el.
7451         * vc/vc-bzr.el (vc-bzr-ignore): New function.
7453         * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
7455 2013-07-24  Juanma Barranquero  <lekktu@gmail.com>
7457         * desktop.el (desktop-restoring-frames-p): Return a true boolean.
7458         (desktop-restore-frames): Warn when deleting an existing frame failed.
7460 2013-07-24  Glenn Morris  <rgm@gnu.org>
7462         * ffap.el (ffap-machine-p): Handle "not known" response.  (Bug#14929)
7464 2013-07-24  Michael Albinus  <michael.albinus@gmx.de>
7466         * filenotify.el (file-notify-supported-p):
7467         * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
7468         Remove functions.
7470         * autorevert.el (auto-revert-use-notify):
7471         (auto-revert-notify-add-watch):
7472         * net/tramp.el (tramp-file-name-for-operation):
7473         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
7474         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
7475         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
7476         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
7477         Remove `file-notify-supported-p' entry.
7479 2013-07-24  Glenn Morris  <rgm@gnu.org>
7481         * printing.el: Replace all uses of deleted ps-windows-system,
7482         ps-lp-system, ps-flatten-list with lpr- versions.
7484 2013-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7486         * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
7487         checked with memq (bug#14935).
7489         * files.el (revert-buffer-function): Use a non-nil default.
7490         (revert-buffer-preserve-modes): Declare var to
7491         provide access to the `preserve-modes' argument.
7492         (revert-buffer): Let-bind it.
7493         (revert-buffer--default): New function, extracted from revert-buffer.
7495 2013-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
7497         * lpr.el: Signal print errors more prominently.
7498         (print-region-function): Don't default to nil.
7499         (lpr-print-region): New function, extracted from print-region-1.
7500         Check lpr's return value and signal an error in case of problem.
7501         (print-region-1): Use it.
7502         * ps-print.el (ps-windows-system, ps-lp-system): Remove.  Use the lpr-*
7503         versions instead.
7504         (ps-printer-name): Default to nil.
7505         (ps-printer-name-option): Default to lpr-printer-switch.
7506         (ps-print-region-function): Don't default to nil.
7507         (ps-postscript-code-directory): Simplify default.
7508         (ps-do-despool): Use lpr-print-region to properly check the outcome.
7509         (ps-string-list, ps-eval-switch, ps-flatten-list)
7510         (ps-flatten-list-1): Remove.
7511         (ps-multibyte-buffer): Avoid setq.
7512         * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
7513         (print-region-function, ps-print-region-function): Don't set them here.
7515 2013-07-24  Xue Fuqiao  <xfq.free@gmail.com>
7517         * ido.el (ido-fractionp):
7518         (ido-cache-ftp-work-directory-time, ido-max-prospects, ido-mode)
7519         (ido-max-file-prompt-width, ido-unc-hosts-cache)
7520         (ido-max-directory-size, ido-max-dir-file-cache)
7521         (ido-decorations): Doc fix.
7523         * ansi-color.el: Fix old URL.
7525 2013-07-23  Michael R. Mauger  <michael@mauger.com>
7527         * progmodes/sql.el: Version 3.3
7528         (sql-product-alist): Improve oracle :prompt-cont-regexp.
7529         (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
7530         (sql-interactive-remove-continuation-prompt): Rewrite, use
7531         functions above.  Fix continuation prompt and complete output line
7532         handling.
7533         (sql-redirect-one, sql-execute): Use `read-only-mode' on
7534         redirected output buffer.
7535         (sql-mode): Restore deleted code (Bug#13591).
7537 2013-07-23  Juanma Barranquero  <lekktu@gmail.com>
7539         * desktop.el (desktop-clear, desktop-list*): Fix previous change.
7541 2013-07-23  Michael Albinus  <michael.albinus@gmx.de>
7543         * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
7545         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
7546         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
7547         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
7549 2013-07-23  Juanma Barranquero  <lekktu@gmail.com>
7551         * desktop.el (desktop-clear): Simplify; remove useless checks
7552         against invalid buffer names.
7553         (desktop-list*): Use cl-list*.
7554         (desktop-buffer-info, desktop-create-buffer): Simplify.
7556 2013-07-23  Leo Liu  <sdl.web@gmail.com>
7558         * bookmark.el (bookmark-make-record): Restore NAME as a default
7559         value.  (Bug#14933)
7561 2013-07-22  Stefan Monnier  <monnier@iro.umontreal.ca>
7563         * emacs-lisp/autoload.el (autoload--setup-output): New function,
7564         extracted from autoload--insert-text.
7565         (autoload--insert-text): Remove.
7566         (autoload--print-cookie-text): New function, extracted from
7567         autoload--insert-cookie-text.
7568         (autoload--insert-cookie-text): Remove.
7569         (autoload-generate-file-autoloads): Adjust calls accordingly.
7571         * winner.el (winner-hook-installed-p): Remove.
7572         (winner-mode): Simplify accordingly.
7574         * subr.el (add-to-list): Fix compiler-macro when `append' is
7575         not constant.  Don't use `cl-member' for the base case.
7577         * progmodes/subword.el: Fix boundary case (bug#13758).
7578         (subword-forward-regexp): Make it a constant.  Wrap optional \\W in its
7579         own group.
7580         (subword-backward-regexp): Make it a constant.
7581         (subword-forward-internal): Don't treat a trailing capital as the
7582         beginning of a word.
7584 2013-07-22  Ari Roponen  <ari.roponen@gmail.com>  (tiny change)
7586         * emacs-lisp/package.el (package-menu-mode): Don't modify the
7587         global value of tabulated-list-revert-hook (bug#14930).
7589 2013-07-22  Juanma Barranquero  <lekktu@gmail.com>
7591         * desktop.el: Require 'cl-lib.
7592         (desktop-before-saving-frames-functions): New hook.
7593         (desktop--process-minibuffer-frames): Set desktop-mini parameter only
7594         for frames being saved.  Rename from desktop--save-minibuffer-frames.
7595         (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
7596         Do not save frames with non-nil `desktop-dont-save' parameter.
7597         Filter out deleted frames.
7598         (desktop--find-frame): Use cl-find-if.
7599         (desktop--select-frame): Use cl-(first|second|third) to access values
7600         of desktop-mini.
7601         (desktop--make-frame): Use cl-delete-if.
7602         (desktop--sort-states): Fix sorting of minibuffer-owning frames.
7603         (desktop-restore-frames): Use cl-(first|second|third) to access values
7604         of desktop-mini.  Look for visible frame at the end, not while
7605         restoring frames.
7607         * dired-x.el (dired-mark-unmarked-files, dired-virtual)
7608         (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
7609         Use string-match-p, looking-at-p (bug#14927).
7611 2013-07-21  Juanma Barranquero  <lekktu@gmail.com>
7613         * desktop.el (desktop-saved-frame-states):
7614         Rename from desktop--saved-states; all users changed.
7615         (desktop-save-frames): Rename from desktop--save-frames.
7616         Do not save state to desktop file.
7617         (desktop-save): Save desktop-saved-frame-states to desktop file
7618         and reset to nil.
7619         (desktop-restoring-frames-p): New function.
7620         (desktop-restore-frames): Use it.  Rename from desktop--restore-frames.
7621         (desktop-read): Use desktop-restoring-frames-p.  Do not try to fix
7622         buffer-lists when restoring frames.  Suggested by Martin Rudalics.
7624         * desktop.el: Correctly restore iconified frames.
7625         (desktop--filter-iconified-position): New function.
7626         (desktop-filter-parameters-alist): Add entries for `top' and `left'.
7628 2013-07-20  Glenn Morris  <rgm@gnu.org>
7630         * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
7631         Let `message' do the formatting.
7632         (def-gdb-preempt-display-buffer): Add explicit format.
7634         * image-dired.el (image-dired-track-original-file):
7635         Use with-current-buffer.
7636         (image-dired-track-thumbnail): Use with-current-buffer.
7637         Avoid changing point of wrong window.
7639         * image-dired.el (image-dired-track-original-file):
7640         Avoid changing point of wrong window.  (Bug#14909)
7642 2013-07-20  Richard Copley  <rcopley@gmail.com>  (tiny change)
7644         * progmodes/gdb-mi.el (gdb-done-or-error):
7645         Guard against "%" in gdb output.  (Bug#14127)
7647 2013-07-20  Andreas Schwab  <schwab@linux-m68k.org>
7649         * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
7650         (Bug#14826)
7652         * international/mule.el (coding-system-iso-2022-flags): Fix last
7653         change.
7655 2013-07-20  Kenichi Handa  <handa@gnu.org>
7657         * international/mule.el (coding-system-iso-2022-flags):
7658         Add `8-bit-level-4'.  (Bug#8522)
7660 2013-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7662         * net/shr.el (shr-mouse-browse-url): New command and keystroke
7663         (bug#14815).
7665         * net/eww.el (eww-process-text-input): Allow inputting when the
7666         point is at the start of the line, as the properties aren't
7667         front-sticky.
7669         * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
7670         degenerate widths.
7672 2013-07-19  Richard Stallman  <rms@gnu.org>
7674         * epa.el (epa-popup-info-window): Doc fix.
7676         * subr.el (split-string): New arg TRIM.
7678 2013-07-18  Juanma Barranquero  <lekktu@gmail.com>
7680         * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
7681         Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
7683 2013-07-18  Michael Albinus  <michael.albinus@gmx.de>
7685         * filenotify.el (file-notify--library): Rename from
7686         `file-notify-support'.  Do not autoload.  Adapt all uses.
7687         (file-notify-supported-p): New defun.
7689         * autorevert.el (auto-revert-use-notify):
7690         Use `file-notify-supported-p' instead of `file-notify-support'.
7691         Adapt docstring.
7692         (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
7694         * net/tramp.el (tramp-file-name-for-operation):
7695         Add `file-notify-supported-p'.
7697         * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
7698         New defun.
7699         (tramp-sh-file-name-handler-alist): Add it as handler for
7700         `file-notify-supported-p '.
7702         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
7703         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
7704         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
7705         Add `ignore' as handler for `file-notify-*' functions.
7707 2013-07-17  Eli Zaretskii  <eliz@gnu.org>
7709         * simple.el (line-move-partial, line-move): Don't start vscroll or
7710         scroll-up if the current line is not taller than the window.
7711         (Bug#14881)
7713 2013-07-16  Dmitry Gutov  <dgutov@yandex.ru>
7715         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
7716         highlight question marks in the method names as strings.
7717         (ruby-block-beg-keywords): Inline.
7718         (ruby-font-lock-keyword-beg-re): Extract from
7719         `ruby-font-lock-keywords'.
7721 2013-07-16  Jan Djärv  <jan.h.d@swipnet.se>
7723         * frame.el (blink-cursor-blinks): New defcustom.
7724         (blink-cursor-blinks-done): New defvar.
7725         (blink-cursor-start): Set blink-cursor-blinks-done to 1.
7726         (blink-cursor-timer-function): Check if number of blinks has been
7727         done on X and NS.
7728         (blink-cursor-suspend, blink-cursor-check): New defuns.
7730 2013-07-15  Glenn Morris  <rgm@gnu.org>
7732         * edmacro.el (edmacro-format-keys): Fix previous change.
7734 2013-07-15  Paul Eggert  <eggert@cs.ucla.edu>
7736         * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
7737         The hack didn't work outside English locales anyway.
7739 2013-07-15  Juanma Barranquero  <lekktu@gmail.com>
7741         * simple.el (define-alternatives): Rename from alternatives-define,
7742         per RMS' suggestion.
7744 2013-07-14  Juanma Barranquero  <lekktu@gmail.com>
7746         * desktop.el (desktop-restore-frames): Change default to t.
7747         (desktop-restore-in-current-display): Now offer more options.
7748         (desktop-restoring-reuses-frames): New customization option.
7749         (desktop--saved-states): Doc fix.
7750         (desktop-filter-parameters-alist): New variable, renamed and expanded
7751         from desktop--excluded-frame-parameters.
7752         (desktop--target-display): New variable.
7753         (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
7754         (desktop--filter-tty*, desktop--filter-*-color)
7755         (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
7756         (desktop--filter-save-desktop-parm)
7757         (desktop-restore-in-original-display-p): New functions.
7758         (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
7759         (desktop--save-minibuffer-frames): New function, inspired by a similar
7760         function from Martin Rudalics.
7761         (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
7762         (desktop--restore-in-this-display-p): Remove.
7763         (desktop--find-frame): Rename from desktop--find-frame-in-display
7764         and add predicate argument.
7765         (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
7766         (desktop--reuse-list): New variable.
7767         (desktop--select-frame, desktop--make-frame, desktop--sort-states):
7768         New functions.
7769         (desktop--restore-frames): Add support for "minibuffer-special" frames.
7771 2013-07-14  Michael Albinus  <michael.albinus@gmx.de>
7773         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
7775 2013-07-13  Dmitry Gutov  <dgutov@yandex.ru>
7777         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
7778         Highlight conversion methods on Kernel.
7780 2013-07-13  Alan Mackenzie  <acm@muc.de>
7782         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
7783         and comment it out.  This out-commenting enables certain C++
7784         declarations to be parsed correctly.
7786 2013-07-13  Eli Zaretskii  <eliz@gnu.org>
7788         * international/mule.el (define-coding-system): Doc fix.
7790         * simple.el (default-font-height): Don't call font-info if the
7791         frame's default font didn't change since the frame was created.
7792         (Bug#14838)
7794 2013-07-13  Leo Liu  <sdl.web@gmail.com>
7796         * ido.el (ido-read-file-name): Guard against non-symbol value.
7798 2013-07-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7800         * progmodes/python.el (python-imenu--build-tree): Fix corner case
7801         in nested defuns.
7803 2013-07-13  Leo Liu  <sdl.web@gmail.com>
7805         * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
7806         ido-set-matches call.  (Bug#6852)
7808 2013-07-12  Dmitry Gutov  <dgutov@yandex.ru>
7810         * progmodes/ruby-mode.el (ruby-percent-literals-beg-re):
7811         (ruby-syntax-expansion-allowed-p): Support array of symbols, for
7812         Ruby 2.0.
7813         (ruby-font-lock-keywords): Distinguish calls to functions with
7814         module-like names from module references.  Highlight character
7815         literals.
7817 2013-07-12  Sergio Durigan Junior  <sergiodj@riseup.net>  (tiny change)
7819         * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
7820         (gdb-send): Handle continued commands.  (Bug#14847)
7822 2013-07-12  Juanma Barranquero  <lekktu@gmail.com>
7824         * desktop.el (desktop--v2s): Remove unused local variable.
7825         (desktop-save-buffer): Make defvar-local; adjust docstring.
7826         (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
7827         (desktop-clear, desktop-save-buffer-p): Use string-match-p.
7829 2013-07-12  Andreas Schwab  <schwab@linux-m68k.org>
7831         * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
7833 2013-07-12  Eli Zaretskii  <eliz@gnu.org>
7835         * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
7836         (Bug#14842)
7838 2013-07-12  Glenn Morris  <rgm@gnu.org>
7840         * doc-view.el: Require cl-lib at runtime too.
7841         (doc-view-remove-if): Remove.
7842         (doc-view-search-next-match, doc-view-search-previous-match):
7843         Use cl-remove-if.
7845         * edmacro.el: Require cl-lib at runtime too.
7846         (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
7847         (edmacro-mismatch, edmacro-subseq): Remove.
7849         * shadowfile.el: Require cl-lib.
7850         (shadow-remove-if): Remove.
7851         (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
7852         Use cl-remove-if.
7854         * wid-edit.el: Require cl-lib.
7855         (widget-choose): Use cl-remove-if.
7856         (widget-remove-if): Remove.
7858         * progmodes/ebrowse.el: Require cl-lib at runtime too.
7859         (ebrowse-delete-if-not): Remove.
7860         (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
7861         (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
7862         Use cl-delete-if-not.
7864 2013-07-12  Juanma Barranquero  <lekktu@gmail.com>
7866         * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
7867         (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
7869 2013-07-12  Leo Liu  <sdl.web@gmail.com>
7871         * ido.el (dired-do-copy, dired): Set 'ido property.  (Bug#11954)
7873 2013-07-11  Glenn Morris  <rgm@gnu.org>
7875         * emacs-lisp/edebug.el: Require cl-lib at run-time too.
7876         (edebug-gensym-index, edebug-gensym):
7877         Remove reimplementation of cl-gensym.
7878         (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
7880         * thumbs.el: Require cl-lib at run-time too.
7881         (thumbs-gensym-counter, thumbs-gensym):
7882         Remove reimplementation of cl-gensym.
7883         (thumbs-temp-file): Use cl-gensym.
7885         * emacs-lisp/ert.el: Require cl-lib at runtime too.
7886         (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
7887         (ert--intersection, ert--set-difference, ert--set-difference-eq)
7888         (ert--union, ert--gensym-counter, ert--gensym-counter)
7889         (ert--coerce-to-vector, ert--remove*, ert--string-position)
7890         (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
7891         (ert-make-test-unbound, ert--expand-should-1)
7892         (ert--expand-should, ert--should-error-handle-error)
7893         (should-error, ert--explain-equal-rec)
7894         (ert--plist-difference-explanation, ert-select-tests)
7895         (ert--make-stats, ert--remove-from-list, ert--string-first-line):
7896         Use cl-lib functions rather than reimplementations.
7898 2013-07-11  Michael Albinus  <michael.albinus@gmx.de>
7900         * net/tramp.el (tramp-methods): Extend docstring.
7901         (tramp-connection-timeout): New defcustom.
7902         (tramp-error-with-buffer): Reset timestamp only when appropriate.
7903         (with-tramp-progress-reporter): Simplify.
7904         (tramp-process-actions): Improve messages.
7906         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
7907         * net/tramp-sh.el (tramp-maybe-open-connection):
7908         Use `tramp-connection-timeout'.
7909         (tramp-methods) [su, sudo, ksu]: Add method specific timeouts.
7910         (Bug#14808)
7912 2013-07-11  Leo Liu  <sdl.web@gmail.com>
7914         * ido.el (ido-read-file-name): Conform to the requirements of
7915         read-file-name.  (Bug#11861)
7916         (ido-read-directory-name): Conform to the requirements of
7917         read-directory-name.
7919 2013-07-11  Juanma Barranquero  <lekktu@gmail.com>
7921         * subr.el (delay-warning): New function.
7923 2013-07-10  Eli Zaretskii  <eliz@gnu.org>
7925         * simple.el (default-line-height): New function.
7926         (line-move-partial, line-move): Use it instead of computing the
7927         line height inline.
7928         (line-move-partial): Always compute ROWH.  If the last line is
7929         partially-visible, but its text is completely visible, allow
7930         cursor to enter such a partially-visible line.
7932 2013-07-10  Michael Albinus  <michael.albinus@gmx.de>
7934         Improve error messages.  (Bug#14808)
7936         * net/tramp.el (tramp-current-connection): New defvar, moved from
7937         tramp-sh.el.
7938         (tramp-message-show-progress-reporter-message): Remove, not
7939         needed anymore.
7940         (tramp-error-with-buffer): Show message in minibuffer.
7941         Discard input before waiting.  Reset connection timestamp.
7942         (with-tramp-progress-reporter): Improve messages.
7943         (tramp-process-actions): Use progress reporter.  Delete process in
7944         case of error.  Improve messages.
7946         * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
7947         Call `tramp-error-with-buffer' with vector and buffer.
7948         (tramp-current-connection): Remove.
7949         (tramp-maybe-open-connection): The car of
7950         `tramp-current-connection' are the first 3 slots of the vector.
7952 2013-07-10  Teodor Zlatanov  <tzz@lifelogs.com>
7954         * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
7955         inside continued strings.
7957 2013-07-10  Paul Eggert  <eggert@cs.ucla.edu>
7959         Timestamp fixes for undo (Bug#14824).
7960         * files.el (clear-visited-file-modtime): Move here from fileio.c.
7962 2013-07-10  Leo Liu  <sdl.web@gmail.com>
7964         * files.el (require-final-newline): Allow safe local value.
7965         (Bug#14834)
7967 2013-07-09  Leo Liu  <sdl.web@gmail.com>
7969         * ido.el (ido-read-directory-name): Handle fallback.
7970         (ido-read-file-name): Update DIR to ido-current-directory.
7971         (Bug#1516)
7972         (ido-add-virtual-buffers-to-list): Robustify.  (Bug#14552)
7974 2013-07-09  Dmitry Gutov  <dgutov@yandex.ru>
7976         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
7977         "autoload".  Remove "warn lower camel case" section, previously
7978         commented out.  Highlight negation char.  Do not highlight the
7979         target in singleton method definitions.
7981 2013-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
7983         * faces.el (tty-setup-hook): Declare the hook.
7985         * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
7986         and detect when a guard/pred depends on local vars (bug#14773).
7987         (pcase--u1): Adjust caller.
7989 2013-07-08  Eli Zaretskii  <eliz@gnu.org>
7991         * simple.el (line-move-partial, line-move): Account for
7992         line-spacing.
7993         (line-move-partial): Avoid setting vscroll when the last
7994         partially-visible line in window is of default height.
7996 2013-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7998         * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
7999         been used a while.
8001 2013-07-07  Juanma Barranquero  <lekktu@gmail.com>
8003         * subr.el (read-quoted-char): Remove unused local variable `char'.
8005 2013-07-07  Michael Kifer  <kifer@cs.stonybrook.edu>
8007         * ediff.el (ediff-version): Version update.
8008         (ediff-files-command, ediff3-files-command, ediff-merge-command)
8009         (ediff-merge-with-ancestor-command, ediff-directories-command)
8010         (ediff-directories3-command, ediff-merge-directories-command)
8011         (ediff-merge-directories-with-ancestor-command): New functions.
8012         All are command-line interfaces to ediff: to facilitate calling
8013         Emacs with the appropriate ediff functions invoked.
8015         * viper-cmd.el (viper-del-forward-char-in-insert): New function.
8016         (viper-save-kill-buffer): Check if buffer is modified.
8018         * viper.el (viper-version): Version update.
8019         (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
8021 2013-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
8023         * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
8024         * viper-cmd.el (viper-envelop-ESC-key): Remove function.
8025         (viper-intercept-ESC-key): Simplify.
8026         * viper-keym.el (viper-ESC-key): Make it a constant, don't use kbd.
8027         * viper.el (viper--tty-ESC-filter, viper--lookup-key)
8028         (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
8029         (viper-setup-ESC-to-escape): New functions.
8030         (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
8031         (viper-set-hooks): Do not modify flyspell-mode-hook.  (Bug#13793)
8033 2013-07-07  Eli Zaretskii  <eliz@gnu.org>
8035         * simple.el (default-font-height, window-screen-lines):
8036         New functions.
8037         (line-move, line-move-partial): Use them instead of
8038         frame-char-height and window-text-height.  This makes scrolling
8039         text smoother when the buffer's default face uses a font that is
8040         different from the frame's default font.
8042 2013-07-06  Jan Djärv  <jan.h.d@swipnet.se>
8044         * files.el (write-file): Do not display confirm dialog for NS,
8045         it does its own dialog, which can't be canceled (Bug#14578).
8047 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
8049         * simple.el (line-move-partial): Adjust the row returned by
8050         posn-at-point for the current window-vscroll.  (Bug#14567)
8052 2013-07-06  Michael Albinus  <michael.albinus@gmx.de>
8054         * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter):
8055         (tramp-sh-file-inotifywait-process-filter): Handle file names with
8056         spaces.
8058 2013-07-06  Martin Rudalics  <rudalics@gmx.at>
8060         * window.el (window-state-put-stale-windows): New variable.
8061         (window--state-put-2): Save list of windows without matching buffer.
8062         (window-state-put): Remove "bufferless" windows if possible.
8064 2013-07-06  Juanma Barranquero  <lekktu@gmail.com>
8066         * simple.el (alternatives-define): Remove leftover :group keyword.
8067         Tweak docstring.
8069 2013-07-06  Leo Liu  <sdl.web@gmail.com>
8071         * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
8072         (ido-enable-virtual-buffers): New variable.
8073         (ido-buffer-internal, ido-toggle-virtual-buffers)
8074         (ido-make-buffer-list): Use it.
8075         (ido-exhibit): Support turning on and off virtual buffers
8076         automatically.
8078 2013-07-06  Juanma Barranquero  <lekktu@gmail.com>
8080         * simple.el (alternatives-define): New macro.
8082 2013-07-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8084         * subr.el (read-quoted-char): Use read-key.
8085         (sit-for): Let read-event decode tty input (bug#14782).
8087 2013-07-05  Stephen Berman  <stephen.berman@gmx.net>
8089         * calendar/todo-mode.el: Add handling of file deletion, both by
8090         mode command and externally.  Fix various related bugs.
8091         Clarify Commentary and improve some documentation strings and code.
8092         (todo-delete-file): New command.
8093         (todo-check-file): New function.
8094         (todo-show): Handle external deletion of the file we're trying to
8095         show (bug#14688).  Replace called-interactively-p by an optional
8096         prefix argument to avoid problematic interaction with catch form
8097         when byte compiled (bug#14702).
8098         (todo-quit): Handle external deletion of the archive's todo file.
8099         Make sure the buffer that was visiting the archive file is still
8100         live before trying to bury it.
8101         (todo-category-completions): Handle external deletion of any
8102         category completion files.
8103         (todo-jump-to-category, todo-basic-insert-item): Recalculate list
8104         of todo files, in case of external deletion.
8105         (todo-add-file): Replace unnecessary setq by let-binding.
8106         (todo-find-archive): Check whether there are any archives.
8107         Replace unnecessary setq by let-binding.
8108         (todo-archive-done-item): Use find-file-noselect to get the
8109         archive buffer whether or not the archive already exists.
8110         Remove superfluous code.  Use file size instead of buffer-file-name to
8111         check if the archive is new; if it is, update list of archives.
8112         (todo-default-todo-file): Allow nil to be a valid value for when
8113         there are no todo files.
8114         (todo-reevaluate-default-file-defcustom): Use corrected definition
8115         of todo-default-todo-file.
8116         (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
8117         (todo-delete-category, todo-show-categories-table)
8118         (todo-category-number): Clarify comment.
8119         (todo-filter-items): Clarify documentation string.
8120         (todo-show-current-file, todo-display-as-todo-file)
8121         (todo-reset-and-enable-done-separator): Tweak documentation string.
8122         (todo-done-separator): Make separator length window-width, since
8123         bug#2749 is now fixed.
8125 2013-07-05  Michael Albinus  <michael.albinus@gmx.de>
8127         * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
8128         Support both "gvfs-monitor-dir" and "inotifywait".
8129         (tramp-sh-file-inotifywait-process-filter): Rename from
8130         `tramp-sh-file-notify-process-filter'.
8131         (tramp-sh-file-gvfs-monitor-dir-process-filter)
8132         (tramp-get-remote-gvfs-monitor-dir): New defuns.
8134 2013-07-05  Leo Liu  <sdl.web@gmail.com>
8136         * autoinsert.el (auto-insert-alist): Default to lexical-binding.
8138 2013-07-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
8140         * frame.el (display-pixel-height, display-pixel-width)
8141         (display-mm-height, display-mm-width): Mention behavior on
8142         multi-monitor setups in docstrings.
8143         (w32-display-monitor-attributes-list): Declare function.
8144         (display-monitor-attributes-list): Use it.
8146 2013-07-04  Michael Albinus  <michael.albinus@gmx.de>
8148         * filenotify.el: New package.
8150         * autorevert.el (top): Require filenotify.el.
8151         (auto-revert-notify-enabled): Remove.  Use `file-notify-support'
8152         instead.
8153         (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
8154         (auto-revert-notify-handler): Use `file-notify-*' functions.
8156         * subr.el (file-notify-handle-event): Move function to filenotify.el.
8158         * net/tramp.el (tramp-file-name-for-operation):
8159         Handle `file-notify-add-watch' and `file-notify-rm-watch'.
8161         * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
8162         for `file-notify-add-watch' and `file-notify-rm-watch'.
8163         (tramp-process-sentinel): Improve trace.
8164         (tramp-sh-handle-file-notify-add-watch)
8165         (tramp-sh-file-notify-process-filter)
8166         (tramp-sh-handle-file-notify-rm-watch)
8167         (tramp-get-remote-inotifywait): New defuns.
8169 2013-07-03  Juri Linkov  <juri@jurta.org>
8171         * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
8172         call of `occur-read-primary-args' to interactive spec.
8174         * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
8175         `ibuffer-do-occur' like in buff-menu.el.  (Bug#14673)
8177 2013-07-03  Matthias Meulien  <orontee@gmail.com>
8179         * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
8180         `Buffer-menu-multi-occur'.  Add it to the menu.
8181         (Buffer-menu-mode): Document it in docstring.
8182         (Buffer-menu-multi-occur): New command.  (Bug#14673)
8184 2013-07-03  Dmitry Gutov  <dgutov@yandex.ru>
8186         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
8187         keywords and built-ins.
8189 2013-07-03  Glenn Morris  <rgm@gnu.org>
8191         * subr.el (y-or-n-p): Handle empty prompts.  (Bug#14770)
8193         Make info-xref checks case-sensitive by default
8194         * info.el (Info-find-node, Info-find-in-tag-table)
8195         (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
8196         Add option for exact case matching of nodes.
8197         * info-xref.el (info-xref): New custom group.
8198         (info-xref-case-fold): New option.
8199         (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
8201 2013-07-03  Leo Liu  <sdl.web@gmail.com>
8203         * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
8205 2013-07-03  Dmitry Gutov  <dgutov@yandex.ru>
8207         * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
8208         middle of block statement initially, lower the depth.  Remove
8209         FIXME comment, not longer valid.  Remove middle of block statement
8210         detection, no need to do that anymore since we've been using
8211         `ruby-parse-region' here.
8213 2013-07-02  Jan Djärv  <jan.h.d@swipnet.se>
8215         * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
8217 2013-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
8219         * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
8221 2013-07-01  Juanma Barranquero  <lekktu@gmail.com>
8223         * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
8224         (desktop-restore-in-current-display): New customization option.
8225         (desktop--excluded-frame-parameters): Add `font'.
8226         (desktop--save-frames): Rename from desktop--save-windows.
8227         (desktop--restore-in-this-display-p): New function.
8228         (desktop--make-full-frame): Remove unwanted width/height from
8229         full(width|height) frames.
8230         (desktop--restore-frames): Rename from desktop--restore-windows.
8231         Obey desktop-restore-current-display.  Do not delete old frames or
8232         select a new frame unless we were able to restore at least one frame.
8234 2013-06-30  Michal Nazarewicz  <mina86@mina86.com>
8236         * files.el (find-file-noselect): Simplify conditional expression.
8238         * textmodes/remember.el (remember-append-to-file):
8239         Don't mix `find-buffer-visiting' and `get-file-buffer'.
8241         Add `remember-notes' function to store random notes across Emacs
8242         restarts.
8243         * textmodes/remember.el (remember-data-file): Add :set callback to
8244         affect notes buffer (if any).
8245         (remember-notes): New command.
8246         (remember-notes-buffer-name, bury-remember-notes-on-kill):
8247         New defcustoms for the `remember-notes' function.
8248         (remember-notes-save-and-bury-buffer): New command.
8249         (remember-notes-mode-map): New variable.
8250         (remember-mode): New minor mode.
8251         (remember-notes--kill-buffer-query): New function.
8252         * startup.el (initial-buffer-choice): Add notes to custom type.
8254 2013-06-30  Eli Zaretskii  <eliz@gnu.org>
8256         * bindings.el (right-char, left-char): Don't call sit-for, this is
8257         no longer needed.  Use arithmetic comparison only for numerical
8258         arguments.
8260         * international/mule-cmds.el (select-safe-coding-system):
8261         Handle the case of FROM being a string correctly.  (Bug#14755)
8263 2013-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8265         * net/shr.el (shr-make-table-1): Add a sanity check that allows
8266         progression on degenerate tables.
8267         (shr-rescale-image): ImageMagick animated images currently don't work.
8269 2013-06-30  Juanma Barranquero  <lekktu@gmail.com>
8271         Some fixes and improvements for desktop frame restoration.
8272         It is still experimental and disabled by default.
8273         * desktop.el (desktop--save-windows): Put the selected frame at
8274         the head of the list.
8275         (desktop--make-full-frame): New function.
8276         (desktop--restore-windows): Try to re-select the frame that was
8277         selected upon saving.  Do not abort if some frames fail to restore,
8278         just show an error message and continue.  Set up maximized frames
8279         so they have default non-maximized dimensions.
8281 2013-06-30  Dmitry Gutov  <dgutov@yandex.ru>
8283         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
8284         Don't start heredoc inside a string or comment.
8286 2013-06-29  Eli Zaretskii  <eliz@gnu.org>
8288         * bindings.el (visual-order-cursor-movement): New defcustom.
8289         (right-char, left-char): Provide visual-order cursor motion by
8290         calling move-point-visually.  Update the doc strings.
8292 2013-06-28  Kenichi Handa  <handa@gnu.org>
8294         * international/mule.el (define-coding-system): New coding system
8295         properties :inhibit-null-byte-detection,
8296         :inhibit-iso-escape-detection, and :prefer-utf-8.
8297         (set-buffer-file-coding-system): If :charset-list property of
8298         CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
8299         appropriate for setting.
8301         * international/mule-cmds.el (select-safe-coding-system):
8302         If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
8303         multibyte characters, return utf-8 (or one of its siblings).
8305         * international/mule-conf.el (prefer-utf-8): New coding system.
8306         (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
8307         files.
8309 2013-06-28  Ivan Kanis  <ivan@kanis.fr>
8311         * net/shr.el (shr-render-region): New function.
8313         * net/eww.el: Autoload `eww-browse-url'.
8315 2013-06-27  Dmitry Gutov  <dgutov@yandex.ru>
8317         * emacs-lisp/package-x.el (package-upload-buffer-internal):
8318         Adapt to `package-desc-version' being a list.
8319         Use `package--ac-desc-version' to retrieve version from a package
8320         archive element.
8322 2013-06-27  Juanma Barranquero  <lekktu@gmail.com>
8324         New experimental feature to save&restore window and frame setup.
8325         * desktop.el (desktop-save-windows): New defcustom.
8326         (desktop--saved-states): New var.
8327         (desktop--excluded-frame-parameters): New defconst.
8328         (desktop--filter-frame-parms, desktop--find-frame-in-display)
8329         (desktop--restore-windows, desktop--save-windows): New functions.
8330         (desktop-save): Call `desktop--save-windows'.
8331         (desktop-read): Call `desktop--restore-windows'.
8333 2013-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8335         * net/shr.el (add-face-text-property): Remove compat definition.
8337 2013-06-27  Stephen Berman  <stephen.berman@gmx.net>
8339         * info.el (Info-try-follow-nearest-node): Move search for footnote
8340         above search for node name to prevent missing a footnote (bug#14717).
8342 2013-06-27  Stephen Berman  <stephen.berman@gmx.net>
8344         * obsolete/otodo-mode.el: Add obsolescence info to file header.
8346 2013-06-27  Leo Liu  <sdl.web@gmail.com>
8348         * net/eww.el (eww-read-bookmarks): Check file size.
8350 2013-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8352         * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
8353         advice--pending if newdef is nil or an autoload (bug#13820).
8354         (advice-mapc): New function.
8356 2013-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8358         * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
8359         probably.
8360         (eww-mode-map): Add a menu bar.
8361         (eww-add-bookmark): New command.
8362         (eww-bookmark-mode): New mode and commands.
8363         (eww-add-bookmark): Remove newlines from the title.
8364         (eww-bookmark-browse): Don't bug out if it's the only window.
8366 2013-06-26  Glenn Morris  <rgm@gnu.org>
8368         * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
8369         (hfy-size): Handle ttys.  (Bug#14668)
8371         * info-xref.el: Update for Texinfo 5 change in *note format.
8372         (info-xref-node-re, info-xref-note-re): New constants.
8373         (info-xref-check-buffer): Use info-xref-note-re.
8375 2013-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8377         * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
8379         * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
8380         nil terminate the loop (bug#14718).
8382 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8384         * net/eww.el: Rework history traversal.  When going forward/back,
8385         put these actions into the history, too, so that they can be
8386         replayed.
8387         (eww-render): Move the history reset to the correct buffer.
8389 2013-06-25  Juri Linkov  <juri@jurta.org>
8391         * files-x.el (modify-dir-local-variable): Change the header comment
8392         in the file with directory local variables.  (Bug#14692)
8394         * files-x.el (read-file-local-variable-value): Add `default'.
8395         (Bug#14710)
8397 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8399         * net/eww.el (eww-make-unique-file-name): Create a unique file
8400         name before saving to entering `y' accidentally asynchronously.
8402 2013-06-25  Ivan Kanis  <ivan@kanis.fr>
8404         * net/eww.el (eww-download): New command and keystroke.
8406 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8408         * net/eww.el (eww-copy-page-url): Change name of command.
8410         * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
8411         be more consistent with Info and dired.
8413         * net/eww.el (eww-mode-map): Ditto.
8415 2013-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8417         * emacs-lisp/package.el: Use lexical-binding.  Include obsolete
8418         packages from archives.
8419         (package-archive-contents): Change format; include obsolete packages.
8420         (package-desc): Use `dir' to mark builtin packages.
8421         (package--from-builtin): Set the `dir' field to `builtin'.
8422         (generated-autoload-file, version-control): Declare.
8423         (package-compute-transaction): Change first arg and return value to be
8424         lists of package-descs.  Adjust to new package-archive-contents format.
8425         (package--add-to-archive-contents): Adjust to new
8426         package-archive-contents format.
8427         (package-download-transaction): Arg is now a list of package-descs.
8428         (package-install): If `pkg' is a package name, pass it as
8429         a requirement, so it is subject to the usual (e.g. disabled) checks.
8430         (describe-package): Accept package-desc as well.
8431         (describe-package-1): Describe a specific package-desc.  Add links to
8432         other package-descs for the same package name.
8433         (package-menu-describe-package): Pass the actual package-desc.
8434         (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
8435         works correctly.
8436         (package-desc-status): New function.
8437         (package-menu--refresh): New function, extracted
8438         from package-menu--generate.
8439         (package-menu--generate): Use it.
8440         (package-delete): Update package-alist.
8441         (package-menu-execute): Don't call package-initialize.
8443         * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
8444         progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
8445         progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
8446         progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
8447         progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
8448         emacs-lisp/cl-macs.el: Neuter the "Version:" header.
8450 2013-06-25  Martin Rudalics  <rudalics@gmx.at>
8452         * window.el (window--state-get-1): Workaround for bug#14527.
8453         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
8455 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8457         * net/eww.el (eww-back-url): Implement the history by stashing all
8458         the data into a list.
8459         (eww-forward-url): Allow going forward in the history, too.
8461 2013-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8463         * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
8464         for values and use read--expression for expressions (bug#14710).
8465         (read-file-local-variable): Avoid setq.
8466         (read-file-local-variable-mode): Use minor-mode-list.
8468 2013-06-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
8470         * textmodes/bibtex.el (bibtex-generate-url-list): Add support
8471         for DOI URLs.
8473 2013-06-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
8475         * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
8476         Update imenu-support when dialect changes.
8478 2013-06-25  Leo Liu  <sdl.web@gmail.com>
8480         * ido.el (ido-read-internal): Allow forward slash on windows.
8482 2013-06-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8484         * net/eww.el (eww): Start of strings is \\`, not ^.
8486 2013-06-24  Ivan Kanis  <ivan@kanis.fr>
8488         * net/shr.el (shr-browse-url): Fix interactive spec.
8490         * net/eww.el (eww): Add a trailing slash to domain names.
8492 2013-06-24  Juanma Barranquero  <lekktu@gmail.com>
8494         * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
8496 2013-06-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8498         * net/shr.el (shr-browse-url): Use an external browser if given a
8499         prefix.
8501         * net/eww.el (eww-external-browser): Move to shr.
8503 2013-06-24  Ivan Kanis  <ivan@kanis.fr>
8505         * net/eww.el (eww): Work more correctly for file: URLs.
8506         (eww-detect-charset): Allow quoted charsets.
8507         (eww-yank-page-url): New command and keystroke.
8509 2013-06-24  Daiki Ueno  <ueno@gnu.org>
8511         * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
8512         file name of gpg executable.
8513         (epg-context-program): New function.
8514         (epg-context-home-directory): New function.
8515         (epg-context-set-program): New function.
8516         (epg-context-set-home-directory): New function.
8517         (epg--start): Use `epg-context-program' instead of
8518         'epg-gpg-program'.
8519         (epg--list-keys-1): Likewise.
8521 2013-06-24  Leo Liu  <sdl.web@gmail.com>
8523         * ido.el (ido-read-internal): Fix bug#14620.
8525 2013-06-23  Juanma Barranquero  <lekktu@gmail.com>
8527         * faces.el (face-documentation): Simplify.
8528         (read-face-attribute, tty-find-type, x-resolve-font-name):
8529         Use `string-match-p'.
8530         (list-faces-display): Use `string-match-p'.  Simplify.
8531         (face-spec-recalc): Check face to avoid face alias loops.
8532         (read-color): Use `string-match-p' and non-capturing parenthesis.
8534 2013-06-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8536         * net/shr.el (shr-rescale-image): Use the new
8537         :max-width/:max-height functionality.
8539 2013-06-23  Ivan Kanis  <ivan@kanis.fr>
8541         * net/eww.el (eww-search-prefix): New variable.
8542         (eww): Use it.
8543         (eww-external-browser): New variable.
8544         (eww-mode-map): New keystroke.
8545         (eww-browse-with-external-browser): New command.
8547         * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
8549 2013-06-23  Juanma Barranquero  <lekktu@gmail.com>
8551         * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
8552         Don't skip aligning the next header field when padding is 0;
8553         otherwise, field width is not respected unless the title is as
8554         wide as the field.
8556 2013-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
8558         * emacs-lisp/package.el (package-el-version): Remove.
8559         (package-process-define-package): Fix inf-loop.
8560         (package-install): Allow symbols as arguments again.
8562 2013-06-22  Dmitry Gutov  <dgutov@yandex.ru>
8564         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
8565         add some more keyword-like methods.
8566         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
8568 2013-06-22  Juanma Barranquero  <lekktu@gmail.com>
8570         * bs.el (bs-buffer-show-mark): Make defvar-local.
8571         (bs-mode): Use setq-local.
8573         * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
8574         (emacs-lock--try-unlocking): Make defvar-local.
8576 2013-06-22  Glenn Morris  <rgm@gnu.org>
8578         * play/cookie1.el (cookie-apropos): Minor simplification.
8580         * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
8582 2013-06-22  Dmitry Gutov  <dgutov@yandex.ru>
8584         * progmodes/ruby-mode.el (auto-mode-alist): Do not use
8585         `regexp-opt', it breaks the build during dumping.
8587 2013-06-21  Dmitry Gutov  <dgutov@yandex.ru>
8589         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
8590         Highlight keyword-like methods on Kernel and Module with
8591         font-lock-builtin-face.
8592         (auto-mode-alist): Consolidate different entries into one regexp
8593         and add more *file-s.
8595 2013-06-21  Stephen Berman  <stephen.berman@gmx.net>
8597         * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
8599         * calendar/diary-lib.el (diary-goto-entry-function): New variable.
8600         (diary-entry): Use it in the action of this button type instead of
8601         diary-goto-entry.
8603         * calendar/todo-mode.el: New version.
8604         (todo-add-category): Append new category to end of file and give
8605         it the highest number, instead of putting it at the beginning and
8606         giving it 0.  Incorporate noninteractive functionality.
8607         (todo-forward-category): Adapt to 1-based category numbering.
8608         Allow skipping over archived categories.
8609         (todo-backward-category): Derive from todo-forward-category.
8610         (todo-backward-item, todo-forward-item): Make noninteractive and
8611         delegate interactive part to new commands.  Make sensitive to done items.
8612         (todo-categories): Make value an alist of category names and
8613         vectors of item counts.
8614         (todo-category-beg): Make a defconst.
8615         (todo-category-number): Use 1 instead of 0 as initial value.
8616         (todo-category-select): Make sensitive to overlays, optional item
8617         highlighting and done items.
8618         (todo-delete-item): Make sensitive to overlays and marked and done items.
8619         (todo-edit-item): Make sensitive to overlays and editing of
8620         date/time header optional.  Add format checks.
8621         (todo-edit-multiline): Rename to todo-edit-multiline-item.  Make a
8622         no-op if point is not on an item.  Advertise using todo-edit-quit.
8623         (todo-edit-mode): Make sensitive to new format, font-locking, and
8624         multiple todo files.
8625         (todo-insert-item, todo-insert-item-here): Derive from
8626         todo-basic-insert-item and extend functionality.
8627         (todo-item-end, todo-item-start): Make sensitive to done items.
8628         (todo-item-string): Don't return text properties.  Restore point.
8629         (todo-jump-to-category): Make sensitive to multiple todo files and
8630         todo archives.  Use extended category completion.
8631         (todo-lower-item, todo-raise-item): Rename to *-priority and
8632         derive from todo-set-item-priority.
8633         (todo-mode): Derive from special-mode.  Make sensitive to new
8634         format, font-locking and multiple todo files.  Make read-only.
8635         (todo-mode-map): Don't suppress digit keys, so they can supply
8636         prefix arguments.  Add many new key bindings.
8637         (todo-prefix): Insert as an overlay instead of file text.
8638         Change semantics from diary date expression to purely visual mark.
8639         (todo-print): Rename to todo-print-buffer.  Make buffer display
8640         features printable.  Remove option to restrict number of items
8641         printed.  Add option to print to file.
8642         (todo-print-function): Rename to todo-print-buffer-function.
8643         (todo-quit): Extend to handle exiting new todo modes.
8644         (todo-remove-item): Make sensitive to overlays.
8645         (todo-save): Extend to buffers of filtered items.
8646         (todo-show): Make sensitive to done items, multiple todo files and
8647         new todo modes.  Offer to convert legacy todo file before creating
8648         first new todo file.
8649         (todo-show-priorities): Rename to todo-top-priorities.
8650         Change semantics of value 0.
8651         (todo-top-priorities): Rename to todo-filter-top-priorities,
8652         derive from todo-filter-items and extend functionality.
8653         (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
8654         and extend functionality to other types of filtered items.
8655         (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
8656         (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
8657         (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
8658         (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
8659         (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
8660         (todo-edit-mode-hook, todo-entry-prefix-function)
8661         (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
8662         (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
8663         (todo-initials, todo-insert-threshold, todo-item-string-start)
8664         (todo-line-string, todo-menu, todo-mode-hook)
8665         (todo-more-important-p, todo-previous-answer, todo-previous-line)
8666         (todo-print-priorities, todo-remove-separator)
8667         (todo-save-top-priorities-too, todo-string-count-lines)
8668         (todo-string-multiline-p, todo-time-string-format)
8669         (todo-tmp-buffer-name): Remove.
8670         (todo-add-file, todo-archive-done-item, todo-choose-archive)
8671         (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
8672         (todo-edit-category-diary-inclusion)
8673         (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
8674         (todo-edit-file, todo-edit-item-date-day)
8675         (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
8676         (todo-edit-item-date-month, todo-edit-item-date-to-today)
8677         (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
8678         (todo-edit-item-diary-nonmarking, todo-edit-item-header)
8679         (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
8680         (todo-filter-diary-items-multifile, todo-filter-regexp-items)
8681         (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
8682         (todo-filter-top-priorities-multifile, todo-find-archive)
8683         (todo-find-filtered-items-file, todo-go-to-source-item)
8684         (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
8685         (todo-jump-to-archive-category, todo-lower-category)
8686         (todo-mark-category, todo-marked-item-p, todo-merge-category)
8687         (todo-move-category, todo-move-item, todo-next-button)
8688         (todo-next-item, todo-padded-string, todo-powerset)
8689         (todo-previous-button, todo-previous-item)
8690         (todo-print-buffer-to-file, todo-raise-category)
8691         (todo-rename-category, todo-repair-categories-sexp, todo-search)
8692         (todo-set-category-number, todo-set-item-priority)
8693         (todo-set-top-priorities-in-category)
8694         (todo-set-top-priorities-in-file, todo-show-categories-table)
8695         (todo-sort-categories-alphabetically-or-numerically)
8696         (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
8697         (todo-sort-categories-by-done, todo-sort-categories-by-todo)
8698         (todo-toggle-item-header, todo-toggle-item-highlighting)
8699         (todo-toggle-mark-item, todo-toggle-prefix-numbers)
8700         (todo-toggle-view-done-items, todo-toggle-view-done-only)
8701         (todo-unarchive-items, todo-unmark-category): New commands.
8702         (todo-absolute-file-name, todo-add-to-buffer-list)
8703         (todo-adjusted-category-label-length, todo-basic-edit-item-header)
8704         (todo-basic-insert-item, todo-category-completions)
8705         (todo-category-number, todo-category-string-matcher-1)
8706         (todo-category-string-matcher-2, todo-check-filtered-items-file)
8707         (todo-check-format, todo-clear-matches)
8708         (todo-comment-string-matcher, todo-convert-legacy-date-time)
8709         (todo-current-category, todo-date-string-matcher)
8710         (todo-define-insertion-command, todo-diary-expired-matcher)
8711         (todo-diary-goto-entry, todo-diary-item-p)
8712         (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
8713         (todo-display-categories, todo-display-sorted, todo-done-item-p)
8714         (todo-done-item-section-p, todo-done-separator)
8715         (todo-done-string-matcher, todo-files, todo-filter-items)
8716         (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
8717         (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
8718         (todo-insert-category-line, todo-insert-item-from-calendar)
8719         (todo-insert-sort-button, todo-insert-with-overlays)
8720         (todo-insertion-command-name, todo-insertion-key-bindings)
8721         (todo-label-to-key, todo-longest-category-name-length)
8722         (todo-make-categories-list, todo-mode-external-set)
8723         (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
8724         (todo-modes-set-3, todo-multiple-filter-files)
8725         (todo-nondiary-marker-matcher, todo-prefix-overlays)
8726         (todo-read-category, todo-read-date, todo-read-dayname)
8727         (todo-read-file-name, todo-read-time)
8728         (todo-reevaluate-category-completions-files-defcustom)
8729         (todo-reevaluate-default-file-defcustom)
8730         (todo-reevaluate-filelist-defcustoms)
8731         (todo-reevaluate-filter-files-defcustom)
8732         (todo-reset-and-enable-done-separator, todo-reset-comment-string)
8733         (todo-reset-done-separator, todo-reset-done-separator-string)
8734         (todo-reset-done-string, todo-reset-global-current-todo-file)
8735         (todo-reset-highlight-item, todo-reset-nondiary-marker)
8736         (todo-reset-prefix, todo-set-categories)
8737         (todo-set-date-from-calendar, todo-set-show-current-file)
8738         (todo-set-top-priorities, todo-short-file-name)
8739         (todo-show-current-file, todo-sort, todo-time-string-matcher)
8740         (todo-total-item-counts, todo-update-buffer-list)
8741         (todo-update-categories-display, todo-update-categories-sexp)
8742         (todo-update-count, todo-validate-name, todo-y-or-n-p):
8743         New functions.
8744         (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
8745         New major modes.
8746         (todo-categories, todo-display, todo-edit, todo-faces)
8747         (todo-filtered): New defgroups.
8748         (todo-archived-only, todo-button, todo-category-string, todo-date)
8749         (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
8750         (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
8751         (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
8752         (todo-add-item-if-new-category, todo-always-add-time-string)
8753         (todo-categories-align, todo-categories-archived-label)
8754         (todo-categories-category-label, todo-categories-diary-label)
8755         (todo-categories-done-label, todo-categories-number-separator)
8756         (todo-categories-todo-label, todo-categories-totals-label)
8757         (todo-category-completions-files, todo-completion-ignore-case)
8758         (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
8759         (todo-done-separator-string, todo-done-string)
8760         (todo-files-function, todo-filter-done-items, todo-filter-files)
8761         (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
8762         (todo-initial-category, todo-initial-file, todo-item-mark)
8763         (todo-legacy-date-time-regexp, todo-mode-line-function)
8764         (todo-nondiary-marker, todo-number-prefix)
8765         (todo-print-buffer-function, todo-show-current-file)
8766         (todo-show-done-only, todo-show-first, todo-show-with-done)
8767         (todo-skip-archived-categories, todo-top-priorities-overrides)
8768         (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
8769         (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
8770         New defcustoms.
8771         (todo-category-done, todo-date-pattern, todo-date-string-start)
8772         (todo-diary-items-buffer, todo-done-string-start)
8773         (todo-filtered-items-buffer, todo-item-start)
8774         (todo-month-abbrev-array, todo-month-name-array)
8775         (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
8776         (todo-top-priorities-buffer): New defconsts.
8777         (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
8778         (todo-categories-with-marks, todo-category-string-face)
8779         (todo-comment-face, todo-comment-string, todo-current-todo-file)
8780         (todo-date-face, todo-date-from-calendar, todo-descending-counts)
8781         (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
8782         (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
8783         (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
8784         (todo-font-lock-keywords, todo-global-current-todo-file)
8785         (todo-insertion-commands, todo-insertion-commands-arg-key-list)
8786         (todo-insertion-commands-args)
8787         (todo-insertion-commands-args-genlist)
8788         (todo-insertion-commands-names, todo-insertion-map)
8789         (todo-key-bindings-t, todo-key-bindings-t+a)
8790         (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
8791         (todo-multiple-filter-files, todo-multiple-filter-files-widget)
8792         (todo-nondiary-face, todo-print-buffer, todo-time-face)
8793         (todo-visited): New variables.
8795 2013-06-21  Glenn Morris  <rgm@gnu.org>
8797         * play/cookie1.el (cookie-apropos): Add optional display argument.
8798         * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
8799         (psychoanalyze-pinhead): Use cookie-doctor.
8801 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
8803         * emacs-lisp/package.el (tar-get-file-descriptor)
8804         (tar--extract): Declare.
8806 2013-06-21  Eduard Wiebe  <usenet@pusto.de>
8808         Extend flymake's warning predicate to be a function (bug#14217).
8809         * progmodes/flymake.el (flymake-warning-predicate): New.
8810         (flymake-parse-line): Use it.
8811         (flymake-warning-re): Make obsolete alias to
8812         `flymake-warning-predicate'.
8814 2013-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8816         * emacs-lisp/package.el (package-alist): Include obsolete packages.
8817         (package-obsolete-list): Remove.
8818         (package-activate): Remove min-version argument.  Add `force' argument.
8819         Adjust to new package-alist format.
8820         (package-mark-obsolete): Remove.
8821         (package-unpack): Force reload of the package's autoloads.
8822         (package-installed-p): Check builtins if the installed package is not
8823         recent enough.
8824         (package-initialize): Don't reset package-obsolete-list.
8825         Don't specify which package version to activate.
8826         (package-process-define-package, describe-package-1)
8827         (package-menu--generate): Adjust to new package-alist format.
8829 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
8831         * allout-widgets.el (allout-widgets-mode-off)
8832         (allout-widgets-mode-on, allout-widgets-pre-command-business)
8833         (allout-widgets-post-command-business)
8834         (allout-widgets-after-copy-or-kill-function)
8835         (allout-widgets-after-undo-function, allout-test-range-overlaps)
8836         (allout-decorate-item-and-context)
8837         (allout-graphics-modification-handler): Fix typos in docstrings.
8838         (allout-get-or-create-parent-widget): Use `looking-at-p'.
8840         * cmuscheme.el (scheme-start-file): Doc fix.
8841         (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
8842         (scheme-input-filter): Use `string-match-p'.
8844         * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
8846         * dired-x.el: Use Dired consistently in docstrings.
8848         * dired.el: Use Dired consistently in docstrings.
8849         (dired-readin, dired-mode): Use `setq-local'.
8850         (dired-switches-alist): Make defvar-local.
8851         (dired-buffers-for-dir): Use `zerop'.
8852         (dired-safe-switches-p, dired-switches-escape-p)
8853         (dired-insert-old-subdirs, dired-move-to-end-of-filename)
8854         (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
8855         (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check):
8856         (dired-goto-next-nontrivial-file): Use `string-match-p'.
8857         (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
8858         (dired-toggle-marks, dired-mark-files-containing-regexp)
8859         (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
8860         (dired-flag-auto-save-files, dired-flag-backup-files):
8861         Use `looking-at-p'.
8862         (dired-mark-files-regexp, dired-build-subdir-alist):
8863         Use `string-match-p', `looking-at-p'.
8865         * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
8866         (direct-print-region-helper): Use `string-match-p'.
8868 2013-06-21  Leo Liu  <sdl.web@gmail.com>
8870         * comint.el (comint-redirect-results-list-from-process):
8871         Fix infinite loop.
8873 2013-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
8875         * net/eww.el (eww-update-header-line-format): Quote % characters.
8877 2013-06-21  Glenn Morris  <rgm@gnu.org>
8879         * play/cookie1.el (cookie): New custom group.
8880         (cookie-file): New option.
8881         (cookie-check-file): New function.
8882         (cookie): Make it interactive.  Make start and end messages optional.
8883         Interactively, display the result.  Default to cookie-file.
8884         (cookie-insert): Default to cookie-file.
8885         (cookie-snarf): Make start and end messages optional.
8886         Default to cookie-file.  Use with-temp-buffer.
8887         (cookie-read): Rename from read-cookie.
8888         Make start and end messages optional.  Default to cookie-file.
8889         (cookie-shuffle-vector): Rename from shuffle-vector.  Use dotimes.
8890         Do not autoload it.
8891         (cookie-apropos, cookie-doctor): New functions, copied from yow.el
8892         * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
8894 2013-06-21  Leo Liu  <sdl.web@gmail.com>
8896         * progmodes/octave.el (octave-mode): Backward compatibility fix.
8898 2013-06-21  Glenn Morris  <rgm@gnu.org>
8900         * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
8902 2013-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8903             Daniel Hackney  <dan@haxney.org>
8905         * emacs-lisp/package.el: Use tar-mode rather than tar executable.
8906         Consolidate the single-file vs tarball code.
8907         (package-desc-suffix): New function.
8908         (package-desc-full-name): Don't bother inlining it.
8909         (package-load-descriptor): Return the new package-desc.
8910         (package-mark-obsolete): Remove unused arg `package'.
8911         (package-unpack): Make it work for single files as well.
8912         Make it update package-alist.
8913         (package--make-autoloads-and-stuff): Rename from
8914         package--make-autoloads-and-compile.  Don't compile any more.
8915         (package--compile): New function.
8916         (package-generate-description-file): New function, extracted from
8917         package-unpack-single.
8918         (package-unpack-single): Remove.
8919         (package--with-work-buffer): Add indentation and debugging info.
8920         (package-download-single): Remove.
8921         (package-install-from-archive): Rename from package-download-tar, make
8922         it take a pkg-desc, and make it work for single files as well.
8923         (package-download-transaction): Simplify.
8924         (package-tar-file-info): Remove `file' arg.  Rewrite not to use an
8925         external tar program.
8926         (package-install-from-buffer): Remove `pkg-desc' argument.
8927         Use package-tar-file-info for tar-mode buffers.
8928         (package-install-file): Simplify accordingly.
8929         (package-archive-base): Change to take a pkg-desc.
8930         * tar-mode.el (tar--check-descriptor): New function, extracted from
8931         tar-get-descriptor.
8932         (tar-get-descriptor): Use it.
8933         (tar-get-file-descriptor): New function.
8934         (tar--extract): New function, extracted from tar-extract.
8935         (tar--extract): Use it.
8936         * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
8937         case the summary uses non-ascii.  Adjust to new calling convention of
8938         package-tar-file-info.
8940 2013-06-21  Leo Liu  <sdl.web@gmail.com>
8942         * comint.el (comint-redirect-results-list-from-process):
8943         Fix random delay.  (Bug#14681)
8945 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
8947         * profiler.el (profiler-format-number): Use log, not log10.
8949 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
8951         * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
8953 2013-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
8955         * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
8956         * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
8957         yet available.
8958         * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
8959         (AUTOGENEL): ... here.
8960         * emacs-lisp/cl-macs.el (cl--sublis): New function.
8961         (cl--defsubst-expand): Use it.
8963 2013-06-20  Paul Eggert  <eggert@cs.ucla.edu>
8965         * subr.el (log10): Move here from C code, and declare as obsolete.
8966         All uses of (log10 X) replaced with (log X 10).
8968 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
8970         * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
8971         Declare with `defvar-local'.
8972         (tabulated-list-use-header-line, tabulated-list-entries)
8973         (tabulated-list-padding, tabulated-list-printer)
8974         (tabulated-list-sort-key): Declare with `defvar-local'.
8975         (tabulated-list-init-header, tabulated-list-print-fake-header):
8976         Use `setq-local'.
8978 2013-06-20  Michael Albinus  <michael.albinus@gmx.de>
8980         * arc-mode.el (archive-mode): Add `archive-write-file' to
8981         `write-contents-functions' also for remote files.  (Bug#14652)
8983 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
8985         * cus-edit.el (custom-commands): Fix typos.
8986         (custom-display): Fix tooltip text.
8987         (custom-magic-alist, custom-filter-face-spec, custom-group-members):
8988         Fix typos in docstrings.
8989         (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
8990         (custom-unlispify-menu-entry, custom-magic-value-create)
8991         (custom-add-see-also, custom-group-value-create): Use ?\s.
8992         (custom-guess-type, customize-apropos, editable-field)
8993         (custom-face-value-create): Use `string-match-p'.
8994         (custom-save-variables, custom-save-faces): Use `looking-at-p'.
8996         * custom.el (custom-load-symbol): Use `string-match-p'.
8998         * ansi-color.el: Convert to lexical binding.
8999         (ansi-colors): Fix URL.
9000         (ansi-color-context, ansi-color-context-region): Use defvar-local.
9001         (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
9002         (ansi-color-make-color-map): Rename local var ansi-color-map to map.
9004 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9006         * net/eww.el (eww-process-text-input): Display passwords as asterisks.
9008         * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
9010 2013-06-19  Tom Tromey  <tromey@redhat.com>
9012         * net/eww.el (eww-top-url): Remove.
9013         (eww-home-url, eww-start-url, eww-contents-url): New defvars.
9014         (eww-render): Set new variables.  Don't set eww-top-url.
9015         (eww-handle-link): Handle "prev", "home", and "contents".
9016         Downcase the rel text.
9017         (eww-top-url): Choose best top URL.
9019 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9021         * net/eww.el: Rewrite to implement form elements "by hand" instead of
9022         relying in widget.el.  Using widget.el leads to too many
9023         user interface inconsistencies.
9024         (eww-self-insert): Implement entering commands in text fields.
9025         (eww-process-text-input): New function to make text input field editing
9026         work.
9027         (eww-submit): Rewrite to use the new-style form methods.
9028         (eww-select-display): Display the correct selected item.
9029         (eww-change-select): Implement changing the select value.
9030         (eww-toggle-checkbox): Implement radio/checkboxes.
9031         (eww-update-field): Fix compilation error.
9032         (eww-tag-textarea): Implement <textarea>.
9034         * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
9035         we don't shadow mode-specific bindings.
9037         * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
9038         nothing to push.
9040         * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
9042 2013-06-19  Glenn Morris  <rgm@gnu.org>
9044         * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
9046 2013-06-19  Michael Albinus  <michael.albinus@gmx.de>
9048         * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
9049         not needed.
9051         * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
9053 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9055         * net/browse-url.el (browse-url-browser-function):
9056         `eww-browse-url' has the right calling signature, `eww' does not.
9058 2013-06-19  Glenn Morris  <rgm@gnu.org>
9060         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
9061         Only eval autoloaded macros.
9062         (byte-compile-autoload): Only give the macro warning for macros.
9064         * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
9065         (ps-underlined-faces): Declare.
9067         * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
9068         (speedbar-add-supported-extension): Declare.
9070         * international/titdic-cnv.el (tit-process-header, miscdic-convert):
9071         Don't include a date stamp in the header of the generated file;
9072         it leads to needless differences between output files.
9074 2013-06-19  Michael Albinus  <michael.albinus@gmx.de>
9076         * net/secrets.el (secrets-struct-secret-content-type):
9077         Replace check of introspection data by a test call of "CreateItem".
9078         Some servers do not offer introspection.
9080 2013-06-19  Stefan Monnier  <monnier@iro.umontreal.ca>
9082         * electric.el (electric-pair-mode): Improve interaction with
9083         electric-layout-mode.
9084         (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
9085         (electric-pair-syntax): Use text-mode-syntax-table in comments
9086         and strings.
9087         (electric-pair--insert): New function.
9088         (electric-pair-post-self-insert-function): Use it and
9089         electric--after-char-pos.
9091 2013-06-19  Leo Liu  <sdl.web@gmail.com>
9093         * progmodes/octave.el (octave-help): Fix regexp.
9095 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9097         * net/shr.el (shr-make-table-1): Implement <td rowspan>.
9098         (shr-table-horizontal-line): Allow nil as a value, and change the
9099         default.
9100         (shr-insert-table-ruler): Respect the nil value.
9102 2013-06-18  Tom Tromey  <tromey@barimba>
9104         * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
9105         New defvars.
9106         (eww-open-file): New defun.
9107         (eww-render): Initialize new variables.
9108         (eww-display-html): Handle "link" and "a".
9109         (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
9110         (eww-mode-map): Move "p" to "l".  Bind "p", "n", "t", and "u".
9111         (eww-back-url): Rename from eww-previous-url.
9112         (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
9113         New defuns.
9115 2013-06-18  Dmitry Gutov  <dgutov@yandex.ru>
9117         * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
9118         Distinguish ternary operator tokens from slash symbol and slash
9119         char literal.
9121 2013-06-18  Juanma Barranquero  <lekktu@gmail.com>
9123         Convert symbol prettification into minor mode and global minor mode.
9125         * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
9126         `prog-prettify-symbols', and make a local defvar instead of defcustom.
9127         (prettify-symbols--keywords): Rename from
9128         `prog-prettify-symbols-alist' and make a local defvar.
9129         (prettify-symbols--compose-symbol): Rename from
9130         `prog--prettify-font-lock-compose-symbol'.
9131         (prettify-symbols--make-keywords): Rename from
9132         `prog-prettify-font-lock-symbols-keywords' and simplify.
9133         (prog-prettify-install): Remove.
9134         (prettify-symbols-mode): New minor mode, based on
9135         `prog-prettify-install'.
9136         (turn-on-prettify-symbols-mode): New function.
9137         (global-prettify-symbols-mode): New globalized minor mode.
9139         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
9140         * progmodes/cfengine.el (cfengine3-mode):
9141         * progmodes/perl-mode.el (perl-mode): Don't call
9142         `prog-prettify-install'; set `prettify-symbols-alist' instead.
9144 2013-06-18  Juri Linkov  <juri@jurta.org>
9146         * files-x.el (modify-file-local-variable-message): New function.
9147         (modify-file-local-variable)
9148         (modify-file-local-variable-prop-line): Add arg INTERACTIVE
9149         and call `modify-file-local-variable-message' when it's non-nil.
9150         (add-file-local-variable, delete-file-local-variable)
9151         (add-file-local-variable-prop-line)
9152         (delete-file-local-variable-prop-line): Add arg INTERACTIVE
9153         and use it.  (Bug#9820)
9155 2013-06-18  Juri Linkov  <juri@jurta.org>
9157         * emulation/vi.el (vi-shell-op):
9158         * emulation/vip.el (vip-execute-com, ex-command):
9159         * emulation/viper-cmd.el (viper-exec-bang):
9160         * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
9161         the call of `shell-command-on-region'.  (Bug#14637)
9163         * simple.el (shell-command-on-region): Doc fix.
9165 2013-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
9167         * emacs-lisp/eieio-custom.el: Remove misleading Version: header
9168         (bug#14633).
9170 2013-06-18  Glenn Morris  <rgm@gnu.org>
9172         * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
9174         * newcomment.el (comment-search-forward, comment-search-backward):
9175         Doc fix.  (Bug#14376)
9177 2013-06-18  Juanma Barranquero  <lekktu@gmail.com>
9179         * face-remap.el (buffer-face-toggle): Fix typo in docstring.
9180         (buffer-face-mode-invoke): Doc fix.
9182 2013-06-18  Matthias Meulien  <orontee@gmail.com>
9184         * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
9185         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
9187 2013-06-18  Glenn Morris  <rgm@gnu.org>
9189         * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
9190         Replace obsolete function generic-make-keywords with its expansion.
9192         * progmodes/python.el (ffap-alist): Declare.
9194         * textmodes/reftex.el (bibtex-mode-map): Declare.
9196 2013-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
9198         * emacs-lisp/package.el: Update package-alist after install (bug#14632).
9199         (package-unpack, package-unpack-single): Return the pkg-dir.
9200         (package-download-transaction): Use it to update package-alist.
9202 2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9204         * net/browse-url.el (browse-url-browser-function): Add `eww' as a
9205         possible choice.
9207 2013-06-17  Juri Linkov  <juri@jurta.org>
9209         * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
9211 2013-06-17  Dmitry Gutov  <dgutov@yandex.ru>
9213         * emacs-lisp/package.el (package-load-descriptor):
9214         Remove `with-syntax-table' call, `read' doesn't need it.
9215         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
9217 2013-06-17  Juanma Barranquero  <lekktu@gmail.com>
9219         * startup.el (command-line): Expand package name returned by
9220         `package--description-file' (bug#14639).
9222 2013-06-17  Dmitry Gutov  <dgutov@yandex.ru>
9224         * emacs-lisp/package.el (package-load-descriptor): Do not call
9225         `emacs-lisp-mode', just use its syntax table.
9227 2013-06-17  Juanma Barranquero  <lekktu@gmail.com>
9229         * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
9230         `font-lock-extra-managed-props' if any prettifying keyword is added.
9231         (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
9232         (prog-mode): Use `setq-local'.
9234 2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
9236         * international/characters.el (standard-case-table): Set syntax of ?»
9237         and ?« to punctuation.
9239 2013-06-16  Juanma Barranquero  <lekktu@gmail.com>
9241         * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
9242         Save relevant match data before calling `syntax-ppss' (bug#14595).
9244 2013-06-15  Juri Linkov  <juri@jurta.org>
9246         * files-x.el (modify-file-local-variable-prop-line): Add local
9247         variables to the end of the existing comment on the first line.
9248         Use `file-auto-mode-skip' to skip interpreter magic line,
9249         and also skip XML declaration.
9251 2013-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
9253         * startup.el (package--builtin-versions): New var.
9254         (package-subdirectory-regexp): Remove.
9255         (package--description-file): Hard code its value instead.
9257         * emacs-lisp/package.el: Don't activate packages older than builtin.
9258         (package-obsolete-list): Rename from package-obsolete-alist, and make
9259         it into a simple list of package-desc.
9260         (package-strip-version): Remove.
9261         (package-built-in-p): Use package--builtin-versions.
9262         (package-mark-obsolete): Simplify.
9263         (package-process-define-package): Mark it obsolete if older than the
9264         builtin version.
9265         (package-handle-response): Use line-end-position.
9266         (package-read-archive-contents, package--download-one-archive):
9267         Simplify.
9268         (package--add-to-archive-contents): Skip if older than the builtin or
9269         installed version.
9270         (package-menu-describe-package): Fix last change.
9271         (package-list-unversioned): New var.
9272         (package-menu--generate): Use it.
9274         * emacs-lisp/autoload.el: Manage package--builtin-versions.
9275         (autoload--insert-text, autoload--insert-cookie-text): New functions.
9276         (autoload-builtin-package-versions): New variable.
9277         (autoload-generate-file-autoloads): Use them.
9278         Remove the list of autoloaded functions/macros from the
9279         (autoload...) comments.
9281         * Makefile.in (autoloads): Set autoload-builtin-package-versions.
9283 2013-06-15  Eli Zaretskii  <eliz@gnu.org>
9285         * simple.el (line-move-partial): Don't jump to the next screen
9286         line as soon as it becomes visible.  Instead, continue enlarging
9287         the vscroll until the portion of a tall screen line that's left on
9288         display is about the height of the frame's default font.
9289         (Bug#14567)
9291 2013-06-15  Glenn Morris  <rgm@gnu.org>
9293         * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
9294         compilation-error-regexp-alist void, or local while let-bound.
9296         * progmodes/make-mode.el (makefile-mode-syntax-table):
9297         Treat "=" as punctuation.  (Bug#14614)
9299 2013-06-15  Juanma Barranquero  <lekktu@gmail.com>
9301         * help-fns.el (describe-variable):
9302         Add extra line for permanent-local variables.
9304 2013-06-15  Simen Heggestøyl  <simenheg@ifi.uio.no>  (tiny change)
9306         * progmodes/scheme.el (scheme-font-lock-keywords-2):
9307         Add export, import, library.  (Bug#9164)
9308         (library): Set indent function.
9310 2013-06-14  Glenn Morris  <rgm@gnu.org>
9312         * term/xterm.el (xterm--query):
9313         Stop after first matching handler.  (Bug#14615)
9315 2013-06-14  Ivan Kanis  <ivan@kanis.fr>
9317         Add support for dired in saveplace.
9318         * dired.el (dired-initial-position-hook): New variable.
9319         (dired-initial-position): Call hook to place cursor position.
9320         * saveplace.el (save-place-to-alist): Add dired position.
9321         (save-place-dired-hook): New function.
9323 2013-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
9325         * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
9326         through a symbol rather than letrec.
9328         * emacs-lisp/package.el: Don't recompute dir.  Use pkg-descs more.
9329         (package-desc): Add `dir' field.
9330         (package-desc-full-name): New function.
9331         (package-load-descriptor): Combine the two arguments.  Don't use `load'.
9332         (package-maybe-load-descriptor): Remove.
9333         (package-load-all-descriptors): Just call package-load-descriptor.
9334         (package--disabled-p): New function.
9335         (package-desc-vers, package-desc-doc): Remove aliases.
9336         (package--dir): Remove function.
9337         (package-activate): Check if a package is disabled.
9338         (package-process-define-package): New function, extracted from
9339         define-package.
9340         (define-package): Turn into a place holder.
9341         (package-unpack-single, package-tar-file-info):
9342         Use package--description-file.
9343         (package-compute-transaction): Use package--disabled-p.
9344         (package-download-transaction): Don't call
9345         package-maybe-load-descriptor since they're all loaded anyway.
9346         (package-install): Change argument to be a pkg-desc.
9347         (package-delete): Use a single pkg-desc argument.
9348         (describe-package-1): Use package-desc-dir instead of package--dir.
9349         Use package-desc property instead of package-symbol.
9350         (package-install-button-action): Adjust accordingly.
9351         (package--push): Rewrite.
9352         (package-menu--print-info): Adjust accordingly.  Change the ID format
9353         to be a pkg-desc.
9354         (package-menu-describe-package, package-menu-get-status)
9355         (package-menu--find-upgrades, package-menu-mark-upgrades)
9356         (package-menu-execute, package-menu--name-predicate):
9357         Adjust accordingly.
9358         * startup.el (package--description-file): New function.
9359         (command-line): Use it.
9360         * emacs-lisp/package-x.el (package-upload-buffer-internal):
9361         Use package-desc-version.
9363         * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
9364         (byte-compile-preprocess): Use it.
9365         (byte-compile-file-form-defalias): Try a bit harder to use macros we
9366         can't quite recognize.
9367         (byte-compile-add-to-list): Remove.
9368         * emacs-lisp/cconv.el (cconv-warnings-only): New function.
9369         (cconv-closure-convert): Add assertion.
9371         * emacs-lisp/map-ynp.el: Use lexical-binding.
9372         (map-y-or-n-p): Remove unused vars `tail' and `object'.
9373         Factor out some repeated code.
9375 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
9377         * subr.el (with-eval-after-load): New macro.
9378         (eval-after-load): Allow form to be a function.
9379         take advantage of lexical-binding.
9380         (do-after-load-evaluation): Use dolist and adjust to new format.
9381         * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
9383 2013-06-13  Juri Linkov  <juri@jurta.org>
9385         * replace.el (perform-replace): Display "symbol " and other search
9386         modes from `isearch-message-prefix' in the *Help* buffer.
9388         * isearch.el (isearch-query-replace): Add " symbol" and other
9389         possible search modes from `isearch-message-prefix' to the prompt.
9390         (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
9391         when reading a regexp to collect.
9393 2013-06-13  Juri Linkov  <juri@jurta.org>
9395         * isearch.el (word-search-regexp): Match whitespace if the search
9396         string begins or ends in whitespace.  The LAX arg is applied to
9397         both ends of the search string.  Use `regexp-quote' and explicit
9398         \< and \> instead of \b.  Use \` and \' instead of ^ and $.
9399         (isearch-symbol-regexp): Sync with `word-search-regexp' where word
9400         boundaries are replaced with symbol boundaries, and characters
9401         between symbols match non-word non-symbol syntax.  (Bug#14602)
9403 2013-06-13  Juri Linkov  <juri@jurta.org>
9405         * isearch.el (isearch-del-char): Don't exceed the length of
9406         `isearch-string' by the prefix arg.  (Bug#14563)
9408 2013-06-13  Juri Linkov  <juri@jurta.org>
9410         * isearch.el (isearch-yank-word, isearch-yank-line)
9411         (isearch-char-by-name, isearch-quote-char)
9412         (isearch-printing-char, isearch-process-search-char):
9413         Add optional count prefix arg.  (Bug#14563)
9415         * international/isearch-x.el
9416         (isearch-process-search-multibyte-characters):
9417         Add optional count prefix arg.
9419 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
9421         * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
9422         (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
9423         lexical-binding.
9425 2013-06-13  Vitalie Spinu  <spinuvit@gmail.com>
9427         * subr.el (set-temporary-overlay-map): Add on-exit argument.
9429 2013-06-13  Glenn Morris  <rgm@gnu.org>
9431         * startup.el (tty-handle-args):
9432         Don't just discard "--" and anything after.  (Bug#14608)
9434         * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
9436 2013-06-13  Michael Albinus  <michael.albinus@gmx.de>
9438         Implement changes in Secret Service API.  Make it backward compatible.
9439         * net/secrets.el (secrets-struct-secret-content-type): New defonst.
9440         (secrets-create-item): Use it.  Prefix properties with interface.
9442 2013-06-13  Michael Hoffman  <9qobl2n02@sneakemail.com>  (tiny change)
9444         * term.el (term-suppress-hard-newline): New option.  (Bug#12017)
9445         (term-emulate-terminal): Respect term-suppress-hard-newline.
9447 2013-06-13  E Sabof  <esabof@gmail.com>  (tiny change)
9449         * image-dired.el (image-dired-dired-toggle-marked-thumbs):
9450         Only remove a `thumb-file' overlay.  (Bug#14548)
9452 2013-06-12  Grégoire Jadi  <daimrod@gmail.com>
9454         * mail/reporter.el (reporter-submit-bug-report):
9455         Handle missing package-name.  (Bug#14600)
9457 2013-06-12  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
9459         * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
9460         (reftex-citation-prompt, reftex-default-bibliography)
9461         (reftex-bib-or-thebib, reftex-get-bibfile-list)
9462         (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
9463         (reftex-bib-sort-author, reftex-bib-sort-year)
9464         (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
9465         (reftex-extract-bib-entries-from-thebibliography)
9466         (reftex-get-bibkey-default, reftex-get-bib-names)
9467         (reftex-parse-bibtex-entry, reftex-get-bib-field)
9468         (reftex-format-bib-entry, reftex-parse-bibitem)
9469         (reftex-format-bibitem, reftex-do-citation)
9470         (reftex-figure-out-cite-format, reftex-offer-bib-menu)
9471         (reftex-restrict-bib-matches, reftex-extract-bib-file)
9472         (reftex-insert-bib-matches, reftex-format-citation)
9473         (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
9474         (reftex-create-bibtex-file): Add docstrings, mostly by converting
9475         existing comments into docstrings.
9477 2013-06-12  Xue Fuqiao  <xfq.free@gmail.com>
9479         * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
9481 2013-06-12  Andreas Schwab  <schwab@suse.de>
9483         * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
9484         for auto-save files.
9486 2013-06-12  Glenn Morris  <rgm@gnu.org>
9488         * ido.el (ido-delete-ignored-files): Remove.
9489         (ido-wide-find-dirs-or-files, ido-make-file-list-1):
9490         Go back to calling ido-ignore-item-p directly.
9492 2013-06-12  Eyal Lotem  <eyal.lotem@gmail.com>  (tiny change)
9494         * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
9496         * ido.el (ido-delete-ignored-files): New function,
9497         split from ido-make-file-list-1.
9498         (ido-wide-find-dirs-or-files): Maybe ignore files.  (Bug#13003)
9499         (ido-make-file-list-1): Use ido-delete-ignored-files.
9501 2013-06-12  Leo Liu  <sdl.web@gmail.com>
9503         * progmodes/octave.el (inferior-octave-startup)
9504         (inferior-octave-completion-table)
9505         (inferior-octave-track-window-width-change)
9506         (octave-eldoc-function-signatures, octave-help)
9507         (octave-find-definition): Use single quoted strings.
9508         (inferior-octave-startup-args): Change default value.
9509         (inferior-octave-startup): Do not hard code "-i" and
9510         "--no-line-editing".
9511         (inferior-octave-resync-dirs): Add optional arg NOERROR.
9512         (inferior-octave-directory-tracker): Use it.
9513         (octave-goto-function-definition): Robustify.
9514         (octave-help): Support highlighting operators in 'See also'.
9515         (octave-find-definition): Find subfunctions only in Octave mode.
9517 2013-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9519         * help-fns.el (help-fns--compiler-macro): If the handler function is
9520         named, then put a link to it.
9521         * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
9522         * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
9523         (cl-typep): Use it.
9524         (cl-eval-when): Simplify debug spec.
9525         (cl-define-compiler-macro): Use eval-and-compile.  Give a name to the
9526         compiler-macro function instead of setting `compiler-macro-file'.
9528 2013-06-12  Xue Fuqiao  <xfq.free@gmail.com>
9530         * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
9531         * vc/vc-hooks.el (vc-stay-local): Doc fix.
9533 2013-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9534             Daniel Hackney  <dan@haxney.org>
9536         First part of Daniel Hackney's patch to package.el.
9537         * emacs-lisp/package.el: Use defstruct.
9538         (package-desc): New, main struct.
9539         (package--bi-desc, package--ac-desc): New structs, used to describe the
9540         format in external files.
9541         (package-desc-vers): Replace with package-desc-version accessor.
9542         (package-desc-doc): Replace with package-desc-summary accessor.
9543         (package-activate-1): Remove `package' arg since the pkg-vec now
9544         includes the name.
9545         (define-package): Use package-desc-from-define.
9546         (package-unpack-single): Change file-name arg to be a symbol.
9547         (package--add-to-archive-contents): Use package-desc-create and new
9548         accessor functions to package--ac-desc.
9549         (package-buffer-info, package-tar-file-info): Return a package-desc.
9550         (package-install-from-buffer): Remove `type' argument.  Change pkg-info
9551         arg to be a package-desc.
9552         (package-install-file): Adjust accordingly.  Use \' to match EOS.
9553         (package--from-builtin): New function.
9554         (describe-package-1, package-menu--generate): Use it.
9555         (package--make-autoloads-and-compile): Change name arg to be a symbol.
9556         (package-generate-autoloads): Idem and return the name of the file.
9557         * emacs-lisp/package-x.el (package-upload-buffer-internal):
9558         Change pkg-info arg to be a package-desc.
9559         Use package-make-ac-desc.
9560         (package-upload-file): Use \' to match EOS.
9561         * finder.el (finder-compile-keywords): Use package-make-builtin.
9563 2013-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9565         * vc/vc.el (vc-deduce-fileset): Change error message.
9566         (vc-read-backend): New function.
9567         (vc-next-action): Use it.
9569         * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
9571         * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
9572         (prolog-font-lock-keywords): Use regexp-opt instead.
9573         Don't manually highlight strings.
9574         (prolog-mode-variables): Simplify comment-start-skip.
9575         (prolog-consult-compile): Use display-buffer.  Remove unused old-filter.
9577         * emacs-lisp/generic.el (generic--normalise-comments)
9578         (generic-set-comment-syntax, generic-set-comment-vars): New functions.
9579         (generic-mode-set-comments): Use them.
9580         (generic-bracket-support): Use setq-local.
9581         (generic-make-keywords-list): Declare obsolete.
9583 2013-06-11  Glenn Morris  <rgm@gnu.org>
9585         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
9586         Prettify after setting font-lock-defaults.  (Bug#14574)
9588 2013-06-11  Juanma Barranquero  <lekktu@gmail.com>
9590         * replace.el (query-replace, occur-read-regexp-defaults-function)
9591         (replace-search):
9592         * subr.el (declare-function, number-sequence, local-set-key)
9593         (substitute-key-definition, locate-user-emacs-file)
9594         (with-silent-modifications, split-string, eval-after-load):
9595         Fix typos, remove unneeded backslashes and reflow some docstrings.
9597 2013-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9599         * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
9600         default for Elisp files.
9602 2013-06-11  Glenn Morris  <rgm@gnu.org>
9604         * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
9605         although define-derived-mode was doing this anyway.  (Bug#14583)
9607 2013-06-10  Juanma Barranquero  <lekktu@gmail.com>
9609         * allout.el (allout-encryption-plaintext-sanitization-regexps):
9610         Fix make-variable-buffer-local call to refer to the correct variable.
9612 2013-06-10  Aidan Gauland  <aidalgol@amuri.net>
9614         * eshell/em-term.el (eshell-visual-commands)
9615         (eshell-visual-subcommands, eshell-visual-options):
9616         Add summary line to docstrings.  Add cross-references.
9618 2013-06-10  Glenn Morris  <rgm@gnu.org>
9620         * epa.el (epa-read-file-name): New function.  (Bug#14510)
9621         (epa-decrypt-file): Make plain-file optional.  Use epa-read-file-name.
9623 2013-06-09  Aidan Gauland  <aidalgol@amuri.net>
9625         * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
9626         output redirection to be ignored with visual commands.
9628 2013-06-09  Aidan Gauland  <aidalgol@amuri.net>
9630         * eshell/em-term.el (eshell-visual-command-p): New function.
9631         (eshell-term-initialize): Move long lambda to separate function
9632         eshell-visual-command-p.
9633         * eshell/em-dirs.el (eshell-dirs-initialise):
9634         * eshell/em-script.el (eshell-script-initialize):
9635         Add missing #' to lambda.
9637 2013-06-08  Leo Liu  <sdl.web@gmail.com>
9639         * progmodes/octave.el (octave-add-log-current-defun): New function.
9640         (octave-mode): Set add-log-current-defun-function.
9641         (octave-goto-function-definition): Do not move point if not found.
9642         (octave-find-definition): Enhance to try subfunctions first.
9644 2013-06-08  Glenn Morris  <rgm@gnu.org>
9646         * emacs-lisp/bytecomp.el (byte-compile-char-before)
9647         (byte-compile-backward-char, byte-compile-backward-word):
9648         Improve previous change, to handle non-explicit nil.
9650 2013-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
9652         * emacs-lisp/smie.el: Improve show-paren-mode behavior.
9653         (smie--opener/closer-at-point): New function.
9654         (smie--matching-block-data): Use it.  Don't match from right after an
9655         opener or right before a closer.  Obey smie-blink-matching-inners.
9656         Don't signal a mismatch for repeated inners like "switch..case..case".
9658 2013-06-07  Leo Liu  <sdl.web@gmail.com>
9660         * progmodes/octave.el (octave-mode): Set comment-use-global-state
9661         to t.  (Bug#14303)
9662         (octave-function-header-regexp): Fix.  (Bug#14570)
9663         (octave-help-mode-finish-hook, octave-help-mode-finish):
9664         Remove.  Just use temp-buffer-show-hook.
9666         * newcomment.el (comment-search-backward): Revert last change.
9667         (Bug#14434)
9669         * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
9671 2013-06-07  Eli Zaretskii  <eliz@gnu.org>
9673         * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
9674         through xargs, to avoid failure due to MS-Windows limitations on
9675         command-line length.
9677 2013-06-06  Glenn Morris  <rgm@gnu.org>
9679         * font-lock.el (lisp-font-lock-keywords-2):
9680         Treat user-error like error.
9682         * emacs-lisp/bytecomp.el (byte-compile-char-before)
9683         (byte-compile-backward-char, byte-compile-backward-word):
9684         Handle explicit nil arguments.  (Bug#14565)
9686 2013-06-05  Alan Mackenzie  <acm@muc.de>
9688         * isearch.el (isearch-allow-prefix): New user option.
9689         (isearch-other-meta-char): Don't exit isearch when a prefix
9690         argument is typed whilst `isearch-allow-prefix' is non-nil.
9691         (Bug#9706)
9693 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9695         * autorevert.el (auto-revert-notify-handler): Use memq.
9696         Hide assertion failure.
9698         * skeleton.el: Use cl-lib.
9699         (skeleton-further-elements): Use defvar-local.
9700         (skeleton-insert): Use cl-progv.
9702 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
9704         * progmodes/prog-mode.el (prog-prettify-symbols)
9705         (prog-prettify-install): Update docstrings.
9707 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9709         * simple.el: Move all the prog-mode code to prog-mode.el.
9710         * progmodes/prog-mode.el: New file.
9711         * loadup.el: Add prog-mode.el.
9713 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
9715         * simple.el (prog-prettify-symbols): Add version.
9716         (prog-prettify-install): Add convenience function to prettify symbols.
9718         * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
9719         (perl--augmented-font-lock-keywords-1)
9720         (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
9721         variables and use it.
9723         * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
9724         (cfengine3-mode): Remove unneeded variable and use it.
9726         * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
9727         (lisp--augmented-font-lock-keywords-1)
9728         (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
9729         Remove unneeded variables and use it.
9731 2013-06-05  João Távora  <joaotavora@gmail.com>
9733         * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
9734         to point when opening the connection.  (Bug#14380)
9736 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9738         * subr.el (load-history-regexp, load-history-filename-element)
9739         (eval-after-load, after-load-functions, do-after-load-evaluation)
9740         (eval-next-after-load, display-delayed-warnings)
9741         (collapse-delayed-warnings, delayed-warnings-hook): Move after the
9742         definition of save-match-data.
9743         (overriding-local-map): Remove accidental obsolescence declaration.
9745         * emacs-lisp/edebug.el (edebug-result): Move before first use.
9747 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
9749         Generalize symbol prettify support to prog-mode and implement it
9750         for perl-mode, cfengine3-mode, and emacs-lisp-mode.
9751         * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
9752         (prog--prettify-font-lock-compose-symbol)
9753         (prog-prettify-font-lock-symbols-keywords): New variables and
9754         functions to support symbol prettification.
9755         * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
9756         (lisp--augmented-font-lock-keywords-1)
9757         (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
9758         (lisp--prettify-symbols-alist): Implement prettify of lambda.
9759         * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
9760         (cfengine3--prettify-symbols-alist, cfengine3-mode):
9761         Implement prettify of -> => :: strings.
9762         * progmodes/perl-mode.el (perl-prettify-symbols)
9763         (perl--font-lock-compose-symbol)
9764         (perl--font-lock-symbols-keywords): Move to prog-mode.
9765         (perl--prettify-symbols-alist): Prettify -> => :: strings.
9766         (perl-font-lock-keywords-1)
9767         (perl-font-lock-keywords-2): Remove explicit prettify support.
9768         (perl--augmented-font-lock-keywords)
9769         (perl--augmented-font-lock-keywords-1)
9770         (perl--augmented-font-lock-keywords-2, perl-mode):
9771         Implement prettify support.
9773 2013-06-05  Leo Liu  <sdl.web@gmail.com>
9775         Re-implement smie matching block highlight using
9776         show-paren-data-function.  (Bug#14395)
9777         * emacs-lisp/smie.el (smie-matching-block-highlight)
9778         (smie--highlight-matching-block-overlay)
9779         (smie--highlight-matching-block-lastpos)
9780         (smie-highlight-matching-block)
9781         (smie-highlight-matching-block-mode): Remove.
9782         (smie--matching-block-data-cache): New variable.
9783         (smie--matching-block-data): New function.
9784         (smie-setup): Use smie--matching-block-data for
9785         show-paren-data-function.
9787         * progmodes/octave.el (octave-mode-menu): Fix.
9788         (octave-find-definition): Skip garbage lines.
9790 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9792         Fix compilation error with simultaneous dynamic+lexical scoping.
9793         Add warning when a defvar appears after the first let-binding.
9794         * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
9795         (byte-compile-close-variables): Initialize it.
9796         (byte-compile--declare-var): New function.
9797         (byte-compile-file-form-defvar)
9798         (byte-compile-file-form-define-abbrev-table)
9799         (byte-compile-file-form-custom-declare-variable): Use it.
9800         (byte-compile-make-lambda-lexenv): Change the argument.  Simplify.
9801         (byte-compile-lambda): Share call to byte-compile-arglist-vars.
9802         (byte-compile-bind): Handle dynamic bindings that shadow
9803         lexical bindings.
9804         (byte-compile-unbind): Make arg non-optional.
9805         (byte-compile-let): Simplify.
9806         * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
9807         (cconv--analyse-function, cconv-analyse-form): Populate it.
9808         Protect byte-compile-bound-variables to limit the scope of defvars.
9809         (cconv-analyse-form): Add missing rule for (defvar <foo>).
9810         Remove unneeded rule for `declare'.
9812         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
9813         so as to avoid depending on cl-adjoin at run-time.
9814         * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
9816         * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
9817         (macroexp--warn-and-return): Use it.
9819 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
9821         * subr.el: Convert to lexical binding.
9822         (overriding-local-map): Make obsolete.
9823         (add-to-list): Doc fix.  Add compiler macro.
9824         (read-key): Swap values of local maps.
9826 2013-06-05  Leo Liu  <sdl.web@gmail.com>
9828         * eshell/esh-mode.el (eshell-mode): Fix key bindings.
9830 2013-06-04  Leo Liu  <sdl.web@gmail.com>
9832         * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
9833         (compilation-auto-jump): Suppress the "Mark set" message to give
9834         way to exit message.
9836 2013-06-04  Alan Mackenzie  <acm@muc.de>
9838         Remove faulty optimisation from indentation calculation.
9839         * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
9840         search limit based on 2000 characters back from indent-point.
9842 2013-06-03  Tassilo Horn  <tsdh@gnu.org>
9844         * eshell/em-term.el (cl-lib): Require `cl-lib'.
9846 2013-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9848         * emacs-lisp/lisp.el: Use lexical-binding.
9849         (lisp--local-variables-1, lisp--local-variables): New functions.
9850         (lisp--local-variables-completion-table): New var.
9851         (lisp-completion-at-point): Use it complete let-bound vars.
9853         * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
9854         eagerly (bug#14422).
9856 2013-06-03  Michael Albinus  <michael.albinus@gmx.de>
9858         * autorevert.el (auto-revert-notify-enabled)
9859         (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
9860         (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
9861         (auto-revert-notify-handler): Handle also gfilenotify.
9863         * subr.el (file-notify-handle-event): New defun.  Replacing ...
9864         (inotify-event-p, inotify-handle-event, w32notify-handle-event):
9865         Remove.
9867 2013-06-03  Juri Linkov  <juri@jurta.org>
9869         * bindings.el (search-map): Bind `highlight-symbol-at-point' to
9870         `M-s h .'.  (Bug#14427)
9872         * hi-lock.el (highlight-symbol-at-point): New alias for the new
9873         command `hi-lock-face-symbol-at-point'.
9874         (hi-lock-face-symbol-at-point): New command.
9875         (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
9876         (hi-lock-menu): Add `highlight-symbol-at-point'.
9877         (hi-lock-mode): Doc fix.
9879         * isearch.el (isearch-forward-symbol-at-point): New command.
9880         (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
9881         (isearch-highlight-regexp): Add a regexp which matches
9882         words/symbols for word/symbol mode.
9884         * subr.el (find-tag-default-bounds): New function with the body
9885         mostly moved from `find-tag-default'.
9886         (find-tag-default): Move most code to `find-tag-default-bounds',
9887         call it and apply `buffer-substring-no-properties' afterwards.
9889 2013-06-03  Tassilo Horn  <tsdh@gnu.org>
9891         * eshell/em-term.el (eshell-term-initialize):
9892         Use `cl-intersection' rather than `intersection'.
9894 2013-06-02  Xue Fuqiao  <xfq.free@gmail.com>
9896         * vc/log-view.el: Doc fix.
9897         (log-view-mode-map): Copy keymap from `special-mode-map'.
9899 2013-06-02  Eric Ludlam  <zappo@gnu.org>
9901         * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
9902         (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
9903         (eieio-optimize-primary-methods-flag, eieio-initializing-object)
9904         (eieio-unbound, eieio-default-superclass)
9905         (eieio--define-field-accessors, method-static, method-before)
9906         (method-primary, method-after, method-num-lists)
9907         (method-generic-before, method-generic-primary)
9908         (method-generic-after, method-num-slots)
9909         (eieio-specialized-key-to-generic-key)
9910         (eieio--check-type, class-v, class-p)
9911         (eieio-class-name, define-obsolete-function-alias)
9912         (eieio-class-parents-fast, eieio-class-children-fast)
9913         (same-class-fast-p, class-constructor, generic-p)
9914         (generic-primary-only-p, generic-primary-only-one-p)
9915         (class-option-assoc, class-option, eieio-object-p)
9916         (class-abstract-p, class-method-invocation-order)
9917         (eieio-defclass-autoload-map, eieio-defclass-autoload)
9918         (eieio-class-un-autoload, eieio-defclass)
9919         (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
9920         (eieio-add-new-slot, eieio-copy-parents-into-subclass)
9921         (eieio--defgeneric-init-form, eieio-defgeneric-form)
9922         (eieio-defgeneric-reset-generic-form)
9923         (eieio-defgeneric-form-primary-only)
9924         (eieio-defgeneric-reset-generic-form-primary-only)
9925         (eieio-defgeneric-form-primary-only-one)
9926         (eieio-defgeneric-reset-generic-form-primary-only-one)
9927         (eieio-unbind-method-implementations)
9928         (eieio--defmethod, eieio--typep)
9929         (eieio-perform-slot-validation, eieio-validate-slot-value)
9930         (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
9931         (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
9932         (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
9933         (eieio-slot-name-index, eieio-class-slot-name-index)
9934         (eieio-set-defaults, eieio-initarg-to-attribute)
9935         (eieio-attribute-to-initarg, eieio-c3-candidate)
9936         (eieio-c3-merge-lists, eieio-class-precedence-c3)
9937         (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
9938         (eieio-class-precedence-list, eieio-generic-call-methodname)
9939         (eieio-generic-call-arglst, eieio-generic-call-key)
9940         (eieio-generic-call-next-method-list)
9941         (eieio-pre-method-execution-functions, eieio-generic-call)
9942         (eieio-generic-call-primary-only, eieiomt-method-list)
9943         (eieiomt-optimizing-obarray, eieiomt-install)
9944         (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
9945         (eieio-generic-form, eieio-defmethod, make-obsolete)
9946         (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
9947         (defclass): Remove `eval-and-compile' from macro.
9948         (call-next-method, shared-initialize): Instead of using
9949         `scoped-class' variable, use new eieio--scoped-class, and
9950         eieio--with-scoped-class.
9951         (initialize-instance): Rename local variable 'scoped-class' to
9952         'this-class' to remove ambiguitity from old global.
9954         * emacs-lisp/eieio-core.el: New file.  Derived from key parts of
9955         eieio.el.
9956         (eieio--scoped-class-stack): New variable.
9957         (eieio--scoped-class): New fcn.
9958         (eieio--with-scoped-class): New scoping macro.
9959         (eieio-defclass): Use pushnew instead of add-to-list.
9960         (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
9961         (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
9962         (eieio-generic-call-primary-only, eieiomt-add): Instead of using
9963         `scoped-class' variable, use new eieio--scoped-class, and
9964         eieio--with-scoped-class.
9966         * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
9968 2013-06-02  Tassilo Horn  <tsdh@gnu.org>
9970         * eshell/esh-ext.el (eshell-external-command): Pass args to
9971         `eshell-find-interpreter'.
9972         (eshell-find-interpreter): Add new second parameter ARGS.
9974         * eshell/em-script.el (eshell-script-initialize): Add second arg
9975         to the function added as MATCH to `eshell-interpreter-alist'.
9977         * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
9978         the function added as MATCH to `eshell-interpreter-alist'.
9980         * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
9981         (eshell-visual-options): New defcustom.
9982         (eshell-escape-control-x): Adapt docstring.
9983         (eshell-term-initialize): Test `eshell-visual-subcommands' and
9984         `eshell-visual-options' in addition to `eshell-visual-commands'.
9985         (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
9987 2013-06-01  Fabián Ezequiel Gallina  <fgallina@gnu.org>
9989         * progmodes/python.el (python-indent-block-enders): Add break,
9990         continue and raise keywords.
9992 2013-06-01  Glenn Morris  <rgm@gnu.org>
9994         * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
9996         Plain (f)boundp silences compilation warnings since Emacs 22.1.
9997         * progmodes/cc-cmds.el (delete-forward-p):
9998         * progmodes/cc-defs.el (buffer-syntactic-context-depth):
9999         * progmodes/cc-engine.el (buffer-syntactic-context):
10000         * progmodes/cc-fonts.el (face-property-instance):
10001         * progmodes/cc-mode.el (set-keymap-parents):
10002         * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
10003         * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
10004         * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
10005         * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
10006         (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
10008         * progmodes/cc-vars.el (other): Emacs has this widget since
10009         at least 21.1, so don't (re)define it.
10011         * eshell/em-cmpl.el (eshell-cmpl-initialize):
10012         Replace the obsolete alias pcomplete-arg-quote-list.
10014 2013-06-01  Leo Liu  <sdl.web@gmail.com>
10016         * progmodes/octave.el (octave-mode-syntax-table): Give `.'
10017         punctuation syntax.
10018         (inferior-octave-minimal-columns)
10019         (inferior-octave-last-column-width): New variables.
10020         (inferior-octave-track-window-width-change): New function.
10021         (inferior-octave-mode): Adjust column width so that Octave output,
10022         for example from 'ls', can fit into the window nicely.
10024 2013-05-31  Dmitry Gutov  <dgutov@yandex.ru>
10026         * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
10027         Highlight expansions inside regexp literals.
10029 2013-05-31  Glenn Morris  <rgm@gnu.org>
10031         * obsolete/sym-comp.el (symbol-complete):
10032         Replace obsolete completion-annotate-function.
10034         * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
10036 2013-05-31  Dmitry Gutov  <dgutov@yandex.ru>
10038         * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
10039         New function, checks if point is inside a literal that allows
10040         expression expansion.
10041         (ruby-syntax-propertize-expansion): Use it.
10042         (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
10043         around the body.
10045 2013-05-30  Juri Linkov  <juri@jurta.org>
10047         * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
10048         to "\M-si".
10049         (isearch-invisible): New variable.
10050         (isearch-forward): Doc fix.
10051         (isearch-mode): Set `isearch-invisible'
10052         to the value of `search-invisible'.
10053         (isearch-toggle-case-fold): Doc fix.
10054         (isearch-toggle-invisible): New command.
10055         (isearch-query-replace): Let-bind `search-invisible'
10056         to the value of `isearch-invisible'.
10057         (isearch-search): Use `isearch-invisible' instead of
10058         `search-invisible'.  Let-bind `search-invisible'
10059         to the value of `isearch-invisible'.  (Bug#11378)
10061 2013-05-30  Juri Linkov  <juri@jurta.org>
10063         * replace.el (perform-replace): Avoid `isearch-range-invisible'
10064         call when `query-flag' is nil and `search-invisible' is non-nil.
10065         (Bug#11746)
10067 2013-05-30  Glenn Morris  <rgm@gnu.org>
10069         * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
10071         * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
10072         (cc-require): Suppress spurious "noruntime" warnings.
10073         (cc-require-when-compile): Use fboundp, for sake of compiler.
10075         * progmodes/cc-mode.el: Move load of cc-vars before that of
10076         cc-langs (which in turn loads cc-vars), to quieten compiler.
10078 2013-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10080         * paren.el: Simplify the code.
10081         (show-paren-mode): Always start the timer.
10082         (show-paren--idle-timer): Rename from show-paren-idle-timer.
10083         (show-paren--overlay, show-paren--overlay-1): Rename from
10084         show-paren-overlay and show-paren-overlay-1, and initialize to an
10085         overlay rather than to nil.
10086         (show-paren-function): Misc cleanup and simplifications.
10088 2013-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10090         * paren.el (show-paren-data-function): New hook.
10091         (show-paren--default): New function, extracted from show-paren-function.
10092         (show-paren-function): Use show-paren-data-function.
10094 2013-05-30  Glenn Morris  <rgm@gnu.org>
10096         * ielm.el (ielm-map, ielm-complete-symbol):
10097         Use completion-at-point rather than obsolete functions.
10098         (inferior-emacs-lisp-mode): Doc fix.
10099         Set completion-at-point-functions, rather than
10100         comint-dynamic-complete-functions.
10102         * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
10103         (eshell-cmpl-initialize, eshell-complete-parse-arguments):
10104         Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
10106         * image.el (image-animated-p): Tweak definition.
10108         * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
10109         (rlogin-process-connection-type): Tweak default.  Add set-after.
10110         (rlogin-host): Doc fix.
10111         (rlogin): Tweak prompt.
10112         (rlogin-tab-or-complete): Use completion-at-point rather than alias.
10114         * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
10115         * progmodes/tcl.el (inferior-tcl-mode-map):
10116         Use completion-at-point rather than obsolete alias.
10118         * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
10120         * minibuffer.el (read-file-name-completion-ignore-case):
10121         Move before completion--in-region, for eager macro expansion.
10123 2013-05-29  Juri Linkov  <juri@jurta.org>
10125         * replace.el (occur-engine): Rename `globalcount' to `global-lines'
10126         for total count of matching lines.  Add `global-matches' for total
10127         count of matches.  Rename `matches' to `lines' for count of
10128         matching lines.  Add `matches' for count of matches.
10129         Rename `lines' to `curr-line' for line count.  Rename `prev-lines'
10130         to `prev-line' for line number of prev match endpt.
10131         Increment `matches' for every match.  Print the number of
10132         matching lines in the header.
10133         (occur-context-lines): Rename `lines' to `curr-line'.
10134         Rename `prev-lines' to `prev-line'.  (Bug#14017)
10136 2013-05-29  Juri Linkov  <juri@jurta.org>
10138         * replace.el (perform-replace): Add `skip-read-only-count',
10139         `skip-filtered-count', `skip-invisible-count' let-bound to 0.
10140         Increment them for corresponding conditions and report the number
10141         of skipped occurrences in the final message.  (Bug#11746)
10142         (query-replace, query-replace-regexp, query-replace-regexp-eval)
10143         (replace-string, replace-regexp): Doc fix.
10145 2013-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
10147         * emacs-lisp/trace.el (trace--read-args): Provide a default.
10149         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
10150         prog-mode-map (bug#14504).
10152 2013-05-29  Leo Liu  <sdl.web@gmail.com>
10154         * progmodes/octave.el (octave-indent-comment): Tweak regexps.
10155         (octave-help): Small simplification.
10157         * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
10158         off the highlight first.
10160 2013-05-29  Glenn Morris  <rgm@gnu.org>
10162         * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
10163         Handle idlwave-last-system-routine-info-cons-cell being nil.
10165         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
10166         (idlwave-write-paths): Simplify via with-temp-buffer.
10168         * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
10169         * emulation/cua-rect.el: Also load cua-base at run time.
10171         * progmodes/cperl-mode.el (imenu-choose-buffer-index)
10172         (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
10173         (cperl-imenu-on-info): Require imenu.
10175 2013-05-28  Alan Mackenzie  <acm@muc.de>
10177         Handle "capitalised keywords" correctly.
10178         * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
10180 2013-05-28  Aidan Gauland  <aidalgol@amuri.net>
10182         * eshell/em-unix.el: Add -r option to cp.
10184 2013-05-28  Glenn Morris  <rgm@gnu.org>
10186         * vc/vc-arch.el (vc-exec-after): Declare.
10187         (vc-switches): Autoload.
10188         * vc/vc-bzr.el: No need to require vc when compiling.
10189         (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
10190         (vc-resynch-buffer, vc-dir-refresh): Declare.
10191         (vc-setup-buffer, vc-switches): Autoload.
10192         * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
10193         (vc-resynch-buffer): Declare.
10194         (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
10195         * vc/vc-dir.el (desktop-missing-file-warning): Declare.
10196         * vc/vc-git.el (vc-exec-after, vc-set-async-update)
10197         (grep-read-regexp, grep-read-files, grep-expand-template)
10198         (vc-dir-refresh): Declare.
10199         (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
10200         * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
10201         (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
10202         * vc/vc-mtn.el (vc-exec-after): Declare.
10203         (vc-switches): Autoload.
10204         * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
10205         (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
10206         (vc-file-tree-walk): Declare.
10207         * vc/vc-sccs.el (vc-file-tree-walk): Declare.
10208         (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
10209         (vc-tag-precondition, vc-rename-master): Autoload.
10210         * vc/vc-svn.el (vc-exec-after): Declare.
10211         (vc-switches, vc-setup-buffer): Autoload.
10212         * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
10213         Autoload.
10214         (vc-resynch-buffer): Declare.
10216         * obsolete/fast-lock.el (byte-compile-warnings):
10217         Don't warn about obsolete features in this obsolete file.
10219         * progmodes/cc-vars.el (c-macro-names-with-semicolon):
10220         Move definition before use.
10222         * play/dunnet.el (byte-compile-warnings): Don't disable them all.
10223         (dun-unix-verbs): Remove dun-zippy.
10224         (dun-zippy): Remove function.
10226         * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
10228 2013-05-27  Juri Linkov  <juri@jurta.org>
10230         * replace.el (replace-search): New function with code moved out
10231         from `perform-replace'.
10232         (replace-highlight, replace-dehighlight): Move function definitions
10233         up closer to `replace-search'.  (Bug#11746)
10235 2013-05-27  Juri Linkov  <juri@jurta.org>
10237         * replace.el (perform-replace): Ignore invisible matches.
10238         In addition to checking `query-replace-skip-read-only', also
10239         filter out matches by calling `run-hook-with-args-until-failure'
10240         on `isearch-filter-predicates', and also check `search-invisible'
10241         for t or call `isearch-range-invisible'.
10242         (replace-dehighlight): Call `isearch-clean-overlays'.  (Bug#11746)
10244 2013-05-27  Juri Linkov  <juri@jurta.org>
10246         * isearch.el (isearch-filter-predicates): Rename from
10247         `isearch-filter-predicate'.  Doc fix.  (Bug#11378)
10248         (isearch-message-prefix): Display text from the property
10249         `isearch-message-prefix' of the currently active filters.
10250         (isearch-search): Don't compare `isearch-filter-predicate' with
10251         `isearch-filter-visible'.  Call `run-hook-with-args-until-failure'
10252         on `isearch-filter-predicates'.  Also check `search-invisible' for t
10253         or call `isearch-range-invisible'.
10254         (isearch-filter-visible): Make obsolete.
10255         (isearch-lazy-highlight-search):
10256         Call `run-hook-with-args-until-failure' on
10257         `isearch-filter-predicates' and use `isearch-range-invisible'.
10259         * info.el (Info-search): Call `run-hook-with-args-until-failure' on
10260         `isearch-filter-predicates' instead of `funcall'ing
10261         `isearch-filter-predicate'.
10262         (Info-mode): Set `Info-isearch-filter' to
10263         `isearch-filter-predicates' instead of `isearch-filter-predicate'.
10265         * dired-aux.el (dired-isearch-filter-predicate-orig):
10266         Remove variable.
10267         (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
10268         (dired-isearch-filenames-end): Add and remove
10269         `dired-isearch-filter-filenames' in `isearch-filter-predicates'
10270         instead of changing the value of `isearch-filter-predicate'.
10271         Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
10272         (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
10273         Put property `isearch-message-prefix' to "filename " on
10274         `dired-isearch-filter-filenames'.
10276         * wdired.el (wdired-change-to-wdired-mode):
10277         Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
10278         locally instead of changing `isearch-filter-predicate'.
10279         (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
10281 2013-05-27  Dmitry Gutov  <dgutov@yandex.ru>
10283         * vc/vc-git.el (vc-git-working-revision): When in detached mode,
10284         return the commit hash (Bug#14459).  Also set the
10285         `vc-git-detached' property.
10286         (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
10287         (vc-git-mode-line-string): Use the same help-echo format whether
10288         in detached mode or not, because we know the actual revision now.
10289         When in detached mode, shorten the revision to 7 chars.
10291 2013-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10293         * emacs-lisp/easy-mmode.el (define-minor-mode):
10294         * emacs-lisp/derived.el (define-derived-mode): Always defvar the
10295         mode hook and provide a docstring.
10297 2013-05-27  Alan Mackenzie  <acm@muc.de>
10299         Remove spurious syntax-table text properties inserted by C-y.
10300         * progmodes/cc-mode.el (c-after-change): Also clear hard
10301         syntax-table property with value nil.
10303 2013-05-27  Michael Albinus  <michael.albinus@gmx.de>
10305         * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
10306         when reading the events; the buffer layout shall not be changed.
10308 2013-05-27  Leo Liu  <sdl.web@gmail.com>
10310         * progmodes/octave.el (inferior-octave-directory-tracker-resync):
10311         New variable.
10312         (inferior-octave-directory-tracker): Automatically re-sync
10313         default-directory.
10314         (octave-help): Improve handling of 'See also'.
10316 2013-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
10318         * doc-view.el: Minor naming convention tweaks.
10319         (desktop-buffer-mode-handlers): Don't add to it repeatedly.
10321         * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
10322         even if there's no `display' property yet (bug#14435).
10324 2013-05-25  Eli Zaretskii  <eliz@gnu.org>
10326         * subr.el (unmsys--file-name): Rename from reveal-filename.
10328         * Makefile.in (custom-deps, finder-data, autoloads)
10329         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
10330         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
10331         ($(CAL_DIR)/hol-loaddefs.el): All users changed.
10333 2013-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10335         * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
10336         error-completion on the first 2 args of condition-case (bug#14446).
10337         Don't burp at EOB.
10339 2013-05-25  Leo Liu  <sdl.web@gmail.com>
10341         * comint.el (comint-previous-matching-input): Do not flood the
10342         *Messages* buffer with trivial messages.
10344 2013-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10346         * progmodes/flymake.el (flymake-nop): Don't return a string.
10347         (flymake-set-at): Fix typo.
10349         * simple.el (read--expression): New function, extracted from
10350         eval-expression.  Set completion-at-point-functions (bug#14465).
10351         (eval-expression, eval-minibuffer): Use it.
10353 2013-05-25  Xue Fuqiao  <xfq.free@gmail.com>
10355         * progmodes/flymake.el (flymake-save-buffer-in-file)
10356         (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
10357         (flymake-selected-frame, flymake-log, flymake-ins-after)
10358         (flymake-set-at, flymake-get-buildfile-from-cache)
10359         (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
10360         (flymake-find-possible-master-files, flymake-save-buffer-in-file):
10361         Refine the doc string.
10362         (flymake-get-file-name-mode-and-masks): Reformat.
10363         (flymake-get-real-file-name-function): Fix a minor bug.
10365 2013-05-24  Juri Linkov  <juri@jurta.org>
10367         * progmodes/grep.el (grep-mode-font-lock-keywords):
10368         Support =linenumber= format used by git-grep for lines with
10369         function names.  (Bug#13549)
10371 2013-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10373         * progmodes/octave.el (octave-smie-rules): Return nil rather than
10374         0 after a semi-colon; it works better for smie-auto-fill.
10375         (octave--indent-new-comment-line): New function.
10376         (octave-indent-new-comment-line): Use it (indirectly).
10377         (octave-mode): Don't disable smie-auto-fill.  Use add-function to
10378         modify comment-line-break-function.
10380         * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
10381         (smie-setup): Use add-function to set it.
10383 2013-05-24  Sam Steingold  <sds@gnu.org>
10385         * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
10386         argument (before the `interactive' argument).
10388 2013-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10390         * image-mode.el (image-mode-winprops): Add winprops to
10391         image-mode-winprops-alist before running
10392         image-mode-new-window-functions.
10393         * doc-view.el (doc-view-new-window-function): Don't delay
10394         doc-view-goto-page via timers (bug#14435).
10396 2013-05-24  Tassilo Horn  <tsdh@gnu.org>
10398         * doc-view.el: Integrate with desktop.el.  (Bug#14435)
10399         (doc-view-desktop-save-buffer): New function.
10400         (doc-view-restore-desktop-buffer): New function.
10401         (desktop-buffer-mode-handlers):
10402         Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
10403         handler.
10404         (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
10405         `desktop-save-buffer' function.
10407 2013-05-24  Michael Albinus  <michael.albinus@gmx.de>
10409         * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
10410         (tramp-gvfs-file-name-handler): Raise a user error when
10411         `tramp-gvfs-enabled' is nil.
10412         (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
10413         Do not raise a user error when loading package.  (Bug#14447)
10415         * net/xesam.el: Move to obsolete/.
10417 2013-05-24  Glenn Morris  <rgm@gnu.org>
10419         * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
10421         * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
10423         * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
10424         (Info-find-node, Man-getpage-in-background): Declare.
10426         * mail/unrmail.el (unrmail):
10427         Replace obsolete detect-coding-with-priority.
10429         * net/socks.el (socks-split-string): Use this rather than split-string.
10430         (socks-nslookup-host): Update for above change.
10431         (dynamic-choice, s5-dynamic-choice-match)
10432         (s5-dynamic-choice-match-inline, s5-widget-value-create):
10433         Comment out unused code.
10435         * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
10436         * progmodes/gud.el (gud-gdb-completion-function): Move before use.
10437         (gud-tooltip-echo-area): Make obsolete.
10438         (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
10440         * progmodes/js.el (js--optimize-arglist): Declare.
10442         * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
10444         * progmodes/which-func.el (ediff-window-A, ediff-window-B)
10445         (ediff-window-C): Declare.
10447         * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
10448         Tweak requires to silence compiler.
10450         * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
10451         (he-search-string, he-tried-table, he-expand-list)
10452         (he-init-string, he-string-member, he-substitute-string)
10453         (he-reset-string): Declare.
10455         * obsolete/options.el (list-options): Use custom-variable-p,
10456         rather than obsolete alias.
10458 2013-05-23  Sam Steingold  <sds@gnu.org>
10460         * simple.el (shell-command-on-region): Pass the `replace' argument
10461         down to `call-process-region' to comply with the doc as reported on
10462         <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
10464 2013-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10466         * emacs-lisp/smie.el (smie-indent-forward-token)
10467         (smie-indent-backward-token): Handle string tokens (bug#14381).
10469 2013-05-23  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
10471         * ielm.el (ielm-menu): New menu.
10472         (inferior-emacs-lisp-mode): Set comment-start.
10474 2013-05-23  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
10476         * textmodes/reftex.el (reftex-ref-style-toggle):
10477         Fix deactivate action.
10479         * textmodes/reftex-vars.el (reftex-ref-style-alist):
10480         Add cleveref macros.
10482         * textmodes/reftex-parse.el
10483         (reftex-locate-bibliography-files): Accept options for
10484         bibliography commands.
10485         * textmodes/reftex-vars.el (reftex-bibliography-commands):
10486         Add addbibresource.  Basic Biblatex support.
10488 2013-05-23  Michael Albinus  <michael.albinus@gmx.de>
10490         * net/tramp-gvfs.el (top):
10491         * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
10492         when loading package.  (Bug#14447)
10494 2013-05-23  Glenn Morris  <rgm@gnu.org>
10496         * progmodes/js.el: No need to load comint when compiling.
10497         (ring-insert, comint-send-string, comint-send-input)
10498         (comint-last-input-end, ido-chop): Declare.
10500         * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
10501         * vc/ediff-mult.el: Adjust requires.
10502         (ediff-directories-internal, ediff-directory-revisions-internal)
10503         (ediff-patch-file-internal): Declare.
10504         * vc/ediff-ptch.el: Adjust requires.
10505         (ediff-use-last-dir, ediff-buffers-internal): Declare.
10506         (ediff-find-file): Autoload.
10507         * vc/ediff-util.el: No need to load ediff when compiling.
10508         (ediff-regions-internal): Declare.
10509         * vc/ediff-wind.el: Adjust requires.
10510         (ediff-compute-toolbar-width): Define when compiling.
10511         (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
10512         * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
10513         (dired-get-filename, dired-get-marked-files)
10514         (ediff-last-dir-patch, ediff-patch-default-directory)
10515         (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
10516         (ediff-patch-buffer-internal): Declare.
10518         * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
10519         (ispell-process, ispell-buffer-local-words, lm-summary)
10520         (lm-section-start, lm-section-end): Declare.
10521         (checkdoc-ispell-init): Simplify.
10523         * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
10524         (he-string-member, he-reset-string, he-substitute-string): Declare.
10526         * eshell/em-ls.el: Adjust requires.
10527         (eshell-glob-regexp): Declare.
10528         * eshell/em-tramp.el: Adjust requires.
10529         (eshell-parse-command): Autoload.
10530         * eshell/em-xtra.el: Adjust requires.
10531         (eshell-parse-command): Autoload.
10532         * eshell/esh-ext.el: Adjust requires.
10533         (eshell-parse-command, eshell-close-handles): Autoload.
10534         * eshell/esh-io.el: Adjust requires.
10535         (eshell-output-filter): Autoload.
10536         * eshell/esh-util.el: No need to load tramp when compiling.
10537         (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
10538         Declare.
10539         (eshell-parse-ange-ls): Require ange-ftp and tramp.
10540         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
10541         * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
10542         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
10543         * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
10544         * eshell/esh-opt.el, eshell/esh-proc.el:
10545         * eshell/esh-var.el: Adjust requires.
10546         * eshell/eshell.el: Do not require esh-util twice.
10547         (eshell-add-input-to-history): Declare.
10548         (eshell-command): Check history module is active before using it.
10550         * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
10552 2013-05-22  Leo Liu  <sdl.web@gmail.com>
10554         * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
10556 2013-05-22  Michael Albinus  <michael.albinus@gmx.de>
10558         * autorevert.el (auto-revert-notify-add-watch)
10559         (auto-revert-notify-handler): Add `attrib' for the inotify case,
10560         it indicates changes in file modification time.
10562 2013-05-22  Glenn Morris  <rgm@gnu.org>
10564         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
10565         Always delete the autoloaded function from the noruntime and
10566         unresolved functions lists.
10568         * allout.el: No need to load epa, epg, overlay when compiling.
10569         (epg-context-set-passphrase-callback, epg-list-keys)
10570         (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
10571         (epg-key-user-id-list): Declare.
10573         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
10574         (viper-set-parsing-style-toggling-macro)
10575         (viper-set-emacs-state-searchstyle-macros):
10576         Use called-interactively-p on Emacs.
10577         (viper-looking-back): Make it an obsolete alias.  Update callers.
10578         * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
10579         Use looking-back rather than viper-looking-back.
10580         (viper-tmp-insert-at-eob, viper-enlarge-region)
10581         (viper-read-string-with-history, viper-register-to-point)
10582         (viper-append-to-register, viper-change-state-to-vi)
10583         (viper-backward-char-carefully, viper-forward-char-carefully)
10584         (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
10585         (viper-change-state-to-emacs): Declare.
10586         * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
10587         (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
10588         * emulation/viper-mous.el: Do not load viper-cmd.
10589         (viper-backward-char-carefully, viper-forward-char-carefully)
10590         (viper-forward-word, viper-adjust-window): Declare.
10592         * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
10594         * progmodes/idlw-help.el (idlwave-help-fontify):
10595         Use called-interactively-p.
10597         * term/w32console.el (w32-get-console-codepage)
10598         (w32-get-console-output-codepage): Declare.
10600         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
10601         Remove unnecessary declarations.
10602         (dframe-message): Doc fix.
10604         * info.el (dframe-select-attached-frame, dframe-current-frame):
10605         Declare.
10607         * speedbar.el (speedbar-message): Make it an obsolete alias.
10608         Update all callers.
10609         (speedbar-with-attached-buffer)
10610         (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
10611         (speedbar-with-writable): Use backquote.
10612         * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
10613         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
10614         Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
10615         rather than speedbar- aliases.
10616         * mail/rmail.el: Load dframe rather than speedbar when compiling.
10617         (speedbar-make-specialized-keymap, speedbar-insert-button)
10618         (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
10619         (speedbar-do-function-pointer): Declare.
10620         (rmail-speedbar-button, rmail-speedbar-find-file)
10621         (rmail-speedbar-move-message):
10622         Use dframe-with-attached-buffer rather than speedbar- alias.
10623         * progmodes/gud.el: Load dframe rather than speedbar when compiling.
10624         (dframe-message, speedbar-make-specialized-keymap)
10625         (speedbar-add-expansion-list, speedbar-mode-functions-list)
10626         (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
10627         (speedbar-insert-button, dframe-select-attached-frame)
10628         (dframe-maybee-jump-to-attached-frame)
10629         (speedbar-change-initial-expansion-list)
10630         (speedbar-previously-used-expansion-list-name): Declare.
10631         (gud-speedbar-item-info, gud-gdb-goto-stackframe):
10632         Use dframe-message, dframe-with-attached-buffer rather than
10633         speedbar- aliases.
10634         (gud-sentinel): Silence compiler.
10635         * progmodes/vhdl-mode.el (speedbar-refresh)
10636         (speedbar-do-function-pointer, speedbar-add-supported-extension)
10637         (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
10638         (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
10639         (speedbar-extension-list-to-regex, speedbar-directory-buttons)
10640         (speedbar-file-lists, speedbar-make-tag-line)
10641         (speedbar-line-directory, speedbar-goto-this-file)
10642         (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
10643         (speedbar-delete-subblock, speedbar-position-cursor-on-line)
10644         (speedbar-make-button, speedbar-reset-scanners)
10645         (speedbar-files-item-info, speedbar-line-text)
10646         (speedbar-find-file-in-frame, speedbar-set-timer)
10647         (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
10648         (speedbar-with-writable): Do not (re)define it.
10649         (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
10650         rather than speedbar- alias.
10652 2013-05-21  Leo Liu  <sdl.web@gmail.com>
10654         * progmodes/octave.el (octave-mode-menu): Update and re-organize
10655         menu items.
10656         (octave-mode): Tweak fill-nobreak-predicate.
10657         (inferior-octave-startup): Check process to avoid infinite loop.
10658         (inferior-octave): Pop to buffer first to show abornmal process
10659         exit information.
10661 2013-05-21  Glenn Morris  <rgm@gnu.org>
10663         * printing.el (pr-menu-bar): Define when compiling.
10665 2013-05-21  Leo Liu  <sdl.web@gmail.com>
10667         * progmodes/octave.el (octave-auto-fill): Remove.
10668         (octave-indent-new-comment-line): Improve.
10669         (octave-mode): Use auto fill mode through
10670         comment-line-break-function and fill-nobreak-predicate.
10671         (octave-goto-function-definition): Support DEFUN_DLD.
10672         (octave-beginning-of-defun): Small tweak.
10673         (octave-help): Show parent directory.
10675 2013-05-21  Glenn Morris  <rgm@gnu.org>
10677         * files.el (dired-unmark):
10678         * progmodes/gud.el (gdb-input): Update declarations.
10680         * calculator.el (electric, ehelp): No need to load when compiling.
10681         (Electric-command-loop, electric-describe-mode): Declare.
10683         * doc-view.el (doc-view-current-converter-processes): Move before use.
10685         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
10686         Move MODE-set-explicitly definition before use.
10688         * international/mule-diag.el (mule-diag):
10689         Don't use obsolete window-system-version.
10691         * mail/feedmail.el (smtpmail): No need to load when compiling.
10692         (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
10694         * mail/mail-utils.el (rfc822): No need to load when compiling.
10695         (rfc822-addresses): Autoload it.
10696         (mail-strip-quoted-names): Trivial simplification.
10698         * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
10699         (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
10701         * net/snmp-mode.el (tempo): Don't duplicate requires.
10703         * progmodes/prolog.el (info): No need to load when compiling.
10704         (comint): Require before shell requires it.
10705         (Info-goto-node): Autoload it.
10706         (Info-follow-nearest-node): Declare.
10707         (prolog-help-info, prolog-goto-predicate-info): No need to require info.
10709         * textmodes/artist.el (picture-mode-exit): Declare.
10711         * textmodes/reftex-parse.el (reftex-parse-from-file):
10712         Trivial rewrite so the compiler can parse it better.
10714 2013-05-20  Leo Liu  <sdl.web@gmail.com>
10716         * progmodes/octave.el (octave-help-mode-map)
10717         (octave-help-mode-finish-hook): New variables.
10718         (octave-help-mode, octave-help-mode-finish): New functions.
10719         (octave-help): Use octave-help-mode.
10721 2013-05-20  Glenn Morris  <rgm@gnu.org>
10723         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
10725 2013-05-19  Dmitry Gutov  <dgutov@yandex.ru>
10727         * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
10728         start at point, so that expansion starting right after opening
10729         slash in a regexp is recognized.
10730         (ruby-syntax-before-regexp-re): New defvar, extracted from
10731         ruby-syntax-propertize-function.  Since the value of this regexp
10732         is looked up at runtime now, we should be able to turn
10733         `ruby-syntax-methods-before-regexp' into a defcustom later.
10734         (ruby-syntax-propertize-function): Split regexp matching into two
10735         parts, for opening and closing slashes.  That allows us to skip
10736         over string interpolations and support multiline regexps.
10737         Don't call `ruby-syntax-propertize-expansions', instead use another rule
10738         for them, which calls `ruby-syntax-propertize-expansion'.
10739         (ruby-syntax-propertize-expansions): Move `remove-text-properties'
10740         call to `ruby-syntax-propertize-function'.
10741         (ruby-syntax-propertize-expansion): Extracted from
10742         `ruby-syntax-propertize-expansions'.  Handles one expansion.
10743         (ruby-syntax-propertize-percent-literal): Leave point right after
10744         the percent symbol, so that the expression expansion rule can
10745         propertize the contents.
10746         (ruby-syntax-propertize-heredoc): Leave point at bol following the
10747         heredoc openers.
10748         (ruby-syntax-propertize-expansions): Remove.
10750 2013-05-18  Juri Linkov  <juri@jurta.org>
10752         * man.el (Man-default-man-entry): Remove `-' from the end
10753         of the default value.  (Bug#14400)
10755 2013-05-18  Glenn Morris  <rgm@gnu.org>
10757         * comint.el (comint-password-prompt-regexp):
10758         Allow "password for XXX" where XXX contains colons (eg https://...).
10760 2013-05-18  Leo Liu  <sdl.web@gmail.com>
10762         * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
10763         instead.  Include "--no-gui" to prevent hangs for Octave > 3.7.
10764         (octave-source-directories): Don't check process.
10765         (octave-source-directories, octave-find-definition): Doc fix.
10767 2013-05-18  Glenn Morris  <rgm@gnu.org>
10769         * progmodes/vhdl-mode.el (vhdl-mode-map-init):
10770         Remove backspace/delete bindings.  (Bug#14392)
10772         * cus-dep.el (custom-make-dependencies): Sort the output.
10773         (custom-versions-load-alist): Convert comment to doc.
10775 2013-05-17  Leo Liu  <sdl.web@gmail.com>
10777         * newcomment.el (comment-search-backward): Stricter in finding
10778         comment start.  (Bug#14303)
10780         * progmodes/octave.el (octave-comment-start): Remove the SPC char.
10781         (octave-comment-start-skip): Properly anchored.
10783 2013-05-17  Leo Liu  <sdl.web@gmail.com>
10785         * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
10786         Clean up when turned off.  (Bug#14395)
10787         (smie--highlight-matching-block-overlay): No longer buffer-local.
10788         (smie-highlight-matching-block): Adjust.
10790 2013-05-17  Paul Eggert  <eggert@cs.ucla.edu>
10792         Doc string fix for "nanoseconds" (Bug#14406).
10793         * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
10794         Fix doc string typo that had "nanoseconds" instead of "microseconds".
10796 2013-05-17  Jay Belanger  <jay.p.belanger@gmail.com>
10798         * calc/calc-units.el (math-extract-units): Preserve powers
10799         of units.
10801 2013-05-17  Leo Liu  <sdl.web@gmail.com>
10803         * subr.el (delete-consecutive-dups): New function.
10804         * ido.el (ido-set-matches-1): Use it.
10805         * progmodes/octave.el (inferior-octave-completion-table): Use it.
10806         * ido.el (ido-remove-consecutive-dups): Remove.
10808 2013-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10810         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
10811         (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
10812         regexp-opt's `words'.
10814 2013-05-16  Leo Liu  <sdl.web@gmail.com>
10816         * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
10817         (smie--highlight-matching-block-overlay)
10818         (smie--highlight-matching-block-lastpos)
10819         (smie--highlight-matching-block-timer): New variables.
10820         (smie-highlight-matching-block): New function.
10821         (smie-highlight-matching-block-mode): New minor mode.  (Bug#14395)
10822         (smie-setup): Conditionally enable smie-blink-matching-open.
10824 2013-05-16  Wilson Snyder  <wsnyder@wsnyder.org>
10826         Sync with upstream verilog-mode r840.
10827         * progmodes/verilog-mode.el (verilog-mode-version)
10828         (verilog-mode-release-date): Update.
10829         (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
10830         (verilog-sig-tieoff): Fix string error on
10831         AUTORESET with colon define, bug594.  Reported by Andrew Hou.
10832         (verilog-read-decls): Fix parameters confusing
10833         AUTOINST interfaces, bug565.  Reported by Leith Johnson.
10835 2013-05-16  Eli Zaretskii  <eliz@gnu.org>
10837         * subr.el (reveal-filename): New function.
10839         * loadup.el: Compute Emacs executable versions on MS-Windows,
10840         where executables have the .exe extension.  Add a hard link
10841         emacs-XX.YY.ZZ.exe on MS-Windows.
10843         * Makefile.in (XARGS_LIMIT): New variable.
10844         (custom-deps, finder-data, autoloads)
10845         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
10846         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
10847         ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
10848         (compile-main): Limit xargs according to $(XARGS_LIMIT).
10850 2013-05-16  Leo Liu  <sdl.web@gmail.com>
10852         * progmodes/octave.el (octave-indent-defun): Mark obsolete.
10853         (octave-mode-menu, octave-mode-map): Remove its uses.
10855 2013-05-16  Reto Zimmermann  <reto@gnu.org>
10857         Sync with upstream vhdl mode v3.34.2.
10858         * progmodes/vhdl-mode.el: Use `push' throughout.
10859         (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
10860         (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
10861         Add IBM & Quartus compiler.  Enhance entry for ADVance MS compiler.
10862         (vhdl-actual-generic-name): New option to derive actual generic name.
10863         (vhdl-port-paste-signals): Replace formal by actual generics.
10864         (vhdl-beautify): New name for old group vhdl-align.  Update users.
10865         (vhdl-beautify-options): New option.
10866         (vhdl-last-input-event): New compat alias.  Use throughout.
10867         (vhdl-goto-line): Replace user level function `goto-line'.
10868         (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
10869         vhdl-fix-statement-buffer.
10870         (vhdl-create-mode-menu): Add some entries.
10871         (vhdl-align-region-groups): Respect vhdl-beautify-options.
10872         (vhdl-align-inline-comment-region-1): Handle "--" inside string.
10873         (vhdl-fixup-whitespace-region): Handle symbols at EOL.
10874         (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
10875         to force statements on one line.
10876         (vhdl-remove-trailing-spaces-region):
10877         New, split from vhdl-remove-trailing-spaces.
10878         (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
10879         Respect vhdl-beautify-options.
10880         (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
10881         (vhdl-update-sensitivity-list): Not add with index if exists without.
10882         Not include array index with signal.  Ignore keywords in comments.
10883         (vhdl-get-visible-signals): Regexp tweaks.
10884         (vhdl-template-component-inst): Handle empty library.
10885         (vhdl-template-type): Add template for 'enum' type.
10886         (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
10887         Use vhdl-replace-string.
10888         (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
10889         (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
10890         (vhdl-speedbar-initialize): Update for above name change.
10891         (vhdl-compose-wire-components): Fix in handling of constants.
10892         (vhdl-error-regexp-emacs-alist): New variable.
10893         (vhdl-error-regexp-add-emacs): New function;
10894         adds support for new compile.el (Emacs 22+)
10895         (vhdl-generate-makefile-1): Change target order for single lib. units.
10896         Allow use of absolute file names.
10898 2013-05-16  Leo Liu  <sdl.web@gmail.com>
10900         * simple.el (prog-indent-sexp): Indent enclosing defun.
10902 2013-05-15  Glenn Morris  <rgm@gnu.org>
10904         * cus-start.el (show-trailing-whitespace): Move to editing basics.
10905         * faces.el (trailing-whitespace): Don't use whitespace-faces group.
10906         * obsolete/old-whitespace.el (whitespace-faces): Remove group.
10907         (whitespace-highlight): Move to whitespace group.
10909         * comint.el (comint-source):
10910         * pcmpl-linux.el (pcmpl-linux):
10911         * shell.el (shell-faces):
10912         * eshell/esh-opt.el (eshell-opt):
10913         * international/ccl.el (ccl): Remove empty custom groups.
10915         * completion.el (dynamic-completion-mode):
10916         * jit-lock.el (jit-lock-debug-mode):
10917         * minibuffer.el (completion-in-region-mode):
10918         * type-break.el (type-break-mode-line-message-mode)
10919         (type-break-query-mode):
10920         * emulation/tpu-edt.el (tpu-edt-mode):
10921         * progmodes/subword.el (global-subword-mode, global-superword-mode):
10922         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
10923         * term/vt100.el (vt100-wide-mode): Specify explicit :group.
10925         * term/xterm.el (xterm): Change parent group to terminals.
10927         * master.el (master): Remove empty custom group.
10928         (master-mode): Remove unused :group argument.
10929         * textmodes/refill.el (refill): Remove empty custom group.
10930         (refill-mode): Remove unused :group argument.
10932         * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
10934         * cus-dep.el: Provide a feature.
10935         (custom-make-dependencies): Ignore dotfiles (dir-locals).
10936         Don't mistakenly ignore files whose basenames match a basename
10937         from preloaded-file-list (eg cedet/ede/simple.el).
10938         Add a fallback method for getting :group.
10940 2013-05-15  Juri Linkov  <juri@jurta.org>
10942         * isearch.el (isearch-char-by-name): Rename from
10943         `isearch-insert-char-by-name'.  Doc fix.
10944         (isearch-forward): Mention `isearch-char-by-name' in
10945         the docstring.  (Bug#13348)
10947         * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
10948         `exit-minibuffer' instead of
10949         `isearch-nonincremental-exit-minibuffer'.
10950         (isearch-edit-string): Remove mention of
10951         `isearch-nonincremental-exit-minibuffer' from docstring.
10952         (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
10953         (isearch-forward-exit-minibuffer)
10954         (isearch-reverse-exit-minibuffer): Add docstring.  (Bug#13348)
10956 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
10958         * loadup.el: Just use unversioned DOC.
10960         * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
10961         literals as extending to EOB.
10962         (nxml-last-fontify-end): Remove unused variable.
10963         (nxml-after-change1): Use with-silent-modifications.
10964         (nxml-extend-after-change-region): Simplify.
10965         (nxml-extend-after-change-region1): Remove function.
10966         (nxml-after-change1): Don't adjust for dependent regions.
10967         (nxml-fontify-matcher): Simplify.
10968         * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
10969         (xmltok-add-dependent): Remove function.
10970         (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
10971         (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
10972         (xmltok-scan-prolog-after-processing-instruction-open): Treat
10973         unclosed <[[, <?, comment, and other literals as extending to EOB.
10974         * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
10975         (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
10976         Remove functions.
10977         (rng-do-some-validation-1): Don't mark dependent regions.
10978         * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
10979         (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
10980         (nxml-clear-dependent-regions): Remove functions.
10981         (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
10982         (nxml-ensure-scan-up-to-date):
10983         Don't clear&mark dependent regions.
10985 2013-05-15  Leo Liu  <sdl.web@gmail.com>
10987         * progmodes/octave.el (octave-goto-function-definition):
10988         Improve and fix callers.
10990 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
10992         * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
10993         the setter (bug#14387).
10995         * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
10996         surrounding group (bug#14402).
10998 2013-05-14  Juri Linkov  <juri@jurta.org>
11000         * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
11001         (Bug#14390)
11003 2013-05-14  Glenn Morris  <rgm@gnu.org>
11005         * progmodes/f90.el (f90-imenu-generic-expression):
11006         Fix typo in 2013-05-08 change.  (Bug#14402)
11008 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
11010         * progmodes/gdb-mi.el (gdb-running, gdb-starting):
11011         Remove signals for which replies are never received.
11013 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
11015         * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
11016         (gdb-handler-alist, gdb-handler-number): Remove variables.
11017         (gdb-handler-list): New variable.
11018         (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
11019         (gdb-pending-handler-p, gdb-handle-reply)
11020         (gdb-remove-all-pending-triggers): New functions.
11021         (gdb-discard-unordered-replies): New defcustom.
11022         (gdb-handler): New defstruct.
11023         (gdb-wait-for-pending): Fix invalid backquote.  Use gdb-handler-list.
11024         instead of gdb-pending-triggers.  Update docstring.
11025         (gdb-init-1): Remove dead variables.  Initialize gdb-handler-list.
11026         (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
11027         (gdb-var-update-handler, def-gdb-auto-update-trigger)
11028         (def-gdb-auto-update-handler, gdb-get-changed-registers)
11029         (gdb-changed-registers-handler, gdb-get-main-selected-frame)
11030         (gdb-frame-handler): Pending triggers are now automatically managed.
11031         (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
11032         Remove argument.
11033         (gdb-input): Automatically handles pending triggers.  Update docstring.
11034         (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
11035         (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
11036         Update comments.
11037         (gdb-done-or-error): Now use gdb-handle-reply.
11039 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
11041         * progmodes/gdb-mi.el (gdb-input): Include token numbers in
11042         gdb-debug-log.
11044 2013-05-14  Glenn Morris  <rgm@gnu.org>
11046         * subr.el (user-emacs-directory-warning): New option.
11047         (locate-user-emacs-file): Handle non-accessible .emacs.d.  (Bug#13930)
11049 2013-05-14  Leo Liu  <sdl.web@gmail.com>
11051         * progmodes/octave.el (octave-font-lock-keywords): Fix error
11052         during redisplay.
11053         (octave-goto-function-definition, octave-find-definition): Minor tweaks.
11054         (octave-font-lock-texinfo-comment): Fix invalid search bound
11055         error: wrong side of point.
11057 2013-05-14  Glenn Morris  <rgm@gnu.org>
11059         * progmodes/flymake.el (flymake-xml-program): New option.
11060         (flymake-xml-init): Use it.
11062         * term/xterm.el: Provide a feature.
11064         * term/sup-mouse.el: Move to obsolete/.  Provide a feature.
11066 2013-05-13  Glenn Morris  <rgm@gnu.org>
11068         * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
11069         Add compat aliases as a hack workaround.  (Bug#14384)
11071 2013-05-13  Leo Liu  <sdl.web@gmail.com>
11073         * progmodes/octave.el (octave-indent-comment): Fix indentation for
11074         ###, and %!.
11075         (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
11076         C-M-q.
11077         (octave-comment-start-skip): Include %!.
11078         (octave-mode): Set comment-start-skip to octave-comment-start-skip.
11080 2013-05-12  Leo Liu  <sdl.web@gmail.com>
11082         * progmodes/octave.el (inferior-octave-startup): Store the value
11083         of __octave_srcdir__ for octave-source-directories.
11084         (inferior-octave-check-process): New function refactored out of
11085         inferior-octave-send-list-and-digest.
11086         (octave-source-directories)
11087         (octave-find-definition-filename-function): New variables.
11088         (octave-source-directories)
11089         (octave-find-definition-default-filename): New functions.
11090         (octave-find-definition): Improve to find functions implemented in C++.
11092 2013-05-12  Glenn Morris  <rgm@gnu.org>
11094         * calendar/diary-lib.el (diary-outlook-format-1):
11095         Don't include dayname in the output.  (Bug#14349)
11097 2013-05-11  Glenn Morris  <rgm@gnu.org>
11099         * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
11101         * cus-dep.el (custom-make-dependencies): Only use safe local variables.
11102         Treat cc-provide like provide.
11104 2013-05-11  Kevin Ryde  <user42@zip.com.au>
11106         * cus-dep.el (custom-make-dependencies):
11107         Use generated-autoload-load-name for the sake of files such
11108         such cedet/semantic/bovine/c.el, where the base file name
11109         is not in load-path.  (Bug#5277)
11111 2013-05-11  Glenn Morris  <rgm@gnu.org>
11113         * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
11114         Provide features.
11116 2013-05-11  Leo Liu  <sdl.web@gmail.com>
11118         * progmodes/octave.el (octave-indent-comment): Improve.
11119         (octave-eldoc-message-style, octave-eldoc-cache): New variables.
11120         (octave-eldoc-function-signatures, octave-eldoc-function):
11121         New functions.
11122         (octave-mode, inferior-octave-mode): Add eldoc support.
11124 2013-05-11  Richard Stallman  <rms@gnu.org>
11126         * epa.el (epa-decrypt-file): Take output file name as argument
11127         and read it using `interactive'.
11129 2013-05-11  Leo Liu  <sdl.web@gmail.com>
11131         * progmodes/octave.el (octave-beginning-of-line)
11132         (octave-end-of-line): Check before using up-list because it jumps
11133         out of more syntactic contructs since moving to smie.
11134         (octave-indent-comment): New function.
11135         (octave-mode): Use it in smie-indent-functions.  (Bug#14350)
11136         (octave-begin-keywords, octave-end-keywords)
11137         (octave-reserved-words, octave-smie-bnf-table)
11138         (octave-smie-rules): Add new keywords from Octave 3.6.4.
11140 2013-05-11  Glenn Morris  <rgm@gnu.org>
11142         * faces.el (internal-face-x-get-resource):
11143         * frame.el (ns-display-monitor-attributes-list):
11144         * calc/calc-aent.el (math-to-radians-2):
11145         * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
11146         Fix declarations.
11148         * calc/calc-menu.el: Make it loadable in isolation.
11150         * net/eudcb-bbdb.el: Make it loadable without bbdb.
11151         (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
11152         (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
11153         (eudc-bbdb-query-internal): Require 'bbdb.
11155         * lpr.el (lpr-headers-switches):
11156         * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
11158         * progmodes/sql.el (sql-login-params): Fix and improve :type.
11160         * emulation/edt-mapper.el: In batch mode, error rather than hang.
11162         * term.el (term-set-escape-char): Make it idempotent.
11164 2013-05-10  Leo Liu  <sdl.web@gmail.com>
11166         * progmodes/octave.el (inferior-octave-completion-table):
11167         No longer a function and all uses changed.  Use cache to speed up
11168         completion due to bug#11906.
11169         (octave-beginning-of-defun): Re-write to be more general.
11171 2013-05-10  Glenn Morris  <rgm@gnu.org>
11173         * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
11175 2013-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
11177         * comint.el (comint-redirect-send-command-to-process): Use :around
11178         rather than :override for comint-redirect-filter.
11179         (comint-redirect-filter): Add the corresponding `orig-filter' argument.
11180         Call it instead of comint-redirect-original-filter-function (which
11181         is gone).  Reported by Juanma Barranquero <lekktu@gmail.com>.
11183 2013-05-09  Jan Djärv  <jan.h.d@swipnet.se>
11185         * frame.el (display-monitor-attributes-list): Add NS case.
11186         (ns-display-monitor-attributes-list): Declare.
11188 2013-05-09  Ulrich Mueller  <ulm@gentoo.org>
11190         * descr-text.el (describe-char): Fix %d/%x typo.  (Bug#14360)
11192 2013-05-09  Glenn Morris  <rgm@gnu.org>
11194         * international/fontset.el (vertical-centering-font-regexp):
11195         Set standard-value.
11197         * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
11199         * bookmark.el (bookmark-search-delay):
11200         * cus-start.el (vertical-centering-font-regexp):
11201         * ps-mule.el (ps-mule-font-info-database-default):
11202         * ps-print.el (ps-default-fg, ps-default-bg):
11203         * type-break.el (type-break-good-break-interval):
11204         * whitespace.el (whitespace-indentation-regexp)
11205         (whitespace-space-after-tab-regexp):
11206         * emacs-lisp/testcover.el (testcover-1value-functions)
11207         (testcover-noreturn-functions, testcover-progn-functions)
11208         (testcover-prog1-functions):
11209         * emulation/viper-init.el (viper-emacs-state-cursor-color):
11210         * eshell/em-glob.el (eshell-glob-translate-alist):
11211         * play/tetris.el (tetris-tty-colors):
11212         * progmodes/cpp.el (cpp-face-default-list):
11213         * progmodes/flymake.el (flymake-allowed-file-name-masks):
11214         * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
11215         (idlwave-help-browser-generic-args):
11216         * progmodes/make-mode.el (makefile-special-targets-list):
11217         * progmodes/python.el (python-shell-virtualenv-path):
11218         * progmodes/verilog-mode.el (verilog-active-low-regexp)
11219         (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
11220         (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
11221         (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
11222         * textmodes/reftex-vars.el (reftex-format-label-function):
11223         * textmodes/remember.el (remember-diary-file): Fix custom types.
11225         * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
11226         Add :version.
11228 2013-05-09  Leo Liu  <sdl.web@gmail.com>
11230         * progmodes/octave.el (inferior-octave-completion-at-point):
11231         Restore file completion.  (Bug#14300)
11232         (inferior-octave-startup): Fix incorrect highlighting for the
11233         first prompt.
11235 2013-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
11237         * progmodes/ruby-mode.el: First cut at SMIE support.
11238         (ruby-use-smie): New var.
11239         (ruby-smie-grammar): New constant.
11240         (ruby-smie--bosp, ruby-smie--implicit-semi-p)
11241         (ruby-smie--forward-token, ruby-smie--backward-token)
11242         (ruby-smie-rules): New functions.
11243         (ruby-mode-variables): Setup SMIE if applicable.
11245 2013-05-08  Eli Zaretskii  <eliz@gnu.org>
11247         * simple.el (line-move-visual): Signal beginning/end of buffer
11248         only if vertical-motion moved less than it was requested.  Avoids
11249         silly incorrect error messages when there are display strings with
11250         multiple newlines at EOL.
11252 2013-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
11254         * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
11255         * progmodes/prolog.el (prolog-underscore-wordchar-flag)
11256         (prolog-char-quote-workaround):
11257         * progmodes/cperl-mode.el (cperl-under-as-char):
11258         * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
11259         Mark as obsolete.
11260         (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
11261         their declaration.
11262         (vhdl-mode-syntax-table-init): Remove.
11264         * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
11265         last change.
11267         * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
11268         syntax for "_".
11269         (ld-script-font-lock-keywords):
11270         Change regexps to use things like \_< and \_>.
11272         * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
11273         Change all regexps to use things like \_< and \_>.
11275         * progmodes/autoconf.el (autoconf-definition-regexp)
11276         (autoconf-font-lock-keywords, autoconf-current-defun-function):
11277         Handle a _ with symbol syntax.
11278         (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
11280         * progmodes/ada-mode.el (ada-mode-abbrev-table):
11281         Consolidate declaration.
11282         (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
11283         the declaration.
11284         (ada-create-syntax-table): Remove.
11285         (ada-capitalize-word): Don't mess with the syntax of "_" since it
11286         already has the right syntax nowadays.
11287         (ada-goto-next-word): Don't change the syntax of "_".
11289         * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
11290         with-wrapper-hook.
11292 2013-05-08  Sam Steingold  <sds@gnu.org>
11294         * thingatpt.el (thing-at-point): Accept optional second argument
11295         NO-PROPERTIES to strip the text properties from the return value.
11296         * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
11297         to `thing-at-point' instead of stripping the properties ourselves.
11298         Also, when `thing-at-point' fails to find a url, prepend "http://"
11299         to the filename at point on the assumption that the user is
11300         pointing at something like gnu.org/gnu.
11302 2013-05-08  Juanma Barranquero  <lekktu@gmail.com>
11304         * emacs-lisp/bytecomp.el (byte-compile-insert-header):
11305         * faces.el (crm-separator):
11306         Silence byte-compiler.
11308         * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
11309         (tool-bar-map): Remove unneeded defvars.
11311 2013-05-08  Leo Liu  <sdl.web@gmail.com>
11313         Re-work a fix for bug#10994 based on Le Wang's patch.
11314         * ido.el (ido-remove-consecutive-dups): New helper.
11315         (ido-completing-read): Use it.
11316         (ido-chop): Revert fix for bug#10994.
11318 2013-05-08  Adam Spiers  <emacs@adamspiers.org>
11320         * cus-edit.el (custom-save-variables):
11321         Pretty-print long values.  (Bug#14187)
11323 2013-05-08  Glenn Morris  <rgm@gnu.org>
11325         * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
11326         (m4-mode-syntax-table): Init in the defvar.
11327         (m4-mode-abbrev-table): Let define-derived-mode define it.
11329 2013-05-08  Tom Tromey  <tromey@redhat.com>
11331         * progmodes/m4-mode.el (m4-mode-syntax-table):
11332         Do not treat "_" as word constituent.  (Bug#14167)
11334 2013-05-07  Glenn Morris  <rgm@gnu.org>
11336         * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
11337         Remove explicit eshell-isearch-cancel-map.
11339         * progmodes/f90.el (f90-smart-end-names): New option.
11340         (f90-smart-end): Doc fix.
11341         (f90-end-block-optional-name): New constant.
11342         (f90-block-match): Respect f90-smart-end-names.
11344 2013-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
11346         * progmodes/octave.el (octave-smie-forward-token): Be more careful
11347         about implicit semi-colons (bug#14218).
11349 2013-05-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
11351         * frame.el (display-monitor-attributes-list)
11352         (frame-monitor-attributes): New functions.
11354 2013-05-06  Leo Liu  <sdl.web@gmail.com>
11356         * progmodes/octave.el (octave-syntax-propertize-function): Change
11357         \'s syntax to escape when inside double-quoted strings.  (Bug#14332)
11358         (octave-font-lock-keywords): Use octave-operator-regexp.
11359         (octave-completion-at-point): Rename from
11360         octave-completion-at-point-function.
11361         (inferior-octave-directory-tracker): Robustify.
11362         (octave-text-functions): Remove and fix its uses.  No such things
11363         any more.
11365 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11367         * emacs-lisp/trace.el (trace--display-buffer): New function.
11368         (trace-make-advice): Use it.
11370 2013-05-06  Juri Linkov  <juri@jurta.org>
11372         * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix.  (Bug#14344)
11373         (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
11374         Doc fix.
11375         (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
11376         in the help string.  (Bug#12985)
11378 2013-05-06  Kelly Dean  <kellydeanch@yahoo.com>  (tiny change)
11380         * simple.el (shell-command-on-region): Doc fix.  (Bug#14279)
11382 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11384         * progmodes/perl-mode.el: Add support for here documents.
11385         (perl-syntax-propertize-function): Match here-doc markers.
11386         (perl-syntax-propertize-special-constructs): Find their end.
11387         (perl-imenu-generic-expression): Use [:alnum:].
11389         * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
11390         (advice--add-function): Refresh the advice if already present
11391         (bug#14317).
11393 2013-05-06  Ivan Andrus  <darthandrus@gmail.com>
11395         * find-file.el (cc-other-file-alist): Add ".m" for ObjC.  (Bug#14339)
11397 2013-05-06  Glenn Morris  <rgm@gnu.org>
11399         * w32-fns.el (w32-charset-info-alist): Declare.
11401         * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
11402         of its defcustom properties.
11403         (eshell-cmpl-initialize): No need to load pcomplete.
11405         * generic-x.el: No need to require comint when compiling.
11407         * net/eudc-export.el: Make it loadable without bbdb.
11408         (top-level): Use require rather than load-library.
11409         (eudc-create-bbdb-record, eudc-bbdbify-phone)
11410         (eudc-batch-export-records-to-bbdb)
11411         (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
11412         Require bbdb.
11414 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
11416         * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
11417         (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
11418         some tweaks, instead.
11420 2013-05-05  Leo Liu  <sdl.web@gmail.com>
11422         * progmodes/octave.el (octave-font-lock-keywords)
11423         (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
11424         (inferior-octave-send-list-and-digest): Improve error message.
11425         (octave-mode, inferior-octave-mode): Use setq-local.
11426         (octave-help): Set info-lookup-mode.
11428 2013-05-05  Richard Stallman  <rms@gnu.org>
11430         * vc/compare-w.el (compare-windows-whitespace):
11431         Treat no-break space as whitespace.
11433         * mail/rmailsum.el (rmail-summary-rmail-update):
11434         Detect empty summary and don't change selected message.
11435         (rmail-summary-goto-msg): Likewise.
11437         * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
11438         Doc fixes, rename args.
11440 2013-05-05  Alan Mackenzie  <acm@muc.de>
11442         * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
11444 2013-05-05  Juri Linkov  <juri@jurta.org>
11446         * info.el (Info-read-subfile): Use (point-min) instead of (point)
11447         to not add the length of the summary segment to the return value.
11448         (Bug#14125)
11450 2013-05-05  Leo Liu  <sdl.web@gmail.com>
11452         * progmodes/octave.el (inferior-octave-strip-ctrl-g)
11453         (inferior-octave-output-filter): Remove.
11454         (octave-send-region, inferior-octave-startup): Fix callers.
11455         (inferior-octave-mode-map): Don't use comint-dynamic-complete.
11456         (octave-binary-file-extensions): New user variable.
11457         (octave-find-definition): Confirm if opening binary files.
11458         (octave-help-file): Use octave-find-definition to get the binary
11459         confirmation.
11460         (octave-help): Adjust for octave-help-file change.
11462 2013-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
11464         * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
11465         Merge the two entries that handle function definitions.
11466         (pascal--syntax-propertize): New const.
11467         (pascal-mode): Use it.  Use setq-local.
11469 2013-05-04  Glenn Morris  <rgm@gnu.org>
11471         * calendar/diary-lib.el (diary-from-outlook-function): New variable.
11472         (diary-from-outlook): Respect diary-from-outlook-function.
11474 2013-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11476         * simple.el (read-expression-map): Use completion-at-point (bug#14255).
11477         Move the declaration from C.
11478         (read-minibuffer, eval-minibuffer): Move from C.
11479         (completion-setup-function): Avoid minibuffer-completion-contents.
11481 2013-05-03  Leo Liu  <sdl.web@gmail.com>
11483         * progmodes/octave.el (octave-font-lock-keywords): Do not
11484         dehighlight 'end' in comments or strings.
11485         (octave-completing-read, octave-goto-function-definition):
11486         New helpers.
11487         (octave-help-buffer): New user variable.
11488         (octave-help-file, octave-help-function): New button types.
11489         (octave-help): New command and bind it to C-h ;.
11490         (octave-find-definition): New command and bind it to M-.
11491         (user-error): Alias to error if not defined.
11493 2013-05-02  Leo Liu  <sdl.web@gmail.com>
11495         * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
11496         for \.  (bug#14332)
11497         (octave-font-lock-keywords): Include [ and {.
11499 2013-05-02  Leo Liu  <sdl.web@gmail.com>
11501         * progmodes/octave.el (inferior-octave-startup-file): Change default.
11502         (inferior-octave): Remove calling comint-mode and return the buffer.
11503         (inferior-octave-startup): Cosmetic changes.
11505 2013-05-02  Leo Liu  <sdl.web@gmail.com>
11507         * progmodes/octave.el (octave-syntax-propertize-function):
11508         Include the case when ' is at line beginning.  (Bug#14336)
11510 2013-05-02  Glenn Morris  <rgm@gnu.org>
11512         * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
11513         * desktop.el (vc-dir-mode): Just autoload it here.
11515 2013-05-02  Alan Mackenzie  <acm@muc.de>
11517         Eliminate variable c-standard-font-lock-fontify-region-function.
11518         * progmodes/cc-mode.el
11519         (c-standard-font-lock-fontify-region-function): Remove.
11520         (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
11522 2013-05-01  Leo Liu  <sdl.web@gmail.com>
11524         * progmodes/octave.el: Compatible with older emacs-24 releases.
11525         (inferior-octave-has-built-in-variables): Remove.  Built-in
11526         variables were removed from Octave in 2007.
11527         (inferior-octave-startup): Fix uses.
11528         (comint-line-beginning-position): Remove compatibility code for
11529         emacs 21.
11531 2013-05-01  Juri Linkov  <juri@jurta.org>
11533         * isearch.el (isearch-forward, isearch-mode): Doc fix.  (Bug#13923)
11535 2013-05-01  Juri Linkov  <juri@jurta.org>
11537         * comint.el (comint-previous-matching-input): Don't print message
11538         "History item: %d" when `isearch-mode' is active.
11539         (comint-history-isearch-message): Print message "History item: %d"
11540         when `comint-input-ring-index' is not empty and this function is
11541         called from `isearch-update' with a nil `ellipsis'.  (Bug#13223)
11543 2013-05-01  Leo Liu  <sdl.web@gmail.com>
11545         * progmodes/octave.el (octave-abbrev-table): Remove abbrev
11546         definitions.  Use completion-at-point to insert keywords.
11547         (octave-abbrev-start): Remove.
11548         (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
11550 2013-04-30  Leo Liu  <sdl.web@gmail.com>
11552         * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
11553         change.
11555 2013-04-30  Alan Mackenzie  <acm@muc.de>
11557         Handle arbitrarily long C++ member initialisation lists.
11558         * progmodes/cc-engine.el (c-back-over-member-initializers):
11559         new function.
11560         (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
11561         (most) member init lists.
11563 2013-04-30  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
11565         * progmodes/octave.el (inferior-octave-prompt-read-only): New user
11566         variable.
11568 2013-04-30  Leo Liu  <sdl.web@gmail.com>
11570         * progmodes/octave.el (octave-variables): Remove.  No builtin
11571         variables any more.  All converted to functions.
11572         (octave-font-lock-keywords, octave-completion-at-point-function):
11573         Fix uses.
11574         (octave-font-lock-texinfo-comment): New user variable.
11575         (octave-texinfo-font-lock-keywords): New variable for texinfo
11576         comment block.
11577         (octave-function-comment-block): New face.
11578         (octave-font-lock-texinfo-comment): New function.
11579         (octave-mode): Font lock texinfo comment block.
11581 2013-04-29  Leo Liu  <sdl.web@gmail.com>
11583         * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
11584         indexing expression.
11585         (octave-continuation-string): Do not use \.
11586         (inferior-octave-complete-impossible): Remove.
11587         (inferior-octave-completion-table)
11588         (inferior-octave-completion-at-point): Remove its uses.
11589         (inferior-octave-startup): completion_matches was introduced to
11590         Octave in 1996 so safe to assume it.
11591         (octave-function-file-comment): Improve to follow how Octave does it.
11592         (octave-update-function-file-comment): Tweak.
11594 2013-04-29  Leo Liu  <sdl.web@gmail.com>
11596         * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
11597         (inferior-octave-startup): Remove inferior-octave-startup-hook.
11598         (octave-function-file-comment): Fix typo.
11599         (octave-sync-function-file-names): Use read-char-choice.
11601 2013-04-28  Jay Belanger  <jay.p.belanger@gmail.com>
11603         * calc/calc.el (math-normalize): Don't set `math-normalize-error'
11604         to t for the less important warnings.
11606 2013-04-27  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
11608         * isearch.el (isearch-fail-pos): Check for empty `cmds'.  (Bug#14268)
11610 2013-04-27  Glenn Morris  <rgm@gnu.org>
11612         * vc/log-view.el (log-view-current-entry):
11613         Treat "---" separator lines as part of the following rev.  (Bug#14169)
11615 2013-04-27  Juri Linkov  <juri@jurta.org>
11617         * subr.el (read-number): Doc fix about using it by interactive
11618         code letter `n'.  (Bug#14254)
11620 2013-04-27  Juri Linkov  <juri@jurta.org>
11622         * desktop.el (desktop-auto-save-timeout): New option.
11623         (desktop-file-checksum): New variable.
11624         (desktop-save): Add optional arg `auto-save' and don't auto-save
11625         if nothing changed.
11626         (desktop-auto-save-timer): New variable.
11627         (desktop-auto-save, desktop-auto-save-set-timer): New functions.
11628         (after-init-hook): Call `desktop-auto-save-set-timer'.
11629         Suggested by Reuben Thomas <rrt@sc3d.org> in
11630         <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
11632 2013-04-27  Leo Liu  <sdl.web@gmail.com>
11634         * progmodes/octave.el (octave-function-file-p)
11635         (octave-skip-comment-forward, octave-function-file-comment)
11636         (octave-update-function-file-comment): New functions.
11637         (octave-mode-map): Bind C-c ; to
11638         octave-update-function-file-comment.
11639         (octave-mode-menu): Add octave-update-function-file-comment.
11640         (octave-mode, inferior-octave-mode): Fix doc-string.
11641         (octave-insert-defun): Conform to Octave's coding convention.
11642         (Bug#14285)
11644         * files.el (basic-save-buffer): Don't let errors in
11645         before-save-hook prevent saving buffer.
11647 2013-04-20  Roland Winkler  <winkler@gnu.org>
11649         * faces.el (read-face-name): Use completing-read if arg multiple
11650         is nil.
11652 2013-04-27  Ingo Lohmar  <i.lohmar@gmail.com>  (tiny change)
11654         * ls-lisp.el (ls-lisp-insert-directory): If no files are
11655         displayed, move point to after the totals line.
11656         See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
11657         for the details.
11659 2013-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
11661         * emacs-lisp/package.el (package-autoload-ensure-default-file):
11662         Add current dir to the load-path.
11663         (package-generate-autoloads): Don't rely on
11664         autoload-ensure-default-file.
11666 2013-04-26  Reuben Thomas  <rrt@sc3d.org>
11668         * textmodes/remember.el (remember-store-in-files): Document that
11669         the file name format is passed to `format-time-string'.
11671 2013-04-26  Leo Liu  <sdl.web@gmail.com>
11673         * progmodes/octave.el (octave-sync-function-file-names): New function.
11674         (octave-mode): Use it in before-save-hook.
11676 2013-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11678         * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
11679         (bug#14274).
11681         * progmodes/octave.el (octave-smie-forward-token): Properly skip
11682         \n and comment, even if it's not an implicit ; (bug#14218).
11684 2013-04-26  Glenn Morris  <rgm@gnu.org>
11686         * subr.el (read-number): Once more use `read' rather than
11687         `string-to-number', to trap non-numeric input.  (Bug#14254)
11689 2013-04-26  Erik Charlebois  <erikcharlebois@gmail.com>
11691         * emacs-lisp/syntax.el (syntax-propertize-multiline):
11692         Use `syntax-multiline' text property consistently instead of
11693         `font-lock-multiline'.  (Bug#14237)
11695 2013-04-26  Glenn Morris  <rgm@gnu.org>
11697         * emacs-lisp/shadow.el (list-load-path-shadows):
11698         No longer necessary to check for duplicate simple.el, since
11699         2012-07-07 change to init_lread to not include installation lisp
11700         directories in load-path when running uninstalled.  (Bug#14270)
11702 2013-04-26  Leo Liu  <sdl.web@gmail.com>
11704         * progmodes/octave.el (octave-submit-bug-report): Obsolete.
11705         (octave-mode, inferior-octave-mode): Use setq-local.
11706         (octave-not-in-string-or-comment-p): Rename to
11707         octave-in-string-or-comment-p.
11708         (octave-in-comment-p, octave-in-string-p)
11709         (octave-in-string-or-comment-p): Replace defsubst with defun.
11711 2013-04-25  Paul Eggert  <eggert@cs.ucla.edu>
11713         * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
11715 2013-04-25  Bastien Guerry  <bzg@gnu.org>
11717         * textmodes/remember.el (remember-data-directory)
11718         (remember-directory-file-name-format): Fix custom types.
11720 2013-04-25  Leo Liu  <sdl.web@gmail.com>
11722         * progmodes/octave.el (octave-completion-at-point-function):
11723         Make use of inferior octave process.
11724         (octave-initialize-completions): Remove.
11725         (inferior-octave-completion-table): New function.
11726         (inferior-octave-completion-at-point): Use it.
11727         (octave-completion-alist): Remove.
11729 2013-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11731         * progmodes/opascal.el: Use font-lock and syntax-propertize.
11732         (opascal-mode-syntax-table): New var.
11733         (opascal-literal-kind, opascal-is-literal-end)
11734         (opascal-literal-token-at): Rewrite.
11735         (opascal--literal-start-re, opascal-font-lock-keywords)
11736         (opascal--syntax-propertize): New constants.
11737         (opascal-font-lock-defaults): Adjust.
11738         (opascal-mode): Use them.  Set comment-<foo> variables as well.
11739         (delphi-comment-face, opascal-comment-face, delphi-string-face)
11740         (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
11741         (delphi-other-face, opascal-other-face): Remove face variables.
11742         (opascal-save-state): Remove macro.
11743         (opascal-fontifying-progress-step): Remove constant.
11744         (opascal--ignore-changes): Remove var.
11745         (opascal-set-token-property, opascal-parse-next-literal)
11746         (opascal-is-stable-literal, opascal-complete-literal)
11747         (opascal-is-literal-start, opascal-face-of)
11748         (opascal-parse-region, opascal-parse-region-until-stable)
11749         (opascal-fontify-region, opascal-after-change)
11750         (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
11751         (opascal-debug-parse-region, opascal-debug-parse-window)
11752         (opascal-debug-parse-buffer, opascal-debug-fontify-window)
11753         (opascal-debug-fontify-buffer): Remove.
11754         (opascal-debug-mode-map): Adjust accordingly.
11756 2013-04-25  Leo Liu  <sdl.web@gmail.com>
11758         Merge octave-mod.el and octave-inf.el into octave.el with some
11759         cleanups.
11760         * progmodes/octave.el: New file renamed from octave-mod.el.
11761         * progmodes/octave-inf.el: Merged into octave.el.
11762         * progmodes/octave-mod.el: Renamed to octave.el.
11764 2013-04-25  Tassilo Horn  <tsdh@gnu.org>
11766         * textmodes/reftex-vars.el
11767         (reftex-label-ignored-macros-and-environments): New defcustom.
11769         * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
11771 2013-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11773         * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
11774         (smie-indent-keyword): Improve the check to ensure that the next
11775         comment is really on the same line.
11776         (smie-indent-comment): Don't align with a subsequent closer (or eob).
11778         * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
11779         semi-colons if the line is not otherwise empty (bug#14218).
11781 2013-04-25  Glenn Morris  <rgm@gnu.org>
11783         * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
11785 2013-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
11787         * progmodes/opascal.el (opascal-set-token-property): Rename from
11788         opascal-set-text-properties and only set `token' (bug#14134).
11789         Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
11790         (opascal-literal-text-properties): Remove.
11791         (opascal-parse-next-literal, opascal-debug-unparse-buffer):
11792         Adjust callers.
11794 2013-04-24  Reuben Thomas  <rrt@sc3d.org>
11796         * textmodes/remember.el (remember-handler-functions): Add an
11797         option for a new handler `remember-store-in-files'.
11798         (remember-data-directory, remember-directory-file-name-format):
11799         New options.
11800         (remember-store-in-files): New function to store remember notes
11801         as separate files within a directory.
11803 2013-04-24  Magnus Henoch  <magnus.henoch@gmail.com>
11805         * progmodes/compile.el (compilation-next-error-function):
11806         Pass "formats" to compilation-find-file (bug#11777).
11808 2013-04-24  Glenn Morris  <rgm@gnu.org>
11810         * vc/vc-bzr.el (vc-bzr-print-log):
11811         * vc/vc-hg.el (vc-hg-print-log):
11812         * vc/vc-svn.el (vc-svn-print-log):
11813         Fix START-REVISION with LIMIT != 1.  (Bug#14168)
11815         * vc/vc-bzr.el (vc-bzr-print-log):
11816         * vc/vc-cvs.el (vc-cvs-print-log):
11817         * vc/vc-git.el (vc-git-print-log):
11818         * vc/vc-hg.el (vc-hg-print-log):
11819         * vc/vc-mtn.el (vc-mtn-print-log):
11820         * vc/vc-rcs.el (vc-rcs-print-log):
11821         * vc/vc-sccs.el (vc-sccs-print-log):
11822         * vc/vc-svn.el (vc-svn-print-log):
11823         * vc/vc.el (vc-print-log-internal): Doc fixes.
11825 2013-04-23  Glenn Morris  <rgm@gnu.org>
11827         * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
11828         Remove venerable code attempting to avoid substitute-command-keys.
11830 2013-04-23  Tassilo Horn  <tsdh@gnu.org>
11832         * textmodes/reftex-vars.el (reftex-label-regexps):
11833         Call `reftex-compile-variables' after changes to this variable.
11835 2013-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
11837         * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
11838         Use lexical-binding.
11839         (jit-lock-force-redisplay): Use markers, check buffer's continued
11840         existence and beware narrowed buffers.
11841         (jit-lock-fontify-now): Adjust call accordingly.
11843 2013-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
11845         * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
11846         to avoid misleading the user.
11848 2013-04-22  Leo Liu  <sdl.web@gmail.com>
11850         * info-look.el: Prefer latex2e.info.  (Bug#14240)
11852 2013-04-22  Michael Albinus  <michael.albinus@gmx.de>
11854         Fix pack/unpack coding.  Reported by David Smith <davidsmith@acm.org>.
11856         * net/tramp-compat.el (tramp-compat-call-process): Move function ...
11857         * net/tramp.el (tramp-call-process): ... here.
11858         (tramp-set-completion-function, tramp-parse-putty):
11859         * net/tramp-adb.el (tramp-adb-execute-adb-command):
11860         * net/tramp-gvfs.el (tramp-gvfs-send-command):
11861         * net/tramp-sh.el (tramp-sh-handle-set-file-times)
11862         (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
11863         (tramp-call-local-coding-command): Use `tramp-call-process'
11864         instead of `tramp-compat-call-process'.
11866         * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
11867         (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
11868         (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region):
11869         (tramp-find-inline-compress): Improve traces.
11870         (tramp-maybe-send-script): Check for Perl binary.
11871         (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
11873 2013-04-22  Daiki Ueno  <ueno@gnu.org>
11875         * epg.el (epg-context-pinentry-mode): New function.
11876         (epg-context-set-pinentry-mode): New function.
11877         (epg--start): Pass --pinentry-mode option to gpg command.
11879 2013-04-21  Xue Fuqiao  <xfq.free@gmail.com>
11881         * comint.el (comint-dynamic-complete-functions, comint-mode-map):
11882         `comint-dynamic-complete' is obsolete since 24.1, replaced by
11883         `completion-at-point'.  (Bug#13774)
11885         * startup.el (normal-no-mouse-startup-screen): Bug fix, the
11886         default key binding for `describe-distribution' has been moved to
11887         `C-h C-o'.  (Bug#13970)
11889 2013-04-21  Glenn Morris  <rgm@gnu.org>
11891         * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
11892         Add doc strings.
11893         (vc-print-log): Clarify interactive prompt.
11895 2013-04-20  Glenn Morris  <rgm@gnu.org>
11897         * emacs-lisp/bytecomp.el (byte-compile-insert-header):
11898         No longer include timestamp etc information.
11900 2013-04-20  Roland Winkler  <winkler@gnu.org>
11902         * faces.el (read-face-name): Bug fix, return just one face if arg
11903         multiple is nil.  (Bug#14209)
11905 2013-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11907         * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
11908         (remove-function): Autoload.
11910         * comint.el (comint-redirect-original-filter-function): Remove.
11911         (comint-redirect-cleanup, comint-redirect-send-command-to-process):
11912         * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
11913         (vc-cvs-annotate-command):
11914         * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
11915         * progmodes/prolog.el (prolog-consult-compile):
11916         * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
11917         Use add/remove-function instead.
11918         * progmodes/gud.el (gud-tooltip-original-filter): Remove.
11919         (gud-tooltip-process-output, gud-tooltip-tips):
11920         Use add/remove-function instead.
11921         * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
11922         (scheme-interaction-mode, exit-scheme-interaction-mode):
11923         Use add/remove-function instead.
11925         * vc/vc-dispatcher.el: Use lexical-binding.
11926         (vc--process-sentinel): Rename from vc-process-sentinel.
11927         Change last arg to be the code to run.  Don't use vc-previous-sentinel
11928         and vc-sentinel-commands any more.
11929         (vc-exec-after): Allow code to be a function.  Use add/remove-function.
11930         (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
11932 2013-04-19  Masatake YAMATO  <yamato@redhat.com>
11934         * progmodes/sh-script.el (sh-imenu-generic-expression):
11935         Handle function names with a single character.   (Bug#14111)
11937 2013-04-19  Dima Kogan  <dima@secretsauce.net>    (tiny change)
11939         * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
11940         for subroutines defined in an eval (bug#14182).
11942 2013-04-19  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11944         * bookmark.el (bookmark-completing-read): Improve handling of empty
11945         string (bug#14176).
11947 2013-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
11949         * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
11951 2013-04-19  Fabián Ezequiel Gallina  <fgallina@gnu.org>
11953         New faster Imenu implementation (bug#14058).
11954         * progmodes/python.el:
11955         (python-imenu-prev-index-position):
11956         (python-imenu-format-item-label-function)
11957         (python-imenu-format-parent-item-label-function)
11958         (python-imenu-format-parent-item-jump-label-function):
11959         New vars.
11960         (python-imenu-format-item-label)
11961         (python-imenu-format-parent-item-label)
11962         (python-imenu-format-parent-item-jump-label)
11963         (python-imenu--put-parent, python-imenu--build-tree)
11964         (python-imenu-create-index, python-imenu-create-flat-index)
11965         (python-util-popn): New functions.
11966         (python-mode): Set imenu-create-index-function to
11967         python-imenu-create-index.
11969 2013-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11971         * winner.el (winner-active-region): Use region-active-p, activate-mark
11972         and deactivate-mark (bug#14225).
11974         * simple.el (deactivate-mark): Don't inline it.
11976 2013-04-18  Michael Albinus  <michael.albinus@gmx.de>
11978         * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
11980 2013-04-18  Tassilo Horn  <tsdh@gnu.org>
11982         * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
11983         file extensions from the archive-mode entry in order to prefer
11984         doc-view-mode-maybe with archive-mode as fallback (bug#14188).
11986 2013-04-18  Leo Liu  <sdl.web@gmail.com>
11988         * bindings.el (help-event-list): Add ?\?.
11990 2013-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11992         * subr.el (with-wrapper-hook): Declare obsolete.
11993         * simple.el (filter-buffer-substring-function): New hook.
11994         (filter-buffer-substring): Use it.
11995         (filter-buffer-substring-functions): Mark obsolete.
11996         * minibuffer.el (completion-in-region-function): New hook.
11997         (completion-in-region): Use it.
11998         (completion-in-region-functions): Mark obsolete.
11999         * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
12000         * abbrev.el (abbrev-expand-function): New hook.
12001         (expand-abbrev): Use it.
12002         (abbrev-expand-functions): Mark obsolete.
12003         * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
12004         and :filter-return.
12006 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
12008         * progmodes/python.el (python-nav--syntactically): Fix cornercases
12009         and do not care about match data.
12011 2013-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12013         * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
12014         completion tables when completing error conditions and
12015         `declare' arguments.
12016         (lisp-complete-symbol, field-complete): Mark as obsolete.
12017         (check-parens): Unmatched parens are user errors.
12018         * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
12020 2013-04-17  Michal Nazarewicz  <mina86@mina86.com>
12022         * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
12023         command changed buffer (ie. `flyspell-pre-buffer' is not current
12024         buffer), which prevents making decisions based on invalid value of
12025         `flyspell-pre-point' in the wrong buffer.  Most notably, this used to
12026         cause an error when `flyspell-pre-point' was nil after switching
12027         buffers.
12028         (flyspell-post-command-hook): No longer needs to change buffers when
12029         checking pre-word.  While at it remove unnecessary progn.
12031 2013-04-17  Nicolas Richard  <theonewiththeevillook@yahoo.fr>  (tiny change)
12033         * textmodes/ispell.el (ispell-add-per-file-word-list):
12034         Fix `flyspell-correct-word-before-point' error when accepting
12035         words and `coment-padding' is an integer by using
12036         `comment-normalize-vars' (Bug #14214).
12038 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
12040         New defun movement commands.
12041         * progmodes/python.el (python-nav--syntactically)
12042         (python-nav--forward-defun, python-nav-backward-defun)
12043         (python-nav-forward-defun): New functions.
12045 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
12047         * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
12048         (python-syntax-context): Use named compiler-macro for backwards
12049         compatibility with Emacs 24.x.
12051 2013-04-17  Leo Liu  <sdl.web@gmail.com>
12053         * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
12054         octave-hide-process-buffer.
12056 2013-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12058         * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
12059         (bug#14216).
12061 2013-04-17  Jean-Philippe Gravel  <jpgravel@gmail.com>
12063         * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
12064         Fix adjustment of offset when receiving incomplete responses from GDB
12065         (bug#14129).
12067 2013-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12069         * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
12070         python-mode-abbrev-table.
12071         (python-skeleton-define): Adjust accordingly.
12072         (python-mode-abbrev-table): New table that inherits from it so that
12073         python-skeleton-autoinsert does not affect non-skeleton abbrevs.
12075         * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
12076         (abbrev-symbol): Use it.
12077         (abbrev--before-point): Use it since we already handle inheritance.
12079 2013-04-16  Leo Liu  <sdl.web@gmail.com>
12081         * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
12082         binding to info-lookup-symbol.
12084 2013-04-16  Juanma Barranquero  <lekktu@gmail.com>
12086         * minibuffer.el (completion--twq-all):
12087         * term/ns-win.el (ns-initialize-window-system):
12088         * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
12090 2013-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12092         * emacs-lisp/nadvice.el (add-function): Default simple vars to their
12093         global bindings.
12095         * doc-view.el (doc-view-start-process): Handle url-handler directories.
12097 2013-04-15  Dmitry Gutov  <dgutov@yandex.ru>
12099         * progmodes/ruby-mode.el (ruby-beginning-of-defun)
12100         (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
12101         to nil.
12102         (ruby-end-of-defun): Remove the unused arg, change the docstring
12103         to reflect that this function is only used as the value of
12104         `end-of-defun-function'.
12105         (ruby-beginning-of-defun): Remove "top-level" from the docstring,
12106         to reflect an earlier change that beginning/end-of-defun functions
12107         jump between methods in a class definition, as well as top-level
12108         functions.
12110 2013-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
12112         * minibuffer.el (minibuffer-complete): Don't just scroll
12113         a *Completions* that's been iconified.
12114         (minibuffer-force-complete): Make sure repetitions do cycle when going
12115         through completion-in-region -> minibuffer-complete.
12117 2013-04-15  Alan Mackenzie  <acm@muc.de>
12119         Correct the placement of c-cpp-delimiters when there're #s not at
12120         col 0.
12122         * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
12123         place a submatch around the #.
12124         * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
12125         Start a search at BOL.  Put the c-cpp-delimiter category text propertiy
12126         on the #, not BOL.
12128 2013-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
12130         * emacs-lisp/nadvice.el: Properly test names when adding advice.
12131         (advice--member-p): New arg `name'.
12132         (advice--add-function, advice-member-p): Use it (bug#14202).
12134 2013-04-15  Filipp Gunbin  <fgunbin@fastmail.fm>
12136         Reformulate java imenu-generic-expression.
12137         The old expression contained ill formed regexps.
12139         * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
12140         (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
12141         (cc-imenu-java-method-arg-regexp): New defconsts.
12142         (cc-imenu-java-build-type-args-regex): New defun.
12143         (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
12144         handling of spaces in the regexp.
12146 2013-03-15  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
12148         * textmodes/ispell.el (ispell-command-loop): Remove
12149         flyspell highlight of a word when ispell accepts it (bug #14178).
12151 2013-04-15  Michael Albinus  <michael.albinus@gmx.de>
12153         * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
12154         uses code from the previous `ange-ftp-run-real-handler'.
12155         (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
12156         only in case that function exist.  This is needed for proper
12157         unloading of Tramp.
12159 2013-04-15  Tassilo Horn  <tsdh@gnu.org>
12161         * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
12163         * textmodes/reftex.el (reftex-compile-variables): Use it.
12165 2013-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
12167         * files.el (normal-mode): Only use default major-mode if no other mode
12168         was specified.
12170         * emacs-lisp/trace.el (trace-values): New function.
12172         * files.el: Allow : in local variables (bug#14089).
12173         (hack-local-variable-regexp): New var.
12174         (hack-local-variables-prop-line, hack-local-variables): Use it.
12176 2013-04-13  Roland Winkler  <winkler@gnu.org>
12178         * textmodes/bibtex.el (bibtex-search-entries): Bug fix.  Use match
12179         data before it gets modified by bibtex-beginning-of-entry.
12181 2013-04-13  Roland Winkler  <winkler@gnu.org>
12183         * textmodes/bibtex.el (bibtex-url): Doc fix.
12185 2013-04-13  Roland Winkler  <winkler@gnu.org>
12187         * textmodes/bibtex.el (bibtex-initialize): If the current buffer
12188         does not visit a BibTeX file, exclude it from the list of buffers
12189         returned by bibtex-initialize.
12191 2013-04-13  Stephen Berman  <stephen.berman@gmx.net>
12193         * window.el (split-window): Remove interactive form, since as a
12194         command this function is a special case of split-window-below.
12195         Correct doc string.
12197 2013-04-12  Roland Winkler  <winkler@gnu.org>
12199         * faces.el (read-face-name): Do not override value of arg default.
12200         Allow single faces and strings as default values.  Remove those
12201         elements from return value that are not faces.
12202         (describe-face): Simplify.
12203         (face-at-point): New optional args thing and multiple so that this
12204         function can provide the same functionality previously provided by
12205         read-face-name.
12206         (make-face-bold, make-face-unbold, make-face-italic)
12207         (make-face-unitalic, make-face-bold-italic, invert-face)
12208         (modify-face, read-face-and-attribute): Use face-at-point.
12210         * cus-edit.el (customize-face, customize-face-other-window)
12211         * cus-theme.el (custom-theme-add-face)
12212         * face-remap.el (buffer-face-set)
12213         * facemenu.el (facemenu-set-face): Use face-at-point.
12215 2013-04-12  Michael Albinus  <michael.albinus@gmx.de>
12217         * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
12219 2013-04-10  Tassilo Horn  <tsdh@gnu.org>
12221         * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
12222         off leading { and trailing } from field values.
12224 2013-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
12226         * emacs-lisp/timer.el (timer--check): New function.
12227         (timer--time, timer-set-function, timer-event-handler): Use it.
12228         (timer-set-idle-time): Simplify.
12229         (timer--activate): CSE.
12230         (timer-event-handler): Give more info in error message.
12231         (internal-timer-start-idle): New function, moved from C.
12233         * mpc.el (mpc-proc): Add `restart' argument.
12234         (mpc-proc-cmd): Use it.
12235         (mpc--status-timer-run): Also catch signals from `mpc-proc'.
12236         (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
12237         less often.
12239 2013-04-10  Masatake YAMATO  <yamato@redhat.com>
12241         * progmodes/sh-script.el: Implement `sh-mode' own
12242         `add-log-current-defun-function' (bug#14112).
12243         (sh-current-defun-name): New function.
12244         (sh-mode): Use the function.
12246 2013-04-09  Bastien Guerry  <bzg@gnu.org>
12248         * simple.el (choose-completion-string): Fix docstring (bug#14163).
12250 2013-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12252         * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
12254         * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
12255         timer (bug#14156).
12257 2013-04-07  Nic Ferrier  <nferrier@ferrier.me.uk>
12259         * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
12260         declaration.
12262 2013-04-07  Leo Liu  <sdl.web@gmail.com>
12264         * pcmpl-x.el: New file.
12266 2013-04-06  Dmitry Antipov  <dmantipov@yandex.ru>
12268         Do not set x-display-name until X connection is established.
12269         This is needed to prevent from weird situation described at
12270         <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
12271         * frame.el (make-frame): Set x-display-name after call to
12272         window system initialization function, not before.
12273         * term/x-win.el (x-initialize-window-system): Add optional
12274         display argument and use it.
12275         * term/w32-win.el (w32-initialize-window-system):
12276         * term/ns-win.el (ns-initialize-window-system):
12277         * term/pc-win.el (msdos-initialize-window-system):
12278         Add compatible optional display argument.
12280 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
12282         * files.el (normal-backup-enable-predicate): On MS-Windows and
12283         MS-DOS compare truenames of temporary-file-directory and of the
12284         file, so that 8+3 aliases (usually found in $TEMP on Windows)
12285         don't fail comparison by compare-strings.  Also, compare file
12286         names case-insensitively on MS-Windows and MS-DOS.
12288 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12290         * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
12291         Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
12293 2013-04-05  Dmitry Gutov  <dgutov@yandex.ru>
12295         * whitespace.el (whitespace-color-on, whitespace-color-off):
12296         Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
12298 2013-04-05  Jacek Chrząszcz  <chrzaszcz@mimuw.edu.pl>  (tiny change)
12300         * ispell.el (ispell-set-spellchecker-params):
12301         Really set `ispell-args' for all equivs.
12303 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12305         * ido.el (ido-completions): Use extra elements of ido-decorations
12306         (bug#14143).
12307         (ido-decorations): Update docstring.
12309 2013-04-05  Michael Albinus  <michael.albinus@gmx.de>
12311         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
12312         (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
12313         nil during initialization, in order not to miss changes since the
12314         file was opened.  (Bug#14140)
12316 2013-04-05  Leo Liu  <sdl.web@gmail.com>
12318         * kmacro.el (kmacro-call-macro): Fix bug#14135.
12320 2013-04-05  Jay Belanger  <jay.p.belanger@gmail.com>
12322         * calc/calc-units.el (calc-convert-units): Rewrite conditional.
12324 2013-04-04  Glenn Morris  <rgm@gnu.org>
12326         * electric.el (electric-pair-inhibit-predicate): Add :version.
12328 2013-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12330         * emacs-lisp/package.el (package-compute-transaction): Fix ordering
12331         when a package is required several times (bug#14082).
12333 2013-04-04  Roland Winkler  <winkler@gnu.org>
12335         * faces.el (read-face-name): Behave as promised by the docstring.
12336         Assume that arg default is a list of faces.
12337         (describe-face): Call read-face-name with list of default faces.
12339 2013-04-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
12341         * bookmark.el: Fix deletion of bookmarks (bug#13972).
12342         (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
12343         (bookmark-bmenu-execute-deletions): Only skip first line if it's
12344         the header.
12345         (bookmark-exit-hook-internal): Save even if list is empty.
12347 2013-04-04  Yann Hodique  <yann.hodique@gmail.com>  (tiny change)
12349         * emacs-lisp/package.el (package-pinned-packages): New var.
12350         (package--add-to-archive-contents): Obey it (bug#14118).
12352 2013-04-03  Alan Mackenzie  <acm@muc.de>
12354         Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
12355         Also adapt to the new values of element 7 of a parse state.
12357         * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
12358         parameter `not-in-delimiter'.  Handle being inside comment opener.
12359         (c-invalidate-state-cache-1): Reckon with an extra "invalid"
12360         character in case we're typing a '*' after a '/'.
12361         (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
12362         instead by passing the parameter to c-state-pp-to-literal.
12364         * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
12365         for elt. 7 of a parse state.
12367 2013-04-01  Paul Eggert  <eggert@cs.ucla.edu>
12369         Use UTF-8 for most files with non-ASCII characters (Bug#13936).
12370         * international/latin1-disp.el, international/mule-util.el:
12371         * language/cyril-util.el, language/european.el, language/ind-util.el:
12372         * language/lao-util.el, language/thai.el, language/tibet-util.el:
12373         * language/tibetan.el, language/viet-util.el:
12374         Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
12376 2013-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
12378         * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
12379         (electric-pair-post-self-insert-function): Use it.
12380         (electric-pair-default-inhibit): New function, extracted from
12381         electric-pair-post-self-insert-function.
12383 2013-03-31  Roland Winkler  <winkler@gnu.org>
12385         * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
12387 2013-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
12389         * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
12391 2013-03-30  Fabián Ezequiel Gallina  <fabian@anue.biz>
12393         Un-indent after "pass" and "return" statements (Bug#13888)
12394         * progmodes/python.el (python-indent-block-enders): New var.
12395         (python-indent-calculate-indentation): Use it.
12397 2013-03-30  Michael Albinus  <michael.albinus@gmx.de>
12399         * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
12400         defun.  Defining it as defalias could introduce too eager
12401         byte-compiler optimization.  (Bug#14030)
12403 2013-03-30  Chong Yidong  <cyd@gnu.org>
12405         * iswitchb.el (iswitchb-read-buffer): Fix typo.
12407 2013-03-30  Leo Liu  <sdl.web@gmail.com>
12409         * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
12410         (kmacro-execute-from-register): Pass the keyboard macro to
12411         kmacro-call-macro or repeating won't work correctly.
12413 2013-03-30  Teodor Zlatanov  <tzz@lifelogs.com>
12415         * progmodes/subword.el: Back to using `forward-symbol'.
12417         * subr.el (forward-whitespace, forward-symbol)
12418         (forward-same-syntax): Move from thingatpt.el.
12420 2013-03-29  Leo Liu  <sdl.web@gmail.com>
12422         * kmacro.el (kmacro-to-register): New command.
12423         (kmacro-execute-from-register): New function.
12424         (kmacro-keymap): Bind to 'x'.  (Bug#14071)
12426 2013-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
12428         * mpc.el: Use defvar-local and setq-local.
12429         (mpc--proc-connect): Connection failures are not bugs.
12430         (mpc-mode-map): `follow-link' only applies to the buffer's content.
12431         (mpc-volume-map): Bind to the up-events.
12433 2013-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
12435         * progmodes/subword.el (superword-mode): Use `forward-sexp'
12436         instead of `forward-symbol'.
12438 2013-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
12440         * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
12441         (edebug--recursive-edit): Use it.
12442         (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
12443         (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
12445 2013-03-28  Leo Liu  <sdl.web@gmail.com>
12447         * vc/vc-bzr.el (vc-bzr-revert): Don't backup.  (Bug#14066)
12449 2013-03-27  Eli Zaretskii  <eliz@gnu.org>
12451         * facemenu.el (list-colors-callback): New defvar.
12452         (list-colors-redisplay): New function.
12453         (list-colors-display): Install list-colors-redisplay as the
12454         revert-buffer-function.  (Bug#14063)
12456 2013-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
12458         * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
12459         and suffixes don't overlap (bug#14061).
12461         * case-table.el: Use lexical-binding.
12462         (case-table-get-table): New function.
12463         (get-upcase-table): Use it.  Mark as obsolete.  Adjust callers.
12465 2013-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
12467         * progmodes/subword.el: Add `superword-mode' to do word motion
12468         over symbol_words (parallels and leverages `subword-mode' which
12469         does word motion inside MixedCaseWords).
12471 2013-03-27  Aidan Gauland  <aidalgol@no8wireless.co.nz>
12473         * eshell/em-unix.el: Move su and sudo to...
12474         * eshell/em-tramp.el: ...Eshell tramp module.
12476 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12478         * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
12479         Change return value to be a sexp.  Delay `get-buffer' to after
12480         restoring the desktop (bug#13951).
12482 2013-03-26  Leo Liu  <sdl.web@gmail.com>
12484         * register.el: Move semantic tag handling back to
12485         cedet/semantic/senator.el.  (Bug#14052)
12487 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
12489         * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
12490         into the prompt either (bug#13963).
12492 2013-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12494         * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
12495         part of "(error-foo)".
12497 2013-03-24  Juri Linkov  <juri@jurta.org>
12499         * replace.el (list-matching-lines-prefix-face): New defcustom.
12500         (occur-1): Pass `list-matching-lines-prefix-face' to the function
12501         `occur-engine' if `face-differs-from-default-p' returns t.
12502         (occur-engine): Add `,' inside backquote construct to evaluate
12503         `prefix-face'.  Propertize the prefix with the `prefix-face' face.
12504         Pass `prefix-face' to the functions `occur-context-lines' and
12505         `occur-engine-add-prefix'.
12506         (occur-engine-add-prefix, occur-context-lines): Add optional arg
12507         `prefix-face' and propertize the prefix with `prefix-face'.
12508         (Bug#14017)
12510 2013-03-24  Leo Liu  <sdl.web@gmail.com>
12512         * nxml/rng-valid.el (rng-validate-while-idle)
12513         (rng-validate-quick-while-idle): Guard against deleted buffer.
12514         (Bug#13999)
12516         * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
12517         is the last entry in kill-buffer-hook.
12519         * files.el (kill-buffer-hook): Doc fix.
12521 2013-03-23  Dmitry Gutov  <dgutov@yandex.ru>
12523         * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
12524         Make it safe-local.
12526         * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
12528 2013-03-23  Leo Liu  <sdl.web@gmail.com>
12530         * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
12531         Remove.
12533         * nxml/rng-valid.el (rng-validate-mode)
12534         (rng-after-change-function, rng-do-some-validation):
12535         * nxml/rng-maint.el (rng-validate-buffer):
12536         * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
12537         * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
12538         * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
12539         (nxml-extend-after-change-region): Use with-silent-modifications.
12541         * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
12542         timer-idle-list.
12544         * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
12545         (rng-next-error-1, rng-previous-error-1): Do not let-bind
12546         timer-idle-list.  (Bug#13999)
12548 2013-03-23  Juri Linkov  <juri@jurta.org>
12550         * info.el (info-index-match): New face.
12551         (Info-index, Info-apropos-matches): Add a nested subgroup to the
12552         main pattern and add text properties with the new face to matches
12553         in index entries relative to the beginning of the index entry.
12554         (Bug#14015)
12556 2013-03-21  Eric Ludlam  <zappo@gnu.org>
12558         * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
12559         Inhibit read only while inserting objects.
12561 2013-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
12563         * progmodes/cfengine.el: Update docs to mention
12564         `cfengine-auto-mode'.  Use \_> and \_< instead of \> and \< for
12565         symbol motion.  Remove "_" from the word syntax.
12567 2013-03-21  Teodor Zlatanov  <tzz@lifelogs.com>
12569         * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
12570         syntax for both `cfengine2-mode' and `cfengine3-mode'.
12572 2013-03-20  Juri Linkov  <juri@jurta.org>
12574         * info.el (Info-next-reference-or-link)
12575         (Info-prev-reference-or-link): New functions.
12576         (Info-next-reference, Info-prev-reference): Use them.
12577         (Info-try-follow-nearest-node): Handle footnote navigation.
12578         (Info-fontify-node): Fontify footnotes.  (Bug#13989)
12580 2013-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
12582         * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
12583         * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
12585 2013-03-20  Paul Eggert  <eggert@cs.ucla.edu>
12587         Suppress unnecessary non-ASCII chatter during build process.
12588         * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
12589         (batch-skkdic-convert): Suppress most of the chatter.
12590         It's not needed so much now that machines are faster,
12591         and its non-ASCII component was confusing; see Dmitry Gutov in
12592         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
12594 2013-03-20  Leo Liu  <sdl.web@gmail.com>
12596         * ido.el (ido-chop): Fix bug#10994.
12598 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
12600         * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
12601         Remove vars.
12602         (whitespace-color-on, whitespace-color-off):
12603         Use `font-lock-fontify-buffer' (Bug#13817).
12605 2013-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
12607         * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
12608         remapping in mode-line.
12609         (mouse-on-link-p): Also check [mode-line follow-link] bindings.
12611 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
12613         * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
12614         value for `whitespace-line' face (Bug#13875).
12615         (whitespace-font-lock-keywords): Change description.
12616         (whitespace-color-on): Don't save `font-lock-keywords' value, save
12617         the constructed keywords instead.
12618         (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
12620 2013-03-19  Leo Liu  <sdl.web@gmail.com>
12622         * progmodes/compile.el (compilation-display-error): New command.
12623         (compilation-mode-map, compilation-minor-mode-map): Bind it to
12624         C-o.  (Bug#13992)
12626 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
12628         * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
12630 2013-03-18  Jan Djärv  <jan.h.d@swipnet.se>
12632         * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
12634 2013-03-18  Michael Albinus  <michael.albinus@gmx.de>
12636         * net/tramp-compat.el (tramp-compat-user-error): New defun.
12638         * net/tramp-adb.el (tramp-adb-handle-shell-command):
12639         * net/tramp-gvfs.el (top):
12640         * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
12641         (tramp-handle-shell-command): Use it.
12642         (tramp-dissect-file-name): Raise an error when hostname is a
12643         method name, and neither method nor user is specified.
12645         * net/trampver.el: Update release number.
12647 2013-03-18  Leo Liu  <sdl.web@gmail.com>
12649         Make sure eldoc can be turned off properly.
12650         * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
12651         eldoc-mode.
12652         (eldoc-display-message-p): Revert last change.
12653         (eldoc-display-message-no-interference-p)
12654         (eldoc-print-current-symbol-info): Tweak.
12656 2013-03-18  Tassilo Horn  <tsdh@gnu.org>
12658         * doc-view.el (doc-view-new-window-function): Check the new window
12659         overlay's display property instead the char property of the
12660         buffer's first char.  Use `with-selected-window' instead of
12661         `save-window-excursion' with `select-window'.
12662         (doc-view-document->bitmap): Check the current doc-view overlay's
12663         display property instead the char property of the buffer's first char.
12665 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
12667         Automate the build of ja-dic.el (Bug#13984).
12668         * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
12669         from the input, rather than assume that it's been done for us by the
12670         SKK script unannotate.awk.  Switch ja-dic.el to UTF-8.  Don't put
12671         the current date into a ja-dic.el comment, as that complicates
12672         regression testing.
12674 2013-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
12676         * whitespace.el: Fix double evaluation.
12677         (whitespace-space, whitespace-hspace, whitespace-tab)
12678         (whitespace-newline, whitespace-trailing, whitespace-line)
12679         (whitespace-space-before-tab, whitespace-indentation)
12680         (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
12681         obsolete defvars.
12682         (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
12683         (whitespace-color-on): Use a single font-lock-add-keywords call.
12684         Fix double-evaluation of face variables.
12686 2013-03-17  Michael Albinus  <michael.albinus@gmx.de>
12688         * net/tramp-adb.el (tramp-adb-parse-device-names):
12689         Use `start-process' instead of `call-process'.  Otherwise, the
12690         function might be blocked under MS Windows.  (Bug#13299)
12692 2013-03-17  Leo Liu  <sdl.web@gmail.com>
12694         Extend eldoc to display info in the mode-line.  (Bug#13978)
12695         * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
12696         (eldoc-mode-line-string): New variable.
12697         (eldoc-minibuffer-message): New function.
12698         (eldoc-message-function): New variable.
12699         (eldoc-message): Use it.
12700         (eldoc-display-message-p)
12701         (eldoc-display-message-no-interference-p):
12702         Support eldoc-post-insert-mode.
12704         * simple.el (eval-expression-minibuffer-setup-hook): New hook.
12705         (eval-expression): Run it.
12707 2013-03-17  Roland Winkler  <winkler@gnu.org>
12709         * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
12710         strings in the list of return values.
12712 2013-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
12714         * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
12715         radix before checking for HMS forms.
12717 2013-03-16  Leo Liu  <sdl.web@gmail.com>
12719         * progmodes/scheme.el: Add indentation and font-locking for λ.
12720         (Bug#13975)
12722 2013-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
12724         * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
12725         token before point (bug#13942).
12727 2013-03-16  Leo Liu  <sdl.web@gmail.com>
12729         * thingatpt.el (end-of-sexp): Fix bug#13952.  Use syntax-after.
12731 2013-03-16  Eli Zaretskii  <eliz@gnu.org>
12733         * startup.el (command-line-normalize-file-name): Fix handling of
12734         backslashes in DOS and Windows file names.  Reported by Xue Fuqiao
12735         <xfq.free@gmail.com> in
12736         http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
12738 2013-03-15  Michael Albinus  <michael.albinus@gmx.de>
12740         Sync with Tramp 2.2.7.
12742         * net/trampver.el: Update release number.
12744 2013-03-14  Tassilo Horn  <tsdh@gnu.org>
12746         * doc-view.el: Fix bug#13887.
12747         (doc-view-insert-image): Don't modify overlay associated to
12748         non-live windows, and implement horizontal centering of image in
12749         case it's smaller than the window.
12750         (doc-view-new-window-function): Force redisplay of new windows on
12751         doc-view buffers.
12753 2013-03-13  Karl Fogel  <kfogel@red-bean.com>
12755         * saveplace.el (save-place-alist-to-file): Don't sort
12756         `save-place-alist', just pretty-print it (bug#13882).
12758 2013-03-13  Michael Albinus  <michael.albinus@gmx.de>
12760         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
12761         Check whether `default-file-name-coding-system' is bound.
12762         It isn't in XEmacs.
12764 2013-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
12766         * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
12767         backquotes for `obsolete' (bug#13929).
12769         * international/mule.el (find-auto-coding): Include file name in
12770         obsolescence warning (bug#13922).
12772 2013-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
12774         * progmodes/cfengine.el (cfengine-parameters-indent): New variable
12775         for CFEngine 3-specific indentation.
12776         (cfengine3-indent-line): Use it.  Fix up category regex.
12777         (cfengine3-font-lock-keywords): Add bundle and namespace characters.
12779 2013-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12781         * type-break.el (type-break-file-name):
12782         * textmodes/remember.el (remember-data-file):
12783         * strokes.el (strokes-file):
12784         * shadowfile.el (shadow-initialize):
12785         * saveplace.el (save-place-file):
12786         * ps-bdf.el (bdf-cache-file):
12787         * progmodes/idlwave.el (idlwave-config-directory):
12788         * net/quickurl.el (quickurl-url-file):
12789         * international/kkc.el (kkc-init-file-name):
12790         * ido.el (ido-save-directory-list-file):
12791         * emulation/viper.el (viper-custom-file-name):
12792         * emulation/vip.el (vip-startup-file):
12793         * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
12794         * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
12796 2013-03-12  Paul Eggert  <eggert@cs.ucla.edu>
12798         Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
12799         * language/thai-word.el: Switch to UTF-8.
12801 See ChangeLog.16 for earlier changes.
12803 ;; Local Variables:
12804 ;; coding: utf-8
12805 ;; End:
12807   Copyright (C) 2011-2014 Free Software Foundation, Inc.
12809   This file is part of GNU Emacs.
12811   GNU Emacs is free software: you can redistribute it and/or modify
12812   it under the terms of the GNU General Public License as published by
12813   the Free Software Foundation, either version 3 of the License, or
12814   (at your option) any later version.
12816   GNU Emacs is distributed in the hope that it will be useful,
12817   but WITHOUT ANY WARRANTY; without even the implied warranty of
12818   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12819   GNU General Public License for more details.
12821   You should have received a copy of the GNU General Public License
12822   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.