lisp/autoinsert.el: Change default of auto-insert-alist.
[emacs.git] / lisp / ChangeLog
blob819e0d0a1b21e9a8181a05a09a7e5665b4ba8e90
1 2014-12-04  Rupert Swarbrick  <ruperts@broadcom.com> (tiny change)
2             Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
4         * autoinsert.el (auto-insert-alist): Update C/C++ header and
5         program support to match more extensions.  Replace non-alnum
6         characters when generating include guards (headers) and check for
7         more extensions when generating includes (programs)
8         (bug#19254).
10 2014-12-03  Eric S. Raymond  <esr@snark.thyrsus.com>
12         * files.el (file-tree-walk): Fix docstring.
14 2014-12-03  Karl Fogel  <kfogel@red-bean.com>
16         Fix bug whereby saving files hung in VC hook.
18         Saving a buffer visiting a file under SVN control would hang if
19         the remote repository were unreachable, because the VC hooks tried
20         to run "svn status -u" on the file, where the "-u" tells svn to
21         get update information from the remote repository.
22         http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00174.html
24         * vc/vc-svn.el (vc-svn-state): Remove optional `localp'
25         argument and always pass "-v" to "svn status", never "-u".
27 2014-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
29         * emacs-lisp/inline.el: Fix up copyright header.
30         (inline-quote, inline-const-p, inline-const-val, inline-error):
31         Silence compiler warnings.
32         (inline-letevals): Fix edebug spec.
33         (inline--testconst-p): Consider lambda expressions as const-p.
34         (inline--getconst-val): Use inline--testconst-p.
36         * minibuffer.el (completion-table-dynamic): Add arg `switch-buffer'
37         and change default to stay in the minibuffer when called from
38         the minibuffer (bug#19250).
39         (lazy-completion-table): Use this new argument to preserve the
40         old behavior.
42         * progmodes/elisp-mode.el (elisp--local-variables): Don't burp on
43         incorrect lexical elements (bug#19250).
45 2014-12-03  Eric S. Raymond  <esr@snark.thyrsus.com>
47         * files.el (file-tree-walk): Lisp translation of ANSI ftw(3).
49 2014-12-02  Glenn Morris  <rgm@gnu.org>
51         * whitespace.el (whitespace-big-indent-regexp): Add :version.
53 2014-12-02  Eric S. Raymond  <esr@snark.thyrsus.com>
55         * subr.el (filter): New macro. Because it's just silly for a Lisp
56         not to have this in 2014.  And VC needs it.
58         * vc.el, all backends: API simplification: Abolish dir-status.
59         It's replaced by dir-status-files.
61         * vc.el, all backends: API simplification: Remove 4th
62         'default-state' argument from vc-dir-status files and its backend
63         methods - no backend method ever set it.  It was used only in the
64         fallback method to to set a default of 'up-to-date, though a
65         convoluted call chain obscured this.
67         * vc-hooks.el: Bind vc-delete-file to Ctrl-x v delete.
69         * vc.el (vc-expand-dirs): Now takes a second BACKEND argument,
70         improving behavior on directories using multiple file-oriented VCSes.
72         * vc/vc.el and all backends: API simplification; clear-headers
73         is no longer a public method.  It is now local to the one place
74         it's used, in the RCS steal-lock method.
76 2014-12-01  Eric S. Raymond  <esr@snark.thyrsus.com>
78         * vc/vc.el and all backends: API simplification; could-register
79         is no longer a public method.  (vc-cvs.el still has a private
80         implementation.)
82         * vc/vc.el and all backends: API cleanup; the backend diff method
83         takes an explicit async flag.  This eliminates a particularly ugly
84         global.
86         * vc-bzr.el: Restore vc-bzr-state-heuristic as a private method.
87         VC randomly/unpredictably fails without it; cause not yet established.
89 2014-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
91         Merge some of the differences from the standalone CC-mode.
92         The main change is to only use the `category' text-property only when
93         available.  For that many calls are changed to use c-get-char-property,
94         c-next-single-property-change, c-sc-scan-lists,
95         c-sc-parse-partial-sexp, c-unmark-<->-as-paren.
97         * progmodes/cc-mode.el (c-just-done-before-change): New var.
98         (c-basic-common-init): Initialize it.
99         (c-common-init): Only use mode-require-final-newline when available.
100         (c-before-change): Check and set c-just-done-before-change.
101         (c-after-change): Re-set c-just-done-before-change.
102         (c-advise-fl-for-region): New macro.
103         (lazy-lock-defer-rest-after-change, lazy-lock-defer-line-after-change)
104         (font-lock-after-change-function, jit-lock-after-change):
105         Advise if needed.
107         * progmodes/cc-langs.el (c-modified-constant): New lang var.
108         (c-known-type-key): Don't make a list just to throw it away.
110         * progmodes/cc-engine.el (c-invalidate-state-cache, c-parse-state):
111         Handle the case where categories are not available.
112         (c-record-parse-state-state, c-replay-parse-state-state):
113         Handle marker values.
114         (c-before-change-check-<>-operators): Look for the `syntax-table'
115         property rather than for the corresponding `category'.
116         (c-looking-at-decl-block): Remove unused var
117         `c-disallow-comma-in-<>-arglists'.
118         (c-forward-<>-arglist-recur): Remove unused var
119         `orig-record-found-types'.
121         * progmodes/cc-defs.el (c-version): Bump up to 5.33.
122         (c-use-category): New const.
123         (c-next-single-property-change): New macro.
124         (c-region-is-active-p): Prefer region-active-p when available.
125         (c-search-backward-char-property): Fix old min/max typo; probably
126         a copy/paste error.
127         (c-mark-<-as-paren, c-mark->-as-paren, c-unmark-<->-as-paren):
128         Turn them into macros that obey c-use-category.
129         (c-sc-scan-lists-no-category+1+1, c-sc-scan-lists-no-category+1-1)
130         (c-sc-scan-lists-no-category-1+1, c-sc-scan-lists-no-category-1-1)
131         (c-sc-scan-lists, c-sc-parse-partial-sexp)
132         (c-looking-at-non-alphnumspace): New macros.
133         (c-sc-parse-partial-sexp-no-category): New function.
134         (c-emacs-features): Add `category-properties' element.
136         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
137         (c-backward-into-nomenclature): Use cc-subword if subword-mode is
138         not available.
139         (c-beginning-of-defun, c-end-of-defun, c-mark-function)
140         (c-indent-line-or-region): Use c-region-is-active-p.
142         * progmodes/cc-bytecomp.el (cc-bytecomp-unbound-variables)
143         (cc-bytecomp-original-functions, cc-bytecomp-original-properties)
144         (cc-bytecomp-loaded-files): Re-set each time the file is loaded.
145         (cc-bytecomp-obsolete-var, cc-bytecomp-ignore-obsolete)
146         (cc-bytecomp-obsolete-fun): Delete unused functions.
148         * progmodes/cc-align.el (c-lineup-respect-col-0): New function.
150 2014-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
152         * net/shr.el (shr-dom-print): Fix up `shr-dom-print' after the
153         dom.el changes.
155 2014-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
157         * vc/vc.el (vc-find-conflicted-file): Look for conflicted files in the
158         current "project" rather than just the current directory.
159         * vc/vc-git.el (vc-git-conflicted-files): Clarify in which directory
160         the file names make sense.
162         * vc/smerge-mode.el (smerge-swap): New command.
164         * vc/diff-mode.el (diff-kill-applied-hunks): New command.
166 2014-12-01  Ulf Jasper  <ulf.jasper@web.de>
168         * net/newst-treeview.el (newsticker--treeview-item-show):
169         Check window liveliness before measuring its width.
171         * net/newst-backend.el (newsticker--get-news-by-url-callback):
172         Pass correct status to `newsticker--sentinel-work'.
173         (newsticker--sentinel-work): Use "newsticker--download-error" as
174         guid in order to prevent multiple "Could not download..."
175         messages.  Fixes bug#19166.
177 2014-12-01  Ivan Shmakov  <ivan@siamics.net>
179         * net/eww.el (eww-render): Call `eww-after-render-hook' in the
180         correct buffer (bug#19225).
182 2014-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
184         * net/nsm.el (network-security-level): Change the default to `medium'.
186         * net/eww.el (eww): Leave point in a place that doesn't cause
187         scrolling when displaying "Loading...".
189 2014-12-01  Eric S. Raymond  <esr@snark.thyrsus.com>
191         * vc/vc.el, vc/vc-cvs.el, vc/vc-rcs.el, vc/vc-svn.el: The 'merge'
192         backend method of RCS/CVS/SVN is now 'merge-file', to contrast with
193         'merge-branch'.  Prompting for merge revisions is pushed down to
194         the back ends; this fixes a layering violation that caused bad
195         behavior with SVN.
197         * vc/vc.el, vc-hooks.el, and all backends: API simplification;
198         vc-stay-local-p and repository-hostname are no longer public
199         methods.  Only the CVS and SVN backends used these, and the SVN
200         support was conditioned out because svn status -v is too slow.
201         The CVS back end retains this machibery and the vc-stay-local
202         configuration variable now only affects it.
204 2014-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
206         * emacs-lisp/inline.el: New file.
208 2014-12-01  Eric S. Raymond  <esr@snark.thyrsus.com>
210         * vc/vc.el, vc-hooks.el, and all backends: API simplification;
211         vc-state-heuristic is no longer a public method, having been
212         removed where it is redundant, unnecessary, or known buggy.
213         This eliminated all backends except CVS.  Eliminates bug#7850.
215         * vc/vc-cvs.el, vc/vc-hooks.el, vc/vc-rcs.el, vc/vc-sccs.el:
216         Eliminate vc-mistrust-permissions.  It was only relevant to the
217         RCS and SCCS back ends and defaulted to t. Code now always
218         mistrusts permissions - by actual measurement the effect on
219         performance is negligible. As a side effect bug#11490 is now
220         irrelevant.
222         * vc/vc.el, vc-hooks.el, and all backends: API simplification;
223         vc-workfile-unchanged-p is no longer a public method (but the RCS
224         and SCCS back ends retain it as a private method used in state
225         computation). This method was redundant with vc-state and usually
226         implemented as a trivial call to same. Fixes the failure mode
227         described in bug#694.
229         * vc/vc.el and all backends: API simplification; init-revision is
230         gone, and vc-registered functions no longer take an
231         initial-revision argument.
233 2014-11-29  Glenn Morris  <rgm@gnu.org>
235         * vc/vc-src.el (vc-src, vc-src-diff-switches)
236         (vc-src-master-templates): Fix :version tags.
238 2014-11-29  Paul Rankin  <paul@tilk.co>  (tiny change)
240         * outline.el (outline-move-subtree-down): Refactor and improve code.
242 2014-11-29  Stephen Berman  <stephen.berman@gmx.net>
243             Stefan Monnier  <monnier@iro.umontreal.ca>
245         * outline.el (outline-move-subtree-down): Make sure we can move
246         forward to find the end of the subtree and the insertion point
247         (bug#19102).
249 2014-11-29  Fabián Ezequiel Gallina  <fgallina@gnu.org>
251         * progmodes/python.el (python-shell-completion-setup-code):
252         Use __builtin__ module (or builtins in Python 3) and catch all errors
253         when importing readline and rlcompleter.
255 2014-11-29  Stephen Berman  <stephen.berman@gmx.net>
257         * calendar/todo-mode.el: Handle calling revert-buffer (bug#19187).
258         (todo-revert-buffer): New function.
259         (todo-modes-set-1): Use it as the buffer-local value of
260         revert-buffer-function.
262 2014-11-29  Stephen Berman  <stephen.berman@gmx.net>
264         * calendar/todo-mode.el (todo-mode): If called interactively, just
265         display a message saying to call todo-show to enter Todo mode
266         (Bug#19112).
268 2014-11-29  Dmitry Gutov  <dgutov@yandex.ru>
270         * vc/vc-hg.el (vc-hg-dir-status-files): Include ignored files.
271         (Bug#18579)
273         * vc/vc-bzr.el (vc-bzr-after-dir-status): Don't skip ignored
274         files.  (Bug#18579)
276 2014-11-29  Michael Albinus  <michael.albinus@gmx.de>
278         * textmodes/makeinfo.el (makeinfo-buffer): Make it work also for
279         remote `buffer-file-name'.
281 2014-11-29  Leo Liu  <sdl.web@gmail.com>
283         * calendar/diary-lib.el (calendar-mark-1): Fix thinko.
285 2014-11-29  Fabián Ezequiel Gallina  <fgallina@gnu.org>
287         Set PYTHONUNBUFFERED on shell startup.
289         * progmodes/python.el (python-shell-unbuffered): New var.
290         (python-shell-calculate-process-environment): Use it.
292 2014-11-29  Michael Albinus  <michael.albinus@gmx.de>
294         * net/tramp.el (tramp-action-password): Clean password on subsequent
295         attempts even if there was no wrong password indication.  (Bug#19047)
297         * net/tramp-sh.el (tramp-get-remote-locale): Return "LC_ALL=C" as
298         fallback.
299         (tramp-open-connection-setup-interactive-shell): No need to check
300         for nil as `tramp-get-remote-locale' return value.
302 2014-11-29  Eli Zaretskii  <eliz@gnu.org>
304         * vc/vc-git.el (vc-git-command, vc-git--call):
305         Bind coding-system-for-read and coding-system-for-write to
306         vc-git-commits-coding-system.
307         (vc-git-previous-revision): Use "~1" instead of "^", since the
308         latter is a special character for MS-Windows system shells.
310 2014-11-29  Michael Albinus  <michael.albinus@gmx.de>
312         Improve XEmacs compatibility.
314         * net/tramp.el (tramp-autoload-file-name-handler):
315         Wrap `temporary-file-directory' by `symbol-value', it doesn't
316         exist in XEmacs.
317         (tramp-read-passwd): Don't use `with-timeout-suspend' and
318         `with-timeout-unsuspend' if they don't exist, like in XEmacs.
319         (tramp-time-less-p, tramp-time-subtract): Remove functions.
320         (tramp-handle-file-newer-than-file-p, tramp-time-diff):
321         * net/tramp-adb.el (tramp-adb-ls-output-time-less-p):
322         * net/tramp-cache.el (tramp-get-file-property):
323         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
324         Use `time-less-p' and `time-subtract, respectively.
326         * net/tramp-adb.el (top): Do not require time-date.el.
328         * net/tramp-compat.el (top): Require time-date.el for XEmacs.
330         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
331         Check, whether `utf-8' is a valid coding system.
333 2014-11-29  Eli Zaretskii  <eliz@gnu.org>
335         * vc/vc.el (vc-retrieve-tag): Doc fix.
337 2014-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
339         * simple.el (execute-extended-command--shorter): Fix the "M-p" case
340         (bug#19152).
342 2014-11-28  Martin Rudalics  <rudalics@gmx.at>
344         Fix two issues around help-window-select.  (Bug#11039) (Bug#19012)
345         * help.el (help-window-old-frame): New variable.
346         (help-window-select): Default to nil (Bug#11039).
347         Rewrite doc-string.
348         (help-window-setup): When the help window appears on another
349         frame and `help-window-select' is non-nil, give that frame input
350         focus too (Bug#19012).
351         (with-help-window): Store selected frame in
352         help-window-old-frame.
354 2014-11-28  Ulf Jasper  <ulf.jasper@web.de>
356         * net/newst-treeview.el (newsticker--treeview-load): Take care of
357         nil value for `newsticker-groups-filename'.
359 2014-11-28  Daiki Ueno  <ueno@gnu.org>
361         * epa.el (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
362         (epa-sign-region, epa-encrypt-region):
363         Use `epg-context-set-{passphrase,progress}-callback', instead of
364         `setf'.  This partially reverts commit 9e48a95c (bug#19150).
365         Reported by José A. Romero L.
367 2014-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
369         * net/eww.el (eww-restore-history):
370         Bind `inhibit-modification-hooks' instead of `after-change-functions'.
372 2014-11-27  Ulf Jasper  <ulf.jasper@web.de>
374         * net/newst-backend.el (newsticker--parse-atom-1.0):
375         Handle embedded (x)html in summary node.
377 2014-11-27  Sam Steingold  <sds@gnu.org>
379         * menu-bar.el (menu-bar-open): When everything else fails,
380         use (mouse-menu-bar-map).
382 2014-11-27  Ulf Jasper  <ulf.jasper@web.de>
384         * net/newst-treeview.el (newsticker-groups-filename):
385         Change default value to nil.  Point out that variable is obsolete in doc
386         string.
387         (newsticker--treeview-load): Change wording of the questions the
388         user is asked when `newsticker-groups-filename' is found to be
389         used and we offer to read and remove the groups file. (bug#19165)
391 2014-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
393         * net/eww.el (eww): Record the new URL immediately, so that if the
394         HTTP fetch fails, we have the right URL in the buffer.
395         (eww-process-text-input): Don't shorten the input field if
396         deleting at the last character (bug#19085).
397         (eww-restore-history): Inhibit change functions while restoring
398         the history.
399         (eww-process-text-input): Fix deletion at the start of the field, too.
400         (eww-mode): Revert mistanken removal of `buffer-disable-undo'.
401         (eww-process-text-input): Try to keep track of the size more reliably.
403         * dom.el (dom-pp): New function.
405 2014-11-27  Eli Zaretskii  <eliz@gnu.org>
407         * vc/vc-bzr.el (vc-bzr-print-log, vc-bzr-expanded-log-entry):
408         Don't assume --long is the default for "bzr log", always specify
409         it explicitly, in case the user defined an alias for 'log' that
410         uses some other format.
412 2014-11-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
414         * progmodes/python.el (python-eldoc--get-doc-at-point):
415         Strip shell output before returning.  (bug#18794)
417 2014-11-27  Dmitry Gutov  <dgutov@yandex.ru>
419         Fix indentation before `!=' and after `+='.  Originally reported
420         in https://github.com/mooz/js2-mode/issues/174.
421         * progmodes/js.el (js--indent-operator-re): Make assignments and
422         (in)equality operator a separate case.
423         (js--continued-expression-p): Escape the second `+' in the regexp.
425 2014-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
427         * window.el (handle-select-window): Deactivate shift-region (bug#19003).
429 2014-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
431         * net/nsm.el (nsm-new-fingerprint-ok-p): Display the certificate
432         when querying about new certificates.
434         * net/shr.el (shr-make-table-1): dom.el changes for table rendering.
436         * dom.el (dom-by-tag): Use `equal' for comparisons so that tags
437         can be strings.
438         (dom-elements): Protect against non-text nodes.
439         (dom-non-text-children): New function.
441         * net/eww.el (eww-tag-title): Use `dom-text'.
443 2014-11-26  Sam Steingold  <sds@gnu.org>
445         * textmodes/sgml-mode.el (sgml-validate-command): Pass -utf8 to tidy.
447 2014-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
449         * net/eww.el (eww-highest-readability): More dom.el fixes.
451 2014-11-26  Ulf Jasper  <ulf.jasper@web.de>
453         * net/newst-backend.el (newsticker--parse-generic-items):
454         Take care of UIDs when adding elements to cache.
456 2014-11-26  Alan Mackenzie  <acm@muc.de>
458         Remove spurious reference to symbol category_properties.
459         * progmodes/cc-engine.el (c-state-pp-to-literal): Fix here.
461 2014-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
463         * net/eww.el: Use the new dom.el accessors throughout.
465         * net/shr.el: Ditto.
467         * dom.el: New file.
469 2014-11-26  Glenn Morris  <rgm@gnu.org>
471         * arc-mode.el (archive-visit-single-files): Add :version.
473 2014-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
475         * net/nsm.el (nsm-format-certificate): Don't bug out on missing
476         elements.
477         (nsm-warnings-ok-p): The new version of this function always
478         returned nil when everything was OK.
480 2014-11-25  Teodor Zlatanov  <tzz@lifelogs.com>
482         * net/gnutls.el (gnutls): Set :group to 'comm so it's near NSM.
484         * net/nsm.el (nsm-check-tls-connection, nsm-save-host)
485         (nsm-warnings-ok-p): Use `gnutls-peer-status-warning-describe'.
487 2014-11-20  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
489         * emacs-lisp/byte-run.el (function-put): Match argument names to
490         docstring.
492 2014-11-24  Sam Steingold  <sds@gnu.org>
494         * vc/vc-hooks.el (vc-directory-exclusion-list):
495         Fix a trivial typo (bug#19171).
497 2014-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
499         * vc/vc-hooks.el (vc-state-base-face): Don't override
500         mode-line-inactive.
502 2014-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
504         * net/eww.el (eww-set-character-encoding): Use `read-coding-system'.
505         (eww-process-text-input): Inhibit read only so that input fields
506         don't get shortened (bug#19085).
508 2014-11-24  Leo Liu  <sdl.web@gmail.com>
510         * emacs-lisp/macroexp.el (macroexp-let2*): New macro.
512         * window.el (with-temp-buffer-window)
513         (with-current-buffer-window, with-displayed-buffer-window):
514         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin):
515         * emacs-lisp/cl-lib.el (substring):
516         * emacs-lisp/cl-extra.el (cl-getf): Use it.
518 2014-11-24  Eli Zaretskii  <eliz@gnu.org>
520         * isearch.el (isearch-update): Don't assume
521         pos-visible-in-window-p will return nil when point is hscrolled
522         out of view.  (Bug#19157)
524 2014-11-20  Andrey Kotlarski  <m00naticus@gmail.com>
526         * net/eww.el (eww-browse-url): Optionally create new eww buffer.
527         (eww-follow-link): Follow in new buffer in case of prefix
528         argument, open externally with double prefix (bug#19130).
530 2014-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
532         * net/eww.el (eww-display-html): Decode the document-defined charset.
533         (eww): Pop to the *eww* buffer immediately after executing the
534         `M-x eww' command to avoid having buffers pop up later.
535         (eww-display-html): Don't pop the *eww* buffer.
536         (eww-display-raw): Ditto.
537         (eww-display-image): Ditto.
538         (eww-follow-link): Make going to #targets in the page work again.
540 2014-11-23  Ivan Shmakov  <ivan@siamics.net>
542         * net/eww.el (eww-suggest-uris): New variable.
543         (eww-suggested-uris): New function.
544         (eww): Default to URL under point.
545         (eww-links-at-point): New function.
547 2014-11-20  Mark Oteiza  <mvoteiza@udel.edu>  (tiny change)
549         * net/eww.el (eww-add-bookmark): Fix bookmark titles.
551 2014-11-17  Mark Oteiza  <mvoteiza@udel.edu>  (tiny change)
553         * net/eww.el (eww-mode-map): Bind backtab to shr-previous-link.
555 2014-11-23  Kenjiro Nakayama  <nakayamakenjiro@gmail.com>
557         * net/eww.el (eww-set-character-encoding): New command and keystroke.
558         (eww-display-raw): Use it (bug#16225).
560 2014-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
562         * net/nsm.el (network-security-level): Rename from
563         `nsm-security-level' and documented.
565         * mail/smtpmail.el (smtpmail-via-smtp): Warn unless encrypted and
566         we're sending a password.
568         * net/nsm.el: New file that implements a Network Security Manager.
570         * net/network-stream.el (open-network-stream): Add a new
571         :warn-unless-encrypted parameter.
572         (network-stream-open-plain): Allow warning unless encrypted.
573         (network-stream-open-starttls): Call the Network Security Manager.
574         (network-stream-open-tls): Ditto.
576 2014-11-23  Leo Liu  <sdl.web@gmail.com>
578         * calendar/cal-china.el (calendar-chinese-from-absolute-for-diary)
579         (calendar-chinese-to-absolute-for-diary)
580         (calendar-chinese-mark-date-pattern, diary-chinese-anniversary):
581         Handle leap months in Chinese calendar.  (Bug#18953)
583 2014-11-22  Alan Mackenzie  <acm@muc.de>
585         Fix error with `mark-defun' and "protected:" in C++ Mode.
586         Fixes: debbugs:19134.
588         * progmodes/cc-cmds.el (c-where-wrt-brace-construct): Handle a
589         return code of (label) from c-beginning-of-decl-1.
591 2014-11-22  Ulf Jasper  <ulf.jasper@web.de>
593         * net/newst-backend.el (newsticker--sentinel-work):
594         Tell `libxml-parse-xml-region' to discard comments. Fixes bug#18787.
596 2014-11-22  Michael Albinus  <michael.albinus@gmx.de>
598         * net/tramp-sh.el (tramp-sh-handle-start-file-process)
599         (tramp-sh-handle-process-file): Propagate `process-environment'.
601         * vc/vc-hg.el (vc-hg-state): No special handling for remote files;
602         Tramp propagates environment variables now.
604 2014-11-22  Eric S. Raymond  <esr@snark>
606         * vc/vc-filewise.el: New file to isolate code used only by the
607         file-oriented back ends (SCCS/RCS/CVS/SRC) which should not
608         live in vc.el and certainly not in vc-hooks.el.
610         * vc/vc-hooks.el, vc-rcs.el, vc-sccs.el: vc-name  -> vc-master-name.
611         This is preaparatory to isolating all the 'master' functions
612         used only by the file-oriented back ends.  With this done first,
613         the substantive diffs will be easier to read.
615 2014-11-21  Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
617         * play/morse.el (nato-alphabet): Mark URL in docstring in a way
618         that is recognized by `help-mode'.
620 2014-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
622         * desktop.el (desktop-create-buffer): Use activate-mark to set
623         `mark-active' (bug#19058).
625 2014-11-21  Eric S. Raymond  <esr@snark>
627         * vc/vc-src.el (vc-src-state): Fix bug that produced spurious
628         nil state.
630 2014-11-21  Eli Zaretskii  <eliz@gnu.org>
632         * vc/vc.el (vc-deduce-fileset): Support invocation from
633         *vc-change-log* buffer.  (Bug#19084)
635 2014-11-13  Matthew Leach  <matthew@mattleach.net>
637         * arc-mode.el (archive-visit-single-files): New.
638         (archive-mode): Visit file if archive contains a single file.
639         (Bug#1702)
641 2014-11-21  Ulrich Müller  <ulm@gentoo.org>
643         * vc/vc.el: Fix a typo in the commentary.
645 2014-11-20  Eric S. Raymond  <esr@snark.thyrsus.com>
647         * vc/vc-src.el, vc/vc.el: Added support for SRC.  Needs more
648         testing and a real log-view mode.
650         * vc/vc-bzr.el, vc/vc-cvs.el, vc/vc-dav.el, vc/vc-git.el:
651         * vc/vc-hg.el, vc/vc-mtn.el, vc/vc-rcs.el, vc/vc-sccs.el:
652         * vc/vc-svn.el, vc/vc.el: Remove editable argument from the backend
653         checkout methods; where it matters (which is only in SCCS and RCS)
654         files are always checked out editable.  This may actually have
655         been dynamically true already - it looks like the vc-next-action
656         code evolved past visiting the other case.  Tested with RCS.
658         * vc/vc-arch.el, vc/vc-bzr.el, vc/vc-cvs.el, vc/vc-dav.el:
659         * vc/vc-git.el, vc/vc-hg.el, vc/vc-mtn.el, vc/vc-rcs.el:
660         * vc/vc-sccs.el, vc/vc-svn.el, vc/vc.el: Remove never-used rev
661         argument from the backend checkin methods.  Only the RCS, SCCS,
662         and CVS back ends tried to do anything with it, and that code was
663         never exercised.  Chiseling away the cruft of decades...
665 2014-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
667         * net/eww.el (eww-render): Remove a no-op :title setting.
669 2014-11-19  Ivan Shmakov  <ivan@siamics.net>
671         * net/eww.el (eww-history-limit): New variable.
672         (eww-save-history): Use it (bug#19105).
673         (eww-reload): Reload the page in the right buffer.
675 2014-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
677         * net/eww.el (eww-desktop-misc-data): Use `cl-remove-duplicates'.
679 2014-11-19  Ivan Shmakov  <ivan@siamics.net>
681         * net/eww.el (eww-desktop-remove-duplicates)
682         (eww-restore-desktop, eww-restore-reload-prompt): New variables.
683         (eww-mode): Set up desktop mode (bug#18010).
684         (eww-desktop-data-save, eww-desktop-data-1)
685         (eww-desktop-history-duplicate, eww-desktop-misc-data)
686         (eww-restore-desktop): New functions.
688 2014-11-19  Eli Zaretskii  <eliz@gnu.org>
690         * vc/vc.el (vc-log-internal-common): Turn on log-view-mode in the
691         correct buffer.  (Bug#19101)
693 2014-11-19  Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
695         * vc/vc-git.el (vc-git-diff): Use "difftool -x diff" with
696         `diff-switches' if `vc-git-diff-switches' is nil.  (Bug#19099)
698 2014-11-19  Artur Malabarba  <bruce.connor.am@gmail.com>
700         * lisp/ido.el (ido-bury-buffer-at-head): New command.
701         (ido-buffer-completion-map): Bind it to C-S-b.
703 2014-11-18  Juri Linkov  <juri@linkov.net>
705         * simple.el (next-line-or-history-element): Wrap next-line
706         in with-no-warnings.
707         (previous-line-or-history-element): Wrap previous-line
708         in with-no-warnings.
710 2014-11-18  Juri Linkov  <juri@linkov.net>
712         * progmodes/grep.el (grep-compute-defaults):
713         Compute grep-highlight-matches before its use.
715 2014-11-18  Juri Linkov  <juri@linkov.net>
717         * replace.el (query-replace-from-to-separator): Turn defvar into
718         defcustom.  Wrap char-displayable-p in ignore-errors because an
719         attempt to autoload char-displayable-p fails during pre-loading.
720         Move (propertize "\0" ... 'separator t) out of customizable part
721         to query-replace-read-from.
722         (query-replace-read-from): Call custom-reevaluate-setting on
723         query-replace-from-to-separator to reevaluate the separator
724         depending on the return value of char-displayable-p.
725         http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00466.html
727 2014-11-18  Juri Linkov  <juri@linkov.net>
729         * bindings.el (minibuffer-local-map): Rebind [down] from
730         next-history-element to next-line-or-history-element, and [up]
731         from previous-history-element to previous-line-or-history-element.
733         * simple.el (next-line-or-history-element)
734         (previous-line-or-history-element): New commands.
735         http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00822.html
737 2014-11-18  Leo Liu  <sdl.web@gmail.com>
739         * emacs-lisp/nadvice.el (define-advice): New macro.
740         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
741         Add define-advice.
742         (lisp-font-lock-keywords-1): Add define-advice.
744 2014-11-18  Daiki Ueno  <ueno@gnu.org>
746         * epg.el (epg-context): New slot EDIT-CALLBACK.
747         (epg--process-filter): Call EDIT-CALLBACK when editing a key.
748         (epg-reset): Reset EDIT-CALLBACK of the context.
749         (epg-start-edit-key): New function.
750         (epg-edit-key): New function.
752 2014-11-18  Paul Eggert  <eggert@cs.ucla.edu>
754         Port new time stamp handling to Emacs 23.2.
755         This fix is for Gnus.  Problem reported by Katsumi Yamaoka.
756         * calendar/time-date.el (time-add, time-subtract, time-less-p):
757         Use eval-and-compile, not eval-when-compile.
759 2014-11-18  Daiki Ueno  <ueno@gnu.org>
761         * epg.el (epg-context-set-passphrase-callback)
762         (epg-context-set-progress-callback): Check if the CALLBACK
763         argument is a function, instead of a cons.
765 2014-11-18  Daiki Ueno  <ueno@gnu.org>
767         * epa-file.el (epa-file-insert-file-contents)
768         (epa-file-write-region): Remove redundant check of
769         epa-pinentry-mode.
770         * epa.el (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
771         (epa-sign-region, epa-encrypt-region): Remove redundant check of
772         epa-pinentry-mode.
774 2014-11-18  Daiki Ueno  <ueno@gnu.org>
776         * epa-file.el (epa-file-insert-file-contents): Don't show
777         "*Error*" buffer if input file does not exist.
778         Reported by Herbert J. Skuhra.
780 2014-11-18  Paul Pogonyshev  <pogonyshev@gmail.com>
781             Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
783         * progmodes/cc-langs.el: Support some of the new keywords in C++11.
784         An alternative version of the patch from bug#13871.
785         (c-operators): Add "alignof".
786         (c-primitive-type-kwds): Add "char16_t", "char32_t".
787         (c-type-modifier-kwds): Add "constexpr", "noexcept".
788         (c-modifier-kwds): Add "thread_local".
789         (c-constant-kwds): Add "nullptr".
791 2014-11-17  Michal Nazarewicz  <mina86@mina86.com>
793         * textmodes/tildify.el (tildify-pattern, tildify-space-string):
794         New variables for specifying tildify pattern and representation of
795         a hard space -- a no-break space by default -- respectively.
796         Being buffer-local they are much easier to handle than
797         `tildify-string-alist' and `tildify-pattern-alist' respectively
798         that have been used so far.  They also works better with derived
799         modes.
800         (tildify-foreach-region-function): New variable specifying
801         a function determining portions of buffer that should be
802         tildified.  It allows major modes to create a filtering function
803         more elaborate than a set of regular expressions.  Initialised to
804         `tildify--deprecated-ignore-evironments' by default to handle now
805         deprecated `tildify-ignored-environments-alist' variable.
806         (tildify--foreach-region): A new function that takes
807         `tildify-foreach-region-function' into account and calls callback
808         for regions of the buffer that should be tildified.
809         (tildify-foreach-ignore-environments): A new function which can be
810         partially applied and used as `tildify-foreach-region-function'.
811         (tildify-ignored-environments-alist, tildify-pattern)
812         (tildify-string-alist, tildify--pick-alist-entry): Mark as obsolete.
813         (tildify--find-env): Rename from `tildify-find-env' and mark as
814         obsolete.
815         (tildify--deprecated-ignore-evironments): New function,
816         immediately marked as obsolete, used to handle deprecated
817         `tildify-ignored-environments-alist'.
819         * textmodes/tex-mode.el (tex-common-initialization):
820         Set `tildify-space-string' and `tildify-foreach-region-function'
821         variables in all variants of TeX mode since `tildify-string-alist'
822         and `tildify-ignored-environments-alist' are now empty by default.
824         * nxml/nxml-mode.el (nxml-mode): Ditto in `nxml-mode'.
825         If encoding supports it use no-break space instead of character
826         entity; this changes previous default which used a numeric
827         reference.
829         * textmodes/sgml-mode.el (sgml-mode): ditto in `sgml-mode'.
830         If encoding does not support no-break space, use numeric reference;
831         this changes previous default which used named entity (“&nbsp;”)
832         in HTML mode.
834 2014-11-17  Ulf Jasper  <ulf.jasper@web.de>
836         * calendar/icalendar.el (icalendar-export-alarms):
837         New customizable variable.  (Bug#5433)
838         (icalendar-export-region): Export alarms as specified in
839         `icalendar-export-alarms'.
840         (icalendar--create-ical-alarm, icalendar--do-create-ical-alarm):
841         New functions for exporting alarms.
843 2014-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
845         * bindings.el (search-map): Move `eww-search-words' to `M-s M-w'.
847 2014-11-17  Paul Eggert  <eggert@cs.ucla.edu>
849         Port new time stamp handling to old Emacs and to XEmacs.
850         This is needed for Gnus, which copies time-date.el and which
851         runs on older Emacs implementations.
852         * calendar/time-date.el (with-decoded-time-value):
853         Handle 'nil' and floating-point arg more compatibly with new Emacs.
854         (encode-time-value, with-decoded-time-value):
855         Obsolete only if new Emacs.
856         (time-add, time-subtract, time-less-p): Define if not new Emacs.
858         Improve time stamp handling, and be more consistent about it.
859         This implements a suggestion made in:
860         http://lists.gnu.org/archive/html/emacs-devel/2014-10/msg00587.html
861         Among other things, this means timer.el no longer needs to
862         autoload the time-date module.
863         * allout-widgets.el (allout-elapsed-time-seconds): Doc fix.
864         * arc-mode.el (archive-ar-summarize):
865         * calendar/time-date.el (seconds-to-time, days-to-time, time-since):
866         * emacs-lisp/timer.el (timer-relative-time, timer-event-handler)
867         (run-at-time, with-timeout-suspend, with-timeout-unsuspend):
868         * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
869         * proced.el (proced-time-lessp):
870         * timezone.el (timezone-time-from-absolute):
871         * type-break.el (type-break-schedule, type-break-time-sum):
872         Simplify by using new functionality.
873         * calendar/cal-dst.el (calendar-next-time-zone-transition):
874         Do not return time values in obsolete and undocumented (HI . LO)
875         format; use (HI LO) instead.
876         * calendar/time-date.el (with-decoded-time-value):
877         Treat 'nil' as current time.  This is mostly for XEmacs.
878         (encode-time-value, with-decoded-time-value): Obsolete.
879         (time-add, time-subtract, time-less-p): Use no-op autoloads, for
880         XEmacs.  Define only if XEmacs, as they're now C builtins in Emacs.
881         * ldefs-boot.el: Update to match new time-date.el
882         * proced.el: Do not require time-date.
884 2014-11-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
886         * net/eww.el (eww-mode): Make the buffer read-only.
887         (eww-form-text): Inhibit read-only-ness in text input fields
888         (bug#16476).
890 2014-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
892         * simple.el (execute-extended-command--shorter): Cut search here.
893         (execute-extended-command): Instead of here.
895 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
897         * progmodes/python.el (python-mode): Avoid use of set-local to
898         keep Emacs 24.x compatibility.
900 2014-11-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
902         * net/shr.el (shr): Move to the new defgroup `web'.
904         * net/eww.el (eww): Ditto.
906         * simple.el (execute-extended-command): Don't show the help
907         message if the binding isn't significantly shorter than the
908         M-x command the user typed (bug#19013).
910 2014-11-16  Ulf Jasper  <ulf.jasper@web.de>
912         * calendar/icalendar.el (icalendar--convert-tz-offset):
913         Return complete cons when offsets of standard time and daylight saving
914         time are equal.
915         (icalendar-export-region): Fix unbound variable warning.
917 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
919         * progmodes/python.el (run-python): Allow CMD to be optional and
920         default it to a safe command, even for Windows.  (bug#18596)
922 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
924         * progmodes/python.el (python-shell-calculate-command):
925         Rename from python-shell-parse-command.  Cleanup.
926         (run-python, run-python-internal): Use it.
927         (python-shell-calculate-pythonpath): Rename from
928         python-new-pythonpath.
929         (python-shell-calculate-process-environment): Use it.
930         (python-shell-calculate-exec-path): Add comment.
932 2014-11-16  Thierry Banel <tbanelwebmin@free.fr>  (tiny change)
934         * calc/calc-arith.el (math-max-list, math-min-list): Fix bug
935         for date handling.
937 2014-11-16  Andreas Schwab  <schwab@linux-m68k.org>
939         * version.el (emacs-repository-get-version): Use git rev-parse
940         instead of git log.
942 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
944         * progmodes/python.el (python-indent-calculate-levels):
945         Fix indentation behavior multiline dedenter statement.  (Bug#18432)
947 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
949         * progmodes/python.el (python-indent-region):
950         Use python-indent-line and skip special cases.  (Bug#18843)
952 2014-11-16  Peder O. Klingenberg  <peder@klingenberg.no>
954         * mail/emacsbug.el (report-emacs-bug): Make a better guess at
955           envelope-from when reporting through sendmail (bug#19054).
957 2014-11-16  Oscar Fuentes <ofv@wanadoo.es>
959         Add faces for the VC modeline state indicator.
960         * lisp/vc/vc-hooks.el:
961         (vc-state-faces, vc-state-base-face)
962         (vc-up-to-date-state, vc-needs-update-state)
963         (vc-locked-state, vc-locally-added-state)
964         (vc-conflict-state, vc-removed-state)
965         (vc-missing-state, vc-edited-state):
966         New faces.
967         (vc-default-mode-line-string): Use them
969 2014-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
971         * emacs-lisp/backquote.el (backquote-process): Optimize away ",'".
973 2014-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
975         * net/eww.el (eww-search-words): Mention `eww-search-prefix'.
977 2014-11-15  Fabián Ezequiel Gallina  <fgallina@gnu.org>
979         * progmodes/python.el (python-eldoc-setup-code): Enhance string
980         type checks, simplify printing.  (Bug#18962)
982 2014-11-14  Ivan Andrus  <darthandrus@gmail.com>
984         * progmodes/python.el (python-shell-font-lock-kill-buffer):
985         (python-shell-font-lock-with-font-lock-buffer)
986         (python-shell-get-buffer, python-ffap-module-path):
987         Use `derived-mode-p' instead of equality test on `major-mode'.
989 2014-11-14  Fabián Ezequiel Gallina  <fgallina@gnu.org>
991         * progmodes/python.el (python-shell-virtualenv-root): Rename from
992         python-shell-virtualenv-path.
993         (python-shell-internal-get-process-name)
994         (python-shell-calculate-process-environment)
995         (python-shell-calculate-exec-path): Use it.
997 2014-11-14  Eli Zaretskii  <eliz@gnu.org>
999         * bindings.el (search-map): Fix last change: don't use 'kbd' in
1000         bindings.el, since it is not yet loaded when bindings.el is
1001         preloaded.
1003 2014-11-14  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1005         * progmodes/python.el (python-shell-completion-get-completions):
1006         Fix previous merge.
1008 2014-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1010         * net/eww.el (eww-render): Don't set the title to the URL.
1012 2014-11-13  Ulrich Müller  <ulm@gentoo.org>
1014         * version.el (emacs-repository-get-version): Call `git log'
1015         command with proper format argument (bug#19049).
1017 2014-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1019         * bindings.el (search-map): Bind M-s M-s to `eww-search-words'.
1021 2014-11-14  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
1023         * net/eww.el (eww-search-words): New command (bug#16258).
1025 2014-11-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1027         * net/shr.el (shr-inhibit-images): Add a doc string.
1029         * net/eww.el (eww-after-render-hook): New variable.
1030         (eww-render): Use it.
1032         * net/shr.el (shr-descend): Don't descend further than
1033         `max-specpdl-size' allows (bug#16587).
1034         (shr-depth): New variable.
1035         (shr-warning): New variable.
1037 2014-11-13  Ivan Shmakov  <ivan@siamics.net>
1039         * net/shr.el (shr-parse-base): Handle <base href=""> correctly.
1040         (shr-expand-url): Expand absolute URLs correctly (bug#17958).
1042 2014-11-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1044         * net/eww.el (eww): Add comment to clarify.
1046         * net/shr.el (shr-parse-image-data): Remove blocked bits from
1047         external SVG images.
1048         (shr-tag-object): Display images in <object> forms (bug#16244).
1049         (shr-tag-table): Also insert <objects> after the tables.
1051 2014-11-13  Michael Albinus  <michael.albinus@gmx.de>
1053         * vc/vc-hg.el (vc-hg-state): Disable pager.  (Bug#18940)
1055 2014-11-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1057         * net/eww.el (eww-form-file): Fix version number.
1059 2014-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1061         * net/eww.el (eww-form-file): :type isn't a valid `defface' keyword.
1063 2014-11-10  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
1065         * net/eww.el(eww-form-file(defface)): New defface of file upload form.
1066         (eww-submit-file): New key map of file upload.
1067         (eww-form-file): New file upload button and file name context.
1068         (eww-select-file): Select file and display selected file name.
1069         (eww-tag-input): Handle input tag of file type.
1070         (eww-update-field): Add point offset.
1071         (eww-submit): Add submit with multipart/form-data.
1073 2014-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1075         * net/eww.el (eww-render, eww-display-html, eww-setup-buffer):
1076         Allow taking a buffer to render data in.  This allows using several
1077         eww buffers (bug#16211).
1079 2014-11-10  Charles Rendleman  <carendle@gmail.com>  (tiny change)
1081         * net/eww.el (eww-download-callback): Save only the file contents,
1082         not the headers.
1084 2014-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1086         * net/eww.el (eww-data): New plist to store all the data relevant
1087         to a single page, used throughout the file instead of the
1088         variables `eww-current-url', `eww-current-dom',
1089         `eww-current-source', and `eww-current-title'.
1090         (eww-readable): Copy over pertinent data from the parent page.
1091         (eww-save-history): Don't let the history grow infinitely.
1093         * net/eww.el: Remove `eww-next-url', `eww-previous-url',
1094         `eww-up-url', `eww-home-url', `eww-start-url' and
1095         `eww-contents-url' and put the data into the `eww-data' plist.
1096         This allow restoring these values after going back in the history.
1098 2014-11-10  Sylvain Chouleur  <sylvain.chouleur@gmail.com>  (tiny change)
1100         Allow VTIMEZONE where daylight and standard time zones are equal.
1101         See: http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00494.html
1102         * calendar/icalendar.el (icalendar--convert-tz-offset):
1103         Support timezone without daylight saving time.
1105 2014-11-10  Glenn Morris  <rgm@gnu.org>
1107         * startup.el (command-line): Handle nil elements in load-path.
1109 2014-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
1111         * help.el (view-lossage): Include the actual commands run.
1113 2014-11-10  Dmitry Gutov  <dgutov@yandex.ru>
1115         * vc/vc-dir.el (vc-dir-hide-state): Also hide `ignored' items when
1116         no state is specified.  (Bug#18964)
1118 2014-11-09  Eric Ludlam  <zappo@gnu.org>
1120         * emacs-lisp/eieio-custom.el (eieio-customize-object):
1121         Set eieio-cog (current group) to g, which is an improved form of input
1122         group.
1124 2014-11-09  Juri Linkov  <juri@jurta.org>
1126         * isearch.el (isearch-message-prefix): Show "Multi-file" and
1127         "Multi-buffer" instead of "Multi".  (Bug#13592)
1129         * misearch.el (multi-isearch-file-list):
1130         Autoload multi-isearch-buffer-list and multi-isearch-file-list.
1131         (multi-isearch-end): Reset multi-isearch-buffer-list and
1132         multi-isearch-file-list to nil.
1134 2014-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
1136         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
1137         Don't call byte-compile-preprocess since the result will go through
1138         cconv.
1139         (byte-compile-output-docform): Handle uninterned `name' correctly.
1140         * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Use interned name
1141         to circumvent byte-compiler bug.
1143         * emacs-lisp/macroexp.el (macroexp--expand-all): Fix typo.
1144         (macroexp--compiler-macro): Remove left-over debug code.
1146         * emacs-lisp/cl-extra.el (cl-get): Silence compiler warning.
1148 2014-11-08  Juri Linkov  <juri@jurta.org>
1150         * simple.el (shell-command): Use buffer-name when output-buffer is
1151         a buffer.  (Bug#18096)
1153 2014-11-08  Juri Linkov  <juri@jurta.org>
1155         * minibuffer.el (minibuffer-completion-help): Compare this-command
1156         with completion-at-point.  (Bug#17809)
1158 2014-11-08  Glenn Morris  <rgm@gnu.org>
1160         * emacs-lisp/bytecomp.el (byte-compile-report-error):
1161         Allow the argument to be a string.  Due to the vague doc,
1162         it was already being used this way.
1164 2014-11-08  Michael Albinus  <michael.albinus@gmx.de>
1166         * net/tramp.el (tramp-check-cached-permissions): Include hop in
1167         the constructed Tramp file name.  (Bug#18943)
1169 2014-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1171         * emulation/cua-base.el (cua--select-keymaps): Use region-active-p
1172         (bug#18952).
1173         (cua-set-mark, cua--post-command-handler-1):
1174         * emulation/cua-gmrk.el (cua-cancel-global-mark): Same.
1176 2014-11-08  Michael Albinus  <michael.albinus@gmx.de>
1178         * files.el (file-name-non-special): Wrap the call of
1179         `insert-file-contents' by `unwind-protect', in order to set the
1180         buffer's file name anyway.  (Bug#18891)
1182 2014-11-08  Alan Mackenzie  <acm@muc.de>
1184         Fix wrong bound to c-font-lock-declarators.  Fixes bug #18948.
1185         * progmodes/cc-fonts.el (c-font-lock-declarations):
1186         Pass "(point-max)" as bound to c-font-lock-declarators, not "limit", as
1187         the buffer is sometimes narrowed to less than "limit" (e.g., in
1188         the presence of macros).
1190 2014-11-08  Michael Albinus  <michael.albinus@gmx.de>
1192         * net/tramp.el (tramp-error-with-buffer): Show connection buffer
1193         only when message appeared in minibuffer.  (Bug#18891)
1195         * net/tramp-adb.el (tramp-adb-handle-file-attributes):
1196         * net/tramp-gvfs.el (tramp-gvfs-handle-file-attributes):
1197         * net/tramp-sh.el (tramp-sh-handle-file-attributes): Return nil in
1198         case of errors.
1200 2014-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1202         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
1203         Don't compile before eval in `eval-and-compile'.
1204         (byte-compile-arglist-warn): Add check for defining macros after their
1205         first use.  Check call use even if the function is fboundp.
1207 2014-11-08  Richard Stallman  <rms@gnu.org>
1209         * mail/rmail.el (rmail-epa-decrypt): Detect armor with line prefixes.
1210         Check more carefully for mime-part specified character set.
1211         Check for mime-part Content Transfer Encoding.
1212         Notify if no armor found.
1214 2014-11-08  Martin Rudalics  <rudalics@gmx.at>
1216         * faces.el (face-set-after-frame-default): Enable running
1217         `window-configuration-change-hook'.
1219 2014-11-07  Juri Linkov  <juri@jurta.org>
1221         * replace.el: History for query replace pairs.
1222         (query-replace-defaults): Promote to a list of cons cell.  Doc fix.
1223         (query-replace-from-to-separator): New variable.
1224         (query-replace-read-from): Let-bind query-replace-from-to-history
1225         to a list of FROM-TO strings created from query-replace-defaults
1226         and separated by query-replace-from-to-separator.  Use it as
1227         the history while reading from the minibuffer.  Split the returned
1228         string by the separator to get FROM and TO parts, and add them
1229         to the history variables.
1230         (query-replace-read-to): Add FROM-TO pairs to query-replace-defaults.
1231         (query-replace-regexp-eval): Let-bind query-replace-defaults to nil.
1232         http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00253.html
1234         * isearch.el (isearch-text-char-description): Keep characters
1235         intact and put formatted strings with the `display' property.
1237 2014-11-07  Martin Rudalics  <rudalics@gmx.at>
1239         * cus-start.el (frame-resize-pixelwise): Fix group.
1240         (frame-inhibit-implied-resize): Add entry.
1242 2014-11-07  Daiki Ueno  <ueno@gnu.org>
1244         * epa.el (epa-pinentry-mode): New user option.
1245         (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
1246         (epa-sign-region, epa-encrypt-region): Respect epa-pinentry-mode.
1247         * epa-file.el (epa-file-insert-file-contents)
1248         (epa-file-write-region): Respect epa-pinentry-mode.
1250 2014-11-07  Daiki Ueno  <ueno@gnu.org>
1252         * epg.el (epg--list-keys-1): Ignore fields after the 15th field
1253         (bug#18979).  Reported by Hideki Saito.
1255 2014-11-06  Daiki Ueno  <ueno@gnu.org>
1257         * emacs-lisp/package.el (package--display-verify-error): New function.
1258         (package--check-signature): Use it to display output sent to stderr.
1260 2014-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
1262         * subr.el (pop): Don't call the getter twice (bug#18968).
1264         * emacs-lisp/macroexp.el (macroexp--expand-all): Optimize away trivial
1265         uses of `funcall'.
1267 2014-11-06  Daiki Ueno  <ueno@gnu.org>
1269         * epa.el (epa-error-buffer): New variable.
1270         (epa-display-error): New function.
1271         (epa-decrypt-file, epa-verify-file, epa-verify-region)
1272         (epa-delete-keys, epa-import-keys): Display output sent to stderr.
1273         (epa-sign-file, epa-sign-region, epa-encrypt-region)
1274         (epa-export-keys, epa-insert-keys): Display output sent to stderr.
1275         Use setf instead of epg-context-set-*.
1276         * epa-file.el (epa-file-insert-file-contents):
1277         Use epa-display-error instead of epa-display-info.  Mimic the behavior
1278         of jka-compr when decryption program is not found.
1279         (epa-file-write-region): Use epa-display-error instead of
1280         epa-display-info.
1282 2014-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1284         * vc/vc.el (vc-region-history): New command.
1285         (vc-print-log-internal): Use cl-some.
1287         * vc/vc-git.el (vc-git-region-history): New function.
1288         (vc-git-region-history-mode-map)
1289         (vc-git--log-view-long-font-lock-keywords)
1290         (vc-git-region-history-font-lock-keywords): New vars.
1291         (vc-git-region-history-font-lock): New function.
1292         (vc-git-region-history-mode): New major mode.
1294 2014-11-05  Tassilo Horn  <tsdh@gnu.org>
1296         * net/eww.el (subr-x): Require subr-x at compile-time because eww
1297         uses string-trim.
1299 2014-11-05  Daiki Ueno  <ueno@gnu.org>
1301         * epg.el (epg-context): Add new slot ERROR-OUTPUT.
1302         (epg-error-output): New buffer-local variable.
1303         (epg--start): Initialize epg-error-output.
1304         (epg--process-filter): Record output lines sent to stderr, in
1305         epg-error-output.
1306         (epg-wait-for-completion): Copy epg-error-output to ERROR-OUTPUT
1307         slot of context.
1308         * epa-file.el (epa-file-insert-file-contents): On error, display
1309         output sent to stderr.
1310         (epa-file-write-region): Likewise.
1312 2014-11-05  Eli Zaretskii  <eliz@gnu.org>
1314         * jit-lock.el (jit-lock-stealth-fontify): Be tolerant to nil being
1315         returned by load-average.
1317 2014-11-05  Michael Albinus  <michael.albinus@gmx.de>
1319         * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer): Don't use
1320         a local copy; setting `inhibit-file-name-handlers' proper might be
1321         more performant.  (Bug#18751)
1323 2014-11-05  Glenn Morris  <rgm@gnu.org>
1325         * mail/emacsbug.el (report-emacs-bug): No longer include
1326         recent-keys in the report.  (Bug#18900)
1328 2014-11-04  Paul Eggert  <eggert@cs.ucla.edu>
1330         * mouse.el (mouse-drag-line): Fix misspelling of "right-fringe".
1332 2014-11-04  Teodor Zlatanov  <tzz@lifelogs.com>
1334         * net/eww.el (eww): Trim URL with `string-trim'.
1335         Suggested by Vibhav Pant <vibhavp@gmail.com>.
1337 2014-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1339         * net/eww.el (eww-score-readability): Don't count comments positively.
1341         * net/shr.el (shr-retransform-dom): Typo fix.
1343         * net/eww.el (eww-score-readability): Parse SVC images correctly.
1344         (eww-display-html): Don't leave point inside forms.
1346         * net/shr.el: Ditto.
1348 2014-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
1350         * emacs-lisp/edebug.el (edebug-safe-prin1-to-string): Assume that
1351         edebug-prin1-to-string already handles circularity.
1353         * emacs-lisp/byte-run.el (defun-declarations-alist): Fix compiler-macro
1354         autoloading when specified as a lambda.
1356         * simple.el (execute-extended-command--last-typed): New var.
1357         (read-extended-command): Set it.
1358         Don't complete obsolete commands.
1359         (execute-extended-command--shorter-1)
1360         (execute-extended-command--shorter): New functions.
1361         (execute-extended-command): Use them to suggest shorter names.
1362         (indicate-copied-region, deactivate-mark): Use region-active-p.
1364 2014-11-03  Michael Albinus  <michael.albinus@gmx.de>
1366         * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer): Use a
1367         local copy of FILENAME, when it is remote.  (Bug#18751)
1369         * net/tramp-adb.el (tramp-adb-handle-process-file): Do not raise
1370         an error when the command fails; the return code must indicate.
1371         (tramp-adb-send-command-and-check): Fix docstring.
1373 2014-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1375         * net/shr.el (shr-retransform-dom): Don't ignore elements that
1376         have no children like <br />.
1378         * net/eww.el (eww-display-html): Clear `url-queue'.
1379         (eww-display-pdf): New function.
1380         (eww-render): Display PDFs with `doc-view'.
1381         (url-queue): Require `url-queue' to avoid compilation warning.
1382         (eww-colorize-region): Remove duplicate function.
1383         (eww-tag-body): Use `shr-colorize-region'.
1385 2014-11-03  Yoni Rabkin <yrk@gnu.org>
1387         * net/eww.el (eww-list-bookmarks): Autoload.
1389 2014-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1391         * net/shr.el (shr-retransform-dom): Allow several text sub-nodes.
1393         * net/eww.el (eww-display-html): The charset is called `utf-8',
1394         not `utf8'.
1395         (eww-readable): Decode the saved text correctly.
1396         (eww-readable): Save the history before displaying so that we can
1397         go back to the non-readable version.
1398         (eww-display-html): Don't try to decode the text if we've been
1399         passed in a pre-parsed DOM.
1400         (eww-tag-title): Remove newlines and extra whitespace from the
1401         displayed title.
1403 2014-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
1405         * net/eww.el (eww-readable): New command and keystroke.
1407         * net/shr.el (shr-retransform-dom): New function.
1409         * net/eww.el (eww-display-html): Set `eww-current-source' in the
1410         correct buffer.
1411         (eww-view-source): Use it.
1413 2014-11-02  Ivan Shmakov <ivan@siamics.net>
1415         * net/eww.el (eww): Recognize colon-delimited IPv6 addresses.
1416         (Bug#18603).
1418 2014-11-02  Brian McKenna <brian@brianmckenna.org>  (tiny change)
1420         * net/eww.el (eww-submit): Encode empty form values as "".  (Bug#17785).
1422 2014-11-02  Ivan Shmakov <ivan@siamics.net>
1424         * net/eww.el (eww): Allow "file:/file/name" URLs.  (Bug#18825).
1426 2014-11-02  Ivan Shmakov <ivan@siamics.net>
1428         * net/eww.el (eww-mode-map): Remove mentions of `eww-quit'.
1429         (Bug#18834).
1431 2014-11-02  Eric Abrahamsen  <eric@ericabrahamsen.net>
1433         * emacs-lisp/eieio.el (eieio-edebug-prin1-to-string): Adjust for
1434         use as advice.
1435         (edebug-setup-hook): Advise `edebug-prin1-to-string'.  (Bug#18897)
1437 2014-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
1439         * emacs-lisp/pp.el (pp-macroexpand-expression): Use macroexpand-1
1440         (bug#18821).
1441         * progmodes/elisp-mode.el (emacs-lisp-macroexpand): Idem.
1443 2014-11-01  Michael R. Mauger  <michael@mauger.com>
1445         * sql.el (sql-mode-oracle-font-lock-keywords): Correct regexp
1446         syntax, add new keywords, and parse longer keywords first.
1447         (sql-redirect-one): Protect against empty command.
1448         (sql-mode, sql-interactive-mode): Set `custom-mode-group' property
1449         to SQL.  (Bug#14759)
1451 2014-11-01  Michael R. Mauger  <michael@mauger.com>
1453         * sql.el (sql-interactive-mode, sql-stop): Correct fix for
1454         Bug#16814 with let-bind of comint-input-ring variables around read
1455         and save functions.
1457 2014-11-01  Michael Albinus  <michael.albinus@gmx.de>
1459         * net/tramp-cache.el (tramp-get-file-property)
1460         (tramp-set-file-property): Check that `tramp-cache-get-count-*'
1461         and `tramp-cache-set-count-*' are bound.  Otherwise, there might
1462         be compiler warnings.
1464         * net/tramp-sh.el (tramp-get-remote-uid, tramp-get-remote-gid):
1465         Return -1 respective "UNKNOWN", if uid or gid cannot be determined.
1467 2014-11-01  Eli Zaretskii  <eliz@gnu.org>
1469         * progmodes/compile.el (compilation-mode): Turn off deferred
1470         fontifications locally.  (Bug#18856)
1472 2014-11-01  Wolfgang Jenkner  <wjenkner@inode.at>
1474         * net/tramp-sh.el (tramp-send-command): Fix the case where the
1475         remote-echo connection property is non-nil (bug#18858).
1477 2014-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
1479         * simple.el (newline): Add assertions to try and help catch bug#18913.
1481         * emulation/cua-base.el (cua-delete-region): Use delete-active-region
1482         (bug#18886).
1483         (cua--last-deleted-region-pos, cua--last-deleted-region-text): Remove.
1485 2014-11-01  Kim F. Storm  <storm@cua.dk>
1487         Restore cua-delete-copy-to-register-0 and M-v command (bug#18886).
1488         * delsel.el (delete-selection-save-to-register)
1489         (delsel--replace-text-or-position): New vars.
1490         (delete-active-region): Use them.
1491         (delete-selection-repeat-replace-region): New command, moved from
1492         cua-base.el.
1493         * emulation/cua-base.el (cua--repeat-replace-text): Remove var.
1494         (cua-repeat-replace-region): Move command to delsel.el.
1495         (cua--init-keymaps): Update binding accordingly.
1496         (cua-mode): Set delete-selection-save-to-register.
1498 2014-11-01  Alan Mackenzie  <acm@muc.de>
1500         Make blink-parens work with a closing template delimiter.
1501         * progmodes/cc-cmds.el (c-electric-lt-gt): Cause a redisplay
1502         before calling blink-paren-function, so as to apply syntax-table
1503         properties to the ">".
1505 2014-11-01  Jan Djärv  <jan.h.d@swipnet.se>
1507         * select.el (gui-get-selection): Comment: data-type ignored on NS.
1509 2014-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1511         * emacs-lisp/macroexp.el (macroexpand-1): New function (bug#18821).
1512         (macroexp--expand-all): Unrelated tweaks.
1514         * emacs-lisp/gv.el (gv-get): Use macroexpand-1.
1516 2014-10-30  Glenn Morris  <rgm@gnu.org>
1518         * startup.el (command-line): Remove pointless attempt to avoid
1519         statting the file-system (which expand-file-name doesn't do).
1521 2014-10-30  Daniel Colascione  <dancol@dancol.org>
1523         Add "enum class" support to C++ mode.
1524         * progmodes/cc-langs.el (c-after-brace-list-decl-kwds)
1525         (c-after-brace-list-key): New language consts/variables.
1526         * progmodes/cc-engine.el (c-looking-at-decl-block):
1527         Exclude spurious match of "enum struct" from decl-block recognition.
1528         (c-backward-colon-prefixed-type): New function.
1529         (c-backward-over-enum-header): Call above function to extend
1530         recognition of enum structure.
1532 2014-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
1534         * progmodes/cc-defs.el (c--macroexpand-all): New function (bug#18845).
1535         (c-lang-defconst):
1536         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Use it.
1538 2014-10-30  Eli Zaretskii  <eliz@gnu.org>
1540         * progmodes/compile.el (compilation-start):
1541         If compilation-scroll-output is non-nil, don't force window-start of
1542         the compilation buffer to be at beginning of buffer.  (Bug#18874)
1544         * startup.el (fancy-about-text): Read the entire tutorial, not
1545         just its first 256 bytes.  (Bug#18760)
1547 2014-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
1549         * emacs-lisp/bytecomp.el: Require cl-extra (bug#18804).
1550         * emacs-lisp/cl-extra.el: Add missing provide.
1552         * emacs-lisp/bytecomp.el (byte-compile-and-folded): Optimize case where
1553         all args are copyable (bug#18767).
1554         (=, <, >, <=, >=): Re-enable the optimization.
1556 2014-10-29  Glenn Morris  <rgm@gnu.org>
1558         * net/rcirc.el (rcirc-fill-column): Unbump :version.  Mark :risky.
1560         * version.el (emacs-bzr-version, emacs-bzr-get-version):
1561         Revert 2014-10-26 change.
1563 2014-10-29  Paul Eggert  <eggert@cs.ucla.edu>
1565         Simplify use of current-time and friends.
1566         * allout-widgets.el (allout-widgets-hook-error-handler):
1567         * calendar/appt.el (appt-display-message):
1568         * calendar/icalendar.el (icalendar--convert-float-to-ical):
1569         * calendar/timeclock.el (timeclock-in, timeclock-when-to-leave)
1570         (timeclock-last-period, timeclock-day-base):
1571         * eshell/em-ls.el (eshell-ls-file):
1572         * eshell/esh-util.el (eshell-parse-ange-ls):
1573         * generic-x.el (named-database-print-serial):
1574         * net/newst-backend.el (newsticker--get-news-by-url-callback)
1575         (newsticker-get-news, newsticker--sentinel-work)
1576         (newsticker--image-get, newsticker--image-sentinel):
1577         * net/tramp-sh.el (tramp-get-remote-touch):
1578         * progmodes/opascal.el (opascal-debug-log):
1579         * textmodes/remember.el (remember-mail-date)
1580         (remember-store-in-files):
1581         * vc/vc-annotate.el (vc-annotate-display-autoscale)
1582         (vc-default-annotate-current-time):
1583         * vc/vc-bzr.el (vc-bzr-shelve-snapshot):
1584         * vc/vc-cvs.el (vc-cvs-annotate-current-time):
1585         * vc/vc-rcs.el (vc-rcs-annotate-current-time):
1586         Omit unnecessary call to current-time.
1587         * calendar/time-date.el (time-to-seconds) [!float-time]:
1588         * vc/vc-annotate.el (vc-annotate-convert-time):
1589         Use current time if arg is nil, to be compatible with float-time.
1590         (time-date--day-in-year): New function, with most of the guts of
1591         the old time-to-day-in-year.
1592         (time-to-day-in-year): Use it.
1593         (time-to-days): Use it, to avoid decoding the same time stamp twice.
1594         * calendar/timeclock.el (timeclock-time-to-date):
1595         Arg is now optional, like current-time-string.
1596         (timeclock-update-mode-line):
1597         Don't call current-time twice to get the current time stamp,
1598         as this can lead to inconsistent results.
1599         * completion.el (cmpl-hours-since-origin):
1600         * ido.el (ido-time-stamp):
1601         * vc/vc-annotate.el (vc-annotate-convert-time):
1602         Simplify by using float-time.
1603         * completion.el (save-completions-to-file):
1604         Rename local var to avoid confusion.
1605         * net/rcirc.el (rcirc-float-time): Simplify to an alias because
1606         time-to-seconds now behaves like float-time with respect to nil arg.
1607         * subr.el (progress-reporter-do-update):
1608         Don't call float-time unless needed.
1610 2014-10-29  Leo Liu  <sdl.web@gmail.com>
1612         * net/rcirc.el (rcirc-fill-column): Use function.
1613         (rcirc-markup-fill): Remove adjustment.
1615 2014-10-28  Christopher Schmidt  <ch@ristopher.com>
1617         * calc/calc.el (quick-calc):
1618         * calc/calc-aent.el (calc-do-quick-calc): New argument INSERT.
1620 2014-10-28  Sam Steingold  <sds@gnu.org>
1622         * net/rcirc.el (rcirc-fill-column): Allow any symbolic value for
1623         the sake of `window-body-width' (in addition to `frame-width').
1625 2014-10-26  Eric S. Raymond  <esr@thyrsus.com>
1627         * version.el: Fix some fallback values to conform to the actual
1628         release number.
1630 2014-10-25  Eric S. Raymond  <esr@thyrsus.com>
1632         * Makefile.in: Change some production names so they're neutral
1633         about the repository type.
1635 2014-10-25  Michael Albinus  <michael.albinus@gmx.de>
1637         * net/tramp-gvfs.el (tramp-gvfs-methods-mounttracker)
1638         (tramp-gvfs-mountlocation-signature): Check `tramp-gvfs-enabled'
1639         during initialization.  (Bug#18774)
1641 2014-10-25  Vincent Belaïche  <vincentb1@users.sourceforge.net>
1643         * ses.el (macroexp): Add require for this package, so that
1644         function `ses--cell' gets macroexp-quote --- this change was
1645         supposed to be in my previous commit, but left out by mistake.
1646         (ses--cell): Do not make formula a macroexp-quote of value when
1647         value, not formula, is *skip*.
1649 2014-10-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
1651         * ses.el (macroexp): Add require for this package, so that function
1652         `ses--cell gets macroexp-quote.
1653         (ses--cell): Makes formula a macroexp-quote of value when formula
1654         is nil. The rationale of this changr is to allow in the future
1655         shorter SES files, e.g. we could have only `(ses-cell A1 1.0)'
1656         instead of `(ses-cell A1 1.0 1.0 nil REFLIST)'. In such a case
1657         reference list REFLIST would be re-computed after load --- thus
1658         trading off load time against file size.
1660         * emacs-lisp/package.el (package--alist-to-plist-args):
1661         Use macroexp-quote instead of a lambda expression which has the same
1662         content as macroexp-quote.
1663         (macroexp): Add require for this package, so that function
1664         `package--alist-to-plist-args' gets macroexp-quote.
1666         * emacs-lisp/macroexp.el (macroexp-quote): New defun.
1668 2014-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
1670         * term/ns-win.el (ns-store-cut-buffer-internal)
1671         (ns-copy-including-secondary): Use gui-set-selection (bug#18816).
1673 2014-10-24  Martin Rudalics  <rudalics@gmx.at>
1675         * mouse.el (mouse-drag-line): Don't use mouse-pixel-position.
1676         Calculate increment from last position instead of window edge.
1677         Add right- and bottom-divider bindings to transient map.
1679 2014-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1681         * emacs-lisp/cl-macs.el (cl-defstruct): Define an internal predicate
1682         even if :predicate was nil, for the benefit of typep.
1683         Record the name of the predicate for typep's use.
1684         (cl--make-type-test): Use pcase.  Obey new
1685         cl-deftype-satisfies property.
1687         * epg.el: Use cl-defstruct.
1688         (epg-make-data-from-file, epg-make-data-from-string, epg-data-file)
1689         (epg-data-string): Define via cl-defstruct.
1690         (epg--gv-nreverse): New macro.
1691         (epg-context--make): New constructor (provided vi cl-defstruct).
1692         (epg-make-context): Rewrite using it.
1693         (epg-context-protocol, epg-context-program)
1694         (epg-context-home-directory, epg-context-armor, epg-context-textmode)
1695         (epg-context-include-certs, epg-context-cipher-algorithm)
1696         (epg-context-digest-algorithm, epg-context-compress-algorithm)
1697         (epg-context-passphrase-callback, epg-context-progress-callback)
1698         (epg-context-signers, epg-context-sig-notations, epg-context-process)
1699         (epg-context-output-file, epg-context-result, epg-context-operation)
1700         (epg-context-pinentry-mode): Define using cl-defstruct.
1701         (epg-context-set-protocol, epg-context-set-program)
1702         (epg-context-set-include-certs, epg-context-set-cipher-algorithm)
1703         (epg-context-set-digest-algorithm)
1704         (epg-context-set-sig-notations, epg-context-set-process)
1705         (epg-context-set-output-file, epg-context-set-result)
1706         (epg-context-set-operation, epg-context-set-pinentry-mode)
1707         (epg-context-set-compress-algorithm): Remove.  Use setf instead.
1708         (epg-context-set-armor, epg-context-set-textmode)
1709         (epg-context-set-signers): Redefine using setf
1710         and declare as obsolete.
1711         (epg-context-set-passphrase-callback)
1712         (epg-context-set-progress-callback): Use setf.
1713         (epg-signature-notations): Rename from epg-sig-notations.
1714         (epg-make-signature, epg-signature-status, epg-signature-key-id)
1715         (epg-signature-validity, epg-signature-fingerprint)
1716         (epg-signature-creation-time, epg-signature-expiration-time)
1717         (epg-signature-pubkey-algorithm, epg-signature-digest-algorithm)
1718         (epg-signature-class, epg-signature-version): Define vi cl-defstruct.
1719         (epg-signature-set-status, epg-signature-set-key-id)
1720         (epg-signature-set-validity, epg-signature-set-fingerprint)
1721         (epg-signature-set-creation-time, epg-signature-set-expiration-time)
1722         (epg-signature-set-pubkey-algorithm)
1723         (epg-signature-set-digest-algorithm, epg-signature-set-class)
1724         (epg-signature-set-version, epg-signature-set-notations): Remove.
1725         Use setf instead.
1726         (epg-make-new-signature, epg-new-signature-type)
1727         (epg-new-signature-pubkey-algorithm)
1728         (epg-new-signature-digest-algorithm, epg-new-signature-class)
1729         (epg-new-signature-creation-time, epg-new-signature-fingerprint):
1730         Define using cl-defstruct.
1731         (epg-make-key, epg-key-owner-trust, epg-key-sub-key-list)
1732         (epg-key-user-id-list): Define using cl-defstruct.
1733         (epg-key-set-sub-key-list, epg-key-set-user-id-list): Remove.
1734         Use setf instead.
1735         (epg-make-sub-key, epg-sub-key-validity, epg-sub-key-capability)
1736         (epg-sub-key-secret-p, epg-sub-key-algorithm, epg-sub-key-length)
1737         (epg-sub-key-id, epg-sub-key-creation-time)
1738         (epg-sub-key-expiration-time, epg-sub-key-fingerprint): Define using
1739         cl-defstruct.
1740         (epg-sub-key-set-fingerprint): Remove.  Use setf instead.
1741         (epg-make-user-id, epg-user-id-validity, epg-user-id-string)
1742         (epg-user-id-signature-list): Define using cl-defstruct.
1743         (epg-user-id-set-signature-list): Remove.  Use setf instead.
1744         (epg-make-key-signature, epg-key-signature-validity)
1745         (epg-key-signature-pubkey-algorithm, epg-key-signature-key-id)
1746         (epg-key-signature-creation-time, epg-key-signature-expiration-time)
1747         (epg-key-signature-user-id, epg-key-signature-class)
1748         (epg-key-signature-exportable-p): Define using cl-defstruct.
1749         (epg-make-sig-notation, epg-sig-notation-name)
1750         (epg-sig-notation-value, epg-sig-notation-human-readable)
1751         (epg-sig-notation-critical): Define using cl-defstruct.
1752         (epg-sig-notation-set-value): Remove.  Use setf instead.
1753         (epg-make-import-status, epg-import-status-fingerprint)
1754         (epg-import-status-reason, epg-import-status-new)
1755         (epg-import-status-user-id, epg-import-status-signature)
1756         (epg-import-status-sub-key, epg-import-status-secret): Define using
1757         cl-defstruct.
1758         (epg-make-import-result, epg-import-result-considered)
1759         (epg-import-result-no-user-id, epg-import-result-imported)
1760         (epg-import-result-imported-rsa, epg-import-result-unchanged)
1761         (epg-import-result-new-user-ids, epg-import-result-new-sub-keys)
1762         (epg-import-result-new-signatures, epg-import-result-new-revocations)
1763         (epg-import-result-secret-read, epg-import-result-secret-imported)
1764         (epg-import-result-secret-unchanged, epg-import-result-not-imported)
1765         (epg-import-result-imports): Define using cl-defstruct.
1767         * emacs-lisp/package.el: Require EPG during macroexpansion.
1768         (package--check-signature, package-import-keyring): Use setf instead of
1769         epg-context-set-home-directory.
1771 2014-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1773         * emacs-lisp/bytecomp.el (byte-compile--use-old-handlers): Change default.
1775 2014-10-23  Leo Liu  <sdl.web@gmail.com>
1777         * progmodes/cfengine.el (cfengine3-defun-full-re): New var.
1778         (cfengine3-create-imenu-index): Use it and use ` ' for separation.
1779         (cfengine3-current-defun): New function.
1780         (cfengine3-mode): Set add-log-current-defun-function.
1782 2014-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1784         * select.el: Use lexical-binding.
1785         (gui-set-selection): Provide an implementation for non-GUI frames
1786         (bug#18791).
1787         * term/x-win.el: Use lexical-binding.
1788         (x-clipboard-yank): Fix up missed renamings.
1789         * term/w32-win.el (libgif-version, libjpeg-version): Silence compiler.
1790         (w32--set-selection): Fix up var names.
1791         * term/pc-win.el: Use lexical-binding.
1792         (w16-selection-exists-p): Silence compiler warning.
1793         (w16-selection-owner-p): Fix up missed renamings.
1795         * emacs-lisp/bytecomp.el (byte-compile-form): Remove left-over debug.
1797         * frame.el (frame-notice-user-settings): Fix excessive quoting.
1799 2014-10-22  Tassilo Horn  <tsdh@gnu.org>
1801         * doc-view.el (doc-view-open-text): View the document's plain text
1802         in the current buffer instead of a new one.
1803         (doc-view-toggle-display): Handle the case where the current
1804         buffer contains the plain text contents of the document.
1805         (doc-view-initiate-display): Don't switch to fallback mode if the
1806         user wants to view the doc's plain text.
1807         (doc-view-set-doc-type): Use assoc-string instead of
1808         assoc-ignore-case.
1810 2014-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1812         * subr.el (read-key): Fix clicks on the mode-line.
1813         (set-transient-map): Return exit function.
1815         * mouse.el (mouse-drag-line): Use set-transient-map (bug#18015).
1816         (mouse--down-1-maybe-follows-link): Remove unused var `this-event'.
1817         (mouse-yank-secondary): Use gui-get-selection.
1818         (mouse--down-1-maybe-follows-link): Use read-key.
1820         * xt-mouse.el: Add `event-kind' property on the fly from
1821         xterm-mouse-translate-1 rather than statically at the outset.
1823 2014-10-21  Daniel Colascione  <dancol@dancol.org>
1825         * vc/vc-dispatcher.el (vc-resynch-window): Tell view-mode not to
1826         change window configuration when we turn it off.
1828 2014-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1830         Get rid of backend-dependent selection-handling functions for kill/yank
1831         and make it generic instead by relying on the lower-level selection
1832         management functions.
1834         * select.el (select-enable-clipboard): Rename from
1835         gui-select-enable-clipboard.
1836         (select-enable-primary): Move from x-win.el and rename from
1837         x-select-enable-primary.
1838         (gui-last-selected-text): Remove.
1839         (gui--last-selected-text-clipboard, gui--last-selected-text-primary):
1840         New vars.
1841         (gui-select-text): Rewrite, based on x-win.el's old x-select-text.
1842         (gui-select-text-alist, gui-selection-value-alist): Remove.
1843         (x-select-request-type): Move from x-win.el.
1844         (gui--selection-value-internal): New function, taken from x-win's
1845         x-selection-value-internal.
1846         (gui-selection-value): Rewrite, based on x-win.el's old x-selection-value.
1847         (gui-set-selection-alist): Rename from gui-own-selection-alist and
1848         extend it to handle a nil value as a "disown" request.
1849         (gui-disown-selection-alist): Remove.
1850         (xselect-convert-to-delete): Adjust accordingly.
1851         (gui-set-selection): Simplify accordingly as well.  Use dotimes.
1853         * term/x-win.el (x-last-selected-text-primary)
1854         (x-select-enable-primary): Remove (moved to select.el).
1855         (x-select-request-type): Move to select.el.
1856         (x-selection-value-internal, x--selection-value): Remove functions.
1857         (gui-selection-value, gui-select-text): Remove moethods.
1858         (gui-set-selection): Merge own and disown methods.
1860         * term/w32-win.el (w32--select-text, w32--get-selection-value):
1861         Delete function (move functionality into w32--set-selection and
1862         w32--get-selection).
1863         (gui-select-text, gui-selection-value): Don't define methods.
1864         (w32--set-selection, w32--get-selection, w32--selection-owner-p):
1865         New functions.
1866         (gui-get-selection, gui-selection-owner-p, gui-selection-exists-p):
1867         Use them.
1868         (gui-selection-exists-p): Adjust to new name of C primitive.
1870         * term/pc-win.el (w16-get-selection-value): Add dummy argument and drop
1871         test of gui-select-enable-clipboard, to make it usable as
1872         a gui-get-selection method.
1873         (gui-selection-exists-p): Adjust to new name of C primitive.
1874         (gui-set-selection): Merge own and disown methods.
1875         (gui-select-text, gui-selection-value): Delete methods.
1876         (w16--select-text): Delete function.
1878         * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard)
1879         (ns-selection-value): Remove functions.
1880         (gui-select-text, gui-selection-value): Don't define method any more.
1881         (gui-set-selection): Merge the old own and disown methods.
1882         (gui-selection-exists-p, gui-get-selection): Adjust to new name of
1883         underlying C primitive.
1885         * startup.el (command-line): Adjust now that `gui-method' expects nil
1886         for ttys.
1888         * frame.el (gui-method): Use window-system rather than framep.
1889         (gui-method-declare): The tty case is now nil rather than t.
1890         (make-frame): Adjust accordingly.
1892 2014-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1894         * net/newst-reader.el (newsticker--image-read): Simplify.
1895         (newsticker--icon-read): Use dolist and fix free var error.
1897         * imenu.el (imenu--menubar-keymap): New var.
1898         (imenu-add-to-menubar): Set it to remember the keymap we used.
1899         (imenu-update-menubar): Use it instead of asking lookup-key.
1901         * obsolete/cc-compat.el: Make obsolete (bug#18561).
1903         * epg-config.el (epg-gpg-program): Don't use absolute names by default.
1905         * emacs-lisp/bytecomp.el (=, <, >, <=, >=): Don't optimize multi-arg
1906         case (bug#18767).
1908 2014-10-21  Glenn Morris  <rgm@gnu.org>
1910         * Merge in all changes up to version 24.4 release.
1912 2014-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1914         * emacs-lisp/bytecomp.el (=, <, >, <=, >=): Don't optimize multi-arg
1915         case (bug#18767).
1917 2014-10-20  Glenn Morris  <rgm@gnu.org>
1919         * Merge in all changes up to 24.4 release.
1921 2014-10-20  Ulf Jasper  <ulf.jasper@web.de>
1923         * net/newst-backend.el
1924         (newsticker--image-download-by-url-callback): Make this function
1925         actually work: Check status properly, then save image.
1927 2014-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1929         * mouse.el (mouse--down-1-maybe-follows-link): Remove unused var
1930         `this-event'.
1931         (mouse-drag-line): Unless there's no actual mouse, use the event's
1932         position info.
1934 2014-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1936         * textmodes/css-mode.el (scss-mode): New major-mode.
1937         (css-mode-syntax-table): Use d style comment, to ease the scss case.
1938         (css-ident-re): Allow things like @-moz-keyframes.
1939         (scss--hash-re): New const.
1940         (css--font-lock-keywords): New function, extracted from
1941         css-font-lock-keywords.
1943 2014-10-19  Ulf Jasper  <ulf.jasper@web.de>
1945         * net/newst-backend.el: Require url-parse.
1946         (newsticker--get-news-by-wget): Store feed name as process property.
1947         (newsticker--sentinel): Read feed name from process property.
1948         (newsticker--sentinel-work): Rename argument name to feed-name.
1949         Rename variable imageurl to image-url.  Pick icon url from Atom
1950         1.0 data.  Launch download of feed icon.
1951         (newsticker--get-icon-url-atom-1.0): New.
1952         (newsticker--unxml)
1953         (newsticker--unxml-node)
1954         (newsticker--unxml-attribute): Documentation.
1955         (newsticker--icons-dir): New.
1956         (newsticker--image-get): New arguments FILENAME and DIRECTORY.
1957         Use `url-retrieve' if `newsticker-retrieval-method' is 'intern.
1958         (newsticker--image-download-by-wget): New.  Use process properties
1959         for storing informations.
1960         (newsticker--image-sentinel): Read informations from process properties.
1961         (newsticker--image-save)
1962         (newsticker--image-remove)
1963         (newsticker--image-download-by-url)
1964         (newsticker--image-download-by-url-callback): New.
1965         (newsticker-opml-export): Handle url list entries containing a
1966         function instead of an url string.
1968         * net/newst-reader.el (newsticker-html-renderer): Whitespace.
1969         (newsticker--print-extra-elements)
1970         (newsticker--do-print-extra-element):
1971         Documentation (newsticker--image-read): Optionally limit image height.
1972         Use imagemagick if possible.
1973         (newsticker--icon-read): New.
1975         * net/newst-treeview.el (newsticker--treeview-item-show): Limit height of feed logo.
1976         (newsticker--treeview-tree-expand): Use feed icons in treeview.
1977         (newsticker--tree-widget-icon-create): New.  Set the tree widget icon.
1978         (newsticker--tree-widget-leaf-icon): Use feed icon.
1980 2014-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
1982         * emacs-lisp/eieio-opt.el (eieio-lambda-arglist): Remove.
1983         Use help-function-arglist instead.
1985         * emacs-lisp/eieio-core.el (eieio-compiled-function-arglist): Remove.
1986         (eieio--with-scoped-class): Use `declare'.
1987         (eieio-defclass): Remove compatibility code.
1988         (no-method-definition, no-next-method, inconsistent-class-hierarchy)
1989         (invalid-slot-type, unbound-slot, invalid-slot-name): Use define-error.
1991 2014-10-18  Jan Djärv  <jan.h.d@swipnet.se>
1993         * cus-start.el (x-gtk-whole-detached-tool-bar): Remove.
1995         * term/x-win.el (x-gtk-stock-map): Add icon names suggested as
1996         replacements to stock names before stock names in a list.
1997         Cdr may be a list, each name is tried in turn until one is found.
1999 2014-10-18  Alan Mackenzie  <acm@muc.de>
2001         Check that a "macro" found near point-min isn't a ## operator.
2002         Fixes bug #18749.
2003         * progmodes/cc-engine.el (c-macro-is-genuine-p): New function.
2004         (c-beginning-of-macro): Use the above new function.
2006 2014-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
2008         * net/gnutls.el (gnutls-negotiate): Don't use cl-mapcan; pass
2009         correct data to `gnutls-boot' (Bug#18664).
2010         Reported by Toke Høiland-Jørgensen <toke@toke.dk>.
2012 2014-10-18  Michal Nazarewicz  <mina86@mina86.com>
2014         * whitespace.el (whitespace-style, whitespace-big-indent)
2015         (whitespace-big-indent-regexp, whitespace-style-value-list)
2016         (whitespace-toggle-option-alist, whitespace-interactive-char)
2017         (whitespace-toggle-options)
2018         (global-whitespace-toggle-options, whitespace-help-text)
2019         (whitespace-style-face-p, whitespace-color-on): Add a 'big-indent
2020         style to `whitespace-mode' to indicate that the line indentation
2021         is too deep.  By default, 32 SPACEs or four TABs are considered
2022         too many but `whitespace-big-indent-regexp' can be configured.
2024 2014-10-17  Michal Nazarewicz  <mina86@mina86.com>
2026         * textmodes/tildify.el (tildify--pick-alist-entry): Rename from
2027         tildify-mode-alist.
2029 2014-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2031         * emacs-lisp/eieio.el: Use lexical-binding drop non-GV fallback.
2032         (defclass, defgeneric, defmethod): Add doc-string position.
2033         (with-slots): Require cl-lib.
2035         * emacs-lisp/eieio-core.el: Use lexical-binding and cl-lib.
2036         (list-of): New type.
2037         (eieio--typep): Remove.
2038         (eieio-perform-slot-validation): Use cl-typep instead.
2040         * emacs-lisp/eieio-base.el: Use lexical-binding and cl-lib.
2042         * emacs-lisp/cl-macs.el (cl--make-type-test): Avoid ((lambda ..) ..).
2044 2014-10-16  Alan Mackenzie  <acm@muc.de>
2046         Trigger showing when point is in the "periphery" of a line or just
2047         inside a paren.
2048         * paren.el (show-paren-style, show-paren-delay)
2049         (show-paren-priority, show-paren-ring-bell-on-mismatch):
2050         Remove superfluous :group specifications.
2051         (show-paren-when-point-inside-paren)
2052         (show-paren-when-point-in-periphery): New customizable variables.
2053         (show-paren-highlight-openparen): Make into a defcustom.
2054         (show-paren--unescaped-p, show-paren--categorize-paren)
2055         (show-paren--locate-near-paren): New defuns.
2056         (show-paren--default): Refaactor and trigger on more paren
2057         positions.
2058         (show-paren-function): Small consequential changes.
2060 2014-10-16  Tom Tromey  <tom@tromey.com>
2062         * files.el (auto-mode-alist): Use javascript-mode for .jsm
2063         (bug #18719).
2065 2014-10-16  Eli Zaretskii  <eliz@gnu.org>
2067         * international/characters.el (bracket-type): Force pre-loading of
2068         uni-brackets.el.
2070 2014-10-16  Alan Mackenzie  <acm@muc.de>
2072         * cus-edit.el (custom-command-apply): Specify the return value in
2073         the doc string.
2074         (Custom-reset-standard): Save custom-file (e.g. .emacs) only when
2075         custom-command-apply has returned non-nil.
2077 2014-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2079         * emacs-lisp/eldoc.el (global-eldoc-mode): Enable by default.
2080         Remove incorrect handling of eldoc-print-after-edit.
2081         (eldoc-message-commands, eldoc-last-data): Use defvar.
2082         * loadup.el (emacs-lisp/eldoc): Load it.
2084         * progmodes/m4-mode.el (m4-syntax-propertize): New var.
2085         (m4-mode): Use it.
2086         (m4--quoted-p): New function.
2087         (m4-font-lock-keywords): Don't handle #..\n comments any more.
2088         (m4-mode-syntax-table): Use punctuation syntax (according to m4 manual)
2089         for most special characters.
2091         * progmodes/compile.el (compilation--previous-directory): Simplify.
2092         (compilation-next-error): Ensure the parse before we look at
2093         compilation-message property.
2095 2014-10-15  Eli Zaretskii  <eliz@gnu.org>
2097         * simple.el (what-cursor-position):
2098         * descr-text.el (describe-char): Update to support the new bidi
2099         characters.
2101         * emacs-lisp/tabulated-list.el (tabulated-list-mode):
2102         Force bidi-paragraph-direction to 'left-to-right'.  This fixes
2103         buffer-menu display when the first buffer happens to start with
2104         R2L letter.
2106 2014-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2108         * progmodes/elisp-mode.el (elisp--local-variables-1):
2109         Handle quoted expressions (bug#18688).
2111 2014-10-14  Jérémy Compostella  <jeremy.compostella@intel.com>
2112             Michael Albinus  <michael.albinus@gmx.de>
2114         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
2115         Reduce the amount of set environment variable commands.
2117 2014-10-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
2119         Fix import completion.  (Bug#18582)
2120         * progmodes/python.el (python-shell-completion-get-completions):
2121         Fix import case regexp.
2123 2014-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
2125         * progmodes/bat-mode.el (bat-font-lock-keywords): Fix \\<_ typo
2126         (bug#18622).  Reported by Arni Magnusson <arnima@hafro.is>.
2127         * progmodes/prolog.el (prolog-electric--underscore): Same.
2129 2014-10-12  Michael Albinus  <michael.albinus@gmx.de>
2131         * net/tramp-sh.el (tramp-get-remote-id): Check also for "gid".
2133 2014-10-11  Jan Djärv  <jan.h.d@swipnet.se>
2135         * cus-start.el (all): Add missing ns and boolean to
2136         ns-use-fullscreen-animation.
2138 2014-10-11  Leo Liu  <sdl.web@gmail.com>
2140         * progmodes/cfengine.el (cfengine3-defuns, cfengine3-vartypes):
2141         Use strings.
2142         (cfengine3-create-imenu-index): New function.
2143         (cfengine3-mode): Use it for `imenu-create-index-function'.
2144         (cfengine-auto-mode): Improve and prefer cfengine3-mode when
2145         buffer is empty.
2147 2014-10-11  Jan Djärv  <jan.h.d@swipnet.se>
2149         * cus-start.el (all): Add ns-use-fullscreen-animation.
2151 2014-10-11  Glenn Morris  <rgm@gnu.org>
2153         * calendar/diary-lib.el (diary-display-function):
2154         Drop support for deprecated nil and list forms.
2155         (diary-list-entries): Update for the above.
2156         * calendar/cal-x.el (calendar-dedicate-diary): Simplify accordingly.
2158 2014-10-10  Leo Liu  <sdl.web@gmail.com>
2160         * window.el (temp-buffer-window-show): Make BUFFER a required arg.
2161         (Bug#18656)
2163 2014-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
2165         * select.el (gui-selection-exists-p-alist): New method.
2166         * menu-bar.el (menu-bar-edit-menu, clipboard-yank):
2167         * simple.el (deactivate-mark): Use it.
2168         * term/x-win.el (gui-selection-exists-p):
2169         * term/w32-win.el (gui-selection-exists-p):
2170         * term/pc-win.el (gui-selection-exists-p):
2171         * term/ns-win.el (gui-selection-exists-p): Provide a backend instance.
2173 2014-10-10  Glenn Morris  <rgm@gnu.org>
2175         * info.el (Info-fontify-maximum-menu-size): Bump to 400k.  (Bug#16227)
2176         Fix :type.  Allow t to mean no limit.
2177         (Info-fontify-node): Handle Info-fontify-maximum-menu-size = t.
2179 2014-10-09  Glenn Morris  <rgm@gnu.org>
2181         * frame.el (display-monitor-attributes-list): Doc tweaks.
2183 2014-10-09  Eli Zaretskii  <eliz@gnu.org>
2185         * faces.el (display-grayscale-p): Mention in the doc string that
2186         the argument can be either a display name or a frame.
2188         * frame.el (display-pixel-height, display-pixel-width)
2189         (display-mm-height, display-mm-width, display-backing-store)
2190         (display-save-under, display-planes, display-color-cells)
2191         (display-visual-class, display-monitor-attributes-list)
2192         (display-screens): Mention in the doc string that the argument can
2193         be either a display name or a frame.  Improve the docs of the
2194         monitor attributes.  (Bug#18636)
2196 2014-10-09  Martin Rudalics  <rudalics@gmx.at>
2198         * term.el (term-window-width): Subtract 1 from the width when
2199         any fringe has zero width, not just the right fringe.  (Bug#18601)
2201 2014-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
2203         * frame.el (make-frame): Use t rather than nil for `w' (bug#18653).
2205 2014-10-08  Leo Liu  <sdl.web@gmail.com>
2207         * emacs-lisp/cl-extra.el (cl-fresh-line): New function.
2209 2014-10-08  Glenn Morris  <rgm@gnu.org>
2211         * calendar/cal-x.el (calendar-dedicate-diary):
2212         Drop support for recently deleted aliases.
2214 2014-10-08  Leo Liu  <sdl.web@gmail.com>
2216         * progmodes/cfengine.el (cfengine3-make-syntax-cache):
2217         Always return a syntax.  Replace call-process-shell-command with
2218         process-file.  Ensure cfengine-mode-syntax-functions-regex is
2219         always set.  Ensure cache when cfengine-cf-promises fails.
2220         (Bug#18620)
2222 2014-10-07  Glenn Morris  <rgm@gnu.org>
2224         * font-lock.el (font-lock-fontify-buffer): Fix interactive-only markup.
2226 2014-10-07  Wilson Snyder  <wsnyder@wsnyder.org>
2228         Sync with upstream verilog-mode revision c075a492.
2229         * progmodes/verilog-mode.el (verilog-mode-version): Bump.
2230         (verilog-menu): Add AUTOINSERTLAST.
2231         (verilog-no-indent-begin-re): When `verilog-indent-begin-after-if'
2232         is nil, fix indenting initial/final to match always statements, bug825.
2233         Reported by Tim Clapp.
2234         (verilog-extended-complete-re): Fix indentation of DPI-C imports,
2235         bug557.  Reported by ZeDong Mao and Jason Forkey.
2236         (verilog-read-decls): Fix parsing typed interfaces.
2237         Fix AUTOINOUTMODPORT missing types.  Reported by Stephan Bourduas.
2238         (verilog-auto-arg-ports): Fix verilog-auto-arg-format single.
2239         (verilog-auto-output-every): Add regexp to AUTOOUTPUTEVERY, bug793.
2240         Reported by Pierre-David Pfister.
2241         (verilog-auto-insert-lisp): Doc fix.
2242         (verilog-auto-insert-last, verilog-auto): Add AUTOINSERTLAST to
2243         allow post-AUTO user fixups, bug826.  Reported by Dennis Muhlestein.
2244         (verilog-sk-ovm-class, verilog-sk-uvm-object)
2245         (verilog-sk-uvm-component): Fix missing string keyword in class
2246         skeletons, bug824.  Reported by eldad faruhi.
2248 2014-10-06  Stefan Monnier  <monnier@iro.umontreal.ca>
2250         * term/w32-win.el: Move all code from 32-common-fns.el here.
2251         (gui-select-text, gui-selection-value): Use w32 handlers in the w32
2252         console as well (bug#18629).
2253         * w32-common-fns.el: Remove.
2254         * loadup.el: Don't load w32-common-fns.el.
2255         * w32-fns.elc: Don't require w32-common-fns.
2257         * icomplete.el: Move Iswitchb autoload here.  Much simpler.
2258         * obsolete/iswitchb.el (iswitchb-mode): Use normal autoload cookie.
2259         Remove redundant obsolescence thingy.
2260         * loadup.el: Don't load obsolete/loaddefs.el.
2261         * Makefile.in (obsolete-autoloads): Remove.
2262         (AUTOGENEL): Remove obsolete/loaddefs.el.
2264 2014-10-06  Glenn Morris  <rgm@gnu.org>
2266         * Makefile.in (obsolete-autoloads): Write to a separate file,
2267         to workaround autoloads bug.  (Bug#17407)
2268         (AUTOGENEL): Add obsolete/loaddefs.el.
2269         * loadup.el: Load obsolete/loaddefs.el if present.
2270         * subr.el (do-after-load-evaluation):
2271         Don't warn about obsolete/loaddefs.el.
2273         * menu-bar.el (menu-bar-games-menu): Remove landmark.
2274         It has zero relationship to a game.
2276 2014-10-06  Leo Liu  <sdl.web@gmail.com>
2278         * imenu.el (imenu): Re-write for clarity.
2280 2014-10-06  Glenn Morris  <rgm@gnu.org>
2282         Remove calendar code obsolete since at least version 23.1.
2283         * calendar/cal-bahai.el (calendar-absolute-from-bahai)
2284         (calendar-print-bahai-date, calendar-bahai-prompt-for-date)
2285         (calendar-goto-bahai-date, list-bahai-diary-entries)
2286         (mark-bahai-calendar-date-pattern, mark-bahai-diary-entries)
2287         (insert-bahai-diary-entry, insert-monthly-bahai-diary-entry)
2288         (insert-yearly-bahai-diary-entry):
2289         * calendar/cal-china.el (chinese-calendar-time-zone)
2290         (chinese-calendar-location-name)
2291         (chinese-calendar-daylight-time-offset)
2292         (chinese-calendar-standard-time-zone-name)
2293         (chinese-calendar-daylight-time-zone-name)
2294         (chinese-calendar-daylight-savings-starts)
2295         (chinese-calendar-daylight-savings-ends)
2296         (chinese-calendar-daylight-savings-starts-time)
2297         (chinese-calendar-daylight-savings-ends-time)
2298         (chinese-calendar-celestial-stem)
2299         (chinese-calendar-terrestrial-branch)
2300         (calendar-absolute-from-chinese, calendar-print-chinese-date)
2301         (calendar-goto-chinese-date):
2302         * calendar/cal-coptic.el (calendar-absolute-from-coptic)
2303         (calendar-print-coptic-date, coptic-prompt-for-date)
2304         (calendar-goto-coptic-date, calendar-absolute-from-ethiopic)
2305         (calendar-print-ethiopic-date, calendar-goto-ethiopic-date):
2306         * calendar/cal-french.el (calendar-absolute-from-french)
2307         (calendar-print-french-date, calendar-goto-french-date):
2308         * calendar/cal-hebrew.el (diary-sabbath-candles-minutes)
2309         (calendar-absolute-from-hebrew, calendar-print-hebrew-date)
2310         (hebrew-calendar-yahrzeit, calendar-goto-hebrew-date)
2311         (holiday-rosh-hashanah-etc, holiday-hanukkah)
2312         (holiday-passover-etc, holiday-tisha-b-av-etc)
2313         (list-hebrew-diary-entries, mark-hebrew-calendar-date-pattern)
2314         (mark-hebrew-diary-entries, insert-hebrew-diary-entry)
2315         (insert-monthly-hebrew-diary-entry)
2316         (insert-yearly-hebrew-diary-entry, list-yahrzeit-dates)
2317         (diary-omer, diary-yahrzeit, diary-rosh-hodesh, diary-parasha)
2318         (diary-sabbath-candles):
2319         * calendar/cal-islam.el (calendar-absolute-from-islamic)
2320         (calendar-print-islamic-date, calendar-goto-islamic-date)
2321         (list-islamic-diary-entries, mark-islamic-calendar-date-pattern)
2322         (mark-islamic-diary-entries, insert-islamic-diary-entry)
2323         (insert-monthly-islamic-diary-entry)
2324         (insert-yearly-islamic-diary-entry):
2325         * calendar/cal-iso.el (calendar-absolute-from-iso)
2326         (calendar-print-iso-date, calendar-iso-read-args)
2327         (calendar-goto-iso-date, calendar-goto-iso-week):
2328         * calendar/cal-julian.el (calendar-absolute-from-julian)
2329         (calendar-print-julian-date, calendar-goto-julian-date)
2330         (calendar-absolute-from-astro, calendar-print-astro-day-number)
2331         (calendar-goto-astro-day-number):
2332         * calendar/cal-mayan.el (calendar-print-mayan-date)
2333         (calendar-next-haab-date, calendar-previous-haab-date)
2334         (calendar-next-tzolkin-date, calendar-previous-tzolkin-date)
2335         (calendar-next-calendar-round-date)
2336         (calendar-previous-calendar-round-date)
2337         (calendar-absolute-from-mayan-long-count)
2338         (calendar-goto-mayan-long-count-date):
2339         * calendar/cal-move.el (scroll-calendar-left)
2340         (scroll-calendar-right, scroll-calendar-left-three-months)
2341         (scroll-calendar-right-three-months):
2342         * calendar/cal-persia.el (calendar-absolute-from-persian)
2343         (calendar-print-persian-date, persian-prompt-for-date)
2344         (calendar-goto-persian-date):
2345         * calendar/cal-x.el (calendar-after-frame-setup-hooks):
2346         * calendar/calendar.el (view-diary-entries-initially)
2347         (mark-diary-entries-in-calendar, calendar-today-face)
2348         (diary-face, holiday-face, view-calendar-holidays-initially)
2349         (mark-holidays-in-calendar, initial-calendar-window-hook)
2350         (today-visible-calendar-hook, today-invisible-calendar-hook)
2351         (hebrew-diary-entry-symbol, islamic-diary-entry-symbol)
2352         (bahai-diary-entry-symbol, american-date-diary-pattern)
2353         (european-date-diary-pattern, european-calendar-display-form)
2354         (american-calendar-display-form, holidays-in-diary-buffer)
2355         (all-hebrew-calendar-holidays, all-christian-calendar-holidays)
2356         (all-islamic-calendar-holidays, all-bahai-calendar-holidays)
2357         (fancy-diary-buffer, increment-calendar-month)
2358         (extract-calendar-month, extract-calendar-day)
2359         (extract-calendar-year, exit-calendar, calendar-date-is-legal-p)
2360         (mark-visible-calendar-date, calendar-version):
2361         * calendar/diary-lib.el (diary-button-face, sexp-diary-entry-symbol)
2362         (diary-display-hook, list-diary-entries-hook)
2363         (mark-diary-entries-hook, nongregorian-diary-listing-hook)
2364         (nongregorian-diary-marking-hook, print-diary-entries-hook)
2365         (abbreviated-calendar-year, number-of-diary-entries)
2366         (view-other-diary-entries, add-to-diary-list)
2367         (include-other-diary-files, simple-diary-display)
2368         (fancy-diary-display, print-diary-entries, mark-diary-entries)
2369         (mark-sexp-diary-entries, mark-included-diary-files)
2370         (mark-calendar-days-named, mark-calendar-month)
2371         (mark-calendar-date-pattern, sort-diary-entries)
2372         (list-sexp-diary-entries, make-diary-entry, insert-diary-entry)
2373         (insert-weekly-diary-entry, insert-monthly-diary-entry)
2374         (insert-yearly-diary-entry, insert-anniversary-diary-entry)
2375         (insert-block-diary-entry, insert-cyclic-diary-entry)
2376         (fancy-diary-font-lock-keywords, fancy-diary-display-mode):
2377         * calendar/holidays.el (general-holidays, oriental-holidays)
2378         (local-holidays, other-holidays, hebrew-holidays)
2379         (christian-holidays, islamic-holidays, bahai-holidays)
2380         (solar-holidays, list-calendar-holidays)
2381         (check-calendar-holidays, mark-calendar-holidays)
2382         (filter-visible-calendar-holidays):
2383         * calendar/lunar.el (calendar-phases-of-moon, phases-of-moon)
2384         (diary-phases-of-moon): Remove obsolete aliases.
2385         * calendar/cal-menu.el (cal-menu-load-hook): Remove obsolete hook.
2386         * calendar/cal-x.el (calendar-one-frame-setup)
2387         (calendar-only-one-frame-setup, calendar-two-frame-setup):
2388         Remove obsolete functions.
2389         (cal-x-load-hook): Remove obsolete hook.
2390         * calendar/calendar.el (european-calendar-style):
2391         Remove obsolete variable.
2392         (calendar-date-style): No longer consult european-calendar-style.
2393         * calendar/calendar.el (european-calendar, american-calendar):
2394         Remove obsolete commands.
2395         * calendar/calendar.el (calendar-for-loop): Remove obsolete macro.
2396         * calendar/diary-lib.el (diary-face): Remove obsolete variable.
2397         (diary-font-lock-date-forms, diary-fancy-font-lock-keywords):
2398         Use the face `diary' instead of the variable `diary-face'.
2399         * calendar/holidays.el (hebrew-holidays-1, hebrew-holidays-2)
2400         (hebrew-holidays-3, hebrew-holidays-4): Remove obsolete variables.
2401         * calendar/icalendar.el (icalendar--date-style): Remove function.
2402         Replace all uses with calendar-date-style.
2403         * textmodes/remember.el (calendar-date-style): Declare.
2404         (remember-diary-convert-entry):
2405         No longer consult european-calendar-style.
2407 2014-10-05  Leo Liu  <sdl.web@gmail.com>
2409         * imenu.el (imenu-default-goto-function): Fix typo.
2411 2014-10-04  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
2413         * net/ntlm.el (ntlm-build-auth-request):
2414         Add NTLM2 Session support.  (Bug#15603)
2416 2014-10-04  Glenn Morris  <rgm@gnu.org>
2418         * apropos.el (apropos-symbols-internal):
2419         Avoid error with non-symbol properties.  (Bug#18337#16)
2421         * startup.el (command-line):
2422         Handle altered user-emacs-directory in load-path warning.  (Bug#18512)
2424 2014-10-04  Martin Rudalics  <rudalics@gmx.at>
2426         * window.el (window-full-height-p): Make it behave correctly for
2427         minibuffer window.
2428         (window-current-scroll-bars): Fix code.
2429         (fit-frame-to-buffer): Use window-scroll-bar-height instead of
2430         window-scroll-bars.
2431         * frame.el (frame-current-scroll-bars): Fix doc-string.
2432         * scroll-bar.el (toggle-horizontal-scroll-bar): New command.
2434 2014-10-04  Mark Oteiza  <mvoteiza@udel.edu>  (tiny change)
2436         * files.el (auto-mode-alist): Use sh-mode for .zsh files.  (Bug#18488)
2438 2014-10-04  Glenn Morris  <rgm@gnu.org>
2440         * frame.el (frame-monitor-attributes)
2441         (display-monitor-attributes-list): Doc fixes.
2443 2014-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
2445         Merge trivially safe differences from standalone CC-mode.
2446         * progmodes/cc-mode.el (c-initialize-cc-mode): Don't quote a symbol
2447         just to then pass it to `symbol-value'.
2448         (prog-mode): Provide fallback definition, if needed.
2449         * progmodes/cc-langs.el: Always load `cl'.  Don't load `cl-lib'.
2450         Remove "cl-" prefix accordingly.
2451         * progmodes/cc-fonts.el (c-font-lock-invalid-string): Use integerp or
2452         characterp depending on the type of characters.
2453         (c-font-lock-enum-tail): Remove unused var `start'.
2454         * progmodes/cc-engine.el: Load CL at compile-time.
2455         (c-declare-lang-variables): Use mapcan.
2456         (c-append-to-state-cache): Remove unused var `ce+1'.
2457         (c-parse-state-state): Make buffer-local.
2458         (c-ssb-lit-begin): Remove unused var `pps-end-pos'.
2459         (c-just-after-func-arglist-p): Remove unused var `end'.
2460         * progmodes/cc-defs.el: Load cc-fix if delete-dups is undefined.
2461         (c-<-as-paren-syntax, c->-as-paren-syntax): Move definition earlier.
2462         (c-make-keywords-re): Use delete-dups.
2463         (c-get-current-file): Avoid file-name-base.
2464         * progmodes/cc-cmds.el (c-electric-lt-gt): Remove unused var
2465         `close-paren-inserted'.
2466         * progmodes/cc-awk.el (c-forward-sws): Remove unused declaration.
2468         * progmodes/python.el: Avoid building unneeded markers.
2469         (python-font-lock-keywords, python-indent-dedent-line)
2470         (python-fill-paren, python-shell-completion-complete-or-indent):
2471         Prefer point over point-marker.
2472         (inferior-python-mode): Remove redundant completion settings.
2474 2014-10-03  Dmitry Gutov  <dgutov@yandex.ru>
2476         * vc/vc-svn.el (vc-svn-ignore-completion-table): Implement.
2477         (vc-svn-ignore): Use it.  (Bug#18619)
2479 2014-10-03  Martin Rudalics  <rudalics@gmx.at>
2481         * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
2482         In doc-string mention need to set `frame-resize-pixelwise'.
2484 2014-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2486         * vc/vc-svn.el (vc-svn-after-dir-status): Fix the non-remote regexp,
2487         similarly to Rogers's 2010-06-16 change for the remote case
2488         (bug#18605).
2490 2014-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
2492         New gui-selection-value consolidating x-selection-value.
2493         * select.el (gui-selection-value-alist): New method.
2494         (gui-selection-value): New function.
2495         (x-selection-value): Make it an obsolete alias.
2496         * simple.el (interprogram-paste-function): Default to
2497         gui-selection-value.
2498         * w32-common-fns.el (w32-get-selection-value): Simplify.
2499         (x-selection-value): Remove alias.
2500         (interprogram-paste-function): Don't set.
2501         (gui-selection-value): Define for w32.
2502         * term/x-win.el (gui-selection-value): Define for x.
2503         (x--selection-value): Rename from x--selection-value.
2504         (interprogram-paste-function): Don't set.
2505         * term/pc-win.el (w16-get-selection-value): Simplify.
2506         (msdos-initialize-window-system): Don't set
2507         interprogram-paste-function.
2508         (gui-selection-value): Define for pc.
2509         * term/ns-win.el (x-selection-value): Remove.
2510         (gui-selection-value): Define for ns, instead.
2511         * term/common-win.el (x-setup-function-keys): Don't set
2512         interprogram-paste-function.
2513         * obsolete/mouse-sel.el (mouse-sel-get-selection-function):
2514         Use gui-selection-value.
2516 2014-10-02  David Raynes  <rayners@gmail.com>  (tiny change)
2518         * term/ns-win.el: Add functions to ns frame, not x frame (bug#18614).
2520 2014-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2522         * obsolete/lucid.el (read-number): Remove, redundant.
2523         * obsolete/cl-compat.el (cl-floor, cl-ceiling, cl-round, cl-truncate):
2524         Remove, broken.
2526 2014-10-02  Glenn Morris  <rgm@gnu.org>
2528         * emacs-lisp/package.el (package-import-keyring):
2529         Create gnupg directory private.  (Bug#17625#155)
2531 2014-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2533         * progmodes/python.el (python-shell-completion-get-completions):
2534         Use python-shell--prompt-calculated-input-regexp from the
2535         process buffer (bug#18582).
2536         Don't assume that `line' comes from the process buffer.
2538 2014-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
2540         * frame.el: Use lexical-binding (bug#18598).
2541         (make-frame): Use t rather than nil for tty's window-system.
2542         * startup.el (command-line): Use gui-method.
2544         Consolidate management/ownership of selections.
2545         * select.el (gui-get-selection-alist): New method.
2546         (gui-get-selection): Use it.  Rename from x-get-selection.
2547         (x-get-selection): Define as obsolete alias.
2548         (x-get-clipboard): Mark obsolete.
2549         (gui-get-primary-selection): New function.
2550         (x-get-selection-value): Mark obsolete.
2551         (gui-own-selection-alist, gui-disown-selection-alist)
2552         (gui-selection-owner-p-alist): New methods.
2553         (gui-set-selection): Use them.  Rename from x-set-selection.
2554         (x-set-selection): Define as obsolete alias.
2555         (gui--valid-simple-selection-p): Rename from
2556         x-valid-simple-selection-p.
2557         * w32-common-fns.el (gui-own-selection, gui-disown-selection)
2558         (gui-selection-owner-p, gui-get-selection): Define for w32.
2559         (w32-get-selection-value): Rename from x-get-selection-value.
2560         Use the new gui-last-selected-text.
2561         * term/x-win.el (x-get-selection-value): Remove.
2562         (x-clipboard-yank): Declare obsolete.
2563         (gui-own-selection, gui-disown-selection, gui-get-selection)
2564         (gui-selection-owner-p): Define for x.
2565         * term/w32-win.el (w32-win-suspend-error): Rename from
2566         x-win-suspend-error.
2567         * term/pc-win.el (w16-get-selection-value): Rename from
2568         x-get-selection-value.
2569         (w16-selection-owner-p): Rename from x-selection-owner-p.
2570         (gui-own-selection, gui-disown-selection, gui-get-selection)
2571         (gui-selection-owner-p): Define for pc.
2572         (w16--select-text): New function.
2573         * term/ns-win.el (gui-own-selection, gui-disown-selection)
2574         (gui-get-selection, gui-selection-owner-p): Define for ns.
2575         * term.el (term-mouse-paste):
2576         * mouse.el (mouse-yank-primary): Use gui-get-primary-selection.
2578 2014-10-02  H. Dieter Wilhelm  <dieter@duenenhof-wilhelm.de>
2580         * calc/calc-help.el (calc-describe-thing): Quote strings
2581         which could look like regexps.
2583 2014-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2585         Consolidate x-select-text.
2586         * frame.el (gui-method, gui-method-define, gui-method-declare)
2587         (gui-call): New macros.
2588         (gui-method--name): New function.
2589         (frame-creation-function-alist): Use gui-method-declare.
2590         (make-frame): Use gui-method.
2591         * select.el (gui-select-enable-clipboard): Rename from
2592         x-select-enable-clipboard and move here.
2593         (x-select-enable-clipboard): Define as obsolete alias.
2594         (gui-last-selected-text): New var, to replace x-last-selected-text.
2595         (gui-select-text): New GUI method.
2596         (gui-select-text): New function.
2597         (x-select-text): Define as obsolete alias.
2598         * term/common-win.el (x-select-enable-clipboard, x-select-text):
2599         Move to select.el.
2600         * simple.el (interprogram-cut-function): Change default to
2601         x-select-text.
2602         (interprogram-paste-function): Change default to `ignore'.
2603         * w32-common-fns.el (interprogram-cut-function): Don't modify.
2604         * term/x-win.el (interprogram-cut-function): Don't modify.
2605         (gui-select-text): Add method for x.
2606         * term/w32-win.el (gui-select-text): Add method for w32.
2607         * term/pc-win.el (x-last-selected-text): Remove, use
2608         gui-last-selected-text instead.
2609         (msdos-initialize-window-system): Don't set interprogram-cut-function.
2610         (gui-select-text): Add method for pc.
2611         * term/ns-win.el (ns-last-selected-text): Remove, use
2612         gui-last-selected-text instead.
2613         (gui-select-text): Add method for ns.
2614         (x-setup-function-keys): Don't change interprogram-cut-function.
2615         * loadup.el ("startup"): Load after "frame".
2616         * subr.el (package--builtin-versions, package--description-file):
2617         Move from startup.el.
2618         * startup.el (package--builtin-versions, package--description-file):
2619         Move to subr.el.
2620         (handle-args-function-alist, window-system-initialization-alist):
2621         Use gui-method-declare.
2622         (command-line): Use gui-method.
2624 2014-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
2626         * subr.el (alist-get): New accessor.
2627         * emacs-lisp/gv.el (alist-get): Provide expander.
2628         * winner.el (winner-remember):
2629         * tempo.el (tempo-use-tag-list):
2630         * progmodes/gud.el (minor-mode-map-alist):
2631         * international/mule-cmds.el (define-char-code-property):
2632         * frameset.el (frameset-filter-params):
2633         * files.el (dir-locals-set-class-variables):
2634         * register.el (get-register, set-register):
2635         * calc/calc-yank.el (calc-set-register): Use it.
2636         * ps-print.el (ps-get, ps-put, ps-del): Mark as obsolete.
2637         * tooltip.el (tooltip-set-param): Mark as obsolete.
2638         (tooltip-show): Use alist-get instead.
2639         * ses.el (ses--alist-get): Remove.  Use alist-get instead.
2641 2014-10-01  Ulf Jasper  <ulf.jasper@web.de>
2643         * net/newst-backend.el: Remove Time-stamp.  Rename variable
2644         `newsticker--download-logos' to `newsticker-download-logos' and
2645         make it customizable.
2646         (newsticker--sentinel-work): Move xml-workarounds to function
2647         `newsticker--do-xml-workarounds', call unless libxml-parser is
2648         used.  Allow single quote in regexp for encoding.
2649         Use libxml-parser if available, else fall back to `xml-parse-region'.
2650         Take care of possibly missing namespace prefixes (like "RDF"
2651         instead of "rdf:RDF") when checking xml nodes and attributes (as
2652         libxml correctly removes the prefixes).  Always use Atom 1.0 as
2653         fallback feed type.  Rename `newsticker--download-logos' to
2654         `newsticker-download-logos'
2655         (newsticker--unxml, newsticker--unxml-node)
2656         (newsticker--unxml-attribute): New.
2657         (newsticker--parse-atom-1.0): Call `unxml' in case that embedded
2658         HTML code has become part of the xml parse tree.
2659         (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0): Take care
2660         of possibly missing namespace prefixes.
2661         (newsticker--parse-generic-items): Code formatting. Typo.
2662         (newsticker--images-dir): Add trailing slash.
2663         (newsticker--image-get): Fix error message.
2665         * net/newst-plainview.el: Remove Time-stamp.
2667         * net/newst-reader.el: Remove Time-stamp.
2668         (newsticker-download-logos): Rename variable
2669         `newsticker--download-logos' to `newsticker-download-logos' and
2670         make it customizable.
2671         (newsticker--print-extra-elements): Add optional parameter
2672         'htmlish for using html markup.  Amend list of ignored elements.
2673         (newsticker--do-print-extra-element): Add parameter 'htmlish for
2674         using html markup.
2676         * net/newst-ticker.el: Remove Time-stamp.
2678         * net/newst-treeview.el (newsticker--treeview-item-show): Use html
2679         for formatting extra elements.
2681         * net/newsticker.el:  Remove Time-stamp, Version.
2682         (newsticker-version): Make obsolete.
2684 2014-09-30  Leonardo Nobrega  <leonobr@gmail.com>  (tiny change)
2686         * progmodes/python.el (python-fill-paren): Don't inf-loop at EOB
2687         (bug#18462).
2689 2014-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2691         * emacs-lisp/package.el (package-check-signature): Default to nil if
2692         GPG is not available.
2693         (package-refresh-contents): Don't mess with the keyring if we won't
2694         check the signatures anyway.
2696 2014-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2698         * ses.el (ses--row, ses--col): New dyn-scoped vars, to replace row&col.
2699         (ses-center, ses-center-span): Use them.
2700         (ses-print-cell): Bind them while calling the printer.
2701         (row, col, maxrow, maxcol): Don't declare as dynamically scoped.
2702         (ses-dorange): Revert last change.
2703         (ses-calculate-cell): Don't bind row&col dynamically while evaluating
2704         the formula.
2705         (ses-set-cell): Avoid `eval'.
2706         (ses--time-check): Rename it from ses-time-check and turn it into
2707         a macro.
2709         * ses.el (ses-setup): Don't assume modifying the iteration var of
2710         dotimes affects the iteration (bug#18191).
2712 2014-09-30  Vincent Belaïche  <vincentb1@users.sourceforge.net>
2714         * ses.el (ses-calculate-cell): Bind row and col dynamically to
2715         their values with 'cl-progv'.
2716         (ses-dorange): Bind row, col, maxrow and maxcol dynamically to
2717         their values with 'cl-progv', also use non-interned symbols for
2718         row, minrow, maxrow, mincol and maxcol.
2719         (maxrow maxcol): New defvar, to make the compiler happy.
2721 2014-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
2723         * minibuffer.el (completion-at-point): Emit warning for ill-behaved
2724         completion functions.
2726 2014-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
2728         * ses.el (ses--letref): Quote value before it gets re-evaluated.
2730 2014-09-28  Thien-Thi Nguyen  <ttn@gnu.org>
2732         Font-lock `cl-flet*', too.
2733         * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2):
2734         Add "flet*" to intermediate var `cl-lib-kw'.
2736 2014-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2738         * epg-config.el (epg-gpg-program): Use the plain program names rather
2739         than their absolute file name.
2741         * subr.el (track-mouse): New macro.
2742         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
2743         Remove track-mouse case.
2744         * emacs-lisp/bytecomp.el (byte-compile-track-mouse): Remove.
2746 2014-09-27  Leo Liu  <sdl.web@gmail.com>
2748         * progmodes/elisp-mode.el (elisp--eldoc-last-data): Use defvar.
2750         * emacs-lisp/eldoc.el (eldoc-mode): Fix thinko.
2752 2014-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2754         * emacs-lisp/pcase.el (pcase--split-match, pcase--app-subst-match):
2755         Handle the case where `match' is :pcase--succeed or :pcase--fail
2756         (bug#18554).
2758         Introduce global-eldoc-mode.  Move Elisp-specific code to elisp-mode.el.
2759         * emacs-lisp/eldoc.el (global-eldoc-mode): New minor mode.
2760         (eldoc-schedule-timer): Obey it.
2761         (eldoc-documentation-function): Default to nil.
2762         (eldoc-mode): Don't enable if eldoc-documentation-function is not set.
2763         (eldoc-documentation-function-default, eldoc-get-fnsym-args-string)
2764         (eldoc-highlight-function-argument, eldoc-get-var-docstring)
2765         (eldoc-last-data-store, eldoc-docstring-first-line)
2766         (eldoc-docstring-format-sym-doc, eldoc-fnsym-in-current-sexp)
2767         (eldoc-beginning-of-sexp, eldoc-current-symbol)
2768         (eldoc-function-argstring): Move to elisp-mode.el.
2769         (eldoc-symbol-function): Remove, unused.
2770         * progmodes/elisp-mode.el: New file.  Rename all "eldoc-*" to "elisp--*".
2771         (elisp-completion-at-point): Rename from lisp-completion-at-point.
2772         (elisp--preceding-sexp): Rename from preceding-sexp.
2773         * loadup.el: Load new file progmodes/elisp-mode.
2774         * ielm.el (inferior-emacs-lisp-mode): Set eldoc-documentation-function.
2775         * emacs-lisp/lisp.el (lisp--local-variables-1, lisp--local-variables)
2776         (lisp--local-variables-completion-table, lisp--expect-function-p)
2777         (lisp--form-quoted-p, lisp--company-doc-buffer)
2778         (lisp--company-doc-string, lisp--company-location)
2779         (lisp-completion-at-point): Move to elisp-mode.el.
2780         * emacs-lisp/lisp-mode.el (lisp--mode-syntax-table): New syntax-table,
2781         extracted from emacs-lisp-mode-syntax-table.
2782         (emacs-lisp-mode-abbrev-table, emacs-lisp-mode-syntax-table): Move to
2783         elisp-mode.el.
2784         (lisp-imenu-generic-expression): Add comments to document what comes
2785         from which Lisp dialect.
2786         (emacs-lisp-mode-map, emacs-lisp-byte-compile)
2787         (emacs-lisp-byte-compile-and-load, emacs-lisp-mode-hook)
2788         (emacs-lisp-mode, emacs-list-byte-code-comment-re)
2789         (emacs-lisp-byte-code-comment)
2790         (emacs-lisp-byte-code-syntax-propertize, emacs-lisp-byte-code-mode)
2791         (lisp-interaction-mode-map, lisp-interaction-mode)
2792         (eval-print-last-sexp, last-sexp-setup-props)
2793         (last-sexp-toggle-display, prin1-char, preceding-sexp)
2794         (eval-last-sexp-1, eval-last-sexp-print-value)
2795         (eval-last-sexp-fake-value, eval-sexp-add-defvars, eval-last-sexp)
2796         (eval-defun-1, eval-defun-2, eval-defun): Move to elisp-mode.el.
2798 2014-09-26  Paul Eggert  <eggert@cs.ucla.edu>
2800         * progmodes/grep.el (grep-regexp-alist): Use more-accurate regexp.
2801         Do not match file names that end in '/', as they cannot be 'grep'
2802         hits nowadays.  This prevents confusion when 'grep -r' reports a
2803         match in a file whose basename is ':12345:'.  Conversely, do not
2804         require exactly the same sequence of spaces and tabs after both
2805         colons, and allow spaces or tabs before the second colon, as per
2806         the POSIX spec for 'grep' output.
2808 2014-09-26  Leo Liu  <sdl.web@gmail.com>
2810         Add cl-parse-integer based on parse-integer (Bug#18557)
2811         * calendar/parse-time.el (parse-time-digits): Remove.
2812         (digit-char-p, parse-integer) Moved to cl-lib.el.
2813         (parse-time-tokenize, parse-time-rules, parse-time-string):
2814         Use cl-parse-integer.
2816         * emacs-lisp/cl-extra.el (cl-parse-integer): New function.
2818         * emacs-lisp/cl-lib.el (cl-digit-char-table): New var.
2819         (cl-digit-char-p): New function.
2821 2014-09-25  Juri Linkov  <juri@jurta.org>
2823         * vc/add-log.el (change-log-next-buffer): Don't create an empty
2824         buffer "ChangeLog" when the current buffer doesn't match ChangeLog.[0-9].
2825         Return the current buffer if no files match the default pattern
2826         ChangeLog.[0-9].  Signal "end of multi" when file is nil. (Bug#18547)
2828 2014-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
2830         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Don't modify
2831         the global vc-handled-backends (bug#18535).
2833 2014-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
2835         * find-cmd.el (find-cmd): Use grep's `find-program' (bug#18518).
2836         Suggested by <lompik@voila.fr>.
2838 2014-09-24  Ulf Jasper  <ulf.jasper@web.de>
2840         * net/newst-treeview.el (newsticker--treeview-do-get-node-by-id):
2841         Rename from `newsticker--treeview-do-get-node'.
2842         (newsticker--treeview-get-node-by-id):
2843         Rename from `newsticker--treeview-get-node'.
2844         (newsticker--treeview-buffer-init)
2845         (newsticker--treeview-buffer-init): Disable buffer undo.
2846         (newsticker--treeview-unfold-node): Adapt to modified
2847         `newsticker--group-find-parent-group'.
2848         (newsticker--group-do-find-group):
2849         Rename from `newsticker--group-do-find-group-for-feed'.
2850         Now works for both, groups and feeds.
2851         (newsticker--group-find-parent-group):
2852         Rename from `newsticker--group-find-group-for-feed'.
2853         Now works for both, groups and feeds.
2854         (newsticker--group-do-get-parent-group)
2855         (newsticker--group-get-parent-group): Remove.
2856         (newsticker-group-add-group): Change interactive prompts.
2857         (newsticker-group-add-group): Finally jump to added group.
2858         (newsticker-group-delete-group): Finally jump to current feed.
2859         (newsticker--group-do-rename-group, newsticker-group-rename-group)
2860         (newsticker--get-group-names, newsticker--group-names): New.
2861         (newsticker-group-move-feed): Finally jump to moved feed.
2862         (newsticker-group-shift-feed-down, newsticker-group-shift-feed-up)
2863         (newsticker-group-shift-group-down)
2864         (newsticker-group-shift-group-up, newsticker--group-shift): New.
2865         (newsticker-treeview-mode-map): New keybindings for new shift commands.
2867         * net/newst-backend.el (newsticker--item-list)
2868         (newsticker--item-position, newsticker--prev-message)
2869         (newsticker--scrollable-text): Move to newst-ticker.el.
2871         * net/newst-ticker.el (newsticker--item-list)
2872         (newsticker--item-position, newsticker--prev-message)
2873         (newsticker--scrollable-text): Move from newst-backend.el.
2875 2014-09-22  Kan-Ru Chen  <kanru@kanru.info>
2877         * window.el (fit-window-to-buffer): When counting buffer width,
2878         count the whole visible buffer.  Correctly convert the body-height
2879         to pixel size for window-text-pixel-size (Bug#18498).
2881 2014-09-22  Sam Steingold  <sds@gnu.org>
2883         * progmodes/sql.el (sql-product-alist): Improve the Vertica entry.
2884         (sql-execute): Use `special-mode'.
2886 2014-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2888         Add pcase-defmacro, as well as `quote' and `app' patterns.
2889         * loadup.el: Increase max-lisp-eval-depth when macroexpanding macroexp.
2890         * emacs-lisp/pcase.el: Allow (F . ARGS) in `app' patterns.
2891         (pcase--funcall, pcase--eval): New functions.
2892         (pcase--u1): Use them for guard, pred, let, and app.
2893         (\`): Use the new feature to generate better code for vector patterns.
2894         * emacs-lisp/pcase.el: Use pcase-defmacro to handle backquote.
2895         (pcase--upat): Remove.
2896         (pcase--macroexpand): Don't hardcode handling of `.
2897         (pcase--split-consp, pcase--split-vector): Remove.
2898         (pcase--split-equal): Disregard ` since it's expanded away.
2899         (pcase--split-member): Optimize for quote rather than for `.
2900         (pcase--split-pred): Optimize for quote rather than for `.
2901         (pcase--u1): Remove handling of ` (and of `or' and `and').
2902         Quote non-selfquoting values when passing them to `eq'.
2903         Drop `app's let-binding if the variable is not used.
2904         (pcase--q1): Remove.
2905         (`): Define as a pattern macro.
2906         * emacs-lisp/pcase.el (pcase--match): New smart-constructor function.
2907         (pcase--expand pcase--q1, pcase--app-subst-match): Use it.
2908         (pcase--macroexpand): Handle self-quoting patterns here, expand them to
2909         quote patterns.
2910         (pcase--split-match): Don't hoist or/and here any more.
2911         (pcase--split-equal): Optimize quote patterns as well as ` patterns.
2912         (pcase--flip): New helper macro.
2913         (pcase--u1): Optimize the memq case directly.
2914         Don't handle neither self-quoting nor and/or patterns any more.
2915         * emacs-lisp/pcase.el (pcase-defmacro): New macro.
2916         (pcase--macroexpand): New function.
2917         (pcase--expand): Use it.
2918         * emacs-lisp/pcase.el (pcase--app-subst-match, pcase--app-subst-rest):
2919         New optimization functions.
2920         (pcase--u1): Add support for `quote' and `app'.
2921         (pcase): Document them in the docstring.
2923 2014-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2925         Use lexical-bindin in Ibuffer.
2926         * ibuffer.el (ibuffer-do-toggle-read-only): `arg' is unused.
2927         (ibuffer-compile-format): Simplify.
2928         (ibuffer-clear-summary-columns): Simplify.
2929         * ibuf-ext.el (ibuffer-generate-filter-groups): Don't use the third
2930         elem of dotimes when we don't refer to the iteration var from it.
2931         (ibuffer-toggle-sorting-mode): Avoid add-to-list.
2932         * ibuf-macs.el (define-ibuffer-column, define-ibuffer-op):
2933         Silence byte-compiler.
2935 2014-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
2937         * font-lock.el (font-lock-compile-keyword): Don't confuse a lambda
2938         expression for a list.
2940         * emacs-lisp/bytecomp.el (byte-compile-lambda): Don't add fundoc usage
2941         for functions with no arguments.
2943         * mpc.el (mpc-data-directory): Use locate-user-emacs-file.
2944         (mpc-volume-refresh): Make sure the corresponding header-line is updated.
2946 2014-09-17  Tom Willemse  <tom@ryuslash.org>  (tiny change)
2948         * simple.el (clone-indirect-buffer): Mention the return value
2949         (bug#18478).
2951         * progmodes/prog-mode.el (prog-mode-hook): Replace reference to
2952         Text mode in docstring (bug#18464).
2954 2014-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
2956         * progmodes/perl-mode.el (perl-syntax-propertize-function):
2957         Accept underscores in identifiers after "sub" (bug#18502).
2959 2014-09-21  Tassilo Horn  <tsdh@gnu.org>
2961         * textmodes/reftex-sel.el (reftex-select-label-mode)
2962         (reftex-select-bib-mode, reftex-insert-docstruct): Derive modes
2963         from special-mode (instead of fundamental-mode) and propertize
2964         with font-lock-face instead of just face. (Bug#18496)
2966         * textmodes/reftex-toc.el (reftex-toc-mode, reftex-toc): Ditto.
2968 2014-09-19  Dmitry Gutov  <dgutov@yandex.ru>
2970         * emacs-lisp/lisp.el (lisp-completion-at-point): Only calculate
2971         `table-etc' when `end' is non-nil.
2972         (lisp-completion-at-point): Move `end' back if it's after quote.
2973         If in comment or string, only complete when after backquote.
2974         (Bug#18265)
2975         (lisp-completion-at-point): Don't use
2976         `lisp--local-variables-completion-table' in the
2977         `lisp--form-quoted-p' case.
2979 2014-09-19  Dmitry Gutov  <dgutov@yandex.ru>
2981         * emacs-lisp/lisp.el (lisp--expect-function-p)
2982         (lisp--form-quoted-p): New functions.
2983         (lisp-completion-at-point): Use them to see if we're completing a
2984         variable reference, a function name, or just any symbol.
2985         http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00229.html
2987 2014-09-18  Ivan Kanis  <ivan@kanis.fr>
2989         * net/shr.el, net/eww.el: Don't override `shr-width', but
2990         introduce a new variable `shr-internal-width'.  This allows users
2991         to specify a width themselves.
2993 2014-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2995         * image-mode.el (image-toggle-display-image): If we have a
2996         `fit-width' or a `fit-height', don't limit the size of the image
2997         to the window size, because that doesn't preserve the aspect ratio.
2998         * image-mode.el: Move defvars earlier to avoid a byte-compilation
2999         warning.
3001 2014-09-17  Reuben Thomas  <rrt@sc3d.org>
3003         * progmodes/js.el: Add interpreter-mode-alist support for various
3004         JavaScript interpreters.
3006 2014-09-17  Paul Eggert  <eggert@cs.ucla.edu>
3008         Don't assume 'grep' supports GREP_OPTIONS.
3009         The GREP_OPTIONS environment variable is planned to be marked
3010         obsolescent in GNU grep, due to problems in its use, so stop
3011         relying on it.
3012         * progmodes/grep.el (grep-highlight-matches): Document this.
3013         (grep-process-setup): Do not set GREP_OPTIONS.
3014         (grep-compute-defaults): Use an explicit --color option if supported.
3016 2014-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
3018         * msb.el (msb--make-keymap-menu, msb-menu-bar-update-buffers):
3019         Don't add outdated key-shortcut cache (bug#18482).
3021 2014-09-15  Glenn Morris  <rgm@gnu.org>
3023         * image.el (image-multi-frame-p): Fix thinko - do not force
3024         a delay if none was specified.  (Bug#18334)
3026 2014-09-15  Kan-Ru Chen  <kanru@kanru.info>
3028         * window.el (fit-window-to-buffer): Doc fix.
3030 2014-09-15  Ivan Shmakov  <ivan@siamics.net>
3032         * desktop.el (desktop-create-buffer): Check that buffers are still live
3033         before burying them (bug#18373).
3035 2014-09-15  Glenn Morris  <rgm@gnu.org>
3037         * calendar/diary-lib.el (diary-list-entries):
3038         Restore 24.3 display behavior.  (Bug#18381)
3040 2014-09-15  Eli Zaretskii  <eliz@gnu.org>
3042         * mouse.el (mouse-drag-line): On text-mode frames, count the mode
3043         line and header line as 1 pixel.  This fixes the 1-"pixel" (row)
3044         discrepancy between window-pixel-edges and mouse events, and
3045         avoids moving mode line up when the mouse click is on the modeline
3046         and no drag is attempted.
3048 2014-09-14  Daniel Colascione  <dancol@dancol.org>
3050         * register.el (insert-register): Change default interactive
3051         insertion mode.
3053 2014-09-14  Michael Albinus  <michael.albinus@gmx.de>
3055         * net/tramp-cache.el (tramp-flush-file-function): Simplify check.
3056         Suppress debug messages.
3058         * net/tramp.el (tramp-file-name-handler):
3059         * net/tramp-gvfs.el (tramp-gvfs-url-file-name): Apply `cons' where
3060         appropriate.
3062 2014-09-13  Christopher Schmidt  <ch@ristopher.com>
3064         * calendar/calendar.el (calendar-update-mode-line):
3065         Do not overwrite mode-line-format if calendar-mode-line-format is
3066         nil.  (Bug#18467)
3068 2014-09-13  Leo Liu  <sdl.web@gmail.com>
3070         * emacs-lisp/pcase.el (pcase--dontwarn-upats): New var.
3071         (pcase--expand): Use it.
3072         (pcase-exhaustive): New macro.  (Bug#16567)
3074         * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
3075         Add pcase-exhaustive.
3077 2014-09-13  Eli Zaretskii  <eliz@gnu.org>
3079         * mail/rmailmm.el (rmail-mime-insert-html): Decode the HTML part
3080         using the specified transfer-encoding, if any, or 'undecided'.
3081         (rmail-mime-render-html-shr): Bind shr-width to nil, so lines are
3082         broken at the window margin.
3084 2013-12-27  Ken Olum  <kdo@cosmos.phy.tufts.edu>
3086         Support rendering of HTML parts in Rmail (bug#4258).
3087         * mail/rmailmm.el (rmail-mime-process): Handle text/html
3088         separately from other text/ types.  Suppress tagline for
3089         multipart body.
3090         (rmail-mime-parse): Don't change visibility of tagline here.
3091         (rmail-mime-set-bulk-data, rmail-mime-insert-bulk):
3092         Handle text/html specially.
3093         (rmail-mime-render-html-function,rmail-mime-prefer-html): New variables.
3094         (rmail-mime-insert-html, rmail-mime-render-html-shr)
3095         (rmail-mime-render-html-lynx): New functions.
3096         (rmail-mime-fix-inserted-faces): New function.
3097         (rmail-mime-process-multipart): Find the best part to show
3098         following rmail-mime-prefer-html if set.
3099         (rmail-mime-searching): New variable.
3100         (rmail-search-mime-message): Bind rmail-mime-searching to
3101         suppress rendering while searching.
3103 2014-09-12  Sam Steingold  <sds@gnu.org>
3105         * progmodes/sql.el (sql-product-alist): Add vertica.
3106         (sql-vertica-program, sql-vertica-options)
3107         (sql-vertica-login-params, sql-comint-vertica, sql-vertica):
3108         New functions and variables to support Vertica.
3109         Inspired by code by Roman Scherer <roman@burningswell.com>.
3111 2014-09-11  Paul Eggert  <eggert@cs.ucla.edu>
3113         * ses.el (ses-file-format-extend-parameter-list): Rename from
3114         ses-file-format-extend-paramter-list, to correct a misspelling.
3115         All uses changed.
3117 2014-09-10  Alan Mackenzie  <acm@muc.de>
3119         CC Mode: revert recent changes and fix bug 17463 (cc-langs.elc
3120         gets loaded at run-time).
3121         * progmodes/cc-langs.el (c-no-parens-syntax-table): Rename the
3122         c-lang-const to c-make-no-parens-syntax-table and correct the
3123         logic.
3124         (c-no-parens-syntax-table): Correct the logic of the
3125         c-lang-defvar.
3127 2014-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
3129         CC-mode: Set open-paren-in-column-0-is-defun-start to nil;
3130         plus misc cleanup.
3131         * progmodes/cc-mode.el (c-basic-common-init):
3132         Set open-paren-in-column-0-is-defun-start.
3133         (adaptive-fill-first-line-regexp, font-lock-syntactic-keywords):
3134         Remove declarations, unused.
3135         (run-mode-hooks): Remove declaration.
3136         (font-lock-defaults): Use plain `defvar' to declare.
3137         (c-run-mode-hooks): Test existence of run-mode-hooks with fboundp.
3138         * progmodes/cc-langs.el (c-filter-ops): Avoid `setq'.
3139         (c-make-mode-syntax-table): Don't micro-optimize.
3140         (c-keywords, c-keyword-member-alist): Simplify.
3141         (c-kwds-lang-consts): Don't eval at compile-time.
3142         (c-primary-expr-regexp): Comment out unused vars.
3143         * progmodes/cc-fonts.el (c-font-lock-context): Declare at top-level.
3144         (c-font-byte-compile): New var.
3145         (c--compile): New function.  Use it instead of `byte-compile'.
3146         (c-cpp-matchers): Quote the value returned by
3147         `c-make-syntactic-matcher' in case it's not self-evaluating.
3148         (c-basic-matchers-before): Avoid a plain MATCHER as keyword, wrap it in
3149         parentheses instead (in case MATCHER happens to be a list).
3150         (c-font-lock-enum-tail): Remove unused var `start'.
3151         (c-font-lock-objc-methods): Silence byte-compiler warnings.
3152         * progmodes/cc-engine.el (c-syntactic-re-search-forward): Sink an `if'
3153         test into an argument.
3154         * progmodes/cc-defs.el (c-point, c-major-mode-is, c-put-char-property)
3155         (c-get-char-property): Don't use `eval' just to unquote a constant.
3156         (c-use-extents): Remove.  Use (featurep 'xemacs), compiled
3157         more efficiently.
3158         (c-put-char-property-fun): Don't call `byte-compile' by hand.
3159         (c-clear-char-property, c-clear-char-properties): Check that `property'
3160         is a quoted constant.
3161         (c-emacs-features): Remove `infodock', `syntax-properties', and
3162         `pps-extended-state' (never used), `8-bit' and `1-bit' (use (featurep
3163         'xemacs) instead).  Use `with-temp-buffer' and let-bind vars after
3164         changing buffer, so we don't have to setq them again afterwards.
3165         (c-lang-const): Remove redundant symbolp assertions.
3166         (c-find-assignment-for-mode): Use `or'.
3167         * Makefile.in (compile-one-process): Remove cc-mode dependency.
3169 2014-09-09  Sam Steingold  <sds@gnu.org>
3171         * progmodes/sql.el (sql-default-directory): Fix type annotation.
3173 2014-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
3175         * progmodes/cc-awk.el: Remove unneeded cc-bytecomp use.
3176         Change doc comments into docstrings.
3177         * Makefile.in: Remove cc-awk dependency.
3179 2014-09-08  Sam Steingold  <sds@gnu.org>
3181         * progmodes/sql.el (sql-send-line-and-next): New command,
3182         bound to C-c C-n.
3183         (sql-show-sqli-buffer): Display the buffer instead of its name and
3184         bind the command to C-c C-z.
3185         (sql-default-directory): New user option.
3186         (sql-product-interactive): Bind `default-directory' to it to
3187         enable remote connections using Tramp.
3188         (sql-set-sqli-buffer): Call `sql-product-interactive' when no
3189         suitable buffer is available.
3191 2014-09-08  Glenn Morris  <rgm@gnu.org>
3193         * calendar/calendar.el (calendar-basic-setup):
3194         Fix calendar-view-holidays-initially-flag and fancy display.
3195         * calendar/diary-lib.el (diary-live-p): Doc fix.
3197         * calendar/calendar.el (calendar-basic-setup):
3198         Avoid clobbering calendar with diary.  (Bug#18381)
3200 2014-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3202         * vc/vc-dir.el (vc-dir-update): Don't burp in corner case.
3204 2014-09-08  Lars Ljung  <lars@matholka.se>  (tiny change)
3206         * isearch.el (isearch-yank-word-or-char): Obey superword-mode
3207         as well (bug#18400).
3209 2014-09-08  Eli Zaretskii  <eliz@gnu.org>
3211         * subr.el (posn-actual-col-row): Doc fix.  (Bug#18385)
3213 2014-09-06  Leo Liu  <sdl.web@gmail.com>
3215         * emacs-lisp/pcase.el (pcase): Doc fix.
3216         (pcase--split-vector): New function.
3217         (pcase--q1): Support vector qpattern.  (Bug#18327)
3219 2014-09-05  Sam Steingold  <sds@gnu.org>
3221         * textmodes/tex-mode.el (tex-print-file-extension): New user
3222         option.
3223         (tex-print): Use it instead of the hard-coded string.
3225 2014-09-05  Michael Albinus  <michael.albinus@gmx.de>
3227         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
3228         Expand `default-directory'.
3230 2014-09-05  Martin Rudalics  <rudalics@gmx.at>
3232         * scroll-bar.el (horizontal-scroll-bars-available-p):
3233         New function.
3234         (horizontal-scroll-bar-mode): Rewrite using
3235         horizontal-scroll-bars-available-p.
3236         * menu-bar.el (menu-bar-showhide-scroll-bar-menu): Rewrite using
3237         horizontal-scroll-bars-available-p.
3239 2014-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3241         * subr.el (call-process-shell-command, process-file-shell-command):
3242         Make the `args' obsolete (bug#18409).
3243         (start-process-shell-command, start-file-process-shell-command):
3244         Use `declare'.
3246 2014-09-05  Jay Belanger  <jay.p.belanger@gmail.com>
3248         * calc/calc-forms.el (math-normalize-hms): Do a better check for
3249         "negative" hms forms.
3251 2014-09-04  Rasmus Pank Roulund  <emacs@pank.eu>
3253         * vc/vc-git.el (vc-git-conflicted-files): Fix bug when git status
3254         returns nil (bug#18391).
3256 2014-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3258         * emacs-lisp/eldoc.el (eldoc-function-argstring): Don't strip
3259         terminating paren (bug#18352).
3260         (eldoc-last-data-store): Return cached data.
3261         (eldoc-get-var-docstring): Avoid setq.
3262         (eldoc-get-fnsym-args-string): Clarify data flow.
3264 2014-09-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3266         * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): Handle the
3267         case where we're currently providing part of the &rest arg after some
3268         &key args, as in define-ibuffer-op (bug#18048).
3270 2014-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3272         * progmodes/which-func.el (which-func-ff-hook): Obey pre-existing
3273         buffer-local setting of which-func-mode.
3274         (which-func-mode): Use defvar-local.
3275         (which-function-mode): Don't reset which-func-mode in each buffer since
3276         it might have been set by someone else.
3277         (which-func-update-ediff-windows): Check which-function-mode.
3279 2014-09-03  Martin Rudalics  <rudalics@gmx.at>
3281         * frame.el (frame-initialize): Remove horizontal-scroll-bars
3282         from frame-initial-frame-alist.
3283         * scroll-bar.el (previous-horizontal-scroll-bar-mode)
3284         (horizontal-scroll-bar-mode-explicit)
3285         (set-horizontal-scroll-bar-mode, get-horizontal-scroll-bar-mode)
3286         (toggle-horizontal-scroll-bar): Remove.
3287         (horizontal-scroll-bar-mode): Remove defcustom.
3288         (horizontal-scroll-bar-mode): Fix doc-string.
3289         (scroll-bar-toolkit-scroll)
3290         (scroll-bar-toolkit-horizontal-scroll): Add doc-strings stubs.
3292 2014-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3294         * emacs-lisp/package.el (package-generate-description-file):
3295         Properly quote the arguments (bug#18332).  Change second arg.
3296         (package--alist-to-plist-args): Rename from package--alist-to-plist and
3297         quote the elements.
3298         (package--make-autoloads-and-stuff): Fix the test for pre-existence of
3299         the *-pkg.el file.  Adjust to new calling convention of
3300         package-generate-description-file.
3302         * progmodes/gud.el (gud-gdb-completion-at-point): Add hack (bug#18282).
3303         (gud-gdb-completions): Remove obsolete workaround.
3305 2014-09-03  Eli Zaretskii  <eliz@gnu.org>
3307         * subr.el (posn-col-row): Revert the change from commit
3308         2010-11-13T21:07:58Z!eliz@gnu.org, which
3309         was inadvertently merged from emacs-23 release branch in 2010-11-18T03:54:14Z!monnier@iro.umontreal.ca
3310         monnier@iro.umontreal.ca-20101118035414-yvlg7k7dk4k4l3q, and
3311         introduced an off-by-one error in the reported row when there is a
3312         header line.  (Bug#18384)
3314 2014-09-03  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3316         * progmodes/python.el (python-indent-post-self-insert-function):
3317         Avoid electric colon at beginning-of-defun.  (Bug#18228)
3319 2014-09-03  Glenn Morris  <rgm@gnu.org>
3321         * tutorial.el (tutorial--display-changes):
3322         Fix 2014-08-01 change.  (Bug#18382)
3324 2014-09-03  Ken Brown  <kbrown@cornell.edu>
3326         * startup.el (fancy-splash-frame): Extend the fix for Bug#16014 to
3327         the Cygwin-w32 build.  (Bug#18347)
3329 2014-09-03  Glenn Morris  <rgm@gnu.org>
3331         * tar-mode.el (tar--extract, tar-extract):
3332         Avoid permanently disabling undo in extracted buffers.  (Bug#18344)
3334 2014-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3336         * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Try to better
3337         handle multiline elements (bug#18380).
3339 2014-09-01  Eli Zaretskii  <eliz@gnu.org>
3341         * ls-lisp.el (ls-lisp-use-string-collate)
3342         (ls-lisp-UCA-like-collation): New defcustoms.
3343         (ls-lisp-string-lessp): Use them to control sorting by file
3344         names.  (Bug#18051)
3345         (ls-lisp-version-lessp): New function.
3346         (ls-lisp-handle-switches): Use it to implement the -v switch of
3347         GNU ls.
3348         (ls-lisp--insert-directory): Mention the -v switch in the doc string.
3350 2014-08-31  Christoph Scholtes  <cschol2112@gmail.com>
3352         * ibuffer.el: Replace mode-specific quit function with
3353         `quit-window' via `special-mode'.
3354         (ibuffer-mode-map): Use keybindings from special-mode-map instead
3355         of local overrides.
3356         (ibuffer): Don't store previous windows configuration.
3357         Let `quit-window' handle restoring.
3358         (ibuffer-quit): Remove function. Use `quit-window' instead.
3359         (ibuffer-restore-window-config-on-quit): Remove variable.
3360         (ibuffer-prev-window-config): Remove variable.
3362 2014-08-29  Michael Heerdegen  <michael_heerdegen@web.de>
3364         * emacs-lisp/easy-mmode.el (define-minor-mode): Use mode function
3365         name instead of variable name in hook docstring.  (Bug#18349)
3367 2014-08-29  Martin Rudalics  <rudalics@gmx.at>
3369         * window.el (display-buffer-at-bottom): Prefer bottom-left
3370         window to other bottom windows.  Reuse a bottom window if it
3371         shows the buffer already.  Suggested by Juri Linkov
3372         <juri@jurta.org> in discussion of (Bug#18181).
3374 2014-08-29  Leo Liu  <sdl.web@gmail.com>
3376         * files.el (minibuffer-with-setup-hook): Allow (:append FUN) to
3377         append to minibuffer-setup-hook.  (Bug#18341)
3379 2014-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3381         * progmodes/cc-defs.el: Expose c-lanf-defconst's expressions to the
3382         byte-compiler.
3383         (lookup-syntax-properties): Silence byte-compiler.
3384         (c-lang-defconst): Quote the code with `lambda' rather than with
3385         `quote'.
3386         (c-lang-const): Avoid unneeded setq.
3387         (c-lang-constants-under-evaluation): Add docstring.
3388         (c-lang--novalue): New constant.
3389         (c-find-assignment-for-mode): Use it instead of c-lang-constants.
3390         (c-get-lang-constant): Same here.
3391         Get the mode's value using `funcall' now that the code is quoted
3392         with `lambda'.
3394 2014-08-28  Michael Albinus  <michael.albinus@gmx.de>
3396         * net/tramp.el (tramp-handle-shell-command): Use `display-buffer'.
3397         (Bug#18326)
3399 2014-08-28  Martin Rudalics  <rudalics@gmx.at>
3401         * scroll-bar.el (scroll-bar-horizontal-drag-1): Handle new
3402         interpretation of `portion-whole'.
3404 2014-08-28  Michael Albinus  <michael.albinus@gmx.de>
3406         * net/tramp-adb.el: Spell author name correctly.
3408 2014-08-28  João Távora  <joaotavora@gmail.com>
3410         * net/shr.el (shr-expand-url): Plain expand-file-name is not enough;
3411         use url-expand-file-name.  (Bug#18310)
3413 2014-08-28  Glenn Morris  <rgm@gnu.org>
3415         * emulation/cua-rect.el (cua--highlight-rectangle):
3416         Avoid error at point-min.  (Bug#18309)
3418 2014-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
3420         * progmodes/python.el (python-shell-prompt-detect): Remove redundant
3421         executable-find (bug#18244).
3423         * simple.el (self-insert-uses-region-functions): Defvar.
3425 2014-08-28  Glenn Morris  <rgm@gnu.org>
3427         * subr.el (remq): Revert 2014-08-25 doc change (not always true).
3429 2014-08-27  Dmitry Antipov  <dmantipov@yandex.ru>
3431         * startup.el (normal-top-level): Now use internal--top-level-message.
3433 2014-08-26  Dmitry Antipov  <dmantipov@yandex.ru>
3435         * startup.el (normal-top-level): Use top-level-message.
3437 2014-08-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3439         * net/shr.el (shr-copy-url): Encode copied URL to avoid getting
3440         URLs containing spaces and the like.
3442 2014-08-25  Christoph Scholtes  <cschol2112@gmail.com>
3444         * subr.el (remq): Fix docstring (Bug#18253).
3446 2014-08-25  Christoph Scholtes  <cschol2112@gmail.com>
3448         * replace.el (query-replace): Fix typo in docstring (Bug#18320).
3450 2014-08-24  Alan Mackenzie  <acm@muc.de>
3452         Handle C++11's "auto" and "decltype" constructions.
3453         * progmodes/cc-engine.el (c-forward-type): Enhance to recognise
3454         and return 'decltype.
3455         (c-forward-decl-or-cast-1): New let variables backup-kwd-sym,
3456         prev-kwd-sym, new-style-auto.  Enhance to handle the new "auto"
3457         keyword.
3458         * progmodes/cc-fonts.el (c-font-lock-declarations): Handle the
3459         "decltype" keyword.
3460         (c-font-lock-c++-new): Handle "decltype" constructions.
3461         * progmodes/cc-langs.el (c-auto-ops, c-auto-ops-re):
3462         New c-lang-defconsts/defvars.
3463         (c-haskell-op, c-haskell-op-re): New c-lang-defconsts/defvars.
3464         (c-typeof-kwds, c-typeof-key): New c-lang-defconsts/defvars.
3465         (c-typeless-decl-kwds): Append "auto" onto the C++ value.
3466         (c-not-decl-init-keywords): Also exclude c-typeof-kwds from value.
3468         Make ">>" act as double template ender in C++ Mode.  (Bug#11386)
3469         * progmodes/cc-langs.el (c->-op-cont-tokens): New lang-const split
3470         off from c->-op-cont-re.
3471         (c->-op-cont-tokens): Change to use the above.
3472         (c->-op-without->-cont-regexp): New lang-const.
3473         * progmodes/cc-engine.el (c-forward-<>-arglist-recur):
3474         Use c->-op-without->-cont-regexp in place of c->-op-cont-tokens.
3477 2014-08-23  Alan Mackenzie  <acm@muc.de>
3479         * progmodes/cc-fonts.el (c-font-lock-declarators): Fix infinite
3480         loop, bug #18306.  The bug was introduced on 2014-08-02.
3482 2014-08-21  Eli Zaretskii  <eliz@gnu.org>
3484         * textmodes/texnfo-upd.el (texinfo-specific-section-type):
3485         Don't recognize a Top node if there are other sectioning commands
3486         earlier in the Texinfo file.  This fixes a bug in
3487         texinfo-make-menu and avoids inflooping in
3488         texinfo-all-menus-update when they are invoked on texinfo.texi.
3490 2014-08-21  Martin Rudalics  <rudalics@gmx.at>
3492         * window.el (window--side-window-p): New function.
3493         (split-window, window-splittable-p): Use window--side-window-p to
3494         determine whether WINDOW can be split (Bug#18304).
3495         * calendar/calendar.el (calendar-basic-setup): Fix one call of
3496         `window-splittable-p' and add another (Bug#18304).
3498 2014-08-20  Sam Steingold  <sds@gnu.org>
3500         * progmodes/python.el (python-new-pythonpath): Extract from
3501         `python-shell-calculate-process-environment'.
3503 2014-08-18  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
3505         * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): Add support
3506         for &key args (bug#18048).
3508 2014-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
3510         * emacs-lisp/eldoc.el (eldoc-argument-case): Obsolete and change default.
3511         (eldoc-function-argstring-format): Remove.
3512         (eldoc-function-argstring): Always return upcase args.
3513         Use help-make-usage.  Don't add parens.
3514         (eldoc-get-fnsym-args-string): Don't obey eldoc-argument-case since
3515         it's too late to do it right (bug#18048).
3517 2014-08-18  Eli Zaretskii  <eliz@gnu.org>
3519         * scroll-bar.el (scroll-bar-horizontal-drag-1)
3520         (scroll-bar-toolkit-horizontal-scroll): When determining the
3521         paragraph direction, use the buffer of the window designated in
3522         the event.
3524 2014-08-16  Andreas Schwab  <schwab@linux-m68k.org>
3526         * vc/diff-mode.el (diff-fixup-modifs): Handle empty line in
3527         context of unified diff.
3529 2014-08-16  Paul Eggert  <eggert@cs.ucla.edu>
3531         Add dependencies to fix loaddefs race during parallel builds.
3532         Without this, for example, 'make -j bootstrap' can fail and report
3533         "Opening input file: no such file or directory,
3534         .../lisp/calendar/diary-loaddefs.el ... recipe for target
3535         'calendar/hol-loaddefs.el' failed", where the hol-loaddefs.el rule
3536         got confused because diary-loaddefs.el was being built in parallel.
3537         * Makefile.in ($(CAL_DIR)/diary-loaddefs.el):
3538         Depend on $(CAL_DIR)/cal-loaddefs.el.
3539         ($(CAL_DIR)/hol-loaddefs.el): Depend on $(CAL_DIR)/diary-loaddefs.el.
3541 2014-08-16  Martin Rudalics  <rudalics@gmx.at>
3543         * scroll-bar.el (scroll-bar-horizontal-drag-1): Use cdr of
3544         portion-whole for scrolling right-to-left text.
3546 2014-08-15  Leo Liu  <sdl.web@gmail.com>
3548         * speedbar.el (speedbar-generic-list-tag-p): Allow special
3549         elements from imenu.
3551 2014-08-15  Glenn Morris  <rgm@gnu.org>
3553         * subr.el (with-output-to-temp-buffer): Doc fix; from elisp manual.
3555 2014-08-13  Jan Nieuwenhuizen  <janneke@gnu.org>
3557         * progmodes/compile.el (compilation-error-regexp-alist-alist):
3558         Add Guile regexpses.
3560 2014-08-13  Jan Nieuwenhuizen  <janneke@gnu.org>
3562         * progmodes/gud.el (guiler): New function.  Starts the Guile REPL;
3563         add Guile debugger support for GUD.
3565 2014-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
3567         * obsolete/mouse-sel.el (mouse-sel-mode): Use add/remove-function.
3568         (mouse-sel--ignore): New function.
3569         (mouse-sel-has-been-enabled, mouse-sel-original-bindings)
3570         (mouse-sel-original-interprogram-cut-function)
3571         (mouse-sel-original-interprogram-paste-function): Remove.
3573 2014-08-13  Eric S. Raymond  <esr@thyrsus.com>
3575         * vc/vc-git.el (vc-git-resolve-when-done): New function.
3576         Call "git add" when there are no longer conflict markers.
3578 2014-08-13  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
3580         * vc/vc-git.el (vc-git-find-file-hook): New function.
3581         Adds support for calling smerge (and resolve) on a conflicted file.
3582         (vc-git-conflicted-files): New function.
3583         Useful in itself and a step towards better smerge support.
3585 2014-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3587         * mpc.el (mpc-reorder): Don't bother splitting the "active" elements
3588         to the first part if they're the same as the selection.
3590 2014-08-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3592         * image-mode.el (image-transform-reset): New command and menu item.
3593         (image-mode-map): Rearrange the menu items to put presumably more
3594         obscure items at the end.
3596 2014-08-12  Juri Linkov  <juri@jurta.org>
3598         * vc/vc-annotate.el (vc-annotate-background-mode):
3599         Use `with-demoted-errors' instead of `ignore-errors'.  (Bug#18189)
3601 2014-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3603         * files.el (out-of-memory-warning-percentage): Turn it off by default.
3605 2014-08-11  Sam Steingold  <sds@gnu.org>
3607         * textmodes/sgml-mode.el (sgml-validate-command): Set depending on
3608         the presence of known validators (tidy, (o)nsgmls).
3610 2014-08-11  Ulf Jasper  <ulf.jasper@web.de>
3612         Newsticker: introduce `newsticker-treeview-date-format'. (Bug#17227)
3614         * net/newst-treeview.el (newsticker-treeview-date-format): New.
3615         (newsticker--treeview-list-add-item): Use `newsticker-treeview-date-format'.
3617 2014-08-11  Glenn Morris  <rgm@gnu.org>
3619         * files.el (basic-save-buffer-2): Revert 2013-01-31 change, which
3620         chose coding system for writing before backing up, since it causes
3621         a more serious problem than the one it solves.  (Closes Bug#18141,
3622         reopens Bug#13522.)
3624 2014-08-11  Martin Rudalics  <rudalics@gmx.at>
3626         * window.el (window-total-size): Make doc-string more self-contained.
3628         * window.el (display-buffer-below-selected): Restore original
3629         behavior if buffer is already displayed in the window below the
3630         selected one (Bug#18181).
3632 2014-08-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3634         * mouse.el (mouse--down-1-maybe-follows-link): Don't convert the down
3635         event (bug#18212).
3637 2014-08-11  Eli Zaretskii  <eliz@gnu.org>
3639         * info.el (info): Doc fix.
3641 2014-08-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3643         * info.el (Info-mode-map): Override a global down-mouse-2 binding
3644         (bug#18212).
3646 2014-08-11  Eli Zaretskii  <eliz@gnu.org>
3648         * simple.el (default-line-height): A floating-point value of
3649         line-spacing means a fraction of the default frame font's height,
3650         not of the font currently used by the 'default' face.
3651         Truncate the pixel value, like the display engine does.
3652         (window-screen-lines): Use window-inside-pixel-edges for
3653         determining the window height in pixels.  (Bug#18195)
3655 2014-08-11  Grégoire Jadi  <daimrod@gmail.com>
3657         * leim/quail/latin-post.el: Transform " __" into " _".  (Bug#18023)
3659 2014-08-10  Ulf Jasper  <ulf.jasper@web.de>
3661         Enumerate evaluated sexp diary entries (Bug#7911).
3662         * calendar/icalendar.el (icalendar-export-sexp-enumerate-all)
3663         (icalendar-export-sexp-enumeration-days): New.
3664         (icalendar-export-region): Now `icalendar--convert-to-ical'
3665         returns a cons cell or a list of cons cells.
3666         (icalendar--convert-to-ical): Take care of
3667         `icalendar-export-sexp-enumerate-all'.  Return (a list of) cons cells.
3668         (icalendar--convert-ordinary-to-ical)
3669         (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
3670         (icalendar--convert-block-to-ical, icalendar--convert-block-to-ical)
3671         (icalendar--convert-float-to-ical, icalendar--convert-cyclic-to-ical)
3672         (icalendar--convert-anniversary-to-ical): Return cons cell.
3673         (icalendar--convert-sexp-to-ical): Enumerate evaluated sexp
3674         entries.  Return (list of) cons cells.
3676 2014-08-09  Juri Linkov  <juri@jurta.org>
3678         * vc/vc-annotate.el (vc-annotate-background-mode): Add :set
3679         to reevaluate `vc-annotate-color-map'.  (Bug#18189)
3681 2014-08-09  Alan Mackenzie  <acm@muc.de>
3683         * progmodes/cc-fonts.el (c-font-lock-declarators): Remove check
3684         for top-level that can cause unacceptable slow-down in scrolling.
3685         See email Subject: Huge {...} blocks in C/C++ again, from Dmitry
3686         Antipov from 2013-10-14 in emacs-devel.
3688 2014-08-08  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
3690         * ibuffer.el (ibuffer-mode-map): Use toggle button for
3691         `ibuffer-auto-mode' menu entry.
3692         (ibuffer-mode-hook): Add `ibuffer-auto-mode' customization option.
3694 2014-08-08  Matthias Meulien  <orontee@gmail.com>
3696         * progmodes/prog-mode.el (prog-mode-hook): Make customizable.
3697         (Bug#16394)
3699 2014-08-07  Martin Rudalics  <rudalics@gmx.at>
3701         * window.el (window--min-size-1): Explicitly set WINDOW arg in
3702         calls of window-min-pixel-height and window-min-pixel-width.
3704 2014-08-07  Reuben Thomas  <rrt@sc3d.org>
3706         * progmodes/ada-mode.el:
3707         * net/tramp.el (tramp-handle-file-symlink-p):
3708         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Remove a comment
3709         about VMS, which we no longer support.
3710         * progmodes/ada-xref.el (ada-xref-current): Remove mention of VMS,
3711         and fix a FIXME, using convert-standard-filename in place of
3712         removed ada-convert-file-name.
3714 2014-08-07  Eli Zaretskii  <eliz@gnu.org>
3716         * files.el (auto-mode-alist): Remove support for VMS from a pattern.
3718 2014-08-07  Reuben Thomas  <rrt@sc3d.org>
3720         Refer to MS-DOS using the same name everywhere.
3721         * arc-mode.el, files.el, frame.el: ``MS-DOG'', ``MSDOG'' and
3722         ``msdog'' become ``MS-DOS''.
3724 2014-08-07  Michael Albinus  <michael.albinus@gmx.de>
3726         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
3727         Use cached "remote-copy-args" value, if available.  (Bug#18199)
3729 2014-08-07  Leo Liu  <sdl.web@gmail.com>
3731         * help.el (temp-buffer-setup-hook,temp-buffer-show-hook):
3732         Revert change on 2014-03-22.
3734 2014-08-06  Ulf Jasper  <ulf.jasper@web.de>
3736         * calendar/icalendar.el (icalendar--diarytime-to-isotime)
3737         (icalendar--convert-ordinary-to-ical): Allow for missing minutes
3738         (Bug#13750).
3741 2014-08-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3743         * image-mode.el (image-toggle-display-image): Always rescale images
3744         to not be bigger than the current window.
3746 2014-08-05  Eric Brown  <brown@fastmail.fm>  (tiny change)
3748         * net/eww.el (eww-bookmarks-directory): New variable.
3749         (eww-write-bookmarks): Use it.
3750         (eww-read-bookmarks): Ditto.
3752 2014-08-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3754         * net/shr.el (shr-copy-url): Also copy the image URL.
3756 2014-08-05  Michael Albinus  <michael.albinus@gmx.de>
3758         * net/tramp-cache.el (tramp-flush-file-function): Suppress function
3759         also for Tramp working buffers.
3761 2014-08-04  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3763         * progmodes/python.el: Fix completions inside (i)pdb.
3764         (python-shell-completion-pdb-string-code): Make obsolete.
3765         (python-shell-completion-get-completions):
3766         Use python-shell-completion-string-code resending setup code
3767         continuously for (i)pdb.
3769 2014-08-04  Paul Eggert  <eggert@cs.ucla.edu>
3771         * rect.el (rectangle--default-line-number-format): Rename
3772         from misspelled rectange--default-line-number-format (Bug#18045).
3773         All uses changed.
3775 2014-08-03  Paul Eggert  <eggert@cs.ucla.edu>
3777         Don't mishandle year-9999 dates (Bug#18176).
3778         * calendar/parse-time.el (parse-time-rules):
3779         Allow years up to most-positive-fixnum.
3780         * calendar/time-date.el (date-to-time):
3781         Pass "Specified time is not representable" errors through.
3783 2014-08-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3785         * progmodes/python.el: Completion code cleanups.
3786         (python-shell-completion-get-completions): Detect and send import
3787         statements directly to completion function.
3788         (python-shell-completion-at-point): Simplify prompt calculation
3789         and import vs input completion logic.
3791 2014-08-02  Alan Mackenzie  <acm@muc.de>
3793         Fix confusion in C++ file caused by comma in "= {1,2},".
3794         Bug #17756.
3795         * progmodes/cc-engine.el (c-beginning-of-statement-1): In checking
3796         for a statement boundary marked by "}", check there's no "="
3797         before the "{".
3798         (c-guess-basic-syntax CASE 9B): Call c-beginning-of-statement with
3799         non-nil `comma-delim' argument.
3800         * progmodes/cc-fonts.el (c-font-lock-declarators): Parse an
3801         initializer expression more accurately.
3803         Correct loop termination condition in c-syntactic-skip-backward.
3804         * progmodes/cc-engine.el (c-syntactic-skip-backward): Correct for
3805         the situation where, after moving back out of a literal,
3806         skip-chars-backward doesn't move further, yet checks have still to
3807         be done.
3809 2014-08-01  Eli Zaretskii  <eliz@gnu.org>
3811         * tutorial.el (tutorial--display-changes): Accept punctuation
3812         characters before the key binding.  (Bug#18146)
3814 2014-07-31  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3816         * progmodes/python.el: Shell output capture enhancements.
3817         (python-shell-accept-process-output): New function.
3818         (inferior-python-mode)
3819         (python-shell-send-setup-code): Use it.
3821 2014-07-30  Christophe Deleuze  <christophe.deleuze@free.fr>  (tiny change)
3823         * calendar/icalendar.el (icalendar--decode-isodatetime):
3824         Use actual current-time-zone when converting to local time. (Bug#15408)
3826 2014-07-29  Martin Rudalics  <rudalics@gmx.at>
3828         * window.el (window--state-put-2): Handle horizontal scroll
3829         bars, if present.
3831 2014-07-29  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
3833         * menu-bar.el (menu-bar-update-buffers): Update item list format
3834         in `buffers-menu' to confirm with changes to `get_keyelt'
3835         (r117463).  (Bug#18016)
3837 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3839         * progmodes/python.el (inferior-python-mode): Make input prompts
3840         read-only.
3842 2014-07-28  Emilio C. Lopes  <eclig@gmx.net>
3844         * net/tramp-sh.el (tramp-get-remote-python): Also search for
3845         executables named "python2" or "python3".
3846         (tramp-get-remote-uid-with-python): Use parentheses around
3847         arguments to `print' to make it compatible with Python 3.
3848         (tramp-get-remote-gid-with-python): Ditto.  (Bug#18118)
3850 2014-07-28  Eli Zaretskii  <eliz@gnu.org>
3852         * window.el (window--pixel-to-total): Use FRAME's root window, not
3853         that of the selected frame.  (Bug#18112, Bug#16674)
3855 2014-07-28  Andreas Schwab  <schwab@linux-m68k.org>
3857         * textmodes/tex-mode.el (tex-font-lock-verb): Doc fix.
3858         (Bug#18117)
3860 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3862         * progmodes/python.el (inferior-python-mode): Doc fix.
3864 2014-07-28  Stephen Berman  <stephen.berman@gmx.net>
3866         * calendar/todo-mode.el (todo-edit-item--next-key): If next key is
3867         not a character, ignore it instead of raising an error.
3869         * calendar/todo-mode.el: Fix handling of marked items and make
3870         minor code improvements.
3871         (todo-edit-item): If there are marked items, ensure user can only
3872         invoke editing commands that work with marked items.
3873         (todo-edit-item--text): When there are marked items, make it a
3874         noop if invoked with point not on an item; otherwise, ensure it
3875         applies only to item at point.
3876         (todo-item-undone): If there are marked not-done items, return
3877         point to its original position before signaling user error.
3878         (todo--user-error-if-marked-done-item): New function.
3879         (todo-edit-item--header, todo-edit-item--diary-inclusion)
3880         (todo-item-done): Use it.
3882 2014-07-28  Glenn Morris  <rgm@gnu.org>
3884         * files.el (toggle-read-only): Re-add basic doc-string.
3885         * vc/vc-hooks.el (vc-toggle-read-only): Tweak obsolescence mesage.
3887         * progmodes/prolog.el (prolog-mode-keybindings-edit):
3888         Replace missing `switch-to-prolog' with `run-prolog'.
3889         (switch-to-prolog): Define as (obsolete) alias, as in 23.4.
3891 2014-07-28  Stephen Berman  <stephen.berman@gmx.net>
3893         * calendar/todo-mode.el (todo-set-top-priorities): Fix overwriting
3894         of file-wide setting when changing category-wide setting.
3896 2014-07-28  Stephen Berman  <stephen.berman@gmx.net>
3898         * doc-view.el (doc-view-open-text): Don't require that the
3899         document is saved in a file (e.g., email attachment).
3901 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3903         Parse completion input in a iPython friendly way.  (Bug#18084)
3904         * progmodes/python.el
3905         (python-shell-completion-at-point): Rename from
3906         python-shell-completion-complete-at-point.
3907         (inferior-python-mode): Use it.
3908         (python-completion-at-point): Rename from
3909         python-completion-complete-at-point.  Parse input up to first
3910         backward occurrence of whitespace, open-paren, close-paren or
3911         string delimiter.
3912         (python-mode): Use it.
3914 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3916         Prevent Python process shell buffer to pop twice.
3917         * progmodes/python.el (python-shell-switch-to-shell): Do not call
3918         pop-to-buffer.
3920 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3922         * progmodes/python.el
3923         (python-shell-with-shell-buffer): New macro.
3924         (python-shell-font-lock-get-or-create-buffer)
3925         (python-shell-font-lock-kill-buffer)
3926         (python-shell-font-lock-with-font-lock-buffer)
3927         (python-shell-font-lock-cleanup-buffer)
3928         (python-shell-font-lock-toggle): Use it.
3929         (python-shell-font-lock-turn-on)
3930         (python-shell-font-lock-turn-off): Use it.  Make command.
3932 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3934         Grab all Python process output before inferior-python-mode hooks.
3935         * progmodes/python.el (inferior-python-mode):
3936         Call accept-process-output and sit-for to ensure all output for process
3937         has been received before running hooks.
3938         (python-shell-internal-get-or-create-process):
3939         Cleanup accept-process-output and sit-for calls.
3941 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3943         More robust shell startup and code setup.
3944         * progmodes/python.el (python-shell-make-comint):
3945         Remove accept-process-output call.
3946         (python-shell-get-buffer): Return current buffer if major-mode is
3947         inferior-python-mode.
3948         (python-shell-get-or-create-process): Use it.
3949         (python-shell-send-setup-code): Send all setup code in one string,
3950         output success message and accept-process-output.
3952 2014-07-27  Eli Zaretskii  <eliz@gnu.org>
3954         * scroll-bar.el (scroll-bar-toolkit-horizontal-scroll):
3955         Add rudimentary support for bidirectional text.
3957 2014-07-27  Martin Rudalics  <rudalics@gmx.at>
3959         * frame.el (frame-notice-user-settings): Rewrite using
3960         frame-initial-frame-tool-bar-height.
3961         * menu-bar.el (menu-bar-horizontal-scroll-bar)
3962         (menu-bar-no-horizontal-scroll-bar): New functions.
3963         (menu-bar-showhide-scroll-bar-menu): Add bindings for horizontal
3964         scroll bars.
3965         * scroll-bar.el (scroll-bar-lines)
3966         (set-horizontal-scroll-bar-mode)
3967         (get-horizontal-scroll-bar-mode, horizontal-scroll-bar-mode)
3968         (scroll-bar-horizontal-drag-1, scroll-bar-horizontal-drag)
3969         (scroll-bar-toolkit-horizontal-scroll): New functions.
3970         (horizontal-scroll-bar-mode)
3971         (previous-horizontal-scroll-bar-mode)
3972         (horizontal-scroll-bar-mode-explicit): New variables.
3973         (horizontal-scroll-bar-mode): New option.
3974         (toggle-horizontal-scroll-bar): Do something.
3975         (top-level): Bind horizontal-scroll-bar mouse-1.
3976         * startup.el (tool-bar-originally-present): Remove variable.
3977         (command-line): Don't set tool-bar-originally-present.
3978         * window.el (window-min-height): Update doc-string.
3979         (window--dump-frame): Dump horizontal scroll bar values.
3980         (window--min-size-1): Handle minibuffer window separately.
3981         Count in margins and horizontal scroll bar.  Return safe value
3982         iff IGNORE equals 'safe.
3983         (frame-windows-min-size): New function (used by frame resizing
3984         routines).
3985         (fit-frame-to-buffer, fit-window-to-buffer): Count in horizontal
3986         scroll bars.
3987         (window--sanitize-window-sizes): New function.
3988         (window-split-min-size): Remove.
3989         (split-window): Count divider-width.  Don't use
3990         `window-split-min-size' any more.  Reword error messages.
3991         Sanitize windows sizes after splitting.
3993 2014-07-27  Thien-Thi Nguyen  <ttn@gnu.org>
3995         Use `defvar-local' more.
3996         * progmodes/hideshow.el
3997         (hs-c-start-regexp, hs-block-start-regexp)
3998         (hs-block-start-mdata-select, hs-block-end-regexp)
3999         (hs-forward-sexp-func, hs-adjust-block-beginning): ...here;
4000         remove corresponding `make-variable-buffer-local' top-level calls.
4002 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4004         Cleanup error signals.  (Bug#18067)
4005         * progmodes/python.el
4006         (python-indent-shift-left): Use user-error instead.
4007         (python-shell-prompt-detect): Use lwarn with python group.
4008         (python-completion-complete-at-point)
4009         (python-eldoc--get-doc-at-point): Don't signal error.
4011 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4013         Support for packages in Python shell.  (Bug#13570)
4014         * progmodes/python.el (python-shell--package-depth): New var.
4015         (python-shell-package-enable): New command.
4016         (python-util-list-directories, python-util-list-files)
4017         (python-util-list-packages): New functions.
4019 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4021         Faster comint output.  (Bug#16875)
4022         * progmodes/python.el:
4023         (python-comint-output-filter-function): Make obsolete.
4024         (python-comint-postoutput-scroll-to-bottom): New function.
4025         (inferior-python-mode): Set comint-output-filter-functions to a
4026         minimum.
4028 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4030         * progmodes/python.el (python-shell-font-lock-post-command-hook):
4031         Safeguard current point and undo history.
4033 2014-07-26  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4035         Robust shell syntax highlighting.  (Bug#18084, Bug#16875)
4036         * progmodes/python.el:
4037         (python-shell-prompt-input-regexps): Add iPython block prompt.
4038         (python-shell-output-syntax-table): Delete var.
4039         (python-shell-font-lock-with-font-lock-buffer): New macro.
4040         (python-shell-font-lock-get-or-create-buffer)
4041         (python-shell-font-lock-kill-buffer)
4042         (python-shell-font-lock-cleanup-buffer)
4043         (python-shell-font-lock-post-command-hook)
4044         (python-shell-font-lock-turn-off): New functions.
4045         (python-shell-font-lock-turn-on): New function.
4046         (inferior-python-mode): Use it.
4047         (python-shell-font-lock-toggle): New command.
4048         (python-shell-font-lock-enable): Rename from
4049         python-shell-enable-font-lock.
4050         (run-python-internal): Use it.
4051         (python-shell-font-lock-comint-output-filter-function): New function.
4052         (python-shell-comint-end-of-output-p): New function.
4053         (python-shell-output-filter): Use it.
4054         (python-util-comint-last-prompt): New function.
4055         (python-util-text-properties-replace-name): New function.
4057 2014-07-25  Glenn Morris  <rgm@gnu.org>
4059         * vc/ediff-init.el (ediff-toggle-read-only-function):
4060         * vc/ediff-util.el (ediff-toggle-read-only):
4061         Replace obsolete toggle-read-only with read-only-mode.
4063 2014-07-24  Michael Albinus  <michael.albinus@gmx.de>
4065         * net/tramp-cache.el (tramp-flush-file-function): Wrap the code
4066         with `save-match-data'.  (Bug#18095)
4068 2014-07-21  Vincent Belaïche  <vincentb1@users.sourceforge.net>
4070         * ses.el (ses-truncate-cell): Use cl-progv instead of eval in
4071         order to ensure that row and col are lexically bound inside the
4072         evaluated sexp.
4074 2014-07-21  Glenn Morris  <rgm@gnu.org>
4076         * progmodes/hideif.el (hide-ifdef-mode-submap):
4077         Also substitute read-only-mode.
4078         * bindings.el (mode-line-toggle-read-only):
4079         * bs.el (bs-toggle-readonly):
4080         * buff-menu.el (Buffer-menu-toggle-read-only):
4081         * dired.el (dired-toggle-read-only):
4082         * files.el (view-read-only, find-file-read-only)
4083         (find-file-read-only-other-window)
4084         (find-file-read-only-other-frame):
4085         * progmodes/hideif.el (hide-ifdef-toggle-outside-read-only):
4086         Doc fixes re toggle-read-only.
4088 2014-07-21  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4090         * progmodes/python.el: Add comment about pipe buffering and
4091         solutions for missing/delayed output in inferior Python shells.
4092         (Bug#17304)
4094         * progmodes/python.el (python-mode): Don't set
4095         mode-require-final-newline.  (Bug#17990)
4097         Make python.el work with IPython automatically.  (Bug#15510)
4098         * progmodes/python.el:
4099         (python-shell-completion-setup-code): New value supporting iPython.
4100         (python-shell-completion-string-code): New value supporting iPython.
4101         (python-shell-completion-get-completions): Use them.
4102         (python-shell-completion-module-string-code): Make obsolete.
4103         (python-shell-prompt-input-regexps)
4104         (python-shell-prompt-output-regexps): Add safeguard for ipdb.
4105         (python-shell-output-filter): Fix comment typo.
4107         Fix Python shell prompts detection for remote hosts.
4108         * progmodes/python.el (python-shell-prompt-detect):
4109         Replace call-process with process-file and make it more robust.
4111         Autodetect Python shell prompts.  (Bug#17370)
4112         * progmodes/python.el:
4113         (python-shell-interpreter-interactive-arg)
4114         (python-shell-prompt-detect-enabled)
4115         (python-shell-prompt-detect-failure-warning)
4116         (python-shell-prompt-input-regexps)
4117         (python-shell-prompt-output-regexps): New vars.
4118         (python-shell-prompt-calculated-input-regexp)
4119         (python-shell-prompt-calculated-output-regexp): New vars.
4120         (python-shell-get-process-name)
4121         (python-shell-internal-get-process-name)
4122         (python-shell-output-filter)
4123         (python-shell-completion-get-completions): Use them.
4124         (python-shell-prompt-detect)
4125         (python-shell-prompt-validate-regexps): New functions.
4126         (python-shell-prompt-set-calculated-regexps): New function.
4127         (inferior-python-mode): Use it.  Also honor overriden
4128         python-shell-interpreter and python-shell-interpreter-args.
4129         (python-shell-make-comint): Honor overriden
4130         python-shell-interpreter and python-shell-interpreter-args.
4131         (python-shell-get-or-create-process): Make it testable by allowing
4132         to call run-python non-interactively.
4133         (python-util-valid-regexp-p): New function.
4134         (python-shell-prompt-regexp, python-shell-prompt-block-regexp)
4135         (python-shell-prompt-output-regexp)
4136         (python-shell-prompt-pdb-regexp): Use it as defcustom :safe.
4138 2014-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4140         * emacs-lisp/smie.el (smie-config--guess-1): Split from
4141         smie-config--guess.
4142         (smie-config--guess): Use it.
4144         * emacs-lisp/edebug.el: Use nadvice.
4145         (edebug-original-read): Remove.
4146         (edebug--read): Rename from edebug-read and add `orig' arg.
4147         (edebug-uninstall-read-eval-functions)
4148         (edebug-install-read-eval-functions): Use nadvice.
4149         (edebug-read-sexp, edebug-read-storing-offsets, edebug-read-symbol)
4150         (edebug-read-and-maybe-wrap-form1, edebug-instrument-callee)
4151         (edebug-read-string, edebug-read-function): Use just `read'.
4152         (edebug-original-debug-on-entry): Remove.
4153         (edebug--debug-on-entry): Rename from edebug-debug-on-entry and add
4154         `orig' arg.
4155         (debug-on-entry): Override with nadvice.
4157         * mouse.el (tear-off-window): Rename from mouse-tear-off-window since
4158         it also makes sense to bind it to a non-mouse event.
4160         * vc/vc-bzr.el (vc-bzr-shelve): Make it operate on fileset.
4162 2014-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4164         * xt-mouse.el (xterm-mouse-event): Don't assume last-click is non-nil
4165         (bug#18015).
4167         * rect.el (rectangle--string-preview): Don't assume there
4168         a non-nil default (bug#17984).
4170 2014-07-16  Glenn Morris  <rgm@gnu.org>
4172         * desktop.el (after-init-hook): Disable startup frame restoration
4173         in non-graphical situations.  (Bug#17693)
4175         * vc/vc-dispatcher.el (vc-log-edit): Do set up the log buffer
4176         if it was "empty", or used for a different set of files.  (Bug#17884)
4178 2014-07-16  Eli Zaretskii  <eliz@gnu.org>
4180         * bindings.el (mode-line-remote): If default-directory is not a
4181         string, don't call file-remote-p on it; instead state in the
4182         help-echo that it is nil.  (Bug#17986)
4184 2014-07-14  Daniel Colascione  <dancol@dancol.org>
4186         * progmodes/cc-langs.el: Change comments from `cl-macroexpand-all'
4187         to `macroexpand-all'
4189         * progmodes/cc-defs.el (c-lang-defconst-eval-immediately):
4190         Use `macroexpand-all' instead of `cl-macroexpand-all'.
4192 2014-07-12  Paul Eggert  <eggert@cs.ucla.edu>
4194         Fix bug: C-x v v discarded existing log message (Bug#17884).
4195         * vc/vc-dispatcher.el (vc-log-edit):
4196         Don't clobber an already-existing log message.
4198 2014-07-12  Glenn Morris  <rgm@gnu.org>
4200         * vc/log-edit.el (log-edit-changelog-entries):
4201         Check for a visited-but-never-saved ChangeLog.
4203 2014-07-12  Stefan Monnier  <monnier@iro.umontreal.ca>
4205         * vc/log-edit.el (log-edit-changelog-entries): Don't both visiting
4206         a non-existing file (bug#17970).
4208         * faces.el (face-name): Undo last change.
4209         (x-resolve-font-name): Don't call face-name (bug#17956).
4211 2014-07-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4213         Fix dedenters and electric colon handling. (Bug#15163)
4214         * progmodes/python.el
4215         (python-rx-constituents): Add dedenter and block-ender.
4216         (python-indent-dedenters, python-indent-block-enders): Delete.
4217         (python-indent-context): Return new case for dedenter-statement.
4218         (python-indent-calculate-indentation): Handle new case.
4219         (python-indent-calculate-levels): Fix levels calculation for
4220         dedenter statements.
4221         (python-indent-post-self-insert-function): Fix colon handling.
4222         (python-info-dedenter-opening-block-message): New function.
4223         (python-indent-line): Use it.
4224         (python-info-closing-block)
4225         (python-info-closing-block-message): Remove.
4226         (python-info-dedenter-opening-block-position)
4227         (python-info-dedenter-opening-block-positions)
4228         (python-info-dedenter-statement-p): New functions.
4230 2014-07-11  Dmitry Antipov  <dmantipov@yandex.ru>
4232         * files.el (out-of-memory-warning-percentage): New defcustom.
4233         (warn-maybe-out-of-memory): Use it.
4235 2014-07-11  Michael Albinus  <michael.albinus@gmx.de>
4237         * subr.el (read-passwd): Use `read-hide-char' if non-nil.  Bind it
4238         when calling `read-string'.  (Bug#17839)
4240 2014-07-10  Eli Zaretskii  <eliz@gnu.org>
4242         * files.el (warn-maybe-out-of-memory): Fix the wording of the
4243         warning.
4245 2014-07-10  Dmitry Antipov  <dmantipov@yandex.ru>
4247         * files.el (warn-maybe-out-of-memory): New function.
4248         (find-file-noselect): Use it.
4250 2014-07-09  Sam Steingold  <sds@gnu.org>
4252         * progmodes/cperl-mode.el (cperl-block-p): Treat the perl keyword
4253         `constant' like `bless', `return' &c
4255 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4257         * rect.el (apply-on-rectangle): Check forward-line really moved to the
4258         next line.
4260 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4262         * progmodes/sh-script.el (sh-smie-sh-rules): Don't align with a && in
4263         the middle of a line (bug#17896).
4265 2014-07-09  Juri Linkov  <juri@jurta.org>
4267         * startup.el (command-line): Append displaying the warning about
4268         the errors in the init file to the end of `after-init-hook'.
4269         (Bug#17927)
4271         * faces.el (face-name): Return input arg `face' as-is
4272         when it's not a symbol.
4273         (x-resolve-font-name): Don't check if the face is a symbol.
4274         (Bug#17956)
4276         * facemenu.el (list-colors-print): In help-echo format use %.2f
4277         instead of %d because now HSV values are floating-point components
4278         between 0.0 and 1.0.
4280 2014-07-09  Glenn Morris  <rgm@gnu.org>
4282         * emulation/cua-rect.el (cua--activate-rectangle):
4283         Avoid setting cua--rectangle to nil.  (Bug#17877)
4285 2014-07-09  Stephen Berman  <stephen.berman@gmx.net>
4287         * calendar/todo-mode.el: Fix wrong-type-argument error when
4288         marking multiple consecutive items.
4289         (todo-toggle-mark-item): Don't try to mark the empty lines at the
4290         end of the todo and done items sections.  Note in doc string that
4291         items marked by passing a numeric prefix argument can include the
4292         last todo and first done items.
4293         (todo-mark-category): Don't try to mark the empty line between the
4294         todo and done items sections.
4296 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4298         * emacs-lisp/edebug.el (edebug-eval-defun): Print result using
4299         proper Lisp quoting (bug#17934).
4301         * progmodes/ruby-mode.el (ruby-mode-variables): Don't meddle with
4302         require-final-newline since prog-mode already took care of it (bug#17947).
4304 2014-07-09  Stephen Berman  <stephen.berman@gmx.net>
4306         * calendar/todo-mode.el: Fix two bugs.  Shorten Commentary and
4307         refer to the Todo mode Info manual.  Update the comment on
4308         requiring cl-lib.
4309         (todo-find-filtered-items-file): Add todo-prefix overlays.
4310         (todo-filter-items): Reorder a let-bound variable to avoid a
4311         wrong-type-argument error on canceling the file choice dialog.
4313 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4315         * progmodes/octave.el (inferior-octave-mode):
4316         Set comint-input-ring-size to a number (bug#17912).
4318 2014-07-09  Juri Linkov  <juri@jurta.org>
4320         * desktop.el (desktop-minor-mode-table): Add `defining-kbd-macro'
4321         and `isearch-mode' associated with nil.  (Bug#17849)
4323 2014-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4325         * linum.el (linum--face-height): New function (bug#17813).
4326         (linum-update-window): Use it to adjust margin to linum's width.
4328         * leim/quail/sisheng.el (sisheng-list): Don't bother with-case-table.
4329         * eshell/em-smart.el (eshell-smart-scroll-window):
4330         Use with-selected-window.
4332         * xt-mouse.el (xterm-mouse-translate-1): Intern drag event (bug#17894).
4333         Remove also pointless window&mark manipulation.
4335         * progmodes/perl-mode.el: Use syntax-ppss; fix one indentation case.
4336         (perl-indent-line): Use syntax-ppss to detect we're in a doc-section.
4337         (perl-continuation-line-p): Don't skip over anything else than labels.
4338         Return the previous char.
4339         (perl-calculate-indent): Use syntax-ppss instead of parse-start
4340         and update callers accordingly.  For continuation lines, check the
4341         the case of array hashes.
4342         (perl-backward-to-noncomment): Make it non-interactive.
4343         (perl-backward-to-start-of-continued-exp): Rewrite.
4345 2014-07-08  Sam Steingold  <sds@gnu.org>
4347         * progmodes/inf-lisp.el (lisp-eval-paragraph, lisp-eval-form-and-next):
4348         New user commands.
4350 2014-07-08  Juri Linkov  <juri@jurta.org>
4352         * vc/vc-annotate.el (vc-annotate-background-mode): New defcustom.
4353         (vc-annotate-color-map): Use less saturated colors (20%) for
4354         background-mode.
4355         (vc-annotate-very-old-color): Add default value for background-mode.
4356         (vc-annotate-background): Set default value to nil since now text on
4357         the default backgrounds should be legible in light and dark modes.
4358         (vc-annotate-lines): Use `vc-annotate-background-mode'.  Doc fix.
4359         (Bug#17808)
4361 2014-07-08  Juri Linkov  <juri@jurta.org>
4363         * simple.el (transpose-chars): Don't move point into read-only area.
4364         (Bug#17829)
4366 2014-07-08  Juri Linkov  <juri@jurta.org>
4368         * window.el (with-displayed-buffer-window): New macro.
4369         (with-temp-buffer-window, with-current-buffer-window):
4370         Use `macroexp-let2' to evaluate and bind variables
4371         in the same order as macro arguments.
4372         (display-buffer--action-function-custom-type):
4373         Add `display-buffer-below-selected' and `display-buffer-at-bottom'.
4375         * minibuffer.el (minibuffer-completion-help): Replace
4376         `with-output-to-temp-buffer' with `with-displayed-buffer-window'
4377         with actions that display *Completions* at-bottom when called
4378         from the minibuffer, or below-selected in a normal buffer.
4379         Associate `window-height' with `fit-window-to-buffer'.
4380         Let-bind `pop-up-windows' to nil.
4382         * dired.el (dired-mark-pop-up): Use `with-displayed-buffer-window'
4383         instead of `with-current-buffer-window'.  (Bug#17809)
4385 2014-07-07  Luke Lee  <luke.yx.lee@gmail.com>
4387         * progmodes/hideif.el (hide-ifdef-env): Change to global.
4388         (hide-ifdef-env-backup): New variable.
4389         (hide-ifdef-expand-reinclusion-protection, hide-ifdef-header-regexp):
4390         New customizable variables.
4391         (hif-clear-all-ifdef-defined): New defun.
4392         (hif-merge-ifdef-region, hide-ifdef-region-internal, hide-ifdef-region)
4393         (hif-show-ifdef-region): Merge hidden regions to prevent continuous "...".
4394         (hif-tokenize): Fix for MS-DOS/Win EOL style.
4395         (hif-endif-to-ifdef, hif-make-range, hif-find-range, hif-possibly-hide):
4396         Fix bug to hide the correct #elif region(s).
4397         (hif-range-elif): New defun.
4398         (hif-recurse-level): New var.
4399         (hif-evaluate-region, hif-evaluate-macro): New defun.
4400         (hide-ifdef-guts): Prevent reinclusion protected C/C++ headers from
4401         fully hidden.
4402         (hide-ifdef-define, hide-ifdefs, hide-ifdef-block, show-ifdef-block):
4403         Better interaction.
4405 2014-07-04  Michael Albinus  <michael.albinus@gmx.de>
4407         * net/dbus.el (dbus-peer-handler): New defun.
4408         (dbus-register-service): Register it.  (Bug#17858)
4409         (dbus-managed-objects-handler): Fix docstring.
4411 2014-07-04  Phil Sainty  <psainty@orcon.net.nz>
4413         * emacs-lisp/lisp.el (narrow-to-defun-include-comments): New var.
4414         (narrow-to-defun): New arg include-comments, defaulting to it
4415         (bug#16328).
4417 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4419         * rect.el (rectangle--highlight-for-redisplay): Don't pass `orig' with
4420         different calling convention to rectangle--unhighlight-for-redisplay.
4422 2014-07-03  Michael Albinus  <michael.albinus@gmx.de>
4424         * net/tramp.el (tramp-call-process): Handle error strings.
4426         * net/tramp-adb.el (tramp-adb-sh-fix-ls-output): Use `bolp'.
4428         * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime)
4429         (tramp-sh-handle-verify-visited-file-modtime): Use `point-at-eol'.
4431         * net/trampver.el: Update release number.
4433 2014-07-03  Juri Linkov  <juri@jurta.org>
4435         * desktop.el (desktop-save): Rename arg `auto-save' to
4436         `only-if-changed'.  Doc fix.  (Bug#17873)
4438 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4440         * mouse.el (mouse-yank-primary, mouse-yank-secondary):
4441         Use insert-for-yank (bug#17271).
4443 2014-07-03  Leo Liu  <sdl.web@gmail.com>
4445         * emacs-lisp/pp.el (pp-eval-expression, pp-eval-last-sexp):
4446         Support lexical-binding.
4448 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4450         * vc/log-edit.el (log-edit-goto-eoh): New function.
4451         (log-edit--match-first-line): Use it (bug#17861).
4453 2014-07-03  Glenn Morris  <rgm@gnu.org>
4455         * vc/log-edit.el (log-edit-hook): Add missing :version.
4457 2014-07-03  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4459         * progmodes/python.el (python-indent-post-self-insert-function):
4460         Enhancements to electric indentation behavior inside
4461         parens. (Bug#17658)
4463 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
4465         * ps-def.el (ps-generate-postscript-with-faces1): Don't mess with
4466         buffer-invisibility-spec (bug#17867).
4468 2014-07-03  Andreas Schwab  <schwab@linux-m68k.org>
4470         * vc/vc-git.el (vc-git-checkin): When operating on the whole tree
4471         pass "-a".
4473 2014-07-03  Glenn Morris  <rgm@gnu.org>
4475         * cus-edit.el (help):
4476         * finder.el (finder-known-keywords):
4477         * help.el (help-for-help-internal):
4478         * vc/ediff-mult.el (ediff-meta-buffer-verbose-message)
4479         (ediff-redraw-registry-buffer):
4480         * vc/ediff-ptch.el (ediff-patch-file-internal):
4481         Doc fixes re "online" help.  (Bug#17803)
4483         * progmodes/idlwave.el (idlwave): Update url-link for custom group.
4484         (idlwave-mode): Doc URL update.
4486 2014-07-01  Juri Linkov  <juri@jurta.org>
4488         * man.el: Display man pages immediately and use process-filter
4489         to format them asynchronously.
4490         (Man-width): Doc fix.
4491         (man): Doc fix.
4492         (Man-start-calling): Use `with-selected-window' to get
4493         `frame-width' and `window-width'.
4494         (Man-getpage-in-background): Call `Man-notify-when-ready'
4495         immediately after creating a new buffer.  Call `Man-mode' and set
4496         `mode-line-process' in the created buffer.  Set process-filter to
4497         `Man-bgproc-filter' in start-process branch.  In call-process branch
4498         call either `Man-fontify-manpage' or `Man-cleanup-manpage'.
4499         Use `Man-start-calling' inside `with-current-buffer'.
4500         (Man-fontify-manpage): Don't print messages.  Fix boundary condition.
4501         (Man-cleanup-manpage): Don't print messages.
4502         (Man-bgproc-filter): New function.
4503         (Man-bgproc-sentinel): Add `save-excursion' to keep point when
4504         user moved it during asynchronous formatting.  Move calls of
4505         `Man-fontify-manpage' and `Man-cleanup-manpage' to
4506         `Man-bgproc-filter'.  Move the call of `Man-mode' to
4507         `Man-getpage-in-background'.  Use `quit-restore-window'
4508         instead of `kill-buffer'.  Use `message' instead of `error'
4509         because errors are caught by process sentinel.
4510         (Man-mode): Move calls of `Man-build-page-list',
4511         `Man-strip-page-headers', `Man-unindent', `Man-goto-page' to
4512         `Man-bgproc-sentinel'.  Doc fix.  (Bug#2588, bug#5054, bug#9084, bug#17831)
4514         * man.el (Man-bgproc-sentinel): Use `Man-page-from-arguments'
4515         for the message about the man page cleaned up.
4517 2014-07-01  Mario Lang  <mlang@delysid.org>
4519         * net/gnutls.el (gnutls-negotiate): Prevent destructive modification of
4520         cosutomization option `gnutls-verify-error'.
4522 2014-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
4524         * simple.el (deactivate-mark, set-mark-command, handle-shift-selection):
4525         Don't keep transient-mark-mode buffer-local when not needed (bug#6316).
4527         * xt-mouse.el (turn-on-xterm-mouse-tracking-on-terminal)
4528         (turn-off-xterm-mouse-tracking-on-terminal): Don't burp if the terminal
4529         is suspended (bug#17857).
4531 2014-07-01  Michael Albinus  <michael.albinus@gmx.de>
4533         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
4534         Prefer utf-8 coding.  (Bug#17859)
4536 2014-06-30  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4538         * emacs-lisp/subr-x.el (string-reverse): Define as obsolete alias
4539         for `reverse'.
4541 2014-06-30  Glenn Morris  <rgm@gnu.org>
4543         * emacs-lisp/autoload.el (autoload-ensure-writable): New variable.
4544         (autoload-ensure-default-file): Maybe make existing output writable.
4545         * Makefile.in (AUTOGEN_VCS): Remove.
4546         (autoloads): Use autoload-ensure-writable rather than AUTOGEN_VCS.
4548 2014-06-30  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4550         * emacs-lisp/subr-x.el (string-reverse): Use `reverse'.
4552 2014-06-30  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4554         New if-let, when-let, thread-first and thread-last macros.
4556         * emacs-lisp/subr-x.el
4557         (internal--listify, internal--check-binding)
4558         (internal--build-binding-value-form, internal--build-binding)
4559         (internal--build-bindings): New functions.
4560         (internal--thread-argument, thread-first, thread-last)
4561         (if-let, when-let): New macros.
4563 2014-06-30  Grégoire Jadi  <daimrod@gmail.com>
4565         * net/rcirc.el (rcirc-buffer-process): Restore previous
4566         behaviour.  (Bug#17772)
4568 2014-06-29  Alan Mackenzie  <acm@muc.de>
4570         Don't call c-parse-state when c++-template-syntax-table is active.
4571         * progmodes/cc-engine.el (c-guess-continued-construct CASE G)
4572         (c-guess-basic-syntax CASE 5D.3): Rearrange so that
4573         c-syntactic-skip-backwards isn't called with the pertinent syntax table.
4575 2014-06-28  Stephen Berman  <stephen.berman@gmx.net>
4577         * calendar/todo-mode.el (todo-set-top-priorities): Fix logic to
4578         account for file-wide setting of todo-top-priorities-overrides.
4579         Make code a bit cleaner.
4581 2014-06-28  Glenn Morris  <rgm@gnu.org>
4583         * net/eww.el (eww-mode) <eww-current-title>: Make local.  (Bug#17860)
4585 2014-06-28  Stephen Berman  <stephen.berman@gmx.net>
4587         * calendar/todo-mode.el (todo-prefix-overlays): If there is no
4588         category-wide setting of todo-top-priorities-overrides, check for
4589         a file-wide setting and fontify accordingly.
4591 2014-06-28  Glenn Morris  <rgm@gnu.org>
4593         * subr.el (read-passwd): Warn about batch mode.  (Bug#17839)
4595 2014-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4597         * progmodes/hideif.el: Use lexical-binding.  Fix up cl-lib usage.
4599 2014-06-28  K. Handa  <handa@gnu.org>
4601         Fix Bug#17739.
4603         * composite.el: Setup composition-function-table for dotted circle.
4604         (compose-gstring-for-dotted-circle): New function.
4606         * international/characters.el: Add category "^" to all
4607         non-spacing characters.
4609 2014-06-28  Glenn Morris  <rgm@gnu.org>
4611         * Makefile.in (doit): Remove force rule.
4612         (custom-deps, finder-data, autoloads, update-subdirs)
4613         (compile-one-process): PHONY targets do not need force rules.
4615         * Makefile.in (compile-main, compile, compile-always):
4616         No need to explicitly pass variables to ourself in recursive calls.
4618 2014-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4620         * files.el (minibuffer-with-setup-hook): Evaluate the first arg eagerly.
4622 2014-06-26  Glenn Morris  <rgm@gnu.org>
4624         * Makefile.in (update-authors): Update for moved authors.el.
4626 2014-06-26  Leo Liu  <sdl.web@gmail.com>
4628         * skeleton.el (skeleton-end-hook): Default to nil and move the
4629         work to skeleton-insert.  (Bug#17850)
4631 2014-06-26  Dmitry Antipov  <dmantipov@yandex.ru>
4633         * calc/calc-alg.el (math-beforep):
4634         * progmodes/cc-guess.el (c-guess-view-reorder-offsets-alist-in-style):
4635         Simplify because string-lessp can accept symbols as args.
4637 2014-06-26  Daiki Ueno  <ueno@gnu.org>
4639         * emacs-lisp/package.el (package--check-signature):
4640         If package-check-signature is allow-unsigned, don't signal error when
4641         we can't verify signature because of missing public key
4642         (bug#17625).
4644 2014-06-26  Glenn Morris  <rgm@gnu.org>
4646         * emacs-lisp/cl-macs.el (help-add-fundoc-usage):
4647         Remove outdated declaration.
4649         * emacs-lisp/authors.el (authors-valid-file-names)
4650         (authors-renamed-files-alist): Additions.
4652 2014-06-26  Leo Liu  <sdl.web@gmail.com>
4654         * textmodes/picture.el (picture-set-tab-stops):
4655         * ruler-mode.el (ruler-mode-mouse-add-tab-stop)
4656         (ruler-mode-ruler): Fix to work with nil tab-stop-list.
4658         * progmodes/asm-mode.el (asm-calculate-indentation):
4659         Use indent-next-tab-stop.
4661         * indent.el (indent-accumulate-tab-stops): New function.
4663 2014-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4665         * emacs-lisp/package.el (package-list-unsigned): New var (bug#17625).
4666         (package-desc-status): Obey it.
4668 2014-06-26  Stephen Berman  <stephen.berman@gmx.net>
4670         * calendar/todo-mode.el: Fix two bugs.
4671         (todo-insert-item--basic): If user cancels item insertion to
4672         another category before setting priority, show original category
4673         whether it is in the same or a different file.
4674         (todo-set-item-priority): After selecting category, instead of
4675         moving point to top, which extends an active region, restore it.
4677 2014-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4679         * help-fns.el (describe-function-1): Check file-name is a string before
4680         calling help-fns--autoloaded-p (bug#17564).
4682 2014-06-26  Juri Linkov  <juri@jurta.org>
4684         * desktop.el (desktop-auto-save-enable)
4685         (desktop-auto-save-disable): New functions.
4686         (desktop-save-mode, desktop-auto-save-timeout): Use them.
4687         (desktop-read): Disable the autosave before loading the desktop,
4688         and enable afterwards.  (Bug#17351)
4690 2014-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
4692         Fix some indentation problem with \; and pipes (bug#17842).
4693         * progmodes/sh-script.el (sh-mode-syntax-table): Set syntax of ;|&.
4694         (sh-smie--default-forward-token, sh-smie--default-backward-token):
4695         New functions.
4696         (sh-smie-sh-forward-token, sh-smie-sh-backward-token)
4697         (sh-smie-rc-forward-token, sh-smie-rc-backward-token): Use them.
4698         (sh-smie-sh-rules): Fix indentation of a pipe at BOL.
4700 2014-06-26  Glenn Morris  <rgm@gnu.org>
4702         * emacs-lisp/find-func.el (find-function-C-source-directory):
4703         Use file-accessible-directory-p.
4705         * ps-samp.el: Make it slightly less awful.
4706         (ps-rmail-mode-hook, ps-gnus-article-prepare-hook, ps-vm-mode-hook):
4707         (ps-gnus-summary-setup, ps-info-mode-hook): Use [print] key.
4708         Only set local values.
4709         (ps-article-subject, ps-article-author): Use standard functions
4710         like mail-fetch-field.
4711         (ps-info-file, ps-info-node): Use match-string.
4712         (ps-jts-ps-setup, ps-jack-setup): Remove, merging into...
4713         (ps-samp-ps-setup): ... new function.
4715         * progmodes/idlw-shell.el (idlwave-shell-make-temp-file):
4716         Optimize away code unneeded on any modern Emacs.
4718         * emacs-lisp/authors.el: Move to ../admin.
4720         * emacs-lisp/ert.el (ert-summarize-tests-batch-and-exit): New.
4722 2014-06-26  Luke Lee  <luke.yx.lee@gmail.com>
4724         * progmodes/hideif.el (hif-string-to-number): Fix return value bug.
4725         (hif-simple-token-only, hif-tokenize): Comment in detail mainly for
4726         performance enhancements.
4727         (hif-parse-if-exp): Rename to `hif-parse-exp'.  Enhance for macro
4728         expansion.
4729         (hif-factor, hif-string-concatenation, intern-safe): Support string
4730         concatenation and argumented macro expansion.
4731         (hif-if-valid-identifier-p, hif-define-operator, hif-flatten)
4732         (hif-expand-token-list, hif-get-argument-list, hif-define-macro)
4733         (hif-delimit, hif-macro-supply-arguments, hif-invoke, hif-canonicalize)
4734         (hif-canonicalize-tokens, hif-place-macro-invocation)
4735         (hif-parse-macro-arglist): Mostly new functions for supporting
4736         argumented macro expansion.
4737         (hif-string-concatenation, hif-stringify, hif-token-concat)
4738         (hif-token-stringification, hif-token-concatenation):
4739         Stringification and concatenation.
4740         (hif-find-next-relevant): Fix comments.
4741         (hif-ifdef-to-endif, hif-looking-at-elif, hif-hide-line): Bug fix for
4742         some cases involving #elif.
4743         (hif-find-define, hif-add-new-defines): New functions for automatically
4744         scanning of defined symbols.
4745         (hide-ifdef-guts): Fix for defined symbol auto scanning.
4746         (hide-ifdef-undef): Fix behavior to match CPP.
4748 2014-06-25  Glenn Morris  <rgm@gnu.org>
4750         * Makefile.in ($(lisp)/progmodes/cc-defs.elc)
4751         ($(lisp)/progmodes/cc-fonts.elc, $(lisp)/progmodes/cc-langs.elc)
4752         ($(lisp)/progmodes/cc-vars.elc): Drop hand-written deps on non-cc
4753         files.  They are not relevant to the original issue (bug#1004),
4754         and cause unnecessary recompilation (bug#2151).
4756 2014-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
4758         * play/landmark.el: Use lexical-binding and avoid `intangible'.
4759         (landmark--last-pos): New var.
4760         (landmark--intangible-chars): New const.
4761         (landmark--intangible): New function.
4762         (landmark-mode, landmark-move): Use it.
4763         (landmark-mode): Remove properties.
4764         (landmark-plot-square, landmark-point-square, landmark-goto-xy)
4765         (landmark-cross-qtuple):
4766         Don't worry about `intangible' any more.
4767         (landmark-click, landmark-point-y): Same; and don't assume point-min==1.
4768         (landmark-init-display): Don't set `intangible' and `point-entered'.
4769         (square): Remove.  Inline it instead.
4770         (landmark--distance): Rename from `distance'.
4771         (landmark-calc-distance-of-robot-from): Rename from
4772         calc-distance-of-robot-from.
4773         (landmark-calc-smell-internal): Rename from calc-smell-internal.
4775 2014-06-25  Dmitry Antipov  <dmantipov@yandex.ru>
4777         * files.el (dir-locals-find-file, file-relative-name):
4778         * info.el (Info-complete-menu-item):
4779         * minibuffer.el (completion-table-subvert): Prefer string-prefix-p
4780         to compare-strings to avoid out-of-range errors.
4781         * subr.el (string-prefix-p): Adjust to match strict range
4782         checking in compare-strings.
4784 2014-06-24  Leonard Randall  <leonard.a.randall@gmail.com>  (tiny change)
4786         * textmodes/reftex-parse.el (reftex-using-biblatex-p): Make search
4787         for comment lines non-greedy and stopping at newlines to fix stack
4788         overflows with large files.
4790 2014-06-24  Eli Barzilay  <eli@barzilay.org>
4792         * calculator.el (calculator-last-input): Drop 'ascii-character property
4793         lookup.
4795 2014-06-24  Leo Liu  <sdl.web@gmail.com>
4797         * align.el (align-adjust-col-for-rule): Unbreak due to defaulting
4798         tab-stop-list to nil.  (Bug#16381)
4800         * indent.el (indent-next-tab-stop): Rename from indent--next-tab-stop.
4801         (indent-rigidly-left-to-tab-stop)
4802         (indent-rigidly-right-to-tab-stop, tab-to-tab-stop)
4803         (move-to-tab-stop): Change callers.
4805 2014-06-24  Eli Zaretskii  <eliz@gnu.org>
4807         * skeleton.el (skeleton-insert): Yet another fix of the doc string
4808         wrt behavior of \n as the first/last element of a skeleton.
4810 2014-06-24  Michael Albinus  <michael.albinus@gmx.de>
4812         * net/tramp-adb.el (tramp-adb-handle-process-file):
4813         * net/tramp-sh.el (tramp-sh-handle-process-file):
4814         * net/tramp-smb.el (tramp-smb-handle-process-file): Do not raise
4815         the output buffer when DISPLAY is non-nil.  (Bug#17815)
4817 2014-06-24  Glenn Morris  <rgm@gnu.org>
4819         * play/landmark.el (landmark-move-down, landmark-move-up):
4820         Fix 2007-10-20 change - preserve horizontal position.
4822 2014-06-23  Sam Steingold  <sds@gnu.org>
4824         * simple.el (kill-append): Remove undo boundary depending on ...
4825         (kill-append-merge-undo): New user option.
4827 2014-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
4829         * simple.el (handle-shift-selection, exchange-point-and-mark)
4830         (activate-mark): Set transient-mark-mode buffer-locally (bug#6316).
4831         (transient-mark-mode): Use&set the global value.
4832         * mouse.el (mouse-set-region-1, mouse-drag-track): Idem.
4833         * emulation/edt.el (edt-emulation-off): Save&restore the global
4834         transient-mark-mode setting.
4835         * obsolete/pc-select.el (pc-selection-mode): Use the
4836         transient-mark-mode function.
4838 2014-06-23  Eli Zaretskii  <eliz@gnu.org>
4840         * international/fontset.el (script-representative-chars):
4841         Add representative characters for scripts added in Unicode 7.0.
4842         (otf-script-alist): Synchronize with the latest registry of OTF
4843         script tags.
4845         * international/characters.el (char-script-table): Update for
4846         scripts added and codepoint ranges changed in Unicode 7.0.
4848 2014-06-23  Eli Barzilay  <eli@barzilay.org>
4850         * calculator.el (calculator-standard-displayer): Fix bug in use of
4851         `calculator-groupize-number'.
4852         (calculator-funcall): Fix broken `cl-flet' use by moving it into the
4853         `eval' code, so it works in v24.3.1 too.
4854         (calculator-last-input): Comment to clarify purpose.
4856 2014-06-22  Mario Lang  <mlang@delysid.org>
4858         * textmodes/rst.el (rst-comment-region): From from -> from.
4860         * net/tramp-adb.el (tramp-adb-send-command-and-check): And and -> and.
4862 2013-06-22  Dmitry Antipov  <dmantipov@yandex.ru>
4864         * electric.el (electric-layout-post-self-insert-function):
4865         * emacs-lisp/ert.el (ert--insert-infos):
4866         * obsolete/vi.el (vi-set-mark):
4867         * term.el (term-handle-scroll):
4868         * textmodes/bibtex.el (bibtex-fill-field, bibtex-fill-entry):
4869         * wid-edit.el (widget-editable-list-value-create):
4870         Prefer point-marker to copy-marker of point.
4872 2014-06-21  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4874         Fix completion retrieval parsing (bug#17209).
4875         * progmodes/python.el (python-mode):
4876         (python-util-strip-string): New function.
4877         (python-shell-completion-get-completions): Use it.
4879 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
4881         * skeleton.el (skeleton-insert): Fix last change.
4883 2014-06-21  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4885         Enhancements for outline integration (bug#17796).
4886         * progmodes/python.el (python-mode): Properly set
4887         outline-heading-end-regexp so that comments after colons for
4888         defuns are supported.
4890 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
4892         * skeleton.el (skeleton-insert): Doc fix.
4894 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4896         * emacs-lisp/smie.el (smie-config--guess): Fix typo.
4897         (smie-config-guess): Use smie-config-local so the rules are obeyed
4898         (bug#17818).
4900         * mouse.el (mouse-drag-line): Don't re-add to unread-comment-events,
4901         since it's already done inside the loop (bug#17819).
4903 2014-06-21  Martin Rudalics  <rudalics@gmx.at>
4905         * mouse.el (mouse-drag-line): Re-remove code initially removed
4906         on 2013-03-09 and inadvertently reintroduced on 2013-11-30
4907         (Bug#17819).
4909 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4911         * progmodes/sh-script.el (sh-smie-sh-rules): For { after &&, don't
4912         align with the surrounding parent (bug#17721).
4914 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
4916         * textmodes/texinfo.el (texinfo-mode): Set skeleton-end-newline
4917         locally to nil.
4918         (texinfo-insert-block, texinfo-insert-@end)
4919         (texinfo-insert-@example, texinfo-insert-@quotation): Adjust to
4920         local setting of skeleton-end-newline by adding an explicit \n to
4921         the skeletons where appropriate.  (Bug#17801)
4923 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4925         * emacs-lisp/smie.el (smie--hanging-eolp-function): New var.
4926         (smie-indent--hanging-p): Use it.
4927         * progmodes/sh-script.el (sh-set-shell): Set it (bug#17621).
4929 2014-06-21  Leo Liu  <sdl.web@gmail.com>
4931         * simple.el (read-quoted-char): Don't let help chars pop up help
4932         buffer.  (Bug#16617)
4934 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4936         * progmodes/sh-script.el (sh-smie-sh-rules): Use same rule for && as
4937         for | (bug#17621).
4939         * xt-mouse.el (xterm-mouse--read-event-sequence-1000):
4940         Drop unknown events instead of burping.
4942 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
4944         * term/w32-win.el (dynamic-library-alist): Support giflib 5.1.0
4945         and later.  (Bug#17790)
4947 2014-06-21  Juri Linkov  <juri@jurta.org>
4949         * dired.el (dired-mark-pop-up): Let-bind display-buffer-mark-dedicated
4950         to `soft'.  (Bug#17554)
4952 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4954         * delsel.el (electric-newline-and-maybe-indent): Mark it as well
4955         (bug#17737).
4957 2014-06-21  Dmitry Gutov  <dgutov@yandex.ru>
4959         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Don't fontify
4960         `!' in `!~' with `font-lock-negation-char-face'.  (Bug#17732)
4962 2014-06-21  Michael Albinus  <michael.albinus@gmx.de>
4964         * net/dbus.el (dbus-call-method): Push only non D-Bus events into
4965         `unread-command-events'.
4967 2014-06-19  William Xu  <william.xwl@gmail.com>
4969         * progmodes/hideif.el (hif-string-to-number): Don't return float for
4970         hex integer constants (bug#17807).
4972 2014-06-19  Stefan Monnier  <monnier@iro.umontreal.ca>
4974         * international/mule-util.el (truncate-string-ellipsis): New var.
4975         (truncate-string-to-width): Use it.
4977 2014-06-19  Robert Brown  <robert.brown@gmail.com>  (tiny change)
4979         * emacs-lisp/lisp-mode.el (lisp-string-after-doc-keyword-p): New fun.
4980         (lisp-string-in-doc-position-p): New function, extracted from
4981         lisp-font-lock-syntactic-face-function.
4982         (lisp-font-lock-syntactic-face-function): Use them (bug#9130).
4984 2014-06-19  Grégoire Jadi  <daimrod@gmail.com>
4986         * net/rcirc.el (rcirc-omit-mode): Fix recenter error.  (Bug#17769)
4988 2014-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
4990         * play/bubbles.el (bubbles--initialize, bubbles--show-scores)
4991         (bubbles--game-over): Don't add `intangible' properties since they
4992         didn't work anyway.
4994 2014-06-18  Juri Linkov  <juri@jurta.org>
4996         * vc/ediff-init.el (ediff-current-diff-Ancestor)
4997         (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
4998         (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
4999         (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
5000         Add `min-colors 88' version with removed black/white foregrounds.
5001         (Bug#10181)
5003 2014-06-18  Juri Linkov  <juri@jurta.org>
5005         * vc/diff-mode.el (diff-changed): Empty face definition to use
5006         `diff-removed' and `diff-added' on tty as well.  (Bug#10181)
5007         (diff-context): Use darker color on light background and
5008         lighter color on dark background.
5010 2014-06-18  Juri Linkov  <juri@jurta.org>
5012         * vc/diff-mode.el (diff-refine-changed): Rename from
5013         `diff-refine-change' for consistency with `diff-changed'.
5014         (diff-refine-change): Add obsolete face alias.  (Bug#10181)
5016         * vc/smerge-mode.el (smerge-refined-changed): Rename from
5017         `smerge-refined-change'.
5018         (smerge-refined-change): Add obsolete face alias.
5020 2014-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5022         * rect.el (rectangle-preview): New custom.
5023         (rectangle): New group.
5024         (rectangle--pos-cols): Add `window' argument.
5025         (rectangle--string-preview-state, rectangle--string-preview-window):
5026         New vars.
5027         (rectangle--string-flush-preview, rectangle--string-erase-preview)
5028         (rectangle--space-to, rectangle--string-preview): New functions.
5029         (string-rectangle): Use them.
5030         (rectangle--inhibit-region-highlight): New var.
5031         (rectangle--highlight-for-redisplay): Obey it.  Make sure
5032         `apply-on-region' uses the point-crutches of the right window.
5033         Use :align-to rather than multiple spaces.
5035 2014-06-16  Andrea Rossetti  <andrea.rossetti@gmail.com>  (tiny change)
5037         * ruler-mode.el (ruler-mode-window-col)
5038         (ruler-mode-mouse-set-left-margin)
5039         (ruler-mode-mouse-set-right-margin): Fix calculation of column
5040         from mouse position (Bug#17768).
5042 2014-06-16  Ron Schnell  <ronnie@driver-aces.com>
5044         * play/dunnet.el (dun-doassign): Fix bug where UNIX variable assignment
5045         without varname or rhs causes crash.
5046         (dun-ftp): Fix bug where blank ftp password is allowed, making it
5047         impossible to win endgame.
5048         (dun-unix-verbs): Add ssh as alias to rlogin, because nobody knows what
5049         rlogin is anymore.
5050         (dun-help): Bump version number; update contact info.
5052 2014-06-15  Eli Barzilay  <eli@barzilay.org>
5054         * calculator.el (calculator-prompt, calculator-remove-zeros)
5055         (calculator-mode-hook, calculator-operators, calculator-stack)
5056         (calculator-mode): Tweak docstring.
5057         (calculator-user-operators): Tweak docstring, fix a bug in the last
5058         example.
5059         (calculator-displayer): `std' case has an optional boolean.
5060         (calculator-displayers): Use the new boolean to group in decimal mode.
5061         (calculator-mode-map, calculator, calculator-message)
5062         (calculator-op-arity, calculator-add-operators)
5063         (calculator-string-to-number, calculator-displayer-prev)
5064         (calculator-displayer-next, calculator-remove-zeros)
5065         (calculator-eng-display, calculator-number-to-string)
5066         (calculator-update-display, calculator-last-input)
5067         (calculator-clear-fragile, calculator-digit, calculator-decimal)
5068         (calculator-exp, calculator-saved-move, calculator-clear)
5069         (calculator-copy, calculator-put-value, calculator-help)
5070         (calculator-expt, calculator-truncate): Minor code improvements.
5071         (calculator-need-3-lines): New function pulling out code from
5072         `calculator'.
5073         (calculator-get-display): Rename from `calculator-get-prompt', and
5074         improved.
5075         (calculator-push-curnum): Rename from `calculator-curnum-value', and
5076         extended for all uses of it.  All callers changed.
5077         (calculator-groupize-number): New utility for splitting a number into
5078         groups.
5079         (calculator-standard-displayer): Improve code, new optional argument to
5080         use comma-split groups, make second argument optional too to use with
5081         'left/'right inputs.  All callers changed.
5082         (calculator-reduce-stack-once): New utility, doing the meat of what
5083         `calculator-reduce-stack' used to do, much improved (mostly using
5084         `pcase' for conciseness and clarity).
5085         (calculator-reduce-stack): Now doing just the reduction loop using
5086         `calculator-reduce-stack-once'.
5087         (calculator-funcall): Improve code, make it work in v24.3.1 too.
5088         (calculator-last-input): Improve code, remove some old cruft.
5089         (calculator-quit): Kill `calculator-buffer' in electric mode too.
5090         (calculator-integer-p): Remove.
5091         (calculator-fact): Improve code, make it work on non-integer values
5092         too (using truncated numbers).
5094 2014-06-15  Michael Albinus  <michael.albinus@gmx.de>
5096         Sync with Tramp 2.2.10.
5098         * net/tramp.el (tramp-methods): Tweak docstring.
5099         (tramp-handle-file-accessible-directory-p): Check for
5100         `file-readable-p' instead of `file-executable-p'.
5101         (tramp-check-cached-permissions):
5102         Use `tramp-compat-file-attributes'.
5103         (tramp-call-process): Add new argument VEC.  Adapt callees in all
5104         tramp*.el files.
5106         * net/tramp-adb.el (tramp-adb-handle-write-region): Improve messages.
5107         (tramp-adb-maybe-open-connection): Don't set
5108         `tramp-current-*' variables.
5110         * net/tramp-cache.el (tramp-flush-file-function): Do not flush
5111         file properties of temporary buffers.
5113         * net/tramp-ftp.el (top): Remove special handling for URL syntax.
5115         * net/tramp-gvfs.el (tramp-gvfs-methods) <sftp>: Add.
5116         (tramp-gvfs-handle-delete-file): Flush file
5117         properties, not directory properties.
5118         (tramp-gvfs-handle-file-attributes): Use `string-to-number' when
5119         reading "unix::mode".
5120         (tramp-gvfs-handle-file-name-all-completions):
5121         Use "-h" option for "gvfs-ls".
5122         (tramp-gvfs-url-file-name): `user' and `localname' could be nil.
5123         (tramp-gvfs-send-command): Simplify traces.
5125         * net/tramp-sh.el (vc-handled-backends, vc-bzr-program)
5126         (vc-git-program, vc-hg-program): Declare.
5127         (tramp-methods) <sftp>: Remove.  It has never worked satisfactorily.
5128         (tramp-methods) <nc>: Add new method.
5129         (tramp-methods) <telnet>: Redirect stderr to "/dev/null".
5130         (tramp-methods) <plink, plinkx, pscp, psftp>: Improve
5131         `tramp-login-args'.
5132         (tramp-default-user-alist): Add "nc".
5133         (top): Remove completion function for "sftp".  Add completion
5134         functions for "nc" and "psftp".
5135         (tramp-do-copy-or-rename-file-out-of-band): Tweak docstring.
5136         Implement support for "nc" method.
5137         (tramp-sh-handle-expand-file-name, tramp-local-coding-commands)
5138         (tramp-remote-coding-commands, tramp-call-local-coding-command):
5139         Tweak docstring.
5140         (tramp-sh-handle-write-region): Tweak error message.
5141         (tramp-sh-handle-vc-registered): Remove backends when the remote
5142         binary does not exist.
5143         (tramp-find-inline-encoding): Do not raise an error.
5144         (tramp-make-copy-program-file-name): Tweak docstring.  Handle also
5145         the "nc" case.  Quote result also locally.
5147         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
5148         (tramp-smb-handle-set-file-acl): Use `start-process'.
5149         (tramp-smb-handle-insert-directory): Use progress reporter.
5150         (tramp-smb-handle-rename-file): Flush also file properties of
5151         FILENAME.
5153         * net/trampver.el: Update release number.
5155 2014-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5157         * ses.el: Miscellaneous cleanups; use lexical-binding; avoid
5158         add-to-list.
5159         (ses-localvars): Remove ses--local-printer-list, unused.
5160         (ses--metaprogramming): New macro.  Use it to defvar variables.
5161         (ses-set-localvars): Simplify.
5162         (ses--locprn, ses-cell): Use defstruct.  Change ses-cell's
5163         property-list into an alist.
5164         (ses-locprn-get-compiled, ses-locprn-compiled-aset)
5165         (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number):
5166         Remove; use defstruct accessors/setters instead.
5167         (ses-cell-formula-aset, ses-cell-printer-aset)
5168         (ses-cell-references-aset): Remove, use setf instead.
5169         (ses--alist-get): New function.
5170         (ses-cell-property): Rename from ses-cell-property-get and rewrite.
5171         Use an alist instead of a plist and don't do move-to-front since the
5172         list is always short.
5173         (ses-cell-property-get-fun, ses-cell-property-delq-fun)
5174         (ses-cell-property-set-fun, ses-cell-property-set)
5175         (ses-cell-property-pop-fun, ses-cell-property-get-handle)
5176         (ses-cell-property-handle-car, ses-cell-property-handle-setcar): Remove.
5177         (ses--letref): New macro.
5178         (ses-cell-property-pop): Rewrite.
5179         (ses--cell): Rename from ses-cell and make it into a function.
5180         Make `formula' fallback on `value' if nil.
5181         (ses--local-printer): Rename from ses-local-printer and make it into
5182         a function.
5183         (ses-set-cell): Turn it into a macro so finding the accessor from the
5184         field name is done at compile time.
5185         (ses-repair-cell-reference-all): Test presence of `sym' rather than
5186         `ref' before adding `sym' to :ses-repair-reference.
5187         (ses-calculate-cell): Use ses--letref rather than
5188         ses-cell-property-get-handle.
5189         (ses-write-cells): Use a single prin1-to-string.
5190         (ses-setter-with-undo): New function.
5191         (ses-aset-with-undo, ses-set-with-undo): Rewrite using it.
5192         (ses-unset-with-undo): Remove.
5193         (ses-load): Prefer apply' over `eval'.
5194         (ses-read-printer, ses-set-column-width): Use standard "(default
5195         foo)" format.
5197 2014-06-15  Glenn Morris  <rgm@gnu.org>
5199         * Makefile.in (leim, semantic): Use `make -C' rather than `cd && make'.
5201         * progmodes/cc-langs.el: Require cl-lib.  (Bug#17463)
5202         Replace delete-duplicates and mapcan by cl- versions throughout.
5203         And cl-macroexpand-all by macroexpand-all.
5204         (delete-duplicates, mapcan, cl-macroexpand-all): No need to declare.
5206 2014-06-15  Eli Zaretskii  <eliz@gnu.org>
5208         * subr.el (posn-col-row): Doc fix.  (Bug#17768)
5210 2014-06-15  Juri Linkov  <juri@jurta.org>
5212         * bindings.el: Put `ascii-character' property on keypad keys
5213         mapped to characters.  (Bug#17759)
5215 2014-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5217         * emacs-lisp/smie.el (smie-next-sexp): Fix up "other-end" info when
5218         bumping forward into a closing paren (bug#17761).
5220         * term/xterm.el (xterm--version-handler): Work around for OSX
5221         Terminal.app (bug#17607).
5223 2014-06-14  Ron Schnell  <ronnie@driver-aces.com>
5225         * play/dunnet.el (dun-describe-room, dun-mode):
5226         If a lamp is in the room, you won't be eaten by a grue.
5228 2014-06-13  Glenn Morris  <rgm@gnu.org>
5230         * Makefile.in ($(lisp)/cus-load.el, $(lisp)/finder-inf.el)
5231         (autoloads, $(lisp)/subdirs.el, compile-main, leim, semantic, compile)
5232         (compile-always): GNU make automatically passes
5233         command-line arguments to sub-makes.
5235         * calendar/calendar.el (calendar-generate-window):
5236         Remove pointless call to font-lock-fontify-buffer.
5238 2014-06-13  Matthias Meulien  <orontee@gmail.com>
5240         * simple.el (completion-list-mode-map): Navigate with tab and backtab
5241         (bug#17767).
5243 2014-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
5245         * simple.el (set-mark-command): Simplify a bit.
5247 2014-06-12  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
5249         * help.el (help--key-binding-keymap): New function.
5250         (help--binding-locus): New function.
5251         (describe-key): Mention the keymap in which the binding was
5252         found. (bug#13948)
5254 2014-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5256         * hippie-exp.el (he--all-buffers): New function.
5257         (try-expand-line-all-buffers, try-expand-list-all-buffers)
5258         (try-expand-dabbrev-all-buffers): Use it.
5260 2014-06-12  Emilio C. Lopes  <eclig@gmx.net>
5262         * hippie-exp.el (try-expand-line-all-buffers)
5263         (try-expand-list-all-buffers, try-expand-dabbrev-all-buffers):
5264         Read hippie-expand-only-buffers and hippie-expand-ignore-buffers in the
5265         original buffer, in case they're buffer-local.
5267 2014-06-12  Vincent Belaïche  <vincentb1@users.sourceforge.net>
5269         * ses.el (ses-initial-global-parameters-re): New defconst, a
5270         specific regexp is needed now that ses.el can handle both
5271         file-format 2 --- ie. no local printers --- and 3 --- i.e. may have
5272         local printers.
5273         (ses-localvars): Add local variables needed for local printer handling.
5274         (ses-set-localvars): Handle hashmap initialisation.
5275         (ses-paramlines-plist): Add param-line for number of local printers.
5276         (ses-paramfmt-plist): New defconst, needed for code factorization
5277         between functions `ses-set-parameter' and
5278         `ses-file-format-extend-paramter-list'
5279         (ses-make-local-printer-info): New defsubst.
5280         (ses-locprn-get-compiled, ses-locprn-compiled-aset)
5281         (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number)
5282         (ses-cell-printer-aset): New defmacro.
5283         (ses-local-printer-compile): New defun.
5284         (ses-local-printer): New defmacro.
5285         (ses-printer-validate, ses-call-printer): Add support for local
5286         printer functions.
5287         (ses-file-format-extend-paramter-list): New defun.
5288         (ses-set-parameter): Use const `ses-paramfmt-plist' for code
5289         factorization.
5290         (ses-load): Add support for local printer functions.
5291         (ses-read-printer): Update docstring and add support for local printer
5292         functions.
5293         (ses-refresh-local-printer, ses-define-local-printer): New defun.
5294         (ses-safe-printer): Add support for local printer functions.
5296 2014-06-12  Ivan Andrus  <darthandrus@gmail.com>
5298         * ffap.el (ffap-lax-url): New var (bug#17723).
5299         (ffap-url-at-point): Use it.
5300         (ffap-file-at-point): Avoid returning just "/".
5302 2014-06-12  Matthias Meulien  <orontee@gmail.com>
5304         * progmodes/python.el (import skeleton): New skeleton (bug#17672).
5305         (python-mode-map): Bind it.
5307         * progmodes/python.el (class skeleton): Don't erase last char of class
5308         name (bug#17683).
5310 2014-06-12  Cameron Desautels  <camdez@gmail.com>  (tiny change)
5312         * help.el (where-is): Use `default' arg of completing-read (bug#17705).
5314 2014-06-12  Kevin Ryde  <user42_kevin@yahoo.com.au>
5316         * files.el (auto-mode-alist): Map .ad files to xdefaults-mode
5317         (bug#17745).
5319 2014-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5321         * international/mule-cmds.el: Use lexical-binding.
5322         (ucs-names): Simplify.
5324 2014-05-18  Eric Hanchrow  <eric.hanchrow@gmail.com>
5326         * progmodes/python.el (run-python): Use read-shell-command.
5328 2014-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
5330         * rect.el: Make it possible to move bounds past EOL or into TABs.
5331         (operate-on-rectangle): Use apply-on-rectangle.
5332         (rectangle--mark-crutches): New var.
5333         (rectangle--pos-cols, rectangle--col-pos, rectangle--point-col)
5334         (rectangle--crutches, rectangle--reset-crutches): New functions.
5335         (apply-on-rectangle): Obey crutches.  Avoid setq.
5336         Fix missing final iteration if end is at EOB&BOL.
5337         (rectangle-mark-mode-map): Add remap bindings for
5338         exchange-point-and-mark and char/line movements.
5339         (rectangle--*-char): New function.
5340         (rectangle-exchange-point-and-mark, rectangle-right-char)
5341         (rectangle-left-char, rectangle-forward-char)
5342         (rectangle-backward-char, rectangle-next-line)
5343         (rectangle-previous-line): New commands.
5344         (rectangle--place-cursor): New function.
5345         (rectangle--highlight-for-redisplay): Use it.  Use apply-on-rectangle.
5347 2014-06-08  Glenn Morris  <rgm@gnu.org>
5349         * startup.el (initial-buffer-choice): Doc fix.
5350         Reset :version (adding an option does not merit a :version bump).
5352         * bookmark.el (bookmark-load):
5353         * uniquify.el (uniquify-buffer-name-style): Doc fixes.
5355 2014-06-08  Juri Linkov  <juri@jurta.org>
5357         * desktop.el: Activate auto-saving on window configuration changes.
5358         (desktop-save-mode, desktop-auto-save-timeout): Add/remove
5359         `desktop-auto-save-set-timer' to/from
5360         `window-configuration-change-hook'.
5361         (desktop-auto-save-set-timer): Change REPEAT arg of
5362         `run-with-idle-timer' from t to nil.
5363         http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00147.html
5365 2014-06-08  Santiago Payà i Miralta  <santiagopim@gmail.com>
5367         * vc/vc-hg.el (vc-hg-working-revision): Use "hg parent" and
5368         vc-hg-command (bug#17570).
5370 2014-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
5372         * international/mule-cmds.el (ucs-names): Add special entry for BEL
5373         (bug#17702).
5375 2014-06-08  Glenn Morris  <rgm@gnu.org>
5377         * startup.el (window-setup-hook): Doc fix.
5379         * emacs-lisp/package.el (package-check-signature)
5380         (package-unsigned-archives): Doc fixes.
5382 2014-06-08  Martin Rudalics  <rudalics@gmx.at>
5384         * window.el (display-buffer-use-some-window): Don't make window
5385         used smaller than it was before (Bug#17671).
5387 2014-06-08  Eli Zaretskii  <eliz@gnu.org>
5389         * menu-bar.el (menu-bar-open): Fix last change: use the PC
5390         'redisplay' instead of '(sit-for 0)'.
5392 2014-06-08  Michael Albinus  <michael.albinus@gmx.de>
5394         * net/tramp.el (tramp-ssh-controlmaster-options):
5395         Improve search regexp.  (Bug#17653)
5397 2014-06-08  Glenn Morris  <rgm@gnu.org>
5399         * emacs-lisp/package.el (package-pinned-packages): Doc fix.
5401 2014-06-08  Eli Zaretskii  <eliz@gnu.org>
5403         * menu-bar.el (menu-bar-open): Fix invocation via M-x.
5405 2014-06-06  Santiago Payà i Miralta  <santiagopim@gmail.com>
5407         * vc/vc-hg.el (vc-hg-create-tag, vc-hg-retrieve-tag): New functions
5408         (bug#17586).
5410         * vc/vc-hg.el (vc-hg-log-graph): New var.
5411         (vc-hg-print-log): Use it.
5412         (vc-hg-root-log-format): Include branch name and bookmarks; ignore
5413         graph output (bug#17515).
5415 2014-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5417         * mouse.el (mouse-posn-property): Ignore buffer position info when the
5418         even happened elsewhere.
5420 2014-06-06  Mario Lang  <mlang@delysid.org>
5422         * emacs-lisp/tabulated-list.el (tabulated-list-print): Only call
5423         `recenter' if `current-buffer' is equal to `window-buffer'.
5425 2014-06-05  Leo Liu  <sdl.web@gmail.com>
5427         * emacs-lisp/cl-macs.el (cl-macrolet): Avoid excessive progn's.
5429 2014-06-05  Michal Nazarewicz  <mina86@mina86.com>
5431         * textmodes/tildify.el (tildify-foreach-region-outside-env):
5432         New function which calls a callback on portions of the buffer that are
5433         outside of ignored environments.
5434         (tildify-build-regexp): Remove function since it is now
5435         incorporated in `tildify-foreach-region-outside-env' where it is
5436         optimized and simplified by the use of `mapconcat'.
5437         (tildify-tildify): Return number of substitutions made so that…
5438         (tildify-count): …can be removed.
5439         (tildify-find-env): Accept a new PAIRS argument which was
5440         previously looked up in `tildify-ignored-environments-alist' each
5441         time the function was called.  With this change, the lookup is
5442         performed only once in `tildify-foreach-region-outside-env'.
5443         (tildify-region): Greatly simplify the function since now most of
5444         the work is done by `tildify-foreach-region-outside-env'.
5445         (tildify-mode-alist): Simplify slightly by avoiding if and setq
5446         and instead using or.
5448         * textmodes/tildify.el (tildify-ignored-environments-alist):
5449         Optimize environments regexes
5451         Each time beginning of an environment to ignore is found,
5452         `tildify-find-env' needs to identify regexp for the ending
5453         of the environment.  This is done by trying all the opening
5454         regexes on matched text in a loop, so to speed that up, this
5455         loop should have fewer things to match, which can be done by
5456         using alternatives in the opening regexes.
5458         Coincidentally, this should make matching of the opening
5459         regexp faster as well thanks to the use of `regexp-opt' and
5460         having common prefix pulled from many regexes.
5462         * textmodes/tildify.el (tildify-string-alist)
5463         (tildify-ignored-environments-alist): Add `nxml-mode' to the list
5464         of supported modes since `xml-mode' is no longer a thing but just
5465         an alias to the former.  Also include comments and insides of tags
5466         in `tildify-ignored-environments-alist' for XML modes.  Finally,
5467         since XML does not define “&nbsp;”[1], use a numeric reference for
5468         a no-break space (namely “&#160;”)
5470         [1] XML specification defines only a handful of predefined entities.
5471             The list is at <http://www.w3.org/TR/REC-xml/#sec-predefined-ent>
5472             and includes only &lt;, &gt;, &amp;, &apos; and &quot; (meaning <,
5473             >, &, ' and " respectively).  This is in contrast to HTML and even
5474             XHTML which defined a whole bunch of entities including “&nbsp;”.
5476         * textmodes/tildify.el (tildify-pattern-alist)
5477         (tildify-string-alist, tildify-ignored-environments-alist):
5478         Improve defcustom's types by adding more tags explaining what each
5479         value means and replace “sexp” used in
5480         `tildify-ignored-environments-alist' with a full type declaration.
5482         * textmodes/tildify.el (tildify-find-env): Fix matched group
5483         indexes in end-regex building
5485         When looking for a start of an ignore-environment, the regex is built
5486         by concatenating regexes of all the environments configured in
5487         `tildify-ignored-environments-alist'.  So for example, the following
5488         list could be used to match TeX's \verb and \verb* commands:
5490             (("\\\\verb\\(.\\)" . (1))
5491              ("\\\\verb\\*\\(.\\)" . (1)))
5493         This would result in the following regex being used to find the start
5494         of any of the variants of the \verb command:
5496             \\\\verb\\(.\\)\\|\\\\verb\\*\\(.\\)
5498         But now, if “\\\\verb\\*\\(.\\)” matches, the first capture group
5499         won't match anything, and thus (match-string 1) will be nil, which
5500         will cause building of the end-matching regex to fail.
5502         Fix this by using capture groups from the time when the opening
5503         regexes are matched individually.
5505         * textmodes/tildify.el (tildify-find-env): Fix end-regex building
5506         in `tildify-find-env'
5508         The `tildify-ignored-environments-alist' allows the end-regex to
5509         be provided not as a static string but mix of strings and indexes
5510         of groups matched the begin-regex.  For example, the “\verb!…!”
5511         TeX-command (where “!” is an arbitrary character) is handled
5512         using:
5514             ("\\\\verb\\*?\\(.\\)" . (1))
5516         In the same way, the following should be supported as well:
5518             ("open-\\(.\\)" . ("end-" 1))
5520         However the tildify-find-env function fails at
5522             (concat result
5523                     (if (stringp (setq aux (car expression)))
5524                          expression  ; BUG: expression is a list
5525                        (regexp-quote (match-string aux))))
5527         where the string part is handled incorrectly.
5529         The most trivial fix would be to replace `expression' in the
5530         true-part of the if-statement with `aux', but instead, this commit
5531         optimizes `tildify-find-env' by changing it to use `mapconcat'
5532         rather than open-coded while-loop.
5534 2014-06-05  Mario Lang  <mlang@delysid.org>
5536         * woman.el (woman-mapcan): Remove.
5537         (woman-parse-colon-path): Use cl-mapcan instead.
5539 2014-06-03  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
5541         * register.el: Add link to Emacs manual in Commentary.
5543 2014-06-02  Sam Steingold  <sds@gnu.org>
5545         * menu-bar.el (lookup-key-ignore-too-long): Extract from...
5546         (popup-menu): ...here.
5547         (menu-bar-open): Use it to avoid an error when `lookup-key'
5548         returns a number.
5550 2014-06-02  Michael Albinus  <michael.albinus@gmx.de>
5552         * net/tramp.el (tramp-call-process): Add traces.
5553         (tramp-handle-unhandled-file-name-directory): Return "/".
5555 2014-06-02  Wilson Snyder  <wsnyder@wsnyder.org>
5557         Sync with upstream verilog-mode revision 3cd8144.
5558         * progmodes/verilog-mode.el (verilog-mode-version): Bump.
5559         (verilog-auto-arg-format): New option, to support newlines in AUTOARG.
5560         (verilog-type-font-keywords): Add nor.
5561         (verilog-batch-execute-func): Force reading of Local Variables.
5562         Fix printing "no changes to be saved" with verilog-batch.
5563         (verilog-auto-arg-ports): Doc fix.
5564         Add verilog-auto-arg-format to support newlines in AUTOARG.
5565         (verilog-auto-arg): Doc fix.
5567 2014-06-02  Glenn Morris  <rgm@gnu.org>
5569         * emulation/crisp.el, emulation/tpu-edt.el, emulation/tpu-extras.el:
5570         * emulation/tpu-mapper.el, emulation/vi.el, emulation/vip.el:
5571         * emulation/ws-mode.el: Move to obsolete/.
5572         * Makefile.in (AUTOGEN_VCS): Update for moved tpu-edu.el.
5574 2014-06-02  Eli Zaretskii  <eliz@gnu.org>
5576         * simple.el (keyboard-quit): Force update of mode lines, to remove
5577         the "Def" indicator, if we were defining a macro.  (Bug#17615)
5579 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5581         * minibuffer.el (minibuffer-force-complete-and-exit):
5582         Obey minibuffer-default (bug#17545).
5584         * progmodes/js.el (js-indent-line): Don't mix columns and chars
5585         (bug#17619).
5587         * subr.el (set-transient-map): Don't wait for some "nested"
5588         transient-map to finish if we're only supposed to be active for
5589         the next command (bug#17642).
5591 2014-06-02  Leo Liu  <sdl.web@gmail.com>
5593         * emacs-lisp/gv.el (window-buffer, window-display-table)
5594         (window-dedicated-p, window-hscroll, window-point, window-start):
5595         Fix gv-expander.  (Bug#17630)
5597 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5599         * mouse.el (mouse-posn-property): Ignore posn-point for mode-line
5600         clicks (bug#17633).
5602         * leim/quail/latin-pre.el ("latin-2-prefix"): Use ",," rather than ", "
5603         for the single comma, since ", " is *very* common in normal French text
5604         (bug#17643).
5606 2014-06-02  Glenn Morris  <rgm@gnu.org>
5608         * emacs-lisp/package.el (package-check-signature)
5609         (package-unsigned-archives): Fix :version.
5611 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5613         * subr.el (sit-for): Don't run input-methods (bug#15614).
5615 2014-06-02  Glenn Morris  <rgm@gnu.org>
5617         * cus-start.el: Fix some :version numbers.
5619 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5621         * simple.el (deactivate-mark): Set mark-active to nil even if
5622         deactivation is done via setting transient-mark-mode to nil,
5623         since one is buffer-local and the other is global.
5625         * emacs-lisp/byte-opt.el (byte-optimize-binary-predicate): Don't assume
5626         there can't be more than 2 arguments (bug#17584).
5628 2014-06-02  Glenn Morris  <rgm@gnu.org>
5630         * simple.el (filter-buffer-substring-functions)
5631         (filter-buffer-substring-function, buffer-substring-filters)
5632         (filter-buffer-substring, buffer-substring--filter): Doc fixes.
5634         * minibuffer.el (completion-in-region-functions, completion-in-region)
5635         (completion--in-region): Doc fixes.
5637         * abbrev.el (abbrev-expand-functions, abbrev-expand-function)
5638         (expand-abbrev, abbrev--default-expand): Doc fixes.
5640 2014-06-02  Paul Eggert  <eggert@cs.ucla.edu>
5642         Include sources used to create macuvs.h.
5643         * international/README: Refer to the Unicode Terms of Use rather
5644         than copying it bodily here, as that simplifies maintenance.
5646 2014-06-01  Glenn Morris  <rgm@gnu.org>
5648         * loadup.el (load-prefer-newer): Set non-nil when dumping.  (Bug#17629)
5650 2014-05-31  Glenn Morris  <rgm@gnu.org>
5652         * files.el (locate-dominating-file): Expand file argument.  (Bug#17641)
5654 2014-05-30  Glenn Morris  <rgm@gnu.org>
5656         * loadup.el: Treat `command-line-args' more flexibly.
5658 2014-05-30  Alan Mackenzie  <acm@muc.de>
5660         Guard (looking-at "\\s!") from XEmacs.
5661         * progmodes/cc-engine.el (c-state-pp-to-literal): Add guard form.
5663 2014-05-30    Ken Olum  <kdo@cosmos.phy.tufts.edu>
5665         * mail/rmail.el (rmail-delete-forward, rmail-delete-backward):
5666         The argument COUNT is now optional, to be more backward-compatible.
5667         Doc fix.  (Bug#17560)
5669 2014-05-29  Reuben Thomas  <rrt@sc3d.org>
5671         * whitespace.el (whitespace-report-region):
5672         Simplify documentation.
5673         (whitespace-report-region): Allow report-if-bogus to take the
5674         value `never', for non-interactive use.
5675         (whitespace-report): Refer to whitespace-report-region's
5676         documentation.
5678 2014-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
5680         * whitespace.el: Use font-lock-flush.  Minimize refontifications.
5681         Side benefit: it works without jit-lock.
5682         (whitespace-point--used): New buffer-local var.
5683         (whitespace-color-on): Initialize it and flush it.  Use font-lock-flush.
5684         (whitespace-color-off): Use font-lock-flush.
5685         (whitespace-point--used, whitespace-point--flush-used): New functions.
5686         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
5687         (whitespace-empty-at-eob-regexp): Use them.
5688         (whitespace-post-command-hook): Rewrite.
5690         * font-lock.el (font-lock-flush, font-lock-ensure): New functions.
5691         (font-lock-fontify-buffer): Mark interactive-only.
5692         (font-lock-multiline, font-lock-fontified, font-lock-set-defaults):
5693         Make buffer-local.
5694         (font-lock-specified-p): Remove redundant boundp check.
5695         (font-lock-flush-function, font-lock-ensure-function): New vars.
5696         (font-lock-turn-on-thing-lock): Set them.
5697         (font-lock-default-fontify-buffer): Obey font-lock-dont-widen.
5698         (font-lock-after-change-function): Make `old-len' optional.
5699         (font-lock-set-defaults): Remove redundant `set' of font-lock-defaults.
5700         Call font-lock-flush, just in case.
5701         * progmodes/verilog-mode.el (verilog-preprocess): Disable workaround in
5702         recent Emacsen.
5703         * progmodes/vera-mode.el (vera-fontify-buffer): Declare obsolete.
5704         (vera-mode-map, vera-mode-menu): Remove bindings to it.
5705         * progmodes/idlw-help.el (idlwave-help-fontify): Use font-lock-ensure
5706         and with-syntax-table.
5707         * textmodes/conf-mode.el (conf-quote-normal):
5708         * progmodes/sh-script.el (sh-set-shell):
5709         * progmodes/prog-mode.el (prettify-symbols-mode):
5710         * progmodes/f90.el (f90-font-lock-n):
5711         * progmodes/cwarn.el (cwarn-mode):
5712         * nxml/nxml-mode.el (nxml-toggle-char-ref-extra-display):
5713         * progmodes/compile.el (compilation-setup, compilation--unsetup):
5714         * hi-lock.el (hi-lock-mode, hi-lock-unface-buffer)
5715         (hi-lock-set-pattern, hi-lock-set-file-patterns): Use font-lock-flush.
5716         * mail/rmail.el (rmail-variables): Set font-lock-dont-widen instead of
5717         font-lock-fontify-buffer-function and
5718         font-lock-unfontify-buffer-function.
5719         (rmail-unfontify-buffer-function, rmail-fontify-message):
5720         Use with-silent-modifications.
5721         * htmlfontify.el (hfy-force-fontification): Use jit-lock-fontify-now
5722         and font-lock-ensure.
5723         * bs.el (bs-show-in-buffer): Use font-lock-ensure.
5725 2014-05-28  Thien-Thi Nguyen  <ttn@gnu.org>
5727         * emacs-lisp/package.el (package-generate-autoloads):
5728         Inhibit backup files.
5730 2014-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5732         * progmodes/hideshow.el (hs-hide-all): Call syntax-propertize
5733         (bug#17608).
5735 2014-05-21  Michal Nazarewicz  <mina86@mina86.com>
5737         * textmodes/tildify.el (tildify-buffer, tildify-region):
5738         Add dont-ask option.
5740 2014-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
5742         * subr.el (zerop): Move from C.  Add compiler-macro (bug#17475).
5743         * emacs-lisp/byte-opt.el (byte-optimize-zerop): Remove.
5745         * subr.el (internal--funcall-interactively): New.
5746         (internal--call-interactively): Remove.
5747         (called-interactively-p): Detect funcall-interactively instead of
5748         call-interactively.
5749         * simple.el (repeat-complex-command): Use funcall-interactively.
5750         (repeat-complex-command--called-interactively-skip): Remove.
5752 2014-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
5754         * register.el (register-read-with-preview): Don't burp on
5755         frame switches (e.g. due to the frame we just popped).
5757         * mouse.el (mouse-set-region): Handle spurious drag events (bug#17562).
5758         (mouse-drag-track): Annotate `mouse-drag-start' so we know we moved.
5760 2014-05-26  Andreas Schwab  <schwab@linux-m68k.org>
5762         * cus-face.el (custom-face-attributes): Add :distant-foreground.
5764 2014-05-26  Martin Rudalics  <rudalics@gmx.at>
5766         * window.el (window--dump-frame): Remove interactive specification.
5768 2014-05-26  Glenn Morris  <rgm@gnu.org>
5770         * hippie-exp.el (he-line-search-regexp):
5771         Handle comint-prompt-regexp containing subgroups.  (Bug#17529)
5773 2014-05-26  Stephen Berman  <stephen.berman@gmx.net>
5775         * calendar/todo-mode.el: Remove dependence on auto-mode-alist,
5776         to avoid errors when trying to create or visit a file foo.todo
5777         located outside to todo-directory, and to allow having such files
5778         without them being tied to Todo mode (bug#17482).
5779         (todo-show, todo-move-category, todo-merge-category, todo-find-archive)
5780         (todo-archive-done-item, todo-find-filtered-items-file)
5781         (todo-filter-items, todo-find-item, todo-diary-goto-entry)
5782         (todo-category-completions, todo-read-category): When visiting a
5783         Todo file, make sure we're in the right mode and the buffer local
5784         variables are set.
5785         (todo-make-categories-list, todo-reset-nondiary-marker)
5786         (todo-reset-done-string, todo-reset-comment-string):
5787         After processing all Todo files, kill the buffers of those files that
5788         weren't being visited before the processing.
5789         (todo-display-as-todo-file, todo-add-to-buffer-list)
5790         (todo-visit-files-commands): Comment out.
5791         (todo-modes-set-3, todo-mode): Comment out additions to find-file-hook.
5792         (auto-mode-alist): Remove add-to-list calls making Todo file
5793         extensions unrestrictedly tied to Todo modes.
5795 2014-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5797         * emacs-lisp/nadvice.el (advice--member-p): Change second arg.
5798         (advice-function-member-p): Tell it to check both names and functions
5799         (bug#17531).
5800         (advice--add-function): Adjust call accordingly.
5802 2014-05-26  Stephen Berman  <stephen.berman@gmx.net>
5804         * calendar/todo-mode.el: Miscellaneous bug fixes.
5805         (todo-delete-file): When deleting an archive but not its todo
5806         file, make sure to update the todo file's category sexp.
5807         (todo-move-category): Keep the moved category's name unless the
5808         file moved to already has a category with that name.  If the
5809         numerically last category of the source file was moved, make the
5810         first category current to avoid selecting a nonexisting category.
5811         (todo-merge-category): Fix implementation to make merging to a
5812         category in another file work as documented.  Eliminate now
5813         insufficient and unnecessary renaming of archive category, correct
5814         document string accordingly, and clarify it.  If the numerically
5815         last category of the source file was merged, make the first
5816         category current to avoid selecting a nonexisting category.
5817         (todo-archive-done-item): When there are marked items and point
5818         happens to be on an unmarked item, ignore the latter.  Don't leave
5819         point below last item after archiving marked items.
5820         (todo-unarchive-items): Fix logic to ensure unarchiving an item
5821         from an archive with only one category deletes the archive only
5822         when the category is empty after unarchiving.  Make sure the todo
5823         file's category sexp is updated.
5824         (todo-read-file-name): Allow an existing file name even when it is
5825         not required (todo-move-category needs this to work as documented).
5826         (todo-add-file): Call todo-validate-name to reject the name of an
5827         existing todo file (needed due to fix in todo-read-file-name).
5828         (todo-reset-nondiary-marker): Also reset in filtered items files.
5829         (todo-reset-done-string, todo-reset-comment-string): Also reset in
5830         regexp filtered items files.
5831         (todo-reset-highlight-item): Also reset in filtered items files.
5832         Fix incorrect variable reference in document string.
5834 2014-05-26  Glenn Morris  <rgm@gnu.org>
5836         * window.el (window--dump-frame): Avoid error in --without-x builds.
5838 2014-05-26  Glenn Morris  <rgm@gnu.org>
5840         * nxml/nxml-mode.el (xml-mode): Only define this alias once.
5842 2014-05-26  Eli Zaretskii  <eliz@gnu.org>
5844         * frame.el (set-frame-font): Doc fix.
5846         * menu-bar.el (menu-set-font): Doc fix.  (Bug#17532)
5848 2014-05-26  Dmitry Gutov  <dgutov@yandex.ru>
5850         * emacs-lisp/package.el (package--download-one-archive):
5851         Use `write-region' instead of `save-buffer' to avoid running various
5852         hooks.  (Bug#17155)
5853         (describe-package-1): Same.  Insert newline at the end of the
5854         buffer if appropriate.
5856 2014-05-26  Juri Linkov  <juri@jurta.org>
5858         * avoid.el (mouse-avoidance-set-mouse-position): Don't raise frame.
5859         (mouse-avoidance-ignore-p): Remove `switch-frame', add `focus-out'.
5860         Add more modifiers: meta, control, shift, hyper, super, alt.
5861         (Bug#17439)
5863         * avoid.el (mouse-avoidance-banish-position): Fix defcustom :options
5864         to allow changing its value with `set-variable'.
5866 2014-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
5868         * progmodes/scheme.el (scheme-mode-syntax-table): Remove hack for
5869         #; comments.
5870         (scheme-syntax-propertize, scheme-syntax-propertize-sexp-comment):
5871         New functions.
5872         (scheme-mode-variables): Set syntax-propertize-function instead of
5873         font-lock-syntactic-face-function.
5874         (scheme-font-lock-syntactic-face-function): Delete.
5876         * emacs-lisp/lisp.el (end-of-defun): Ensure we move (bug#17274).
5878         * emacs-lisp/timer.el (timer-event-handler): Don't run if canceled
5879         (bug#17392).
5881 2014-05-26  Michael Albinus  <michael.albinus@gmx.de>
5883         * net/tramp-sh.el (tramp-find-inline-encoding): Do not match "%%t"
5884         for a temporary file name.
5886 2014-05-26  Eli Zaretskii  <eliz@gnu.org>
5888         * simple.el (line-move-ignore-invisible): Doc fix.  (Bug#17511)
5890 2014-05-26  Michael Albinus  <michael.albinus@gmx.de>
5892         * net/dbus.el (dbus-init-bus, dbus-call-method)
5893         (dbus-call-method-asynchronously, dbus-send-signal)
5894         (dbus-method-return-internal, dbus-method-error-internal):
5895         Check, whether Emacs has been compiled with D-Bus support.  (Bug#17508)
5897 2014-05-26  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
5899         * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
5900         methods which do not have a doc string.  (Bug#17490)
5902 2014-05-25  Tassilo Horn  <tsdh@gnu.org>
5904         * textmodes/reftex-ref.el (reftex-format-special): Make it work
5905         also for AMS Math's \eqref macro.
5907 2014-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
5909         Arrange to never byte-compile the generated -pkg.el file.
5911         * emacs-lisp/package.el (package-generate-description-file):
5912         Output first-line comment to set buffer-local var `no-byte-compile'.
5913         Suggested by Dmitry Gutov:
5914         <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00401.html>.
5916 2014-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
5918         Fix bug: Properly quote args to generated -pkg.el `define-package'.
5920         * emacs-lisp/package.el (package-generate-description-file):
5921         Inline `package--alist-to-plist'; rewrite to selectively
5922         quote alist values that are not self-quoting.
5923         (package--alist-to-plist): Delete func.
5925 2014-05-25  Andreas Schwab  <schwab@linux-m68k.org>
5927         * term/xterm.el (xterm-function-map): Add mapping for shifted
5928         keypad keys.
5930 2014-05-24  Daniel Colascione  <dancol@dancol.org>
5932         * progmodes/subword.el (subword-find-word-boundary): Move point to
5933         correct spot before search. (Bug#17580)
5935         * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid
5936         breaking the build.
5938 2014-05-24  Leo Liu  <sdl.web@gmail.com>
5940         * calc/calc.el (math-bignum): Handle most-negative-fixnum.  (Bug#17556)
5942 2014-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5944         * minibuffer.el (completion--sreverse): Remove.
5945         (completion--common-suffix): Use `reverse' instead.
5946         * emacs-lisp/regexp-opt.el (regexp-opt-group): Use `reverse' on strings.
5948 2014-05-22  Glenn Morris  <rgm@gnu.org>
5950         * shell.el (shell-mode) <shell-dirstack-query>: Bypass bash aliases.
5952 2014-05-21  Daniel Colascione  <dancol@dancol.org>
5954         * files.el (interpreter-mode-alist): Add mksh.
5956         * progmodes/sh-script.el (sh-ancestor-alist): Add mksh, a pdksh
5957         derivative.
5958         (sh-alias-alist): Alias /system/bin/sh (Android's system shell) to
5959         mksh. Improve custom spec; allow regular expressions.
5960         (sh-shell): Delegate name splitting to `sh-canonicalize-shell'.
5961         (sh-after-hack-local-variables): New function.
5962         (sh-mode): Use it; respect file-local `sh-shell' variable. (bug#17333)
5963         (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding
5964         the normalization.
5965         (sh-canonicalize-shell): Rewrite to support regexes.
5967 2014-05-21  Leo Liu  <sdl.web@gmail.com>
5969         * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
5971 2014-05-19  Leo Liu  <sdl.web@gmail.com>
5973         * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.
5975 2014-05-18  Glenn Morris  <rgm@gnu.org>
5977         * loadup.el:
5978         * play/gametree.el: `track-mouse' is always defined since 2012-11-24.
5980 2014-05-14  Sam Steingold  <sds@gnu.org>
5982         * progmodes/python.el (python-shell-get-or-create-process):
5983         Do not bind `current-prefix-arg' so that C-c C-z does not talk
5984         back unless requested.
5986 2014-05-14  Glenn Morris  <rgm@gnu.org>
5988         * subr.el (with-file-modes): New macro.
5989         * printing.el (pr-save-file-modes): Make obsolete.
5990         * eshell/esh-util.el (eshell-with-file-modes): Make obsolete.
5991         * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
5992         Add with-file-modes.
5993         * doc-view.el (doc-view-make-safe-dir):
5994         * epg.el (epg--start):
5995         * files.el (locate-user-emacs-file, make-temp-file)
5996         (backup-buffer-copy, move-file-to-trash):
5997         * printing.el (pr-despool-print, pr-call-process, pr-text2ps):
5998         * eshell/esh-util.el (eshell-with-private-file-modes)
5999         (eshell-make-private-directory):
6000         * net/browse-url.el (browse-url-mosaic):
6001         * obsolete/mailpost.el (post-mail-send-it):
6002         * obsolete/pgg-pgp.el (pgg-pgp-verify-region):
6003         * obsolete/pgg-pgp5.el (pgg-pgp5-verify-region):
6004         Use with-file-modes.
6006         * vc/emerge.el (emerge-make-temp-file): Simplify.
6008 2014-05-14  Stephen Berman <stephen.berman@gmx.net>
6009             Stefan Monnier  <monnier@iro.umontreal.ca>
6011         * minibuffer.el (completion-pcm--merge-try): Merge trailing / with
6012         suffix (bug#15419).
6014 2014-05-14  Glenn Morris  <rgm@gnu.org>
6016         * vc/emerge.el (emerge-temp-file-prefix):
6017         Make pointless option obsolete.
6018         (emerge-temp-file-mode): Make non-functional option obsolete.
6020 2014-05-14  Michael Albinus  <michael.albinus@gmx.de>
6022         * net/browse-url.el (browse-url):
6023         Use `unhandled-file-name-directory' when setting `default-directory',
6024         in order to circumvent stalled remote connections.  (Bug#17425)
6026 2014-05-14  Glenn Morris  <rgm@gnu.org>
6028         * printing.el (subst-char-in-string, make-temp-file, pr-get-symbol):
6029         Optimize on Emacs, which has the relevant functions for ages.
6031 2014-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
6033         * simple.el (undo-make-selective-list): Obey undo-no-redo.
6035 2014-05-12  Sam Steingold  <sds@gnu.org>
6037         * calendar/time-date.el (seconds-to-string): New function to
6038         pretty print time delay in seconds.
6040 2014-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6042         * mpc.el (mpc-format): Trim Date to the year.
6043         (mpc-songs-hashcons): Shorten the Date field.
6045         * emacs-lisp/nadvice.el (advice--interactive-form): Don't get fooled
6046         into autoloading just because of a silly indirection.
6048 2014-05-12  Santiago Payà i Miralta  <santiagopim@gmail.com>
6050         * vc/vc-hg.el (vc-hg-unregister): New function.  (Bug#17454)
6052 2014-05-12  Glenn Morris  <rgm@gnu.org>
6054         * emacs-lisp/find-gc.el: Move to ../admin.
6056         * printing.el (pr-version):
6057         * ps-print.el (ps-print-version): Also mention bug-gnu-emacs.
6059         * net/browse-url.el (browse-url-mosaic):
6060         Create /tmp/Mosaic.PID as a private file.
6062 2014-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6064         * emacs-lisp/nadvice.el: Support adding a given function multiple times.
6065         (advice--member-p): If name is given, only compare the name.
6066         (advice--remove-function): Don't stop at the first match.
6067         (advice--normalize-place): New function.
6068         (add-function, remove-function): Use it.
6069         (advice--add-function): Pass the name, if any, to
6070         advice--remove-function.
6072 2014-05-12  Philipp Rumpf  <prumpf@gmail.com>  (tiny change)
6074         * electric.el (electric-indent-post-self-insert-function): Don't use
6075         `pos' after modifying the buffer (bug#17449).
6077 2014-05-12  Stephen Berman  <stephen.berman@gmx.net>
6079         * calendar/todo-mode.el (todo-insert-item-from-calendar):
6080         Correct argument list to conform to todo-insert-item--basic.
6082 2014-05-12  Glenn Morris  <rgm@gnu.org>
6084         * files.el (cd-absolute): Test if directory is accessible
6085         rather than executable.  (Bug#17330)
6087         * progmodes/compile.el (recompile):
6088         Handle C-u M-x recompile from a non-compilation buffer.  (Bug#17444)
6090         * net/browse-url.el (browse-url-mosaic):
6091         Be careful when writing /tmp/Mosaic.PID.  (Bug#17428)
6092         This is CVE-2014-3423.
6094 2014-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6096         * mouse.el: Use the normal toplevel loop while dragging.
6097         (mouse-set-point): Handle multi-clicks.
6098         (mouse-set-region): Handle multi-clicks for drags.
6099         (mouse-drag-region): Update call accordingly.
6100         (mouse-drag-track): Remove `do-mouse-drag-region-post-process' hack.
6101         Use the normal event loop instead of a local while/read-event loop.
6102         (global-map): Remove redundant bindings for double/triple-mouse-1.
6103         * xt-mouse.el (xterm-mouse-translate-1): Only process one event at a time.
6104         Generate synthetic down events when the protocol only sends up events.
6105         (xterm-mouse-last): Remove.
6106         (xterm-mouse--read-event-sequence-1000): Use xterm-mouse-last-down
6107         terminal parameter instead.
6108         (xterm-mouse--set-click-count): New function.
6109         (xterm-mouse-event): Detect/generate double/triple clicks.
6110         * reveal.el (reveal-close-old-overlays): Don't close while dragging.
6112         * info.el (Info-quoted): New face.
6113         (Info-mode-font-lock-keywords): New var.
6114         (Info-mode): Use it.
6116         * emacs-lisp/lisp-mode.el (preceding-sexp): Exclude leading "," which
6117         are a hindrance for C-x C-e.
6119 2014-05-11  Leo Liu  <sdl.web@gmail.com>
6121         * net/rcirc.el (rcirc-sentinel): Fix last change.
6123 2014-05-08  Sam Steingold  <sds@gnu.org>
6125         * net/rcirc.el (rcirc-reconnect-delay): New user option.
6126         (rcirc-sentinel): Auto-reconnect to the server if
6127         `rcirc-reconnect-delay' is non-0 (but not more often than its
6128         value in case the host is off-line).
6130 2014-05-09  Eli Zaretskii  <eliz@gnu.org>
6132         * progmodes/grep.el (lgrep): Fix a typo in last commit.
6134 2014-05-09  Glenn Morris  <rgm@gnu.org>
6136         * files.el (file-expand-wildcards):
6137         * man.el (Man-support-local-filenames):
6138         * printing.el (pr-i-directory, pr-interface-directory):
6139         * progmodes/grep.el (lgrep, rgrep):
6140         * textmodes/ispell.el (ispell-call-process)
6141         (ispell-call-process-region, ispell-start-process)
6142         (ispell-init-process): Use file-accessible-directory-p.
6144 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6146         * xt-mouse.el: Drop spurious/oddly shaped events (bug#17378).
6147         (xterm-mouse--read-event-sequence-1000): Return nil if something
6148         looks fishy.
6149         (xterm-mouse-event): Propagate it.
6150         (xterm-mouse-translate-1): Handle it.
6152 2014-05-08  Stephen Berman  <stephen.berman@gmx.net>
6154         * calendar/todo-mode.el (todo-insert-item--apply-args): When all
6155         four slots of the parameter list are filled, make sure to pass it
6156         to the argument list of todo-insert-item--basic.
6158 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6160         * emacs-lisp/package.el (package-compute-transaction): Topological sort.
6161         Add optional `seen' argument to detect and break infinite loops.
6163 2014-05-08  Eli Zaretskii  <eliz@gnu.org>
6165         * emacs-lisp/find-gc.el (find-gc-unsafe, find-unsafe-funcs)
6166         (trace-unsafe, trace-use-tree): Make parentheses style be
6167         according to Emacs style.
6169 2014-05-08  Michael Albinus  <michael.albinus@gmx.de>
6171         * net/tramp-sh.el (tramp-remote-process-environment):
6172         Remove HISTFILE and HISTSIZE; it's too late to set them here.
6173         Add :version entry.
6174         (tramp-open-shell): Do not let-bind `tramp-end-of-output'.
6175         Add "HISTFILE=/dev/null" to the shell's env arguments.  Do not send
6176         extra "PSx=..." commands.
6177         (tramp-maybe-open-connection): Setenv HISTFILE to /dev/null.
6178         (Bug#17295)
6180         (tramp-uudecode): Replace the hard-coded temporary file name by a
6181         format specifier.
6182         (tramp-remote-coding-commands): Enhance docstring.
6183         (tramp-find-inline-encoding): Replace "%t" by a temporary file
6184         name.  (Bug#17415)
6185         This is CVE-2014-3424.
6187 2014-05-08  Glenn Morris  <rgm@gnu.org>
6189         * emacs-lisp/find-gc.el (find-gc-source-directory): Give it a value.
6190         (find-gc-source-files): Update some names.
6191         (trace-call-tree): Simplify and update.
6192         Avoid predictable temp-file names.  (http://bugs.debian.org/747100)
6193         This is CVE-2014-3422.
6195 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6197         * minibuffer.el (completion--try-word-completion): Revert fix for
6198         Bug#15980 (bug#17375).
6200         * xt-mouse.el (xterm-mouse--read-event-sequence-1000): (bug#17378)
6201         Always store button numbers in the same way in xterm-mouse-last;
6202         Don't burp is xterm-mouse-last is not set as expected.
6203         Never return negative indices.
6205 2014-05-08  Dmitry Gutov  <dgutov@yandex.ru>
6207         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
6208         Backtrack one char if the global/char-literal var matcher hits
6209         inside a string.  The next char could be the beginning of an
6210         expression expansion.
6212 2014-05-08  Glenn Morris  <rgm@gnu.org>
6214         * help-fns.el (describe-function-1): Test for an autoload before a
6215         macro, since `macrop' works on autoloads.  (Bug#17410)
6217 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6219         * electric.el (electric-indent-functions-without-reindent): Add yaml.
6221         * minibuffer.el (completion-table-with-quoting) <completion--unquote>:
6222         Make sure the new point we return is within the new string (bug#17239).
6224 2014-05-05  Daniel Colascione  <dancol@dancol.org>
6226         * progmodes/compile.el (compilation-error-regexp-alist-alist):
6227         Port `gnu' pattern to rx.
6229 2014-05-05  Jarek Czekalski  <jarekczek@poczta.onet.pl>
6231         Remove unneeded prompt when closing a buffer with active
6232         emacsclient ("Buffer ... still has clients"), #16548.
6233         * server.el (server-start): Remove the only call to:
6234         (server-kill-buffer-query-function): Remove.
6236 2014-05-04  Leo Liu  <sdl.web@gmail.com>
6238         * calendar/diary-lib.el (calendar-chinese-month-name-array):
6239         Defvar to pacify compiler.
6241 2014-05-04  Eli Zaretskii  <eliz@gnu.org>
6243         * mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
6245 2014-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
6247         * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
6248         Use nil rather than `default' for the "default" appearance (bug#17388).
6249         * vc/ediff-util.el (ediff-inferior-compare-regions)
6250         (ediff-toggle-autorefine, ediff-unselect-difference): Don't use
6251         a misleading `default' value when it's really a boolean.
6252         * vc/ediff-init.el (ediff-set-overlay-face): Don't set help-echo if the
6253         overlay is not visible.
6255 2014-05-04  Stephen Berman  <stephen.berman@gmx.net>
6257         * calendar/todo-mode.el (todo-edit-file): Use display-warning.
6258         (todo-menu): Uncomment and update.
6260 2014-05-04  Stephen Berman  <stephen.berman@gmx.net>
6262         * calendar/todo-mode.el: Reimplement item editing to have the same
6263         basic user interface as item insertion, and make small UI and
6264         larger internal improvements to the latter.
6265         (todo-insert-item): Add reference to the Todo mode user manual to
6266         the documentation string.
6267         (todo-insert-item--basic): Rename from todo-basic-insert-item and
6268         adjust all callers.  Change signature to combine diary and
6269         nonmarking arguments.  Incorporate functionality of deleted item
6270         copying command and add error checking.  Remove detailed
6271         descriptions of the arguments from the documentation string, since
6272         this is treated in the Todo mode user manual.
6273         (todo-copy-item, todo-edit-multiline-item)
6274         (todo-edit-done-item-comment, todo-edit-item-header)
6275         (todo-edit-item-time, todo-edit-item-date-from-calendar)
6276         (todo-edit-item-date-to-today, todo-edit-item-date-day-name)
6277         (todo-edit-item-date-year, todo-edit-item-date-month)
6278         (todo-edit-item-date-day, todo-edit-item-diary-nonmarking):
6279         Remove.
6280         (todo-edit-item): Reimplement as wrapper command for
6281         todo-edit-item--next-key and make it distinguish done and not done
6282         todo items.
6283         (todo-edit-item--text): New function, replacing old command
6284         todo-edit-item and incorporating deleted commands
6285         todo-edit-multiline-item and todo-edit-done-item-comment.
6286         (todo-edit-item--header): Rename from todo-basic-edit-item-header.
6287         Use only numeric value of prefix argument.  Remove detailed
6288         descriptions of the arguments from the documentation string, since
6289         this is treated in the Todo mode user manual.
6290         (todo-edit-item--diary-inclusion): New function, replacing old
6291         command todo-edit-item-diary-inclusion and incorporating and fixing
6292         functionality of deleted command todo-edit-item-diary-nonmarking,
6293         making sure to remove todo-nondiary-marker when adding
6294         diary-nonmarking-symbol.
6295         (todo-edit-category-diary-inclusion): Make sure to delete
6296         diary-nonmarking-symbol when adding todo-nondiary-marker.
6297         (todo-edit-category-diary-nonmarking): Fix indentation.
6298         (todo-insert-item--parameters): Group diary and nonmarking
6299         parameters together.
6300         (todo-insert-item--apply-args): Adjust to signature of
6301         todo-insert-item--basic and incorporate copy parameter.
6302         Make small code improvements.
6303         (todo-insert-item--next-param): Improve prompt and adjust it to
6304         new parameter grouping.  Remove obsolete code.
6305         (todo-edit-item--param-key-alist)
6306         (todo-edit-item--date-param-key-alist)
6307         (todo-edit-done-item--param-key-alist): New defconsts.
6308         (todo-edit-item--prompt): New variable.
6309         (todo-edit-item--next-key): New function.
6310         (todo-key-bindings-t): Bind "e" to todo-edit-item.
6311         Remove bindings of deleted commands.
6313 2014-05-04  Leo Liu  <sdl.web@gmail.com>
6315         * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
6317 2014-05-04  Glenn Morris  <rgm@gnu.org>
6319         * allout-widgets.el (allout-widgets-tally)
6320         (allout-decorate-item-guides):
6321         * menu-bar.el (menu-bar-positive-p):
6322         * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
6323         * progmodes/gdb-mi.el (gdbmi-same-start, gdbmi-is-number):
6324         * progmodes/js.el (js--inside-param-list-p)
6325         (js--inside-dojo-class-list-p, js--forward-destructuring-spec):
6326         * progmodes/prolog.el (region-exists-p):
6327         * progmodes/verilog-mode.el (verilog-scan-cache-ok-p):
6328         * textmodes/reftex-parse.el (reftex-using-biblatex-p):
6329         Doc fixes (replace `iff').
6331 2014-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
6333         * mpc.el (mpc-volume-mouse-set): Don't burp at the boundaries.
6335 2014-05-04  Leo Liu  <sdl.web@gmail.com>
6337         Support Chinese diary entries in calendar and diary.  (Bug#17393)
6338         * calendar/cal-china.el (calendar-chinese-month-name-array): New var.
6339         (calendar-chinese-from-absolute-for-diary)
6340         (calendar-chinese-to-absolute-for-diary)
6341         (calendar-chinese-mark-date-pattern, diary-chinese-mark-entries)
6342         (diary-chinese-list-entries): New functions to list and mark
6343         Chinese diary entries in the calendar window.
6344         (diary-chinese-anniversary)
6345         (diary-chinese-insert-anniversary-entry)
6346         (diary-chinese-insert-entry, diary-chinese-insert-monthly-entry)
6347         (diary-chinese-insert-yearly-entry): New commands to insert
6348         Chinese diary entries.
6350         * calendar/diary-lib.el (diary-font-lock-keywords):
6351         Support font-locking Chinese dates.
6353         * calendar/cal-menu.el (cal-menu-diary-menu): Add entries for
6354         inserting Chinese diary entries.
6356         * calendar/calendar.el (diary-chinese-entry-symbol):
6357         New customizable variable.
6358         (calendar-mode-map): Add bindings for inserting Chinese diary
6359         entries.
6361 2014-05-03  Juri Linkov  <juri@jurta.org>
6363         * dired.el (dired-check-switches, dired-switches-recursive-p):
6364         New functions.  (Bug#17218)
6365         (dired-switches-escape-p, dired-move-to-end-of-filename):
6366         Use `dired-check-switches'.
6367         (dired-insert-old-subdirs, dired-build-subdir-alist)
6368         (dired-sort-R-check): Use `dired-switches-recursive-p'.
6370 2014-05-01  Barry O'Reilly  <gundaetiapo@gmail.com>
6372         * simple.el (undo-make-selective-list): New algorithm fixes
6373         incorrectness of position adjustments when undoing in region.
6374         (Bug#17235)
6375         (undo-elt-crosses-region): Make obsolete.
6376         (undo-adjust-elt, undo-adjust-beg-end, undo-adjust-pos):
6377         New functions to adjust positions using undo-deltas.
6379 2014-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6381         * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): Only highlight past
6382         the last consecutive closing paren (bug#17345).
6384 2014-04-30  Reuben Thomas  <rrt@sc3d.org>
6386         * dired.el (dired-mode): make terminology for eXpunge command
6387         consistent.  (Bug#17276)
6389 2014-04-30  Eli Zaretskii  <eliz@gnu.org>
6391         * dired.el (dired-initial-position-hook, dired-initial-position):
6392         Doc string fixes.
6394 2014-04-30  Glenn Morris  <rgm@gnu.org>
6396         * mail/rmail.el (rmail-quit): Handle killed summaries.  (Bug#17283)
6398 2014-04-30  Matthias Dahl  <matthias.dahl@binary-island.eu>
6400         * faces.el (face-spec-recalc): Apply X resources only after the
6401         defface spec has been applied. Thus, X resources are no longer
6402         overriden by the defface spec which also fixes issues on win32 where
6403         the toolbar coloring was wrong because it is set through X resources
6404         and was (wrongfully) overriden.  (Bug#16694)
6406 2014-04-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6408         * textmodes/rst.el (electric-pair-pairs): Declare.
6409         (rst-mode): Set it (bug#17131).
6411 2014-04-30  Juri Linkov  <juri@jurta.org>
6413         * desktop.el (desktop-value-to-string): Let-bind `print-length'
6414         and `print-level' to nil.  (Bug#17351)
6416 2014-04-30  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
6418         * battery.el (battery-update): Handle the case where battery
6419         status is "N/A" (bug#17319).
6421 2014-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
6423         * progmodes/ps-mode.el: Use SMIE.  Move string and comment recognition
6424         to syntax-propertize.
6425         (ps-mode-auto-indent): Mark as obsolete.
6426         (ps-mode-font-lock-keywords-1): Remove string-or-comment handling.
6427         (ps-mode-font-lock-keywords-3): Use symbol regexp operators instead of
6428         word regexp operators.
6429         (ps-mode-map): Move initialization into declaration.  Remove binding
6430         for TAB, RET, >, ], and }.
6431         (ps-mode-syntax-table): Move initialization into declaration.
6432         Don't give word syntax to non-word chars.
6433         (ps-run-mode-map): Move initialization into declaration.
6434         (ps-mode-menu-main): Remove auto-indent entry.
6435         (ps-mode-smie-rules): New function.
6436         (ps-mode): Setup smie, syntax-propertize, and electric-indent-mode.
6437         (ps-mode-looking-at-nested, ps-mode-match-string-or-comment): Remove.
6438         (ps-mode--string-syntax-table): New const.
6439         (ps-mode--syntax-propertize-special, ps-mode-syntax-propertize):
6440         New functions.
6441         (ps-mode-newline, ps-mode-tabkey, ps-mode-r-brace, ps-mode-r-angle)
6442         (ps-mode-r-gt, ps-mode-r-balance): Remove functions.
6444 2014-04-27  Daniel Colascione  <dancol@dancol.org>
6446         * term/xterm.el (xterm-paste): Use large finite timeout when
6447         reading event to avoid putting keys in this-command-keys.
6449 2014-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6451         * progmodes/perl-mode.el (perl--syntax-exp-intro-regexp): New var.
6452         (perl-syntax-propertize-function): Use it.  Extend handling of
6453         here-docs to the unquoted case.
6455 2014-04-25  Eli Zaretskii  <eliz@gnu.org>
6457         * tooltip.el (tooltip-show-help-non-mode, tooltip-show-help):
6458         Use equal-including-properties to compare help-echo strings (bug#17331).
6460 2014-04-25  Leo Liu  <sdl.web@gmail.com>
6462         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
6463         Fix syntax for @.  (Bug#17325)
6465 2014-04-25  Daniel Colascione  <dancol@dancol.org>
6467         * emacs-lisp/cl.el (gv): Require gv early to break eager
6468         macro-expansion cycles.
6470 2014-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6472         * simple.el (region-active-p): Check there's a mark (bug#17324).
6474         * simple.el (completion-list-mode-map): Use choose-completion for the
6475         mouse binding as well (bug#17302).
6476         (completion-list-mode, completion-setup-function): Adjust docstring and
6477         echo area message accordingly.
6478         * progmodes/idlwave.el (idlwave-choose-completion): Adjust to new
6479         calling convention of choose-completion.
6480         * comint.el (comint-dynamic-list-completions):
6481         * term.el (term-dynamic-list-completions): Accept choose-completion.
6483         * progmodes/perl-mode.el (perl-syntax-propertize-function): Slash after
6484         &, |, +, - and * can't be a division (bug#17317).
6486         * term/xterm.el (xterm--version-handler): Don't use modern xterm
6487         features on gnome-terminal (bug#16988).
6489 2014-04-25  Thien-Thi Nguyen  <ttn@gnu.org>
6491         Improve Scheme font-locking for (define ((foo ...) ...) ...).
6493         * progmodes/scheme.el (scheme-font-lock-keywords-1): To find
6494         the declared object, ignore zero or more parens, not zero or one.
6496 2014-04-24  Leo Liu  <sdl.web@gmail.com>
6498         * progmodes/xscheme.el (xscheme-expressions-ring)
6499         (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
6500         (xscheme-control-g-disabled-p, xscheme-process-filter-state)
6501         (xscheme-allow-output-p, xscheme-prompt)
6502         (xscheme-string-accumulator, xscheme-mode-string): Use defvar-local.
6504         * progmodes/scheme.el (would-be-symbol, next-sexp-as-string):
6505         Comment out unused functions.
6507 2014-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6509         * info.el: Use lexical-binding and cl-lib.
6510         Use defvar-local and setq-local instead of make-local-variable.
6511         (Info-apropos-matches): Avoid add-to-list.
6512         (Info-edit-mode-map): Fix obsolescence call to Info-edit-map.
6514 2014-04-24  Daniel Colascione  <dancol@dancol.org>
6516         * progmodes/sh-script.el (sh-builtins): Add coproc to list of bash builtins.
6518 2014-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
6520         * emacs-lisp/cl-macs.el (cl--loop-let): Fix last merge.
6522 2014-04-22  Michael Heerdegen  <michael_heerdegen@web.de>
6524         * dired.el (dired-insert-set-properties): Do not consider
6525         subdirectory headings and empty lines to be information that
6526         `dired-hide-details-mode' should hide.  (Bug#17228)
6528 2014-04-22  Michael Albinus  <michael.albinus@gmx.de>
6530         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
6531         Remove test messages.
6532         (tramp-do-copy-or-rename-file-out-of-band): Do not quote `source'
6533         and `target' twice.
6535 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6537         * dframe.el (dframe-get-focus): Remove `hook' argument (bug#17311).
6538         * speedbar.el (speedbar-get-focus): Run the "hook" afterwards instead.
6540         * emacs-lisp/cl-macs.el (cl--loop-let): Avoid `nil' as var name.
6542 2014-04-22  Michael Albinus  <michael.albinus@gmx.de>
6544         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
6545         Set "IFS=" when using read builtin, in order to preserve spaces in
6546         the file name.  Add test messages for hunting a bug on hydra.
6547         (tramp-get-ls-command): Undo using "-b" argument.  It doesn't help.
6549 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6551         * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
6552         Don't prettify a word within a symbol.
6554 2014-04-22  Michael Albinus  <michael.albinus@gmx.de>
6556         * net/tramp-sh.el (tramp-get-ls-command): Use "-b" argument if
6557         possible.
6559 2014-04-22  Daniel Colascione  <dancol@dancol.org>
6561         * emacs-lisp/byte-run.el (function-put): Unbreak build: don't
6562         use defun to define `function-put'.
6564 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6566         * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): New function.
6567         (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords-2): Use it.
6568         (lisp-mode-variables): Set font-lock-extra-managed-props.
6570         * emacs-lisp/byte-run.el (function-put): New function.
6571         (defun-declarations-alist): Use it.  Add `pure' and `side-effect-free'.
6572         * emacs-lisp/cl-macs.el (cl-defstruct, cl-struct-sequence-type)
6573         (cl-struct-slot-info, cl-struct-slot-offset, cl-struct-slot-value):
6574         Use them.
6576 2014-04-22  Daniel Colascione  <dancol@dancol.org>
6578         * emacs-lisp/macroexp.el (internal-macroexpand-for-load):
6579         Add `full-p' parameter; when nil, call `macroexpand' instead of
6580         `macroexpand-all'.
6582         * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
6583         Improve docstrings.
6585         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
6586         Use lambda function values, not quoted lambdas.
6587         (byte-compile-recurse-toplevel): Remove extraneous &optional.
6589         * emacs-lisp/cl-macs.el
6590         (cl-struct-sequence-type, cl-struct-slot-info): Declare pure.
6591         (cl-struct-slot-value): Conditionally use aref or nth so that the
6592         compiler produces optimal code.
6594 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6596         * emacs-lisp/cl-macs.el (cl-struct-slot-offset): Mark as pure.
6597         (inline): Don't inline cl--set-elt.
6598         (cl-struct-slot-value): Remove explicit gv-setter and compiler-macro.
6599         Define as inlinable instead.
6600         (cl-struct-set-slot-value): Remove.
6602         * emacs-lisp/cl-lib.el (cl--set-elt): Remove.
6603         * emacs-lisp/cl-seq.el (cl-replace, cl-substitute, cl-nsubstitute):
6604         Use setf instead.
6606 2014-04-21  Daniel Colascione  <dancol@dancol.org>
6608         * emacs-lisp/cl-macs.el (cl--const-expr-val): We didn't need the
6609         last two parameters after all.
6610         (cl--expr-contains,cl--compiler-macro-typep,cl--compiler-macro-member)
6611         (cl--compiler-macro-assoc,cl-struct-slot-value)
6612         (cl-struct-set-slot-value): Stop using them.
6614 (2014-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6616         * image-mode.el (image-mode-window-put): Don't assume there's a `t'
6617         entry in image-mode-winprops-alist.
6619 2014-04-21  Daniel Colascione  <dancol@dancol.org>
6621         * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): New function.
6622         (byte-compile-recurse-toplevel, byte-compile-initial-macro-environment)
6623         (byte-compile-toplevel-file-form): Use it.
6625         * emacs-lisp/cl-macs.el:
6626         (cl--loop-let): Properly destructure `while' clauses.
6628 2014-04-20  Daniel Colascione  <dancol@dancol.org>
6630         * vc/vc.el (vc-root-dir): New public autoloaded function for
6631         generically finding the current VC root.
6632         * vc/vc-hooks.el (vc-not-supported): New error.
6633         (vc-call-backend): Signal `vc-not-supported' instead of generic error.
6635 2014-04-20  Daniel Colascione  <dancol@dancol.org>
6637         * emacs-lisp/cl-macs.el (cl-the): Make `cl-the' assert its type
6638         argument.
6639         (cl--const-expr-val): cl--const-expr-val should macroexpand its
6640         argument in case we're inside a symbol-macrolet.
6641         (cl--do-arglist, cl--compiler-macro-typep)
6642         (cl--compiler-macro-member, cl--compiler-macro-assoc): Pass macro
6643         environment to `cl--const-expr-val'.
6644         (cl-struct-sequence-type,cl-struct-slot-info)
6645         (cl-struct-slot-offset, cl-struct-slot-value)
6646         (cl-struct-set-slot-value): New functions.
6648 2014-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
6650         * progmodes/sh-script.el (sh-smie--sh-keyword-p): Handle variable
6651         assignments such as "case=hello" (bug#17297).
6653 2014-04-18  Michael Albinus  <michael.albinus@gmx.de>
6655         * net/tramp.el (tramp-run-real-handler, tramp-file-name-handler):
6656         Do not autoload.
6657         (tramp-file-name-handler, tramp-completion-file-name-handler):
6658         Revert patch from 2014-04-10, it isn't necessary anymore.
6659         (tramp-autoload-file-name-handler)
6660         (tramp-register-autoload-file-name-handlers): New defuns.
6661         (top): Autoload call of `tramp-register-autoload-file-name-handlers'.
6662         (tramp-register-file-name-handlers): Remove also
6663         `tramp-autoload-file-name-handler' from `file-name-handler-list'.
6664         Do not autoload its invocation, but eval it after loading of 'tramp.
6666         * net/tramp-adb.el (tramp-unload-hook): Unload `tramp-adb'.
6668         * net/tramp-compat.el (tramp-unload-hook): Unload `tramp-loaddefs'.
6670 2014-04-17  Daniel Colascione  <dancol@dancol.org>
6672         Add support for bracketed paste mode; add infrastructure for
6673         managing terminal mode enabling and disabling automatically.
6675         * xt-mouse.el:
6676         (xterm-mouse-mode): Simplify.
6677         (xterm-mouse-tracking-enable-sequence)
6678         (xterm-mouse-tracking-disable-sequence): New constants.
6679         (turn-on-xterm-mouse-tracking-on-terminal)
6680         (turn-off-xterm-mouse-tracking-on-terminal):
6681         Use tty-mode-set-strings and tty-mode-reset-strings terminal
6682         parameters instead of random hooks.
6683         (turn-on-xterm-mouse-tracking)
6684         (turn-off-xterm-mouse-tracking): Delete.
6686         * term/xterm.el (xterm-extra-capabilities): Fix bitrotted comment.
6687         (xterm-paste-ending-sequence): New constant.
6688         (xterm-paste): New command used for bracketed paste support.
6690         (xterm-modify-other-keys-terminal-list): Delete obsolete variable.
6691         (terminal-init-xterm-bracketed-paste-mode): New function.
6692         (terminal-init-xterm): Call it.
6693         (terminal-init-xterm-modify-other-keys): Use tty-mode-set-strings
6694         and tty-mode-reset-strings instead of random hooks.
6695         (xterm-turn-on-modify-other-keys)
6696         (xterm-turn-off-modify-other-keys)
6697         (xterm-remove-modify-other-keys): Delete obsolete functions.
6699         * term/screen.el: Rewrite to just use the xterm code.
6700         Add copyright notice.  Mention tmux.
6702 2014-04-17  Ian D  <dunni@gnu.org>  (tiny change)
6704         * image-mode.el (image-mode-window-put): Also update the property of
6705         the "default window".
6706         * doc-view.el (doc-view-new-window-function): If no window
6707         exists, move to the last known page.
6709 2014-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6711         * progmodes/perl-mode.el (perl-calculate-indent): Don't auto-indent in
6712         here-documents (bug#17262).
6714 2014-04-16  Eli Zaretskii  <eliz@gnu.org>
6716         * term/pc-win.el (x-list-fonts, x-get-selection-value):
6717         Provide doc strings, as required by snarf-documentation.
6719 2014-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6721         * ps-def.el (ps-generate-postscript-with-faces1): Use the new `sorted'
6722         arg of overlays-at.  Use `invisible-p'.
6724         * obsolete/lucid.el (extent-at):
6725         * htmlfontify.el (hfy-overlay-props-at): Use the new `sorted' arg of
6726         overlays-at.
6727         (hfy-fontify-buffer): Remove unused var `orig-ovls'.
6729 2014-04-16  João Távora  <joaotavora@gmail.com>
6731         * net/shr.el (shr-expand-url): Use `expand-file-name' for relative
6732         links.  (Bug#17217).
6734 2014-04-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
6736         * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
6737         Use mapc to loop over a vector.  (Bug#17257).
6739 2014-04-16  Michael Albinus  <michael.albinus@gmx.de>
6741         * net/tramp-sh.el (tramp-sh-handle-file-truename): Revert previous
6742         patch, there are new problems with file names containing spaces.
6743         Get rid of backticks.  (Bug#17238)
6745 2014-04-16  João Távora  <joaotavora@gmail.com>
6747         * elec-pair.el (electric-pair--syntax-ppss): Simplify and fix
6748         possible bug.
6750 2014-04-16  Eli Zaretskii  <eliz@gnu.org>
6752         * frame.el (blink-cursor-blinks, blink-cursor-blinks-done): Doc fixes.
6753         (blink-cursor-mode): Mention customization variables and the
6754         effect of 'blink-cursor-blinks'.
6756 2014-04-16  Barry O'Reilly  <gundaetiapo@gmail.com>
6758         * simple.el (undo): Prevent insertion of identity mapping into
6759         undo-equiv-table so as undo-only does not inf loop in the presence
6760         of consecutive nils in undo list.
6762 2014-04-16  Matthias Dahl  <matthias.dahl@binary-island.eu>
6764         * faces.el (make-face): Deprecate optional argument as it is no
6765         longer needed/used since the conditional X resources handling
6766         has been pushed down to make-face-x-resource-internal itself.
6767         (make-empty-face): Don't pass optional argument to make-face.
6769 2014-04-16  Karl Fogel  <kfogel@red-bean.com>
6771         * savehist.el (savehist-save): Remove workaround for a read-passwd
6772         bug that was fixed before 24.3.  Thanks to Juanma Barranquero for
6773         noticing that the shim was still present.
6775 2014-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
6777         * doc-view.el (doc-view-set-doc-type): Ignore file name case; add .pps.
6779 2014-04-14  Juanma Barranquero  <lekktu@gmail.com>
6781         * faces.el (face-set-after-frame-default): Remove unused local variable.
6783 2014-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
6785         * progmodes/grep.el: Use lexical-binding.
6786         (grep-expand-template): Pass explicit lexical env to `eval'.
6787         (zrgrep): Let-bind grep-find-template explicitly.
6789         * emacs-lisp/cl-lib.el (current-case-table): Remove setter.
6790         * leim/quail/sisheng.el (sisheng-list): Use with-case-table.
6792 2014-04-12  Eli Zaretskii  <eliz@gnu.org>
6794         * international/characters.el <standard-case-table>: Add entries
6795         for letters from the Coptic block u+2C80-u+2CFF.  (Bug#17243)
6796         Set category of Coptic characters be 'g' (Greek).
6798 2014-04-12  Leo Liu  <sdl.web@gmail.com>
6800         * progmodes/octave.el (completion-table-with-cache):
6801         Define if not available.
6802         (octave-goto-function-definition, octave-sync-function-file-names)
6803         (octave-find-definition-default-filename):
6804         Backquote upattern for compatibility.
6806 2014-04-12  Michael Albinus  <michael.albinus@gmx.de>
6808         * net/tramp-sh.el (tramp-sh-handle-file-truename): Quote the file
6809         name twice due to backticks.  (Bug#17238)
6811 2014-04-12  Glenn Morris  <rgm@gnu.org>
6813         * term/w32-win.el (x-win-suspend-error):
6814         * term/x-win.el (x-win-suspend-error): Sync docs.
6816 2014-04-12  Matthias Dahl  <matthias.dahl@binary-island.eu>
6818         * faces.el (make-face): Remove deprecated optional argument.
6819         The conditional application of X resources is handled directly by
6820         make-face-x-resource-internal since Emacs 24.4.
6821         (make-empty-face): Don't pass optional argument to make-face.
6823 2014-04-11  Glenn Morris  <rgm@gnu.org>
6825         * Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport.  (Bug#16429)
6827 2014-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6829         Ediff's overlay priorities cause more trouble than they solve.
6830         * vc/ediff-init.el (ediff-shadow-overlay-priority): Remove variable.
6831         (ediff-highest-priority): Remove function (bug#17234).
6832         * vc/ediff-util.el (ediff-highlight-diff-in-one-buffer):
6833         * vc/ediff-diff.el (ediff-set-diff-overlays-in-one-buffer)
6834         (ediff-set-fine-diff-properties-in-one-buffer): Don't mess with
6835         overlay priorities.
6837 2014-04-11  Feng Li  <fengli@gmail.com>  (tiny change)
6839         * progmodes/pascal.el (pascal-font-lock-keywords): Fix incorrect format
6840         entry; use symbol boundaries to avoid mis-matches.
6842 2014-04-11  Michael Albinus  <michael.albinus@gmx.de>
6844         * net/tramp.el (tramp-file-name-handler)
6845         (tramp-completion-file-name-handler): Avoid recursive loading.
6847         * net/tramp-sh.el (tramp-make-copy-program-file-name):
6848         Quote result also locally.
6850 2014-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
6852         * emulation/cua-base.el (<toplevel>, cua--pre-command-handler-1):
6853         Remove left-over code.
6855         * newcomment.el (comment-indent-new-line): Sink code where it's used.
6856         Reuse the previous comment's indentation unconditionally if it's on its
6857         own line.
6859 2014-04-09  Daniel Colascione  <dancol@dancol.org>
6861         * emacs-lisp/lisp.el (backward-up-list): Add `escape-strings',
6862         `no-syntax-crossing' arguments.  Forward to `up-list'.
6863         (up-list): Add `escape-strings', `no-syntax-crossing' arguments.
6864         Implement logic for escaping from strings.  Use narrowing to deal
6865         with corner cases.
6867 2014-04-09  Leo Liu  <sdl.web@gmail.com>
6869         * net/rcirc.el (rcirc-connection-info): New variable.
6870         (rcirc-connect): Use it to store connection info.
6871         (rcirc-buffer-process): Avoid get-buffer-process which returns nil
6872         for killed process.
6873         (rcirc-cmd-reconnect): New command.  (Bug#17045)
6874         (rcirc-mode, set-rcirc-encode-coding-system)
6875         (set-rcirc-decode-coding-system, rcirc-connect): Use setq-local.
6877 2014-04-09  Daniel Colascione  <dancol@dancol.org>
6879         * emacs-lisp/cl-indent.el: Add comment claiming
6880         facility is also good for elisp.
6881         (lisp-indent-find-method): New function.
6882         (common-lisp-indent-function): Recognize cl-loop.
6883         (common-lisp-indent-function-1): Recognize cl constructs; use
6884         `lisp-indent-find-method' instead of `get' directly.
6885         (if): Use else-body style for elisp.
6887 2014-04-09  Dmitry Gutov  <dgutov@yandex.ru>
6889         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
6890         Module methods.  (Bug#17216)
6892 2014-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6894         * help.el (describe-bindings): Fix buffer handling (bug#17210).
6895         (describe-bindings-internal): Mark obsolete.
6897 2014-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6899         * subr.el (with-silent-modifications): Don't bind deactivate-mark,
6900         buffer-file-name, and buffer-file-truename any more.
6902 2014-04-08  Leo Liu  <sdl.web@gmail.com>
6904         Use lexical-binding and require cl-lib.
6905         * net/rcirc.el (rcirc, rcirc-handler-ctcp-KEEPALIVE)
6906         (rcirc-handler-generic, rcirc-fill-paragraph)
6907         (rcirc-format-response-string, rcirc-target-buffer)
6908         (rcirc-last-line, rcirc-record-activity, rcirc-split-activity)
6909         (rcirc-activity-string, rcirc-make-trees, rcirc-cmd-ctcp)
6910         (rcirc-ctcp-sender-PING, rcirc-browse-url)
6911         (rcirc-markup-timestamp, rcirc-markup-attributes)
6912         (rcirc-markup-my-nick, rcirc-markup-urls)
6913         (rcirc-markup-bright-nicks, rcirc-markup-fill)
6914         (rcirc-check-auth-status, rcirc-handler-WALLOPS)
6915         (rcirc-handler-JOIN, rcirc-handler-PART-or-KICK)
6916         (rcirc-handler-PART, rcirc-handler-KICK, rcirc-handler-QUIT)
6917         (rcirc-handler-NICK, rcirc-handler-PING, rcirc-handler-PONG)
6918         (rcirc-handler-TOPIC, rcirc-handler-301, rcirc-handler-317)
6919         (rcirc-handler-332, rcirc-handler-333, rcirc-handler-477)
6920         (rcirc-handler-MODE, rcirc-handler-353, rcirc-handler-366)
6921         (rcirc-authenticate, rcirc-handler-INVITE, rcirc-handler-ERROR)
6922         (rcirc-handler-ctcp-VERSION, rcirc-handler-ctcp-TIME)
6923         (rcirc-handler-CTCP-response): Fix unused arguments warnings and
6924         use cl-lib.
6926 2014-04-07  João Távora  <joaotavora@gmail.com>
6928         * elec-pair.el (electric-pair--syntax-ppss):
6929         When inside comments parse from comment beginning.
6930         (electric-pair--balance-info): Fix typo in comment.
6931         (electric-pair--in-unterminated-string-p): Delete.
6932         (electric-pair--unbalanced-strings-p): New function.
6933         (electric-pair-string-bound-function): New var.
6934         (electric-pair-inhibit-if-helps-balance): Decide quote pairing
6935         according to `electric-pair--in-unterminated-string-p'
6937         * elec-pair.el (electric-pair-inhibit-if-helps-balance):
6938         Inhibit quote pairing if point-max is inside an unterminated string.
6939         (electric-pair--looking-at-unterminated-string-p): Delete.
6940         (electric-pair--in-unterminated-string-p): New function.
6942 2014-04-07  Glenn Morris  <rgm@gnu.org>
6944         * shell.el (shell-directory-tracker):
6945         Go back to just ignoring failures.  (Bug#17159)
6947 2014-04-07  João Távora  <joaotavora@gmail.com>
6949         Fix `electric-pair-delete-adjacent-pairs' in modes binding
6950         backspace. (bug#16981)
6951         * elec-pair.el (electric-pair-backward-delete-char): Delete.
6952         (electric-pair-backward-delete-char-untabify): Delete.
6953         (electric-pair-mode-map): Bind backspace to a menu item filtering
6954         a new `electric-pair-delete-pair' command.
6955         (electric-pair-delete-pair): New command.
6957         * progmodes/python.el (python-electric-pair-string-delimiter):
6958         Fix triple-quoting electricity.  (Bug#17192)
6960         * elec-pair.el (electric-pair-post-self-insert-function):
6961         Don't skip whitespace when `electric-pair-text-pairs' and
6962         `electric-pair-pairs' were used. syntax to
6963         electric-pair--skip-whitespace.  (Bug#17183)
6965 2014-04-07  Eli Zaretskii  <eliz@gnu.org>
6967         * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for
6968         "<F>".  (Bug#17199)
6970 2014-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
6972         * mpc.el (mpc--status-timer-run): Disable timer if not displayed.
6973         (mpc--status-idle-timer-run): Use mpc--status-timer-run.
6975 2014-04-07  Glenn Morris  <rgm@gnu.org>
6977         * help.el (view-lossage): Doc tweak.
6979 2014-04-07  Matthias Dahl  <ml_emacs-lists@binary-island.eu>
6981         * faces.el (face-spec-recalc): Call make-face-x-resource-internal
6982         only when inhibit-x-resources is nil, and do that earlier in the
6983         function.  Doc fix.  (Bug#16694)
6984         (face-spec-choose): Accept additional optional argument, whose
6985         value is returned if no matching attributes are found.
6986         (face-spec-recalc): Use the new optional argument when calling
6987         face-spec-choose.  (Bug#16378)
6988         (make-face-x-resource-internal): Do nothing when
6989         inhibit-x-resources is non-nil.  Don't touch the default face if
6990         reversed video is given--as was done in previous versions of Emacs.
6991         (face-set-after-frame-default): Don't call
6992         make-face-x-resource-internal here.  (Bug#16434)
6994 2014-04-07  Tassilo Horn  <tsdh@gnu.org>
6996         * doc-view.el (doc-view-bookmark-jump):
6997         Use `bookmark-after-jump-hook' to jump to the right page after the
6998         buffer is shown in a window.  (bug#16090)
7000 2014-04-07  Eli Zaretskii  <eliz@gnu.org>
7002         * international/characters.el (mirroring): Fix last change:
7003         instead of loading uni-mirrored.el explicitly, do that implicitly
7004         by creating the 'mirroring' uniprop table.  This avoids announcing
7005         the loading of uni-mirrored.el.
7007 2014-04-07  Glenn Morris  <rgm@gnu.org>
7009         * files.el (buffer-stale--default-function)
7010         (buffer-stale-function, revert-buffer--default):
7011         * autorevert.el (auto-revert-buffers): Doc tweaks.
7013 2014-04-07  Eli Zaretskii  <eliz@gnu.org>
7015         * international/characters.el: Preload uni-mirrored.el.  (Bug#17169)
7017 2014-04-07  Glenn Morris  <rgm@gnu.org>
7019         * files.el (make-backup-file-name-function)
7020         (make-backup-file-name, make-backup-file-name--default-function)
7021         (make-backup-file-name-1, find-backup-file-name)
7022         (revert-buffer-function, revert-buffer-insert-file-contents-function)
7023         (buffer-stale--default-function, buffer-stale-function)
7024         (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p)
7025         (revert-buffer, revert-buffer--default)
7026         (revert-buffer-insert-file-contents--default-function):
7027         Doc fixes related to defaults no longer being nil.
7028         (make-backup-file-name-function): Bump :version.
7029         Restore nil as a valid but deprecated custom type.
7031 2014-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
7033         * progmodes/perl-mode.el (perl-syntax-propertize-function):
7034         Handle $' used as a variable (bug#17174).
7036         * progmodes/perl-mode.el (perl-indent-new-calculate):
7037         Handle forward-sexp failure (bug#16985).
7038         (perl-syntax-propertize-function): Add "foreach" and "for" statement
7039         modifiers introducing expressions (bug#17116).
7041 2014-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
7043         * dired-aux.el (dired-file-set-difference): Use lexical-scoping.
7045 2014-04-05  Leo Liu  <sdl.web@gmail.com>
7047         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
7048         Add define-compilation-mode.
7050 2014-04-04  João Távora  <joaotavora@gmail.com>
7052         * elec-pair.el (electric-pair--syntax-ppss): When inside comments
7053         parse from comment beginning.
7054         (electric-pair--balance-info): Fix typo in comment.
7055         (electric-pair--in-unterminated-string-p): Delete.
7056         (electric-pair--unbalanced-strings-p): New function.
7057         (electric-pair-string-bound-function): New var.
7058         (electric-pair-inhibit-if-helps-balance): Decide quote pairing
7059         according to `electric-pair--in-unterminated-string-p'.
7061 2014-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
7063         * textmodes/reftex-parse.el (reftex--index-tags): Rename `index-tags'.
7064         Move declaration before first use.
7065         (reftex-move-to-next-arg): Silence compiler warning.
7067 2014-04-04  Joost Kremers  <joostkremers@fastmail.fm>  (tiny change)
7069         * textmodes/reftex-toc.el (reftex-toc, reftex-re-enlarge):
7070         Use `window-total-width' instead of `window-width'.
7072 2014-04-03  Daniel Colascione  <dancol@dancol.org>
7074         * subr.el (set-transient-map): Remove rms's workaround entirely;
7075         use new `suspicious-object' subr to mark our lambda for closer
7076         scrutiny during gc.
7078 2014-04-02  Richard Stallman  <rms@gnu.org>
7080         * subr.el (set-transient-map): Comment out previous change.
7082 2014-04-02  Glenn Morris  <rgm@gnu.org>
7084         * menu-bar.el (menu-bar-file-menu):
7085         * vc/ediff.el (ediff-current-file):
7086         Update for revert-buffer-function no longer being nil by default.
7088         * simple.el (command-execute): Respect nil disabled-command-function.
7090 2014-04-02  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
7092         * simple.el (command-execute): Do not execute the command when it
7093         is disabled; fixes thinko in 2013-02-20 conversion from C.  (Bug#17151)
7095 2014-04-02  Juri Linkov  <juri@jurta.org>
7097         * dired-aux.el (dired-compress-file): Don't use string-match-p
7098         because its match data is used afterwards.
7100 2014-04-02  Stefan Monnier  <monnier@iro.umontreal.ca>
7102         * emacs-lisp/package.el (package-built-in-p): Treat a min-version of
7103         0 like nil.
7105 2014-04-02  João Távora  <joaotavora@gmail.com>
7107         * elec-pair.el (electric-pair-inhibit-if-helps-balance):
7108         Inhibit quote pairing if point-max is inside an unterminated string.
7109         (electric-pair--looking-at-unterminated-string-p):
7110         Delete.
7111         (electric-pair--in-unterminated-string-p): New function.
7113 2014-04-01  Daniel Colascione  <dancol@dancol.org>
7115         * minibuffer.el (minibuffer-complete): Prevent assertion failure
7116         when trying to complete the prompt.
7118 2014-03-31  Leo Liu  <sdl.web@gmail.com>
7120         * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
7121         Refactor out eldoc-documentation-function-default.
7122         (eldoc-documentation-function-default): New function.
7123         (eldoc-documentation-function): Change value.
7125 2014-03-31  Glenn Morris  <rgm@gnu.org>
7127         * simple.el (cycle-spacing--context, cycle-spacing): Doc tweaks.
7129         * progmodes/vhdl-mode.el (vhdl-speedbar-select-mra)
7130         (vhdl-compose-components-package, vhdl-compose-configuration):
7131         Abbreviate default-directory (missing from some previous upstream sync).
7133 2014-03-31  Reto Zimmermann  <reto@gnu.org>
7135         Sync with upstream vhdl mode v3.35.2.
7136         * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
7137         (top-level): No longer require assoc.
7138         (vhdl-asort, vhdl-anot-head-p, vhdl-aput, vhdl-adelete, vhdl-aget):
7139         New functions.  Use throughout to replace aget etc.
7140         (vhdl-aput-delete-if-nil): Rename from vhdl-aput.
7141         (vhdl-update-file-contents): Update for vhdl-aput-delete-if-nil rename.
7142         (vhdl-template-replace-header-keywords): Fix bug for "<title string>".
7143         (vhdl-compile-init): Do not initialize regexps for Emacs 22+.
7144         (vhdl-error-regexp-emacs-alist): Remove regexps from all compilers
7145         except `vhdl-compiler'.
7146         (vhdl-error-regexp-add-emacs): Remove all other compilers,
7147         when appropriate.
7149 2014-03-31  Glenn Morris  <rgm@gnu.org>
7151         * progmodes/vhdl-mode.el (vhdl-expand-abbrev, vhdl-expand-paren):
7152         Revert 2014-03-26 merge goof; go back to using defalias.
7154 2014-03-30  Daniel Colascione  <dancol@dancol.org>
7156         * comint.el (comint-send-input):
7157         Deactivate completion-in-region-mode before we send comint input.
7158         (Bug#17139).
7160         * simple.el (keyboard-quit): Deactivate completion-in-region-mode
7161         on keyboard-quit.
7163 2014-03-29  Glenn Morris  <rgm@gnu.org>
7165         * textmodes/reftex.el: Manage most autoloads automatically.
7166         * textmodes/reftex-auc.el, textmodes/reftex-cite.el:
7167         * textmodes/reftex-dcr.el, textmodes/reftex-global.el:
7168         * textmodes/reftex-index.el, textmodes/reftex-parse.el:
7169         * textmodes/reftex-ref.el, textmodes/reftex-sel.el:
7170         * textmodes/reftex-toc.el: Set generated-autoload-file,
7171         and add autoload cookies for reftex.el.
7172         * Makefile.in (AUTOGEN_VCS): Add textmodes/reftex.el.
7174 2014-03-28  Glenn Morris  <rgm@gnu.org>
7176         * cus-start.el (report-emacs-bug-address): Set custom properties.
7177         * mail/emacsbug.el (report-emacs-bug-address):
7178         Variable is now defined in emacs.c.
7180         * mail/emacsbug.el (report-emacs-bug):
7181         Include system-configuration-features.
7183 2014-03-28  Michal Nazarewicz  <mina86@mina86.com>
7185         * simple.el (cycle-spacing): Never delete spaces on first run by
7186         default, but do so in a new 'fast mode and if there are already
7187         N spaces (the previous behavior).
7188         Compare N with its value in previous invocation so that changing
7189         prefix argument restarts `cycle-spacing' sequence.
7190         The idea is that with this change, binding M-SPC to
7191         `cycle-spacing' should not introduce any changes in behavior of
7192         the binding so long as users do not type M-SPC twice in a raw with
7193         the same prefix argument or lack thereof.
7195 2014-03-28  Glenn Morris  <rgm@gnu.org>
7197         * faces.el (term-file-aliases): New variable.
7198         (tty-run-terminal-initialization): Respect term-file-aliases.
7199         * term/apollo.el, term/vt102.el, term/vt125.el, term/vt201.el:
7200         * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el:
7201         * term/vt400.el, term/vt420.el: Remove files, replaced by aliases.
7203 2014-03-27  Glenn Morris  <rgm@gnu.org>
7205         * startup.el (inhibit-startup-hooks): Doc tweak.
7206         (normal-top-level): Simplify running of hooks.
7207         For window-setup-hook, respect inhibit-startup-hooks.
7208         (command-line-1): Don't set window-setup-hook to nil.
7210         Allow selective autoloading from obsolete/ directory.
7211         * Makefile.in (obsolete-autoloads): New rule.
7212         (autoloads): Run obsolete-autoloads.
7213         * obsolete/iswitchb.el (iswitchb-mode): Use obsolete-autoload.
7214         * simple.el (iswitchb-mode): Remove hand-written autoloads.
7216 2014-03-27  Dmitry Gutov  <dgutov@yandex.ru>
7218         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
7219         Highlight special globals with font-lock-builtin-face.  (Bug#17057)
7221         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
7222         Don't propertize `?' or `!' as symbol constituent when after
7223         colon.  (Bug#17097)
7225 2014-03-27  Juanma Barranquero  <lekktu@gmail.com>
7227         * frameset.el (frameset--restore-frame): Remove workaround for bug#14795
7228         which is no longer needed and causes trouble in GTK builds (bug#17046).
7230         * emacs-lisp/package-x.el (package--archive-contents-from-url):
7231         Use url-insert-file-contents; package-handle-response no longer exists.
7233 2014-03-26  Daniel Colascione  <dancol@dancol.org>
7235         * simple.el (process-menu-mode-map): New variable.
7236         (process-menu-delete-process): New command.
7238 2014-03-26  Juanma Barranquero  <lekktu@gmail.com>
7240         * emacs-lisp/package.el: Fix bug#16733 (again).
7241         (url-http-parse-response, url-http-end-of-headers, url-recreate-url)
7242         (url-http-target-url): Remove unused declarations.
7243         (package-handle-response): Remove.
7244         (package--with-work-buffer): Use url-insert-file-contents and simplify.
7245         (package--download-one-archive): Use current-buffer instead of
7246         dynamic binding of `buffer'.
7247         (describe-package-1): Do not decode readme-string.
7249 2014-03-26  Michael Albinus  <michael.albinus@gmx.de>
7251         * net/tramp.el (tramp-methods, tramp-connection-timeout): Fix docstring.
7253         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Revert change
7254         from 2014-03-07, it decreases performance unnecessarily.  Let-bind
7255         `remote-file-name-inhibit-cache' to nil in the second pass.
7256         (tramp-find-executable): Do not call "which" on SunOS.
7257         (tramp-send-command-and-check): Fix docstring.
7258         (tramp-do-copy-or-rename-file-directly): In the `rename' case,
7259         check whether source directory has set the sticky bit.
7261 2014-03-26  Barry O'Reilly  <gundaetiapo@gmail.com>
7263         * simple.el (primitive-undo): Only process marker adjustments
7264         validated against their corresponding (TEXT . POS).  Issue warning
7265         for lone marker adjustments in undo history.  (Bug#16818)
7266         (undo-make-selective-list): Add marker adjustments to selective
7267         undo list based on whether their corresponding (TEXT . POS) is in
7268         the region.  Remove variable adjusted-markers, which was unused
7269         and only non nil during undo-make-selective-list.
7270         (undo-elt-in-region): Return nil when passed a marker adjustment
7271         and explain in function doc.
7273 2014-03-26  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
7275         * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
7277 2014-03-26  Dmitry Gutov  <dgutov@yandex.ru>
7279         * progmodes/ruby-mode.el (ruby-expression-expansion-re):
7280         Match special global variables without curlies, too.
7281         (ruby-font-lock-keywords): Simplify the matcher for special global
7282         variables.  Don't require a non-word character after the variable.
7283         (Bug#17057)
7285 2014-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
7287         * simple.el (redisplay-highlight-region-function): Increase priority of
7288         overlay to make sure boundaries are visible (bug#15899).
7290 2014-03-26  Juanma Barranquero  <lekktu@gmail.com>
7292         * frameset.el (frameset--initial-params): Fix typo in parameter name.
7293         (frameset-restore): Compare display strings with equal.
7295         * frame.el (make-frame): Don't quote display name in error message,
7296         it is already a string.
7298 2014-03-26  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
7300         * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
7301         the password.
7303 2014-03-26  Dmitry Gutov  <dgutov@yandex.ru>
7305         * emacs-lisp/package.el (package--add-to-archive-contents):
7306         Include already installed and built-in packages in
7307         `package-archive-contents'.
7308         (package-install): Don't include already installed packages in the
7309         options during interactive invocation.  (Bug#16762)
7310         (package-show-package-list): If the buffer is already displayed in
7311         another window, switch to that window.
7313 2014-03-26  Reto Zimmermann  <reto@gnu.org>
7315         Sync with upstream vhdl mode v3.35.1.
7316         * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
7317         (vhdl-compiler-alist): Doc fix.
7318         (vhdl-goto-line): Remove.
7319         (vhdl-mode-abbrev-table-init): Add XEmacs compat.
7320         (vhdl-mode) <paragraph-start>: Fix value.
7321         (vhdl-fix-statement-region): Not `for' in wait-statement.
7322         (vhdl-beautify-region): Also (un)tabify.
7323         (vhdl-get-visible-signals):
7324         Scan declarative part of generate statements.
7325         (vhdl-template-record): Fix indentation for record type declaration.
7326         (vhdl-expand-abbrev, vhdl-expand-paren):
7327         Revert to using fset again rather than defalias.
7328         (vhdl-scan-directory-contents): Tweak.
7329         (vhdl-speedbar-find-file, vhdl-speedbar-port-copy)
7330         (vhdl-compose-components-package):
7331         Replace vhdl-goto-line with forward-line.
7332         (top-level): Tweak speedbar frame selection.
7333         (vhdl-generate-makefile-1): Support for compilers with no
7334         unit-to-file name mapping (create directory with dummy files).
7336 2014-03-26  Wilson Snyder  <wsnyder@wsnyder.org>
7338         Sync with upstream verilog-mode revision 702457d.
7339         * progmodes/verilog-mode.el (verilog-mode-version): Update.
7340         (create-lockfiles): Declare.
7341         (verilog-read-decls): Fix module header imports, bug709.
7342         Reported by Victor Lau.
7343         Fix parsing 'var' in AUTOs, msg1294.  Reported by Dominique Chen.
7344         (verilog-auto-inout-module): Fix AUTOINOUTMODULE not inserting
7345         interface-only modules, bug721.  Reported by Dean Hoyt.
7347 2014-03-26  Glenn Morris  <rgm@gnu.org>
7349         * obsolete/gulp.el: Move here from emacs-lisp/.
7351         * files.el (lock-buffer, unlock-buffer, file-locked-p):
7352         Remove fallback aliases, since they are always defined now.
7354 2014-03-24  Daniel Colascione  <dancol@dancol.org>
7356         * emacs-lisp/cl-macs.el (cl--do-arglist): Use `plist-member'
7357         instead of cl-loop search function.
7359 2014-03-23  Lars Ingebrigtsen  <larsi@gnus.org>
7361         * calendar/parse-time.el (parse-time-iso8601-regexp)
7362         (parse-iso8601-time-string): Copy from `url-dav' so that we can use
7363         it more generally.
7365 2014-03-23  Lars Ingebrigtsen  <larsi@gnus.org>
7367         * net/dns.el (network-interface-list): Define for XEmacs.
7369 2014-03-23  Magnus Henoch  <magnus.henoch@gmail.com>
7371         * net/dns.el (dns-servers-up-to-date-p): New function to see whether
7372         the network interfaces changed.
7373         (dns-query): Use it to flush the data.
7375 2014-03-23  Juanma Barranquero  <lekktu@gmail.com>
7377         * vc/vc.el (vc-rollback): Use set-buffer-modified-p.
7379 2014-03-23  Daniel Colascione  <dancol@dancol.org>
7381         Change subword-mode to use `find-word-boundary-function-table' and
7382         replace `capitalized-words-mode'.  Also, convert to lexical binding.
7383         * progmodes/cap-words.el: Delete now-obsolete file.
7384         * progmodes/subword.el: Reimplement using
7385         `find-word-boundary-function-table'.
7386         (subword-mode-map): Hollow out.
7387         (capitalized-words-mode): Define as obsolete alias for
7388         `subword-mode'.
7389         (subword-mode, superword-mode): Tweak documentation to reflect new
7390         implementation; call `subword-setup-buffer'.
7391         (subword-forward, subword-capitalize): Add underscore to indicate
7392         unused variable.
7393         (subword-find-word-boundary-function-table): New constant.
7394         (subword-empty-char-table): New constant.
7395         (subword-setup-buffer): New function.
7396         (subword-find-word-boundary): New function.
7398 2014-03-23  Daniel Colascione  <dancol@dancol.org>
7400         * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
7401         list to look for keyword arguments instead of `memq', fixing
7402         (Bug#3647) --- unfortunately, only for freshly-compiled code.
7403         Please make bootstrap.
7405 2014-03-22  Glenn Morris  <rgm@gnu.org>
7407         * dired.el (dired-read-regexp): Make obsolete.
7408         (dired-mark-files-regexp, dired-mark-files-containing-regexp)
7409         (dired-flag-files-regexp):
7410         * dired-aux.el (dired-mark-read-regexp):
7411         * dired-x.el (dired-mark-unmarked-files): Use read-regexp directly.
7413         * startup.el (fancy-startup-text):
7414         * help.el (describe-gnu-project): Visit online info about GNU project.
7416         * help-fns.el (help-fns--interactive-only): New function.
7417         (help-fns-describe-function-functions): Add the above function.
7418         * simple.el (beginning-of-buffer, end-of-buffer, insert-buffer)
7419         (next-line, previous-line): Remove hand-written interactive-only
7420         information from doc strings, it is auto-generated now.
7421         * bookmark.el (bookmark-write):
7422         * epa-mail.el (epa-mail-decrypt, epa-mail-verify, epa-mail-sign)
7423         (epa-mail-import-keys): Mark interactive-only,
7424         and remove hand-written interactive-only information from doc strings.
7425         * epa.el (epa-decrypt-armor-in-region, epa-verify-region)
7426         (epa-verify-cleartext-in-region, epa-sign-region, epa-encrypt-region):
7427         * files.el (not-modified):
7428         * simple.el (mark-whole-buffer): Mark interactive-only.
7430         * emacs-lisp/byte-run.el (defun-declarations-alist):
7431         Add interactive-only.  Doc tweak.
7432         (macro-declarations-alist): Doc tweak.
7433         * subr.el (declare): Doc tweak (add xref to manual).
7434         * comint.el (comint-run):
7435         * files.el (insert-file-literally, insert-file):
7436         * replace.el (replace-string, replace-regexp):
7437         * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
7438         (delete-forward-char, goto-line, insert-buffer, next-line)
7439         (previous-line): Set interactive-only via declare.
7441 2014-03-22  Dmitry Gutov  <dgutov@yandex.ru>
7443         * emacs-lisp/package.el (package-desc): Use the contents of the
7444         quoted form, not its cdr.  (Bug#16873)
7446 2014-03-22  Juanma Barranquero  <lekktu@gmail.com>
7448         * w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
7449         benefit of doc.c; change parameter profile to match the X function.
7451 2014-03-22  Leo Liu  <sdl.web@gmail.com>
7453         * help.el (temp-buffer-setup-hook): Remove help-mode-setup.
7454         (temp-buffer-show-hook): Remove help-mode-finish.  (Bug#16038)
7456 2014-03-21  Richard Stallman  <rms@gnu.org>
7458         * battery.el (battery-linux-sysfs): Search for each field
7459         from the beginning of the buffer.
7461         * subr.el (set-transient-map): Clear out function and value
7462         of the temporary symbol when we're done with it.
7464         * mail/rmailsum.el (rmail-summary-delete-forward):
7465         Optimize case of reaching end and handling count.
7466         (rmail-summary-mark-deleted): Optimize when N is current msg.
7467         Don't create new summary line.
7468         (rmail-summary-undelete): Pass arg to rmail-undelete-previous-message.
7469         (rmail-summary-undelete-many): Rewrite for speed.
7470         (rmail-summary-msg-number): New function.
7472         * mail/rmail.el (rmail-delete-message): Update summary.
7473         (rmail-undelete-previous-message): Handle repeat count arg.
7474         (rmail-delete-backward, rmail-delete-forward): Likewise.
7476 2014-03-21  Daniel Colascione  <dancol@dancol.org>
7478         * mail/emacsbug.el (report-emacs-bug): Include memory usage
7479         information in bug reports.
7481 2014-03-21  Michael Albinus  <michael.albinus@gmx.de>
7483         * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
7484         and `tramp-copy-env'.
7486         * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
7487         (tramp-maybe-open-connection): Handle `tramp-login-env'.
7489 2014-03-21  Glenn Morris  <rgm@gnu.org>
7491         * electric.el (electric-indent-post-self-insert-function): Add doc.
7493 2014-03-21  Dmitry Gutov  <dgutov@yandex.ru>
7495         * emacs-lisp/package.el (package-compute-transaction):
7496         Use `version-list-<=' to compare the requirement version against
7497         the version of package already to be installed.  Update the error
7498         message.  (Bug#16826)
7500         * progmodes/ruby-mode.el (ruby-smie-rules):
7501         Add indentation rule for ` @ '.  (Bug#17050)
7503 2014-03-21  Juanma Barranquero  <lekktu@gmail.com>
7505         * align.el (align-regexp): Remove superfluous backslash.
7507         * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
7508         (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
7509         (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
7510         Fix docstring typos.
7511         (ffap-next): Use C-u in docstring.
7512         (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
7513         (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
7514         Remove superfluous backslashes.
7515         (ffap-string-at-point): Reflow docstring.
7517         * server.el (server-host): Reflow docstring.
7518         (server-unload-function): Fix docstring typo.
7519         (server-eval-at): Remove superfluous backslash.
7521         * skeleton.el (skeleton-insert): Remove superfluous backslash.
7522         (skeleton-insert): Doc fix.
7523         (skeleton-insert): Reflow docstring.
7525         * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
7526         (tty-color-approximate, tty-color-by-index, tty-color-values)
7527         (tty-color-desc): Remove superfluous backslashes.
7529 2014-03-21  Glenn Morris  <rgm@gnu.org>
7531         * cus-start.el (history-length): Bump :version.
7533         * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
7534         ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
7535         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
7536         Don't set `make-backup-files'.
7538         * info.el (info--prettify-description): New function,
7539         to give info-finder descriptions consistent case, punctuation.
7540         (Info-finder-find-node): Use it.  Sort packages.
7541         Refer to "description" rather than "commentary".
7543 2014-03-21  Juanma Barranquero  <lekktu@gmail.com>
7545         * frameset.el (frameset--print-register): New function.
7546         (frameset-to-register): Use it.
7548 2014-03-20  Juanma Barranquero  <lekktu@gmail.com>
7550         * progmodes/hideif.el (hif-string-to-number): New function.
7551         (hif-tokenize): Use it to understand non-decimal floats.
7553         * emacs-lisp/cl-extra.el (cl--map-overlays): Remove obsolete code.
7555         * skeleton.el (skeleton-autowrap): Mark as obsolete.  Doc fix.
7557 2014-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
7559         * electric.el (electric-newline-and-maybe-indent): New command.
7560         Bind it globally to C-j.
7561         (electric-indent-mode): Don't mess with the global map any more.
7562         Don't drop the post-self-insert-hook is some buffer is still using it
7563         (bug#16770).
7565         * bindings.el (global-map): Remove C-j binding.
7567         * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
7568         the docstring of functions advised before dumping (bug#16993).
7570 2014-03-19  Stefan-W. Hahn  <stefan.hahn@s-hahn.de>  (tiny change)
7572         * ps-print.el (ps-generate-postscript-with-faces):
7573         Explicitly deactivate the mark (bug#16866).
7574         * simple.el (deactivate-mark): Update region highlight.
7576 2014-03-19  Juanma Barranquero  <lekktu@gmail.com>
7578         * emacs-lisp/package.el (describe-package-1):
7579         Decode commentary (bug#16733).
7581 2014-03-18  Juanma Barranquero  <lekktu@gmail.com>
7583         * custom.el (defcustom): Doc fix: recommend avoiding destructive
7584         modification of the value argument of :set (bug#16755).
7586 2014-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7588         * simple.el (newline-and-indent): Do autofill (bug#17031).
7590 2014-03-18  Dmitry Gutov  <dgutov@yandex.ru>
7592         * newcomment.el (comment-normalize-vars): Only add escaping check
7593         to `comment-start-skip' if not `comment-use-syntax'.  (Bug#16971)
7594         (comment-beginning): Use `narrow-to-region' instead of moving back
7595         one character.
7596         (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
7597         (comment-start-skip): Update the docstring.
7599 2014-03-18  Richard Stallman  <rms@gnu.org>
7601         * dired.el (dired-display-file): Force use of other window.
7603 2014-03-18  Daniel Colascione  <dancol@dancol.org>
7605         * startup.el (tty-handle-args): Remove debug message from 2007.
7607 2014-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
7609         * emacs-lisp/nadvice.el (advice--interactive-form): New function.
7610         (advice--make-interactive-form): Use it to avoid (auto)loading function.
7611         (advice--make-1, advice-add, advice-remove):
7612         Remove braindead :advice-pending hack.
7614 2014-03-17  Glenn Morris  <rgm@gnu.org>
7616         * calendar/calendar.el (calendar-generate-month): Apply weekend
7617         face to the right days; fixes 2013-08-06 change.  (Bug#17028)
7619 2014-03-17  Michael Albinus  <michael.albinus@gmx.de>
7621         * net/tramp.el (tramp-action-out-of-band): Read pending output.
7622         (tramp-call-process): Trace also DESTINATION.
7624         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
7625         Quote file names when they are local.  Remove superfluous trace.
7627 2014-03-17  Dmitry Gutov  <dgutov@yandex.ru>
7629         * newcomment.el (comment-beginning): If `comment-start-skip'
7630         doesn't match, move back one char and try again.  (Bug#16971)
7632         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
7633         Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
7634         Set `comment-start-skip' to a simpler value that doesn't try to
7635         check if the semicolon is escaped (this is handled by
7636         `syntax-ppss' now).  (Bug#16971)
7638         * progmodes/scheme.el (scheme-mode-variables): Same.
7640 2014-03-16  Martin Rudalics  <rudalics@gmx.at>
7642         Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
7643         * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
7644         current (Bug#16816, Bug#17007).
7645         (with-current-buffer-window): New macro doing the same as
7646         `with-temp-buffer-window' but with BUFFER-OR-NAME current.
7647         * help.el (help-print-return-message): Warn in doc-string to not
7648         use this in `with-help-window'.
7649         (describe-bindings-internal): Call `describe-buffer-bindings'
7650         from within help buffer.  See Juanma's scenario in (Bug#16816).
7651         (with-help-window): Update doc-string.
7652         * dired.el (dired-mark-pop-up):
7653         * files.el (save-buffers-kill-emacs):
7654         * register.el (register-preview): Use `with-current-buffer-window'
7655         instead of `with-temp-buffer-window'.
7657 2014-03-16  Juanma Barranquero  <lekktu@gmail.com>
7659         * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
7660         Implement inserting into current buffer, documented in their docstrings.
7661         (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
7662         (rst-section-tree-point, rst-forward-section, rst-indent)
7663         (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
7664         (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
7665         (rst-font-lock-handle-adornment-pre-match-form)
7666         (rst-repeat-last-character): Reflow docstrings.
7667         (rst-preferred-adornments, rst-update-section, rst-find-title-line)
7668         (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
7669         (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
7670         (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
7671         Fix docstring typos.
7672         (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
7673         (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
7674         (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
7676 2014-03-15  Juanma Barranquero  <lekktu@gmail.com>
7678         * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
7679         for compatibility with other ports.
7680         (ns-initialize-window-system): Use it.  It is set in term/common-win.el
7681         from the -xrm command line argument, but in the Nextstep port its value
7682         is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
7684         * progmodes/python.el (defconst, python-syntax-count-quotes)
7685         (python-indent-region, python-indent-shift-right)
7686         (python-indent-dedent-line-backspace, python-nav-backward-sexp)
7687         (python-nav-backward-sexp-safe, python-nav-backward-up-list)
7688         (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
7689         (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
7690         (inferior-python-mode, python-shell-make-comint, run-python-internal)
7691         (python-shell-buffer-substring, python-shell-send-buffer)
7692         (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
7693         (python-completion-complete-at-point, python-fill-docstring-style)
7694         (python-eldoc-function, python-imenu-format-item-label)
7695         (python-imenu-format-parent-item-label)
7696         (python-imenu-format-parent-item-jump-label)
7697         (python-imenu--build-tree, python-imenu-create-index)
7698         (python-imenu-create-flat-index): Fix docstring typos.
7699         (python-indent-context, python-shell-prompt-regexp, run-python):
7700         Remove superfluous backslashes.
7701         (python-indent-line, python-nav-beginning-of-defun)
7702         (python-shell-get-buffer, python-shell-get-process)
7703         (python-info-current-defun, python-info-current-line-comment-p)
7704         (python-info-current-line-empty-p, python-util-popn): Doc fixes.
7705         (python-indent-post-self-insert-function, python-shell-send-file)
7706         (python-shell-completion-get-completions)
7707         (python-shell-completion-complete-or-indent)
7708         (python-eldoc--get-doc-at-point): Reflow docstrings.
7710 2014-03-14  Glenn Morris  <rgm@gnu.org>
7712         * emacs-lisp/package.el (package-menu-mode-map):
7713         Replace use of obsolete function alias.  Tweak menu item text.
7715         * info.el (Info-finder-find-node):
7716         Ignore the `emacs' metapackage.  (Bug#10813)
7718         * finder.el (finder-list-matches): Include unversioned packages
7719         in the result of a keyword search.
7721         * finder.el (finder--builtins-descriptions): New constant.
7722         (finder-compile-keywords): Use finder--builtins-descriptions.
7724 2014-03-14  Dmitry Gutov  <dgutov@yandex.ru>
7726         * simple.el (blink-matching-paren): Describe the new value,
7727         `jump', enabling the old behavior.
7728         (blink-matching-open): Use that value.  (Bug#17008)
7730 2014-03-14  Glenn Morris  <rgm@gnu.org>
7732         * finder.el (finder-no-scan-regexp): Add leim-list.
7733         (finder-compile-keywords):
7734         Don't skip files with same basename.  (Bug#14010)
7735         * Makefile.in (setwins_finder): New, excluding leim.
7736         (finder-data): Use setwins_finder.
7738         * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
7739         (help-function-arglist, help-make-usage): Move from here...
7740         * help.el (help-split-fundoc, help-add-fundoc-usage)
7741         (help-function-arglist, help-make-usage): ... to here.  (Bug#17001)
7742         * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
7744 2014-03-14  Juanma Barranquero  <lekktu@gmail.com>
7746         * net/socks.el (socks, socks-override-functions)
7747         (socks-find-services-entry):
7748         * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
7749         (hif-find-ifdef-block):
7750         * progmodes/modula2.el (m2-indent): Fix docstring typos.
7752         * net/tls.el (tls-program): Reflow docstring.
7754         * progmodes/pascal.el (pascal-mode-abbrev-table)
7755         (pascal-imenu-generic-expression, pascal-auto-endcomments)
7756         (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
7757         (pascal-outline-mode): Fix docstring typos.
7758         (pascal-mode): Let define-derived-mode document mode hook.
7759         (pascal-uncomment-area): Reflow.
7760         (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
7762         * progmodes/opascal.el (opascal-compound-block-indent)
7763         (opascal-case-label-indent): Fix docstring typos.
7764         (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
7766 2014-03-13  Dmitry Gutov  <dgutov@yandex.ru>
7768         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
7769         Fontify multiple adjacent negation chars.  (Bug#17004)
7771 2014-03-13  Tom Willemse  <tom@ryuslash.org>  (tiny change)
7773         * emacs-lisp/package.el (package--prepare-dependencies):
7774         Accept requirements without explicit version (bug#14941).
7776 2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
7778         * register.el (register-separator, copy-to-register): Doc fixes.
7779         (register-preview-default): Remove unnecessary call to concat.
7781         * frameset.el (frameset-restore): When checking for a visible frame,
7782         use the action map instead of calling visible-frame-list.
7784 2014-03-12  Jonas Bernoulli  <jonas@bernoul.li>
7786         * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
7788 2014-03-12  Martin Rudalics  <rudalics@gmx.at>
7790         * window.el (fit-frame-to-buffer): Get maximum width from
7791         display's width instead of height.
7793 2014-03-12  Glenn Morris  <rgm@gnu.org>
7795         * desktop.el (desktop-restore-frames)
7796         (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
7797         (desktop-restore-reuses-frames): Doc tweaks.
7799         * electric.el (electric-indent-mode): Doc fix.
7801 2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
7803         * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
7804         (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
7805         (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
7806         (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
7807         (cvs-dired-use-hook): Fix docstring typos.
7808         (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
7809         Doc fixes.
7811         * vc/pcvs-defs.el (cvs-auto-remove-handled)
7812         (cvs-auto-remove-directories, cvs-default-ignore-marks)
7813         (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
7814         (cvs-execute-single-dir): Fix docstring typos.
7816         * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
7817         (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
7819         * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
7821         * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
7822         Fix docstring typos.
7824 2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
7826         * frameset.el (frameset--jump-to-register): Add autoload; it could be
7827         called from jump-to-register after unloading the frameset package.
7829 2014-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7831         * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
7832         (bug#16975).  Deactivate the mark before setting it to nil.
7833         (activate-mark): Do nothing if region is already active.
7835 2014-03-11  Juanma Barranquero  <lekktu@gmail.com>
7837         * frameset.el (frameset--target-display): Remove definition; declare.
7838         (frameset-save, frameset-restore): Let-bind frameset--target-display.
7840 2014-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7842         * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
7843         (advice-add): Add a :advice--pending marker, so advice--make-1 knows
7844         when the advice is pending.
7845         (advice-remove): Remove this marker when not needed any more.
7847 2014-03-11  Juanma Barranquero  <lekktu@gmail.com>
7849         * frameset.el: Separate options for reusing frames and cleaning up.
7850         (frameset--reuse-list): Remove definition; declare.
7851         (frameset--action-map): Declare.
7852         (frameset--find-frame-if): Doc fix.
7853         (frameset--restore-frame): Cache frame action.
7854         (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
7855         how to clean up the frame list after restoring.  Remove cleaning
7856         options from REUSE-FRAMES.  Change all keyword values to symbols.
7857         (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
7859         * desktop.el (desktop-restore-forces-onscreen)
7860         (desktop-restore-reuses-frames): Use non-keyword values.
7861         (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
7863 2014-03-10  Glenn Morris  <rgm@gnu.org>
7865         * files.el (find-file): Doc fix: update info node name.
7867         * emacs-lisp/advice.el (ad-add-advice, defadvice):
7868         Doc fix: remove references to deleted info nodes.
7870 2014-03-10  Michael Albinus  <michael.albinus@gmx.de>
7872         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
7873         Do not add nil to the environment, when there's no remote `locale'.
7874         (tramp-find-inline-encoding): Check, that the remote host has
7875         installed perl, before sending scripts.
7877 2014-03-10  Leo Liu  <sdl.web@gmail.com>
7879         * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
7880         Clear eldoc-last-message.  (Bug#16920)
7882 2014-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
7884         * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
7885         (bug#14430).
7887 2014-03-09  Juri Linkov  <juri@jurta.org>
7889         * ansi-color.el (ansi-color-names-vector): Copy default colors
7890         from `xterm-standard-colors' that look well on the default white
7891         background (and also on the black background) to avoid illegible
7892         color combinations like yellow-on-white and white-on-white.
7893         http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
7895 2014-03-08  Juanma Barranquero  <lekktu@gmail.com>
7897         * frameset.el (frameset-restore): When no frame is visible, do not
7898         generate a list of frames, just make visible the selected one.
7900 2014-03-08  Dmitry Gutov  <dgutov@yandex.ru>
7902         * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
7903         it only contains the repository root.  (Bug#16897)
7905 2014-03-07  Michael Albinus  <michael.albinus@gmx.de>
7907         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
7908         only when `remote-file-name-inhibit-cache' is nil.
7909         (tramp-sh-file-name-handler): Use `tramp-error'.  Simplify code.
7911 2014-03-06  Martin Rudalics  <rudalics@gmx.at>
7913         * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
7914         Fix doc-strings.
7915         (fit-frame-to-buffer): New argument ONLY.  Remove dependency on
7916         fit-frame-to-buffer variable.  Fix doc-string.
7917         (fit-window-to-buffer): Set ONLY argument in call of
7918         fit-frame-to-buffer.  Fix doc-string.
7920 2014-03-06  Michael Albinus  <michael.albinus@gmx.de>
7922         * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
7923         (tramp-action-password): Clear password cache if needed.
7924         (tramp-read-passwd): Do not clear password cache.
7926         * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
7927         cache unless it is the first password request.
7929 2014-03-06  Glenn Morris  <rgm@gnu.org>
7931         * simple.el (newline): Doc tweak.
7933         * emacs-lisp/shadow.el (load-path-shadows-find):
7934         Ignore dir-locals.  (Bug#12357)
7936 2014-03-05  Glenn Morris  <rgm@gnu.org>
7938         * files.el (interpreter-mode-alist):
7939         * progmodes/sh-script.el (sh-ancestor-alist): Add dash.  (Bug#16938)
7941 2014-03-05  Juanma Barranquero  <lekktu@gmail.com>
7943         * frameset.el (frameset--initial-params): Filter out null entries.
7945 2014-03-05  Martin Rudalics  <rudalics@gmx.at>
7947         * window.el (window-min-height, window-min-width):
7948         Rewrite doc-strings.
7949         (window-body-size): Add PIXELWISE argument to make it consistent
7950         with its callees.
7952 2014-03-05  Juanma Barranquero  <lekktu@gmail.com>
7954         * finder.el (finder-mode-map, finder-mode-syntax-table):
7955         Revert part of 2014-02-28 change.
7957 2014-03-05  Lars Ingebrigtsen  <larsi@gnus.org>
7959         * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
7960         (eww-setup-buffer): Clear next/prev/etc more reliably.
7961         (eww-textarea-map): [tab] doesn't work on tty.
7962         Reported by Mario Lang.
7964         * net/shr.el (shr-map): Ditto.
7966 2014-03-04  Glenn Morris  <rgm@gnu.org>
7968         * minibuffer.el (completion-hilit-commonality):
7969         Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
7971 2014-03-04  Juanma Barranquero  <lekktu@gmail.com>
7973         * hilit-chg.el (hilit-chg-unload-function): New function.
7974         (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
7975         (hilit-chg-map-changes): Prefer cardinal number to digit.
7976         (hilit-chg-display-changes): Reflow docstring.
7977         (highlight-changes-rotate-faces): Remove superfluous backslash.
7979 2014-03-04  Michael Albinus  <michael.albinus@gmx.de>
7981         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
7982         `tramp-send-command-and-check'.
7984 2014-03-04  Juanma Barranquero  <lekktu@gmail.com>
7986         * hexl.el (hexl-address-region, hexl-ascii-region)
7987         (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
7988         (hexl-backward-short, hexl-forward-short, hexl-backward-word)
7989         (hexl-forward-word, hexl-previous-line, hexl-next-line):
7990         Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
7991         (hexl-mode): Doc fix.
7992         (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
7993         (hexl-mode-ruler): Fix typos in docstrings.
7995         * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
7996         (strokes-character, strokes-get-grid-position, strokes-list-strokes):
7997         Remove superfluous backslashes.
7998         (strokes-last-stroke, strokes-global-map, strokes-mode):
7999         Reflow docstrings.
8000         (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
8001         (strokes-xpm-for-compressed-string): Use quotes with buffer name.
8002         (strokes-distance-squared, strokes-global-set-stroke)
8003         (strokes-global-set-stroke-string): Doc fixes.
8004         (strokes-help): Fix typos; reflow docstring.
8006 2014-03-04  Martin Rudalics  <rudalics@gmx.at>
8008         * window.el (window-in-direction): Fix doc-string.
8010 2014-03-04  Glenn Morris  <rgm@gnu.org>
8012         * emacs-lisp/smie.el (smie-config-guess): Doc fix.
8013         Explicit error if no grammar.
8014         (smie-config-save): Doc fix.  Fix quote typo.
8016 2014-03-04  Stefan Monnier  <monnier@iro.umontreal.ca>
8018         * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
8019         electric-indent-mode-hook if we obey electric-indent-mode.
8020         (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
8021         decide whether we obey electric-indent-mode.
8022         (c-change-set-fl-decl-start, c-extend-after-change-region):
8023         Silence warnings.
8024         (c-electric-indent-mode-hook): Assume we do want to obey
8025         electric-indent-mode.
8027         * electric.el (electric-indent-mode-has-been-called): Remove.
8028         (electric-indent-mode): Fix accordingly.
8030         * files.el (hack-local-variables): Mention file name in warning.
8032         * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
8034 2014-03-04  Michal Nazarewicz  <mina86@mina86.com>
8036         * bindings.el: Add comment describing why C-d binds to `delete-char'.
8037         * simple.el (delete-forward-char): Mark as interactive-only.
8039 2014-03-03  Juanma Barranquero  <lekktu@gmail.com>
8041         * icomplete.el (icomplete-completions):
8042         Follow-up to 2014-03-01 change.
8044         * icomplete.el: Miscellaneous doc fixes.
8045         Use Icomplete everywhere instead of icomplete for consistency.
8046         (icomplete-max-delay-chars): Fix typo.
8047         (icomplete-mode): Use \[].
8048         (icomplete-tidy, icomplete-exhibit): Reflow.
8049         (icomplete-minibuffer-setup-hook, icomplete-completions):
8050         Remove superfluous backlashes.
8052         * ido.el: Miscellaneous doc fixes.
8053         Use Ido everywhere instead of ido or `ido' for consistency.
8054         (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
8055         (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
8056         (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
8057         (ido-separator): Extract obsolescence info from docstring and declare
8058         with make-obsolete-variable.
8059         (ido-minibuffer-setup-hook): Simplify example.
8060         (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
8061         (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
8062         (ido-completion-help, ido-completing-read): Fix typos in docstrings.
8063         (ido-everywhere): Reflow docstring.
8064         (ido-toggle-vc): Doc fix.
8065         (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
8066         of long list of keybindings.
8068 2014-03-03  Glenn Morris  <rgm@gnu.org>
8070         * frame.el (display-pixel-height, display-pixel-width)
8071         (display-mm-dimensions-alist, display-mm-height)
8072         (display-mm-width): Doc tweaks.
8074 2014-03-02  Barry O'Reilly  <gundaetiapo@gmail.com>
8076         * simple.el (undo-elt-in-region): Fix buffer corruption for edge
8077         case of undo in region.
8079 2014-03-02  Martin Rudalics  <rudalics@gmx.at>
8081         * window.el (fit-window-to-buffer): Fix argument in window-size
8082         call when window is horizontally combined.
8084 2014-03-02  Juanma Barranquero  <lekktu@gmail.com>
8086         * icomplete.el (icomplete-completions): Use string-width.
8087         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
8089 2014-03-01  Dmitry Gutov  <dgutov@yandex.ru>
8091         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
8092         Highlight regexp options.  (Bug#16914)
8094 2014-03-01  Martin Rudalics  <rudalics@gmx.at>
8096         * window.el (window--max-delta-1): Round down when calculating
8097         how many lines/columns we can get from a window.
8099 2014-03-01  Glenn Morris  <rgm@gnu.org>
8101         * isearch.el (search-invisible): Doc fix.
8103         * minibuffer.el (completion-hilit-commonality):
8104         Make `base-size' argument optional.  Short-cut if `prefix-len' is 0.
8105         * comint.el (comint-dynamic-list-completions): Doc fix.
8106         * comint.el (comint-dynamic-list-completions):
8107         * filecache.el (file-cache-minibuffer-complete):
8108         * tempo.el (tempo-display-completions):
8109         * eshell/em-hist.el (eshell-list-history):
8110         Replace use of obsolete argument of display-completion-list.
8112 2014-03-01  Juanma Barranquero  <lekktu@gmail.com>
8114         * icomplete.el (icomplete-completions):
8115         Revert back to using "..." when ?… cannot be displayed.
8117 2014-02-28  Juanma Barranquero  <lekktu@gmail.com>
8119         * finder.el (finder-unload-function): New function.
8121 2014-02-28  Juanma Barranquero  <lekktu@gmail.com>
8123         * dframe.el (dframe-detach):
8124         * find-dired.el (find-dired, find-name-dired):
8125         * finder.el (finder-mode-map, finder-mode-syntax-table)
8126         (finder-headmark, finder-select, finder-mouse-select):
8127         Fix docstring typos.
8129 2014-02-28  Martin Rudalics  <rudalics@gmx.at>
8131         Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
8132         * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
8133         Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
8134         Fix doc-string based on a suggestion by Nicolas Richard
8135         <theonewiththeevillook@yahoo.fr>.
8136         * help.el (with-help-window): Fix doc-string.
8138 2014-02-28  Ivan Kanis  <ivan@kanis.fr>
8140         * net/shr.el (shr-image-animate): New option.
8141         (shr-put-image): Respect shr-image-animate.
8143 2014-02-28  Michael Albinus  <michael.albinus@gmx.de>
8145         * net/tramp-adb.el (tramp-adb-parse-device-names):
8146         Use `accept-process-output'.
8147         (tramp-adb-handle-file-truename): Cache the localname only.
8148         (tramp-adb-handle-make-directory)
8149         (tramp-adb-handle-delete-directory): Flush file properties correctly.
8150         (tramp-adb-handle-set-file-modes): Do not raise an error when file
8151         modes cannot be changed.
8153         * net/tramp-cache.el (tramp-flush-directory-property): Remove also
8154         file properties of symlinks.
8156 2014-02-28  Per Starbäck  <starback@stp.lingfil.uu.se>
8158         * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
8159         required/optional fields to match development biblatex.  (Bug#16781)
8161 2014-02-28  Andy Sawyer  <andy.sawyer@gmail.com>  (tiny change)
8163         * saveplace.el (toggle-save-place):
8164         Fix argument handling.  (Bug#16673)
8166 2014-02-28  Glenn Morris  <rgm@gnu.org>
8168         * minibuffer.el (completions-first-difference)
8169         (completions-common-part, completion-hilit-commonality): Doc fixes.
8171 2014-02-28  Karl Berry  <karl@gnu.org>
8173         * info.el (Info-mode-map): Add H for describe-mode,
8174         to synchronize with standalone Info.
8176 2014-02-28  Emilio C. Lopes  <eclig@gmx.net>
8178         * progmodes/sql.el (sql-interactive-mode):
8179         Avoid setting global comint-input-ring-separator.  (Bug#16814)
8181 2014-02-27  Michael Albinus  <michael.albinus@gmx.de>
8183         * net/dbus.el (dbus--init-bus): Declare function.
8184         (dbus-path-local, dbus-interface-local): New defconst.
8185         (dbus-init-bus): Use them.
8186         (dbus-return-values-table): Extend doc.
8187         (dbus-handle-bus-disconnect): Extend error message.
8189 2014-02-27  Juanma Barranquero  <lekktu@gmail.com>
8191         * subr.el (y-or-n-p): Fix double space issue in message.
8193 2014-02-27  Michael Albinus  <michael.albinus@gmx.de>
8195         * net/tramp.el (tramp-call-process): Improve trace message.
8196         (tramp-handle-insert-file-contents): Trace error case.
8198         * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
8199         <insert-directory>: Use `tramp-handle-insert-directory'.
8200         (tramp-adb-handle-insert-directory): Remove function.
8201         (tramp-adb-send-command-and-check): New defun, replacing
8202         `tramp-adb-command-exit-status'.  Change all callees.
8203         (tramp-adb-handle-file-attributes)
8204         (tramp-adb-handle-directory-files-and-attributes): Use it.
8205         (tramp-adb-ls-output-name-less-p):
8206         Use `directory-listing-before-filename-regexp'.
8207         (tramp-adb-handle-delete-directory): Flush also file properties of
8208         the truename of directory.
8209         (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
8210         (tramp-adb-handle-file-local-copy): Make the local copy readable.
8211         (tramp-adb-handle-write-region): Implement APPEND.
8212         (tramp-adb-handle-rename-file): Make it more robust.  Flush file
8213         properties correctly.
8214         (tramp-adb-maybe-open-connection): Set `tramp-current-*'
8215         variables.  Check for connected devices only when needed.
8217 2014-02-27  Glenn Morris  <rgm@gnu.org>
8219         * minibuffer.el (completion-table-dynamic)
8220         (completion-table-with-cache): Doc fixes.
8222         * emacs-lisp/crm.el (crm-default-separator, crm-separator)
8223         (completing-read-multiple): Doc fixes.
8225 2014-02-27  Daniel Colascione  <dancol@dancol.org>
8227         * minibuffer.el (completion--nth-completion): Fix indentation.
8229         * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
8230         explicit tramp path is empty.
8232 2014-02-27  Glenn Morris  <rgm@gnu.org>
8234         * emacs-lisp/crm.el (completing-read-multiple):
8235         Empower help-enable-auto-load.
8237 2014-02-26  Glenn Morris  <rgm@gnu.org>
8239         * startup.el (command-line): Don't init the tty in daemon mode.
8241         Avoid calling tty-setup-hook twice, eg if a term file
8242         explicitly calls tty-run-terminal-initialization.  (Bug#16859)
8243         * faces.el (tty-run-terminal-initialization): Add run-hook argument.
8244         (tty-create-frame-with-faces): Use it.
8245         * startup.el (command-line): Pass run-hook argument
8246         to tty-run-terminal-initialization.
8248         * dired.el (dired-restore-desktop-buffer): Demote errors;
8249         eg in case a glob match fails.  (Bug#16884)
8251 2014-02-26  Dmitry Gutov  <dgutov@yandex.ru>
8253         * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
8254         error from `read-from-string'.  (Bug#16850)
8256         * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
8257         result of `completing-read' in the interactive form.  (Bug#16854)
8259 2014-02-25  Glenn Morris  <rgm@gnu.org>
8261         * image.el (image-animate, image-animate-timeout):
8262         Stop animating images in dead buffers.  (Bug#16878)
8264         * emacs-lisp/edebug.el (defmacro): Fix debug spec.  (Bug#16868)
8266         * faces.el (tty-setup-hook, tty-run-terminal-initialization):
8267         Doc fixes.
8268         * startup.el (term-setup-hook): Doc fix.  Make obsolete.
8269         * term/sun.el (sun-raw-prefix-hooks):
8270         Use tty-setup-hook instead of term-setup-hook.
8271         (terminal-init-sun): Construct message from bytecomp plist.
8272         * term/wyse50.el (enable-arrow-keys): Doc fix.
8274 2014-02-24  Juanma Barranquero  <lekktu@gmail.com>
8276         * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
8277         Fix docstring typos.
8279 2014-02-24  Michael Albinus  <michael.albinus@gmx.de>
8281         * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
8283 2014-02-24  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
8285         * minibuffer.el (completion--try-word-completion):
8286         Fix error when completing M-x commands (bug#16808).
8288 2014-02-24  Leo Liu  <sdl.web@gmail.com>
8290         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
8292 2014-02-24  Juanma Barranquero  <lekktu@gmail.com>
8294         * apropos.el (apropos-print): Avoid formatting error when
8295         apropos-do-all and apropos-compact-layout are both t.
8297 2014-02-23  Juanma Barranquero  <lekktu@gmail.com>
8299         * apropos.el (apropos-property, apropos-all-words-regexp)
8300         (apropos-true-hit, apropos-variable, apropos-print):
8301         Fix docstring typos, and remove obsolete comment.
8303 2014-02-23  Michael Albinus  <michael.albinus@gmx.de>
8305         * net/tramp-sh.el (tramp-sh-handle-file-truename):
8306         Preserve trailing "/".  (Bug#16851)
8308 2014-02-23  Dmitry Gutov  <dgutov@yandex.ru>
8310         * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
8311         after `=>' (bug#16811).
8312         (ruby-smie-rules): Handle the inconsistent second element of the
8313         list returned by `smie-indent--parent'.
8314         (ruby-font-lock-keywords): Disqualify any identifier before `=' as
8315         method call.
8317 2014-02-23  Juanma Barranquero  <lekktu@gmail.com>
8319         * elec-pair.el (electric-pair-text-syntax-table)
8320         (electric-pair-syntax-info, electric-pair--syntax-ppss)
8321         (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
8322         (electric-pair--looking-at-unterminated-string-p): Doc fix.
8323         (electric-pair--inside-string-p): Doc fix.  Use `let', not `let*'.
8325 2014-02-22  Glenn Morris  <rgm@gnu.org>
8327         * imenu.el (imenu--generic-function): Doc fix.
8329         * register.el (frame-configuration-to-register): Make obsolete.
8331 2014-02-22  Juanma Barranquero  <lekktu@gmail.com>
8333         * desktop.el (desktop-save-buffer-p): Do not fail when
8334         desktop-files-not-to-save is nil.  Return t for true result
8335         as the doc says.
8337 2014-02-22  Daniel Colascione  <dancol@dancol.org>
8339         * net/secrets.el (secrets-create-item, secrets-search-items):
8340         Check that attribute values are strings, avoiding the construction
8341         of invalid dbus messages.
8343 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
8345         * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
8346         defun-declarations-alist.
8348 2014-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8350         * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
8351         (bug#16829).
8353 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
8355         * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
8356         (whitespace-newline, whitespace-trailing, whitespace-line)
8357         (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
8358         (whitespace-space-after-tab): Fix typo in docstrings.
8360 2014-02-21  Dmitry Gutov  <dgutov@yandex.ru>
8362         * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
8364         * electric.el (electric-indent-functions-without-reindent):
8365         Add `yaml-indent-line'.
8367 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
8369         * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
8370         It has done nothing for years; should be removed after the release.
8372         * simple.el (choose-completion): Fix docstring typo.
8373         (read-quoted-char-radix): Remove unneeded * in docstring.
8374         (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
8375         Don't escape parentheses unnecessarily in docstrings.
8377 2014-02-21  Martin Rudalics  <rudalics@gmx.at>
8379         Fix handling of window-min-height/-width (Bug#16738).
8380         * window.el (window--dump-window, window--dump-frame):
8381         New functions.
8382         (window--min-size-1): Account for window dividers.
8383         When window-resize-pixelwise is nil, delay rounding till after the
8384         sum of the window components has been calculated.
8385         (window--min-delta-1, window--max-delta-1): When PIXELWISE is
8386         nil make sure at least one text line and two text columns remain
8387         fully visible.
8388         (window-resize): Signal an error when window-resize-apply fails.
8389         (window--resize-child-windows): Fix calculation of by how many
8390         pixels a window can still be shrunk via window-new-normal.
8391         (adjust-window-trailing-edge): Call window--resizable with
8392         correct TRAIL argument.
8394         (with-temp-buffer-window): Don't evaluate BODY within
8395         with-current-buffer (Bug#16816).
8397 2014-02-21  Michael Albinus  <michael.albinus@gmx.de>
8399         * net/tramp.el (tramp-check-cached-permissions):
8400         Call `file-attributes' with `suffix' being a symbol but a string.
8402 2014-02-21  Daniel Colascione  <dancol@dancol.org>
8404         * net/dbus.el (dbus-init-bus-1): Declare new subr.
8405         (dbus-init-bus): New function: call into dbus-init-bus-1
8406         and installs a handler for the disconnect signal.
8407         (dbus-call-method): Rewrite to look for result in cons.
8408         (dbus-call-method-handler): Store result in cons.
8409         (dbus-check-event): Recognize events with nil sender as valid.
8410         (dbus-handle-bus-disconnect): New function.  React to bus
8411         disconnection signal by synthesizing dbus error for each
8412         pending synchronous or asynchronous call.
8413         (dbus-notice-synchronous-call-errors): New function.
8414         (dbus-handle-event): Raise errors directly only when `dbus-debug'
8415         is true, not all the time.
8417 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
8419         * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
8420         Remove obsolescence declarations, these variables do not exist anymore.
8422         * savehist.el (savehist-save-minibuffer-history)
8423         (savehist-additional-variables, savehist-file, savehist-mode-hook)
8424         (savehist-save-hook, savehist-coding-system, savehist-loaded)
8425         (savehist-load, savehist-install, savehist-autosave): Fix typos;
8426         mostly, refer to "Savehist mode" when talking about the mode,
8427         and not the function.
8429         * saveplace.el (save-place): Remove redundant info in docstring.
8430         (save-place-forget-unreadable-files, toggle-save-place)
8431         (save-place-forget-unreadable-files, save-place-dired-hook):
8432         Fix typos and remove unneeded backslashes.
8434 2014-02-20  Michael Albinus  <michael.albinus@gmx.de>
8436         * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
8437         (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
8439         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
8440         <insert-directory>: Use `tramp-handle-insert-directory'.
8441         (tramp-gvfs-handle-insert-directory): Remove function.
8443         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
8444         Call `tramp-handle-insert-directory'.
8446 2014-02-20  Juanma Barranquero  <lekktu@gmail.com>
8448         * elec-pair.el (electric-pair-syntax-info): Do not check syntax
8449         before the start of buffer/region (bug#16799).
8451 2014-02-20  Glenn Morris  <rgm@gnu.org>
8453         * isearch.el (search-invisible): Doc fix.
8455 2014-02-20  W. Trevor King  <wking@tremily.us>  (tiny change)
8457         * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
8458         (bug#16657).
8460 2014-02-19  Juanma Barranquero  <lekktu@gmail.com>
8462         * frameset.el (frameset-restore): Delay removing an old frame's
8463         duplicate id until the new frame has been correctly created.
8465 2014-02-19  Michael Albinus  <michael.albinus@gmx.de>
8467         * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
8468         (tramp-check-cached-permissions): Call `file-attributes' if the
8469         cache is empty.
8471         * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
8472         <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
8474         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
8475         <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
8476         (tramp-gvfs-maybe-open-connection): Set always connection
8477         properties, even if target is mounted already.
8479         * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
8480         Set tramp-autoload cookie.
8481         (tramp-get-remote-touch): New defun.
8482         (tramp-sh-handle-set-file-times): Use it.
8483         (tramp-sh-handle-directory-files-and-attributes):
8484         Use `tramp-handle-directory-files-and-attributes' if neither stat
8485         nor perl are available on the remote host.
8487         * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
8488         "/".  Write long listing only when "l" belongs to the switches.
8490         * net/trampver.el: Update release number.
8492 2014-02-19  Juanma Barranquero  <lekktu@gmail.com>
8494         * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
8496 2014-02-19  Martin Rudalics  <rudalics@gmx.at>
8498         * window.el (window-state-put): Allow WINDOW to refer to an
8499         internal window (Bug#16793).
8501 2014-02-19  Glenn Morris  <rgm@gnu.org>
8503         * textmodes/remember.el: Move provide statement to end.
8504         (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
8505         (remember-notes): Doc fixes.
8507 2014-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8509         * delsel.el (delete-char): Restore incorrectly erased property
8510         (bug#16795).
8512 2014-02-18  Juanma Barranquero  <lekktu@gmail.com>
8514         * frameset.el (frameset--restore-frame): When a frame is being reused
8515         and its root window is not alive, delete all the frame's windows before
8516         restoring the window state.  This works around the issue in bug#16793.
8518 2014-02-18  Glenn Morris  <rgm@gnu.org>
8520         * textmodes/remember.el (remember-data-directory)
8521         (remember-directory-file-name-format, remember-store-in-files)
8522         (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
8523         (remember-notes-save-and-bury-buffer)
8524         (remember-notes--kill-buffer-query): Doc fixes.
8526         * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
8528 2014-02-17  Alan Mackenzie  <acm@muc.de>
8530         Connect electric-indent-mode up with CC Mode.  Bug #15478.
8531         * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
8532         to electric-indent-{,local-}-mode.
8533         (c-basic-common-init): Set electric-indent-inhibit.
8534         Initialise c-electric-flag from electric-indent-mode.
8535         (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
8536         New hook functions which propagate electric-indent-mode to CC mode.
8538         * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
8539         hit, toggle electric-indent-local-mode.
8541         * electric.el (electric-indent-mode-has-been-called):
8542         New variable.
8544 2014-02-17  Juanma Barranquero  <lekktu@gmail.com>
8546         * frameset.el (frameset-cfg-id): New function.
8547         (frameset--reuse-frame, frameset-restore): Use it.
8548         (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
8550 2014-02-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8552         * ido.el (ido-file-internal): Remove unused var `d'.
8553         Use \` for to match BoS.  Fit within 80n columns.
8555 2014-02-17  Daniel Colascione  <dancol@dancol.org>
8557         * net/dbus.el (dbus-call-method): Work around bug#16775 by having
8558         dbus-call-method check for completion using a busy-wait loop with
8559         gradual backoff.
8561 2014-02-16  Michael Albinus  <michael.albinus@gmx.de>
8563         Sync with Tramp 2.2.9.
8565         * net/trampver.el: Update release number.
8567 2014-02-16  Dmitry Gutov  <dgutov@yandex.ru>
8569         * ido.el (ido-file-internal): Don't add the name of an existing
8570         directory twice.  (Bug#16747)
8572 2014-02-16  Glenn Morris  <rgm@gnu.org>
8574         * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
8575         Do not use ediff-defvar-local on pre-defined variables.  (Bug#16744)
8577 2014-02-15  Michael R. Mauger  <michael@mauger.com>
8579         * progmodes/sql.el: Version 3.4
8580         (sql-oracle-options): New default value ("-L").
8581         (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
8582         (sql-placeholders-filter): Correct placeholder pattern.
8583         (sql-read-table-name): Bug fix.  Detect absence of SQLi process.
8584         (sql-login-delay): New variable.
8585         (sql-product-interactive): Use it.
8587 2014-02-15  Juanma Barranquero  <lekktu@gmail.com>
8589         * frameset.el (frameset--jump-to-register): Check that buffer is live
8590         (bug#16749).
8592 2014-02-15  Glenn Morris  <rgm@gnu.org>
8594         * info.el (info-initialize): Revert 2014-01-10 change.
8596 2014-02-14  Glenn Morris  <rgm@gnu.org>
8598         * replace.el (map-query-replace-regexp)
8599         (read-regexp-defaults-function, read-regexp): Doc fixes.
8601         * dired.el (dired-read-regexp):
8602         * faces.el (list-faces-display):
8603         * misearch.el (multi-isearch-read-matching-buffers)
8604         (multi-isearch-read-matching-files):
8605         * play/cookie1.el (cookie-apropos):
8606         * progmodes/grep.el (grep-read-regexp): Doc fixes.
8608         * textmodes/remember.el (remember): Use frameset-to-register
8609         rather than frame-configuration-to-register.
8611 2014-02-14  Jay Belanger  <jay.p.belanger@gmail.com>
8613         * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
8614         incorrect keybinding.
8616 2014-02-13  Daniel Colascione  <dancol@dancol.org>
8618         * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
8619         when adding overlays so that line numbers from compiler match line
8620         numbers we use.
8622 2014-02-13  Glenn Morris  <rgm@gnu.org>
8624         * mail/rmail.el (rmail-probe): Be less strict.  (Bug#16743)
8626         * jit-lock.el (jit-lock-mode): Doc fix.
8628 2014-02-13  Juanma Barranquero  <lekktu@gmail.com>
8630         * apropos.el (apropos-read-pattern): When the user passes an empty
8631         string, give a more helpful error message than "Wrong type
8632         argument: stringp, nil".
8634 2014-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8636         * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
8638 2014-02-13  Glenn Morris  <rgm@gnu.org>
8640         * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
8642 2014-02-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8644         * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
8645         shift-select commands.
8647 2014-02-12  Dmitry Gutov  <dgutov@yandex.ru>
8649         * progmodes/js.el (js-indent-line): Don't widen.
8650         http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
8652 2014-02-12  Glenn Morris  <rgm@gnu.org>
8654         * icomplete.el (icomplete): Add info-link to defgroup.
8655         (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
8656         (icomplete-minibuffer-map, icomplete-mode)
8657         (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
8659         * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
8660         (package-menu-filter): Rename from package-menu-filter-interactive.
8661         Doc fix.
8663 2014-02-11  Juanma Barranquero  <lekktu@gmail.com>
8665         * frameset.el (frameset--jump-to-register): Select the required
8666         window and buffer before restoring position (bug#16696).
8668 2014-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
8670         * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
8672 2014-02-10  Glenn Morris  <rgm@gnu.org>
8674         * jit-lock.el (jit-lock-force-redisplay): Doc fix.  (Bug#14394)
8676 2014-02-10  Eli Zaretskii  <eliz@gnu.org>
8678         * w32-common-fns.el (x-get-selection): Doc fix.
8679         * select.el (x-get-selection): Doc fix.  (Bug#15109)
8681         * face-remap.el (face-remap-add-relative)
8682         (face-remap-remove-relative, face-remap-reset-base)
8683         (face-remap-set-base): Call force-mode-line-update to redisplay
8684         the current buffer due to potential change in faces.  (Bug#16709)
8686 2014-02-10  Michael Albinus  <michael.albinus@gmx.de>
8688         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
8689         script more robustly.
8691 2014-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
8693         * dired.el (dired-get-marked-files): Doc fix (bug#11534).
8695         * simple.el (choose-completion): Doc fix (bug#14160).
8697         * subr.el (event-start): Say what a nil EVENT value means.
8699         * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
8700         (bug#14197).
8702         * progmodes/grep.el (find-program): Doc fix (bug#14289).
8704         * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
8706         * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
8708         * files.el (confirm-kill-emacs): Allow specifying an arbitrary
8709         predicate function (bug#15455).
8711 2014-02-10  Dmitry Gutov  <dgutov@yandex.ru>
8713         * ielm.el (inferior-emacs-lisp-mode): Instead of
8714         `comment-use-global-state', set `comment-use-syntax'.
8716 2014-02-10  Glenn Morris  <rgm@gnu.org>
8718         * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
8720 2014-02-09  Alan Mackenzie  <acm@muc.de>
8722         Fix c-invalidate-state-cache on narrowed buffers.
8723         * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
8724         Widen when setting and clearing the CPP delimiter properties.
8726 2014-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
8728         * help.el (describe-bindings): Doc fix (bug#9888).
8730         * files.el (save-buffer): Use ARG as the parameter name for
8731         consistency (bug#10346).
8732         (save-buffer): Clarify the 0 argument (bug#10346).
8734         * cus-edit.el (customize-apropos): Fix error string.
8735         (custom-buffer-create): Doc fix (bug#11122).
8736         (custom-sort-items): Doc fix (bug#11121).
8738         * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
8740         * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
8741         (icomplete-simple-completing-p): Mention the previous variable.
8743         * font-lock.el (font-lock-value-in-major-mode): Clarify the
8744         meaning of the parameter (bug#12282).
8746         * files.el (find-file-noselect): Clarify prompt when changing
8747         readedness (bug#13261).
8748         (locate-file): Suffixes aren't returned, so don't say that they
8749         are (bug#12674).
8750         (backup-inhibited): Doc clarification (bug#12525).
8752         * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
8753         before we actually start to delete things (bug#16331).
8755         * subr.el (event-start): Doc fix (bug#14228).
8756         (event-end): Ditto.
8758 2014-02-09  Glenn Morris  <rgm@gnu.org>
8760         * emacs-lisp/warnings.el (lwarn):
8761         Empower help-enable-auto-load.  (Bug#15940)
8763 2014-02-08  Andreas Schwab  <schwab@linux-m68k.org>
8765         * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
8766         (Bug#16690)
8768 2014-02-08  Michael Albinus  <michael.albinus@gmx.de>
8770         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
8771         Insert output at end of buffer.  (Bug#16120)
8773 2014-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
8775         * simple.el (choose-completion-string-functions): Document new
8776         calling convention (bug#14153).
8777         (execute-extended-command): Clarify doc string (bug#13373).
8779         * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
8781         * find-dired.el (find-name-dired): Doc fix (bug#14290).
8782         (find-grep-dired): Doc fix (bug#14288).
8784 2014-02-08  Juri Linkov  <juri@jurta.org>
8786         * isearch.el (isearch-quote-char): Check character validity
8787         like in `quoted-insert' (bug#16677).
8789 2014-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
8791         * files.el (find-file-visit-truename): Doc clarification (bug#14697).
8793         * isearch.el (isearch-hide-immediately): Doc clarification
8794         (bug#14723).
8796         * simple.el (line-move): Document utility function used many
8797         places in the Emacs sources (bug#14843).
8799         * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
8800         (dired-prev-marked-file): Doc fix (bug#14855).
8801         (dired-up-directory): Doc fix (bug#14848).
8803         * minibuffer.el (read-file-name): Doc clarification (bug#15096).
8805         * files.el (file-relative-name): Doc fix (bug#15159).
8807         * fringe.el (fringe-styles): Doc fix (bug#15239).
8809         * isearch.el (isearch-filter-predicate): Documentation typo fix
8810         (bug#15474).
8812         * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
8814         * isearch.el (isearch-cmds): Doc clarification (bug#15547).
8816         * replace.el (replace-match-maybe-edit): Doc clarification
8817         (bug#15632).
8819         * subr.el (add-to-list): Refill the paragraphs (bug#15791).
8821         * macros.el (insert-kbd-macro): Doc fix (bug#16025).
8823 2014-02-08  Glenn Morris  <rgm@gnu.org>
8825         * help-fns.el (describe-variable):
8826         Check {file,dir}-local-variables-alist, and buffer-file-name,
8827         in the correct buffer.
8829 2014-02-08  Ingo Lohmar  <i.lohmar@gmail.com>
8831         * help-fns.el (describe-variable): Fix the case where
8832         a value is directory-local with no dir-locals file.  (Bug#16635)
8834 2014-02-08  Glenn Morris  <rgm@gnu.org>
8836         * abbrev.el (edit-abbrevs-mode):
8837         Derive from fundamental-mode.  (Bug#16682)
8839 2014-02-07  Juanma Barranquero  <lekktu@gmail.com>
8841         * simple.el (quoted-insert): Check character validity (bug#16677).
8843 2014-02-07  Juri Linkov  <juri@jurta.org>
8845         * desktop.el (desktop-read): Claim the lock when the owner is not
8846         the current process.  (Bug#16157)
8848 2014-02-07  Juri Linkov  <juri@jurta.org>
8850         * desktop.el (desktop-buffers-not-to-save): Change default from nil
8851         to "\\` ".  (Bug#16651)
8853 2014-02-07  Juri Linkov  <juri@jurta.org>
8855         * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
8856         when enabling, and `desktop-auto-save-cancel-timer' when disabling.
8857         (desktop-auto-save-cancel-timer): New function with some code from
8858         `desktop-auto-save-set-timer'.
8859         (after-init-hook): Don't call `desktop-auto-save-set-timer'.
8860         Instead of setting `desktop-save-mode' to nil, call
8861         `desktop-save-mode' with arg 0.  (Bug#16630)
8863 2014-02-07  Glenn Morris  <rgm@gnu.org>
8865         * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
8866         (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
8867         (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
8869         * obsolete/iswitchb.el: Move to obsolete/.
8870         * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
8871         since obsolete/ is not scanned for autoloads.
8872         * emacs-lisp/authors.el (authors-valid-file-names):
8873         Add iswitchb.el.
8875         * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
8876         Disable now non-functional find-file-hook.
8878 2014-02-06  Michael Albinus  <michael.albinus@gmx.de>
8880         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
8881         instead of ";" in order to avoid additional prompts.  Let heredoc
8882         scripts read from tty.  (Bug#16582)
8883         (tramp-send-command): No special handling of heredocs, it isn't
8884         necessary anymore.
8886 2014-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
8888         * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
8889         with a space (bug#16664).  Limit the symbols considered to the ones
8890         that are bound or fbound (bug#16646).
8892 2014-02-06  Glenn Morris  <rgm@gnu.org>
8894         * epa.el (epa-mail-aliases): Doc fix.
8896 2014-02-06  Dmitry Gutov  <dgutov@yandex.ru>
8898         * emacs-lisp/lisp.el (lisp-completion-at-point):
8899         Use `completion-table-merge' instead of `completion-table-in-turn'
8900         (bug#16604).
8902         * minibuffer.el (completion-table-merge): New function.
8904 2014-02-05  Michael Albinus  <michael.albinus@gmx.de>
8906         * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
8907         (tramp-sh-handle-set-file-acl)
8908         (tramp-sh-handle-start-file-process)
8909         (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
8910         (tramp-find-executable, tramp-send-command): Use it.
8912 2014-02-05  Glenn Morris  <rgm@gnu.org>
8914         * epa.el (epa-mail-aliases): Fix custom type.  Doc tweak.
8916 2014-02-04  Fabián Ezequiel Gallina  <fgallina@gnu.org>
8918         * progmodes/python.el (python-shell-send-string)
8919         (python-shell-send-string-no-output): Fix docstring (Bug#16547).
8921 2014-02-04  Anders Lindgren  <andlind@gmail.com>
8923         * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
8924         the names (bug#16620).
8926 2014-02-03  Martin Rudalics  <rudalics@gmx.at>
8928         * faces.el (window-divider): New default value.  Rewrite doc-string.
8929         (window-divider-first-pixel, window-divider-last-pixel): New faces.
8931 2014-02-03  Dmitry Gutov  <dgutov@yandex.ru>
8933         * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
8934         `protected' and `public' can also be called without arguments.
8936 2014-02-03  Glenn Morris  <rgm@gnu.org>
8938         * register.el (window-configuration-to-register)
8939         (frame-configuration-to-register): Unadvertise unused argument.
8940         * frameset.el (frameset-to-register): Remove unused argument.
8942         * frameset.el (frameset-to-register):
8943         * kmacro.el (kmacro-to-register):
8944         * register.el (increment-register):
8945         * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
8946         (calc-append-to-register, calc-prepend-to-register):
8947         * play/gametree.el (gametree-layout-to-register)
8948         (gametree-apply-register-layout):
8949         * textmodes/picture.el (picture-clear-rectangle-to-register)
8950         (picture-yank-rectangle-from-register):
8951         * vc/emerge.el (emerge-combine-versions-register):
8952         Use register-read-with-preview to read registers.
8954 2014-02-03  João Távora  <joaotavora@gmail.com>
8956         * elec-pair.el (electric-pair-backward-delete-char): Don't error
8957         when at beginning of (possibly narrowed) buffer.
8959 2014-02-02  Daniel Colascione  <dancol@dancol.org>
8961         * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
8962         Also try to display local help from just before point.
8964 2014-02-02  Alan Mackenzie  <acm@muc.de>
8966         c-parse-state.  Don't "append-lower-brace-pair" in certain
8967         circumstances.  Also fix an obscure bug where "\\s!" shouldn't be
8968         recognised as a comment.
8970         * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
8971         as well as normal comment starter.
8972         (c-parse-state-get-strategy): Extra return possibility
8973         'back-and-forward.
8974         (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
8975         return value list to indicate replacement of a brace-pair cons
8976         with its car.
8977         (c-parse-state-1): With 'back-and-forward, only call
8978         c-append-lower-brace-pair-to state-cache when cons-separated.
8980 2014-02-02  Jan Djärv  <jan.h.d@swipnet.se>
8982         * term/ns-win.el (ns-suspend-error): New function.
8983         (ns-initialize-window-system): Add ns-suspend-error to
8984         suspend-hook (Bug#16612).
8986 2014-02-02  Daniel Colascione  <dancol@dancol.org>
8988         * progmodes/cc-defs.el (c-find-assignment-for-mode):
8989         Make loading cc-mode silent.
8991 2014-02-02  Daniel Colascione  <dancol@dancol.org>
8993         * comint.el (comint-prompt-read-only): Change doc to suggest
8994         remap keybinding.
8996 2014-02-02  Glenn Morris  <rgm@gnu.org>
8998         * register.el (register-read-with-preview, point-to-register)
8999         (window-configuration-to-register, frame-configuration-to-register)
9000         (jump-to-register, number-to-register, view-register, insert-register)
9001         (copy-to-register, append-to-register, prepend-to-register)
9002         (copy-rectangle-to-register): Doc fixes.
9004 2014-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9006         * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
9007         * emacs-lisp/find-func.el (find-function-C-source): Idem.
9008         * emacs-lisp/nadvice.el (advice--cd*r): New function.
9009         * help-fns.el (describe-function-1): Use it.
9011 2014-02-02  Glenn Morris  <rgm@gnu.org>
9013         * register.el (register-preview-default): New function,
9014         split from register-preview.
9015         (register-preview-function): Rename from register-preview-functions,
9016         make it not a hook.
9017         (register-preview): Use register-preview-function.
9018         (register-read-with-preview): Error on non-character event.  (Bug#16595)
9020 2014-02-01  Dmitry Gutov  <dgutov@yandex.ru>
9022         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
9023         `:' before binary operators (bug#16609).  Don't check for `:'
9024         before `[' and `(', or their syntax status.  A percent literal
9025         can't end with either.
9026         (ruby-font-lock-keywords): For built-ins that require arguments,
9027         check that they're followed by something that looks like argument
9028         (bug#16610).
9030 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
9032         * subr.el (butlast): Document what an omitted N means (bug#13437).
9033         (nbutlast): Ditto.
9035 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
9037         * net/shr.el (shr-generic): Make into a defsubst to make the stack
9038         depth shallower (bug#16587).
9039         (shr-tag-svg): Respect `shr-inhibit-images'.
9040         (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
9042 2014-01-31  Dmitry Gutov  <dgutov@yandex.ru>
9044         * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
9045         (ruby-smie-grammar): Make "." right-associative.  Make its priority
9046         lower than the ternary and all binary operators.
9047         (ruby-smie-rules): Indent "(" relative to the first non-"."
9048         parent, or the first "." parent at indentation.
9049         Use `ruby-align-chained-calls' for indentation of "." tokens.
9050         (Bug#16593)
9052 2014-01-31  Juri Linkov  <juri@jurta.org>
9054         * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
9055         from `make-hash-table'.
9057         * textmodes/ispell.el (ispell-init-process): Change message format
9058         to be consistent with other messages.
9060 2014-01-31  Glenn Morris  <rgm@gnu.org>
9062         * delsel.el (delete-selection-mode): Doc fix.
9064         * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
9065         (trace-function-background): Doc fixes.
9067         * ido.el (ido-use-virtual-buffers): Doc fix.
9068         Reset :version, since the default value has not changed.
9070         * register.el (register-preview-delay, register-read-with-preview):
9071         Doc fixes.
9073         * mail/reporter.el (reporter-dump-variable): In case of void-variable,
9074         do not mess with mail-buffer position (fixes 2009-11-03 change).
9075         * progmodes/cc-mode.el (c-submit-bug-report):
9076         Check auto-fill-mode is bound.  (Bug#16592)
9078 2014-01-31  Darren Hoo  <darren.hoo@gmail.com>
9080         * startup.el (fancy-splash-image-file): New function,
9081         split from fancy-splash-head.
9082         (fancy-splash-head, use-fancy-splash-screens-p): Use it,
9083         so that we are both using the same image.  (Bug#16574)
9085 2014-01-30  Glenn Morris  <rgm@gnu.org>
9087         * simple.el (eval-expression): Doc fix.
9089         * hexl.el (hexl-mode-hook):
9090         * ielm.el (ielm-mode-hook):
9091         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
9092         (lisp-interaction-mode-hook):
9093         * progmodes/cfengine.el (cfengine3-documentation-function):
9094         Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
9096 2014-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
9098         * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
9099         is a symbol (bug#16584).
9101 2014-01-30  Glenn Morris  <rgm@gnu.org>
9103         * help.el (help-for-help-internal): Add "P" to text.
9105 2014-01-29  Glenn Morris  <rgm@gnu.org>
9107         * simple.el (just-one-space, cycle-spacing): Doc fixes.
9109 2014-01-28  Martin Rudalics  <rudalics@gmx.at>
9111         * window.el (fit-frame-to-buffer): Fix calculations for margins and
9112         height constraints.
9114 2014-01-28  Luke Lee  <luke.yx.lee@gmail.com>
9116         * progmodes/hideif.el: Extend to full CPP expression syntax.
9117         (hif-token-alist): Add missing tokens.
9118         (hif-token-regexp): Add support for float/octal/hex immediates.
9119         (hif-string-literal-regexp): New const.
9120         (hif-tokenize): Recognize strings and float/octal/hex immediates.
9121         (hif-exprlist): New function.
9122         (hif-parse-if-exp): Use it.
9123         (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
9124         (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
9125         (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
9126         (hif-logxor, hif-comma): New functions.
9128 2014-01-28  Glenn Morris  <rgm@gnu.org>
9130         * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
9132         * indent.el (tab-stop-list): Doc fix.  Add :version.
9134         * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
9135         (cvs-append-to-ignore): Add compatibility alias.
9137 2014-01-27  Glenn Morris  <rgm@gnu.org>
9139         * dired.el (dired-hide-details-mode): Don't autoload it,
9140         since it cannot be used outside Dired buffers anyway.
9142         * emulation/cua-base.el (cua-mode): Doc fix.
9144         * dired.el (dired-hide-details-hide-symlink-targets)
9145         (dired-hide-details-hide-information-lines)
9146         (dired-hide-details-mode): Doc fixes.
9148         * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
9149         * strokes.el (strokes-file): Doc fix.  Bump :version.
9150         (strokes-help): Doc fix.
9151         * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
9152         * emulation/viper.el (viper): Doc fix for custom group.
9153         (top-level): Remove oh-so-no-longer-relevant text about vip.
9154         * obsolete/otodo-mode.el (todo-prefix): Doc fix.
9156         * ido.el (ido-save-directory-list-file):
9157         * saveplace.el (save-place-file):
9158         * calendar/timeclock.el (timeclock-file):
9159         * net/quickurl.el (quickurl-url-file):
9160         * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
9161         * progmodes/idlwave.el (idlwave-config-directory):
9162         * textmodes/remember.el (remember-data-file):
9163         Bump :version.
9165 2014-01-26  Glenn Morris  <rgm@gnu.org>
9167         * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
9168         Doc fix.  Make obsolete.
9169         (opascal-mode): No longer mention opascal-tab-always-indents in doc.
9171         * sort.el (delete-duplicate-lines): Doc fix.
9173 2014-01-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
9175         * progmodes/ada-mode.el (ada):
9176         * woman.el (woman): Link to info manual and Commentary section.
9178         * progmodes/flymake.el (flymake):
9179         * nxml/nxml-mode.el (nxml):
9180         * net/eww.el (eww):
9181         * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
9182         * htmlfontify.el (htmlfontify):
9183         * ses.el (ses):
9184         * epa.el (epa):
9185         * ido.el (ido): Link to info manual.
9187 2014-01-25  Leo Liu  <sdl.web@gmail.com>
9189         * progmodes/flymake.el (flymake-make-overlay): No rear advance.
9191 2014-01-25  Adam Sjøgren  <asjo@koldfront.dk>
9193         * net/shr.el (shr-tag-img): Prefer the title over the alt text
9194         (bug#16537).
9196 2014-01-24  Juanma Barranquero  <lekktu@gmail.com>
9198         * net/eww.el (eww-download-callback):
9199         Fix reference to eww-download-directory.
9201         * emacs-lisp/bytecomp.el (byte-compile-file):
9202         Remove unused local variable `file-name'.
9204 2014-01-24  Glenn Morris  <rgm@gnu.org>
9206         * woman.el (woman-default-faces, woman-monochrome-faces):
9207         Fix obsolescence specification.
9209         * subr.el (with-demoted-errors): Doc fix.
9211 2014-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
9213         * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
9214         (cl--macroexp-fboundp): New function.
9215         (cl--make-type-test): Use it.
9217 2014-01-23  Glenn Morris  <rgm@gnu.org>
9219         * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
9220         * simple.el (eval-expression): Doc fixes.
9222 2014-01-22  Glenn Morris  <rgm@gnu.org>
9224         * emacs-lisp/authors.el (authors-fixed-entries): Addition.
9226 2014-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
9228         * emacs-lisp/package.el: Write files silently.
9229         (package-autoload-ensure-default-file, package--write-file-no-coding)
9230         (package-generate-description-file, package--download-one-archive)
9231         (package-install-from-archive): Tell `write-region' to stay quiet.
9232         (package-menu-mode, package-menu--print-info): Omit the Archive column
9233         if there's only one archive.
9234         (package-all-keywords, package--has-keyword-p): Remove dead code.
9236 2014-01-22  Glenn Morris  <rgm@gnu.org>
9238         * version.el (emacs-bzr-version-bzr): Fix typo.
9240         * version.el (emacs-repository-get-version):
9241         Check either .bzr or .git, but not both.
9242         Make the git case actually use the DIR argument, and return nil
9243         rather than the empty string.
9244         Avoid error if .git exists but the git executable is not found.
9246 2014-01-22  Martin Rudalics  <rudalics@gmx.at>
9248         Fixes in window size functions around Bug#16430 and Bug#16470.
9249         * window.el (window-total-size, window-size): New argument ROUND.
9250         (window--min-delta-1, window-min-delta, window--max-delta-1):
9251         Be more conservative when calculating the numbers of lines or
9252         columns a window can shrink (Bug#16430).
9253         (fit-window-to-buffer): Simplify code.
9254         * term.el (term-window-width): Call window-body-width again.
9256 2014-01-22  Glenn Morris  <rgm@gnu.org>
9258         * image.el (image-format-suffixes): Doc fix.
9260         * international/quail.el (quail-define-package): Doc fix.
9262         * emacs-lisp/authors.el (authors-valid-file-names)
9263         (authors-renamed-files-alist): Additions.
9265         * vc/vc-git.el (vc-git-print-log): Remove --follow;
9266         reverts 2014-01-09 change.  (Bug#16422)
9268         * calc/calc-embed.el (thing-at-point-looking-at):
9269         * emacs-lisp/map-ynp.el (x-popup-dialog):
9270         * obsolete/lmenu.el (x-popup-dialog):
9271         * emacs-lisp/package.el (url-recreate-url):
9272         * mail/mailclient.el (clipboard-kill-ring-save):
9273         * subr.el (x-popup-dialog): Update declaration.
9274         * mail/rmail.el (rmail-mime-message-p):
9275         * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
9277 2014-01-21  Daniel Colascione  <dancol@dancol.org>
9279         * progmodes/sh-script.el (sh--inside-noncommand-expression):
9280         Correctly detect when we're inside an arithmetic expansion form
9281         containing nested parenthesis.
9282         (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
9283         to detect cases where we shouldn't expand "<<" to a heredoc
9284         skeleton.
9286 2014-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
9288         * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
9289         (eldoc--message-command-p): New function.
9290         (eldoc-display-message-p): Use it.
9291         (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
9292         message is not automatically erased for us.
9293         (eldoc-print-current-symbol-info): Erase previous message, if any.
9295 2014-01-21  Tassilo Horn  <tsdh@gnu.org>
9297         * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
9298         specify it's an interactive function.
9300         * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
9301         Fix regex used for scanning for citation keys which failed for
9302         citations with optional arguments.
9304 2014-01-21  Leo Liu  <sdl.web@gmail.com>
9306         * simple.el (read--expression): Don't enable eldoc-mode.
9308 2014-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
9310         * simple.el (move-beginning-of-line): Make sure we don't move forward
9311         (bug#16497).
9313 2014-01-20  Juri Linkov  <juri@jurta.org>
9315         * saveplace.el (toggle-save-place, save-place-to-alist)
9316         (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
9317         'dired-mode) before checking for dired-directory.  (Bug#16477)
9319 2014-01-20  Juri Linkov  <juri@jurta.org>
9321         * indent.el (indent-line-to): Use backward-to-indentation
9322         instead of back-to-indentation.  (Bug#16461)
9324 2014-01-20  Paul Eggert  <eggert@cs.ucla.edu>
9326         Revert some of the CANNOT_DUMP fix (Bug#16494).
9327         Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
9328         but fixing this can wait until after the next release.
9329         * Makefile.in (emacs): Keep EMACSLOADPATH empty.
9331 2014-01-19  Michael Albinus  <michael.albinus@gmx.de>
9333         * eshell/esh-mode.el (eshell-password-prompt-regexp):
9334         Use `password-word-equivalents'.
9335         (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
9336         to t.  (Bug#5664, Bug#13124)
9338 2014-01-19  Alan Mackenzie  <acm@muc.de>
9340         Bind open-paren-in-column-0-is-defun-start to nil at some entry
9341         points.
9342         * progmodes/cc-engine.el (c-invalidate-state-cache-1)
9343         (c-parse-state-1, c-guess-basic-syntax): Bind it here.
9344         * progmodes/cc-mode.el (c-before-change, c-after-change)
9345         (c-font-lock-fontify-region): Bind it here.
9347 2014-01-19  Martin Rudalics  <rudalics@gmx.at>
9349         * term.el (term-window-width): Call window-text-width instead of
9350         window-width (Bug#16470).
9352 2014-01-18  Paul Eggert  <eggert@cs.ucla.edu>
9354         * simple.el (password-word-equivalents): Remove duplicates.
9355         Sort, to make this easier next time.
9356         Downcase.  Omit ": " after "jelszó".
9358 2014-01-18  Jan Djärv  <jan.h.d@swipnet.se>
9360         * term/common-win.el (saved-region-selection): Defvar it.
9361         (x-select-text): Set saved-region-selection (Bug#16382).
9363 2014-01-18  Glenn Morris  <rgm@gnu.org>
9365         * emacs-lisp/authors.el (authors-aliases)
9366         (authors-renamed-files-alist): Add some entries.
9368 2014-01-17  Michael Albinus  <michael.albinus@gmx.de>
9370         * net/tramp.el (tramp-password-prompt-regexp):
9371         Use `password-word-equivalents' if available.
9372         (tramp-action-password, tramp-process-one-action)
9373         (tramp-read-passwd): Let-bind `case-fold-search' to t.  (Bug#13124)
9375 2014-01-17  Chong Yidong  <cyd@gnu.org>
9377         * simple.el (password-word-equivalents): New defcustom.
9378         * comint.el (comint-password-prompt-regexp): Use it.  Bump version
9379         to 24.4.
9380         (comint-watch-for-password-prompt): Let-bind `case-fold-search'
9381         to t.  (Bug#13124)
9383 2014-01-17  Dmitry Gutov  <dgutov@yandex.ru>
9385         * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
9386         (ruby-align-to-stmt-keywords): Change the default value.
9387         Use `ruby-alignable-keywords' to generate the possible customization
9388         choices.
9389         (ruby-smie-rules): Instead of using a hardcoded list of alignable
9390         keywords, check against the value of `ruby-alignable-keywords'
9391         (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
9393 2014-01-17  Glenn Morris  <rgm@gnu.org>
9395         * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
9397         Make M-x authors return zero *Authors Errors* from current logs.
9398         * emacs-lisp/authors.el (authors-obsolete-files-regexps)
9399         (authors-ignored-files): Add some entries, remove others.
9400         (authors-ambiguous-files, authors-valid-file-names):
9401         Add some entries.
9402         (authors-renamed-files-alist): Add, remove, and adjust entries.
9403         (authors-renamed-files-regexps): Add some entries.
9404         Remove some very broad ones.  Make some entries `lax'.
9405         (authors-lax-changelogs): New constant.
9406         (authors-disambiguate-file-name): Treat top-level specially.
9407         (authors-lax-changelog-p): New function.
9408         (authors-canonical-file-name): Check file as written against
9409         authors-valid-file-names.  Do not special-case etc/.
9410         Handle `lax' logs and authors-renamed-files-regexps elements.
9412 2014-01-16  Dmitry Gutov  <dgutov@yandex.ru>
9414         * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
9415         `assoc'.  Use `nth' instead of `cdr'.  Make private.  Update all
9416         callers.
9418 2014-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
9420         * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
9421         Assume we're already in the proper buffer.
9422         Inspired by Anders Lindgren <andlind@gmail.com>.
9423         (follow-post-command-hook): Call it from the right buffer.
9424         (follow-comint-scroll-to-bottom): Adjust call.
9425         (follow-all-followers): Use get-buffer-window-list.
9427 2014-01-15  Daniel Colascione  <dancol@dancol.org>
9429         * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
9430         `buffer-file-name' in interactive-form so that we don't leave
9431         pathless file names in `file-name-history'.
9433 2014-01-15  Juri Linkov  <juri@jurta.org>
9435         * indent.el (indent-rigidly): Set deactivate-mark to nil
9436         in transient indentation mode.  (Bug#16438)
9438 2014-01-15  Dmitry Gutov  <dgutov@yandex.ru>
9440         * emacs-lisp/package.el (package-desc-keywords): New function
9441         (Bug#16222).
9442         (describe-package-1, package-all-keywords)
9443         (package--has-keyword-p): Use it.
9445 2014-01-14  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
9447         * simple.el (define-alternatives): When creating the
9448         COMMAND-alternatives variable, assign COMMAND as its definition
9449         name so that `describe-variable' can relocate it.
9451 2014-01-14  Matthew Leach  <matthew@mattleach.net>
9453         * font-lock.el (font-lock-keywords): Fix typo in docstring
9454         (bug#16307).
9456 2014-01-14  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
9458         * textmodes/ispell.el (ispell-region): Reset `in-comment' for new
9459         line instead of wrongly reset `add-coment' (bug#13577).
9461 2014-01-14  Daiki Ueno  <ueno@gnu.org>
9463         * epa-file.el (epa-file-write-region): Encode the region according
9464         to `buffer-file-format'.  Problem reported at:
9465         <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
9467 2014-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
9469         * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
9470         so it applies in the right buffer (bug#16410).
9472 2014-01-13  Daniel Colascione  <dancol@dancol.org>
9474         * textmodes/rst.el (rst-define-key): Provide deprecated
9475         keybindings through named functions instead of anonymous ones so
9476         that "??" doesn't appear in describe-mode output.
9478 2014-01-13  Bastien Guerry  <bzg@gnu.org>
9480         * simple.el (define-alternatives): Call the selected command
9481         interactively.  When setting `COMMAND--implementation' for the
9482         first time, tell the user how to chose another implementation.
9483         Enhance the docstring.
9485 2014-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
9487         * vc/log-edit.el: Fix highlighting of summary when it's the first line.
9488         (log-edit--match-first-line): New function.
9489         (log-edit-font-lock-keywords): Use it.
9490         (log-edit-mode): Make jit-lock-defer-multiline work.
9492 2014-01-13  Bastien Guerry  <bzg@gnu.org>
9494         * rect.el (rectangle-mark-mode): When the region is not active,
9495         display a message saying that the mark as been set and that
9496         rectangle mode is in use.
9497         (rectangle--highlight-for-redisplay): Only put an overlay with a
9498         visible vertical bar when (display-graphic-p) is non-nil.
9499         This partially fixes Bug#16403.
9501 2014-01-13  Juri Linkov  <juri@jurta.org>
9503         * info.el (Info-find-file): Go to DIR before displaying the error
9504         about a nonexistent file if no previous Info file is visited.
9505         Use `user-error' instead of `error' for "Info file %s does not exist".
9506         (Info-find-node-2): In case of a nonexistent node in unwind forms
9507         go to the Top node if there is no previous node to revert to.
9508         (Bug#16405)
9510 2014-01-13  Martin Rudalics  <rudalics@gmx.at>
9512         fit-frame/window-to-buffer code fixes including one for Bug#14096.
9513         * window.el (fit-frame-to-buffer): Fix doc-string.
9514         Respect window-min-height/-width.  Fit pixelwise when
9515         frame-resize-pixelwise is non-nil.  Adjust right/bottom edge
9516         when avoiding that frame goes partially off-screen.
9517         (fit-window-to-buffer): Respect window-min-height/-width
9518         (Bug#14096).
9520 2014-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
9522         * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
9523         after an empty line.
9525 2014-01-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9527         * net/shr.el (shr-render-region): Autoload.
9529 2014-01-12  Xue Fuqiao  <xfq.free@gmail.com>
9531         * net/eww.el (eww-download-directory): Rename from
9532         `eww-download-path' (Bug#16419).
9534 2014-01-12  Leo Liu  <sdl.web@gmail.com>
9536         * dired-x.el (dired-mode-map): Fix last change.
9538         * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
9540 2014-01-12  Paul Eggert  <eggert@cs.ucla.edu>
9542         Spelling fixes.
9543         * emacs-lisp/generic.el (generic--normalize-comments):
9544         Rename from generic--normalise-comments.  All uses changed.
9545         * play/bubbles.el (bubbles--neighborhood-score)
9546         (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
9547         (bubbles--neighborhood-available)
9548         (bubbles--update-neighborhood-score):
9549         Rename from names with 'neighbourhood'.  All uses changed.
9551 2014-01-12  Leo Liu  <sdl.web@gmail.com>
9553         Re-implement the feature of showing eldoc info after editing.
9554         * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
9555         (eldoc-edit-message-commands): New function.
9556         (eldoc-print-after-edit): New variable.
9557         (eldoc-pre-command-refresh-echo-area): Emit message only by
9558         eldoc-message-commands.
9559         (eldoc-mode): Restrict eldoc-message-commands to editing commands
9560         if eldoc-print-after-edit is set.  (Bug#16346)
9561         * simple.el (read--expression): Enable eldoc-mode.
9562         * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
9564 2014-01-11  Dani Moncayo  <dmoncayo@gmail.com>
9565             Eric S. Raymond  <esr@thyrsus.com>
9567         * version.el (emacs-repository-get-version): Enhance so the
9568         function works correctly in either a Bazaar or Git repo.
9570 2014-01-11  Eric S. Raymond  <esr@thyrsus.com>
9572         * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
9573         Goes with removal of the joke manpages from /etc.
9575 2014-01-10  Kenichi Handa  <handa@gnu.org>
9577         * mail/rmail.el (rmail-get-coding-system):
9578         Check rmail-get-coding-function before "funcall"ing it.
9580 2014-01-10  Glenn Morris  <rgm@gnu.org>
9582         * emacs-lisp/authors.el (authors-fixed-entries):
9583         Update for files that no longer exist.
9585 2014-01-10  Eric S. Raymond  <esr@thyrsus.com>
9587         * version.el (emacs-bzr-get-version): Restore compatibilty with
9588         24.3 (Tested).
9590 2014-01-10  Bozhidar Batsov  <bozhidar@batsov.com>
9592         * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
9593         and Podfile.
9595 2014-01-10  Eli Zaretskii  <eliz@gnu.org>
9597         * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
9599 2014-01-10  Chong Yidong  <cyd@gnu.org>
9601         * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
9603 2014-01-10  Anders Lindgren  <andlind@gmail.com>
9605         * follow.el (follow-cache-command-list): Include right-char and
9606         left-char.
9608 2014-01-10  Paul Eggert  <eggert@cs.ucla.edu>
9610         Spelling fixes.
9611         * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
9612         * woman.el (woman-mark-horizontal-position):
9613         Rename from woman-mark-horizonal-position.  Use changed.
9615 2014-01-10  Glenn Morris  <rgm@gnu.org>
9617         * info.el (info-initialize): If running uninstalled, ensure our
9618         own info files are always found first, even if INFOPATH is set.
9620         * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
9622 2014-01-09  David Engster  <deng@randomsample.de>
9624         * emacs-lisp/eieio-custom.el:
9625         * emacs-lisp/eieio-opt.el: Set generated autoload file to
9626         'eieio.el'.  This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
9627         * emacs-lisp/eieio.el: Regenerate autoloads.
9629 2014-01-09  Eric S. Raymond  <esr@thyrsus.com>
9631         * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
9632         following renames.  (Bug#8756)
9634 2014-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
9636         * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
9637         (bug#16382).
9638         (activate-mark): Add `no-tmm' argument.
9639         (set-mark, push-mark-command): Use it instead of running
9640         activate-mark-hook by hand.
9642 2014-01-08  Eric S. Raymond  <esr@thyrsus.com>
9644         In preparation for the move to git, sanitize out some
9645         Bazaar-specific names.
9647         * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
9649         * version.el (emacs-bzr-version): Name changed to
9650         emacs-repository-version.  Obsolete-variable alias made.
9651         * loadup.el: Follow through on this name change.
9652         * mail/emacsbug.el (report-emacs-bug): Factor out any
9653         assumption about the version control system in use.
9655 2014-01-08  David Engster  <deng@randomsample.de>
9657         * help-fns.el (help-fns-describe-function-functions):
9658         New variable to call functions for augmenting help buffers.
9659         (describe-function-1): Remove explicit calls to
9660         `help-fns--compiler-macro', `help-fns--parent-mode' and
9661         `help-fns--obsolete'.  Put them in above new variable instead, and
9662         call them through `run-hook-with-args'.
9663         * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
9664         `eieio-describe-class'.  Not meant for interactive use anymore,
9665         but to augment existing help buffers.  Remove optional second
9666         argument.  Create proper button for file location.
9667         Rewrite function to use `insert' instead of `princ' and `prin1' where
9668         possible.
9669         (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
9670         (eieio-method-def, eieio-class-def): Move further up.
9671         (describe-method, describe-generic, eieio-describe-method):
9672         Remove aliases.
9673         (eieio-help-constructor, eieio-help-generic): Rename from
9674         `eieio-describe-constructor' and `eieio-describe-generic', resp.
9675         Rewrite to use `insert' in the current buffer and use proper help
9676         buttons.
9677         (eieio-help-find-method-definition)
9678         (eieio-help-find-class-definition): Also accept symbols as
9679         arguments.
9680         (eieio-help-mode-augmentation-maybee): Remove.
9681         (eieio-describe-class-sb): Use `describe-function'.
9682         * emacs-lisp/eieio.el (help-fns-describe-function-functions):
9683         Add `eieio-help-generic' and `eieio-help-constructor'.
9685 2014-01-08  Paul Eggert  <eggert@cs.ucla.edu>
9687         Spelling fixes.
9688         * language/china-util.el (hz-ascii-designation):
9689         Rename from hz-ascii-designnation.
9690         (hz-ascii-designation): Rename from hz-ascii-designnation.
9691         All uses changed.
9693 2014-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9695         * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
9696         package-alist.
9698 2014-01-08  Bastien Guerry  <bzg@gnu.org>
9700         * emacs-lisp/package.el (package-delete):
9701         Correctly delete the package from package-alist.
9703 2014-01-08  Daiki Ueno  <ueno@gnu.org>
9705         * emacs-lisp/package.el (url-recreate-url): Declare.
9706         (url-http-target-url): Declare.
9707         (package-handle-response): Include requested URL in the error message.
9708         (package--check-signature): Don't re-signal errors from
9709         package--with-work-buffer.  Suggested by Stefan Monnier.
9711 2014-01-07  Bastien Guerry  <bzg@gnu.org>
9713         * minibuffer.el (completion--try-word-completion): When both a
9714         hyphen and a space are possible candidates for the character
9715         following a word, display both candidates.  (Bug#15980)
9717 2014-01-07  Martin Rudalics  <rudalics@gmx.at>
9719         * window.el (balance-windows-2): While rounding don't give a
9720         window more than the remainder.  Bug#16351, bug#16383.
9722 2014-01-07  Glenn Morris  <rgm@gnu.org>
9724         * menu-bar.el (menu-bar-help-extra-packages): Remove.
9725         (menu-bar-help-menu): Use view-external-packages instead.
9727 2014-01-07  Bastien Guerry  <bzg@gnu.org>
9729         * emacs-lisp/package.el (package-delete): Also delete the package
9730         name from `package-alist', not its description only.
9732 2014-01-07  Glenn Morris  <rgm@gnu.org>
9734         * help.el (view-external-packages):
9735         * menu-bar.el (menu-bar-help-extra-packages):
9736         Visit efaq.info rather than etc/MORE.STUFF.
9738 2014-01-07  Juri Linkov  <juri@jurta.org>
9740         * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
9741         isearch-exit and isearch-delete-char resp.  (Bug#16342, bug#16035)
9743         * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
9744         that shadows RET.  (Bug#16342)
9746 2014-01-07  Chong Yidong  <cyd@gnu.org>
9748         * isearch.el (isearch-yank-char, isearch-yank-word)
9749         (isearch-yank-line): Doc fix.
9751 2014-01-06  Stefan Monnier  <monnier@iro.umontreal.ca>
9753         * abbrev.el (define-abbrev): Beware new meaning of fboundp.
9754         * emacs-lisp/elint.el (elint-find-builtins):
9755         * emacs-lisp/eldoc.el (eldoc-symbol-function):
9756         * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
9757         (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
9758         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
9759         * apropos.el (apropos-safe-documentation):
9760         * subr.el (symbol-file): Remove redundant fboundp.
9761         * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
9763 2014-01-06  Bastien Guerry  <bzg@gnu.org>
9765         * hl-line.el (global-hl-line-overlay): Make a local variable.
9766         (global-hl-line-overlays): New variable to store all overlays.
9767         (global-hl-line-mode): Don't delete overlays from the current
9768         buffer when `global-hl-line-sticky-flag' is non-nil.
9769         (global-hl-line-highlight): Add new overlays to
9770         `global-hl-line-overlays'.
9771         (global-hl-line-unhighlight-all): New function to delete all
9772         overlays when turning off `global-hl-line-mode'.
9773         This fixes Bug#16183.
9775 2014-01-06  Stefan Monnier  <monnier@iro.umontreal.ca>
9777         * subr.el (set-transient-map): Fix nested case and docstring.
9779 2014-01-06  Tassilo Horn  <tsdh@gnu.org>
9781         * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
9782         `Texinfo' entry.
9784 2014-01-06  Daniel Colascione  <dancol@dancol.org>
9786         Fix defun navigation in vc log view.
9788         * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
9789         like `beginning-of-defun'.
9790         (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
9791         log-view-end-of-defun to log-view-end-of-defun-1.  Replace
9792         log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
9793         (log-view-extract-comment): Call `log-view-current-entry' directly
9794         instead of relying on broken `log-view-beginning-of-defun' behavior.
9796 2014-01-06  Paul Eggert  <eggert@cs.ucla.edu>
9798         Spelling fixes.
9799         * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
9800         * emacs-lisp/debug.el (cancel-debug-on-entry):
9801         * epg.el (epg-error-to-string):
9802         * files.el (recover-file):
9803         * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
9804         * mail/emacsbug.el (report-emacs-bug-hook):
9805         * mail/sendmail.el (mail-recover):
9806         * ses.el (ses-yank-resize):
9807         * term/ns-win.el (ns-print-buffer):
9808         Spelling fixes in diagnostics, mostly for "canceled" with one L.
9809         * epg.el (epg-key-capability-alist): Rename from misspelled version.
9810         All uses changed.
9811         * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
9813 2014-01-06  Leo Liu  <sdl.web@gmail.com>
9815         * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
9816         to avoid shadowing global key.  (Bug#16354)
9818 2014-01-06  Daniel Colascione  <dancol@dancol.org>
9820         * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
9821         rst-mode.
9823 2014-01-05  Martin Rudalics  <rudalics@gmx.at>
9825         * window.el (balance-windows): Add mising t to fix Bug#16351.
9827 2014-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
9829         * net/shr.el (shr-descend): Don't bug out if the anchor is empty
9830         (bug#16285).
9831         (shr-insert): If we have a word that's longer than `shr-width',
9832         break after it anyway.  Otherwise we'll do no breaking once we get
9833         such a long word.
9835 2014-01-05  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
9837         * net/eww.el (eww): Support single/double quote for search.
9838         * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
9839         (eww-history-quit): Delete and use quit-window.
9840         (eww-history-kill): Delete, because it doesn't work well and
9841         not necessary.
9842         (eww-history-mode-map): Delete some keys and add easy-menu.
9844 2014-01-05  Paul Eggert  <eggert@cs.ucla.edu>
9846         Fix misspelling of 'chinese' in rx (Bug#16237).
9847         * emacs-lisp/rx.el (rx-categories): Correct spelling of
9848         chinese-two-byte.
9850         Change subword regexps back to vars (Bug#16296).
9851         * progmodes/subword.el (subword-forward-regexp)
9852         (subword-backward-regexp): Change these back to variables.
9854 2014-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9856         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
9857         syntax-begin-function (bug#16247).
9859 2014-01-03  Chong Yidong  <cyd@gnu.org>
9861         * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
9862         (advice--docstring): Delete variable.
9863         (advice--make-1): Leave the docstring empty.
9864         (advice-add): Use function-documentation for advised docstring.
9866         * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
9867         Ignore function-documentation property when getting documentation.
9868         (ad-activate-advised-definition): Use function-documentation
9869         generate the docstring.
9870         (ad-make-advised-definition): Don't call
9871         ad-make-advised-definition-docstring.
9872         (ad-make-advised-definition-docstring, ad-advised-definition-p):
9873         Delete functions.
9875         * progmodes/sql.el (sql-help): Use function-documentation instead
9876         of dynamic-docstring-function property.  No need to autoload now.
9877         (sql--help-docstring): New variable.
9878         (sql--make-help-docstring): Use it.
9880 2014-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
9882         * ielm.el (ielm-tab): Retarget.
9883         (ielm-map): Use ielm-tab for tab.
9884         (ielm-complete-filename): Use comint-filename-completion.
9885         (ielm-complete-symbol): Remove.
9886         (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
9887         remove ielm-tab from completion-at-point-functions (bug#16224).
9889         * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
9890         Beware signals raised by predicates (bug#16201).
9892 2014-01-02  Richard Stallman  <rms@gnu.org>
9894         * dired-aux.el (dired-do-print): Handle printer-name.
9896         * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
9897         * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
9898         (rmail-epa-decrypt): Turn off mime processing.
9900         * mail/rmail.el (rmail-make-in-reply-to-field):
9901         Add parens in message-id.
9903         * mail/rmail.el (rmail-get-coding-function): Variable.
9904         (rmail-get-coding-system): Use it.
9906 2013-12-31  Eli Zaretskii  <eliz@gnu.org>
9908         * international/mule-conf.el: Unify the charset indian-is13194.
9909         (indian-is13194): Specify unify-map.
9911 2013-12-31  Leo Liu  <sdl.web@gmail.com>
9913         * subr.el (set-temporary-overlay-map): Obsolete alias.  (Bug#16305)
9915 2013-12-30  Daniel Colascione  <dancol@dancol.org>
9917         * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
9918         of printing a useless when we resume from sleep.
9920         * progmodes/sh-script.el
9921         (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
9922         in indentation code.  (Bug#16233)
9924 2013-12-28  João Távora  <joaotavora@gmail.com>
9926         * elec-pair.el (electric-pair-post-self-insert-function):
9927         Don't open extra newlines at beginning of buffer.  (Bug#16272)
9929 2013-12-28  Eli Zaretskii  <eliz@gnu.org>
9931         * frame.el (window-system-for-display): Don't allow to create a
9932         GUI frame from a -nw session on MS-Windows.  (Bug#14739)
9934 2013-12-28  Glenn Morris  <rgm@gnu.org>
9936         * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
9937         Update callers.
9939         * apropos.el (apropos-match-face):
9940         * calculator.el (calculator-displayer):
9941         * dabbrev.el (dabbrev-search-these-buffers-only):
9942         * face-remap.el (buffer-face-mode-face):
9943         * simple.el (yank-handled-properties):
9944         * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
9945         * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
9946         * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
9947         (hashcash-double-spend-database):
9948         * progmodes/ruby-mode.el (ruby-deep-indent-paren)
9949         (ruby-deep-indent-paren-style):
9950         * textmodes/flyspell.el (flyspell-auto-correct-binding):
9951         * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
9952         (rst-toc-insert-number-separator, rst-toc-insert-max-level):
9953         * vc/pcvs-defs.el (cvs-minor-mode-prefix):
9954         Specify custom types.
9956         * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
9957         * bookmark.el (bookmark-bmenu-use-header-line):
9958         * doc-view.el (doc-view-scale-internally):
9959         * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
9960         * register.el (register-preview-delay):
9961         * net/shr.el (shr-bullet):
9962         * progmodes/cfengine.el (cfengine-cf-promises)
9963         (cfengine-parameters-indent):
9964         * progmodes/octave.el (inferior-octave-error-regexp-alist):
9965         * textmodes/reftex-vars.el (reftex-label-regexps):
9966         * vc/log-edit.el (log-edit-setup-add-author): Add version.
9968         * net/tls.el (tls-certtool-program): Fix default value.
9970         * desktop.el (desktop-restore-in-current-display):
9971         * newcomment.el (comment-empty-lines):
9972         * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
9973         (idlwave-pad-keyword):
9974         * progmodes/tcl.el (tcl-tab-always-indent):
9975         * textmodes/reftex-vars.el (reftex-index-default-tag):
9976         * elec-pair.el (electric-pair-skip-whitespace):
9977         * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
9979         * emacs-lisp/authors.el (authors-ignored-files)
9980         (authors-valid-file-names, authors-renamed-files-alist): Additions.
9982 2013-12-27  Jarek Czekalski  <jarekczek@poczta.onet.pl>
9984         * shell.el (shell-dynamic-complete-command): Doc fix.
9985         (shell--command-completion-data): Shell completion now matches
9986         executable filenames from the current buffer's directory, on
9987         systems in which this behavior is the default (windows-nt, ms-dos).
9989 2013-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
9991         * net/shr.el (shr-insert): Don't infloop if the width is zero.
9993 2013-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9995         * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
9996         (bug#16251).
9998         * electric.el: Move all electric-pair-* to elec-pair.el.
9999         * elec-pair.el: New file, split from electric.el.
10001 2013-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
10003         * net/shr.el (shr-find-fill-point): Don't try to fill if the
10004         indentation level is larger than the width, because that will
10005         infloop.
10006         (shr-insert): Fill repeatedly long texts, so that Japanese is
10007         formatted correctly (bug#16263).
10008         (shr-find-fill-point): Off by one error in comparison with the
10009         indentation.
10011 2013-12-26  João Távora  <joaotavora@gmail.com>
10013         * electric.el (electric-pair-mode): More flexible engine for skip-
10014         and inhibit predicates, new options for pairing-related functionality.
10015         (electric-pair-preserve-balance): Pair/skip parentheses and quotes
10016         if that keeps or improves their balance in buffers.
10017         (electric-pair-delete-adjacent-pairs): Delete the pair when
10018         backspacing over adjacent matched delimiters.
10019         (electric-pair-open-extra-newline): Open extra newline when
10020         inserting newlines between adjacent matched delimiters.
10021         (electric--sort-post-self-insertion-hook):
10022         Sort post-self-insert-hook according to priority values when
10023         minor-modes are activated.
10024         * simple.el (newline-and-indent): Call newline with interactive
10025         set to t.
10026         (blink-paren-post-self-insert-function): Set priority to 100.
10027         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
10028         Use electric-pair-text-pairs to pair backtick-and-quote in strings and
10029         comments.  Locally set electric-pair-skip-whitespace to 'chomp and
10030         electric-pair-open-newline-between-pairs to nil.
10032 2013-12-26  Fabián Ezequiel Gallina  <fgallina@gnu.org>
10034         * progmodes/python.el: Use lexical-binding.
10035         (python-nav-beginning-of-defun): Stop searching ASAP.
10037 2013-12-25  Xue Fuqiao  <xfq.free@gmail.com>
10039         * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
10040         Fix interactive spec.  Doc fix.  (Bug#15754)
10042 2013-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
10044         * emacs-lisp/byte-run.el (eval-when-compile):
10045         * progmodes/cc-defs.el (cc-eval-when-compile):
10046         Fix edebug spec (bug#16184).
10048 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
10050         * net/shr.el (shr-visit-file): Remove debugging function.
10051         (shr-insert): Don't infloop if we can't find a good place to break
10052         the line (bug#16256).
10054 2013-12-25  Fabián Ezequiel Gallina  <fgallina@gnu.org>
10056         * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
10057         (python-nav--lisp-forward-sexp-safe): Use it.  Rename from
10058         python-nav-lisp-forward-sexp-safe.
10059         (python-nav--forward-sexp): New argument SAFE allows switching
10060         forward sexp movement behavior for parens.
10061         (python-nav-forward-sexp): Throw errors on unterminated parens
10062         (Bug#16191).
10063         (python-nav-backward-sexp, python-nav-forward-sexp-safe)
10064         (python-nav-backward-sexp-safe): New functions.
10065         (python-shell-buffer-substring):
10066         Use `python-nav-forward-sexp-safe'.
10068 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
10070         * net/shr.el (shr-find-fill-point): Don't break lines before a
10071         quotation mark.
10072         (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
10073         (shr-find-fill-point): Remove the special checks for the quotation
10074         mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
10076 2013-12-25  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
10078         * net/eww.el (eww-form-textarea): Use a different face for
10079         textareas than text input since they have different keymaps
10080         (bug#16142).
10082 2013-12-24  Fabián Ezequiel Gallina  <fgallina@gnu.org>
10084         * progmodes/python.el (python-nav-beginning-of-statement):
10085         Speed up (Bug#15295).
10087 2013-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
10089         * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
10090         the window configuration.
10092 2013-12-24  Eli Zaretskii  <eliz@gnu.org>
10094         * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
10095         we run on MS-Windows or MS-DOS.
10097 2013-12-24  Martin Rudalics  <rudalics@gmx.at>
10099         * window.el (balance-windows-area): Call window-size instead of
10100         window-height and window-width.  Bug#16241.
10102 2013-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
10104         * net/eww.el (eww-bookmark-quit): Remove.
10105         (eww-bookmark-browse): Restore the window configuration when you
10106         choose a bookmark (bug#16144).
10108 2013-12-24  Daniel Colascione  <dancol@dancol.org>
10110         * icomplete.el: Remove redundant :group arguments to `defcustom'
10111         throughout.
10112         (icomplete-show-matches-on-no-input): New customizable variable.
10113         (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
10114         we have something to show.
10115         (icomplete-exhibit): Compute completions even if we have no user input.
10117 2013-12-23  Daniel Colascione  <dancol@dancol.org>
10119         * icomplete.el: Move `provide' to end of file.
10121 2013-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
10123         * net/gnutls.el (gnutls-verify-error): Add version tag.
10125 2013-12-23  Chong Yidong  <cyd@gnu.org>
10127         * subr.el (set-transient-map): Rename from
10128         set-temporary-overlay-map.  Doc fix.
10130         * face-remap.el (text-scale-adjust):
10131         * indent.el (indent-rigidly):
10132         * kmacro.el (kmacro-call-macro):
10133         * minibuffer.el (minibuffer-force-complete):
10134         * repeat.el (repeat):
10135         * simple.el (universal-argument--mode):
10136         * calendar/todo-mode.el (todo-insert-item--next-param):
10137         * progmodes/f90.el (f90-abbrev-start): Callers changed.
10139         * indent.el (indent-rigidly): Use substitute-command-keys.
10141 2013-12-22  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
10143         * net/eww.el (eww-tag-select): Add text-property to jump to next
10144         select field.
10145         (eww): Add non-supported ftp error.
10147 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
10149         * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
10150         comments.  Handle electric indent after typing `?' and `!'.
10152 2013-12-22  Chong Yidong  <cyd@gnu.org>
10154         * faces.el (face-spec-recalc): If the theme specs are not
10155         applicable to a frame, fall back on the defface spec.
10156         This prevents themes from obliterating faces on low-color terminals.
10158 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
10160         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
10161         after `{'.  We need it after block openers, and it doesn't seem
10162         to hurt after hash openers.
10164 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
10166         * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
10167         extracted from `ruby-smie-rules'.
10168         (ruby--electric-indent-chars): New variable.
10169         (ruby--electric-indent-p): New function.
10170         (ruby-mode): Use `electric-indent-functions' instead of
10171         `electric-indent-chars'.
10173 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
10175         * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
10176         docstring.
10177         (ruby-smie-rules): Indent plus one level after `=>'.
10179 2013-12-21  Richard Stallman  <rms@gnu.org>
10181         * simple.el (newline): Doc fix.
10183 2013-12-21  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
10185         * net/eww.el (eww-list-histories, eww-list-histories)
10186         (eww-history-browse, eww-history-quit, eww-history-kill)
10187         (eww-history-mode-map, eww-history-mode): New command and
10188         functions to list browser histories.
10189         (eww-form-text): Support text form with disabled
10190         and readonly attributes.
10191         (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
10193 2013-12-21  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
10195         * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
10196         (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
10197         (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
10198         (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
10199         Use `user-error'.
10200         (eww-bookmark-mode-map): Add menu.
10201         (eww-render, eww-mode): Use `setq-local'.
10202         (eww-tool-bar-map): New variable.
10203         (eww-mode): Set `tool-bar-map'.
10204         (eww-view-source): Check for `html-mode' with `fboundp'.
10206 2013-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10208         * net/shr.el (shr--extract-best-source): Don't bug out on audio
10209         elements with text inside.  Also remove debugging.
10211 2013-12-21  Jan Djärv  <jan.h.d@swipnet.se>
10213         * cus-start.el (all): Add ns-use-srgb-colorspace.
10215 2013-12-21  Chong Yidong  <cyd@gnu.org>
10217         * custom.el (custom-theme-recalc-face): Do nothing if the face is
10218         undefined.  Thus, theme settings for undefined faces do not take
10219         effect until the faces are defined with defface, the same as with
10220         theme variables.
10222         * faces.el (face-spec-set): Use face-spec-recalc in all cases.
10223         (face-spec-reset-face): Don't assign extra properties in temacs.
10224         (face-spec-recalc): Apply X resources too.
10226 2013-12-21  Chong Yidong  <cyd@gnu.org>
10228         * faces.el (face-spec-set):
10229         * cus-face.el (custom-theme-set-faces, custom-set-faces):
10230         * custom.el (defface): Doc fixes (Bug#16203).
10232         * indent.el (indent-rigidly-map): Add docstring, and move commands
10233         into named functions.
10234         (indent-rigidly-left, indent-rigidly-right)
10235         (indent-rigidly-left-to-tab-stop)
10236         (indent-rigidly-right-to-tab-stop): New functions.  Decide on
10237         indentation direction based on bidi direction, and accumulate
10238         sequential commands in a single undo boundary.
10239         (indent-rigidly--pop-undo): New utility function.
10241 2013-12-20  Juanma Barranquero  <lekktu@gmail.com>
10243         * faces.el (read-face-name): Require crm.el when using crm-separator.
10245 2013-12-20  Daniel Colascione  <dancol@dancol.org>
10247         * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
10248         so that we don't reflow comments into the shebang line.
10250 2013-12-20  Juri Linkov  <juri@jurta.org>
10252         * saveplace.el (save-place-to-alist): Add `dired-filename' as
10253         a position when `dired-directory' is non-nil.  Check integer
10254         positions with `integerp'.
10255         (toggle-save-place, save-places-to-alist): Add check for
10256         `dired-directory'.
10257         (save-place-find-file-hook): Check integer positions with
10258         `integerp'.
10259         (save-place-dired-hook): Use `dired-goto-file' when
10260         `dired-filename' is found in the assoc list.  Check integer
10261         positions with `integerp'.
10262         (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
10264         * dired.el (dired-initial-position-hook): Rename back from
10265         `dired-initial-point-hook'.
10266         (dired-initial-position): Rename `dired-initial-point-hook' to
10267         `dired-initial-position-hook'.
10268         (dired-file-name-at-point): Doc fix.  (Bug#15329)
10270 2013-12-20  Juri Linkov  <juri@jurta.org>
10272         * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
10273         (read-regexp-suggestions): New function.
10274         (read-regexp): Use `read-regexp-defaults-function' to get default values.
10275         Use `read-regexp-suggestions'.  Add non-empty default to history
10276         for empty input.
10277         (occur-read-regexp-defaults-function): Remove function.
10278         (occur-read-primary-args): Use `regexp-history-last' instead of
10279         `occur-read-regexp-defaults-function'.
10281         * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
10282         (hi-lock-line-face-buffer, hi-lock-face-buffer)
10283         (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
10284         `hi-lock-read-regexp-defaults-function'.  Doc fix.
10285         (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
10286         with `find-tag-default-as-symbol-regexp'.  Doc fix.
10287         (hi-lock-read-regexp-defaults): Remove function.
10288         (hi-lock-regexp-okay): Add check for null.
10290         * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
10291         the arg DEFAULTS.  Move formatting of the prompt to `read-regexp'.
10293         * subr.el (find-tag-default-as-symbol-regexp): New function.
10294         (find-tag-default-as-regexp): Move symbol regexp formatting to
10295         `find-tag-default-as-symbol-regexp'.
10297 2013-12-20  E Sabof  <esabof@gmail.com>  (tiny change)
10299         * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
10300         (Bug#14179)
10302 2013-12-20  Stephen Berman  <stephen.berman@gmx.net>
10304         * calendar/todo-mode.el: New implementation of item insertion
10305         commands and key bindings.
10306         (todo-key-prompt): New face.
10307         (todo-insert-item): New command.
10308         (todo-insert-item--parameters): New defconst, replacing defvar
10309         todo-insertion-commands-args-genlist.
10310         (todo-insert-item--param-key-alist): New defconst, replacing
10311         defvar todo-insertion-commands-arg-key-list.
10312         (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
10313         (todo-insert-item--argsleft, todo-insert-item--apply-args)
10314         (todo-insert-item--next-param): New functions.
10315         (todo-insert-item--args, todo-insert-item--argleft)
10316         (todo-insert-item--argsleft, todo-insert-item--newargsleft):
10317         New variables.
10318         (todo-key-bindings-t): Change binding of "i" from
10319         todo-insertion-map to todo-insert-item.
10320         (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
10321         (todo-insertion-command-name, todo-insertion-commands-names)
10322         (todo-define-insertion-command, todo-insertion-commands)
10323         (todo-insertion-key-bindings, todo-insertion-map): Remove.
10325 2013-12-20  Stephen Berman  <stephen.berman@gmx.net>
10327         * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
10328         (todo-toggle-item-highlighting): Use eval-and-compile instead of
10329         eval-when-compile.
10330         (todo-move-category): Allow choosing a non-existing todo file to
10331         move the category to, and create that file.
10332         (todo-default-priority): New user option.
10333         (todo-set-item-priority): Use it.
10334         (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
10335         (desktop-restore-file-buffer): Declare.
10336         (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
10337         (todo-modes-set-2): Locally set desktop-save-buffer to
10338         todo-desktop-save-buffer.
10339         (todo-mode, todo-archive-mode, todo-filtered-items-mode)
10340         (auto-mode-alist): Add autoload cookie.
10342 2013-12-20  Bozhidar Batsov  <bozhidar@batsov.com>
10344         * emacs-lisp/subr-x.el: Renamed from helpers.el.
10345         helpers.el was a poor choice of name.
10346         (string-remove-prefix): New function.
10347         (string-remove-suffix): New function.
10349 2013-12-20  Martin Rudalics  <rudalics@gmx.at>
10351         Fix assignment for new window total sizes.
10352         * window.el (window--pixel-to-size): Remove function.
10353         (window--pixel-to-total-1, window--pixel-to-total):
10354         Fix calculation of new total sizes.
10356 2013-12-20  Vitalie Spinu  <spinuvit@gmail.com>
10358         * comint.el (comint-output-filter): Fix rear-nonsticky property
10359         placement (Bug#16010).
10361 2013-12-20  Chong Yidong  <cyd@gnu.org>
10363         * faces.el (read-color): Minor fix for completion function.
10365 2013-12-20  Dmitry Gutov  <dgutov@yandex.ru>
10367         * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
10368         New option.  (Bug#16182)
10369         (ruby-smie--indent-to-stmt-p): Use it.
10370         (ruby-smie-rules): Revert the logic in the handling of `when'.
10371         Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
10372         (ruby-deep-arglist, ruby-deep-indent-paren)
10373         (ruby-deep-indent-paren-style): Update docstrings to note that the
10374         vars don't have any effect with SMIE.
10376 2013-12-20  Jay Belanger  <jay.p.belanger@gmail.com>
10378         * calc/calc.el (calc-enter, calc-pop): Use the variable
10379         `calc-context-sensitive-enter'.
10381 2013-12-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10383         * net/shr.el (shr-insert): Protect against infloops in degenerate
10384         tables.
10386 2013-12-20  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
10388         * progmodes/octave.el (octave): Add link to manual and octave
10389         homepage.
10390         (octave-mode-menu): Link to octave-mode manual.
10392 2013-12-20  Leo Liu  <sdl.web@gmail.com>
10394         * skeleton.el (skeleton-pair-insert-maybe): Disable newline
10395         insertion using skeleton-end-newline.  (Bug#16138)
10397 2013-12-20  Juri Linkov  <juri@jurta.org>
10399         * replace.el (occur-engine): Use `add-face-text-property'
10400         to add the face property to matches and titles.  (Bug#14645)
10402         * hi-lock.el (hi-green): Use lighter color "light green" closer to
10403         the palette of other hi-lock colors.
10404         (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
10406 2013-12-19  Juri Linkov  <juri@jurta.org>
10408         * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
10409         Put :advertised-binding on `M-s c', `M-s r', `M-s e'.  (Bug#16035)
10410         (minibuffer-history-symbol): Move variable declaration closer to
10411         its usage.
10413         * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
10414         (Bug#14785)
10416 2013-12-19  Juri Linkov  <juri@jurta.org>
10418         * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
10419         New function.
10420         (log-edit-hook): Add it to :options.  (Bug#16170)
10422 2013-12-19  Juri Linkov  <juri@jurta.org>
10424         * simple.el (eval-expression-print-format): Don't check for
10425         command names and the last command.  Always display additional
10426         formats of the integer result in the echo area, and insert them
10427         to the current buffer only with a zero prefix arg.
10428         Display character when char-displayable-p is non-nil.
10429         (eval-expression): With a zero prefix arg, set `print-length' and
10430         `print-level' to nil, and insert the integer values from
10431         `eval-expression-print-format' at the end.  Doc fix.  (Bug#12985)
10433         * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
10434         `eval-last-sexp-arg-internal'.  Doc fix.
10435         (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
10436         `eval-last-sexp-print-value'.  Doc fix.
10437         (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
10438         Set `print-length' and `print-level' to nil when arg is zero.
10439         (eval-last-sexp): Doc fix.
10440         (eval-defun-2): Print the integer values from
10441         `eval-expression-print-format' at the end.
10443         * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
10444         values from `eval-expression-print-format' at the end.
10446         * ielm.el (ielm-eval-input): Print the integer
10447         values from `eval-expression-print-format' at the end.
10449 2013-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
10451         * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
10452         2013-12-11T19:01:44Z!tzz@lifelogs.com.
10454 2013-12-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10456         * hl-line.el (hl-line-make-overlay): New fun.  Set priority (bug#16192).
10457         (hl-line-highlight, global-hl-line-highlight): Use it.
10458         (hl-line-overlay): Use defvar-local.
10460 2013-12-19  Jan Djärv  <jan.h.d@swipnet.se>
10462         * term/ns-win.el: Require dnd.
10463         (global-map): Remove drag items.
10464         (ns-insert-text, ns-set-foreground-at-mouse)
10465         (ns-set-background-at-mouse):
10466         Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
10467         (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
10468         New functions.
10470 2013-12-19  Glenn Morris  <rgm@gnu.org>
10472         * emacs-lisp/ert.el (ert-select-tests):
10473         Fix string/symbol mixup.  (Bug#16121)
10475 2013-12-19  Dmitry Gutov  <dgutov@yandex.ru>
10477         * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
10478         keywords to their parent.
10480 2013-12-19  Dmitry Gutov  <dgutov@yandex.ru>
10482         * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
10483         first arg to be a string (fixed dead code), or an operator symbol.
10484         (ruby-smie--forward-token): Tokenize ` @ ' before strings and
10485         operator symbols.
10486         (ruby-smie-rules): Remove parent token check in the `.' clause, it
10487         did nothing.  Don't respond to `(:after ".")', it will be called
10488         with :before anyway.  Remove the ` @ ' rule, it didn't seem to
10489         change anything.  Only return indentation for binary operators
10490         when they are hanging.  De-dent opening paren when its parent is
10491         `.', otherwise it looks bad when the dot is not at bol or eol
10492         (bug#16182).
10494 2013-12-19  Juri Linkov  <juri@jurta.org>
10496         * replace.el (query-replace-read-args): Split a non-negative arg
10497         and a negative arg into separate elements.
10498         (query-replace, query-replace-regexp, replace-string)
10499         (replace-regexp): Add arg `backward'.  Doc fix.
10500         (replace-match-maybe-edit): When new arg `backward' is non-nil,
10501         move point to the beginning of the match.
10502         (replace-search, replace-highlight): Use new arg `backward'
10503         to set the value of `isearch-forward'.
10504         (perform-replace): Add arg `backward' and use it to perform
10505         replacement backward.  (Bug#14979)
10507         * isearch.el (isearch-query-replace): Use a negative prefix arg
10508         to call `perform-replace' with a non-nil arg `backward'.
10510 2013-12-18  Juri Linkov  <juri@jurta.org>
10512         * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
10513         to the default list.  Move `log-edit-show-files' to the end.
10514         Add more available functions to options.
10515         (log-edit): Move default specific settings to
10516         `log-edit-insert-message-template'.  Don't move point.
10517         (log-edit-insert-message-template): New function.
10518         (log-edit-insert-changelog): Add `save-excursion' and don't move point.
10519         (Bug#16170)
10521 2013-12-18  Juri Linkov  <juri@jurta.org>
10523         * help-mode.el (help-mode-map): Bind "l" to help-go-back,
10524         and "r" to help-go-forward for compatibity with Info.  (Bug#16178)
10526 2013-12-18  Leo Liu  <sdl.web@gmail.com>
10528         * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
10529         (Bug#16186)
10531 2013-12-18  Eli Zaretskii  <eliz@gnu.org>
10533         * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
10534         formats for displaying file sizes when the -s switch is given.
10535         Instead, compute a separate format for displaying the size in
10536         blocks, which is displayed in addition to the "regular" size.
10537         When -h is given in addition to -s, produce size in blocks in
10538         human-readable form as well.  (Bug#16179)
10540 2013-12-18  Tassilo Horn  <tsdh@gnu.org>
10542         * textmodes/reftex-vars.el (reftex-label-alist-builtin):
10543         Reference tables with ~\ref{...} instead of only \ref{...}.
10545 2013-12-18  Chong Yidong  <cyd@gnu.org>
10547         * cus-edit.el (custom-magic-alist): Fix "themed" description
10548         (Bug#14348).
10550         * custom.el (custom-push-theme): If custom--inhibit-theme-enable
10551         is non-nil, do not create a new entry in the symbol's theme-value
10552         or theme-face property; update theme-settings only (Bug#14664).
10553         (custom-available-themes): Doc fix.
10555         * cus-theme.el (custom-new-theme-mode-map): Add bindings
10556         (Bug#15674).
10558         * replace.el (occur-engine): Avoid infloop (Bug#7593).
10560 2013-12-18  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
10562         * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
10563         (Bug#13914).
10565 2013-12-18  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
10567         * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
10569 2013-12-18  Glenn Morris  <rgm@gnu.org>
10571         * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
10572         * cus-start.el (load-prefer-newer): New option.
10574 2013-12-18  Le Wang  <l26wang@gmail.com>
10576         * comint.el (comint-previous-matching-input-from-input):
10577         Retain point (Bug#13404).
10579 2013-12-18  Chong Yidong  <cyd@gnu.org>
10581         * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
10583 2013-12-18  Glenn Morris  <rgm@gnu.org>
10585         * mail/emacsbug.el (report-emacs-bug):
10586         Only mention enable-multibyte-characters if non-standard.
10588 2013-12-17  Juri Linkov  <juri@jurta.org>
10590         * arc-mode.el (archive-extract-by-file): Check if directory exists
10591         before deletion to not show irrelevant errors if it doesn't exist.
10593 2013-12-17  Juri Linkov  <juri@jurta.org>
10595         * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
10596         (Bug#14751)
10598         * net/eww.el (browse-web): Add alias to `eww'.
10599         (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
10600         Bind "S-SPC" to `scroll-down-command'.  (Bug#16178)
10602         * net/browse-url.el (browse-url-browser-function): Move `eww'
10603         closer to similar functions.
10605         * startup.el (fancy-startup-screen, fancy-about-screen):
10606         Set browse-url-browser-function to eww-browse-url locally.
10607         (Bug#14751)
10609 2013-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10611         * window.el (window--pixel-to-total): Remove unused `mini' var.
10612         (maximize-window, minimize-window): Remove unused `pixelwise' arg.
10613         (split-window): Remove unused `new' var.
10614         (window--display-buffer): Remove unused `frame' and `delta' vars.
10615         (fit-window-to-buffer): Remove unused vars `frame', `display-height',
10616         and display-width'.
10618 2013-12-17  Martin Rudalics  <rudalics@gmx.at>
10620         * dired.el (dired-mark-pop-up):
10621         * register.el (register-preview): Don't bind
10622         split-height-threshold here since it's now done in
10623         display-buffer-below-selected.
10625 2013-12-17  oblique  <psyberbits@gmail.com>  (tiny change)
10627         * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
10628         xterm-rgb-convert-to-16bit.
10629         (rxvt-register-default-colors): Standardize with
10630         xterm-register-default-colors (Bug#14078).
10632 2013-12-17  Dima Kogan  <dima@secretsauce.net>  (tiny change)
10634         * simple.el (kill-region): Pass mark first, then point, so that
10635         kill-append works right (Bug#12819).
10636         (copy-region-as-kill, kill-ring-save): Likewise.
10638 2013-12-17  Leo Liu  <sdl.web@gmail.com>
10640         * net/rcirc.el (rcirc-add-face):
10641         * eshell/em-prompt.el (eshell-emit-prompt):
10642         * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
10643         (Bug#16167)
10645 2013-12-17  Chong Yidong  <cyd@gnu.org>
10647         * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
10648         Suggested by Xue Fuqiao.
10650 2013-12-17  Dmitry Gutov  <dgutov@yandex.ru>
10652         * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
10654 2013-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
10656         * net/shr.el (shr-insert-document): Remove unused var
10657         `shr-preliminary-table-render'.
10658         (shr-rescale-image): Remove unused arg `force'.
10659         (shr-put-image): Update calls accordingly.
10660         (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
10662 2013-12-17  Dmitry Gutov  <dgutov@yandex.ru>
10664         * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
10665         (smie-indent-close): Call `smie-indent--rule-1' with METHOD
10666         :close-all, to see which indentation method to use (Bug#16116).
10667         (smie-rules-function): Document the method :close-all.
10669 2013-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
10671         * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
10673         * net/eww.el (eww-display-html): If we can't find the anchor we're
10674         looking for, then go to point-min.
10676 2013-12-16  Paul Eggert  <eggert@cs.ucla.edu>
10678         Fix problems with CANNOT_DUMP and EMACSLOADPATH.
10679         * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
10680         * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
10681         Expand dir too, in case it's relative.
10683 2013-12-16  Juri Linkov  <juri@jurta.org>
10685         * desktop.el (desktop-auto-save-timeout): Change default to
10686         `auto-save-timeout'.  Doc fix.
10687         (desktop-save): Skip the timestamp in desktop-saved-frameset
10688         when checking for auto-save changes.
10689         (desktop-auto-save): Don't call desktop-auto-save-set-timer since
10690         `desktop-auto-save' is called repeatedly by the idle timer.
10691         (desktop-auto-save-set-timer): Replace `run-with-timer' with
10692         `run-with-idle-timer' and a non-nil arg REPEAT.  Doc fix.
10693         (Bug#15331)
10695 2013-12-16  Juri Linkov  <juri@jurta.org>
10697         * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
10698         (Bug#16035)
10699         (isearch-pre-command-hook): Check `this-command' for symbolp.
10701 2013-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
10703         * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
10705 2013-12-16  Teodor Zlatanov  <tzz@lifelogs.com>
10707         * progmodes/cfengine.el (cfengine3--current-word): Remove.
10708         (cfengine3--current-function): Bring in the current-function
10709         functionality from `cfengine3--current-word'.
10710         (cfengine3-completion-function): Bring in the
10711         bounds-of-current-word functionality from
10712         `cfengine3--current-word'.
10714 2013-12-16  Martin Rudalics  <rudalics@gmx.at>
10716         * window.el (display-buffer-below-selected):
10717         Bind split-height-threshold to 0 as suggested by Juri Linkov.
10719 2013-12-16  Leo Liu  <sdl.web@gmail.com>
10721         * progmodes/compile.el (compile-goto-error): Do not push-mark.
10722         Remove NOMSG arg and all uses changed.
10724 2013-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
10726         * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
10727         (cua--deactivate-rectangle): Don't deactivate the mark.
10728         (cua-set-rectangle-mark): Don't set mark-active since
10729         cua--activate-rectangle already does it for us.
10730         (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
10731         non-rectangular region.
10733         * emulation/cua-base.el (cua-repeat-replace-region):
10734         Use with-current-buffer.
10736         * net/gnutls.el: Use cl-lib.
10737         (gnutls-negotiate): `mapcan' -> cl-mapcan.
10739 2013-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
10741         * emacs-lisp/package.el (package-built-in-p): Support both
10742         built-in and the package.el converted package descriptions.
10743         (package-show-package-list): Allow keywords.
10744         (package-keyword-button-action): Use it instead of
10745         `finder-list-matches'.
10746         (package-menu-filter-interactive): Interactive filtering (by
10747         keyword) function.
10748         (package-menu--generate): Support keywords and change keymappings
10749         and headers when they are given.
10750         (package--has-keyword-p): Helper function.
10751         (package-menu--refresh): Use it.
10752         (package--mapc): Helper function.
10753         (package-all-keywords): Use it.
10754         (package-menu-mode-map): Set up menu items and keybindings to
10755         provide a filtering UI.
10757 2013-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
10759         * net/gnutls.el (gnutls-verify-error): New defcustom to control
10760         the behavior when a certificate fails validation.  Defaults to
10761         old behavior: never abort, just warn.
10762         (gnutls-negotiate): Use it.
10764 2013-12-14  Martin Rudalics  <rudalics@gmx.at>
10766         * window.el (display-buffer-below-selected): Never split window
10767         horizontally.  Suggested by Juri Linkov <juri@jurta.org>.
10769 2013-12-14  Tom Willemse  <tom@ryuslash.org>  (tiny change)
10771         * emacs-lisp/package.el (package--prepare-dependencies): New function.
10772         (package-buffer-info): Use it (bug#15108).
10774 2013-12-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10776         * icomplete.el (icomplete-completions): Make sure the prefix is already
10777         displayed elsewhere before hiding it (bug#16219).
10779 2013-12-14  Dmitry Gutov  <dgutov@yandex.ru>
10781         * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
10782         open-paren tokens when preceded by a open-paren, too.
10783         (ruby-smie-rules): Handle virtual indentation after open-paren
10784         tokens specially.  If there is code between it and eol, return the
10785         column where is starts (Bug#16118).
10787 2013-12-13  Teodor Zlatanov  <tzz@lifelogs.com>
10789         * progmodes/cfengine.el: Fix `add-hook' doc.
10790         (cfengine-mode-syntax-functions-regex): Initialize sensibly.
10791         (cfengine3--current-word): Fix parameters.
10792         (cfengine3-make-syntax-cache): Simplify further.
10793         (cfengine3-completion-function, cfengine3--current-function):
10794         Use `assq' for symbols.
10795         (cfengine3--current-function): Fix `cfengine3--current-word' call.
10797 2013-12-13  Glenn Morris  <rgm@gnu.org>
10799         * loadup.el (load-path): Warn if site-load or site-init changes it.
10800         No more need to reset it when bootstrapping.
10802 2013-12-13  Teodor Zlatanov  <tzz@lifelogs.com>
10804         * progmodes/cfengine.el (cfengine-cf-promises): Add more default
10805         locations for cf-promises.
10806         (cfengine-mode-syntax-functions-regex): New caching variable.
10807         (cfengine3-fallback-syntax): Fallback syntax for cases where
10808         cf-promises doesn't run.
10809         (cfengine3--current-word): Reimplement using
10810         `cfengine-mode-syntax-functions-regex'.
10811         (cfengine3-completion-function, cfengine3--current-function):
10812         Use `cfengine3-make-syntax-cache' directly.
10813         (cfengine3-clear-syntax-cache): New function.
10814         (cfengine3-make-syntax-cache): Simplify and create
10815         `cfengine-mode-syntax-functions-regex' on demand.
10816         (cfengine3-format-function-docstring): Don't call
10817         `cfengine3-make-syntax-cache' explicitly.
10819 2013-12-13  Martin Rudalics  <rudalics@gmx.at>
10821         Fix windmove-find-other-window broken after pixelwise resizing
10822         (Bug#16017).
10823         * windmove.el (windmove-other-window-loc): Revert change from
10824         2013-12-04.
10825         (windmove-find-other-window): Call window-in-direction.
10826         * window.el (window-in-direction): New arguments SIGN, WRAP and
10827         MINI to emulate original windmove-find-other-window behavior.
10829 2013-12-13  Dmitry Gutov  <dgutov@yandex.ru>
10831         * simple.el (blink-matching--overlay): New variable.
10832         (blink-matching-open): Instead of moving point, highlight the
10833         matching paren with an overlay
10834         (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
10836         * faces.el (paren-showing-faces, show-paren-match)
10837         (show-paren-mismatch): Move from paren.el.
10839 2013-12-13  Leo Liu  <sdl.web@gmail.com>
10841         * indent.el (indent-region): Disable progress reporter in
10842         minibuffer.  (Bug#16108)
10844         * bindings.el (visual-order-cursor-movement): Fix version.
10846 2013-12-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
10848         * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
10849         Also match after beginning of line.
10850         (python-pdbtrack-set-tracked-buffer): Fix logic for remote
10851         files.  Thanks to Russell Sim.  (Bug#15378)
10853 2013-12-13  Juri Linkov  <juri@jurta.org>
10855         * simple.el <Keypad support>: Remove key bindings duplicated
10856         with bindings.el.  (Bug#14397)
10858 2013-12-13  Juri Linkov  <juri@jurta.org>
10860         * comint.el (comint-mode-map): Replace `delete-char' with
10861         `delete-forward-char'.  (Bug#16109)
10863 2013-12-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
10865         * progmodes/python.el (python-indent-calculate-indentation):
10866         Fix de-denters cornercase.  (Bug#15731)
10868 2013-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10870         * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
10871         (advice--make): Pay attention to `depth'.
10872         (advice--make-1): Don't autoload commands eagerly.
10873         * emacs-lisp/elp.el (elp-instrument-function):
10874         * emacs-lisp/trace.el (trace-function-internal):
10875         * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
10877         * iswitchb.el (iswitchb-mode): Don't belittle ido.
10879 2013-12-12  Eli Zaretskii  <eliz@gnu.org>
10881         * term/w32-win.el (w32-handle-dropped-file):
10882         * startup.el (normal-top-level):
10883         * net/browse-url.el (browse-url-file-url):
10884         * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
10885         decode file names using 'utf-8' rather than
10886         file-name-coding-system.
10888 2013-12-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
10890         * progmodes/python.el (python-indent-context)
10891         (python-indent-calculate-indentation): Fix auto-identation
10892         behavior for comment blocks.  (Bug#15916)
10894 2013-12-12  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
10896         * progmodes/python.el (python-indent-calculate-indentation):
10897         When determining indentation, don't treat "return", "pass", etc., as
10898         operators when they are just string constituents.  (Bug#15812)
10900 2013-12-12  Juri Linkov  <juri@jurta.org>
10902         * uniquify.el (uniquify-buffer-name-style): Change default to
10903         `post-forward-angle-brackets'.
10905         * menu-bar.el (menu-bar-options-menu): Don't require preloaded
10906         `uniquify'.  Change default to `post-forward-angle-brackets'.
10908 2013-12-11  Glenn Morris  <rgm@gnu.org>
10910         * emacs-lisp/package.el (finder-list-matches):
10911         Autoload rather than falsely declaring.
10913 2013-12-11  Teodor Zlatanov  <tzz@lifelogs.com>
10915         * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
10916         (eww-mode-map): Use them.
10918 2013-12-11  Martin Rudalics  <rudalics@gmx.at>
10920         * window.el (display-buffer-in-side-window): Fix doc-string
10921         (Bug#16115).
10923 2013-12-11  Juanma Barranquero  <lekktu@gmail.com>
10925         * vc/vc-git.el: Silence byte-compiler warnings.
10926         (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
10927         (log-edit-set-header): Declare.
10929 2013-12-11  Eli Zaretskii  <eliz@gnu.org>
10931         * Makefile.in (custom-deps, finder-data): Run output file names
10932         through unmsys--file-name.  (Bug#16099)
10934 2013-12-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10936         * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
10937         comment-start-skip, which fails when that uses submatch 1 (bug#16041).
10939         * emulation/cua-base.el (cua-paste): Add `delete-selection' property
10940         instead of deleting the selection "by hand" (bug#16098).
10941         Rely on insert-for-yank to yank rectangles.
10942         (cua-highlight-region-shift-only): Mark obsolete.
10943         (cua-mode): Don't enable/disable transient-mark-mode,
10944         shift-select-mode (cua-mode works both with and without them), and
10945         pc-selection-mode (obsolete).
10946         * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
10947         (cua--deactivate-rectangle): Deactivate it.
10949         * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
10950         (delete-selection-helper): Make sure yank starts at the top of the
10951         deleted region.
10952         (minibuffer-keyboard-quit): Use region-active-p.
10954         * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
10956         * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
10957         to `delete' (bug#16109).
10959 2013-12-11  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
10961         * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
10962         info manual and show keybindings and set `:group' keyword.
10964 2013-12-11  Juri Linkov  <juri@jurta.org>
10966         * delsel.el (delete-active-region): Let-bind `this-command'
10967         to prevent `kill-region' from changing its original value.
10968         (delete-selection-helper): Handle `overwrite-mode' for the type
10969         `kill' exactly the same way as for the type `t'.
10970         (insert-char, quoted-insert, reindent-then-newline-and-indent):
10971         Support more commands.  (Bug#13312)
10973 2013-12-11  Juri Linkov  <juri@jurta.org>
10975         * bindings.el: Map kp keys to non-kp keys systematically
10976         with basic modifiers control, meta and shift.  (Bug#14397)
10978 2013-12-11  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
10980         * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
10981         "Close browser" menu items.  Fix wrong function of "List
10982         bookmarks".
10984 2013-12-11  Juri Linkov  <juri@jurta.org>
10986         * misearch.el (multi-isearch-buffers): Set the value of
10987         `multi-isearch-buffer-list' globally.  Set NO-RECURSIVE-EDIT
10988         arg of isearch-forward to t.
10989         (multi-isearch-buffers-regexp): Set the value of
10990         `multi-isearch-buffer-list' globally.  Set NO-RECURSIVE-EDIT
10991         arg of isearch-forward-regexp to t.
10992         (multi-isearch-files): Set the value of
10993         `multi-isearch-file-list' globally.  Set NO-RECURSIVE-EDIT
10994         arg of isearch-forward to t.
10995         (multi-isearch-files-regexp): Set the value of
10996         `multi-isearch-file-list' globally.  Set NO-RECURSIVE-EDIT
10997         arg of isearch-forward-regexp to t.  (Bug#16035)
10999         * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
11000         arg of isearch-forward to t.
11001         (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
11002         arg of isearch-forward-regexp to t.
11003         (dired-isearch-filter-filenames): Remove unnecessary check for
11004         `dired-isearch-filenames'.
11006         * comint.el (comint-history-isearch-backward):
11007         Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
11008         (comint-history-isearch-backward-regexp):
11009         Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
11011 2013-12-10  Eli Zaretskii  <eliz@gnu.org>
11013         * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
11014         unmsys--file-name.  (Bug#16099)
11016 2013-12-10  Teodor Zlatanov  <tzz@lifelogs.com>
11018         * emacs-lisp/package.el (package-keyword-button-action):
11019         Remove finder.el require dependency.
11021 2013-12-09  Teodor Zlatanov  <tzz@lifelogs.com>
11023         * emacs-lisp/package.el: Require finder.el.
11024         (describe-package-1): Add keyword buttons.
11025         (package-make-button): New convenience function.
11026         (package-keyword-button-action): Keyword button action using
11027         `finder-list-matches'.
11029 2013-12-09  Eli Zaretskii  <eliz@gnu.org>
11031         * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
11032         last commit.
11034 2013-12-09  Michael Albinus  <michael.albinus@gmx.de>
11036         * autorevert.el (auto-revert-notify-add-watch): Do not handle
11037         symlinked files.
11039 2013-12-09  Dmitry Gutov  <dgutov@yandex.ru>
11041         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
11042         after the end of a percent literal.
11044 2013-12-09  Cameron Desautels  <camdez@gmail.com>  (tiny change)
11046         * progmodes/ruby-mode.el (ruby-forward-string): Document.
11047         Handle caret-delimited strings (Bug#16079).
11049 2013-12-09  Dmitry Gutov  <dgutov@yandex.ru>
11051         * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
11052         When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
11053         `ruby-parse-partial' (Bug#16078).
11055 2013-12-09  Leo Liu  <sdl.web@gmail.com>
11057         * subr.el (read-passwd): Disable show-paren-mode.  (Bug#16091)
11059 2013-12-08  Dmitry Gutov  <dgutov@yandex.ru>
11061         * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
11062         (js-switch-indent-offset): New option.
11063         (js--proper-indentation): Use it.  And handle the case when
11064         "default" is actually a key in an object literal.
11065         (js--same-line): New function.
11066         (js--multi-line-declaration-indentation): Use it.
11067         (js--indent-in-array-comp, js--array-comp-indentation):
11068         New functions.
11069         (js--proper-indentation): Use them, to handle array comprehension
11070         continuations.
11072 2013-12-08  Leo Liu  <sdl.web@gmail.com>
11074         * progmodes/flymake.el (flymake-highlight-line): Re-write.
11075         (flymake-make-overlay): Remove arg MOUSE-FACE.
11076         (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
11078 2013-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
11080         * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
11081         New function.
11082         (redisplay-highlight-region-function): Use it.
11084         * emulation/cua-base.el (cua--explicit-region-start)
11085         (cua--last-region-shifted): Remove.
11086         (cua--deactivate): Use deactivate-mark.
11087         (cua--pre-command-handler-1): Don't handle shift-selection.
11088         (cua--post-command-handler-1): Don't change transient-mark-mode.
11089         (cua--select-keymaps): Use region-active-p rather than
11090         cua--explicit-region-start or cua--last-region-shifted.
11091         (cua-mode): Enable shift-select-mode.
11093 2013-12-08  Leo Liu  <sdl.web@gmail.com>
11095         * progmodes/flymake.el (flymake-popup-current-error-menu):
11096         Rename from flymake-display-err-menu-for-current-line.  Reimplement.
11097         (flymake-posn-at-point-as-event, flymake-popup-menu)
11098         (flymake-make-emacs-menu): Remove.  (Bug#16077)
11100 2013-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
11102         * rect.el (rectangle-mark-mode): Activate mark even if
11103         transient-mark-mode is off (bug#16066).
11104         (rectangle--highlight-for-redisplay): Fix boundary condition when point
11105         is > mark and at bolp.
11107         * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
11108         (region-extract-function): Use it.
11109         (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
11110         (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
11111         Delete functions.
11112         (cua--init-rectangles): Don't re-remap copy-region-as-kill,
11113         kill-ring-save, kill-region, delete-char, delete-forward-char.
11114         Ignore self-insert-iso.
11116         * emulation/cua-gmrk.el (cua--init-global-mark):
11117         Ignore `self-insert-iso'.
11119         * emulation/cua-base.el (cua--prefix-copy-handler)
11120         (cua--prefix-cut-handler): Rely on region-extract-function rather than
11121         checking cua--rectangle.
11122         (cua-delete-region): Use region-extract-function.
11123         (cua-replace-region): Delete function.
11124         (cua-copy-region, cua-cut-region): Obey region-extract-function.
11125         (cua--pre-command-handler-1): Don't do the delete-selection thing.
11126         (cua--self-insert-char-p): Ignore `self-insert-iso'.
11127         (cua--init-keymaps): Don't remap delete-selection commands.
11128         (cua-mode): Use delete-selection-mode instead of rolling our own
11129         (bug#16085).
11131         * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
11132         Obey region-extract-function.
11134         Make registers and delete-selection-mode work on rectangles.
11135         * register.el (describe-register-1): Don't modify the register's value.
11136         (copy-to-register): Obey region-extract-function.
11137         * delsel.el (delete-active-region): Obey region-extract-function.
11139 2013-12-08  Leo Liu  <sdl.web@gmail.com>
11141         * progmodes/flymake.el (flymake, flymake-error-bitmap)
11142         (flymake-warning-bitmap, flymake-fringe-indicator-position)
11143         (flymake-compilation-prevents-syntax-check)
11144         (flymake-start-syntax-check-on-newline)
11145         (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
11146         (flymake-start-syntax-check-on-find-file, flymake-log-level)
11147         (flymake-xml-program, flymake-master-file-dirs)
11148         (flymake-master-file-count-limit)
11149         (flymake-allowed-file-name-masks): Relocate.
11150         (flymake-makehash, flymake-float-time)
11151         (flymake-replace-regexp-in-string, flymake-split-string)
11152         (flymake-get-temp-dir): Remove.
11153         (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
11154         (flymake-current-row, flymake-selected-frame)
11155         (flymake-get-point-pixel-pos): Remove xemacs compatibity and
11156         related functions.  (Bug#16077)
11158 2013-12-07  Bozhidar Batsov  <bozhidar@batsov.com>
11160         * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
11162 2013-12-07  Tassilo Horn  <tsdh@gnu.org>
11164         * help-fns.el (describe-function-1): Use new advice-* functions
11165         rather than old ad-* functions.  Fix function type description and
11166         source links for advised functions and subrs.
11168 2013-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11170         * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
11172 2013-12-06  Michael Albinus  <michael.albinus@gmx.de>
11174         * progmodes/compile.el (compilation-start):
11175         * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
11177         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
11178         Handle long command lines, lasting from "sh -c ...".  (Bug#16045)
11180 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
11182         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
11183         Touch up the last change.
11185 2013-12-06  Leo Liu  <sdl.web@gmail.com>
11187         * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
11188         (inferior-octave-startup): Always use "octave> " for prompt.
11189         (octave-goto-function-definition)
11190         (octave-sync-function-file-names)
11191         (octave-find-definition-default-filename): Remove redundant backquotes.
11193 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
11195         * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
11196         syntax for `?'.
11197         (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
11198         where appropriate already.
11199         (ruby-syntax-propertize-function): Propertize `?' and `!' at the
11200         end of method names (Bug#15874).
11202 2013-12-06  Juri Linkov  <juri@jurta.org>
11204         * isearch.el (isearch--saved-overriding-local-map):
11205         New internal variable.
11206         (isearch-mode): Set it to the initial value of
11207         `overriding-terminal-local-map'.
11208         (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
11209         with `isearch--saved-overriding-local-map'.  (Bug#16035)
11211 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
11213         * progmodes/octave.el (inferior-octave-completion-table):
11214         Turn back into function, use `completion-table-with-cache'
11215         (Bug#11906).  Update all references.
11217         * minibuffer.el (completion-table-with-cache): New function.
11219 2013-12-05  Cameron Desautels  <camdez@gmail.com>  (tiny change)
11221         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
11223 2013-12-05  Teodor Zlatanov  <tzz@lifelogs.com>
11225         * net/eww.el (eww-current-source): New variable to store page
11226         source.
11227         (eww-display-html, eww-mode, eww-save-history)
11228         (eww-restore-history): Use it.
11229         (eww-view-source): New command to view page source.
11230         Opportunistically uses `html-mode' to highlight the buffer.
11231         (eww-mode-map): Install it.
11233 2013-12-05  Michael Albinus  <michael.albinus@gmx.de>
11235         * net/dbus.el (dbus-unregister-service)
11236         (dbus-escape-as-identifier, dbus-unescape-from-identifier):
11237         Fix docstring.
11238         (dbus-unregister-service): Skip :serial entries in
11239         `dbus-registered-objects-table'.
11240         (dbus-byte-array-to-string): New optional arg MULTIBYTE.
11242 2013-12-04  Teodor Zlatanov  <tzz@lifelogs.com>
11244         * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
11245         around keywords with extra `split-string' argument.
11247 2013-12-04  Martin Rudalics  <rudalics@gmx.at>
11249         * windmove.el (windmove-other-window-loc): Handle navigation
11250         between windows (excluding the minibuffer window - Bug#16017).
11252 2013-12-04  Michael Albinus  <michael.albinus@gmx.de>
11254         * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
11255         in D-Bus type syntax.
11256         (dbus-unescape-from-identifier): Use `byte-to-string' in order to
11257         preserve unibyte strings.  (Bug#16048)
11259 2013-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11261         * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
11262         Call force-mode-line-update is the proper buffer (bug#16042).
11264 2013-12-04  Dmitry Gutov  <dgutov@yandex.ru>
11266         * vc/log-edit.el (log-edit-add-new-comment): Rename to
11267         `log-edit-remember-comment', make argument optional.  Adjust all
11268         callers.
11269         (log-edit-mode): Add `log-edit-remember-comment' to
11270         `kill-buffer-hook' locally.
11271         (log-edit-kill-buffer): Don't remember comment explicitly since
11272         the buffer is killed anyway.
11274 2013-12-04  Juri Linkov  <juri@jurta.org>
11276         * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
11277         add-hook and remove-hook for multi-buffer search.  (Bug#16035)
11279 2013-12-03  Tom Regner  <tom@goochesa.de>  (tiny change)
11281         * notifications.el (notifications-close-notification): Call the
11282         D-Bus method with ID being a `:uint32'.  (Bug#16030)
11284 2013-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
11286         * net/eww.el (eww-render): Don't pass arg to eww-display-image.
11288 2013-12-03  Juri Linkov  <juri@jurta.org>
11290         * progmodes/compile.el (compilation-start): Rename window alist
11291         entry `no-display-ok' to `allow-no-window'.
11293         * simple.el (shell-command): Add window alist entry
11294         `allow-no-window' to `display-buffer'.
11295         (async-shell-command): Doc fix.
11297         * window.el (display-buffer-no-window): New action function.
11298         (display-buffer-alist, display-buffer): Doc fix.  (Bug#13594)
11300 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
11302         * vc/log-edit.el (log-edit-set-header): Extract from
11303         `log-edit-toggle-header'.
11304         (log-edit-extract-headers): Separate the summary, when extracted
11305         from header, from the rest of the message with an empty line.
11307         * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
11308         line, if present, to the Summary header.
11310 2013-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
11312         * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
11313         in current-buffer (bug#16029).
11315 2013-12-02  Helmut Eller  <eller.helmut@gmail.com>
11317         * emacs-lisp/debug.el (debugger-toggle-locals): New command.
11318         (debugger-mode-map): Bind it.
11319         (debugger--backtrace-base): New function.
11320         (debugger-eval-expression): Use it.
11321         (debugger-frame-number): Skip local vars when present.
11322         (debugger--locals-visible-p, debugger--insert-locals)
11323         (debugger--show-locals, debugger--hide-locals): New functions.
11325 2013-12-02  Michael Albinus  <michael.albinus@gmx.de>
11327         * net/tramp-sh.el (tramp-remote-process-environment): Do not set
11328         "LC_ALL".
11329         (tramp-get-remote-locale): New defun.
11330         (tramp-open-connection-setup-interactive-shell): Use it.
11332 2013-12-02  Leo Liu  <sdl.web@gmail.com>
11334         * subr.el (process-live-p): Return nil for non-process.  (Bug#16023)
11336         * progmodes/sh-script.el (sh-shell-process):
11337         * progmodes/octave.el (inferior-octave-process-live-p):
11338         * progmodes/gdb-mi.el (gdb-delchar-or-quit)
11339         (gdb-inferior-io-sentinel):
11340         * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
11342 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
11344         * vc/log-edit.el (log-edit-kill-buffer): Move the use of
11345         `save-selected-window' to `log-edit-hide-buf'.  This makes
11346         `log-edit-show-files' idempotent.
11347         (log-edit-show-files): Mark the new window as dedicated.
11349 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
11351         * vc/log-edit.el (log-edit-mode-map): Add binding for
11352         `log-edit-kill-biffer'.
11353         (log-edit-hide-buf): Add a FIXME comment.
11354         (log-edit-add-new-comment): New function, extracted from
11355         `log-edit-done'.
11356         (log-edit-done, log-edit-add-to-changelog): Use it.
11357         (log-edit-kill-buffer): New command.
11359 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11361         * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
11362         instead of killing the buffer.
11364 2013-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
11366         * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
11368 2013-12-01  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
11370         * net/eww.el (eww-form-checkbox-selected-symbol)
11371         (eww-form-checkbox-symbol): New customizable variable.
11372         (eww-form-checkbox, eww-toggle-checkbox):
11373         Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
11375         * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
11376         (shr--get-media-pref, shr--extract-best-source): New function.
11377         (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
11378         no :src tag was specified.
11380         * net/eww.el (eww-use-external-browser-for-content-type): New variable.
11381         (eww-render): Handle `eww-use-external-browser-for-content-type'.
11382         Use \\` to match beginning of string instead of ^.
11383         (eww-browse-with-external-browser): Provide optional URL parameter.
11384         (eww-render): Set `eww-current-title' back to "".
11386         * net/shr.el (shr-tag-video): Display content for video if no
11387         poster is available.
11388         (shr-tag-audio): Add support for <audio> tag.
11390         * net/eww.el (eww-text-input-types): New const.
11391         (eww-process-text-input): Treat input types in
11392         `eww-text-input-types' as text.
11394         * net/shr.el (shr-tag-table): Fix comment typo.
11396 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11398         * net/eww.el (eww-follow-link): New command to avoid reloading
11399         pages when we follow #target links (bug#15243).
11400         (eww-quit): Special mode buffers shouldn't query before exiting.
11402 2013-12-01  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
11404         * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
11405         forms.
11407 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
11409         * net/eww.el (eww-restore-history): Update the window title after
11410         moving in the history.
11411         (eww-current-dom): New variable used to save the current DOM.
11413 2013-12-01  Dmitry Gutov  <dgutov@yandex.ru>
11415         * vc/log-edit.el (log-edit-mode-map): Add binding for
11416         `log-edit-beginning-of-line'.
11417         (log-edit-setup-add-author): New user option.
11418         (log-edit-beginning-of-line): New command.
11419         (log-edit): Move major mode call above the contents setup so that
11420         the local variable values are already applied.
11421         (log-edit): Only insert "Author: " when
11422         `log-edit-setup-add-author' is non-nil.
11423         (log-edit): When SETUP is non-nil, position point after ": "
11424         instead of point-min.
11426 2013-12-01  Glenn Morris  <rgm@gnu.org>
11428         * startup.el (command-line): Warn if ~/emacs.d is in load-path.
11430 2013-11-30  Eli Zaretskii  <eliz@gnu.org>
11432         * startup.el (fancy-splash-frame): On MS-Windows, trigger
11433         redisplay to make sure the initial frame gets a chance to become
11434         visible.  (Bug#16014)
11436 2013-11-30  Martin Rudalics  <rudalics@gmx.at>
11438         Support resizing frames and windows pixelwise.
11439         * cus-start.el (frame-resize-pixelwise)
11440         (window-resize-pixelwise): New entries.
11441         * emacs-lisp/debug.el (debug): Use window-total-height instead
11442         of window-total-size.
11443         * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
11444         * help.el (describe-bindings-internal): Use help-buffer as
11445         argument for with-help-window.
11446         (temp-buffer-max-width): New option.
11447         (resize-temp-buffer-window, help-window-setup)
11448         (with-help-window): Rewrite.
11449         * mouse.el (mouse-drag-line): Rewrite.  Add key bindings for
11450         dragging dividers.
11451         * window.el (frame-char-size, window-min-pixel-height)
11452         (window-safe-min-pixel-height, window-safe-min-pixel-width)
11453         (window-min-pixel-width, window-safe-min-pixel-size)
11454         (window-combination-p, window-safe-min-size)
11455         (window-resizable-p, window--size-to-pixel)
11456         (window--pixel-to-size, window--resize-apply-p): New functions.
11457         (window-safe-min-height): Fix doc-string.
11458         (window-size, window-min-size, window--min-size-1)
11459         (window-sizable, window-sizable-p, window--min-delta-1)
11460         (window-min-delta, window--max-delta-1, window-max-delta)
11461         (window--resizable, window--resizable-p, window-resizable)
11462         (window-full-height-p, window-full-width-p, window-at-side-p)
11463         (window--in-direction-2, window-in-direction)
11464         (window--resize-reset-1, window--resize-mini-window)
11465         (window-resize, window-resize-no-error)
11466         (window--resize-child-windows-normal)
11467         (window--resize-child-windows, window--resize-siblings)
11468         (window--resize-this-window, window--resize-root-window)
11469         (window--resize-root-window-vertically)
11470         (adjust-window-trailing-edge, enlarge-window, shrink-window)
11471         (maximize-window, minimize-window, delete-window)
11472         (quit-restore-window, window-split-min-size, split-window)
11473         (balance-windows-2, balance-windows)
11474         (balance-windows-area-adjust, balance-windows-area)
11475         (window--state-get-1, window-state-get, window--state-put-1)
11476         (window--state-put-2, window-state-put)
11477         (display-buffer-record-window, window--display-buffer):
11478         Make functions handle pixelwise sizing of windows.
11479         (display-buffer--action-function-custom-type)
11480         (display-buffer-fallback-action):
11481         Add display-buffer-in-previous-window.
11482         (display-buffer-use-some-window): Resize window to height it had
11483         before.
11484         (fit-window-to-buffer-horizontally): New option.
11485         (fit-frame-to-buffer): Describe new values.
11486         (fit-frame-to-buffer-bottom-margin): Replace with
11487         fit-frame-to-buffer-margins.
11488         (window--sanitize-margin): New function.
11489         (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
11490         using window-text-pixel-size.
11492 2013-11-30  Glenn Morris  <rgm@gnu.org>
11494         * emacs-lisp/bytecomp.el (byte-compile-form):
11495         Make the `interactive-only' warning like the `obsolete' one.
11496         * comint.el (comint-run):
11497         * files.el (insert-file-literally, insert-file):
11498         * replace.el (replace-string, replace-regexp):
11499         * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
11500         (goto-line, insert-buffer, next-line, previous-line):
11501         Tweak `interactive-only' spec.
11503         Stop keeping (most) generated cedet grammar files in the repository.
11504         * Makefile.in (semantic): New.
11505         (compile-main): Depend on semantic.
11507 2013-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
11509         * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
11510         available.  Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
11512         * uniquify.el (uniquify-buffer-name-style): Change default.
11514         * loadup.el: Preload "uniquify".
11516         * time.el (display-time-update): Update all mode lines (bug#15999).
11518         * electric.el (electric-indent-mode): Enable by default.
11519         * loadup.el: Preload "electric".
11521 2013-11-29  Bozhidar Batsov  <bozhidar@batsov.com>
11523         * emacs-lisp/helpers.el (string-empty-p): New function.
11524         (string-blank-p): New function.
11526 2013-11-29  Andreas Politz  <politza@hochschule-trier.de>
11528         * imenu.el (imenu--index-alist): Add missing dot to the docstring
11529         (Bug#14029).
11531 2013-11-29  Andreas Politz  <politza@fh-trier.de>
11532         * imenu.el (imenu--subalist-p): Don't error on non-conses and
11533         allow non-lambda lists as functions.
11534         (imenu--in-alist): Don't recurse into non-subalists.
11535         (imenu): Don't pass function itself as an argument (Bug#14029).
11537 2013-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
11539         * progmodes/python.el (python-mode-map): Remove binding for ":".
11540         (python-indent-electric-colon): Remove command.
11541         (python-indent-post-self-insert-function): Integrate the previous code
11542         of python-indent-electric-colon.  Make it conditional on
11543         electric-indent-mode.
11544         (python-mode): Add ?: to electric-indent-chars.
11545         Move python-indent-post-self-insert-function to the end of
11546         post-self-insert-hook.
11548 2013-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
11550         * doc-view.el (doc-view-goto-page): Update mode-line.
11552         * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
11554 2013-11-27  Glenn Morris  <rgm@gnu.org>
11556         * international/charprop.el, international/uni-bidi.el:
11557         * international/uni-category.el, international/uni-combining.el:
11558         * international/uni-comment.el, international/uni-decimal.el:
11559         * international/uni-decomposition.el, international/uni-digit.el:
11560         * international/uni-lowercase.el, international/uni-mirrored.el:
11561         * international/uni-name.el, international/uni-numeric.el:
11562         * international/uni-old-name.el, international/uni-titlecase.el:
11563         * international/uni-uppercase.el:
11564         Remove generated files from VCS repository.
11566 2013-11-27  Eli Zaretskii  <eliz@gnu.org>
11568         * filenotify.el (file-notify-add-watch): Don't special-case
11569         w32notify when computing the directory to watch.
11571 2013-11-27  Glenn Morris  <rgm@gnu.org>
11573         Make bootstrap without generated uni-*.el files possible again.
11574         * loadup.el: Update command-line-args checking for unidata-gen.
11575         Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
11576         * composite.el, international/characters.el:
11577         Handle unicode tables being undefined.
11579         Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
11580         * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
11581         (compile-main): Depend on leim rule.
11582         (leim): New rule.
11583         * loadup.el: Move leim-list.el to leim/ subdirectory.
11584         * startup.el (normal-top-level): No more leim directory.
11585         * international/ja-dic-cnv.el (skkdic-convert):
11586         Disable version-control and autoloads in output files.
11587         * international/titdic-cnv.el (titdic-convert, miscdic-convert):
11588         Disable version-control and autoloads in output files.
11589         * leim/quail: Move here from ../leim.
11590         * leim/quail/hangul.el (hangul-input-method-activate):
11591         Add autoload cookie.
11592         (generated-autoload-load-name): Set file-local value.
11593         * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
11594         (generated-autoload-load-name): Set file-local value.
11596 2013-11-26  Kenjiro NAKAYAMA  <knakayam@redhat.com>
11598         * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
11599         (eww-add-bookmark): Ask confirmation when add to bookmarks.
11600         (eww-quit): Ask confirmation before quitting eww.
11602 2013-11-26  Eli Zaretskii  <eliz@gnu.org>
11604         * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
11605         reading output from Diff on MS-Windows and MS-DOS.
11607 2013-11-26  Bozhidar Batsov  <bozhidar@batsov.com>
11609         * emacs-lisp/helpers.el (string-reverse): New function.
11611 2013-11-26  Michael Albinus  <michael.albinus@gmx.de>
11613         * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
11614         names on MS Windows, like "/[::1]:".
11616         * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
11617         SWITCHES.
11619 2013-11-26  Glenn Morris  <rgm@gnu.org>
11621         * progmodes/python.el (python-indent-guess-indent-offset):
11622         Avoid corner-case error.  (Bug#15975)
11624         Preload leim-list.el.  (Bug#4789)
11625         * loadup.el: Load leim-list.el when found.
11626         * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
11628 2013-11-25  Bozhidar Batsov  <bozhidar@batsov.com>
11630         * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
11632         * emacs-lisp/helpers.el (string-join): New function.
11634 2013-11-25  Sebastian Wiesner  <lunaryorn@gmail.com>  (tiny change)
11636         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
11637         Mark as obsolete and replace it with a symbol property.
11638         (byte-compile-form): Use new 'interactive-only property.
11639         * comint.el, files.el, replace.el, simple.el:
11640         Apply new 'interactive-only properly.
11642 2013-11-25  Martin Rudalics  <rudalics@gmx.at>
11644         * window.el (display-buffer-at-bottom): Make sure that
11645         split-window-sensibly creates the new window on bottom
11646         (Bug#15961).
11648 2013-11-23  David Kastrup  <dak@gnu.org>
11650         * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
11651         on the conflict markers when available.
11652         (smerge--get-marker): New function.
11653         (smerge-end-re, smerge-base-re): Add subgroup.
11655 2013-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11657         * frame.el (handle-focus-in, handle-focus-out): Add missing
11658         interactive spec.
11660 2013-11-25  Michael Albinus  <michael.albinus@gmx.de>
11662         * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
11663         `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
11665 2013-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
11667         * play/gomoku.el: Don't use intangible property.  Use lexical-binding.
11668         (gomoku--last-pos): New var.
11669         (gomoku--intangible-chars): New const.
11670         (gomoku--intangible): New function.
11671         (gomoku-mode): Use it.  Derive from special-mode.
11672         (gomoku-move-up): Adjust line count.
11673         (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
11674         (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
11675         Simplify accordingly.
11677         * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
11678         Remove blink-cursor code.
11679         (blink-cursor-timer-function, blink-cursor-suspend):
11680         Don't special-case GUIs.
11681         (blink-cursor-mode): Use focus-in/out-hook.
11683 2013-11-25  Dmitry Gutov  <dgutov@yandex.ru>
11685         * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
11686         work when annotation is invisible (Bug#13886).
11688 2013-11-24  Simon Schubert  <2@0x2c.org>  (tiny change)
11690         * json.el (json-alist-p): Only return non-nil if the alist has
11691         simple keys (Bug#13518).
11693 2013-11-24  Mihir Rege  <mihirrege@gmail.com>  (tiny change)
11695         * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
11696         when control-statement is the first statement in a buffer (Bug#15956).
11698 2013-11-24  Dmitry Gutov  <dgutov@yandex.ru>
11700         * imenu.el (imenu-generic-skip-comments-and-strings):
11701         New option (Bug#15560).
11702         (imenu--generic-function): Use it.
11704 2013-11-24  Jorgen Schaefer  <contact@jorgenschaefer.de>
11706         * minibuffer.el (completion--in-region-1): Scroll the correct window.
11707         (Bug#13898)
11709 2013-11-24  Bozhidar Batsov  <bozhidar@batsov.com>
11711         * emacs-lisp/helpers.el: Add some string helpers.
11712         (string-trim-left): Removes leading whitespace.
11713         (string-trim-right): Removes trailing whitespace.
11714         (string-trim): Removes leading and trailing whitespace.
11716         * subr.el (string-suffix-p): New function.
11718 2013-11-23  Glenn Morris  <rgm@gnu.org>
11720         * progmodes/python.el (python-shell-send-file):
11721         Add option to delete file when done.  (Bug#15647)
11722         (python-shell-send-string, python-shell-send-region): Use it.
11724 2013-11-23  Ivan Shmakov  <ivan@siamics.net>
11726         * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
11727         to set buffer-read-only to t, never to nil.  (Bug#15938)
11729         * textmodes/tex-mode.el (latex-noindent-environments):
11730         Add safe-local-variable property.  (Bug#15936)
11732 2013-11-23  Glenn Morris  <rgm@gnu.org>
11734         * textmodes/enriched.el (enriched-mode): Doc fix.
11735         * emacs-lisp/authors.el (authors-renamed-files-alist):
11736         Add enriched.doc -> enriched.txt.
11738         * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
11740 2013-11-22  Leo Liu  <sdl.web@gmail.com>
11742         * progmodes/octave.el (inferior-octave-startup): Spit out error
11743         message.
11745 2013-11-22  Bozhidar Batsov  <bozhidar@batsov.com>
11747         * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
11748         Improve docstring.
11749         Add :version.
11750         (ruby-encoding-magic-comment-style): Add :version.
11752 2013-11-22  Leo Liu  <sdl.web@gmail.com>
11754         * progmodes/octave.el (octave-operator-regexp): Exclude newline.
11755         (Bug#15076)
11756         (octave-help-mode): Adapt to change to help-mode-finish to use
11757         derived-mode-p on 2013-09-17.
11758         (inferior-octave-prompt): Also match octave-gui.
11759         (octave-kill-process): Don't ask twice.  (Bug#10564)
11761 2013-11-22  Leo Liu  <sdl.web@gmail.com>
11763         * progmodes/octave.el (inferior-octave-process-live-p): New helper.
11764         (inferior-octave-startup, inferior-octave-check-process)
11765         (inferior-octave-track-window-width-change)
11766         (octave-completion-at-point, octave-eldoc-function): Use it.
11767         (octave-kill-process): Provide confirmation.  (Bug#10564)
11769 2013-11-21  Leo Liu  <sdl.web@gmail.com>
11771         * progmodes/octave.el (octave-mode, inferior-octave-mode):
11772         Fix obsolete variable comment-use-global-state.
11774 2013-11-21  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
11776         * progmodes/octave.el (octave-mode-map, octave-mode-menu):
11777         Add `octave-source-file'.
11778         (octave-source-file): New function.  (Bug#15935)
11780 2013-11-21  Kenjiro Nakayama  <nakayamakenjiro@gmail.com>
11782         * net/eww.el (eww-local-regex): New variable.
11783         (eww): Use it to detect localhost and similar.
11785 2013-11-21  Leo Liu  <sdl.web@gmail.com>
11787         Add completion for command `ag'.
11788         * pcmpl-x.el (pcmpl-x-ag-options): New variable.
11789         (pcomplete/ag): New function.
11790         (pcmpl-x-ag-options): New function.  Handle `[no]' in long options.
11792 2013-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
11794         * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
11795         (bug#14646).
11796         (make-obsolete): Remove interactive spec.
11798 2013-11-21  Glenn Morris  <rgm@gnu.org>
11800         * startup.el (command-line-1): Use path-separator with -L.
11802 2013-11-20  Teodor Zlatanov  <tzz@lifelogs.com>
11804         * emacs-lisp/package.el (describe-package-1): Add package archive
11805         to shown fields.
11807 2013-11-20  Bozhidar Batsov  <bozhidar@batsov.com>
11809         * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
11810         Change default to "# encoding: %s" to differentiate it from the
11811         default Ruby encoding comment template.
11813 2013-11-20  era eriksson  <era+emacsbugs@iki.fi>
11815         * ses.el (ses-mode): Doc fix.  (Bug#14748)
11817 2013-11-20  Leo Liu  <sdl.web@gmail.com>
11819         * window.el (display-buffer-alist): Doc fix.  (Bug#13594)
11821 2013-11-19  Dan Nicolaescu  <dann@gnu.org>
11823         * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
11824         when rebase or bisect are in progress.
11826 2013-11-19  Xue Fuqiao  <xfq.free@gmail.com>
11828         * filenotify.el (file-notify-add-watch): Doc fix.
11830 2013-11-19  Leo Liu  <sdl.web@gmail.com>
11832         * obsolete/rcompile.el: Mark obsolete.
11834         * progmodes/compile.el (compilation-start)
11835         (compilation-goto-locus, compilation-find-file):
11836         Pass no-display-ok and handle nil value from display-buffer.
11837         (Bug#13594)
11839         * window.el (display-buffer-alist, display-buffer): Document the
11840         new parameter no-display-ok.  Return either a window or nil
11841         but never a non-window value.
11843 2013-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11845         * electric.el (electric-indent-mode-map): Remove.
11846         (electric-indent-mode): Change the global-map instead (bug#15915).
11848         * textmodes/text-mode.el (paragraph-indent-minor-mode):
11849         Use add-function.
11851 2013-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11853         * emacs-lisp/nadvice.el (remove-function): Align with
11854         add-function's behavior.
11856         * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
11857         (gdb--string-regexp): New constant.
11858         (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
11859         (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
11860         (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
11861         submatch 1.
11862         (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
11863         Adjust use accordingly.
11864         (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
11866 2013-11-17  Adam Sokolnicki  <adam.sokolnicki@gmail.com>  (tiny change)
11868         * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
11869         interpolation curlies (Bug#15914).
11871 2013-11-17  Jay Belanger  <jay.p.belanger@gmail.com>
11873         * calc/calc.el (calc-context-sensitive-enter): New variable.
11874         (calc-enter): Use `calc-context-sensitive-enter'.
11876 2013-11-16  Teodor Zlatanov  <tzz@lifelogs.com>
11878         * progmodes/cfengine.el: Version bump.
11879         (cfengine-cf-promises): New defcustom to locate cf-promises.
11880         (cfengine3-vartypes): Add new "data" type.
11881         (cfengine3--current-word): New function to get current name-like
11882         word or its bounds.
11883         (cfengine3--current-function): New function to look up a CFEngine
11884         function's definition.
11885         (cfengine3-format-function-docstring): New function.
11886         (cfengine3-make-syntax-cache): New function.
11887         (cfengine3-documentation-function): New function: ElDoc glue.
11888         (cfengine3-completion-function): New function: completion glue.
11889         (cfengine3-mode): Set `compile-command',
11890         `eldoc-documentation-function', and add to
11891         `completion-at-point-functions'.
11893 2013-11-16  Michael Albinus  <michael.albinus@gmx.de>
11895         * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
11896         `tramp-current-connection'.
11898 2013-11-15  Dmitry Gutov  <dgutov@yandex.ru>
11900         * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
11901         nil/self/true/false with "end of symbol".
11903 2013-11-15  Bozhidar Batsov  <bozhidar@batsov.com>
11905         * subr.el (version-regexp-alist): Fix a typo.
11907 2013-11-15  Michael Albinus  <michael.albinus@gmx.de>
11909         * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
11910         "en_US.utf8" and "LC_CTYPE" to "".
11911         (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
11912         (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
11914 2013-11-15  Leo Liu  <sdl.web@gmail.com>
11916         * loadhist.el (read-feature): Get rid of fake feature nil.  (Bug#15889)
11918 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11920         * progmodes/gud.el (ctl-x-map):
11921         Remove C-x SPC binding.  (Bug#12342)
11922         (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
11924 2013-11-14  Bozhidar Batsov  <bozhidar@batsov.com>
11926         * subr.el (version-regexp-alist):
11927         Recognize hg, svn and darcs versions as snapshot versions.
11929         * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
11930         'always-utf8 value of `ruby-insert-encoding-magic-comment'.
11931         (ruby--encoding-comment-required-p): Extract from
11932         `ruby-mode-set-encoding'.
11933         (ruby-mode-set-encoding): Add the ability to always insert an
11934         utf-8 encoding comment.  Fix and simplify coding comment update
11935         logic.
11937 2013-11-14  Michael Albinus  <michael.albinus@gmx.de>
11939         * net/tramp-gvfs.el (top): Run init code only when
11940         `tramp-gvfs-enabled' is not nil.
11941         (tramp-gvfs-enabled): Check also :system bus.
11943 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11945         Sync with upstream verilog-mode revision 78e66ba.
11946         * progmodes/verilog-mode.el (verilog-end-of-defun)
11947         (verilog-type-completion, verilog-get-list): Remove unused funcs.
11948         (verilog-get-end-of-defun): Remove unused argument.
11949         (verilog-comment-depth): Remove unused local `e'.
11950         (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
11951         Don't pass arg to verilog-get-end-of-defun.
11953 2013-11-14  Glenn Morris  <rgm@gnu.org>
11955         * obsolete/assoc.el (aget): Prefix dynamic variable.
11957         * allout-widgets.el (allout-widgets): No need to autoload defgroup.
11959 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
11961         * widget.el, hfy-cmap.el: Remove bogus package version number.
11963 2013-11-13  Glenn Morris  <rgm@gnu.org>
11965         * replace.el (replace-eval-replacement):
11966         Try to give more helpful error message.  (Bug#15836)
11968         * arc-mode.el (archive-7z-extract, archive-7z-expunge)
11969         (archive-7z-update): Avoid custom type mismatches.
11971         * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
11973 2013-11-13  Michael Albinus  <michael.albinus@gmx.de>
11975         * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
11976         address can be empty.
11978         * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
11979         Accept nil SWITCHES.
11980         (tramp-gvfs-handle-write-region): Implement APPEND.
11982 2013-11-12  Dmitry Gutov  <dgutov@yandex.ru>
11984         * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
11985         binary "|" operator and closing block args delimiter.
11986         Remove FIXME comment referring to Ruby 1.8-only syntax.
11987         (ruby-smie--implicit-semi-p): Not after "|" operator.
11988         (ruby-smie--closing-pipe-p): New function.
11989         (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
11990         (ruby-smie-rules): Indent after "|".
11992 2013-11-12  Glenn Morris  <rgm@gnu.org>
11994         * ps-print.el (ps-face-attribute-list):
11995         Handle anonymous faces.  (Bug#15827)
11997 2013-11-12  Martin Rudalics  <rudalics@gmx.at>
11999         * window.el (display-buffer-other-frame): Fix doc-string.
12000         (Bug#15868)
12002 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
12004         * subr.el (force-mode-line-update): Delete, move to buffer.c.
12006 2013-11-11  Michael Albinus  <michael.albinus@gmx.de>
12008         * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
12009         (tramp-sh-handle-file-local-copy): Don't write a message when
12010         saving temporary files.
12012         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
12013         both directories are remote.
12014         (tramp-smb-handle-directory-files): Do not return double entries.
12015         Do not expand full file names.
12016         (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
12017         (tramp-smb-handle-write-region): Implement APPEND.
12018         (tramp-smb-get-stat-capability): Fix a stupid bug.
12020 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
12022         * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
12024 2013-11-11  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
12026         * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
12027         throwing error over malformed let/let* (bug#15814).
12029 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
12031         * iswitchb.el (iswitchb-mode): Mark obsolete.
12033 2013-11-11  Glenn Morris  <rgm@gnu.org>
12035         * international/uni-bidi.el, international/uni-category.el:
12036         * international/uni-name.el, international/uni-numeric.el:
12037         Regenerate for Unicode 6.3.0.
12039 2013-11-10  Michael Albinus  <michael.albinus@gmx.de>
12041         * net/tramp.el (tramp-methods):
12042         * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
12043         2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
12045 2013-11-09  Andreas Schwab  <schwab@linux-m68k.org>
12047         * progmodes/sh-script.el (sh-font-lock-keywords-var):
12048         Force highlighting text after Summary keyword in doc face for rpm.
12050 2013-11-09  Dmitry Gutov  <dgutov@yandex.ru>
12052         * textmodes/ispell.el (ispell-lookup-words): When `look' is not
12053         available and the word has no wildcards, append one to the grep pattern.
12054         http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
12055         (ispell-complete-word): Call `ispell-lookup-words' with the value
12056         independent of `ispell-look-p'.
12058 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
12060         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
12061         Not after "||".
12062         (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
12063         their parent.
12065 2013-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12067         * progmodes/ruby-mode.el: Don't require cl any more.  Use pcase instead.
12068         (ruby-font-lock-keywords): Use backquote.
12070 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
12072         * progmodes/ruby-mode.el (ruby-smie--forward-token)
12073         (ruby-smie--backward-token): Only consider full-string matches.
12075 2013-11-08  Jan Djärv  <jan.h.d@swipnet.se>
12077         * faces.el (describe-face): Add distant-foreground.
12079 2013-11-08  Bozhidar Batsov  <bozhidar@batsov.com>
12081         * progmodes/ruby-mode.el: Improve encoding comment handling.
12082         (ruby-encoding-magic-comment-style): New option.
12083         (ruby-custom-encoding-magic-comment-template): New option.
12084         (ruby--insert-coding-comment, ruby--detect-encoding):
12085         New functions extracted from `ruby-mode-set-encoding'.
12086         (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
12087         to control the style of the auto-inserted encoding comment.
12089 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
12091         * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
12092         Use `smie-backward-sexp' with token argument.
12094 2013-11-08  Michael Albinus  <michael.albinus@gmx.de>
12096         * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
12097         Remove instrumentation code.
12099 2013-11-08  Glenn Morris  <rgm@gnu.org>
12101         * progmodes/autoconf.el (autoconf-mode):
12102         Tweak comment-start-skip.  (Bug#15822)
12104 2013-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
12106         * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
12107         at bobp (bug#15826).
12108         (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
12110 2013-11-08  Darren Hoo  <darren.hoo@gmail.com>
12112         * man.el (Man-start-calling): New macro, extracted from
12113         Man-getpage-in-background.
12114         (Man-getpage-in-background): Use it.
12115         (Man-update-manpage): New command.
12116         (Man-mode-map): Bind it.
12118 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
12120         * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
12121         of "and", "or", "&&" and "||".
12122         (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
12123         argument.  Prohibit opening curly brace because it could only be a
12124         block opener in that position.
12125         (ruby-smie--forward-token, ruby-smie--backward-token):
12126         Separate "|" from "&" or "*" going after it.  That can happen in block
12127         arguments.
12128         (ruby-smie--indent-to-stmt): New function, seeks the end of
12129         previous statement or beginning of buffer.
12130         (ruby-smie-rules): Use it.
12131         (ruby-smie-rules): Check if there's a ":" before a curly block
12132         opener candidate; if there is, it's a hash.
12134 2013-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
12136         * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
12137         (cl--block-wrapper): Fix last accidental change.
12139 2013-11-07  Michael Albinus  <michael.albinus@gmx.de>
12141         * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
12142         Instrument, in order to hunt failure on hydra.
12144 2013-11-05  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
12146         * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
12147         malformed bindings form (bug#15814).
12149 2013-11-07  Dmitry Gutov  <dgutov@yandex.ru>
12151         * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
12152         "." compared to " @ ".  This incidentally fixes some indentation
12153         examples with "do".
12154         (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
12155         (ruby-smie-grammar): New tokens: "and" and "or".
12156         (ruby-smie--args-separator-p): Fix the check for tokens at POS.
12157         Exclude "and" and "or".  Remove "do" in order to work around token
12158         priorities.
12159         (ruby-smie-rules): Add all infix tokens.  Handle the case of
12160         beginning-of-buffer.
12162 2013-11-06  Glenn Morris  <rgm@gnu.org>
12164         * Makefile.in (setwins_almost, setwins_for_subdirs):
12165         Avoid accidental matches.
12167 2013-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12169         * menu-bar.el (popup-menu): Use key-binding.
12171 2013-11-06  Eli Zaretskii  <eliz@gnu.org>
12173         * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
12174         menus, support also the menus produced by minor modes.
12175         (Bug#15817)
12177 2013-11-06  Leo Liu  <sdl.web@gmail.com>
12179         * thingatpt.el (thing-at-point-looking-at): Add optional arg
12180         DISTANCE to bound the search.  All uses changed.  (Bug#15808)
12182 2013-11-06  Glenn Morris  <rgm@gnu.org>
12184         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
12185         (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
12186         (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
12188 2013-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12190         * electric.el (electric-indent-just-newline): New command.
12191         (electric-indent-mode-map): New keymap.
12192         (electric-indent-mode, electric-pair-mode, electric-layout-mode):
12193         Re-add :group which weren't redundant.
12195         * electric.el (electric-indent-local-mode): New minor mode.
12196         (electric-indent-functions-without-reindent): New var.
12197         (electric-indent-post-self-insert-function): Use it.
12198         * emacs-lisp/gv.el (buffer-local-value): Add setter.
12200 2013-11-05  Eli Zaretskii  <eliz@gnu.org>
12202         * international/quail.el (quail-help): Be more explicit about the
12203         meaning of the labels shown on the keys.  (Bug#15800)
12205         * startup.el (normal-top-level): Load the subdirs.el files before
12206         setting the locale environment.  (Bug#15805)
12208 2013-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
12210         * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
12211         via arguments so as to get the right ones (bug#15418).
12213         * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
12215 2013-11-05  Michael Albinus  <michael.albinus@gmx.de>
12217         Fix problems found while writing a test suite.
12219         * net/tramp-compat.el (tramp-compat-load): New defun.
12220         * net/tramp.el (tramp-handle-load): Use it.
12222         * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
12223         "(numberp ok-if-already-exists)" correctly.
12225 2013-11-05  Xue Fuqiao  <xfq.free@gmail.com>
12227         * international/characters.el (glyphless-char-display-control):
12228         Add usage note.
12230 2013-11-05  Bozhidar Batsov  <bozhidar@batsov.com>
12232         * progmodes/python.el (python-mode):
12233         * progmodes/scheme.el (scheme-mode):
12234         * progmodes/prolog.el (prolog-mode):
12235         * progmodes/ruby-mode.el (ruby-mode):
12236         * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
12237         (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
12239 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12241         * rect.el (rectangle--highlight-for-redisplay):
12242         * emacs-lisp/smie.el (smie--next-indent-change):
12243         Use buffer-chars-modified-tick.
12245         * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
12247         * electric.el (electric-indent-post-self-insert-function):
12248         Only delete trailing whitepsace if it is indeed trailing (bug#15767).
12250 2013-11-04  Helmut Eller  <eller.helmut@gmail.com>
12252         * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
12254 2013-11-04  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
12256         * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
12257         (bug#15786).
12259 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12261         * emacs-lisp/helpers.el: Move from helpers.el.  Use lexical-binding.
12263         * progmodes/python.el: Fix up last change.
12264         (python-shell--save-temp-file): New function.
12265         (python-shell-send-string): Use it.  Remove `msg' arg.  Don't assume
12266         `string' comes from the current buffer.
12267         (python-shell-send-string-no-output): Remove `msg' arg.
12268         (python--use-fake-loc): New var.
12269         (python-shell-buffer-substring): Obey it.  Try to compensate for the
12270         extra coding line added by python-shell--save-temp-file.
12271         (python-shell-send-region): Use python-shell--save-temp-file and
12272         python-shell-send-file directly.  Add `nomain' argument.
12273         (python-shell-send-buffer): Use python-shell-send-region.
12274         (python-electric-pair-string-delimiter): New function.
12275         (python-mode): Use it.
12277 2013-11-04  Eli Zaretskii  <eliz@gnu.org>
12279         * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
12280         eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
12281         environment and decoding all of the default-directory's to here
12282         from command-line.
12283         (command-line): Decode also argv[0].
12285         * loadup.el: Error out if default-directory is a multibyte string
12286         when we are dumping.
12288         * Makefile.in (emacs): Don't set LC_ALL=C.  (Bug#15260)
12290 2013-11-04  Teodor Zlatanov  <tzz@lifelogs.com>
12292         * emacs-lisp/package.el (package-menu-mode)
12293         (package-menu--print-info, package-menu--archive-predicate):
12294         Add Archive column to package list.
12296 2013-11-04  Michael Albinus  <michael.albinus@gmx.de>
12298         Fix problems found while writing a test suite.
12300         * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
12301         (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
12302         (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
12303         to nil when running original file name handler.  Otherwise,
12304         there are problems with constructs like "$$FOO".
12306         * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
12307         for `localname'.
12309 2013-11-04  Bozhidar Batsov  <bozhidar@batsov.com>
12311         * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
12313         * subr.el (version<, version<=, version=):
12314         Update docstrings with information for snapshot versions.
12316         * helpers.el: New library for misc helper functions.
12317         (hash-table-keys): New function returning a list of hash keys.
12318         (hash-table-values): New function returning a list of hash values.
12320 2013-11-04  Dmitry Gutov  <dgutov@yandex.ru>
12322         * progmodes/ruby-mode.el (ruby-smie--forward-token)
12323         (ruby-smie--backward-token): Tokenize heredocs as semicolons.
12325 2013-11-04  Michal Nazarewicz  <mina86@mina86.com>
12327         * textmodes/fill.el (fill-single-char-nobreak-p): New function
12328         checking whether point is after a 1-letter word.
12330 2013-11-04  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
12332         * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
12333         Don't infloop when expanding region over `multiline' syntax-type that
12334         begins a line (bug#15778).
12336 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
12338         * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
12339         Make it into a proper minor mode.
12340         (rectangle--region): (Implicitly) rename to rectangle-mark-mode.
12341         (rectangle-mark-mode-map): New keymap.
12342         (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
12344 2013-11-04  Glenn Morris  <rgm@gnu.org>
12346         * startup.el (command-line-1): Allow `-L :...' to append to load-path.
12348 2013-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
12350         * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
12351         (ruby-smie-rules): Use smie-rule-parent instead.
12353         * emacs-lisp/smie.el (smie-rule-parent): Always call
12354         smie-indent-virtual rather than only for hanging tokens.
12355         (smie--next-indent-change): New helper command.
12357 2013-11-03  Glenn Morris  <rgm@gnu.org>
12359         * Makefile.in (abs_srcdir): Remove.
12360         (emacs): Unset EMACSLOADPATH.
12362 2013-11-02  Glenn Morris  <rgm@gnu.org>
12364         * Makefile.in (EMACS): Use a relative filename.
12365         (abs_top_builddir): Remove.
12366         (custom-deps, finder-data, autoloads): Use --chdir.
12368         * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
12370         Use relative filenames in TAGS files.
12371         * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
12372         (lisptagsfiles4, TAGS): Use relative file names.
12373         (TAGS-LISP): Remove.
12374         (maintainer-clean): No more TAGS-LISP file.
12376         * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
12377         (lisptagsfiles4): Use absolute filenames again.
12378         (TAGS, TAGS-LISP): Not everything needs to run in one line.
12379         Remove all *loaddefs files, not just the first.  Remove esh-groups.
12380         (maintainer-clean): Delete TAGS, TAGS-LISP.
12382 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
12384         * emacs-lisp/package.el (package-version-join):
12385         Recognize snapshot versions.
12387 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
12389         * subr.el (version-regexp-alist): Add support for snapshot versions.
12391 2013-11-02  Dmitry Gutov  <dgutov@yandex.ru>
12393         * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
12394         New function, replacement for `smie-rule-parent' for when we want to
12395         skip over our direct parent if it's an assignment token..
12396         (ruby-smie-rules): Use it.
12398 2013-11-02  Dmitry Gutov  <dgutov@yandex.ru>
12400         * progmodes/ruby-mode.el: Use `syntax-propertize-function'
12401         unconditionally.  Remove now unnecessary forward declarations.
12402         Remove XEmacs-specific setup.
12403         (ruby-here-doc-end-re, ruby-here-doc-beg-match)
12404         (ruby-font-lock-syntactic-keywords)
12405         (ruby-comment-beg-syntax, ruby-in-here-doc-p)
12406         (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
12407         (ruby-here-doc-end-syntax): Remove.
12408         (ruby-mode): Don't check whether `syntax-propertize-rules' is
12409         defined as function.
12411 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
12413         * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
12415 2013-11-01  Bozhidar Batsov  <bozhidar@batsov.com>
12417         * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
12418         table and abbrev table, `define-derived-mode' does that for us
12419         anyway.
12421 2013-11-01  Glenn Morris  <rgm@gnu.org>
12423         * Makefile.in: Remove manual mh-e dependencies (writing .elc
12424         files is atomic for some time, so no parallel compilation issues).
12426 2013-11-01  Jan Djärv  <jan.h.d@swipnet.se>
12428         * faces.el (face-x-resources): Add :distant-foreground.
12429         (region): Use :distant-foreground for gtk and ns.
12431 2013-11-01  Tassilo Horn  <tsdh@gnu.org>
12433         Allow multiple bibliographies when BibLaTeX is used rather than
12434         BibTeX.
12435         * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
12436         (reftex-locate-bibliography-files): Us it.
12438 2013-11-01  Claudio Bley  <claudio.bley@googlemail.com>
12440         * image.el (image-type-header-regexps): Fix the 'pbm' part to
12441         allow comments in pbm files.
12443         * term/w32-win.el (dynamic-library-alist): Support newer versions
12444         of libjpeg starting with v7: look only for the DLL from the
12445         version against which Emacs was built.
12446         Support versions of libpng beyond 1.4.x.
12447         Support libtiff v4.x.
12449 2013-11-01  Bozhidar Batsov  <bozhidar@batsov.com>
12451         * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
12452         (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
12453         Add property :safe.
12454         (ruby-deep-arglist): Add property :type.
12456 2013-10-31  Glenn Morris  <rgm@gnu.org>
12458         * Makefile.in (custom-deps, finder-data): No need to setq the target
12459         variables, we are in the right directory and the defaults work fine.
12461 2013-10-30  Glenn Morris  <rgm@gnu.org>
12463         * Makefile.in (autoloads): Do not use abs_lisp.
12465         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
12466         `newline' does not respect `standard-output', so use `princ'.
12468 2013-10-30  Alp Aker  <alp.tekin.aker@gmail.com>
12470         Ensure unmarking in buffer menu clears 'S' marks.  (Bug#15761)
12471         * buff-menu.el (Buffer-menu--unmark): New function.
12472         (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
12474 2013-10-30  Glenn Morris  <rgm@gnu.org>
12476         * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
12478         * emacs-lisp/package.el (lm-homepage): Declare.
12480         * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
12481         Fix doc typos.
12483         * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
12485         * Makefile.in (finder-data, autoloads, update-subdirs)
12486         (compile-main, compile-clean, compile-always, bootstrap-clean):
12487         Check return value of cd.
12488         (compile-calc): Remove.
12490 2013-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12492         * simple.el (copy-region-as-kill): Fix call to region-extract-function.
12494         * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
12495         (byte-compile-and-folded): New function.
12496         (=, <, >, <=, >=): Use it.
12498         * dos-w32.el (minibuffer-history-case-insensitive-variables)
12499         (path-separator, null-device, buffer-file-coding-system)
12500         (lpr-headers-switches): Check system-type before modifying them.
12501         (find-buffer-file-type-coding-system): Mark obsolete.
12502         (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
12503         find-file-not-found-set-buffer-file-coding-system.
12504         (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
12505         (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
12506         (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
12507         (w32-direct-print-region-helper, w32-direct-print-region-function)
12508         (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
12509         * startup.el (normal-top-level-add-subdirs-to-load-path):
12510         * ps-print.el (ps-print-region-function):
12511         * lpr.el (print-region-function): Use new name.
12513         * subr.el (custom-declare-variable-early): Remove function.
12514         (custom-declare-variable-list): Remove var.
12515         (error, user-error): Remove `while' loop.
12516         (read-quoted-char-radix, read-quoted-char): Move to simple.el.
12517         (user-emacs-directory-warning, locate-user-emacs-file):
12518         Move to files.el.
12519         * simple.el (read-quoted-char-radix, read-quoted-char):
12520         * files.el (user-emacs-directory-warning, locate-user-emacs-file):
12521         Move from subr.el.
12522         * custom.el (custom-declare-variable-list): Don't process
12523         custom-declare-variable-list.
12525         * progmodes/python.el (python-shell-get-buffer): New function.
12526         (python-shell-get-process): Use it.
12527         (python-shell-send-string): Always use utf-8 and add a cookie to tell
12528         Python which encoding was used.  Don't split-string since we only care
12529         about the first line.  Return the temp-file, if applicable.
12530         (python-shell-send-region): Tell compile.el how to turn locations in
12531         the temp-file into locations in the source buffer.
12533 2013-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
12535         * subr.el (undefined): Add missing behavior from the C code for
12536         unbound keys.
12538         * rect.el: Use lexical-binding.  Add new rectangular region support.
12539         (rectangle-mark): New command.
12540         (rectangle--region): New var.
12541         (deactivate-mark-hook): Reset rectangle--region.
12542         (rectangle--extract-region, rectangle--insert-for-yank)
12543         (rectangle--highlight-for-redisplay)
12544         (rectangle--unhighlight-for-redisplay): New functions.
12545         (region-extract-function, redisplay-unhighlight-region-function)
12546         (redisplay-highlight-region-function): Use them to handle
12547         rectangular region.
12548         * simple.el (region-extract-function): New var.
12549         (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
12550         (kill-new, kill-append): Remove obsolete `yank-handler' argument.
12551         (kill-region): Replace obsolete `yank-handler' arg with `region'.
12552         (copy-region-as-kill, kill-ring-save): Add `region' argument.
12553         (redisplay-unhighlight-region-function)
12554         (redisplay-highlight-region-function): New vars.
12555         (redisplay--update-region-highlight): New function.
12556         (pre-redisplay-function): Use it.
12557         (exchange-point-and-mark): Don't deactivate the mark before
12558         reactivate-it anyway.
12559         * comint.el (comint-kill-region): Remove yank-handler argument.
12560         * delsel.el (delete-backward-char, backward-delete-char-untabify)
12561         (delete-char): Remove property, since it's now part of their
12562         default behavior.
12563         (self-insert-iso): Remove property since this command doesn't exist.
12565         * emacs-lisp/package.el (package--download-one-archive)
12566         (describe-package-1): Don't query the user about final newline.
12568 2013-10-29  Daniel Colascione  <dancol@dancol.org>
12570         * net/tramp.el (tramp-methods): Document new functionality.
12571         * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
12572         tramp-hostname-checker if method provides one instead of scanning
12573         argument list for "%h" to decide hostname acceptability.
12575 2013-10-28  Michael Albinus  <michael.albinus@gmx.de>
12577         * net/tramp-sh.el (tramp-sh-handle-copy-directory):
12578         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
12579         Handle COPY-CONTENTS.  (Bug#15737)
12581 2013-10-28  Daiki Ueno  <ueno@gnu.org>
12583         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
12584         Document that this option has no effect with GnuPG 2.0 (bug#15552).
12586 2013-10-27  Xue Fuqiao  <xfq.free@gmail.com>
12588         * image.el (defimage, image-load-path): Doc fixes.
12590 2013-10-27  Alan Mackenzie  <acm@muc.de>
12592         Indent statements in macros following "##" correctly.
12593         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
12594         Modify the "#" arm of a cond form to handle "#" and "##" operators.
12596 2013-10-27  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
12598         * linum.el (linum-update-window): Fix boundary test (bug#13446).
12600 2013-10-27  Dmitry Gutov  <dgutov@yandex.ru>
12602         * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
12603         after `=' is probably a new expression.
12605 2013-10-27  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
12607         * man.el (man-imenu-title): New option.
12608         (Man-mode-map): Add menu.  (Bug#15722)
12609         (Man-mode): Add imenu to menu.
12611 2013-10-26  Dmitry Gutov  <dgutov@yandex.ru>
12613         * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
12614         specific in what the first arg can be: a non-keyword word,
12615         string/regexp/percent literal opener, opening paren, or unary
12616         operator followed directly by word.
12618 2013-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12620         * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
12621         (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
12622         (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
12623         (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
12624         Remove vars, they do not apply any more.
12625         (prolog-mode-abbrev-table): Remove redundant declaration.
12626         (prolog-upper-case-string, prolog-lower-case-string): Remove.
12627         (prolog-use-smie): Remove.
12628         (prolog-smie-rules): Add indentation rule for the if-then-else layout
12629         supported by prolog-electric-if-then-else-flag.
12630         (prolog-mode-variables, prolog-menu): Use setq-local.
12631         (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
12632         Remove binding to `Backspace' since this key doesn't exist anyway.
12633         Remove bindings for electric self-inserting keys.
12634         (prog-mode): Assume it's defined.
12635         (prolog-post-self-insert): New function.
12636         (prolog-mode): Use it.
12637         (prolog-indent-line, prolog-indent-level)
12638         (prolog-find-indent-of-matching-paren)
12639         (prolog-indentation-level-of-line, prolog-goto-comment-column)
12640         (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
12641         (prolog-goto-next-paren, prolog-in-string-or-comment)
12642         (prolog-tokenize, prolog-inside-mline-comment)
12643         (prolog-find-start-of-mline-comment): Remove functions.
12644         (prolog-find-unmatched-paren, prolog-clause-end)
12645         (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
12646         (prolog-electric--if-then-else): Rename from
12647         prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
12648         (prolog-tokenize-searchkey): Remove const.
12649         (prolog-clause-info): Use forward-sexp.
12650         (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
12651         (prolog-electric-if-then-else): Remove commands.
12652         (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
12653         for use in post-self-insert-hook.
12654         (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
12655         for use in post-self-insert-hook.
12656         (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
12657         for use in post-self-insert-hook.
12658         (prolog-electric--underscore): Rename from prolog-electric--underscore;
12659         adapt it for use in post-self-insert-hook.
12661 2013-10-25  Michael Albinus  <michael.albinus@gmx.de>
12663         * emacs-lisp/ert.el (ert-run-tests-interactively):
12664         Use `completing-read'.  (Bug#9756)
12666 2013-10-25  Eli Zaretskii  <eliz@gnu.org>
12668         * simple.el (line-move): Call line-move-1 instead of
12669         line-move-visual when the current window hscroll is zero, but
12670         temporary-goal-column indicates we will need to hscroll as result
12671         of the movement.  (Bug#15712)
12673 2013-10-25  Dmitry Gutov  <dgutov@yandex.ru>
12675         * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
12676         capitalization.  Use :visible instead of :active.
12677         Fix `ruby-indent-exp' reference.  Add menu items for the generic
12678         commands that are used with SMIE.
12679         (ruby-do-end-to-brace): Insert space after `{'.
12681 2013-10-25  John Anthony  <john@jo.hnanthony.com>
12683         * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu.  (Bug#15600)
12685         * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu.  (Bug#15599)
12687 2013-10-25  Glenn Morris  <rgm@gnu.org>
12689         * vc/vc.el (vc-print-log): Don't use a working revision unless
12690         one was explicitly specified.  (Bug#15322)
12692 2013-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
12694         * subr.el (add-to-list): Preserve return value in compiler-macro
12695         (bug#15692).
12697 2013-10-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
12699         * progmodes/octave.el (octave-lookfor): Handle empty lookfor
12700         result.  Ask user to retry using '-all' flag.  (Bug#15701)
12702 2013-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
12704         * emacs-lisp/smie.el: New smie-config system.
12705         (smie-config): New defcustom.
12706         (smie-edebug, smie-config-show-indent, smie-config-set-indent)
12707         (smie-config-guess, smie-config-save): New commands.
12708         (smie-config--mode-local, smie-config--buffer-local)
12709         (smie-config--trace, smie-config--modefuns): New vars.
12710         (smie-config--advice, smie-config--mode-hook)
12711         (smie-config--setter, smie-config-local, smie-config--get-trace)
12712         (smie-config--guess-value, smie-config--guess): New functions.
12713         (smie-indent-forward-token, smie-indent-backward-token): Don't copy
12714         text properties.  Treat "string fence" syntax like string syntax.
12716         * progmodes/sh-script.el (sh-use-smie): Change default.
12717         (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
12718         (sh-var-value): Simplify by CSE.
12719         (sh-show-indent, sh-set-indent, sh-learn-line-indent)
12720         (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
12721         is used.
12722         (sh-guess-basic-offset): Use cl-incf.
12723         (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
12725 2013-10-24  Helmut Eller  <eller.helmut@gmail.com>
12727         * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
12728         (bug#15699).
12730 2013-10-24  Glenn Morris  <rgm@gnu.org>
12732         * Makefile.in (abs_top_srcdir): Remove.
12733         (update-subdirs): Use relative path to update-subdirs.
12735 2013-10-24  Eli Zaretskii  <eliz@gnu.org>
12737         * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
12738         ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
12739         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
12740         Call unmsys--file-name before expand-file-name, not after it.
12742 2013-10-24  Michael Albinus  <michael.albinus@gmx.de>
12744         * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
12745         (ert-test-skipped): New error.
12746         (ert-skip, ert-stats-skipped): New defuns.
12747         (ert--skip-unless): New macro.
12748         (ert-test-skipped): New struct.
12749         (ert--run-test-debugger, ert-test-result-type-p)
12750         (ert-test-result-expected-p, ert--stats, ert-stats-completed)
12751         (ert--stats-set-test-and-result, ert-char-for-test-result)
12752         (ert-string-for-test-result, ert-run-tests-batch)
12753         (ert--results-update-ewoc-hf, ert-run-tests-interactively):
12754         Handle skipped tests.  (Bug#9803)
12756 2013-10-24  Glenn Morris  <rgm@gnu.org>
12758         * Makefile.in (check-declare): Remove unnecessary path in -l argument.
12760         * Makefile.in (abs_top_srcdir): New, set by configure.
12761         (update-subdirs): Correct build-aux location.
12763 2013-10-24  Dmitry Gutov  <dgutov@yandex.ru>
12765         * vc/vc.el (vc-print-root-log): Always set `default-directory'
12766         value, whether we could auto-deduce `backend', or not.
12768         * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
12769         with parameters" example.  Simplify the "is it block or is it
12770         hash" check, but also make it more thorough.
12772 2013-10-23  Masashi Fujimoto  <masfj.dev@gmail.com>  (tiny change)
12774         * battery.el (battery-pmset): Handle OS X Mavericks.  (Bug#15694)
12776 2013-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12778         * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
12779         { if it is hanging.
12781         * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
12782         :before ";".
12784 2013-10-23  Jed Brown  <jed@59A2.org>  (tiny change)
12786         * progmodes/compile.el (compilation-directory-matcher)
12787         (compilation-page-delimiter):
12788         Support GNU Make-4.0 directory quoting.  (Bug#15678)
12790 2013-10-23  Leo Liu  <sdl.web@gmail.com>
12792         * ido.el (ido-tidy): Handle read-only text.
12794 2013-10-23  Glenn Morris  <rgm@gnu.org>
12796         * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
12797         (emacs, compile, compile-always):
12798         Quote entities that might contain whitespace.
12799         (custom-deps, finder-data, autoloads): Use abs_lisp.
12800         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
12801         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
12802         ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
12804 2013-10-23  Dmitry Gutov  <dgutov@yandex.ru>
12806         * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
12807         Use `following-char'.
12809 2013-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12811         * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
12812         * progmodes/ruby-mode.el (ruby-smie-rules):
12813         Remove corresponding workaround.  Fix indentation rule of ";" so it
12814         also applies when ";" is the parent.
12816 2013-10-22  Xue Fuqiao  <xfq.free@gmail.com>
12818         * frame.el (display-screens, display-pixel-height)
12819         (display-pixel-width, display-mm-width, display-backing-store)
12820         (display-save-under, display-planes, display-color-cells)
12821         (display-visual-class, display-monitor-attributes-list):
12822         Mention the optional ‘display’ argument in doc strings.
12824 2013-10-22  Michael Gauland  <mikelygee@amuri.net>
12826         * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
12827         viewers such as evince when ebnf-production-name-p is nil.  (Bug#15625)
12829 2013-10-21  Dmitry Gutov  <dgutov@yandex.ru>
12831         * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
12832         TODO.  Add "." after " @ ".
12833         (ruby-smie--at-dot-call): New function.  Checks if point at method
12834         call with explicit target.
12835         (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
12836         to the method name tokens when it precedes them.
12837         (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
12838         (ruby-smie-rules): Add rule for indentation before and after "."
12839         token.
12841 2013-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12843         * textmodes/remember.el (remember-diary-extract-entries):
12844         Avoid add-to-list.
12846         * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
12847         an instruction.
12849 2013-10-21  Dmitry Gutov  <dgutov@yandex.ru>
12851         * progmodes/ruby-mode.el (ruby-smie-grammar):
12852         Add (almost) all infix operators.
12853         (ruby-smie--implicit-semi-p): Add new operator chars.
12855         * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
12856         `smie-down-list'.
12857         (ruby-smie--args-separator-p): Check that there's no newline
12858         between method call and its arguments.
12860 2013-10-20  Alan Mackenzie  <acm@muc.de>
12862         Allow comma separated lists after Java "implements".
12864         * progmodes/cc-engine.el (c-backward-over-enum-header):
12865         Parse commas.
12866         * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
12867         from a "disallowed" list in enum fontification.
12869 2013-10-20  Johan Bockgård  <bojohan@gnu.org>
12871         * startup.el (default-frame-background-mode): Remove unused defvar.
12873         * progmodes/verilog-mode.el (verilog-mode): Don't set
12874         comment-indent-function globally.
12876 2013-10-20  Jan Djärv  <jan.h.d@swipnet.se>
12878         * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
12879         Move Info menu item creation to ns-win.el.
12881         * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
12882         in menu bar.
12884         * menu-bar.el: Move GNUstep specific menus...
12886         * term/ns-win.el (ns-initialize-window-system): ... to here.
12888 2013-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
12890         * simple.el (newline): Only run post-self-insert-hook when
12891         called interactively.
12893 2013-10-19  Johan Bockgård  <bojohan@gnu.org>
12895         * icomplete.el (icomplete-with-completion-tables): Add :version.
12897 2013-10-19  Alan Mackenzie  <acm@muc.de>
12899         Fix fontification bugs with constructors and const.
12901         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
12902         CASE 2) Remove the check for the absence of a suffix construct
12903         after a function declaration with only types (no identifiers) in
12904         the parentheses.  Also, accept a function declaration with just a
12905         type inside the parentheses, if this type can be positively
12906         recognised as such, or if a prefix keyword like "explicit" nails
12907         down the construct as a declaration.
12909 2013-10-19  Eli Zaretskii  <eliz@gnu.org>
12911         * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
12912         TTY menu actions and down-mouse-N to tty-menu-ignore.  This solves
12913         the problem whereby selecting a menu item that leads to a
12914         minibuffer prompt moves the cursor out of the minibuffer window,
12915         making it hard to type at the prompt.  Suggested by Stefan Monnier
12916         <monnier@iro.umontreal.ca>.
12918 2013-10-19  Jan Djärv  <jan.h.d@swipnet.se>
12920         * menu-bar.el: Don't make Services menu.
12922 2013-10-19  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
12924         * ffap.el: Handle "/usr/include/c++/<version>" directories.
12925         (ffap-alist): Use ffap-c++-mode for c++-mode.
12926         (ffap-c++-path): New variable.
12927         (ffap-c++-mode): New function.
12929 2013-10-19  Joe Vornehm Jr.  <joe.vornehm@gmail.com>  (tiny change)
12931         * ido.el (dired-other-frame): Only list directories.  (Bug#15638)
12933 2013-10-18  Michael Albinus  <michael.albinus@gmx.de>
12935         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
12936         introduced on 2013-09-08, which results in an infinite loop
12937         requesting a password.
12939 2013-10-18  Glenn Morris  <rgm@gnu.org>
12941         * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
12943 2013-10-18  Wilson Snyder  <wsnyder@wsnyder.org>
12945         Sync with upstream verilog-mode revision 1a6ecec7.
12946         * progmodes/verilog-mode.el (verilog-mode-version): Update.
12947         (verilog-mode-release-date): Remove.
12948         (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
12949         (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
12950         (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
12951         (verilog-auto-tieoff-ignore-regexp)
12952         (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
12953         (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
12954         (verilog-signals-with, verilog-dir-cache-preserving)
12955         (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
12956         Doc fixes.
12957         (verilog-case-fold): New option, to control case folding in
12958         regexp searches, bug597.
12959         (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
12960         (verilog-string-match-fold, verilog-in-paren-count)
12961         (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
12962         (verilog-at-close-struct-p): New functions.
12963         (verilog-beg-block-re-ordered, verilog-extended-case-re)
12964         (verilog-forward-sexp, verilog-set-auto-endcomments)
12965         (verilog-leap-to-case-head): Handle "unique0" case.
12966         (verilog-in-constraint-re): New constant.
12967         (verilog-keywords, verilog-type-font-keywords):
12968         Add some SystemVerilog 1800-2012 keywords.
12969         (verilog-label-be): Remove unimplemented argument, bug669.
12970         (verilog-batch-execute-func): When batch expanding clear
12971         create-lockfiles to prevent spurious user locks when a file ends
12972         up not changing.
12973         (verilog-calculate-indent, verilog-calc-1)
12974         (verilog-at-close-constraint-p, verilog-at-constraint-p)
12975         (verilog-do-indent): Fix indentation of nested constraints
12976         and structures.
12977         (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
12978         (verilog-auto-inst-param): Use verilog-string-match-fold.
12979         (verilog-read-inst-module-matcher):
12980         Fix AUTOINST on gate primitives with #1.
12981         (verilog-read-decls): Fix double-declaring user-defined typed signals.
12982         Reads all user-defined typed variables.
12983         (verilog-read-defines): Fix reading definitions inside comments, bug647.
12984         (verilog-signals-matching-regexp)
12985         (verilog-signals-not-matching-regexp, verilog-auto):
12986         Respect verilog-case-fold.
12987         (verilog-diff-report): Fix line count.
12988         (verilog-auto-assign-modport): Remove unused local `modi'.
12989         (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
12990         better handle multidimensional arrays.
12991         Fix packed array ports misadding bit index in AUTOINST, bug637.
12992         (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
12993         to not double-declare existing outputs and inputs, respectively.
12994         (verilog-template-map): Bind U to verilog-sk-uvm-component.
12995         (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
12996         (verilog-sk-uvm-component): New skeleton.
12997         (verilog-submit-bug-report): Add verilog-case-fold,
12998         remove verilog-mode-release-date.
13000 2013-10-17  Barry O'Reilly  <gundaetiapo@gmail.com>
13002         * subr.el (sit-for): Call (input-pending-p t) so as to behave
13003         as before.
13005 2013-10-18  Reuben Thomas  <rrt@sc3d.org>
13007         * textmodes/remember.el (remember): Set buffer-offer-save in
13008         remember buffers (bug#13566).
13010 2013-10-18  Daniel Colascione  <dancol@dancol.org>
13012         When evaluating forms in ielm, direct standard output to ielm
13013         buffer.  Add new ielm-return-for-effect command.  Remove trailing
13014         whitespace throughout.
13016         * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
13017         (ielm-return-for-effect): New command.
13018         (ielm-send-input): Accept optional `for-effect' parameter.
13019         (ielm-eval-input): Accept optional `for-effect' parameter.
13020         Bind `standard-output' to stream we create using
13021         `ielm-standard-output-impl'.  Suppress printing result when
13022         `for-effect'.
13023         (ielm-standard-output-impl): New function.
13024         (inferior-emacs-lisp-mode): Explain new features in documentation.
13026 2013-10-17  Michael Albinus  <michael.albinus@gmx.de>
13028         Code cleanup.
13030         * net/tramp.el (tramp-debug-message): Do not check for connection
13031         buffer.
13032         (tramp-message): Use "vector" connection property.
13034         * net/tramp.el (tramp-rfn-eshadow-update-overlay)
13035         (tramp-equal-remote, tramp-eshell-directory-change)
13036         * net/tramp-adb.el (tramp-adb-handle-copy-file)
13037         (tramp-adb-handle-rename-file)
13038         * net/tramp-cmds.el (tramp-list-remote-buffers)
13039         (tramp-cleanup-connection, tramp-cleanup-this-connection)
13040         * net/tramp-compat.el (tramp-compat-process-running-p)
13041         * net/tramp-ftp.el (tramp-ftp-file-name-handler)
13042         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
13043         (tramp-gvfs-handle-rename-file)
13044         * net/tramp-sh.el (tramp-sh-handle-set-file-times)
13045         (tramp-set-file-uid-gid)
13046         * net/tramp-smb.el (tramp-smb-handle-copy-file)
13047         (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
13048         of `file-remote-p'.
13050         * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
13051         * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
13052         (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
13053         (tramp-gw-open-network-stream): Suppress unrelated traces.
13055         * net/tramp-adb.el (tramp-adb-maybe-open-connection)
13056         * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
13057         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
13058         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
13059         connection property.
13061         * net/tramp-cache.el (top): Suppress traces when reading
13062         persistency file.
13064         * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
13065         Refactor common code.  Improve debug message.
13066         (tramp-maybe-open-connection)
13067         * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
13068         connection buffer too early.
13070         * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
13071         from `tramp-smb-actions-with-acl'.
13072         (tramp-smb-actions-set-acl): New defconst.
13073         (tramp-smb-handle-copy-directory)
13074         (tramp-smb-action-get-acl): New defun, renamed from
13075         `tramp-smb-action-with-acl'.
13076         (tramp-smb-action-set-acl): New defun.
13077         (tramp-smb-handle-set-file-acl): Rewrite.
13079 2013-10-17  Glenn Morris  <rgm@gnu.org>
13081         * indent.el (indent-rigidly): Fix 2013-10-08 change.  (Bug#15635)
13083 2013-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
13085         * skeleton.el (skeleton-newline): Remove.
13086         (skeleton-internal-1): Use (insert "\n") instead.
13088         * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
13089         let-bindings.
13091         * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
13092         forward-sexp-function while we redo its job (bug#15613).
13094 2013-10-17  Jay Belanger  <jay.p.belanger@gmail.com>
13096         * calc/calc-comb.el (math-prime-test): Don't assume large integers are
13097         represented by lists.
13099 2013-10-16  Glenn Morris  <rgm@gnu.org>
13101         * tmm.el (tmm--history): New dynamic variable.
13102         (tmm-prompt): Use tmm--history in place of `history'.  (Bug#15623)
13104 2013-10-16  Michael Albinus  <michael.albinus@gmx.de>
13106         * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
13107         (tramp-smb-errors): Add error messages.
13108         (tramp-smb-actions-with-acl): New defconst.
13109         (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
13110         (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
13111         (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
13112         (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
13113         (tramp-smb-get-stat-capability): Fix tests.
13115 2013-10-16  Dima Kogan  <dima@secretsauce.net>  (tiny change)
13117         * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
13118         (bug#15580).
13120 2013-10-16  Glenn Morris  <rgm@gnu.org>
13122         * ansi-color.el (ansi-color-drop-regexp):
13123         Add 1J, 1K, 2K.  (Bug#15617)
13125         * files.el (hack-local-variables--warned-lexical): New.
13126         (hack-local-variables):
13127         Warn about misplaced lexical-binding.  (Bug#15616)
13129         * net/eww.el (eww-render): Always set eww-current-url,
13130         and update header line.  (Bug#15622)
13131         (eww-display-html): ... Rather than just doing it here.
13133 2013-10-15  Eli Zaretskii  <eliz@gnu.org>
13135         * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
13136         menu navigations commands.
13138 2013-10-14  Dima Kogan  <dima@secretsauce.net>  (tiny change)
13140         * progmodes/subword.el (subword-capitalize): Be careful when
13141         the search for [[:alpha:]] fails (bug#15580).
13143 2013-10-14  Eli Zaretskii  <eliz@gnu.org>
13145         * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
13146         to commands that scroll the menu.
13148 2013-10-14  Dmitry Gutov  <dgutov@yandex.ru>
13150         * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
13151         Handle methods ending with `?' and `!'.
13153 2013-10-14  Akinori MUSHA  <knu@iDaemons.org>
13155         * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
13156         `japanese-cp932' to `cp932' to fix the problem where saving a
13157         source file written in Shift_JIS twice would end up having
13158         `coding: japanese-cp932' which Ruby could not recognize.
13159         (ruby-mode-set-encoding): Add support for encodings mapped to nil
13160         in `ruby-encoding-map'.
13161         (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
13162         doesn't need to be explicitly declared in magic comment.
13163         (ruby-encoding-map): Add type declaration for better customize UI.
13165 2013-10-13  Glenn Morris  <rgm@gnu.org>
13167         * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
13168         Occur buffers are read-only.  http://bugs.debian.org/720775
13170         * emacs-lisp/authors.el (authors-fixed-entries):
13171         Comment out old alpha stuff.
13173 2013-10-13  Dmitry Gutov  <dgutov@yandex.ru>
13175         * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
13176         to `after-save-hook' instead of `before-save-hook'.
13177         (ruby-mode-set-encoding): Use the value of coding system used to
13178         write the file.  Call `basic-save-buffer-1' after modifying the
13179         buffer.
13181 2013-10-13  Alan Mackenzie  <acm@muc.de>
13183         Fix indentation/fontification of Java enum with
13184         "implements"/generic.
13186         * progmodes/cc-engine.el (c-backward-over-enum-header):
13187         Extracted from the three other places and enhanced to handle generics.
13188         (c-inside-bracelist-p): Uses new function above.
13189         * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
13190         function above.
13191         (c-font-lock-enum-tail): Uses new function above.
13193 2013-10-13  Kenichi Handa  <handa@gnu.org>
13195         * international/mule-cmds.el (select-safe-coding-system): Remove a
13196         superfluous condition in chekcing whether a coding system is safe
13197         or not.
13199 2013-10-13  Oleh Krehel  <ohwoeowho@gmail.com>
13201         * replace.el (how-many): Fix rstart and !rend case.  (Bug#15589)
13203 2013-10-13  Andreas Politz  <politza@hochschule-trier.de>
13205         * progmodes/sql.el (sql-add-product): Fix paren typo.  (Bug#15435)
13207 2013-10-13  Glenn Morris  <rgm@gnu.org>
13209         * menu-bar.el (menu-bar-update-buffers):
13210         Unify Buffers menu prompt string.  (Bug#15576)
13212         * face-remap.el (text-scale-adjust): Doc fix.  (Bug#15434)
13214         * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
13215         Add some entries.
13216         (authors-fixed-entries): Use accented form of name.
13218 2013-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13220         * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
13221         method calls (bug#15594).
13222         (ruby-smie--args-separator-p): New function.
13223         (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
13224         recognize paren-free method calls.
13226         * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
13227         internals of universal-argument.
13229 2013-10-11  Eli Zaretskii  <eliz@gnu.org>
13231         * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
13232         Bind all menu-bar sequences to tty-menu-exit -- this pops down a
13233         dropped menu on second mouse click on the menu bar.
13235 2013-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
13237         * progmodes/sh-script.el: Provide simpl(e|istic) completion.
13238         (explicit-shell-file-name): Declare.
13239         (sh--vars-before-point, sh--cmd-completion-table): New functions.
13240         (sh-completion-at-point-function): New function.
13241         (sh-mode): Use it.
13242         (sh-smie--keyword-p): Remove unused argument.
13243         (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
13244         vars.
13245         (sh-set-shell): Always setup SMIE, even if we use the
13246         old indentation code.
13248 2013-10-11  Dmitry Gutov  <dgutov@yandex.ru>
13250         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
13251         cases of ? and =.
13252         (ruby-smie-rules): Simplify the "do" rule.  The cases when the
13253         predicate would return nil are almost non-existent.
13254         (ruby-smie--redundant-do-p): Include "until" and "for" statements.
13256         * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
13257         cache also after commands that modify the buffer but don't move
13258         point.
13260 2013-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13262         * env.el (substitute-env-in-file-name): New function.
13263         (substitute-env-vars): Extend the meaning of the optional arg.
13265 2013-10-10  Eli Zaretskii  <eliz@gnu.org>
13267         * term/w32-win.el (dynamic-library-alist): Define separate lists
13268         of GIF DLLs for versions before and after 5.0.0 of giflib.
13269         (Bug#15531)
13271 2013-10-10  João Távora  <joaotavora@gmail.com>
13273         * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
13274         not locked, use last revision and current source as
13275         defaults.  (Bug#15569)
13277 2013-10-10  Masatake YAMATO  <yamato@redhat.com>
13279         * menu-bar.el (menu-bar-open): Don't use popup-menu if
13280         menu-bar is hidden.
13282 2013-10-10  Martin Rudalics  <rudalics@gmx.at>
13284         * window.el (pop-to-buffer-same-window): Fix doc-string.
13285         (Bug#15492)
13287 2013-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
13289         * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
13291 2013-10-10  Andrei Chițu  <andrei.chitu1@gmail.com>  (tiny change)
13293         * calendar/icalendar.el (icalendar-import-file):
13294         Fix interactive spec.  (Bug#15482)
13296 2013-10-10  Glenn Morris  <rgm@gnu.org>
13298         * desktop.el (desktop-save): Default to saving in .emacs.d,
13299         since PWD is no longer in desktop-path by default.  (Bug#15319)
13301         * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
13302         now that text mode has a menu with the same entry.
13303         (menu-bar-text-mode-auto-fill): Remove now unused func.
13304         * textmodes/text-mode.el (text-mode-map):
13305         Use auto-fill help text from menu-bar.el.
13307 2013-10-10  John Anthony  <john@jo.hnanthony.com>
13309         * textmodes/text-mode.el (text-mode-map): Add a menu.  (Bug#15562)
13311 2013-10-09  Juri Linkov  <juri@jurta.org>
13313         * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
13314         instead of this-command-keys.  Add universal-argument-more and
13315         universal-argument-minus to the list of prefix commands.  (Bug#15568)
13317 2013-10-09  Glenn Morris  <rgm@gnu.org>
13319         * vc/vc-svn.el (vc-svn-create-repo):
13320         Expand paths in file://... url.  (Bug#15446)
13322         * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
13323         Add some entries.
13324         (authors): Remove unused local variables.
13326 2013-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
13328         * profiler.el: Create a more coherent calltree from partial backtraces.
13329         (profiler-format): Hide the tail with `invisible' so that C-s can still
13330         find the hidden elements.
13331         (profiler-calltree-depth): Don't recurse so enthusiastically.
13332         (profiler-function-equal): New hash-table-test.
13333         (profiler-calltree-build-unified): New function.
13334         (profiler-calltree-build): Use it.
13335         (profiler-report-make-name-part): Indent the calltree less.
13336         (profiler-report-mode): Add visibility specs for profiler-format.
13337         (profiler-report-expand-entry, profiler-report-toggle-entry):
13338         Expand the whole subtree when provided with a prefix arg.
13340 2013-10-09  Dmitry Gutov  <dgutov@yandex.ru>
13342         * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
13343         iuwu-mod token.
13344         (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
13345         hanging iuwu-mod token.
13346         (ruby-smie--forward-token): Do not include a dot after a token in
13347         that token.
13348         (ruby-smie--backward-token): Likewise.
13350 2013-10-08  Juri Linkov  <juri@jurta.org>
13352         * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
13353         to isearch-other-control-char.
13354         (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
13355         and isearch-post-command-hook to post-command-hook.
13356         (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
13357         and isearch-post-command-hook from post-command-hook.
13358         (isearch-unread-key-sequence)
13359         (isearch-reread-key-sequence-naturally)
13360         (isearch-lookup-scroll-key, isearch-other-control-char)
13361         (isearch-other-meta-char): Remove functions.
13362         (isearch-pre-command-hook, isearch-post-command-hook):
13363         New functions based on isearch-other-meta-char rewritten
13364         relying on the new behavior of overriding-terminal-local-map
13365         that does not replace the local keymaps any more.  (Bug#15200)
13367 2013-10-08  Eli Zaretskii  <eliz@gnu.org>
13369         Support menus on text-mode terminals.
13370         * tmm.el (tmm-menubar): Adapt doc string to TTY menus
13371         functionality.
13373         * tooltip.el (tooltip-mode): Don't error out on TTYs.
13375         * menu-bar.el (popup-menu, popup-menu-normalize-position):
13376         Move here from mouse.el.
13377         (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
13378         and arrow keys.
13379         (tty-menu-navigation-map): New map for TTY menu navigation.
13381         * loadup.el ("tooltip"): Load even if x-show-tip is not available.
13383         * frame.el (display-mouse-p): Report text-mode mouse as available
13384         on w32.
13385         (display-popup-menus-p): Report availability if mouse is
13386         available; don't condition on window-system.
13388         * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
13389         (tty-menu-selected-face): New faces.
13391 2013-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13393         * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
13394         (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
13395         (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
13396         (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
13397         New constants.
13398         (lisp-mode-variables): New `elisp' argument.
13399         (emacs-lisp-mode): Use it.
13400         * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
13401         (lisp-font-lock-keywords-2): Move to lisp-mode.el.
13403         * indent.el: Use lexical-binding.
13404         (indent-region): Add progress reporter.
13405         (tab-stop-list): Make it implicitly extend to infinity by repeating the
13406         last step.
13407         (indent--next-tab-stop): New function to implement this behavior.
13408         (tab-to-tab-stop, move-to-tab-stop): Use it.
13410 2013-10-08  Teemu Likonen  <tlikonen@iki.fi>
13412         * indent.el (indent-rigidly--current-indentation): New function.
13413         (indent-rigidly-map): New var.
13414         (indent-rigidly): Use it to provide interactive mode (bug#8196).
13416 2013-10-08  Bastien Guerry  <bzg@gnu.org>
13418         * register.el (insert-register): Fix 2013-10-07 change.
13420 2013-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13422         * progmodes/perl-mode.el: Use lexical-binding.
13423         Remove redundant :group args.
13424         (perl-nochange): Change default to be closer to other major modes's
13425         standard behavior.
13426         (perl-indent-line): Don't consider text on current line as a
13427         valid beginning of function from which to indent.
13429         * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
13430         with more than one argument (bug#15538).
13432         * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
13434         * vc/pcvs.el: Use lexical-binding.
13435         (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
13436         environment of `eval'.
13437         (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
13438         than a list of expressions.  Adjust callers.
13439         * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
13441 2013-10-07  Dmitry Gutov  <dgutov@yandex.ru>
13443         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
13444         case of the dot in a chained method call being on the following line.
13446 2013-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13448         * electric.el (electric-indent-inhibit): New var.
13449         (electric-indent-post-self-insert-function): Use it.
13450         * progmodes/python.el (python-mode): Set it.
13452         * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
13453         open braces.
13455         * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
13457         * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
13458         (css-mode): Use electric-indent-chars.
13460         * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
13461         (font-lock-beg, font-lock-end): Move before first use.
13462         (nxml-mode): Use syntax-propertize-function.
13463         (nxml-after-change, nxml-after-change1): Adjust accordingly.
13464         (nxml-extend-after-change-region): Remove.
13465         * nxml/xmltok.el: Use lexical-binding.
13466         (xmltok-save): Use `declare'.
13467         (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
13468         * nxml/nxml-util.el: Use lexical-binding.
13469         (nxml-with-degradation-on-error, nxml-with-invisible-motion):
13470         Use `declare'.
13471         * nxml/nxml-ns.el: Use lexical-binding.
13472         (nxml-ns-save): Use `declare'.
13473         (nxml-ns-prefixes-for): Avoid add-to-list.
13474         * nxml/rng-match.el: Use lexical-binding.
13475         (rng--ipattern): Use cl-defstruct.
13476         (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
13477         (rng-cons-group-after, rng-subst-group-after)
13478         (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
13479         Use closures instead of `(lambda...).
13481 2013-10-07  Michael Albinus  <michael.albinus@gmx.de>
13483         * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
13484         of BEG and END.
13486         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
13487         Use `tramp-handle-insert-file-contents'.
13488         (tramp-gvfs-handle-insert-file-contents): Remove function.
13490         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
13491         Use `save-restriction' in order to keep markers.
13493         * net/trampver.el: Update release number.
13495 2013-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
13497         * progmodes/compile.el (compilation-parse-errors):
13498         Use compilation--put-prop.
13499         (compilation--ensure-parse): Check compilation-multiline.
13501         * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
13503         * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
13504         lexical-binding.
13506         * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
13508         * progmodes/ruby-mode.el: Fix recently added tests.
13509         (ruby-smie-grammar): Add - and +.
13510         (ruby-smie--redundant-do-p, ruby-smie--forward-id)
13511         (ruby-smie--backward-id): New functions.
13512         (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
13513         (ruby-smie-rules): Handle hanging do.  Get rid of hack, not needed
13514         any more.
13516 2013-10-07  Leo Liu  <sdl.web@gmail.com>
13518         * register.el (register-preview-delay)
13519         (register-preview-functions): New variables.
13520         (register-read-with-preview, register-preview)
13521         (register-describe-oneline): New functions.
13522         (point-to-register, window-configuration-to-register)
13523         (frame-configuration-to-register, jump-to-register)
13524         (number-to-register, view-register, insert-register)
13525         (copy-to-register, append-to-register, prepend-to-register)
13526         (copy-rectangle-to-register): Use register-read-with-preview to
13527         read register.  (Bug#15525)
13529 2013-10-06  Dato Simó  <dato@net.com.org.es>  (tiny change)
13531         * net/network-stream.el (network-stream-open-starttls): Don't add
13532         --insecure if it's already present, because that gnutls-cli
13533         rejects getting that parameter twice.
13535 2013-10-06  Dmitry Gutov  <dgutov@yandex.ru>
13537         * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
13538         keyword, too.
13540 2013-10-05  Dmitry Gutov  <dgutov@yandex.ru>
13542         * newcomment.el (comment-use-global-state): Change default value
13543         to t, mark obsolete (Bug#15251).
13544         (comment-beginning): In addition to `comment-to-syntax', check the
13545         value of `comment-use-global-state'.
13547 2013-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
13549         * progmodes/ruby-mode.el (ruby-use-smie): Change default.
13550         (ruby-comment-column): Follow the global default, by default.
13551         (ruby-smie-grammar): Add assignment syntax.
13552         (ruby-smie--implicit-semi-p): No implicit semi-colon after an
13553         open-paren, a comma, or a \.
13554         (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
13555         and line continuations.
13556         (ruby-smie-rules): Adjust handling of open-paren, now that it's never
13557         followed by implicit semi-colons.  Add rule for string concatenation
13558         and for indentation at BOB.
13559         (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
13561         * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
13562         calling next-sexp, since next-token may have skipped chars which
13563         next-sexp doesn't know should be skipped!
13565 2013-10-05  Leo Liu  <sdl.web@gmail.com>
13567         * progmodes/octave.el (octave-send-region):
13568         Call compilation-forget-errors.
13570 2013-10-04  Xue Fuqiao  <xfq.free@gmail.com>
13572         * vc/vc-svn.el (vc-svn-find-admin-dir):
13573         * vc/vc-rcs.el (vc-rcs-find-admin-dir):
13574         * vc/vc-mtn.el (vc-mtn-find-admin-dir):
13575         * vc/vc-cvs.el (vc-cvs-find-admin-dir):
13576         * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
13578 2013-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
13580         * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
13582 2013-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
13584         * subr.el (read-passwd): Hide chars even when called within a context
13585         where after-change-functions is disabled (bug#15501).
13586         (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
13587         until we removed ourself from overriding-terminal-local-map.
13589 2013-10-04  Leo Liu  <sdl.web@gmail.com>
13591         * progmodes/octave.el (inferior-octave-mode):
13592         Call compilation-forget-errors.
13594 2013-10-04  Xue Fuqiao  <xfq.free@gmail.com>
13596         * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
13598 2013-10-04  Michael Albinus  <michael.albinus@gmx.de>
13600         * net/secrets.el (secrets-create-collection): Add optional
13601         argument ALIAS.  Use proper Label keyword.  Append ALIAS as
13602         dbus-call-method argument.  (Bug#15516)
13604 2013-10-04  Leo Liu  <sdl.web@gmail.com>
13606         * progmodes/octave.el (inferior-octave-error-regexp-alist)
13607         (inferior-octave-compilation-font-lock-keywords): New variables.
13608         (compilation-error-regexp-alist)
13609         (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
13610         (inferior-octave-mode): Use compilation-shell-minor-mode.
13612 2013-10-04  Jorgen Schaefer  <forcer@forcix.cx>
13614         * minibuffer.el (completion--replace): Be careful that `end' might be
13615         a marker.
13617 2013-10-03  Daiki Ueno  <ueno@gnu.org>
13619         Add support for package signature checking.
13620         * emacs-lisp/package.el (url-http-file-exists-p)
13621         (epg-make-context, epg-context-set-home-directory)
13622         (epg-verify-string, epg-context-result-for)
13623         (epg-signature-status, epg-signature-to-string)
13624         (epg-check-configuration, epg-configuration)
13625         (epg-import-keys-from-file): Declare.
13626         (package-check-signature): New user option.
13627         (package-unsigned-archives): New user option.
13628         (package-desc): Add `signed' field.
13629         (package-load-descriptor): Set `signed' field if .signed file exists.
13630         (package--archive-file-exists-p): New function.
13631         (package--check-signature): New function.
13632         (package-install-from-archive): Check package signature.
13633         (package--download-one-archive): Check archive signature.
13634         (package-delete): Remove .signed file.
13635         (package-import-keyring): New command.
13636         (package-refresh-contents): Import default keyring.
13637         (package-desc-status): Add "unsigned" status.
13638         (describe-package-1, package-menu--print-info)
13639         (package-menu-mark-delete, package-menu--find-upgrades)
13640         (package-menu--status-predicate): Support "unsigned" status.
13642 2013-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13644         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
13645         the new compilation scheme using the new byte-codes.
13647         * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
13648         (byte-pophandler): New byte codes.
13649         (byte-goto-ops): Adjust accordingly.
13650         (byte-compile--use-old-handlers): New var.
13651         (byte-compile-catch): Use new byte codes depending on
13652         byte-compile--use-old-handlers.
13653         (byte-compile-condition-case--old): Rename from
13654         byte-compile-condition-case.
13655         (byte-compile-condition-case--new): New function.
13656         (byte-compile-condition-case): New function that dispatches depending
13657         on byte-compile--use-old-handlers.
13658         (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
13659         when we can.
13661         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
13662         Optimize under `condition-case' and `catch' if
13663         byte-compile--use-old-handlers is nil.
13664         (disassemble-offset): Handle new bytecodes.
13666 2013-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13668         * subr.el (error): Use `declare'.
13669         (decode-char, encode-char): Use advertised-calling-convention instead
13670         of the docstring to discourage use of the `restriction' arg.
13672 2013-10-03  Daiki Ueno  <ueno@gnu.org>
13674         * epg.el (epg-verify-file): Add a comment saying that it does not
13675         notify verification error as a return value nor a signal.
13676         (epg-verify-string): Ditto.
13678 2013-10-02  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
13680         * progmodes/compile.el (compilation-start): Try globbing the arg to
13681         `cd' (bug#15417).
13683 2013-10-02  Michael Albinus  <michael.albinus@gmx.de>
13685         Sync with Tramp 2.2.8.
13687         * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
13688         * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
13689         * net/trampver.el: Update release number.
13691 2013-10-01  Jan Djärv  <jan.h.d@swipnet.se>
13693         * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
13694         and default-process-coding-system for darwin only.
13696 2013-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
13698         * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
13700 2013-10-01  Mitchel Humpherys  <mitch.special@gmail.com>  (tiny change)
13702         * vc/vc-git.el (vc-git-grep): Disable pager.
13704 2013-10-01  Dmitry Gutov  <dgutov@yandex.ru>
13706         * emacs-lisp/package.el (package-buffer-info, describe-package-1):
13707         Use :url instead of :homepage, as per
13708         http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
13710         * newcomment.el (comment-beginning): When `comment-use-syntax' is
13711         non-nil, use `syntax-ppss' (Bug#15251).
13713 2013-09-30  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
13715         * progmodes/octave.el (inferior-octave-startup-file):
13716         Prefer ~/.emacs.d/init_octave.m.
13718 2013-09-29  Dmitry Gutov  <dgutov@yandex.ru>
13720         * emacs-lisp/package.el (package-desc-from-define):
13721         Accept additional arguments as plist, convert them to an alist and store
13722         them in the `extras' slot.
13723         (package-generate-description-file): Convert extras alist back to
13724         plist and append to the `define-package' form arguments.
13725         (package--alist-to-plist): New function.
13726         (package--ac-desc): Add `extras' slot.
13727         (package--add-to-archive-contents): Check if the archive-contents
13728         vector is long enough, and if it is, pass its `extras' slot value
13729         to `package-desc-create'.
13730         (package-buffer-info): Call `lm-homepage', pass the returned value
13731         to `package-desc-from-define'.
13732         (describe-package-1): Render the homepage button (Bug#13291).
13734         * emacs-lisp/package-x.el (package-upload-buffer-internal):
13735         Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
13737 2013-09-29  Jan Djärv  <jan.h.d@swipnet.se>
13739         * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
13740         and default-process-coding-system to utf-8-unix (Bug#15402).
13742 2013-09-29  Xue Fuqiao  <xfq.free@gmail.com>
13744         * subr.el (looking-back): Do not recommend using looking-back.
13746 2013-09-28  Alan Mackenzie  <acm@muc.de>
13748         Fix indentation/fontification of Java enum with "implements".
13750         * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
13751         regexp which matches "implements", etc., in Java.
13752         * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
13753         specifier clauses coming after "enum".
13754         * progmodes/cc-fonts.el (c-font-lock-declarations)
13755         (c-font-lock-enum-tail): Check for extra specifier clauses coming
13756         after "enum".
13758 2013-09-28  Jan Djärv  <jan.h.d@swipnet.se>
13760         * faces.el (region): Change ns_selection_color to
13761         ns_selection_fg_color, add ns_selection_bg_color.
13763 2013-09-28  Leo Liu  <sdl.web@gmail.com>
13765         * progmodes/octave.el (inferior-octave-completion-table)
13766         (inferior-octave-completion-at-point): Minor tweaks.
13768         * textmodes/ispell.el (ispell-lookup-words): Rename from
13769         lookup-words.  (Bug#15460)
13770         (lookup-words): Obsolete.
13771         (ispell-complete-word, ispell-command-loop): All uses changed.
13773 2013-09-28  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
13775         * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
13776         (octave-mode-menu): Add octave-send-buffer.
13777         (octave-send-buffer): New function.
13779 2013-09-28  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
13781         * progmodes/octave.el (octave-mode-map): Add key binding for
13782         octave-lookfor.
13783         (octave-mode-menu): Add octave-lookfor.
13784         (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
13785         octave-lookfor.
13786         (octave-lookfor): New function.
13788 2013-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
13790         * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
13791         (cl--loop-iterator-function): Rename from cl--loop-map-form and change
13792         its convention.
13793         (cl--loop-set-iterator-function): New function.
13794         (cl-loop): Adjust accordingly, so as not to use cl-subst.
13795         (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
13796         Bind `it' with `let' instead of substituting it with `cl-subst'.
13797         (cl--unused-var-p): New function.
13798         (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
13799         Eliminate some unused variable warnings (bug#15326).
13801 2013-09-27  Tassilo Horn  <tsdh@gnu.org>
13803         * doc-view.el (doc-view-scale-reset): Rename from
13804         `doc-view-reset-zoom-level'.
13805         (doc-view-scale-adjust): New command.
13806         (doc-view-mode-map): Remap `text-scale-adjust' bindings to
13807         `doc-view-scale-adjust'.
13809 2013-09-26  Tassilo Horn  <tsdh@gnu.org>
13811         * doc-view.el (doc-view-reset-zoom-level): New command.
13812         (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
13813         zoom commands (bug#15466).
13815 2013-09-26  Kenichi Handa  <handa@gnu.org>
13817         * international/quail.el (quail-help): Make it not a command.
13819 2013-09-26  Leo Liu  <sdl.web@gmail.com>
13821         * minibuffer.el (completion-all-sorted-completions): Make args
13822         optional as they are.
13824 2013-09-25  Daniel Colascione  <dancol@dancol.org>
13826         * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
13827         specs are and that they're not evaluated.
13829 2013-09-24  Sam Steingold  <sds@gnu.org>
13831         * midnight.el (clean-buffer-list-kill-regexps)
13832         (clean-buffer-list-kill-buffer-names): Update for the new Man
13833         buffer naming which includes the object name.
13835 2013-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
13837         * eshell/esh-cmd.el (eshell--sep-terms): New var.
13838         (eshell-parse-command, eshell-parse-pipeline): Use it since
13839         eshell-separate-commands requires a dynamic scoped var.
13840         Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
13842 2013-09-23  Leo Liu  <sdl.web@gmail.com>
13844         * autoinsert.el (auto-insert-alist): Make the value of
13845         lexical-binding match its file setting.
13847 2013-09-23  Juanma Barranquero  <lekktu@gmail.com>
13849         * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
13851         * autoarg.el (autoarg-kp-digit-argument):
13852         * electric.el (Electric-command-loop):
13853         * kmacro.el (kmacro-step-edit-insert):
13854         Do not set universal-argument-num-events.
13856 2013-09-22  Leo Liu  <sdl.web@gmail.com>
13858         * files.el (interpreter-mode-alist): Add octave.
13860 2013-09-21  Alan Mackenzie  <acm@muc.de>
13862         C++: fontify identifier in declaration following "public:" correctly.
13863         * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
13864         to match "public", etc.
13865         (c-decl-prefix-re): Add ":" into the C++ value.
13866         * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
13867         bit.  Add a check for a ":" preceded by "public", etc.
13869 2013-09-21  Eli Zaretskii  <eliz@gnu.org>
13871         * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
13872         recognized by GDB 7.5 and later.
13874 2013-09-21  Xue Fuqiao  <xfq.free@gmail.com>
13876         * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
13878 2013-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13880         * subr.el (internal--call-interactively): New const.
13881         (called-interactively-p): Use it (bug#3984).
13883 2013-09-20  Xue Fuqiao  <xfq.free@gmail.com>
13885         * vc/pcvs.el (cvs-mode-ignore):
13886         * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
13887         Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
13889 2013-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
13891         * eshell/em-ls.el: Use advice.  Remove redundant :group keywords.
13892         (eshell-ls-orig-insert-directory): Remove.
13893         (eshell-ls-unload-hook): Not a defcustom any more.  Use advice-remove.
13894         (eshell-ls-use-in-dired): Use advice-add/remove.
13895         (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
13896         Add `orig-fun' arg for use in :around advice.
13897         Make it check (redundantly) eshell-ls-use-in-dired.
13899 2013-09-19  Glenn Morris  <rgm@gnu.org>
13901         * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
13903         * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
13905         * emacs-lisp/eieio.el (class-parent): Undo previous change.
13907 2013-09-19  Michael Albinus  <michael.albinus@gmx.de>
13909         * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
13910         (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
13911         (tramp-get-remote-python): New defuns.
13912         (tramp-get-remote-uid-with-perl)
13913         (tramp-get-remote-gid-with-perl): New defuns.  Perl code
13914         contributed by yary <not.com@gmail.com> (tiny change).
13915         (tramp-get-remote-uid-with-python)
13916         (tramp-get-remote-gid-with-python): New defuns.  Python code
13917         contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
13918         (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
13920 2013-09-19  Glenn Morris  <rgm@gnu.org>
13922         * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
13924         * eshell/em-unix.el (eshell-remove-entries):
13925         Rename argument to avoid name-clash with global `top-level'.
13927         * eshell/esh-proc.el (eshell-kill-process-function):
13928         Remove eshell-reset-after-proc from eshell-kill-hook if present.
13929         (eshell-reset-after-proc): Remove unused arg `proc'.
13931         * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
13932         (directory-files-and-attributes): Mark unused arg.
13934         * eshell/em-unix.el (eshell-remove-entries):
13935         Remove unused arg `path'.  Update callers.
13937         * eshell/em-hist.el (eshell-hist-parse-arguments):
13938         Remove unused arg `silent'.  Update callers.
13940         * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
13941         Fix (f)boundp mix-up.
13943         * eshell/em-smart.el (eshell-smart-scroll-window)
13944         (eshell-disable-after-change):
13945         * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
13947 2013-09-18  Alan Mackenzie  <acm@muc.de>
13949         Fix fontification of type when followed by "const".
13950         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
13951         "known" types from fontification.
13953 2013-09-18  Glenn Morris  <rgm@gnu.org>
13955         * emacs-lisp/chart.el (x-display-color-cells): Declare.
13956         (chart-face-list): Drop Emacsen without display-color-p.
13958         * net/eww.el (libxml-parse-html-region): Declare.
13959         (eww-display-html): Explicit error if no libxml2 support.
13961         * doc-view.el (doc-view-mode): Silence --without-x compilation.
13963         * image.el (image-type-from-buffer, image-multi-frame-p):
13964         Remove --without-x warning/error.
13966         * mouse.el (mouse-yank-primary):
13967         * term.el (term-mouse-paste):
13968         Reorder to silence --without-x compilation.
13970         * mpc.el (doc-view-mode): Silence --without-x compilation.
13972         * mail/rmailmm.el (rmail-mime-set-bulk-data):
13973         Silence --without-x compilation.
13975         * progmodes/gud.el (gud-find-file, gud-mode):
13976         Silence --without-x compilation.
13977         (tooltip-mode): Declare.
13979         * wdired.el (dired-backup-overwrite): Remove declaration.
13980         (wdired-mode-map): Add doc string.
13982         * custom.el (x-get-resource): Declare.
13984         * eshell/em-glob.el (ange-cache):
13985         * eshell/em-unix.el (ange-cache): Declare.
13987         * faces.el (x-display-list, x-open-connection, x-get-resource):
13988         Declare.
13990         * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
13991         (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
13992         Declare.
13994         * frame.el (x-display-grayscale-p, x-display-name): Declare.
13996         * net/gnutls.el (gnutls-log-level): Declare.
13998         * net/shr.el (image-size, image-animate): Declare.
14000         * simple.el (font-info): Declare.
14002         * subr.el (x-popup-dialog): Declare.
14004         * term/common-win.el (x-select-enable-primary)
14005         (x-last-selected-text-primary, x-last-selected-text-clipboard):
14006         Declare.
14008         * term/ns-win.el (x-handle-args): Declare.
14010         * term/x-win.el (x-select-enable-clipboard): Declare.
14012         * term/w32-win.el (create-default-fontset): Declare.
14014         * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
14015         Declare.
14017         * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
14018         (fit-frame-to-buffer): Explicit error if --without-x.
14019         (mouse-autoselect-window-select): Silence compiler.
14021         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
14023         * eshell/em-cmpl.el (eshell-complete-parse-arguments):
14024         * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
14025         * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
14026         * eshell/esh-util.el (eshell-sublist):
14027         Remove unused local variables.
14029         * eshell/esh-io.el (x-select-enable-clipboard): Declare.
14031         * textmodes/two-column.el: Make 2C-split work for --without-x.
14032         (scroll-bar-columns): Autoload.
14033         (top-level): Require fringe when compiling.
14035 2013-09-18  Leo Liu  <sdl.web@gmail.com>
14037         * subr.el (add-hook): Robustify to handle closure as well.
14039 2013-09-17  Glenn Morris  <rgm@gnu.org>
14041         * simple.el (messages-buffer-mode-map): Unbind "g".
14043 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
14045         * help-mode.el (help-mode-finish): Use derived-mode-p.
14046         Remove obsolete highlighting.
14048         * play/life.el (life-mode): Use define-derived-mode.  Derive from
14049         special-mode.
14050         (life): Let-bind inhibit-read-only.
14051         (life-setup): Avoid `setq'.  Use `life-mode'.
14053         * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
14054         which should not be needed any more.
14055         (package-menu-refresh, package-menu-describe-package): Use user-error.
14057         * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
14058         (eshell-post-rewrite-command-hook): Make obsolete.
14059         (eshell-parse-command): Simplify.
14060         (eshell-structure-basic-command): Remove unused arg `vocal-test'.
14061         (eshell--cmd): Declare.
14062         (eshell-parse-pipeline): Remove unused var `final-p'.
14063         Pass a dynvar to eshell-post-rewrite-command-hook.
14064         Implement the new eshell-post-rewrite-command-function.
14065         (eshell-invoke-directly): Remove unused arg `input'.
14066         * eshell/esh-io.el (eshell-io-initialize):
14067         Use eshell-post-rewrite-command-function (bug#15399).
14068         (eshell--apply-redirections): Rename from eshell-apply-redirections;
14069         adjust to new calling convention.
14070         (eshell-create-handles): Rename args to avoid clashing with dynvar
14071         `standard-output'.
14073 2013-09-17  Glenn Morris  <rgm@gnu.org>
14075         * simple.el (messages-buffer-mode): New major mode.
14076         (messages-buffer): New function.
14077         * startup.el (normal-top-level): Switch mode of *Messages* buffer.
14078         * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
14079         (ert-run-test): Use `messages-buffer' function.
14080         (ert--force-message-log-buffer-truncation): Ignore read-only.
14081         * help.el (view-echo-area-messages): Use `messages-buffer' function.
14082         * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
14084 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
14086         * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
14088         * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
14090 2013-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
14092         * icomplete.el (icomplete-in-buffer): New var.
14093         (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
14094         vars and replace them with functions.
14095         (icomplete-minibuffer-setup): Adjust accordingly.
14096         (icomplete--completion-table, icomplete--completion-predicate)
14097         (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
14098         New functions.
14099         (icomplete-forward-completions, icomplete-backward-completions)
14100         (icomplete-simple-completing-p, icomplete-exhibit)
14101         (icomplete-completions): Use them.
14102         (icomplete--in-region-buffer): New var.
14103         (icomplete--in-region-setup): New function.
14104         (icomplete-mode): Use it.
14106         * eshell/esh-opt.el: Fix last change to set lexical-vars properly
14107         (bug#15379).
14108         (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
14109         return args and options.
14110         (eshell-eval-using-options): Use the new return value of
14111         eshell--do-opts to set the options's vars in their scope.
14112         (eshell--set-option): Rename from eshell-set-option.
14113         Add arg `opt-vals'.
14114         (eshell--process-option): Rename from eshell-process-option.
14115         Add arg `opt-vals'.
14116         (eshell--process-args): Use an `opt-vals' alist to store the options's
14117         values during their processing and return them additionally to the
14118         remaining args.
14120 2013-09-15  Dmitry Gutov  <dgutov@yandex.ru>
14122         * progmodes/ruby-mode.el (ruby-operator-re): Consider line
14123         continuation character an operator, as far as indentation is
14124         concerned (Bug#15369).
14126 2013-09-15  Martin Rudalics  <rudalics@gmx.at>
14128         * window.el (window--state-put-2): Don't process buffer state
14129         when buffer doesn't exist any more (Bug#15382).
14131 2013-09-15  Glenn Morris  <rgm@gnu.org>
14133         * eshell/em-unix.el (eshell/rm):
14134         Make -f ignore missing files.  (Bug#15373)
14136         * eshell/esh-cmd.el (eshell--local-vars): New variable.  (Bug#15372)
14137         (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
14138         * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
14140 2013-09-14  Glenn Morris  <rgm@gnu.org>
14142         * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
14144 2013-09-13  Glenn Morris  <rgm@gnu.org>
14146         * dired-x.el (dired-guess-shell-alist-user): Doc fix.
14147         (dired-guess-default): Make `file' available in the env.  (Bug#15363)
14149 2013-09-13  Dmitry Antipov  <dmantipov@yandex.ru>
14151         * frame.el (x-focus-frame): Mark as declared in frame.c.
14153 2013-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
14155         * ls-lisp.el: Use advice-add.
14156         (original-insert-directory): Remove.
14157         (ls-lisp--insert-directory): Rename from insert-directory; add
14158         `orig-fun' argument.
14159         (insert-directory): Advise.
14161 2013-09-13  Eli Zaretskii  <eliz@gnu.org>
14163         * term.el (term-emulate-terminal): Decode the command string
14164         before passing it to term-command-hook.  (Bug#15337)
14166 2013-09-13  Glenn Morris  <rgm@gnu.org>
14168         * eshell/esh-util.el (ange-cache): Move declaration earlier.
14170         * eshell/esh-ext.el (eshell-search-path): Declare.
14172         * eshell/em-prompt.el (eshell/pwd): Autoload it.
14173         Otherwise an error occurs if eshell-dirs module not loaded.
14175         * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
14177 2013-09-13  Michael Albinus  <michael.albinus@gmx.de>
14179         * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
14180         `tramp-check-proper-host'.  Check for a valid method name.
14182         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
14183         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
14184         * net/tramp-sh.el (tramp-maybe-open-connection):
14185         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
14187         * net/tramp-cache.el (tramp-cache-print): Don't print text properties
14188         also for hash values.
14190 2013-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14192         * term/ns-win.el (parameters): Don't declare as dynamic.
14193         (before-make-frame-hook): Don't add ineffective function.
14195         * eshell/*.el: Use lexical-binding (bug#15231).
14197 2013-09-12  Kenichi Handa  <handa@gnu.org>
14199         * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
14201 2013-09-12  Glenn Morris  <rgm@gnu.org>
14203         * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
14204         (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
14206         * subr.el (do-after-load-evaluation): Also give compiler warnings
14207         when obsolete files are used (except by obsolete files).
14209         * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
14210         in the status output, assume `filename' is the first.  (Bug#15322)
14212         * vc/vc.el (vc-deduce-fileset): Doc fix.
14214         * calc/calc-help.el (Info-goto-node):
14215         * progmodes/cperl-mode.el (Info-find-node):
14216         * vc/ediff.el (Info-goto-node): Update declarations.
14218         * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
14220         * vc/vc-bzr.el (vc-compilation-mode): Declare.
14221         (vc-bzr-pull): Require vc-dispatcher.
14222         * vc/vc-git.el (vc-compilation-mode): Declare.
14223         (vc-git-pull): Require vc-dispatcher.
14225         * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
14227         * progmodes/octave.el (help-button-action): Declare.
14229         * shell.el (shell-directory-tracker): Output error as a message
14230         rather than just returning it as a string.
14231         (shell-process-pushd): Remove useless use of message.
14233         * dframe.el (dframe-timer-fn):
14234         * files.el (dir-locals-read-from-file):
14235         * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
14236         (mpc-format):
14237         * reveal.el (reveal-post-command):
14238         * saveplace.el (load-save-place-alist-from-file):
14239         * shell.el (shell-resync-dirs):
14240         * w32-common-fns.el (x-get-selection-value):
14241         * emacs-lisp/copyright.el (copyright-find-copyright):
14242         * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
14243         * emulation/tpu-edt.el (tpu-copy-keyfile):
14244         * play/bubbles.el (bubbles--mark-neighbourhood):
14245         * progmodes/executable.el
14246         (executable-make-buffer-file-executable-if-script-p):
14247         * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
14249 2013-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14251         Cleanup Eshell to rely less on dynamic scoping.
14252         * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
14253         last-value, and ext-command here.  Bind `args' closer to `body'.
14254         (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
14255         (eshell--args): Declare new dynamic var.
14256         (eshell-do-opt): Add argument `args'.  Bind our own usage-msg,
14257         last-value, and ext-command.  Pass `args' to `body'.
14258         (eshell-process-args): Bind eshell--args.
14259         (eshell-set-option): Use eshell--args.
14260         * eshell/eshell.el (eshell): Use derived-mode-p.
14261         * eshell/esh-var.el (eshell-parse-variable): Use backquote.
14262         (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
14263         (eshell-glob-function): Declare.
14264         * eshell/esh-util.el: Require cl-lib.
14265         (eshell-read-hosts-file): Avoid add-to-list.
14266         * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
14267         `err'.
14268         * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
14269         Declare.
14270         (eshell/diff): Remove unused var `err'.
14271         * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
14272         `killflag'.
14273         * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
14274         * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
14275         first use.
14276         * eshell/em-glob.el (eshell-glob-matches, message-shown):
14277         Move declaration before first use.
14278         * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
14279         * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
14280         rely on cl-return.
14282 2013-09-12  Glenn Morris  <rgm@gnu.org>
14284         * term/ns-win.el (global-map): Remove binding for ispell-next,
14285         deleted 1999-05-29.  (Bug#15357)
14287 2013-09-11  Glenn Morris  <rgm@gnu.org>
14289         * echistory.el (electric-command-history): Remove call to deleted func.
14291         * play/landmark.el (landmark-mode): Fix typos.
14293         * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
14294         Check cvs-sort-ignore-file is bound.
14296         * savehist.el: No need for cl when compiling on Emacs.
14298 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14300         * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
14301         (bug#15338).
14302         (eshell-self-insert-command, eshell-send-invisible):
14303         Remove unused argument.
14304         (eshell-handle-control-codes): Remove unused var `orig'.
14305         Avoid delete-backward-char.
14307         * files.el (set-auto-mode): Simplify a bit further.
14309 2013-09-11  Glenn Morris  <rgm@gnu.org>
14311         * files.el (interpreter-mode-alist): Remove \\` \\' parts.
14312         (set-auto-mode): Don't regexp-quote elements.
14313         * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
14314         * progmodes/cc-mode.el (interpreter-mode-alist):
14315         * progmodes/ruby-mode.el (interpreter-mode-alist):
14316         Revert previous change.
14318 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14320         * play/snake.el (snake-mode):
14321         * play/mpuz.el (mpuz-mode):
14322         * play/landmark.el (lm-mode):
14323         * play/blackbox.el (blackbox-mode):
14324         * play/5x5.el (5x5-mode):
14325         * obsolete/options.el (Edit-options-mode):
14326         * net/quickurl.el (quickurl-list-mode):
14327         * net/newst-treeview.el (newsticker-treeview-mode):
14328         * mail/rmailsum.el (rmail-summary-mode):
14329         * mail/mspools.el (mspools-mode):
14330         * locate.el (locate-mode):
14331         * ibuffer.el (ibuffer-mode):
14332         * emulation/ws-mode.el (wordstar-mode):
14333         * emacs-lisp/debug.el (debugger-mode):
14334         * array.el (array-mode):
14335         * net/eudc.el (eudc-mode): Use define-derived-mode.
14336         * net/mairix.el (mairix-searches-mode-font-lock-keywords):
14337         Move initialization into declaration.
14338         (mairix-searches-mode): Use define-derived-mode.
14339         * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
14340         (eudc-edit-hotlist): Use dolist.
14341         * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
14342         (Man-mode): Use define-derived-mode.
14343         * info.el (Info-edit-mode-map): Rename from Info-edit-map.
14344         (Info-edit-mode): Use define-derived-mode.
14345         (Info-cease-edit): Use Info-mode.
14346         * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
14347         into declaration.
14348         (eshell-mode): Use define-derived-mode.
14349         * chistory.el (command-history-mode-map): Rename from
14350         command-history-map.
14351         (command-history-mode): Use define-derived-mode.
14352         (Command-history-setup): Remove function.
14353         * calc/calc.el (calc-trail-mode-map): New var.
14354         (calc-trail-mode): Use define-derived-mode.
14355         (calc-trail-buffer): Set calc-main-buffer manually.
14356         * bookmark.el (bookmark-insert-annotation): New function.
14357         (bookmark-edit-annotation): Use it.
14358         (bookmark-edit-annotation-mode): Make it a proper major mode.
14359         (bookmark-send-edited-annotation): Use derived-mode-p.
14360         * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
14361         closer to its ideal place.  Use \' to match EOS.
14363         * profiler.el (profiler-calltree-find): Use function-equal.
14365 2013-09-10  Glenn Morris  <rgm@gnu.org>
14367         * files.el (interpreter-mode-alist): Convert to regexps.
14368         (set-auto-mode): Adapt for this.  (Bug#15306)
14369         * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
14370         Comment out unused variable.
14371         * progmodes/cc-mode.el (interpreter-mode-alist):
14372         * progmodes/python.el (interpreter-mode-alist):
14373         * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
14374         * progmodes/sh-script.el (sh-set-shell):
14375         No longer use interpreter-mode-alist to get list of shells.
14377         * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
14379 2013-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
14381         * simple.el: Use set-temporary-overlay-map for universal-argument.
14382         (universal-argument-map): Don't use default-bindings (bug#15317).
14383         Bind switch-frame explicitly.  Replace universal-argument-minus with
14384         a conditional binding.
14385         (universal-argument-num-events, saved-overriding-map): Remove.
14386         (restore-overriding-map): Remove.
14387         (universal-argument--mode): Rename from save&set-overriding-map,
14388         and rewrite.
14389         (universal-argument, universal-argument-more, negative-argument)
14390         (digit-argument): Adjust accordingly.
14391         (universal-argument-minus): Remove.
14392         (universal-argument-other-key): Remove.
14394         * subr.el (with-demoted-errors): Add `format' argument.
14396 2013-09-10  Michael Albinus  <michael.albinus@gmx.de>
14398         * net/tramp.el (tramp-cleanup): Remove.  Functionality added to
14399         `tramp-cleanup-connection'.
14401         * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
14402         parameters KEEP-DEBUG and KEEP-PASSWORD.
14404         * net/tramp.el (tramp-file-name-handler):
14405         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
14406         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
14407         (tramp-maybe-open-connection):
14408         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
14409         Use `tramp-cleanup-connection'.
14411         * net/tramp-sh.el (tramp-maybe-open-connection):
14412         Catch 'uname-changed inside the progress reporter.
14414 2013-09-10  Glenn Morris  <rgm@gnu.org>
14416         * simple.el (read-minibuffer): Unbreak it.  (Bug#15318)
14418         * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
14419         returns "alternate access method" in mode (eg "-rw-r--r--.").
14421 2013-09-08  Glenn Morris  <rgm@gnu.org>
14423         * saveplace.el (load-save-place-alist-from-file):
14424         Demote errors.  (Bug#15305)
14426 2013-09-08  Michael Albinus  <michael.albinus@gmx.de>
14428         Improve compatibility with older Emacsen, and XEmacs.
14430         * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
14431         only if it is bound.  It isn't for XEmacs.
14432         (with-tramp-progress-reporter): Do not let-bind `result'.
14433         This yields to scoping errors in XEmacs.
14434         (tramp-handle-make-auto-save-file-name): New function, moved from
14435         tramp-sh.el.
14437         * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
14438         for `make-auto-save-file-name'.
14439         (tramp-adb--gnu-switches-to-ash):
14440         Use `tramp-compat-replace-regexp-in-string'.
14442         * net/tramp-cache.el (tramp-cache-print): Call
14443         `substring-no-properties' only if it is bound.  It isn't for XEmacs.
14445         * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
14446         bound.  It isn't for XEmacs.
14448         * net/tramp-compat.el (tramp-compat-copy-file):
14449         Catch `wrong-number-of-arguments' error.
14450         (tramp-compat-replace-regexp-in-string): New defun.
14452         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
14453         for `make-auto-save-file-name'.
14454         (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
14455         `copy-file'.
14456         (tramp-gvfs-file-gvfs-monitor-file-process-filter)
14457         (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
14458         (tramp-synce-list-devices): Use `push' instead of `pushnew'.
14460         * net/tramp-gw.el (tramp-gw-open-network-stream):
14461         Use `tramp-compat-replace-regexp-in-string'.
14463         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
14464         Call `tramp-handle-make-auto-save-file-name'.
14465         (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
14466         (tramp-sh-file-gvfs-monitor-dir-process-filter)
14467         (tramp-sh-file-inotifywait-process-filter):
14468         Use `tramp-compat-replace-regexp-in-string'.
14469         (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
14471         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
14472         for `make-auto-save-file-name'.
14473         (tramp-smb-handle-copy-directory):
14474         Call `tramp-compat-replace-regexp-in-string'.
14475         (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
14476         (tramp-smb-handle-copy-file): Improve error message.
14477         (tramp-smb-handle-rename-file): Rename directly only in case
14478         `newname' does not exist yet.  This is a restriction of smbclient.
14479         (tramp-smb-maybe-open-connection): Rerun the function only when
14480         `auth-sources' is non-nil.
14482 2013-09-08  Kenichi Handa  <handa@gnu.org>
14484         * international/characters.el: Set category "^" (Combining) for
14485         more characters.
14487 2013-09-07  Alan Mackenzie  <acm@muc.de>
14489         Correctly fontify Java class constructors.
14490         * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
14491         in Java Mode.
14492         (c-recognize-typeless-decls): Set the Java value to t.
14493         * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
14494         While handling a "(", add a check for, effectively, Java, and handle a
14495         "typeless" declaration there.
14497 2013-09-07  Roland Winkler  <winkler@gnu.org>
14499         * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
14500         field subtitle for entry type book.
14502 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
14504         * minibuffer.el: Make minibuffer-complete call completion-in-region
14505         rather than other way around.
14506         (completion--some, completion-pcm--find-all-completions):
14507         Don't delay signals when debugging.
14508         (minibuffer-completion-contents): Beware fields within the
14509         minibuffer contents.
14510         (completion-all-sorted-completions): Use defvar-local.
14511         (completion--do-completion, completion--cache-all-sorted-completions)
14512         (completion-all-sorted-completions, minibuffer-force-complete):
14513         Add args `beg' and `end'.
14514         (completion--in-region-1): New fun, extracted from minibuffer-complete.
14515         (minibuffer-complete): Use completion-in-region.
14516         (completion-complete-and-exit): New fun, extracted from
14517         minibuffer-complete-and-exit.
14518         (minibuffer-complete-and-exit): Use it.
14519         (completion--complete-and-exit): Rename from
14520         minibuffer--complete-and-exit.
14521         (completion-in-region--single-word): New function, extracted from
14522         minibuffer-complete-word.
14523         (minibuffer-complete-word): Use it.
14524         (display-completion-list): Make `common-substring' argument obsolete.
14525         (completion--in-region): Call completion--in-region-1 instead of
14526         minibuffer-complete.
14527         (completion-help-at-point): Pass boundaries to
14528         minibuffer-completion-help as args rather than via an overlay.
14529         (completion-pcm--string->pattern): Use `any-delim'.
14530         (completion-pcm--optimize-pattern): New function.
14531         (completion-pcm--pattern->regex): Handle `any-delim'.
14532         * icomplete.el (icomplete-forward-completions)
14533         (icomplete-backward-completions, icomplete-completions):
14534         Adjust calls to completion-all-sorted-completions and
14535         completion--cache-all-sorted-completions.
14536         (icomplete-with-completion-tables): Default to t.
14537         * emacs-lisp/crm.el (crm--current-element): Rename from
14538         crm--select-current-element.  Don't put an overlay but return the
14539         boundaries instead.
14540         (crm--completion-command): Take two new args to bind to the boundaries.
14541         (crm-completion-help): Adjust accordingly.
14542         (crm-complete): Use completion-in-region.
14543         (crm-complete-word): Use completion-in-region--single-word.
14544         (crm-complete-and-exit): Use completion-complete-and-exit.
14546 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
14548         * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
14549         than dynamically.
14551 2013-09-06  Juri Linkov  <juri@jurta.org>
14553         * info.el (Info-display-images-node): When image file doesn't exist
14554         display text version of the image if it's provided in the Info file.
14555         Otherwise, display the location of missing image from SRC attribute.
14556         Add help-echo text property from ALT attribute.  (Bug#15279)
14558 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
14560         * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
14561         (edit-abbrevs-mode): Use define-derived-mode.
14563         * epa.el (epa--encode-coding-string, epa--decode-coding-string)
14564         (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
14565         that it's defined.
14566         (epa-key-list-mode, epa-key-mode, epa-info-mode):
14567         Use define-derived-mode.
14569         * epg.el (epg-start-encrypt): Minor CSE simplification.
14571 2013-09-06  William Xu  <william.xwl@gmail.com>
14573         * arc-mode.el: Add support for 7za (bug#15264).
14574         (archive-7z-program): New var.
14575         (archive-zip-extract, archive-zip-expunge, archive-zip-update)
14576         (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
14577         (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
14579 2013-09-06  Michael Albinus  <michael.albinus@gmx.de>
14581         Remove URL syntax.
14583         * net/tramp.el (tramp-syntax, tramp-prefix-format)
14584         (tramp-postfix-method-format, tramp-prefix-ipv6-format)
14585         (tramp-postfix-ipv6-format, tramp-prefix-port-format)
14586         (tramp-postfix-host-format, tramp-file-name-regexp)
14587         (tramp-completion-file-name-regexp)
14588         (tramp-completion-dissect-file-name)
14589         (tramp-handle-substitute-in-file-name): Remove 'url case.
14590         (tramp-file-name-regexp-url)
14591         (tramp-completion-file-name-regexp-url): Remove constants.
14593 2013-09-06  Glenn Morris  <rgm@gnu.org>
14595         * replace.el (replace-string): Doc fix re start/end.  (Bug#15275)
14597 2013-09-05  Dmitry Gutov  <dgutov@yandex.ru>
14599         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
14600         keywords" below "here-doc beginnings" (Bug#15270).
14602 2013-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14604         * subr.el (pop): Use `car-safe'.
14605         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
14606         to detect unused `pop' return value.
14608         * progmodes/python.el (python-nav-beginning-of-block): Remove unused
14609         var `block-regexp'.
14610         (python-nav--forward-sexp): Remove unused var `re-search-fn'.
14611         (python-fill-string): Remove unused var `marker'.
14612         (python-skeleton-add-menu-items): Remove unused var `items'.
14614         * international/mule-cmds.el: Require CL.
14615         (find-coding-systems-for-charsets): Avoid add-to-list.
14616         (sanitize-coding-system-list): New function, extracted from
14617         select-safe-coding-system-interactively.
14618         (select-safe-coding-system-interactively): Use it.
14619         (read-input-method-name): Accept symbols for `default'.
14621         * emacs-lisp/advice.el (defadvice): Add indent rule.
14623 2013-09-05  Daniel Hackney  <dan@haxney.org>
14625         * dired-x.el:
14626         * net/ange-ftp.el:
14627         * net/browse-url.el:
14628         * net/dbus.el:
14629         * net/eudc.el:
14630         * net/eudcb-ldap.el:
14631         * net/eww.el:
14632         * net/imap.el:
14633         * printing.el:
14634         * vc/ediff-diff.el:
14635         * vc/ediff-init.el:
14636         * vc/ediff-merg.el:
14637         * vc/ediff-mult.el:
14638         * vc/ediff-util.el:
14639         * vc/ediff-wind.el:
14640         * vc/ediff.el:
14641         * vc/emerge.el:
14642         * vc/pcvs.el:
14643         * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
14644         byte compiler.  Remove some unused let-bound variables.
14646 2013-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
14648         * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
14649         a "ref-cell", since it gets better optimized (bug#14883).
14651 2013-09-05  Glenn Morris  <rgm@gnu.org>
14653         * progmodes/cc-awk.el (c-forward-sws): Declare.
14655 2013-09-04  Glenn Morris  <rgm@gnu.org>
14657         * generic-x.el [rul-generic-mode]: Require cc-mode.
14658         (c++-mode-syntax-table): Declare.
14659         (rul-generic-mode-syntax-table): Init in the defvar.
14661 2013-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
14663         * vc/vc-dispatcher.el (vc-run-delayed): New macro.
14664         (vc-do-command, vc-set-async-update):
14665         * vc/vc-mtn.el (vc-mtn-dir-status):
14666         * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
14667         (vc-hg-pull, vc-hg-merge-branch):
14668         * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
14669         (vc-git-merge-branch):
14670         * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
14671         (vc-cvs-dir-status-files):
14672         * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
14673         (vc-bzr-dir-status-files):
14674         * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
14675         * vc/vc-annotate.el: Use lexical-binding.
14676         (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
14677         (vc-sentinel-movepoint): Declare.
14678         (vc-annotate): Don't use `goto-line'.
14679         * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
14680         (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
14681         (vc-sentinel-movepoint): Declare.
14682         * vc/vc-svn.el: Use lexical-binding.
14683         (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
14684         * vc/vc-sccs.el:
14685         * vc/vc-rcs.el: Use lexical-binding.
14687         * autorevert.el (auto-revert-notify-handler): Explicitly ignore
14688         `deleted'.  Don't drop errors silently.
14690         * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
14692 2013-09-04  Xue Fuqiao  <xfq.free@gmail.com>
14694         * vc/vc.el (vc-ignore): Rewrite.
14695         (vc-default-ignore): New function.
14696         (vc-default-ignore-completion-table): Use find-ignore-file.
14698         * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
14699         * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
14700         * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
14701         Remove.  Most code moved to vc.el.
14703 2013-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
14705         * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
14706         * net/tramp-smb.el (tramp-smb-get-file-entries):
14707         * net/tramp-sh.el (tramp-sh-handle-insert-directory)
14708         (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
14710         * net/eww.el (eww-display-raw): Remove unused argument `charset'.
14711         Update call to it.
14712         (eww-change-select): Remove unused var `properties'.
14713         (eww-make-unique-file-name): Remove unused var `base'.
14715         * finder.el (finder-compile-keywords): Don't mess with windows.
14717         * calculator.el (calculator-funcall): Fix typo in last change.
14719         * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
14721         * emacs-lisp/package.el (package-activate-1): Don't let a missing
14722         <pkg>-autoloads.el file stop us.
14724         * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
14725         warnings, and factor out common code.
14727 2013-09-03  Dmitry Gutov  <dgutov@yandex.ru>
14729         * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
14730         two-character operators and whether the character preceding them
14731         changes their meaning (Bug#15208).
14733 2013-09-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
14735         Format code sent to Python shell for robustness.
14736         * progmodes/python.el (python-shell-buffer-substring):
14737         New function.
14738         (python-shell-send-region, python-shell-send-buffer): Use it.
14740 2013-09-02  Michael Albinus  <michael.albinus@gmx.de>
14742         * net/tramp-compat.el (tramp-compat-user-error): Move it ...
14743         * net/tramp.el (tramp-user-error): ... here.
14744         (tramp-find-method, tramp-check-proper-host)
14745         (tramp-dissect-file-name, tramp-debug-message)
14746         (tramp-handle-shell-command):
14747         * net/tramp-adb.el (tramp-adb-handle-shell-command):
14748         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
14750         * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
14752 2013-09-02  Martin Rudalics  <rudalics@gmx.at>
14754         * avoid.el (mouse-avoidance-point-position)
14755         (mouse-avoidance-too-close-p): Handle case where posn-at-point
14756         returns nil.
14758 2013-09-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
14760         * progmodes/python.el (python-shell-completion-get-completions):
14761         Drop use of deleted `comint-last-prompt-overlay'.
14762         (python-nav-if-name-main): New command.
14764 2013-09-01  Glenn Morris  <rgm@gnu.org>
14766         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
14767         Avoid leading space in $wins.  Otherwise the sed command used by
14768         eg compile-main ends up containing "/*.el".  (Bug#15170)
14770         * frame.el (frame-background-mode): Doc fix.  (Bug#15226)
14772 2013-08-30  Glenn Morris  <rgm@gnu.org>
14774         * emacs-lisp/bytecomp.el (byte-recompile-directory):
14775         Fix is-this-a-directory logic.  (Bug#15220)
14777 2013-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14779         * textmodes/css-mode.el: Use SMIE.
14780         (css-smie-grammar): New var.
14781         (css-smie--forward-token, css-smie--backward-token)
14782         (css-smie-rules): New functions.
14783         (css-mode): Use them.
14784         (css-navigation-syntax-table): Remove var.
14785         (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
14786         (css-indent-calculate, css-indent-line): Remove functions.
14788         Misc changes to reduce use of `(lambda...); and other cleanups.
14789         * cus-edit.el: Use lexical-binding.
14790         (customize-push-and-save, customize-apropos)
14791         (custom-buffer-create-internal): Use closures.
14792         * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
14793         * progmodes/ada-xref.el: Use setq.
14794         * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
14795         * dframe.el: Use lexical-binding.
14796         (dframe-frame-mode): Fix calling convention for hooks.  Use a closure.
14797         * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
14798         * descr-text.el: Use lexical-binding.
14799         (describe-text-widget, describe-text-sexp, describe-property-list):
14800         Use closures.
14801         * comint.el (comint-history-isearch-push-state): Use a closure.
14802         * calculator.el: Use lexical-binding.
14803         (calculator-number-to-string): Make it work with lexical-binding.
14804         (calculator-funcall): Same and use cl-letf.
14806         * emacs-lisp/lisp.el (lisp--company-doc-buffer)
14807         (lisp--company-doc-string, lisp--company-location): New functions.
14808         (lisp-completion-at-point): Use them to improve Company support.
14810         * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
14811         params of lambda expressions.
14812         (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
14813         (ruby-smie--opening-pipe-p): New function.
14814         (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
14815         symbols and matched |...| for formal params.
14816         (ruby-smie-rules): Don't let the formal params of a "do" prevent it
14817         from being treated as hanging.  Handle "rescue".
14819 2013-08-29  Glenn Morris  <rgm@gnu.org>
14821         * progmodes/cc-engine.el (c-pull-open-brace):
14822         Move definition before use.
14824 2013-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
14826         * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
14827         are immutable.  Don't use `unsafe' any more.
14828         (cl--defsubst-expand): Don't substitute at the same time as keeping
14829         a residual unused let-binding.  Don't use `unsafe' any more.
14831 2013-08-29  Glenn Morris  <rgm@gnu.org>
14833         * calendar/cal-china.el (calendar-chinese-year-cache):
14834         Recenter on 2015.
14836         * nxml/nxml-util.el (nxml-debug-clear-inside):
14837         Use cl-loop rather than loop.
14839         * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
14841         * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
14843 2013-08-28  Glenn Morris  <rgm@gnu.org>
14845         * progmodes/antlr-mode.el: No need to require cc-mode twice.
14847         * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
14849         * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
14851 2013-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14853         * simple.el (repeat-complex-command--called-interactively-skip):
14854         New function.
14855         (repeat-complex-command): Use it (bug#14136).
14857         * progmodes/cc-mode.el: Minor cleanup of var declarations.
14858         (c-define-abbrev-table): Add `doc' argument.
14859         (c-mode-abbrev-table, c++-mode-abbrev-table)
14860         (objc-mode-abbrev-table, java-mode-abbrev-table)
14861         (idl-mode-abbrev-table, pike-mode-abbrev-table)
14862         (awk-mode-abbrev-table): Use it.
14863         (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
14864         (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
14865         (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
14866         (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
14867         Move initialization into the declaration; and remove any
14868         autoload cookie.
14870         * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
14871         and dynamic let binding.
14873         * vc/smerge-mode.el: Remove redundant :group args.
14875         * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
14876         to load-path.
14878 2013-08-28  Juri Linkov  <juri@jurta.org>
14880         * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
14881         arg DONT-DOWNCASE-LAST of `read-key-sequence'.
14882         (isearch-other-meta-char): Handle an undefined shifted printing
14883         character by downshifting it.  (Bug#15200)
14885 2013-08-28  Juri Linkov  <juri@jurta.org>
14887         * isearch.el (isearch-search): Change regexp error message for
14888         non-regexp searches.  (Bug#15166)
14890 2013-08-28  Paul Eggert  <eggert@cs.ucla.edu>
14892         * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
14893         for portability to hosts where /bin/sh has problems.
14895 2013-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
14897         * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
14899 2013-08-27  Juri Linkov  <juri@jurta.org>
14901         * isearch.el (isearch-other-meta-char): Don't store kmacro commands
14902         in the keyboard macro.  (Bug#15126)
14904 2013-08-27  Juri Linkov  <juri@jurta.org>
14906         * isearch.el (isearch-quote-char): Comment out converting unibyte
14907         to multibyte, thus syncing with its `quoted-insert' counterpart.
14908         (Bug#15166)
14910 2013-08-27  Martin Rudalics  <rudalics@gmx.at>
14912         * window.el (display-buffer-use-some-window): Add missing
14913         argument in call of get-largest-window (Bug#15185).
14914         Reported by Stephen Leake.
14916 2013-08-27  Glenn Morris  <rgm@gnu.org>
14918         * emacs-lisp/package.el (package-buffer-info): Fix message typo.
14920 2013-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
14922         * progmodes/python.el (python-font-lock-keywords): Don't return nil
14923         from a matcher-function unless there's no more matches (bug#15161).
14925 2013-08-26  Michael Albinus  <michael.albinus@gmx.de>
14927         * minibuffer.el: Revert change from 2013-08-20.
14929         * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
14930         with text property `tramp-default', if appropriate.
14931         (tramp-check-proper-host): New defun.
14932         (tramp-dissect-file-name): Do not check hostname.  Revert change
14933         of 2013-03-18.
14934         (tramp-backtrace): Make VEC-OR-PROC optional.
14936         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
14937         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
14938         * net/tramp-sh.el (tramp-maybe-open-connection):
14939         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
14940         Apply `tramp-check-proper-host'.
14942 2013-08-26  Tassilo Horn  <tsdh@gnu.org>
14944         * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
14945         lambda expression in order to have `describe-variable' display it.
14947 2013-08-26  Michael Albinus  <michael.albinus@gmx.de>
14949         * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
14950         BUF can be optional.  (Bug#15186)
14952 2013-08-25  Xue Fuqiao  <xfq.free@gmail.com>
14954         * progmodes/flymake.el (flymake-get-real-file-name-function):
14955         Fix broken customization.  (Bug#15184)
14957 2013-08-25  Alan Mackenzie  <acm@muc.de>
14959         Improve indentation of bracelists defined by macros (without "=").
14961         * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
14962         expansion begins with "{", regard it as bracelist when it doesn't
14963         contain a ";".
14965         Parse C++ inher-intro when there's a template split over 2 lines.
14967         * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
14968         rigorously the search for "class" etc. followed by ":".
14970         * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
14971         random languages a regexp which never matches rather than nil.
14973         Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
14975         * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
14976         (c-awk-regexp-one-line-possibly-open-char-list-re)
14977         (c-awk-one-line-possibly-open-regexp-re)
14978         (c-awk-one-line-non-syn-ws*-re): Remove.
14979         (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
14980         (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
14981         (c-awk-space*-unclosed-regexp-/-re): New constants.
14982         (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
14983         aren't regexp delimiters.
14985         * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
14986         handling for a rare situation in AWK Mode involving unterminated
14987         strings/regexps.
14989 2013-08-23  Glenn Morris  <rgm@gnu.org>
14991         * files.el (auto-mode-alist): Use sh-mode for .bash_history.
14993         * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
14995         * files.el (create-file-buffer): If the result would begin with
14996         spaces, prepend a "|" instead of removing them.  (Bug#15162)
14998 2013-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
15000         * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
15001         text-properties (bug#15155).
15003         * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
15004         exist any more.
15005         (calc-keypad-redraw): Remove unused var `pad'.
15006         (calc-keypad-press): Remove unused var `menu'.
15008 2013-08-23  Martin Rudalics  <rudalics@gmx.at>
15010         * window.el (display-buffer-pop-up-frame):
15011         Call pop-up-frame-function with BUFFER current so `make-frame' will
15012         use it as the new frame's buffer (Bug#15133).
15014 2013-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
15016         * calendar/timeclock.el: Minor cleanups.
15017         (timeclock-ask-before-exiting, timeclock-use-display-time):
15018         Use `symbol'.
15019         (timeclock-modeline-display): Define as alias before the
15020         actual definition.
15021         (timeclock-mode-line-display): Use define-minor-mode.
15022         (timeclock-day-list-template): Make it a function, add an argument.
15023         (timeclock-day-list-required, timeclock-day-list-length)
15024         (timeclock-day-list-debt, timeclock-day-list-span)
15025         (timeclock-day-list-break): Adjust calls accordingly.
15027 2013-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
15029         * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
15030         Use read--expression so that completion works again.
15032 2013-08-21  Sam Steingold  <sds@gnu.org>
15034         Add rudimentary inferior shell interaction
15035         * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
15036         (sh-set-shell): Reset it.
15037         (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
15038         New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
15040 2013-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
15042         * align.el: Use lexical-binding.
15043         (align-region): Simplify accordingly.
15045 2013-08-20  Michael Albinus  <michael.albinus@gmx.de>
15047         * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
15049         * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
15050         `non-essential' up.
15052 2013-08-17  Michael Albinus  <michael.albinus@gmx.de>
15054         * net/tramp.el:
15055         * net/tramp-adb.el:
15056         * net/tramp-cmds.el:
15057         * net/tramp-ftp.el:
15058         * net/tramp-gvfs.el:
15059         * net/tramp-gw.el:
15060         * net/tramp-sh.el: Don't wrap external variable declarations by
15061         `eval-when-compile'.
15063 2013-08-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15065         * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
15066         now that Emacs supports ImageMagick animations.
15068 2013-08-16  Michael Albinus  <michael.albinus@gmx.de>
15070         * net/tramp-cmds.el (top): Don't declare `buffer-name'.
15071         (tramp-append-tramp-buffers): Rewrite buffer local variables part.
15073 2013-08-16  Martin Rudalics  <rudalics@gmx.at>
15075         * window.el (mouse-autoselect-window-select): Do autoselect when
15076         mouse pointer is on margin.
15078 2013-08-16  William Parsons  <wbparsons@alum.mit.edu>  (tiny change)
15080         * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV.  (Bug#1972)
15082 2013-08-16  Glenn Morris  <rgm@gnu.org>
15084         * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
15085         Handle "Remote Directory" response of some clients.  (Bug#15058)
15087         * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
15088         Tweak warning.  (Bug#14926)
15090         * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
15091         (menu-bar-tools-menu): Simplify news and mail items.  (Bug#15095)
15093         * image-mode.el (image-mode-map): Add menu items to reverse,
15094         increase, decrease, reset animation speed.
15095         (image--set-speed, image-increase-speed, image-decrease-speed)
15096         (image-reverse-speed, image-reset-speed): New functions.
15097         (image-mode-map): Add bindings for speed commands.
15099         * image.el (image-animate-get-speed, image-animate-set-speed):
15100         New functions.
15101         (image-animate-timeout): Respect image :speed property.
15103 2013-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
15105         * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
15106         previous line (bug#15101).
15107         (debugger-eval-expression, debugger-record-expression):
15108         Use read--expression (bug#15102).
15110 2013-08-15  Michael Albinus  <michael.albinus@gmx.de>
15112         Remove byte compiler warnings, visible when compiling with
15113         `byte-compile-force-lexical-warnings' set to t.
15115         * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
15116         (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
15117         (tramp-handle-unhandled-file-name-directory)
15118         (tramp-handle-file-notify-add-watch, tramp-action-login)
15119         (tramp-action-succeed, tramp-action-permission-denied)
15120         (tramp-action-terminal, tramp-action-process-alive): Prefix unused
15121         arguments with "_".
15123         * net/tramp-adb.el (tramp-adb-parse-device-names)
15124         (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
15125         (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
15126         (tramp-adb-handle-file-truename): Remove unused arguments.
15128         * net/tramp-cache.el (tramp-flush-directory-property)
15129         (tramp-flush-connection-property, tramp-list-connections)
15130         (tramp-parse-connection-properties): Prefix unused arguments with "_".
15132         * net/tramp-compat.el (tramp-compat-make-temp-file):
15133         Rename FILENAME to F.
15135         * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
15136         (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
15137         (tramp-zeroconf-parse-workstation-device-names)
15138         (tramp-zeroconf-parse-webdav-device-names)
15139         (tramp-synce-parse-device-names): Prefix unused arguments with "_".
15141         * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
15142         (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
15144         * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
15145         arguments.
15146         (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
15147         (tramp-sh-handle-insert-file-contents-literally)
15148         (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
15149         with "_".
15150         (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
15151         Remove unused variables.
15153         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
15154         (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
15155         (tramp-smb-read-file-entry): Prefix unused arguments with "_".
15157         * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
15158         Make them a defconst.
15159         (tramp-uuencode-region): Remove unused variable.
15161 2013-08-14  Juanma Barranquero  <lekktu@gmail.com>
15163         * frameset.el (frameset--prop-setter): New function.
15164         (frameset-prop): Add gv-setter declaration.
15165         (frameset-filter-minibuffer): Deal with the case that the minibuffer
15166         parameter was already set in FILTERED.  Doc fix.
15167         (frameset--record-minibuffer-relationships): Allow saving a
15168         minibufferless frame without its corresponding minibuffer frame.
15169         (frameset--reuse-frame): Accept a match from an orphaned minibufferless
15170         frame, if the frame id matches.
15171         (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
15172         frames before orphaned ones.
15173         (frameset-restore): Warn about orphaned windows, instead of error out.
15175 2013-08-14  Martin Rudalics  <rudalics@gmx.at>
15177         * window.el (window-make-atom): Don't overwrite parameter
15178         already present.
15179         (display-buffer-in-atom-window): Handle special case where we
15180         split an already atomic window.
15181         (window--major-non-side-window, display-buffer-in-side-window)
15182         (window--side-check): Ignore minibuffer window when walking
15183         window tree.
15184         (window-deletable-p): Return 'frame only if no other frame uses
15185         our minibuffer window.
15186         (record-window-buffer): Run buffer-list-update-hook.
15187         (split-window): Make sure window--check-frame won't destroy an
15188         existing atomic window in case the new window gets nested
15189         inside.
15190         (display-buffer-at-bottom): Ignore minibuffer window when
15191         walking window tree.  Don't split a side window.
15192         (pop-to-buffer): Don't set-buffer here, the select-window call
15193         should do that.
15194         (mouse-autoselect-window-select): Autoselect only if we are in the
15195         text portion of the window.
15197 2013-08-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15199         * net/shr.el (shr-parse-image-data): New function to grab both the
15200         data itself and the Content-Type.
15201         (shr-put-image): Use it.
15203         * net/eww.el (eww-display-image): Ditto.
15205         * image.el (image-content-type-suffixes): New variable.
15207 2013-08-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
15209         * progmodes/python.el (python-imenu--build-tree)
15210         (python-imenu--put-parent): Simplify and Fix (GH bug 146).
15212 2013-08-13  Xue Fuqiao  <xfq.free@gmail.com>
15214         * simple.el (backward-word): Mention the optional argument.
15216 2013-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
15218         * frameset.el (frameset--make): Rename constructor from make-frameset.
15219         (frameset-p, frameset-valid-p): Don't autoload.
15220         (frameset-valid-p): Use normal accessors.
15222 2013-08-13  Glenn Morris  <rgm@gnu.org>
15224         * progmodes/compile.el (compile-command): Tweak example in doc.
15225         * obsolete/scribe.el (scribe-mode):
15226         * progmodes/mixal-mode.el (mixal-mode): Quote buffer name.  (Bug#15053)
15228         * mail/feedmail.el (feedmail-confirm-outgoing)
15229         (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
15231         * cus-start.el (truncate-partial-width-windows): Fix type.
15233         * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
15235         * net/shr.el (shr-table-horizontal-line): Fix custom type.
15237 2013-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
15239         * emacs-lisp/timer.el (timer--time-setter): New function.
15240         (timer--time): Use it as gv-setter.
15242         * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
15243         setter is not a symbol.
15245 2013-08-12  Grégoire Jadi  <daimrod@gmail.com>
15247         * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
15248         if sending fails.  This makes debugging easier.
15250 2013-08-12  Juanma Barranquero  <lekktu@gmail.com>
15252         * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
15253         2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
15254         https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
15256 2013-08-12  Eli Zaretskii  <eliz@gnu.org>
15258         * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
15260 2013-08-12  Glenn Morris  <rgm@gnu.org>
15262         * format.el (format-annotate-function):
15263         Handle read-only text properties in the source.  (Bug#14887)
15265 2013-08-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15267         * net/eww.el (eww-display-html): Ignore coding system errors.
15268         One web site uses "utf-8lias" as the coding system.
15270 2013-08-11  Juanma Barranquero  <lekktu@gmail.com>
15272         * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
15274 2013-08-10  Juanma Barranquero  <lekktu@gmail.com>
15276         * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
15277         (tutorial--detailed-help): Remove unused local variables.
15278         (tutorial--save-tutorial-to): Use ignore-errors.
15279         (help-with-tutorial): Use looking-at-p.
15281         * view.el (view-buffer-other-window, view-buffer-other-frame):
15282         Mark unused arguments.
15284         * woman.el (woman-parse-colon-path, woman-parse-colon-path)
15285         (woman-select-symbol-fonts, woman, woman-find-file)
15286         (woman-insert-file-contents, woman-non-underline-faces):
15287         Use string-match-p.
15288         (woman1-unquote): Move declaration.
15290         * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
15291         (xml-parse-dtd): Use looking-at-p, string-match-p.  Mark unused
15292         argument.  Remove unused local variable.
15293         (xml-parse-elem-type): Use string-match-p.
15294         (xml-substitute-numeric-entities): Use ignore-errors.
15296         * calculator.el (calculator): Mark unused argument.
15297         (calculator-paste, calculator-quit, calculator-integer-p):
15298         Use ignore-errors.
15299         (calculator-string-to-number, calculator-decimal, calculator-exp)
15300         (calculator-op-or-exp): Use string-match-p.
15302         * dired.el (dired-buffer-more-recently-used-p): Declare.
15303         (dired-insert-set-properties, dired-insert-old-subdirs):
15304         Use ignore-errors.
15306         * dired-aux.el (dired-compress): Use ignore-errors.
15307         (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
15308         (dired-do-async-shell-command, dired-do-shell-command)
15309         (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
15310         (dired-insert-subdir-validate): Use string-match-p.
15311         (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
15312         (dired-add-entry): Use string-match-p, looking-at-p.
15313         (dired-insert-subdir-newpos): Remove unused local variable.
15315         * filenotify.el (file-notify-callback): Remove unused local variable.
15317         * filesets.el (filesets-error): Mark unused argument.
15318         (filesets-which-command-p, filesets-filter-dir-names)
15319         (filesets-directory-files, filesets-get-external-viewer)
15320         (filesets-ingroup-get-data): Use string-match-p.
15322         * find-file.el (ff-other-file-name, ff-other-file-name)
15323         (ff-find-the-other-file, ff-cc-hh-converter):
15324         Remove unused local variables.
15325         (ff-get-file-name): Use string-match-p.
15326         (ff-all-dirs-under): Use ignore-errors.
15328         * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
15329         (follow-select-if-visible): Remove unused local variable.
15331         * forms.el (read-file-filter): Move declaration.
15332         (forms--make-format, forms--make-parser, forms-insert-record):
15333         Quote function with #'.
15334         (forms--update): Use string-match-p.  Quote function with #'.
15336         * help-mode.el (help-dir-local-var-def): Mark unused argument.
15337         (help-make-xrefs): Use looking-at-p.
15338         (help-xref-on-pp): Use looking-at-p, ignore-errors.
15340         * ibuffer.el (ibuffer-ext-visible-p): Declare.
15341         (ibuffer-confirm-operation-on): Use string-match-p.
15343         * msb.el (msb-item-handler, msb-dired-item-handler):
15344         Mark unused arguments.
15346         * ses.el (ses-decode-cell-symbol)
15347         (ses-kill-override): Remove unused local variable.
15348         (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
15349         (ses-load): Use ignore-errors, looking-at-p.
15350         (ses-jump-safe): Use ignore-errors.
15351         (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
15353         * tabify.el (untabify, tabify): Mark unused arguments.
15355         * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
15356         Mark unused argument.
15357         (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
15358         (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
15360         * emacs-lisp/timer.el (timer--time): Define setter with
15361         gv-define-setter to avoid deprecation warning.
15363         * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
15364         (*record-cmpl-statistics-p*): Remove (was commented out).
15365         (cmpl-statistics-block): Remove (body was commented out).
15366         All callers changed.
15367         (add-completions-from-buffer, load-completions-from-file):
15368         Remove unused variables.
15370 2013-08-09  Juanma Barranquero  <lekktu@gmail.com>
15372         * filecache.el (file-cache-delete-file-list):
15373         Print message only when told so.
15374         (file-cache-files-matching): Use #' in mapconcat argument.
15376         * ffap.el (ffap-url-at-point): Fix reference to variable
15377         thing-at-point-default-mail-uri-scheme.
15379 2013-08-09  Stefan Monnier  <monnier@iro.umontreal.ca>
15381         * subr.el (define-error): New function.
15382         * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
15383         error-file-not-found and define with define-error.
15384         * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
15385         and define with define-error.
15386         * userlock.el (file-locked, file-supersession):
15387         * simple.el (mark-inactive):
15388         * progmodes/js.el (js-moz-bad-rpc, js-js-error):
15389         * progmodes/ada-mode.el (ada-mode-errors):
15390         * play/life.el (life-extinct):
15391         * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
15392         * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
15393         * nxml/rng-util.el (rng-error):
15394         * nxml/rng-uri.el (rng-uri-error):
15395         * nxml/rng-match.el (rng-compile-error):
15396         * nxml/rng-cmpct.el (rng-c-incorrect-schema):
15397         * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
15398         * nxml/nxml-rap.el (nxml-scan-error):
15399         * nxml/nxml-outln.el (nxml-outline-error):
15400         * net/soap-client.el (soap-error):
15401         * net/gnutls.el (gnutls-error):
15402         * net/ange-ftp.el (ftp-error):
15403         * mpc.el (mpc-proc-error):
15404         * json.el (json-error, json-readtable-error, json-unknown-keyword)
15405         (json-number-format, json-string-escape, json-string-format)
15406         (json-key-format, json-object-format):
15407         * jka-compr.el (compression-error):
15408         * international/quail.el (quail-error):
15409         * international/kkc.el (kkc-error):
15410         * emacs-lisp/ert.el (ert-test-failed):
15411         * calc/calc.el (calc-error, inexact-result, math-overflow)
15412         (math-underflow):
15413         * bookmark.el (bookmark-error-no-filename):
15414         * epg.el (epg-error): Define with define-error.
15416         * time.el (display-time-event-handler)
15417         (display-time-next-load-average): Don't call sit-for since it seems
15418         unnecessary (bug#15045).
15420         * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
15421         Use #' instead of ' to quote functions.
15422         (checkdoc-output-mode): Use setq-local.
15423         (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
15424         (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
15425         (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
15426         (checkdoc-ispell, checkdoc-ispell-current-buffer)
15427         (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
15428         (checkdoc-ispell-message-text, checkdoc-ispell-start)
15429         (checkdoc-ispell-continue, checkdoc-ispell-comments)
15430         (checkdoc-ispell-defun): Remove unused arg `take-notes'.
15432         * ido.el (ido-completion-help): Fix up compiler warning.
15434 2013-08-09  Juanma Barranquero  <lekktu@gmail.com>
15436         * frameset.el (frameset-p): Add autoload cookie.
15437         (frameset--jump-to-register): New function, based on code moved from
15438         register.el.
15439         (frameset-to-register): Move from register.el.  Adapt to `registerv'.
15441         * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
15442         (frameset-restore, frameset-save, frameset-session-filter-alist):
15443         Remove declarations.
15444         (register-alist): Doc fix.
15445         (frameset-to-register): Move to frameset.el.
15446         (jump-to-register, describe-register-1): Remove frameset-specific code.
15448 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
15450         * allout-widgets.el (allout-widgets-pre-command-business)
15451         (allout-widgets-post-command-business)
15452         (allout-widgets-after-change-handler)
15453         (allout-decorate-item-and-context, allout-set-boundary-marker)
15454         (allout-body-modification-handler)
15455         (allout-graphics-modification-handler): Mark ignored arguments.
15456         (allout-widgets-post-command-business)
15457         (allout-widgets-exposure-change-processor)
15458         (allout-widgets-exposure-undo-processor)
15459         (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
15460         (allout-parse-item-at-point, allout-decorate-item-guides)
15461         (allout-decorate-item-cue, allout-item-span): Remove unused variables.
15462         * allout.el (epa-passphrase-callback-function): Declare.
15463         (allout-overlay-insert-in-front-handler)
15464         (allout-overlay-interior-modification-handler)
15465         (allout-isearch-end-handler, allout-chart-siblings)
15466         (allout-up-current-level, allout-end-of-level, allout-reindent-body)
15467         (allout-yank-processing, allout-process-exposed)
15468         (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
15469         (allout-latex-verbatim-quote-curr-line): Remove unused variables.
15470         * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
15471         (lisp-indent-defform): Mark ignored arguments.
15472         (lisp-indent-line): Mark ignored arguments.  Remove unused variables.
15473         (calculate-lisp-indent): Remove unused variables.
15474         * international/characters.el (indian-2-column, arabic-2-column)
15475         (tibetan): Mark ignored arguments.
15476         (use-cjk-char-width-table): Mark ignored arguments.
15477         Remove unused variables.
15478         * international/fontset.el (build-default-fontset-data)
15479         (x-compose-font-name, create-fontset-from-fontset-spec):
15480         Mark ignored arguments.
15481         (fontset-plain-name): Remove unused variables.
15482         * international/mule.el (charset-id, charset-bytes, generic-char-p)
15483         (keyboard-coding-system): Mark ignored arguments.
15484         (find-auto-coding): Remove unused variables.  Use `ignore-errors'.
15485         * help.el (resize-temp-buffer-window):
15486         * window.el (display-buffer-in-major-side-window)
15487         (display-buffer-in-side-window, display-buffer-in-previous-window):
15488         Remove unused variables.
15489         * isearch.el (isearch-forward-symbol):
15490         * version.el (emacs-bzr-version-bzr):
15491         * international/mule-cmds.el (current-language-environment):
15492         * term/common-win.el (x-handle-iconic, x-handle-geometry)
15493         (x-handle-display):
15494         * term/pc-win.el (x-list-fonts, x-display-planes)
15495         (x-display-color-cells, x-server-max-request-size, x-server-vendor)
15496         (x-server-version, x-display-screens, x-display-mm-height)
15497         (x-display-mm-width, x-display-backing-store, x-display-visual-class)
15498         (x-selection-owner-p, x-own-selection-internal)
15499         (x-disown-selection-internal, x-get-selection-internal)
15500         (msdos-initialize-window-system):
15501         * term/tty-colors.el (tty-color-alist, tty-color-clear):
15502         * term/x-win.el (x-handle-no-bitmap-icon):
15503         * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
15504         (vc-default-find-file-hook, vc-default-extra-menu):
15505         Mark ignored arguments.
15507 2013-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
15509         * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
15510         break-condition in the context of the debugged code (bug#12685).
15512 2013-08-08  Christopher Schmidt  <christopher@ch.ristopher.com>
15514         * comint.el:
15515         Do not use an overlay to highlight the last prompt.  (Bug#14744)
15516         (comint-mode): Make comint-last-prompt buffer local.
15517         (comint-last-prompt): New variable.
15518         (comint-last-prompt-overlay): Remove.  Superseded by
15519         comint-last-prompt.
15520         (comint-snapshot-last-prompt, comint-output-filter):
15521         Use comint-last-prompt.
15523 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
15525         * frameset.el (frameset-valid-p): Check vector length.  Doc fix.
15526         (frameset-save): Check validity of the resulting frameset.
15528 2013-08-08  Xue Fuqiao  <xfq.free@gmail.com>
15530         * ido.el (ido-record-command): Add doc string.
15532 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
15534         * frameset.el (frameset): Do not disable creation of the default
15535         frameset-p predicate.  Doc fix.
15536         (frameset-valid-p): New function, copied from the old predicate-p.
15537         Add additional checks.
15538         (frameset-restore): Check with frameset-valid-p.
15539         (frameset-p, frameset-version, frameset-timestamp, frameset-app)
15540         (frameset-name, frameset-description, frameset-properties)
15541         (frameset-states): Add docstring.
15542         (frameset-session-filter-alist, frameset-persistent-filter-alist)
15543         (frameset-filter-alist): Doc fixes.
15545 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
15547         * frameset.el (frameset-p, frameset-prop): Doc fixes.
15549 2013-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
15551         * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
15552         extracted from byte-compile-callargs-warn and byte-compile-normal-call.
15553         (byte-compile-callargs-warn, byte-compile-function-form): Use it.
15554         (byte-compile-normal-call): Remove obsolescence check.
15556 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
15558         * frameset.el (frameset-restore): Doc fix.
15560         * register.el (frameset-frame-id, frameset-frame-with-id)
15561         (frameset-p, frameset-restore, frameset-save): Declare.
15562         (register-alist): Document framesets.
15563         (frameset-session-filter-alist): Declare.
15564         (frameset-to-register): New function.
15565         (jump-to-register): Implement jumping to framesets.  Doc fix.
15566         (describe-register-1): Describe framesets.
15568         * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
15570 2013-08-07  Juanma Barranquero  <lekktu@gmail.com>
15572         * desktop.el (desktop-save-frameset): Use new frameset-save args.
15573         Use lexical-binding.
15575         * frameset.el (frameset): Use type vector, not list (incompatible
15576         change).  Do not declare a new constructor, use the default one.
15577         Upgrade suggested properties `app', `name' and `desc' to slots `app',
15578         `name' and `description', respectively, and add read-only slot
15579         `timestamp'.  Doc fixes.
15580         (frameset-copy, frameset-persistent-filter-alist)
15581         (frameset-filter-alist, frameset-switch-to-gui-p)
15582         (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
15583         (frameset-filter-sanitize-color, frameset-filter-minibuffer)
15584         (frameset-filter-iconified, frameset-keep-original-display-p):
15585         Doc fixes.
15586         (frameset-filter-shelve-param, frameset-filter-unshelve-param):
15587         Rename from frameset-filter-(save|restore)-param.  All callers changed.
15588         Doc fix.
15589         (frameset-p): Adapt to change to vector and be more thorough.
15590         Change arg name to OBJECT.  Doc fix.
15591         (frameset-prop): Rename arg PROP to PROPERTY.  Doc fix.
15592         (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
15593         All callers changed.
15594         (frameset-frame-with-id): Rename from frameset-locate-frame-id.
15595         All callers changed.
15596         (frameset--record-minibuffer-relationships): Rename from
15597         frameset--process-minibuffer-frames.  All callers changed.
15598         (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
15599         Use new default constructor (again).  Doc fix.
15600         (frameset--find-frame-if): Rename from `frameset--find-frame'.
15601         All callers changed.
15602         (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
15603         (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
15604         Doc fix.
15605         (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
15606         PARAMETERS and WINDOW-STATE, respectively.
15607         (frameset-restore): Add new keyword argument PREDICATE.
15608         Reset frameset--target-display to nil.  Doc fix.
15610 2013-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
15612         * progmodes/bat-mode.el (bat--syntax-propertize): New var.
15613         (bat-mode): Use it.
15614         (bat-mode-syntax-table): Mark \n as end-of-comment.
15615         (bat-font-lock-keywords): Remove comment rule.
15617         * progmodes/bat-mode.el: Rename from dos.el.  Use "bat-" prefix.
15618         (dos-mode-help): Remove.  Use describe-mode (C-h m) instead.
15620         * emacs-lisp/bytecomp.el: Check existence of f in #'f.
15621         (byte-compile-callargs-warn): Use `push'.
15622         (byte-compile-arglist-warn): Ignore higher-order "calls".
15623         (byte-compile-file-form-autoload): Use `pcase'.
15624         (byte-compile-function-form): If quoting a symbol, check that it exists.
15626 2013-08-07  Eli Zaretskii  <eliz@gnu.org>
15628         * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
15629         and add a few popular commands found in batch files.
15630         (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
15631         (dos-mode): Doc fixes.
15633 2013-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
15635         * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
15636         (dos-mode): Use setq-local.  Add space after "rem".
15637         (dos-mode-syntax-table): Don't use "w" for symbol chars.
15638         (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
15640 2013-08-07  Arni Magnusson  <arnima@hafro.is>
15642         * progmodes/dos.el: New file.
15643         * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
15644         dos-mode.
15646 2013-08-06  Glenn Morris  <rgm@gnu.org>
15648         * calendar/calendar.el: Add new faces, and day-header-array.
15649         (calendar-weekday-header, calendar-weekend-header)
15650         (calendar-month-header): New faces.
15651         (calendar-day-header-construct): New function.
15652         (calendar-day-header-width): Also :set calendar-day-header-array.
15653         (calendar-american-month-header, calendar-european-month-header)
15654         (calendar-iso-month-header): Use calendar- faces.
15655         (calendar-generate-month):
15656         Use calendar-day-header-array for day headers; apply faces to them.
15657         (calendar-mode): Check calendar-font-lock-keywords non-nil.
15658         (calendar-abbrev-construct): Add optional maxlen argument.
15659         (calendar-day-name-array): Doc fix.
15660         (calendar-day-name-array, calendar-abbrev-length)
15661         (calendar-day-abbrev-array):
15662         Also :set calendar-day-header-array, and maybe redraw.
15663         (calendar-day-header-array): New option.  (Bug#15007)
15664         (calendar-font-lock-keywords): Set to nil and make obsolete.
15665         (calendar-day-name): Add option to use header array.
15667 2013-08-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15669         * net/shr.el (shr-render-td): Remove debugging.
15670         (shr-render-td): Make width computation consistent by defaulting
15671         all zero-width columns to 10 characters.  This may not be optimal,
15672         but it's at least consistent.
15673         (shr-make-table-1): Redo last change to fix the real problem in
15674         colspan handling.
15676 2013-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
15678         * files.el (cache-long-line-scans):
15679         Make obsolete alias to `cache-long-scans'.
15681 2013-08-06  Juanma Barranquero  <lekktu@gmail.com>
15683         * frameset.el (frameset, frameset-filter-alist)
15684         (frameset-filter-params, frameset-save, frameset--reuse-frame)
15685         (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
15686         (frameset-compute-pos): Rename from frameset--compute-pos,
15687         and add docstring.
15688         (frameset-move-onscreen): Use frameset-compute-pos.
15689         Most changes suggested by Drew Adams <drew.adams@oracle.com>.
15691         * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
15692         Fix typos in docstrings.
15694 2013-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
15696         * frame.el (get-other-frame): Tiny cleanup.
15698 2013-08-06  Juanma Barranquero  <lekktu@gmail.com>
15700         * vc/vc.el (vc-default-ignore-completion-table):
15701         Silence byte-compiler warning.
15703         * frameset.el (frameset-p): Don't check non-nullness of the `properties'
15704         slot, which can indeed be nil.
15705         (frameset-live-filter-alist, frameset-persistent-filter-alist):
15706         Move entry for `left' from persistent to live filter alist.
15707         (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
15708         Doc fixes.
15709         (frameset-filter-params): When restoring a frame, copy items added to
15710         `filtered', to avoid unwittingly modifying the original parameters.
15711         (frameset-move-onscreen): Rename from frameset--move-onscreen.  Doc fix.
15712         (frameset--restore-frame): Fix reference to frameset-move-onscreen.
15714         * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
15715         to use looking-at-p instead of looking-at.  (Bug#15028)
15717 2013-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15719         Revert introduction of isearch-filter-predicates (bug#14714).
15720         Rely on add-function instead.
15721         * isearch.el (isearch-filter-predicates): Rename it back to
15722         isearch-filter-predicate.
15723         (isearch-message-prefix): Use advice-function-mapc and advice
15724         properties to get the isearch-message-prefix.
15725         (isearch-search, isearch-lazy-highlight-search): Revert to funcall
15726         instead of run-hook-with-args-until-failure.
15727         (isearch-filter-visible): Not obsolete any more.
15728         * loadup.el: Preload nadvice.
15729         * replace.el (perform-replace): Revert to funcall
15730         instead of run-hook-with-args-until-failure.
15731         * wdired.el (wdired-change-to-wdired-mode): Use add-function.
15732         * dired-aux.el (dired-isearch-filenames-mode): Rename from
15733         dired-isearch-filenames-toggle; make it into a proper minor mode.
15734         Use add/remove-function.
15735         (dired-isearch-filenames-setup, dired-isearch-filenames-end):
15736         Call the minor-mode rather than add/remove-hook.
15737         (dired-isearch-filter-filenames):
15738         Remove isearch-message-prefix property.
15739         * info.el (Info--search-loop): New function, extracted from Info-search.
15740         Funcall isearch-filter-predicate instead of
15741         run-hook-with-args-until-failure isearch-filter-predicates.
15742         (Info-search): Use it.
15743         (Info-mode): Use isearch-filter-predicate instead of
15744         isearch-filter-predicates.
15746 2013-08-05  Dmitry Antipov  <dmantipov@yandex.ru>
15748         Do not call to `selected-window' where it is assumed by default.
15749         Affected functions are `window-minibuffer-p', `window-dedicated-p',
15750         `window-hscroll', `window-width', `window-height', `window-buffer',
15751         `window-frame', `window-start', `window-point', `next-window'
15752         and `window-display-table'.
15753         * abbrev.el (abbrev--default-expand):
15754         * bs.el (bs--show-with-configuration):
15755         * buff-menu.el (Buffer-menu-mouse-select):
15756         * calc/calc.el (calc):
15757         * calendar/calendar.el (calendar-generate-window):
15758         * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
15759         (diary-make-entry):
15760         * comint.el (send-invisible, comint-dynamic-complete-filename)
15761         (comint-dynamic-simple-complete, comint-dynamic-list-completions):
15762         * completion.el (complete):
15763         * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
15764         * disp-table.el (describe-current-display-table):
15765         * doc-view.el (doc-view-insert-image):
15766         * ebuff-menu.el (Electric-buffer-menu-mouse-select):
15767         * ehelp.el (with-electric-help):
15768         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
15769         * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
15770         * emacs-lisp/helper.el (Helper-help-scroller):
15771         * emulation/cua-base.el (cua--post-command-handler-1):
15772         * eshell/esh-mode.el (eshell-output-filter):
15773         * ffap.el (ffap-gnus-wrapper):
15774         * help-macro.el (make-help-screen):
15775         * hilit-chg.el (highlight-compare-buffers):
15776         * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
15777         * hl-line.el (global-hl-line-highlight):
15778         * icomplete.el (icomplete-simple-completing-p):
15779         * isearch.el (isearch-done):
15780         * jit-lock.el (jit-lock-stealth-fontify):
15781         * mail/rmailsum.el (rmail-summary-scroll-msg-up):
15782         * mouse-drag.el (mouse-drag-should-do-col-scrolling):
15783         * mpc.el (mpc-tagbrowser, mpc):
15784         * net/rcirc.el (rcirc-any-buffer):
15785         * play/gomoku.el (gomoku-max-width, gomoku-max-height):
15786         * play/landmark.el (landmark-max-width, landmark-max-height):
15787         * play/zone.el (zone):
15788         * progmodes/compile.el (compilation-goto-locus):
15789         * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
15790         * progmodes/etags.el (find-tag-other-window):
15791         * progmodes/fortran.el (fortran-column-ruler):
15792         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
15793         * progmodes/verilog-mode.el (verilog-point-text):
15794         * reposition.el (reposition-window):
15795         * rot13.el (toggle-rot13-mode):
15796         * server.el (server-switch-buffer):
15797         * shell.el (shell-dynamic-complete-command)
15798         (shell-dynamic-complete-environment-variable):
15799         * simple.el (insert-buffer, set-selective-display)
15800         (delete-completion-window):
15801         * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
15802         (speedbar-recenter):
15803         * startup.el (fancy-splash-head):
15804         * textmodes/ispell.el (ispell-command-loop):
15805         * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
15806         * tutorial.el (help-with-tutorial):
15807         * vc/add-log.el (add-change-log-entry):
15808         * vc/compare-w.el (compare-windows):
15809         * vc/ediff-help.el (ediff-indent-help-message):
15810         * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
15811         * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
15812         (ediff-setup-control-frame):
15813         * vc/emerge.el (emerge-position-region):
15814         * vc/pcvs-util.el (cvs-bury-buffer):
15815         * window.el (walk-windows, mouse-autoselect-window-select):
15816         * winner.el (winner-set-conf, winner-undo): Related users changed.
15818 2013-08-05  Juanma Barranquero  <lekktu@gmail.com>
15820         * frameset.el (frameset--set-id): Doc fix.
15821         (frameset-frame-id, frameset-frame-id-equal-p)
15822         (frameset-locate-frame-id): New functions.
15823         (frameset--process-minibuffer-frames, frameset--reuse-frame)
15824         (frameset-restore): Use them.
15826 2013-08-05  Dmitry Antipov  <dmantipov@yandex.ru>
15828         Do not call to `selected-frame' where it is assumed by default.
15829         Affected functions are `raise-frame', `redraw-frame',
15830         `frame-first-window', `frame-terminal' and `delete-frame'.
15831         * calendar/appt.el (appt-disp-window):
15832         * epg.el (epg-wait-for-completion):
15833         * follow.el (follow-delete-other-windows-and-split)
15834         (follow-avoid-tail-recenter):
15835         * international/mule.el (set-terminal-coding-system):
15836         * mail/rmail.el (rmail-mail-return):
15837         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
15838         * progmodes/f90.el (f90-add-imenu-menu):
15839         * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
15840         * server.el (server-switch-buffer):
15841         * simple.el (delete-completion-window):
15842         * talk.el (talk):
15843         * term/xterm.el (terminal-init-xterm-modify-other-keys)
15844         (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
15845         * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
15846         * vc/ediff.el (ediff-documentation): Related users changed.
15847         * frame.el (selected-terminal): Remove the leftover.
15849 2013-08-05  Glenn Morris  <rgm@gnu.org>
15851         * calendar/calendar.el (calendar-generate-month):
15852         Fix for calendar-column-width != 1 + calendar-day-digit-width.
15853         (calendar-generate-month, calendar-font-lock-keywords):
15854         Fix for calendar-day-header-width > length of any day name.
15856 2013-08-05  Juanma Barranquero  <lekktu@gmail.com>
15858         * desktop.el (desktop-clear): Use new name of sort predicate.
15860         * frameset.el (frameset): Add docstring.  Move :version property to its
15861         own `version' slot.
15862         (frameset-copy): Rename from copy-frameset.
15863         (frameset-p): Check more thoroughly.
15864         (frameset-prop): Do not check for :version, which is no longer a prop.
15865         (frameset-live-filter-alist, frameset-persistent-filter-alist):
15866         Use new :never value instead of t.
15867         (frameset-filter-alist): Expand and clarify docstring.
15868         (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
15869         (frameset-filter-minibuffer, frameset-filter-save-param)
15870         (frameset-filter-restore-param, frameset-filter-iconified):
15871         Add pointer to docstring of frameset-filter-alist.
15872         (frameset-filter-params): Rename filter values to be more meaningful:
15873         :never instead of t, and reverse the meanings of :save and :restore.
15874         (frameset--process-minibuffer-frames): Clarify error message.
15875         (frameset-save): Avoid unnecessary and confusing call to framep.
15876         Use new BOA constructor for framesets.
15877         (frameset--reuse-list): Doc fix.
15878         (frameset--restore-frame): Rename from frameset--get-frame.  Doc fix.
15879         (frameset--minibufferless-last-p): Rename from frameset--sort-states.
15880         (frameset-minibufferless-first-p): Doc fix.
15881         Rename from frameset-sort-frames-for-deletion.
15882         (frameset-restore): Doc fixes.  Use new function names.
15883         Most changes suggested by Drew Adams <drew.adams@oracle.com>.
15885 2013-08-04  Juanma Barranquero  <lekktu@gmail.com>
15887         * desktop.el (desktop-restore-forces-onscreen)
15888         (desktop-restore-reuses-frames): Document :keyword constant values.
15889         (desktop-filter-parameters-alist): Remove, now identical to
15890         frameset-filter-alist.
15891         (desktop--filter-tty*): Remove, moved to frameset.el.
15892         (desktop-save-frameset, desktop-restore-frameset):
15893         Do not pass :filters argument.
15895         * frameset.el (frameset-live-filter-alist)
15896         (frameset-persistent-filter-alist): New variables.
15897         (frameset-filter-alist): Use them.  Add autoload cookie.
15898         (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
15899         (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
15900         `frameset--id' (it's supposed to be internal to frameset.el).
15901         (frameset--process-minibuffer-frames): Ditto.  Doc fix.
15902         (frameset--initial-params): New function.
15903         (frameset--get-frame): Use it.  Doc fix.
15904         (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
15905         Accept :all, not 'all.
15906         (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
15907         FORCE-DISPLAY.  Use :keywords for constant arguments to avoid collision
15908         with fbound symbols.  Fix frame id matching, and remove matching ids if
15909         the frame being restored is deleted.  Obey :delete.
15911 2013-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
15913         * subr.el (macrop): New function.
15914         (text-clone--maintaining): New var.
15915         (text-clone--maintain): Rename from text-clone-maintain.  Use it
15916         instead of inhibit-modification-hooks.
15918         * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
15919         a proxy, so as handle autoloads and redefinitions of the target.
15920         (advice--defalias-fset, advice-remove): Use advice--symbol-function.
15922         * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
15923         Remove bogus (arrayp . stringp) pair.  Add entries for `vectorp'.
15924         (pcase--mutually-exclusive-p): New function.
15925         (pcase--split-consp): Use it.
15926         (pcase--split-pred): Use it.  Optimize the case where `pat' is a qpat
15927         mutually exclusive with the current predicate.
15929         * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
15930         (edebug-macrop): Remove.  Use `macrop' instead.
15931         * emacs-lisp/advice.el (ad-subr-p): Remove.  Use `subrp' instead.
15932         (ad-macro-p):
15933         * eshell/esh-cmd.el (eshell-macrop):
15934         * apropos.el (apropos-macrop): Remove.  Use `macrop' instead.
15936 2013-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
15938         * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
15939         (advice-mapc): New function, using it.
15940         (advice-function-member-p): New function.
15941         (advice--normalize): Store the cdr in advice--saved-rewrite since
15942         that's the part that will be changed.
15943         (advice--symbol-function): New function.
15944         (advice-remove): Handle removal before the function is defined.
15945         Adjust to new advice--saved-rewrite.
15946         (advice-member-p): Use advice-function-member-p and
15947         advice--symbol-function.
15949 2013-08-04  Juanma Barranquero  <lekktu@gmail.com>
15951         * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
15952         (frameset-filter-minibuffer): Doc fix.
15953         (frameset-restore): Fix autoload cookie.  Fix typo in docstring.
15954         (frameset--set-id, frameset--process-minibuffer-frames)
15955         (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
15956         (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
15958         * desktop.el (desktop-clear): Only delete frames when called
15959         interactively and desktop-restore-frames is non-nil.  Doc fix.
15960         (desktop-read): Set desktop-saved-frameset to nil.
15962 2013-08-04  Xue Fuqiao  <xfq.free@gmail.com>
15964         * vc/vc.el (vc-ignore): Rewrite.
15965         (vc-default-ignore-completion-table, vc--read-lines)
15966         (vc--add-line, vc--remove-regexp): New functions.
15968         * vc/vc-svn.el (vc-svn-ignore): Doc fix.
15969         (vc-svn-ignore-completion-table): New function.
15971         * vc/vc-hg.el (vc-hg-ignore): Rewrite.
15972         (vc-hg-ignore-completion-table)
15973         (vc-hg-find-ignore-file): New functions.
15975         * vc/vc-git.el (vc-git-ignore): Rewrite.
15976         (vc-git-ignore-completion-table)
15977         (vc-git-find-ignore-file): New functions.
15979         * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
15981         * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
15982         (vc-bzr-ignore-completion-table)
15983         (vc-bzr-find-ignore-file): New functions.
15985 2013-08-03  Juanma Barranquero  <lekktu@gmail.com>
15987         * frameset.el (frameset-prop): New function and setter.
15988         (frameset-save): Do not modify frame list passed by the caller.
15990 2013-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
15992         * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
15994 2013-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
15996         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
15997         (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
15999         * custom.el (custom-initialize-default, custom-initialize-set)
16000         (custom-initialize-reset, custom-initialize-changed): Affect the
16001         toplevel-default-value (bug#6275, bug#14586).
16002         * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
16003         for bug#6275.
16005 2013-08-02  Juanma Barranquero  <lekktu@gmail.com>
16007         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
16008         Add cl-def* expressions.
16010         * frameset.el (frameset-filter-params): Fix order of arguments.
16012 2013-08-02  Juanma Barranquero  <lekktu@gmail.com>
16014         Move code related to saving frames to frameset.el.
16015         * desktop.el: Require frameset.
16016         (desktop-restore-frames): Doc fix.
16017         (desktop-restore-reuses-frames): Rename from
16018         desktop-restoring-reuses-frames.
16019         (desktop-saved-frameset): Rename from desktop-saved-frame-states.
16020         (desktop-clear): Clear frames too.
16021         (desktop-filter-parameters-alist): Set from frameset-filter-alist.
16022         (desktop--filter-tty*, desktop-save, desktop-read):
16023         Use frameset functions.
16024         (desktop-before-saving-frames-functions, desktop--filter-*-color)
16025         (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
16026         (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
16027         (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
16028         (desktop--process-minibuffer-frames, desktop-save-frames)
16029         (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
16030         (desktop--find-frame, desktop--select-frame, desktop--make-frame)
16031         (desktop--sort-states, desktop-restoring-frames-p)
16032         (desktop-restore-frames): Remove.  Most code moved to frameset.el.
16033         (desktop-restoring-frameset-p, desktop-restore-frameset)
16034         (desktop--check-dont-save, desktop-save-frameset): New functions.
16035         (desktop--app-id): New constant.
16036         (desktop-first-buffer, desktop-buffer-ok-count)
16037         (desktop-buffer-fail-count): Move before first use.
16038         * frameset.el: New file.
16040 2013-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
16042         * files.el: Use lexical-binding.
16043         (dir-locals-read-from-file): Remove unused `err' variable.
16044         (hack-dir-local-variables--warned-coding): New var.
16045         (hack-dir-local-variables): Use it to avoid repeated warnings.
16046         (make-backup-file-name--default-function): New function.
16047         (make-backup-file-name-function): Use it as default.
16048         (buffer-stale--default-function): New function.
16049         (buffer-stale-function): Use it as default.
16050         (revert-buffer-insert-file-contents--default-function): New function.
16051         (revert-buffer-insert-file-contents-function): Use it as default.
16052         (insert-directory): Avoid add-to-list.
16054         * autorevert.el (auto-revert-handler): Simplify.
16055         Use buffer-stale--default-function.
16057 2013-08-01  Tassilo Horn  <tsdh@gnu.org>
16059         * speedbar.el (speedbar-query-confirmation-method): Doc fix.
16061         * whitespace.el (whitespace-ensure-local-variables): New function.
16062         (whitespace-cleanup-region): Call it.
16063         (whitespace-turn-on): Call it.
16065 2013-08-01  Michael Albinus  <michael.albinus@gmx.de>
16067         Complete file name handlers.
16069         * net/tramp.el (tramp-handle-set-visited-file-modtime)
16070         (tramp-handle-verify-visited-file-modtime)
16071         (tramp-handle-file-notify-rm-watch): New functions.
16072         (tramp-call-process): Do not bind `default-directory'.
16074         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
16075         Order alphabetically.
16076         <access-file, add-name-to-file, dired-call-process>:
16077         <dired-compress-file, file-acl, file-notify-rm-watch>:
16078         <file-ownership-preserved-p, file-selinux-context>:
16079         <make-directory-internal, make-symbolic-link, set-file-acl>:
16080         <set-file-selinux-context, set-visited-file-modtime>:
16081         <verify-visited-file-modtime>: Add handler.
16082         (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
16084         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
16085         <file-notify-add-watch, file-notify-rm-watch>:
16086         <set-file-times, set-visited-file-modtime>:
16087         <verify-visited-file-modtime>: Add handler.
16088         (with-tramp-gvfs-error-message)
16089         (tramp-gvfs-handle-set-visited-file-modtime)
16090         (tramp-gvfs-fuse-file-name): Remove.
16091         (tramp-gvfs-handle-file-notify-add-watch)
16092         (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
16093         (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
16095         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
16096         Order alphabetically.
16097         <file-notify-rm-watch>: Use default Tramp handler.
16098         <executable-find>: Remove private handler.
16099         (tramp-do-copy-or-rename-file-out-of-band): Do not bind
16100         `default-directory'.
16101         (tramp-sh-handle-executable-find)
16102         (tramp-sh-handle-file-notify-rm-watch): Remove functions.
16103         (tramp-sh-file-gvfs-monitor-dir-process-filter)
16104         (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
16105         Do not use `format' in `tramp-message'.
16107         * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
16108         <file-notify-rm-watch, set-visited-file-modtime>:
16109         <verify-visited-file-modtime>: Add handler.
16110         (tramp-smb-call-winexe): Do not bind `default-directory'.
16112 2013-08-01  Xue Fuqiao  <xfq.free@gmail.com>
16114         * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
16116 2013-07-31  Dmitry Gutov  <dgutov@yandex.ru>
16118         * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
16119         use it.
16120         (log-view-diff-changeset): Same.
16121         (log-view-diff-common): Call backend command `previous-revision'
16122         to find out the previous revision, in both cases.  Swap the
16123         variables `to' and `fr', so that `fr' usually refers to the
16124         earlier revision (Bug#14989).
16126 2013-07-31  Kan-Ru Chen  <kanru@kanru.info>
16128         * ibuf-ext.el (ibuffer-filter-by-filename):
16129         Make it work with dired buffers too.
16131 2013-07-31  Dmitry Antipov  <dmantipov@yandex.ru>
16133         * emacs-lisp/re-builder.el (reb-color-display-p):
16134         * files.el (save-buffers-kill-terminal):
16135         * net/browse-url.el (browse-url):
16136         * server.el (server-save-buffers-kill-terminal):
16137         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
16138         Prefer nil to selected-frame for the first arg of frame-parameter.
16140 2013-07-31  Xue Fuqiao  <xfq.free@gmail.com>
16142         * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
16144 2013-07-30  Stephen Berman  <stephen.berman@gmx.net>
16146         * minibuffer.el (completion--twq-all): Try and preserve each
16147         completion's case choice (bug#14907).
16149 2013-07-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16151         * net/network-stream.el (open-network-stream): Mention the new
16152         :nogreeting parameter.
16153         (network-stream-open-starttls): Use the :nogreeting parameter
16154         (bug#14938).
16156         * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
16158         * net/eww.el (eww-setup-buffer): Switching to the buffer seems
16159         more natural than popping.
16161         * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
16162         (shr-urlify): Highlight under mouse.
16164 2013-07-30  Xue Fuqiao  <xfq.free@gmail.com>
16166         * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
16168         * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
16170         * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'.  Use `*vc*'
16171         buffer for output.
16173         * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'.  Do not assume
16174         point-min==1.  Fix search string.  Fix parentheses missing.
16176         * vc/vc-git.el (vc-git-ignore): Remove `interactive'.  Do not
16177         assume point-min==1.  Fix search string.  Fix parentheses missing.
16179         * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
16181         * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'.  Use `*vc*'
16182         buffer for output.
16184 2013-07-29  Eli Zaretskii  <eliz@gnu.org>
16186         * frame.el (frame-notice-user-settings): Avoid inflooping when the
16187         initial frame is minibuffer-less.  (Bug#14841)
16189 2013-07-29  Michael Albinus  <michael.albinus@gmx.de>
16191         * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
16192         option.
16194         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
16195         (tramp-maybe-open-connection): Use it.
16197 2013-07-28  Juanma Barranquero  <lekktu@gmail.com>
16199         * desktop.el (desktop--make-frame): Include `minibuffer' in the
16200         minimal set of parameters passed when creating a frame, because
16201         the minibuffer status of a frame cannot be changed later.
16203 2013-07-28  Stephen Berman  <stephen.berman@gmx.net>
16205         * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
16206         replace-regexp-in-string and inadvertent omissions in previous change.
16207         (todo-filter-items): Ensure only file names are comma-separated in
16208         name of filtered items buffer.
16210 2013-07-28  Juanma Barranquero  <lekktu@gmail.com>
16212         * desktop.el: Optionally force offscreen frames back onscreen.
16213         (desktop-restoring-reuses-frames): New option.
16214         (desktop--compute-pos, desktop--move-onscreen): New functions.
16215         (desktop--make-frame): Use desktop--move-onscreen.
16217 2013-07-27  Alan Mackenzie  <acm@muc.de>
16219         Fontify a Java generic method as a function.
16220         * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
16221         value to t.
16223 2013-07-27  Stephen Berman  <stephen.berman@gmx.net>
16225         * calendar/todo-mode.el: Add command to rename todo files.
16226         (todo-rename-file): New command.
16227         (todo-key-bindings-t): Add key binding for it.  Change the
16228         bindings of todo-filter-regexp-items(-multifile) to use `x'
16229         instead of `r', since the latter is better suited to the new
16230         renaming command.
16232 2013-07-27  Alan Mackenzie  <acm@muc.de>
16234         Make Java try-with-resources statement parse properly.
16235         * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
16236         (c-block-stmt-1-2-key): New language constants/variables.
16237         * progmodes/cc-engine.el (c-beginning-of-statement-1)
16238         (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
16239         * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
16240         with c-block-stmt-1-2-key.
16242 2013-07-27  Juanma Barranquero  <lekktu@gmail.com>
16244         * desktop.el (desktop--make-frame): Apply most frame parameters after
16245         creating the frame to force (partially or totally) offscreen frames to
16246         be restored as such.
16248 2013-07-26  Xue Fuqiao  <xfq.free@gmail.com>
16250         * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
16251         (Bug#14948)
16253 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
16255         * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
16256         `base' arg of backtrace-frame.
16258 2013-07-26  Eli Zaretskii  <eliz@gnu.org>
16260         * simple.el (list-processes): Doc fix.
16262 2013-07-26  Juanma Barranquero  <lekktu@gmail.com>
16264         * desktop.el (desktop--select-frame):
16265         Try harder to reuse existing frames.
16267 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
16269         * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
16270         (edebug-eval): Use backtrace-eval.
16271         (edebug--display, edebug--recursive-edit): Don't let-bind the
16272         edebug-outer-* vars that keep track of variables we locally let-bind.
16273         (edebug-outside-excursion): Don't restore outside values of locally
16274         let-bound vars.
16275         (edebug--display): Use user-error.
16276         (cl-lexical-debug, cl-debug-env): Remove.
16278 2013-07-26  Juanma Barranquero  <lekktu@gmail.com>
16280         * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
16281         are restored to be sure that they are visible before deleting any
16282         remaining ones.
16284 2013-07-26  Matthias Meulien  <orontee@gmail.com>
16286         * vc/vc-dir.el (vc-dir-mode-map): Add binding for
16287         vc-print-root-log.  (Bug#14948)
16289 2013-07-26  Richard Stallman  <rms@gnu.org>
16291         Add aliases for encrypting mail.
16292         * epa.el (epa-mail-aliases): New option.
16293         * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
16294         Bind inhibit-read-only so read-only text doesn't ruin everything.
16295         (epa-mail-default-recipients): New subroutine broken out.
16296         Handle epa-mail-aliases.
16298 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
16300         Add support for lexical variables to the debugger's `e' command.
16301         * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
16302         vars, except for debugger-outer-match-data.
16303         (debugger-frame-number): Move check for "on a function call" from
16304         callers into it.  Add `skip-base' argument.
16305         (debugger-frame, debugger-frame-clear): Simplify accordingly.
16306         (debugger-env-macro): Only reset the state stored in non-variables,
16307         i.e. current-buffer and match-data.
16308         (debugger-eval-expression): Rewrite using backtrace-eval.
16309         * subr.el (internal--called-interactively-p--get-frame): Remove.
16310         (called-interactively-p):
16311         * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
16312         `base' arg of backtrace-frame instead.
16314 2013-07-26  Glenn Morris  <rgm@gnu.org>
16316         * align.el (align-regexp): Doc fix.  (Bug#14857)
16317         (align-region): Explicit error if subexpression missing/does not match.
16319         * simple.el (global-visual-line-mode):
16320         Do not duplicate the mode lighter.  (Bug#14858)
16322 2013-07-25  Martin Rudalics  <rudalics@gmx.at>
16324         * window.el (display-buffer): In display-buffer bind
16325         split-window-keep-point to t, bug#14829.
16327 2013-07-25  Juanma Barranquero  <lekktu@gmail.com>
16329         * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
16330         (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
16331         (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
16332         (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
16333         Change accordingly.
16334         (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
16335         Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
16337 2013-07-25  Glenn Morris  <rgm@gnu.org>
16339         * dired-x.el (dired-mark-extension): Convert comment to doc string.
16341 2013-07-25  Juanma Barranquero  <lekktu@gmail.com>
16343         * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
16344         parameter to modify-frame-parameters if the value has not changed;
16345         this is a workaround for bug#14949.
16346         (desktop--make-frame): On cl-delete-if call, check parameter name,
16347         not full parameter.
16349 2013-07-30  Xue Fuqiao  <xfq.free@gmail.com>
16351         * vc/vc.el (vc-ignore): New function.
16353         * vc/vc-svn.el (vc-svn-ignore): New function.
16355         * vc/vc-hg.el (vc-hg-ignore): New function.
16357         * vc/vc-git.el (vc-git-ignore): New function.
16359         * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
16360         (vc-dir-ignore): New function.
16362         * vc/vc-cvs.el (vc-cvs-ignore): New function.
16363         (cvs-append-to-ignore): Move here from pcvs.el.
16365         * vc/vc-bzr.el (vc-bzr-ignore): New function.
16367         * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
16369 2013-07-24  Juanma Barranquero  <lekktu@gmail.com>
16371         * desktop.el (desktop-restoring-frames-p): Return a true boolean.
16372         (desktop-restore-frames): Warn when deleting an existing frame failed.
16374 2013-07-24  Glenn Morris  <rgm@gnu.org>
16376         * ffap.el (ffap-machine-p): Handle "not known" response.  (Bug#14929)
16378 2013-07-24  Michael Albinus  <michael.albinus@gmx.de>
16380         * filenotify.el (file-notify-supported-p):
16381         * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
16382         Remove functions.
16384         * autorevert.el (auto-revert-use-notify)
16385         (auto-revert-notify-add-watch):
16386         * net/tramp.el (tramp-file-name-for-operation):
16387         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
16388         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
16389         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
16390         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
16391         Remove `file-notify-supported-p' entry.
16393 2013-07-24  Glenn Morris  <rgm@gnu.org>
16395         * printing.el: Replace all uses of deleted ps-windows-system,
16396         ps-lp-system, ps-flatten-list with lpr- versions.
16398 2013-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16400         * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
16401         checked with memq (bug#14935).
16403         * files.el (revert-buffer-function): Use a non-nil default.
16404         (revert-buffer-preserve-modes): Declare var to
16405         provide access to the `preserve-modes' argument.
16406         (revert-buffer): Let-bind it.
16407         (revert-buffer--default): New function, extracted from revert-buffer.
16409 2013-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16411         * lpr.el: Signal print errors more prominently.
16412         (print-region-function): Don't default to nil.
16413         (lpr-print-region): New function, extracted from print-region-1.
16414         Check lpr's return value and signal an error in case of problem.
16415         (print-region-1): Use it.
16416         * ps-print.el (ps-windows-system, ps-lp-system): Remove.  Use the lpr-*
16417         versions instead.
16418         (ps-printer-name): Default to nil.
16419         (ps-printer-name-option): Default to lpr-printer-switch.
16420         (ps-print-region-function): Don't default to nil.
16421         (ps-postscript-code-directory): Simplify default.
16422         (ps-do-despool): Use lpr-print-region to properly check the outcome.
16423         (ps-string-list, ps-eval-switch, ps-flatten-list)
16424         (ps-flatten-list-1): Remove.
16425         (ps-multibyte-buffer): Avoid setq.
16426         * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
16427         (print-region-function, ps-print-region-function): Don't set them here.
16429 2013-07-24  Xue Fuqiao  <xfq.free@gmail.com>
16431         * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
16432         (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
16433         (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
16434         (ido-decorations): Doc fix.
16436         * ansi-color.el: Fix old URL.
16438 2013-07-23  Michael R. Mauger  <michael@mauger.com>
16440         * progmodes/sql.el: Version 3.3
16441         (sql-product-alist): Improve oracle :prompt-cont-regexp.
16442         (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
16443         (sql-interactive-remove-continuation-prompt): Rewrite, use
16444         functions above.  Fix continuation prompt and complete output line
16445         handling.
16446         (sql-redirect-one, sql-execute): Use `read-only-mode' on
16447         redirected output buffer.
16448         (sql-mode): Restore deleted code (Bug#13591).
16450 2013-07-23  Juanma Barranquero  <lekktu@gmail.com>
16452         * desktop.el (desktop-clear, desktop-list*): Fix previous change.
16454 2013-07-23  Michael Albinus  <michael.albinus@gmx.de>
16456         * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
16458         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
16459         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
16460         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
16462 2013-07-23  Juanma Barranquero  <lekktu@gmail.com>
16464         * desktop.el (desktop-clear): Simplify; remove useless checks
16465         against invalid buffer names.
16466         (desktop-list*): Use cl-list*.
16467         (desktop-buffer-info, desktop-create-buffer): Simplify.
16469 2013-07-23  Leo Liu  <sdl.web@gmail.com>
16471         * bookmark.el (bookmark-make-record): Restore NAME as a default
16472         value.  (Bug#14933)
16474 2013-07-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16476         * emacs-lisp/autoload.el (autoload--setup-output): New function,
16477         extracted from autoload--insert-text.
16478         (autoload--insert-text): Remove.
16479         (autoload--print-cookie-text): New function, extracted from
16480         autoload--insert-cookie-text.
16481         (autoload--insert-cookie-text): Remove.
16482         (autoload-generate-file-autoloads): Adjust calls accordingly.
16484         * winner.el (winner-hook-installed-p): Remove.
16485         (winner-mode): Simplify accordingly.
16487         * subr.el (add-to-list): Fix compiler-macro when `append' is
16488         not constant.  Don't use `cl-member' for the base case.
16490         * progmodes/subword.el: Fix boundary case (bug#13758).
16491         (subword-forward-regexp): Make it a constant.  Wrap optional \\W in its
16492         own group.
16493         (subword-backward-regexp): Make it a constant.
16494         (subword-forward-internal): Don't treat a trailing capital as the
16495         beginning of a word.
16497 2013-07-22  Ari Roponen  <ari.roponen@gmail.com>  (tiny change)
16499         * emacs-lisp/package.el (package-menu-mode): Don't modify the
16500         global value of tabulated-list-revert-hook (bug#14930).
16502 2013-07-22  Juanma Barranquero  <lekktu@gmail.com>
16504         * desktop.el: Require 'cl-lib.
16505         (desktop-before-saving-frames-functions): New hook.
16506         (desktop--process-minibuffer-frames): Set desktop-mini parameter only
16507         for frames being saved.  Rename from desktop--save-minibuffer-frames.
16508         (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
16509         Do not save frames with non-nil `desktop-dont-save' parameter.
16510         Filter out deleted frames.
16511         (desktop--find-frame): Use cl-find-if.
16512         (desktop--select-frame): Use cl-(first|second|third) to access values
16513         of desktop-mini.
16514         (desktop--make-frame): Use cl-delete-if.
16515         (desktop--sort-states): Fix sorting of minibuffer-owning frames.
16516         (desktop-restore-frames): Use cl-(first|second|third) to access values
16517         of desktop-mini.  Look for visible frame at the end, not while
16518         restoring frames.
16520         * dired-x.el (dired-mark-unmarked-files, dired-virtual)
16521         (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
16522         Use string-match-p, looking-at-p (bug#14927).
16524 2013-07-21  Juanma Barranquero  <lekktu@gmail.com>
16526         * desktop.el (desktop-saved-frame-states):
16527         Rename from desktop--saved-states; all users changed.
16528         (desktop-save-frames): Rename from desktop--save-frames.
16529         Do not save state to desktop file.
16530         (desktop-save): Save desktop-saved-frame-states to desktop file
16531         and reset to nil.
16532         (desktop-restoring-frames-p): New function.
16533         (desktop-restore-frames): Use it.  Rename from desktop--restore-frames.
16534         (desktop-read): Use desktop-restoring-frames-p.  Do not try to fix
16535         buffer-lists when restoring frames.  Suggested by Martin Rudalics.
16537         * desktop.el: Correctly restore iconified frames.
16538         (desktop--filter-iconified-position): New function.
16539         (desktop-filter-parameters-alist): Add entries for `top' and `left'.
16541 2013-07-20  Glenn Morris  <rgm@gnu.org>
16543         * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
16544         Let `message' do the formatting.
16545         (def-gdb-preempt-display-buffer): Add explicit format.
16547         * image-dired.el (image-dired-track-original-file):
16548         Use with-current-buffer.
16549         (image-dired-track-thumbnail): Use with-current-buffer.
16550         Avoid changing point of wrong window.
16552         * image-dired.el (image-dired-track-original-file):
16553         Avoid changing point of wrong window.  (Bug#14909)
16555 2013-07-20  Richard Copley  <rcopley@gmail.com>  (tiny change)
16557         * progmodes/gdb-mi.el (gdb-done-or-error):
16558         Guard against "%" in gdb output.  (Bug#14127)
16560 2013-07-20  Andreas Schwab  <schwab@linux-m68k.org>
16562         * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
16563         (Bug#14826)
16565         * international/mule.el (coding-system-iso-2022-flags): Fix last
16566         change.
16568 2013-07-20  Kenichi Handa  <handa@gnu.org>
16570         * international/mule.el (coding-system-iso-2022-flags):
16571         Add `8-bit-level-4'.  (Bug#8522)
16573 2013-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16575         * net/shr.el (shr-mouse-browse-url): New command and keystroke
16576         (bug#14815).
16578         * net/eww.el (eww-process-text-input): Allow inputting when the
16579         point is at the start of the line, as the properties aren't
16580         front-sticky.
16582         * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
16583         degenerate widths.
16585 2013-07-19  Richard Stallman  <rms@gnu.org>
16587         * epa.el (epa-popup-info-window): Doc fix.
16589         * subr.el (split-string): New arg TRIM.
16591 2013-07-18  Juanma Barranquero  <lekktu@gmail.com>
16593         * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
16594         Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
16596 2013-07-18  Michael Albinus  <michael.albinus@gmx.de>
16598         * filenotify.el (file-notify--library): Rename from
16599         `file-notify-support'.  Do not autoload.  Adapt all uses.
16600         (file-notify-supported-p): New defun.
16602         * autorevert.el (auto-revert-use-notify):
16603         Use `file-notify-supported-p' instead of `file-notify-support'.
16604         Adapt docstring.
16605         (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
16607         * net/tramp.el (tramp-file-name-for-operation):
16608         Add `file-notify-supported-p'.
16610         * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
16611         New defun.
16612         (tramp-sh-file-name-handler-alist): Add it as handler for
16613         `file-notify-supported-p '.
16615         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
16616         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
16617         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
16618         Add `ignore' as handler for `file-notify-*' functions.
16620 2013-07-17  Eli Zaretskii  <eliz@gnu.org>
16622         * simple.el (line-move-partial, line-move): Don't start vscroll or
16623         scroll-up if the current line is not taller than the window.
16624         (Bug#14881)
16626 2013-07-16  Dmitry Gutov  <dgutov@yandex.ru>
16628         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
16629         highlight question marks in the method names as strings.
16630         (ruby-block-beg-keywords): Inline.
16631         (ruby-font-lock-keyword-beg-re): Extract from
16632         `ruby-font-lock-keywords'.
16634 2013-07-16  Jan Djärv  <jan.h.d@swipnet.se>
16636         * frame.el (blink-cursor-blinks): New defcustom.
16637         (blink-cursor-blinks-done): New defvar.
16638         (blink-cursor-start): Set blink-cursor-blinks-done to 1.
16639         (blink-cursor-timer-function): Check if number of blinks has been
16640         done on X and NS.
16641         (blink-cursor-suspend, blink-cursor-check): New defuns.
16643 2013-07-15  Glenn Morris  <rgm@gnu.org>
16645         * edmacro.el (edmacro-format-keys): Fix previous change.
16647 2013-07-15  Paul Eggert  <eggert@cs.ucla.edu>
16649         * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
16650         The hack didn't work outside English locales anyway.
16652 2013-07-15  Juanma Barranquero  <lekktu@gmail.com>
16654         * simple.el (define-alternatives): Rename from alternatives-define,
16655         per RMS' suggestion.
16657 2013-07-14  Juanma Barranquero  <lekktu@gmail.com>
16659         * desktop.el (desktop-restore-frames): Change default to t.
16660         (desktop-restore-in-current-display): Now offer more options.
16661         (desktop-restoring-reuses-frames): New customization option.
16662         (desktop--saved-states): Doc fix.
16663         (desktop-filter-parameters-alist): New variable, renamed and expanded
16664         from desktop--excluded-frame-parameters.
16665         (desktop--target-display): New variable.
16666         (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
16667         (desktop--filter-tty*, desktop--filter-*-color)
16668         (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
16669         (desktop--filter-save-desktop-parm)
16670         (desktop-restore-in-original-display-p): New functions.
16671         (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
16672         (desktop--save-minibuffer-frames): New function, inspired by a similar
16673         function from Martin Rudalics.
16674         (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
16675         (desktop--restore-in-this-display-p): Remove.
16676         (desktop--find-frame): Rename from desktop--find-frame-in-display
16677         and add predicate argument.
16678         (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
16679         (desktop--reuse-list): New variable.
16680         (desktop--select-frame, desktop--make-frame, desktop--sort-states):
16681         New functions.
16682         (desktop--restore-frames): Add support for "minibuffer-special" frames.
16684 2013-07-14  Michael Albinus  <michael.albinus@gmx.de>
16686         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
16688 2013-07-13  Dmitry Gutov  <dgutov@yandex.ru>
16690         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
16691         Highlight conversion methods on Kernel.
16693 2013-07-13  Alan Mackenzie  <acm@muc.de>
16695         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
16696         and comment it out.  This out-commenting enables certain C++
16697         declarations to be parsed correctly.
16699 2013-07-13  Eli Zaretskii  <eliz@gnu.org>
16701         * international/mule.el (define-coding-system): Doc fix.
16703         * simple.el (default-font-height): Don't call font-info if the
16704         frame's default font didn't change since the frame was created.
16705         (Bug#14838)
16707 2013-07-13  Leo Liu  <sdl.web@gmail.com>
16709         * ido.el (ido-read-file-name): Guard against non-symbol value.
16711 2013-07-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
16713         * progmodes/python.el (python-imenu--build-tree): Fix corner case
16714         in nested defuns.
16716 2013-07-13  Leo Liu  <sdl.web@gmail.com>
16718         * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
16719         ido-set-matches call.  (Bug#6852)
16721 2013-07-12  Dmitry Gutov  <dgutov@yandex.ru>
16723         * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
16724         (ruby-syntax-expansion-allowed-p): Support array of symbols, for
16725         Ruby 2.0.
16726         (ruby-font-lock-keywords): Distinguish calls to functions with
16727         module-like names from module references.  Highlight character
16728         literals.
16730 2013-07-12  Sergio Durigan Junior  <sergiodj@riseup.net>  (tiny change)
16732         * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
16733         (gdb-send): Handle continued commands.  (Bug#14847)
16735 2013-07-12  Juanma Barranquero  <lekktu@gmail.com>
16737         * desktop.el (desktop--v2s): Remove unused local variable.
16738         (desktop-save-buffer): Make defvar-local; adjust docstring.
16739         (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
16740         (desktop-clear, desktop-save-buffer-p): Use string-match-p.
16742 2013-07-12  Andreas Schwab  <schwab@linux-m68k.org>
16744         * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
16746 2013-07-12  Eli Zaretskii  <eliz@gnu.org>
16748         * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
16749         (Bug#14842)
16751 2013-07-12  Glenn Morris  <rgm@gnu.org>
16753         * doc-view.el: Require cl-lib at runtime too.
16754         (doc-view-remove-if): Remove.
16755         (doc-view-search-next-match, doc-view-search-previous-match):
16756         Use cl-remove-if.
16758         * edmacro.el: Require cl-lib at runtime too.
16759         (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
16760         (edmacro-mismatch, edmacro-subseq): Remove.
16762         * shadowfile.el: Require cl-lib.
16763         (shadow-remove-if): Remove.
16764         (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
16765         Use cl-remove-if.
16767         * wid-edit.el: Require cl-lib.
16768         (widget-choose): Use cl-remove-if.
16769         (widget-remove-if): Remove.
16771         * progmodes/ebrowse.el: Require cl-lib at runtime too.
16772         (ebrowse-delete-if-not): Remove.
16773         (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
16774         (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
16775         Use cl-delete-if-not.
16777 2013-07-12  Juanma Barranquero  <lekktu@gmail.com>
16779         * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
16780         (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
16782 2013-07-12  Leo Liu  <sdl.web@gmail.com>
16784         * ido.el (dired-do-copy, dired): Set 'ido property.  (Bug#11954)
16786 2013-07-11  Glenn Morris  <rgm@gnu.org>
16788         * emacs-lisp/edebug.el: Require cl-lib at run-time too.
16789         (edebug-gensym-index, edebug-gensym):
16790         Remove reimplementation of cl-gensym.
16791         (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
16793         * thumbs.el: Require cl-lib at run-time too.
16794         (thumbs-gensym-counter, thumbs-gensym):
16795         Remove reimplementation of cl-gensym.
16796         (thumbs-temp-file): Use cl-gensym.
16798         * emacs-lisp/ert.el: Require cl-lib at runtime too.
16799         (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
16800         (ert--intersection, ert--set-difference, ert--set-difference-eq)
16801         (ert--union, ert--gensym-counter, ert--gensym-counter)
16802         (ert--coerce-to-vector, ert--remove*, ert--string-position)
16803         (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
16804         (ert-make-test-unbound, ert--expand-should-1)
16805         (ert--expand-should, ert--should-error-handle-error)
16806         (should-error, ert--explain-equal-rec)
16807         (ert--plist-difference-explanation, ert-select-tests)
16808         (ert--make-stats, ert--remove-from-list, ert--string-first-line):
16809         Use cl-lib functions rather than reimplementations.
16811 2013-07-11  Michael Albinus  <michael.albinus@gmx.de>
16813         * net/tramp.el (tramp-methods): Extend docstring.
16814         (tramp-connection-timeout): New defcustom.
16815         (tramp-error-with-buffer): Reset timestamp only when appropriate.
16816         (with-tramp-progress-reporter): Simplify.
16817         (tramp-process-actions): Improve messages.
16819         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
16820         * net/tramp-sh.el (tramp-maybe-open-connection):
16821         Use `tramp-connection-timeout'.
16822         (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
16823         (Bug#14808)
16825 2013-07-11  Leo Liu  <sdl.web@gmail.com>
16827         * ido.el (ido-read-file-name): Conform to the requirements of
16828         read-file-name.  (Bug#11861)
16829         (ido-read-directory-name): Conform to the requirements of
16830         read-directory-name.
16832 2013-07-11  Juanma Barranquero  <lekktu@gmail.com>
16834         * subr.el (delay-warning): New function.
16836 2013-07-10  Eli Zaretskii  <eliz@gnu.org>
16838         * simple.el (default-line-height): New function.
16839         (line-move-partial, line-move): Use it instead of computing the
16840         line height inline.
16841         (line-move-partial): Always compute ROWH.  If the last line is
16842         partially-visible, but its text is completely visible, allow
16843         cursor to enter such a partially-visible line.
16845 2013-07-10  Michael Albinus  <michael.albinus@gmx.de>
16847         Improve error messages.  (Bug#14808)
16849         * net/tramp.el (tramp-current-connection): New defvar, moved from
16850         tramp-sh.el.
16851         (tramp-message-show-progress-reporter-message): Remove, not
16852         needed anymore.
16853         (tramp-error-with-buffer): Show message in minibuffer.
16854         Discard input before waiting.  Reset connection timestamp.
16855         (with-tramp-progress-reporter): Improve messages.
16856         (tramp-process-actions): Use progress reporter.  Delete process in
16857         case of error.  Improve messages.
16859         * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
16860         Call `tramp-error-with-buffer' with vector and buffer.
16861         (tramp-current-connection): Remove.
16862         (tramp-maybe-open-connection): The car of
16863         `tramp-current-connection' are the first 3 slots of the vector.
16865 2013-07-10  Teodor Zlatanov  <tzz@lifelogs.com>
16867         * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
16868         inside continued strings.
16870 2013-07-10  Paul Eggert  <eggert@cs.ucla.edu>
16872         Timestamp fixes for undo (Bug#14824).
16873         * files.el (clear-visited-file-modtime): Move here from fileio.c.
16875 2013-07-10  Leo Liu  <sdl.web@gmail.com>
16877         * files.el (require-final-newline): Allow safe local value.
16878         (Bug#14834)
16880 2013-07-09  Leo Liu  <sdl.web@gmail.com>
16882         * ido.el (ido-read-directory-name): Handle fallback.
16883         (ido-read-file-name): Update DIR to ido-current-directory.
16884         (Bug#1516)
16885         (ido-add-virtual-buffers-to-list): Robustify.  (Bug#14552)
16887 2013-07-09  Dmitry Gutov  <dgutov@yandex.ru>
16889         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
16890         "autoload".  Remove "warn lower camel case" section, previously
16891         commented out.  Highlight negation char.  Do not highlight the
16892         target in singleton method definitions.
16894 2013-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
16896         * faces.el (tty-setup-hook): Declare the hook.
16898         * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
16899         and detect when a guard/pred depends on local vars (bug#14773).
16900         (pcase--u1): Adjust caller.
16902 2013-07-08  Eli Zaretskii  <eliz@gnu.org>
16904         * simple.el (line-move-partial, line-move): Account for
16905         line-spacing.
16906         (line-move-partial): Avoid setting vscroll when the last
16907         partially-visible line in window is of default height.
16909 2013-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
16911         * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
16912         been used a while.
16914 2013-07-07  Juanma Barranquero  <lekktu@gmail.com>
16916         * subr.el (read-quoted-char): Remove unused local variable `char'.
16918 2013-07-07  Michael Kifer  <kifer@cs.stonybrook.edu>
16920         * vc/ediff.el (ediff-version): Version update.
16921         (ediff-files-command, ediff3-files-command, ediff-merge-command)
16922         (ediff-merge-with-ancestor-command, ediff-directories-command)
16923         (ediff-directories3-command, ediff-merge-directories-command)
16924         (ediff-merge-directories-with-ancestor-command): New functions.
16925         All are command-line interfaces to ediff: to facilitate calling
16926         Emacs with the appropriate ediff functions invoked.
16928         * emulation/viper-cmd.el (viper-del-forward-char-in-insert):
16929         New function.
16930         (viper-save-kill-buffer): Check if buffer is modified.
16932         * emulation/viper.el (viper-version): Version update.
16933         (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
16935 2013-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
16937         * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
16938         * emulation/viper-cmd.el (viper-envelop-ESC-key): Remove function.
16939         (viper-intercept-ESC-key): Simplify.
16940         * emulation/viper-keym.el (viper-ESC-key): Make it a constant,
16941         don't use kbd.
16942         * emulation/viper.el (viper--tty-ESC-filter, viper--lookup-key)
16943         (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
16944         (viper-setup-ESC-to-escape): New functions.
16945         (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
16946         (viper-set-hooks): Do not modify flyspell-mode-hook.  (Bug#13793)
16948 2013-07-07  Eli Zaretskii  <eliz@gnu.org>
16950         * simple.el (default-font-height, window-screen-lines):
16951         New functions.
16952         (line-move, line-move-partial): Use them instead of
16953         frame-char-height and window-text-height.  This makes scrolling
16954         text smoother when the buffer's default face uses a font that is
16955         different from the frame's default font.
16957 2013-07-06  Jan Djärv  <jan.h.d@swipnet.se>
16959         * files.el (write-file): Do not display confirm dialog for NS,
16960         it does its own dialog, which can't be canceled (Bug#14578).
16962 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
16964         * simple.el (line-move-partial): Adjust the row returned by
16965         posn-at-point for the current window-vscroll.  (Bug#14567)
16967 2013-07-06  Michael Albinus  <michael.albinus@gmx.de>
16969         * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
16970         (tramp-sh-file-inotifywait-process-filter): Handle file names with
16971         spaces.
16973 2013-07-06  Martin Rudalics  <rudalics@gmx.at>
16975         * window.el (window-state-put-stale-windows): New variable.
16976         (window--state-put-2): Save list of windows without matching buffer.
16977         (window-state-put): Remove "bufferless" windows if possible.
16979 2013-07-06  Juanma Barranquero  <lekktu@gmail.com>
16981         * simple.el (alternatives-define): Remove leftover :group keyword.
16982         Tweak docstring.
16984 2013-07-06  Leo Liu  <sdl.web@gmail.com>
16986         * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
16987         (ido-enable-virtual-buffers): New variable.
16988         (ido-buffer-internal, ido-toggle-virtual-buffers)
16989         (ido-make-buffer-list): Use it.
16990         (ido-exhibit): Support turning on and off virtual buffers
16991         automatically.
16993 2013-07-06  Juanma Barranquero  <lekktu@gmail.com>
16995         * simple.el (alternatives-define): New macro.
16997 2013-07-06  Stefan Monnier  <monnier@iro.umontreal.ca>
16999         * subr.el (read-quoted-char): Use read-key.
17000         (sit-for): Let read-event decode tty input (bug#14782).
17002 2013-07-05  Stephen Berman  <stephen.berman@gmx.net>
17004         * calendar/todo-mode.el: Add handling of file deletion, both by
17005         mode command and externally.  Fix various related bugs.
17006         Clarify Commentary and improve some documentation strings and code.
17007         (todo-delete-file): New command.
17008         (todo-check-file): New function.
17009         (todo-show): Handle external deletion of the file we're trying to
17010         show (bug#14688).  Replace called-interactively-p by an optional
17011         prefix argument to avoid problematic interaction with catch form
17012         when byte compiled (bug#14702).
17013         (todo-quit): Handle external deletion of the archive's todo file.
17014         Make sure the buffer that was visiting the archive file is still
17015         live before trying to bury it.
17016         (todo-category-completions): Handle external deletion of any
17017         category completion files.
17018         (todo-jump-to-category, todo-basic-insert-item): Recalculate list
17019         of todo files, in case of external deletion.
17020         (todo-add-file): Replace unnecessary setq by let-binding.
17021         (todo-find-archive): Check whether there are any archives.
17022         Replace unnecessary setq by let-binding.
17023         (todo-archive-done-item): Use find-file-noselect to get the
17024         archive buffer whether or not the archive already exists.
17025         Remove superfluous code.  Use file size instead of buffer-file-name to
17026         check if the archive is new; if it is, update list of archives.
17027         (todo-default-todo-file): Allow nil to be a valid value for when
17028         there are no todo files.
17029         (todo-reevaluate-default-file-defcustom): Use corrected definition
17030         of todo-default-todo-file.
17031         (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
17032         (todo-delete-category, todo-show-categories-table)
17033         (todo-category-number): Clarify comment.
17034         (todo-filter-items): Clarify documentation string.
17035         (todo-show-current-file, todo-display-as-todo-file)
17036         (todo-reset-and-enable-done-separator): Tweak documentation string.
17037         (todo-done-separator): Make separator length window-width, since
17038         bug#2749 is now fixed.
17040 2013-07-05  Michael Albinus  <michael.albinus@gmx.de>
17042         * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
17043         Support both "gvfs-monitor-dir" and "inotifywait".
17044         (tramp-sh-file-inotifywait-process-filter): Rename from
17045         `tramp-sh-file-notify-process-filter'.
17046         (tramp-sh-file-gvfs-monitor-dir-process-filter)
17047         (tramp-get-remote-gvfs-monitor-dir): New defuns.
17049 2013-07-05  Leo Liu  <sdl.web@gmail.com>
17051         * autoinsert.el (auto-insert-alist): Default to lexical-binding.
17053 2013-07-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
17055         * frame.el (display-pixel-height, display-pixel-width)
17056         (display-mm-height, display-mm-width): Mention behavior on
17057         multi-monitor setups in docstrings.
17058         (w32-display-monitor-attributes-list): Declare function.
17059         (display-monitor-attributes-list): Use it.
17061 2013-07-04  Michael Albinus  <michael.albinus@gmx.de>
17063         * filenotify.el: New package.
17065         * autorevert.el (top): Require filenotify.el.
17066         (auto-revert-notify-enabled): Remove.  Use `file-notify-support'
17067         instead.
17068         (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
17069         (auto-revert-notify-handler): Use `file-notify-*' functions.
17071         * subr.el (file-notify-handle-event): Move function to filenotify.el.
17073         * net/tramp.el (tramp-file-name-for-operation):
17074         Handle `file-notify-add-watch' and `file-notify-rm-watch'.
17076         * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
17077         for `file-notify-add-watch' and `file-notify-rm-watch'.
17078         (tramp-process-sentinel): Improve trace.
17079         (tramp-sh-handle-file-notify-add-watch)
17080         (tramp-sh-file-notify-process-filter)
17081         (tramp-sh-handle-file-notify-rm-watch)
17082         (tramp-get-remote-inotifywait): New defuns.
17084 2013-07-03  Juri Linkov  <juri@jurta.org>
17086         * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
17087         call of `occur-read-primary-args' to interactive spec.
17089         * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
17090         `ibuffer-do-occur' like in buff-menu.el.  (Bug#14673)
17092 2013-07-03  Matthias Meulien  <orontee@gmail.com>
17094         * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
17095         `Buffer-menu-multi-occur'.  Add it to the menu.
17096         (Buffer-menu-mode): Document it in docstring.
17097         (Buffer-menu-multi-occur): New command.  (Bug#14673)
17099 2013-07-03  Dmitry Gutov  <dgutov@yandex.ru>
17101         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
17102         keywords and built-ins.
17104 2013-07-03  Glenn Morris  <rgm@gnu.org>
17106         * subr.el (y-or-n-p): Handle empty prompts.  (Bug#14770)
17108         Make info-xref checks case-sensitive by default
17109         * info.el (Info-find-node, Info-find-in-tag-table)
17110         (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
17111         Add option for exact case matching of nodes.
17112         * info-xref.el (info-xref): New custom group.
17113         (info-xref-case-fold): New option.
17114         (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
17116 2013-07-03  Leo Liu  <sdl.web@gmail.com>
17118         * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
17120 2013-07-03  Dmitry Gutov  <dgutov@yandex.ru>
17122         * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
17123         middle of block statement initially, lower the depth.  Remove
17124         FIXME comment, not longer valid.  Remove middle of block statement
17125         detection, no need to do that anymore since we've been using
17126         `ruby-parse-region' here.
17128 2013-07-02  Jan Djärv  <jan.h.d@swipnet.se>
17130         * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
17132 2013-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
17134         * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
17136 2013-07-01  Juanma Barranquero  <lekktu@gmail.com>
17138         * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
17139         (desktop-restore-in-current-display): New customization option.
17140         (desktop--excluded-frame-parameters): Add `font'.
17141         (desktop--save-frames): Rename from desktop--save-windows.
17142         (desktop--restore-in-this-display-p): New function.
17143         (desktop--make-full-frame): Remove unwanted width/height from
17144         full(width|height) frames.
17145         (desktop--restore-frames): Rename from desktop--restore-windows.
17146         Obey desktop-restore-current-display.  Do not delete old frames or
17147         select a new frame unless we were able to restore at least one frame.
17149 2013-06-30  Michal Nazarewicz  <mina86@mina86.com>
17151         * files.el (find-file-noselect): Simplify conditional expression.
17153         * textmodes/remember.el (remember-append-to-file):
17154         Don't mix `find-buffer-visiting' and `get-file-buffer'.
17156         Add `remember-notes' function to store random notes across Emacs
17157         restarts.
17158         * textmodes/remember.el (remember-data-file): Add :set callback to
17159         affect notes buffer (if any).
17160         (remember-notes): New command.
17161         (remember-notes-buffer-name, bury-remember-notes-on-kill):
17162         New defcustoms for the `remember-notes' function.
17163         (remember-notes-save-and-bury-buffer): New command.
17164         (remember-notes-mode-map): New variable.
17165         (remember-mode): New minor mode.
17166         (remember-notes--kill-buffer-query): New function.
17167         * startup.el (initial-buffer-choice): Add notes to custom type.
17169 2013-06-30  Eli Zaretskii  <eliz@gnu.org>
17171         * bindings.el (right-char, left-char): Don't call sit-for, this is
17172         no longer needed.  Use arithmetic comparison only for numerical
17173         arguments.
17175         * international/mule-cmds.el (select-safe-coding-system):
17176         Handle the case of FROM being a string correctly.  (Bug#14755)
17178 2013-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17180         * net/shr.el (shr-make-table-1): Add a sanity check that allows
17181         progression on degenerate tables.
17182         (shr-rescale-image): ImageMagick animated images currently don't work.
17184 2013-06-30  Juanma Barranquero  <lekktu@gmail.com>
17186         Some fixes and improvements for desktop frame restoration.
17187         It is still experimental and disabled by default.
17188         * desktop.el (desktop--save-windows): Put the selected frame at
17189         the head of the list.
17190         (desktop--make-full-frame): New function.
17191         (desktop--restore-windows): Try to re-select the frame that was
17192         selected upon saving.  Do not abort if some frames fail to restore,
17193         just show an error message and continue.  Set up maximized frames
17194         so they have default non-maximized dimensions.
17196 2013-06-30  Dmitry Gutov  <dgutov@yandex.ru>
17198         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
17199         Don't start heredoc inside a string or comment.
17201 2013-06-29  Eli Zaretskii  <eliz@gnu.org>
17203         * bindings.el (visual-order-cursor-movement): New defcustom.
17204         (right-char, left-char): Provide visual-order cursor motion by
17205         calling move-point-visually.  Update the doc strings.
17207 2013-06-28  Kenichi Handa  <handa@gnu.org>
17209         * international/mule.el (define-coding-system): New coding system
17210         properties :inhibit-null-byte-detection,
17211         :inhibit-iso-escape-detection, and :prefer-utf-8.
17212         (set-buffer-file-coding-system): If :charset-list property of
17213         CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
17214         appropriate for setting.
17216         * international/mule-cmds.el (select-safe-coding-system):
17217         If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
17218         multibyte characters, return utf-8 (or one of its siblings).
17220         * international/mule-conf.el (prefer-utf-8): New coding system.
17221         (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
17222         files.
17224 2013-06-28  Ivan Kanis  <ivan@kanis.fr>
17226         * net/shr.el (shr-render-region): New function.
17228         * net/eww.el: Autoload `eww-browse-url'.
17230 2013-06-27  Dmitry Gutov  <dgutov@yandex.ru>
17232         * emacs-lisp/package-x.el (package-upload-buffer-internal):
17233         Adapt to `package-desc-version' being a list.
17234         Use `package--ac-desc-version' to retrieve version from a package
17235         archive element.
17237 2013-06-27  Juanma Barranquero  <lekktu@gmail.com>
17239         New experimental feature to save&restore window and frame setup.
17240         * desktop.el (desktop-save-windows): New defcustom.
17241         (desktop--saved-states): New var.
17242         (desktop--excluded-frame-parameters): New defconst.
17243         (desktop--filter-frame-parms, desktop--find-frame-in-display)
17244         (desktop--restore-windows, desktop--save-windows): New functions.
17245         (desktop-save): Call `desktop--save-windows'.
17246         (desktop-read): Call `desktop--restore-windows'.
17248 2013-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17250         * net/shr.el (add-face-text-property): Remove compat definition.
17252 2013-06-27  Stephen Berman  <stephen.berman@gmx.net>
17254         * info.el (Info-try-follow-nearest-node): Move search for footnote
17255         above search for node name to prevent missing a footnote (bug#14717).
17257 2013-06-27  Stephen Berman  <stephen.berman@gmx.net>
17259         * obsolete/otodo-mode.el: Add obsolescence info to file header.
17261 2013-06-27  Leo Liu  <sdl.web@gmail.com>
17263         * net/eww.el (eww-read-bookmarks): Check file size.
17265 2013-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
17267         * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
17268         advice--pending if newdef is nil or an autoload (bug#13820).
17269         (advice-mapc): New function.
17271 2013-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17273         * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
17274         probably.
17275         (eww-mode-map): Add a menu bar.
17276         (eww-add-bookmark): New command.
17277         (eww-bookmark-mode): New mode and commands.
17278         (eww-add-bookmark): Remove newlines from the title.
17279         (eww-bookmark-browse): Don't bug out if it's the only window.
17281 2013-06-26  Glenn Morris  <rgm@gnu.org>
17283         * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
17284         (hfy-size): Handle ttys.  (Bug#14668)
17286         * info-xref.el: Update for Texinfo 5 change in *note format.
17287         (info-xref-node-re, info-xref-note-re): New constants.
17288         (info-xref-check-buffer): Use info-xref-note-re.
17290 2013-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
17292         * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
17294         * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
17295         nil terminate the loop (bug#14718).
17297 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17299         * net/eww.el: Rework history traversal.  When going forward/back,
17300         put these actions into the history, too, so that they can be
17301         replayed.
17302         (eww-render): Move the history reset to the correct buffer.
17304 2013-06-25  Juri Linkov  <juri@jurta.org>
17306         * files-x.el (modify-dir-local-variable): Change the header comment
17307         in the file with directory local variables.  (Bug#14692)
17309         * files-x.el (read-file-local-variable-value): Add `default'.
17310         (Bug#14710)
17312 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17314         * net/eww.el (eww-make-unique-file-name): Create a unique file
17315         name before saving to entering `y' accidentally asynchronously.
17317 2013-06-25  Ivan Kanis  <ivan@kanis.fr>
17319         * net/eww.el (eww-download): New command and keystroke.
17321 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17323         * net/eww.el (eww-copy-page-url): Change name of command.
17325         * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
17326         be more consistent with Info and dired.
17328         * net/eww.el (eww-mode-map): Ditto.
17330 2013-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
17332         * emacs-lisp/package.el: Use lexical-binding.  Include obsolete
17333         packages from archives.
17334         (package-archive-contents): Change format; include obsolete packages.
17335         (package-desc): Use `dir' to mark builtin packages.
17336         (package--from-builtin): Set the `dir' field to `builtin'.
17337         (generated-autoload-file, version-control): Declare.
17338         (package-compute-transaction): Change first arg and return value to be
17339         lists of package-descs.  Adjust to new package-archive-contents format.
17340         (package--add-to-archive-contents): Adjust to new
17341         package-archive-contents format.
17342         (package-download-transaction): Arg is now a list of package-descs.
17343         (package-install): If `pkg' is a package name, pass it as
17344         a requirement, so it is subject to the usual (e.g. disabled) checks.
17345         (describe-package): Accept package-desc as well.
17346         (describe-package-1): Describe a specific package-desc.  Add links to
17347         other package-descs for the same package name.
17348         (package-menu-describe-package): Pass the actual package-desc.
17349         (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
17350         works correctly.
17351         (package-desc-status): New function.
17352         (package-menu--refresh): New function, extracted
17353         from package-menu--generate.
17354         (package-menu--generate): Use it.
17355         (package-delete): Update package-alist.
17356         (package-menu-execute): Don't call package-initialize.
17358         * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
17359         progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
17360         progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
17361         progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
17362         progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
17363         emacs-lisp/cl-macs.el: Neuter the "Version:" header.
17365 2013-06-25  Martin Rudalics  <rudalics@gmx.at>
17367         * window.el (window--state-get-1): Workaround for bug#14527.
17368         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
17370 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17372         * net/eww.el (eww-back-url): Implement the history by stashing all
17373         the data into a list.
17374         (eww-forward-url): Allow going forward in the history, too.
17376 2013-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
17378         * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
17379         for values and use read--expression for expressions (bug#14710).
17380         (read-file-local-variable): Avoid setq.
17381         (read-file-local-variable-mode): Use minor-mode-list.
17383 2013-06-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
17385         * textmodes/bibtex.el (bibtex-generate-url-list): Add support
17386         for DOI URLs.
17388 2013-06-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
17390         * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
17391         Update imenu-support when dialect changes.
17393 2013-06-25  Leo Liu  <sdl.web@gmail.com>
17395         * ido.el (ido-read-internal): Allow forward slash on windows.
17397 2013-06-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17399         * net/eww.el (eww): Start of strings is \\`, not ^.
17401 2013-06-24  Ivan Kanis  <ivan@kanis.fr>
17403         * net/shr.el (shr-browse-url): Fix interactive spec.
17405         * net/eww.el (eww): Add a trailing slash to domain names.
17407 2013-06-24  Juanma Barranquero  <lekktu@gmail.com>
17409         * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
17411 2013-06-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17413         * net/shr.el (shr-browse-url): Use an external browser if given a
17414         prefix.
17416         * net/eww.el (eww-external-browser): Move to shr.
17418 2013-06-24  Ivan Kanis  <ivan@kanis.fr>
17420         * net/eww.el (eww): Work more correctly for file: URLs.
17421         (eww-detect-charset): Allow quoted charsets.
17422         (eww-yank-page-url): New command and keystroke.
17424 2013-06-24  Daiki Ueno  <ueno@gnu.org>
17426         * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
17427         file name of gpg executable.
17428         (epg-context-program): New function.
17429         (epg-context-home-directory): New function.
17430         (epg-context-set-program): New function.
17431         (epg-context-set-home-directory): New function.
17432         (epg--start): Use `epg-context-program' instead of
17433         'epg-gpg-program'.
17434         (epg--list-keys-1): Likewise.
17436 2013-06-24  Leo Liu  <sdl.web@gmail.com>
17438         * ido.el (ido-read-internal): Fix bug#14620.
17440 2013-06-23  Juanma Barranquero  <lekktu@gmail.com>
17442         * faces.el (face-documentation): Simplify.
17443         (read-face-attribute, tty-find-type, x-resolve-font-name):
17444         Use `string-match-p'.
17445         (list-faces-display): Use `string-match-p'.  Simplify.
17446         (face-spec-recalc): Check face to avoid face alias loops.
17447         (read-color): Use `string-match-p' and non-capturing parenthesis.
17449 2013-06-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17451         * net/shr.el (shr-rescale-image): Use the new
17452         :max-width/:max-height functionality.
17454 2013-06-23  Ivan Kanis  <ivan@kanis.fr>
17456         * net/eww.el (eww-search-prefix): New variable.
17457         (eww): Use it.
17458         (eww-external-browser): New variable.
17459         (eww-mode-map): New keystroke.
17460         (eww-browse-with-external-browser): New command.
17462         * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
17464 2013-06-23  Juanma Barranquero  <lekktu@gmail.com>
17466         * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
17467         Don't skip aligning the next header field when padding is 0;
17468         otherwise, field width is not respected unless the title is as
17469         wide as the field.
17471 2013-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
17473         * emacs-lisp/package.el (package-el-version): Remove.
17474         (package-process-define-package): Fix inf-loop.
17475         (package-install): Allow symbols as arguments again.
17477 2013-06-22  Dmitry Gutov  <dgutov@yandex.ru>
17479         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
17480         add some more keyword-like methods.
17481         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
17483 2013-06-22  Juanma Barranquero  <lekktu@gmail.com>
17485         * bs.el (bs-buffer-show-mark): Make defvar-local.
17486         (bs-mode): Use setq-local.
17488         * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
17489         (emacs-lock--try-unlocking): Make defvar-local.
17491 2013-06-22  Glenn Morris  <rgm@gnu.org>
17493         * play/cookie1.el (cookie-apropos): Minor simplification.
17495         * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
17497 2013-06-22  Dmitry Gutov  <dgutov@yandex.ru>
17499         * progmodes/ruby-mode.el (auto-mode-alist): Do not use
17500         `regexp-opt', it breaks the build during dumping.
17502 2013-06-21  Dmitry Gutov  <dgutov@yandex.ru>
17504         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
17505         Highlight keyword-like methods on Kernel and Module with
17506         font-lock-builtin-face.
17507         (auto-mode-alist): Consolidate different entries into one regexp
17508         and add more *file-s.
17510 2013-06-21  Stephen Berman  <stephen.berman@gmx.net>
17512         * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
17514         * calendar/diary-lib.el (diary-goto-entry-function): New variable.
17515         (diary-entry): Use it in the action of this button type instead of
17516         diary-goto-entry.
17518         * calendar/todo-mode.el: New version.
17519         (todo-add-category): Append new category to end of file and give
17520         it the highest number, instead of putting it at the beginning and
17521         giving it 0.  Incorporate noninteractive functionality.
17522         (todo-forward-category): Adapt to 1-based category numbering.
17523         Allow skipping over archived categories.
17524         (todo-backward-category): Derive from todo-forward-category.
17525         (todo-backward-item, todo-forward-item): Make noninteractive and
17526         delegate interactive part to new commands.  Make sensitive to done items.
17527         (todo-categories): Make value an alist of category names and
17528         vectors of item counts.
17529         (todo-category-beg): Make a defconst.
17530         (todo-category-number): Use 1 instead of 0 as initial value.
17531         (todo-category-select): Make sensitive to overlays, optional item
17532         highlighting and done items.
17533         (todo-delete-item): Make sensitive to overlays and marked and done items.
17534         (todo-edit-item): Make sensitive to overlays and editing of
17535         date/time header optional.  Add format checks.
17536         (todo-edit-multiline): Rename to todo-edit-multiline-item.  Make a
17537         no-op if point is not on an item.  Advertise using todo-edit-quit.
17538         (todo-edit-mode): Make sensitive to new format, font-locking, and
17539         multiple todo files.
17540         (todo-insert-item, todo-insert-item-here): Derive from
17541         todo-basic-insert-item and extend functionality.
17542         (todo-item-end, todo-item-start): Make sensitive to done items.
17543         (todo-item-string): Don't return text properties.  Restore point.
17544         (todo-jump-to-category): Make sensitive to multiple todo files and
17545         todo archives.  Use extended category completion.
17546         (todo-lower-item, todo-raise-item): Rename to *-priority and
17547         derive from todo-set-item-priority.
17548         (todo-mode): Derive from special-mode.  Make sensitive to new
17549         format, font-locking and multiple todo files.  Make read-only.
17550         (todo-mode-map): Don't suppress digit keys, so they can supply
17551         prefix arguments.  Add many new key bindings.
17552         (todo-prefix): Insert as an overlay instead of file text.
17553         Change semantics from diary date expression to purely visual mark.
17554         (todo-print): Rename to todo-print-buffer.  Make buffer display
17555         features printable.  Remove option to restrict number of items
17556         printed.  Add option to print to file.
17557         (todo-print-function): Rename to todo-print-buffer-function.
17558         (todo-quit): Extend to handle exiting new todo modes.
17559         (todo-remove-item): Make sensitive to overlays.
17560         (todo-save): Extend to buffers of filtered items.
17561         (todo-show): Make sensitive to done items, multiple todo files and
17562         new todo modes.  Offer to convert legacy todo file before creating
17563         first new todo file.
17564         (todo-show-priorities): Rename to todo-top-priorities.
17565         Change semantics of value 0.
17566         (todo-top-priorities): Rename to todo-filter-top-priorities,
17567         derive from todo-filter-items and extend functionality.
17568         (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
17569         and extend functionality to other types of filtered items.
17570         (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
17571         (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
17572         (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
17573         (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
17574         (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
17575         (todo-edit-mode-hook, todo-entry-prefix-function)
17576         (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
17577         (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
17578         (todo-initials, todo-insert-threshold, todo-item-string-start)
17579         (todo-line-string, todo-menu, todo-mode-hook)
17580         (todo-more-important-p, todo-previous-answer, todo-previous-line)
17581         (todo-print-priorities, todo-remove-separator)
17582         (todo-save-top-priorities-too, todo-string-count-lines)
17583         (todo-string-multiline-p, todo-time-string-format)
17584         (todo-tmp-buffer-name): Remove.
17585         (todo-add-file, todo-archive-done-item, todo-choose-archive)
17586         (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
17587         (todo-edit-category-diary-inclusion)
17588         (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
17589         (todo-edit-file, todo-edit-item-date-day)
17590         (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
17591         (todo-edit-item-date-month, todo-edit-item-date-to-today)
17592         (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
17593         (todo-edit-item-diary-nonmarking, todo-edit-item-header)
17594         (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
17595         (todo-filter-diary-items-multifile, todo-filter-regexp-items)
17596         (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
17597         (todo-filter-top-priorities-multifile, todo-find-archive)
17598         (todo-find-filtered-items-file, todo-go-to-source-item)
17599         (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
17600         (todo-jump-to-archive-category, todo-lower-category)
17601         (todo-mark-category, todo-marked-item-p, todo-merge-category)
17602         (todo-move-category, todo-move-item, todo-next-button)
17603         (todo-next-item, todo-padded-string, todo-powerset)
17604         (todo-previous-button, todo-previous-item)
17605         (todo-print-buffer-to-file, todo-raise-category)
17606         (todo-rename-category, todo-repair-categories-sexp, todo-search)
17607         (todo-set-category-number, todo-set-item-priority)
17608         (todo-set-top-priorities-in-category)
17609         (todo-set-top-priorities-in-file, todo-show-categories-table)
17610         (todo-sort-categories-alphabetically-or-numerically)
17611         (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
17612         (todo-sort-categories-by-done, todo-sort-categories-by-todo)
17613         (todo-toggle-item-header, todo-toggle-item-highlighting)
17614         (todo-toggle-mark-item, todo-toggle-prefix-numbers)
17615         (todo-toggle-view-done-items, todo-toggle-view-done-only)
17616         (todo-unarchive-items, todo-unmark-category): New commands.
17617         (todo-absolute-file-name, todo-add-to-buffer-list)
17618         (todo-adjusted-category-label-length, todo-basic-edit-item-header)
17619         (todo-basic-insert-item, todo-category-completions)
17620         (todo-category-number, todo-category-string-matcher-1)
17621         (todo-category-string-matcher-2, todo-check-filtered-items-file)
17622         (todo-check-format, todo-clear-matches)
17623         (todo-comment-string-matcher, todo-convert-legacy-date-time)
17624         (todo-current-category, todo-date-string-matcher)
17625         (todo-define-insertion-command, todo-diary-expired-matcher)
17626         (todo-diary-goto-entry, todo-diary-item-p)
17627         (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
17628         (todo-display-categories, todo-display-sorted, todo-done-item-p)
17629         (todo-done-item-section-p, todo-done-separator)
17630         (todo-done-string-matcher, todo-files, todo-filter-items)
17631         (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
17632         (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
17633         (todo-insert-category-line, todo-insert-item-from-calendar)
17634         (todo-insert-sort-button, todo-insert-with-overlays)
17635         (todo-insertion-command-name, todo-insertion-key-bindings)
17636         (todo-label-to-key, todo-longest-category-name-length)
17637         (todo-make-categories-list, todo-mode-external-set)
17638         (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
17639         (todo-modes-set-3, todo-multiple-filter-files)
17640         (todo-nondiary-marker-matcher, todo-prefix-overlays)
17641         (todo-read-category, todo-read-date, todo-read-dayname)
17642         (todo-read-file-name, todo-read-time)
17643         (todo-reevaluate-category-completions-files-defcustom)
17644         (todo-reevaluate-default-file-defcustom)
17645         (todo-reevaluate-filelist-defcustoms)
17646         (todo-reevaluate-filter-files-defcustom)
17647         (todo-reset-and-enable-done-separator, todo-reset-comment-string)
17648         (todo-reset-done-separator, todo-reset-done-separator-string)
17649         (todo-reset-done-string, todo-reset-global-current-todo-file)
17650         (todo-reset-highlight-item, todo-reset-nondiary-marker)
17651         (todo-reset-prefix, todo-set-categories)
17652         (todo-set-date-from-calendar, todo-set-show-current-file)
17653         (todo-set-top-priorities, todo-short-file-name)
17654         (todo-show-current-file, todo-sort, todo-time-string-matcher)
17655         (todo-total-item-counts, todo-update-buffer-list)
17656         (todo-update-categories-display, todo-update-categories-sexp)
17657         (todo-update-count, todo-validate-name, todo-y-or-n-p):
17658         New functions.
17659         (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
17660         New major modes.
17661         (todo-categories, todo-display, todo-edit, todo-faces)
17662         (todo-filtered): New defgroups.
17663         (todo-archived-only, todo-button, todo-category-string, todo-date)
17664         (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
17665         (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
17666         (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
17667         (todo-add-item-if-new-category, todo-always-add-time-string)
17668         (todo-categories-align, todo-categories-archived-label)
17669         (todo-categories-category-label, todo-categories-diary-label)
17670         (todo-categories-done-label, todo-categories-number-separator)
17671         (todo-categories-todo-label, todo-categories-totals-label)
17672         (todo-category-completions-files, todo-completion-ignore-case)
17673         (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
17674         (todo-done-separator-string, todo-done-string)
17675         (todo-files-function, todo-filter-done-items, todo-filter-files)
17676         (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
17677         (todo-initial-category, todo-initial-file, todo-item-mark)
17678         (todo-legacy-date-time-regexp, todo-mode-line-function)
17679         (todo-nondiary-marker, todo-number-prefix)
17680         (todo-print-buffer-function, todo-show-current-file)
17681         (todo-show-done-only, todo-show-first, todo-show-with-done)
17682         (todo-skip-archived-categories, todo-top-priorities-overrides)
17683         (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
17684         (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
17685         New defcustoms.
17686         (todo-category-done, todo-date-pattern, todo-date-string-start)
17687         (todo-diary-items-buffer, todo-done-string-start)
17688         (todo-filtered-items-buffer, todo-item-start)
17689         (todo-month-abbrev-array, todo-month-name-array)
17690         (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
17691         (todo-top-priorities-buffer): New defconsts.
17692         (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
17693         (todo-categories-with-marks, todo-category-string-face)
17694         (todo-comment-face, todo-comment-string, todo-current-todo-file)
17695         (todo-date-face, todo-date-from-calendar, todo-descending-counts)
17696         (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
17697         (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
17698         (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
17699         (todo-font-lock-keywords, todo-global-current-todo-file)
17700         (todo-insertion-commands, todo-insertion-commands-arg-key-list)
17701         (todo-insertion-commands-args)
17702         (todo-insertion-commands-args-genlist)
17703         (todo-insertion-commands-names, todo-insertion-map)
17704         (todo-key-bindings-t, todo-key-bindings-t+a)
17705         (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
17706         (todo-multiple-filter-files, todo-multiple-filter-files-widget)
17707         (todo-nondiary-face, todo-print-buffer, todo-time-face)
17708         (todo-visited): New variables.
17710 2013-06-21  Glenn Morris  <rgm@gnu.org>
17712         * play/cookie1.el (cookie-apropos): Add optional display argument.
17713         * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
17714         (psychoanalyze-pinhead): Use cookie-doctor.
17716 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
17718         * emacs-lisp/package.el (tar-get-file-descriptor)
17719         (tar--extract): Declare.
17721 2013-06-21  Eduard Wiebe  <usenet@pusto.de>
17723         Extend flymake's warning predicate to be a function (bug#14217).
17724         * progmodes/flymake.el (flymake-warning-predicate): New.
17725         (flymake-parse-line): Use it.
17726         (flymake-warning-re): Make obsolete alias to
17727         `flymake-warning-predicate'.
17729 2013-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
17731         * emacs-lisp/package.el (package-alist): Include obsolete packages.
17732         (package-obsolete-list): Remove.
17733         (package-activate): Remove min-version argument.  Add `force' argument.
17734         Adjust to new package-alist format.
17735         (package-mark-obsolete): Remove.
17736         (package-unpack): Force reload of the package's autoloads.
17737         (package-installed-p): Check builtins if the installed package is not
17738         recent enough.
17739         (package-initialize): Don't reset package-obsolete-list.
17740         Don't specify which package version to activate.
17741         (package-process-define-package, describe-package-1)
17742         (package-menu--generate): Adjust to new package-alist format.
17744 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
17746         * allout-widgets.el (allout-widgets-mode-off)
17747         (allout-widgets-mode-on, allout-widgets-pre-command-business)
17748         (allout-widgets-post-command-business)
17749         (allout-widgets-after-copy-or-kill-function)
17750         (allout-widgets-after-undo-function, allout-test-range-overlaps)
17751         (allout-decorate-item-and-context)
17752         (allout-graphics-modification-handler): Fix typos in docstrings.
17753         (allout-get-or-create-parent-widget): Use `looking-at-p'.
17755         * cmuscheme.el (scheme-start-file): Doc fix.
17756         (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
17757         (scheme-input-filter): Use `string-match-p'.
17759         * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
17761         * dired-x.el: Use Dired consistently in docstrings.
17763         * dired.el: Use Dired consistently in docstrings.
17764         (dired-readin, dired-mode): Use `setq-local'.
17765         (dired-switches-alist): Make defvar-local.
17766         (dired-buffers-for-dir): Use `zerop'.
17767         (dired-safe-switches-p, dired-switches-escape-p)
17768         (dired-insert-old-subdirs, dired-move-to-end-of-filename)
17769         (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
17770         (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
17771         (dired-goto-next-nontrivial-file): Use `string-match-p'.
17772         (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
17773         (dired-toggle-marks, dired-mark-files-containing-regexp)
17774         (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
17775         (dired-flag-auto-save-files, dired-flag-backup-files):
17776         Use `looking-at-p'.
17777         (dired-mark-files-regexp, dired-build-subdir-alist):
17778         Use `string-match-p', `looking-at-p'.
17780         * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
17781         (direct-print-region-helper): Use `string-match-p'.
17783 2013-06-21  Leo Liu  <sdl.web@gmail.com>
17785         * comint.el (comint-redirect-results-list-from-process):
17786         Fix infinite loop.
17788 2013-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17790         * net/eww.el (eww-update-header-line-format): Quote % characters.
17792 2013-06-21  Glenn Morris  <rgm@gnu.org>
17794         * play/cookie1.el (cookie): New custom group.
17795         (cookie-file): New option.
17796         (cookie-check-file): New function.
17797         (cookie): Make it interactive.  Make start and end messages optional.
17798         Interactively, display the result.  Default to cookie-file.
17799         (cookie-insert): Default to cookie-file.
17800         (cookie-snarf): Make start and end messages optional.
17801         Default to cookie-file.  Use with-temp-buffer.
17802         (cookie-read): Rename from read-cookie.
17803         Make start and end messages optional.  Default to cookie-file.
17804         (cookie-shuffle-vector): Rename from shuffle-vector.  Use dotimes.
17805         Do not autoload it.
17806         (cookie-apropos, cookie-doctor): New functions, copied from yow.el
17807         * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
17809 2013-06-21  Leo Liu  <sdl.web@gmail.com>
17811         * progmodes/octave.el (octave-mode): Backward compatibility fix.
17813 2013-06-21  Glenn Morris  <rgm@gnu.org>
17815         * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
17817 2013-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
17818             Daniel Hackney  <dan@haxney.org>
17820         * emacs-lisp/package.el: Use tar-mode rather than tar executable.
17821         Consolidate the single-file vs tarball code.
17822         (package-desc-suffix): New function.
17823         (package-desc-full-name): Don't bother inlining it.
17824         (package-load-descriptor): Return the new package-desc.
17825         (package-mark-obsolete): Remove unused arg `package'.
17826         (package-unpack): Make it work for single files as well.
17827         Make it update package-alist.
17828         (package--make-autoloads-and-stuff): Rename from
17829         package--make-autoloads-and-compile.  Don't compile any more.
17830         (package--compile): New function.
17831         (package-generate-description-file): New function, extracted from
17832         package-unpack-single.
17833         (package-unpack-single): Remove.
17834         (package--with-work-buffer): Add indentation and debugging info.
17835         (package-download-single): Remove.
17836         (package-install-from-archive): Rename from package-download-tar, make
17837         it take a pkg-desc, and make it work for single files as well.
17838         (package-download-transaction): Simplify.
17839         (package-tar-file-info): Remove `file' arg.  Rewrite not to use an
17840         external tar program.
17841         (package-install-from-buffer): Remove `pkg-desc' argument.
17842         Use package-tar-file-info for tar-mode buffers.
17843         (package-install-file): Simplify accordingly.
17844         (package-archive-base): Change to take a pkg-desc.
17845         * tar-mode.el (tar--check-descriptor): New function, extracted from
17846         tar-get-descriptor.
17847         (tar-get-descriptor): Use it.
17848         (tar-get-file-descriptor): New function.
17849         (tar--extract): New function, extracted from tar-extract.
17850         (tar--extract): Use it.
17851         * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
17852         case the summary uses non-ascii.  Adjust to new calling convention of
17853         package-tar-file-info.
17855 2013-06-21  Leo Liu  <sdl.web@gmail.com>
17857         * comint.el (comint-redirect-results-list-from-process):
17858         Fix random delay.  (Bug#14681)
17860 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
17862         * profiler.el (profiler-format-number): Use log, not log10.
17864 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
17866         * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
17868 2013-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17870         * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
17871         * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
17872         yet available.
17873         * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
17874         (AUTOGENEL): ... here.
17875         * emacs-lisp/cl-macs.el (cl--sublis): New function.
17876         (cl--defsubst-expand): Use it.
17878 2013-06-20  Paul Eggert  <eggert@cs.ucla.edu>
17880         * subr.el (log10): Move here from C code, and declare as obsolete.
17881         All uses of (log10 X) replaced with (log X 10).
17883 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
17885         * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
17886         Declare with `defvar-local'.
17887         (tabulated-list-use-header-line, tabulated-list-entries)
17888         (tabulated-list-padding, tabulated-list-printer)
17889         (tabulated-list-sort-key): Declare with `defvar-local'.
17890         (tabulated-list-init-header, tabulated-list-print-fake-header):
17891         Use `setq-local'.
17893 2013-06-20  Michael Albinus  <michael.albinus@gmx.de>
17895         * arc-mode.el (archive-mode): Add `archive-write-file' to
17896         `write-contents-functions' also for remote files.  (Bug#14652)
17898 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
17900         * cus-edit.el (custom-commands): Fix typos.
17901         (custom-display): Fix tooltip text.
17902         (custom-magic-alist, custom-filter-face-spec, custom-group-members):
17903         Fix typos in docstrings.
17904         (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
17905         (custom-unlispify-menu-entry, custom-magic-value-create)
17906         (custom-add-see-also, custom-group-value-create): Use ?\s.
17907         (custom-guess-type, customize-apropos, editable-field)
17908         (custom-face-value-create): Use `string-match-p'.
17909         (custom-save-variables, custom-save-faces): Use `looking-at-p'.
17911         * custom.el (custom-load-symbol): Use `string-match-p'.
17913         * ansi-color.el: Convert to lexical binding.
17914         (ansi-colors): Fix URL.
17915         (ansi-color-context, ansi-color-context-region): Use defvar-local.
17916         (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
17917         (ansi-color-make-color-map): Rename local var ansi-color-map to map.
17919 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17921         * net/eww.el (eww-process-text-input): Display passwords as asterisks.
17923         * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
17925 2013-06-19  Tom Tromey  <tromey@redhat.com>
17927         * net/eww.el (eww-top-url): Remove.
17928         (eww-home-url, eww-start-url, eww-contents-url): New defvars.
17929         (eww-render): Set new variables.  Don't set eww-top-url.
17930         (eww-handle-link): Handle "prev", "home", and "contents".
17931         Downcase the rel text.
17932         (eww-top-url): Choose best top URL.
17934 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17936         * net/eww.el: Rewrite to implement form elements "by hand" instead of
17937         relying in widget.el.  Using widget.el leads to too many
17938         user interface inconsistencies.
17939         (eww-self-insert): Implement entering commands in text fields.
17940         (eww-process-text-input): New function to make text input field editing
17941         work.
17942         (eww-submit): Rewrite to use the new-style form methods.
17943         (eww-select-display): Display the correct selected item.
17944         (eww-change-select): Implement changing the select value.
17945         (eww-toggle-checkbox): Implement radio/checkboxes.
17946         (eww-update-field): Fix compilation error.
17947         (eww-tag-textarea): Implement <textarea>.
17949         * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
17950         we don't shadow mode-specific bindings.
17952         * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
17953         nothing to push.
17955         * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
17957 2013-06-19  Glenn Morris  <rgm@gnu.org>
17959         * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
17961 2013-06-19  Michael Albinus  <michael.albinus@gmx.de>
17963         * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
17964         not needed.
17966         * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
17968 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
17970         * net/browse-url.el (browse-url-browser-function):
17971         `eww-browse-url' has the right calling signature, `eww' does not.
17973 2013-06-19  Glenn Morris  <rgm@gnu.org>
17975         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
17976         Only eval autoloaded macros.
17977         (byte-compile-autoload): Only give the macro warning for macros.
17979         * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
17980         (ps-underlined-faces): Declare.
17982         * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
17983         (speedbar-add-supported-extension): Declare.
17985         * international/titdic-cnv.el (tit-process-header, miscdic-convert):
17986         Don't include a date stamp in the header of the generated file;
17987         it leads to needless differences between output files.
17989 2013-06-19  Michael Albinus  <michael.albinus@gmx.de>
17991         * net/secrets.el (secrets-struct-secret-content-type):
17992         Replace check of introspection data by a test call of "CreateItem".
17993         Some servers do not offer introspection.
17995 2013-06-19  Stefan Monnier  <monnier@iro.umontreal.ca>
17997         * electric.el (electric-pair-mode): Improve interaction with
17998         electric-layout-mode.
17999         (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
18000         (electric-pair-syntax): Use text-mode-syntax-table in comments
18001         and strings.
18002         (electric-pair--insert): New function.
18003         (electric-pair-post-self-insert-function): Use it and
18004         electric--after-char-pos.
18006 2013-06-19  Leo Liu  <sdl.web@gmail.com>
18008         * progmodes/octave.el (octave-help): Fix regexp.
18010 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18012         * net/shr.el (shr-make-table-1): Implement <td rowspan>.
18013         (shr-table-horizontal-line): Allow nil as a value, and change the
18014         default.
18015         (shr-insert-table-ruler): Respect the nil value.
18017 2013-06-18  Tom Tromey  <tromey@barimba>
18019         * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
18020         New defvars.
18021         (eww-open-file): New defun.
18022         (eww-render): Initialize new variables.
18023         (eww-display-html): Handle "link" and "a".
18024         (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
18025         (eww-mode-map): Move "p" to "l".  Bind "p", "n", "t", and "u".
18026         (eww-back-url): Rename from eww-previous-url.
18027         (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
18028         New defuns.
18030 2013-06-18  Dmitry Gutov  <dgutov@yandex.ru>
18032         * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
18033         Distinguish ternary operator tokens from slash symbol and slash
18034         char literal.
18036 2013-06-18  Juanma Barranquero  <lekktu@gmail.com>
18038         Convert symbol prettification into minor mode and global minor mode.
18040         * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
18041         `prog-prettify-symbols', and make a local defvar instead of defcustom.
18042         (prettify-symbols--keywords): Rename from
18043         `prog-prettify-symbols-alist' and make a local defvar.
18044         (prettify-symbols--compose-symbol): Rename from
18045         `prog--prettify-font-lock-compose-symbol'.
18046         (prettify-symbols--make-keywords): Rename from
18047         `prog-prettify-font-lock-symbols-keywords' and simplify.
18048         (prog-prettify-install): Remove.
18049         (prettify-symbols-mode): New minor mode, based on
18050         `prog-prettify-install'.
18051         (turn-on-prettify-symbols-mode): New function.
18052         (global-prettify-symbols-mode): New globalized minor mode.
18054         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
18055         * progmodes/cfengine.el (cfengine3-mode):
18056         * progmodes/perl-mode.el (perl-mode): Don't call
18057         `prog-prettify-install'; set `prettify-symbols-alist' instead.
18059 2013-06-18  Juri Linkov  <juri@jurta.org>
18061         * files-x.el (modify-file-local-variable-message): New function.
18062         (modify-file-local-variable)
18063         (modify-file-local-variable-prop-line): Add arg INTERACTIVE
18064         and call `modify-file-local-variable-message' when it's non-nil.
18065         (add-file-local-variable, delete-file-local-variable)
18066         (add-file-local-variable-prop-line)
18067         (delete-file-local-variable-prop-line): Add arg INTERACTIVE
18068         and use it.  (Bug#9820)
18070 2013-06-18  Juri Linkov  <juri@jurta.org>
18072         * emulation/vi.el (vi-shell-op):
18073         * emulation/vip.el (vip-execute-com, ex-command):
18074         * emulation/viper-cmd.el (viper-exec-bang):
18075         * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
18076         the call of `shell-command-on-region'.  (Bug#14637)
18078         * simple.el (shell-command-on-region): Doc fix.
18080 2013-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
18082         * emacs-lisp/eieio-custom.el: Remove misleading Version: header
18083         (bug#14633).
18085 2013-06-18  Glenn Morris  <rgm@gnu.org>
18087         * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
18089         * newcomment.el (comment-search-forward, comment-search-backward):
18090         Doc fix.  (Bug#14376)
18092 2013-06-18  Juanma Barranquero  <lekktu@gmail.com>
18094         * face-remap.el (buffer-face-toggle): Fix typo in docstring.
18095         (buffer-face-mode-invoke): Doc fix.
18097 2013-06-18  Matthias Meulien  <orontee@gmail.com>
18099         * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
18100         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
18102 2013-06-18  Glenn Morris  <rgm@gnu.org>
18104         * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
18105         Replace obsolete function generic-make-keywords with its expansion.
18107         * progmodes/python.el (ffap-alist): Declare.
18109         * textmodes/reftex.el (bibtex-mode-map): Declare.
18111 2013-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
18113         * emacs-lisp/package.el: Update package-alist after install (bug#14632).
18114         (package-unpack, package-unpack-single): Return the pkg-dir.
18115         (package-download-transaction): Use it to update package-alist.
18117 2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18119         * net/browse-url.el (browse-url-browser-function): Add `eww' as a
18120         possible choice.
18122 2013-06-17  Juri Linkov  <juri@jurta.org>
18124         * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
18126 2013-06-17  Dmitry Gutov  <dgutov@yandex.ru>
18128         * emacs-lisp/package.el (package-load-descriptor):
18129         Remove `with-syntax-table' call, `read' doesn't need it.
18130         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
18132 2013-06-17  Juanma Barranquero  <lekktu@gmail.com>
18134         * startup.el (command-line): Expand package name returned by
18135         `package--description-file' (bug#14639).
18137 2013-06-17  Dmitry Gutov  <dgutov@yandex.ru>
18139         * emacs-lisp/package.el (package-load-descriptor): Do not call
18140         `emacs-lisp-mode', just use its syntax table.
18142 2013-06-17  Juanma Barranquero  <lekktu@gmail.com>
18144         * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
18145         `font-lock-extra-managed-props' if any prettifying keyword is added.
18146         (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
18147         (prog-mode): Use `setq-local'.
18149 2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
18151         * international/characters.el (standard-case-table): Set syntax of ?»
18152         and ?« to punctuation.
18154 2013-06-16  Juanma Barranquero  <lekktu@gmail.com>
18156         * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
18157         Save relevant match data before calling `syntax-ppss' (bug#14595).
18159 2013-06-15  Juri Linkov  <juri@jurta.org>
18161         * files-x.el (modify-file-local-variable-prop-line): Add local
18162         variables to the end of the existing comment on the first line.
18163         Use `file-auto-mode-skip' to skip interpreter magic line,
18164         and also skip XML declaration.
18166 2013-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
18168         * startup.el (package--builtin-versions): New var.
18169         (package-subdirectory-regexp): Remove.
18170         (package--description-file): Hard code its value instead.
18172         * emacs-lisp/package.el: Don't activate packages older than builtin.
18173         (package-obsolete-list): Rename from package-obsolete-alist, and make
18174         it into a simple list of package-desc.
18175         (package-strip-version): Remove.
18176         (package-built-in-p): Use package--builtin-versions.
18177         (package-mark-obsolete): Simplify.
18178         (package-process-define-package): Mark it obsolete if older than the
18179         builtin version.
18180         (package-handle-response): Use line-end-position.
18181         (package-read-archive-contents, package--download-one-archive):
18182         Simplify.
18183         (package--add-to-archive-contents): Skip if older than the builtin or
18184         installed version.
18185         (package-menu-describe-package): Fix last change.
18186         (package-list-unversioned): New var.
18187         (package-menu--generate): Use it.
18189         * emacs-lisp/autoload.el: Manage package--builtin-versions.
18190         (autoload--insert-text, autoload--insert-cookie-text): New functions.
18191         (autoload-builtin-package-versions): New variable.
18192         (autoload-generate-file-autoloads): Use them.
18193         Remove the list of autoloaded functions/macros from the
18194         (autoload...) comments.
18196         * Makefile.in (autoloads): Set autoload-builtin-package-versions.
18198 2013-06-15  Eli Zaretskii  <eliz@gnu.org>
18200         * simple.el (line-move-partial): Don't jump to the next screen
18201         line as soon as it becomes visible.  Instead, continue enlarging
18202         the vscroll until the portion of a tall screen line that's left on
18203         display is about the height of the frame's default font.
18204         (Bug#14567)
18206 2013-06-15  Glenn Morris  <rgm@gnu.org>
18208         * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
18209         compilation-error-regexp-alist void, or local while let-bound.
18211         * progmodes/make-mode.el (makefile-mode-syntax-table):
18212         Treat "=" as punctuation.  (Bug#14614)
18214 2013-06-15  Juanma Barranquero  <lekktu@gmail.com>
18216         * help-fns.el (describe-variable):
18217         Add extra line for permanent-local variables.
18219 2013-06-15  Simen Heggestøyl  <simenheg@ifi.uio.no>  (tiny change)
18221         * progmodes/scheme.el (scheme-font-lock-keywords-2):
18222         Add export, import, library.  (Bug#9164)
18223         (library): Set indent function.
18225 2013-06-14  Glenn Morris  <rgm@gnu.org>
18227         * term/xterm.el (xterm--query):
18228         Stop after first matching handler.  (Bug#14615)
18230 2013-06-14  Ivan Kanis  <ivan@kanis.fr>
18232         Add support for dired in saveplace.
18233         * dired.el (dired-initial-position-hook): New variable.
18234         (dired-initial-position): Call hook to place cursor position.
18235         * saveplace.el (save-place-to-alist): Add dired position.
18236         (save-place-dired-hook): New function.
18238 2013-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
18240         * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
18241         through a symbol rather than letrec.
18243         * emacs-lisp/package.el: Don't recompute dir.  Use pkg-descs more.
18244         (package-desc): Add `dir' field.
18245         (package-desc-full-name): New function.
18246         (package-load-descriptor): Combine the two arguments.  Don't use `load'.
18247         (package-maybe-load-descriptor): Remove.
18248         (package-load-all-descriptors): Just call package-load-descriptor.
18249         (package--disabled-p): New function.
18250         (package-desc-vers, package-desc-doc): Remove aliases.
18251         (package--dir): Remove function.
18252         (package-activate): Check if a package is disabled.
18253         (package-process-define-package): New function, extracted from
18254         define-package.
18255         (define-package): Turn into a place holder.
18256         (package-unpack-single, package-tar-file-info):
18257         Use package--description-file.
18258         (package-compute-transaction): Use package--disabled-p.
18259         (package-download-transaction): Don't call
18260         package-maybe-load-descriptor since they're all loaded anyway.
18261         (package-install): Change argument to be a pkg-desc.
18262         (package-delete): Use a single pkg-desc argument.
18263         (describe-package-1): Use package-desc-dir instead of package--dir.
18264         Use package-desc property instead of package-symbol.
18265         (package-install-button-action): Adjust accordingly.
18266         (package--push): Rewrite.
18267         (package-menu--print-info): Adjust accordingly.  Change the ID format
18268         to be a pkg-desc.
18269         (package-menu-describe-package, package-menu-get-status)
18270         (package-menu--find-upgrades, package-menu-mark-upgrades)
18271         (package-menu-execute, package-menu--name-predicate):
18272         Adjust accordingly.
18273         * startup.el (package--description-file): New function.
18274         (command-line): Use it.
18275         * emacs-lisp/package-x.el (package-upload-buffer-internal):
18276         Use package-desc-version.
18278         * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
18279         (byte-compile-preprocess): Use it.
18280         (byte-compile-file-form-defalias): Try a bit harder to use macros we
18281         can't quite recognize.
18282         (byte-compile-add-to-list): Remove.
18283         * emacs-lisp/cconv.el (cconv-warnings-only): New function.
18284         (cconv-closure-convert): Add assertion.
18286         * emacs-lisp/map-ynp.el: Use lexical-binding.
18287         (map-y-or-n-p): Remove unused vars `tail' and `object'.
18288         Factor out some repeated code.
18290 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
18292         * subr.el (with-eval-after-load): New macro.
18293         (eval-after-load): Allow form to be a function.
18294         take advantage of lexical-binding.
18295         (do-after-load-evaluation): Use dolist and adjust to new format.
18296         * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
18298 2013-06-13  Juri Linkov  <juri@jurta.org>
18300         * replace.el (perform-replace): Display "symbol " and other search
18301         modes from `isearch-message-prefix' in the *Help* buffer.
18303         * isearch.el (isearch-query-replace): Add " symbol" and other
18304         possible search modes from `isearch-message-prefix' to the prompt.
18305         (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
18306         when reading a regexp to collect.
18308 2013-06-13  Juri Linkov  <juri@jurta.org>
18310         * isearch.el (word-search-regexp): Match whitespace if the search
18311         string begins or ends in whitespace.  The LAX arg is applied to
18312         both ends of the search string.  Use `regexp-quote' and explicit
18313         \< and \> instead of \b.  Use \` and \' instead of ^ and $.
18314         (isearch-symbol-regexp): Sync with `word-search-regexp' where word
18315         boundaries are replaced with symbol boundaries, and characters
18316         between symbols match non-word non-symbol syntax.  (Bug#14602)
18318 2013-06-13  Juri Linkov  <juri@jurta.org>
18320         * isearch.el (isearch-del-char): Don't exceed the length of
18321         `isearch-string' by the prefix arg.  (Bug#14563)
18323 2013-06-13  Juri Linkov  <juri@jurta.org>
18325         * isearch.el (isearch-yank-word, isearch-yank-line)
18326         (isearch-char-by-name, isearch-quote-char)
18327         (isearch-printing-char, isearch-process-search-char):
18328         Add optional count prefix arg.  (Bug#14563)
18330         * international/isearch-x.el
18331         (isearch-process-search-multibyte-characters):
18332         Add optional count prefix arg.
18334 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
18336         * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
18337         (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
18338         lexical-binding.
18340 2013-06-13  Vitalie Spinu  <spinuvit@gmail.com>
18342         * subr.el (set-temporary-overlay-map): Add on-exit argument.
18344 2013-06-13  Glenn Morris  <rgm@gnu.org>
18346         * startup.el (tty-handle-args):
18347         Don't just discard "--" and anything after.  (Bug#14608)
18349         * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
18351 2013-06-13  Michael Albinus  <michael.albinus@gmx.de>
18353         Implement changes in Secret Service API.  Make it backward compatible.
18354         * net/secrets.el (secrets-struct-secret-content-type): New defonst.
18355         (secrets-create-item): Use it.  Prefix properties with interface.
18357 2013-06-13  Michael Hoffman  <9qobl2n02@sneakemail.com>  (tiny change)
18359         * term.el (term-suppress-hard-newline): New option.  (Bug#12017)
18360         (term-emulate-terminal): Respect term-suppress-hard-newline.
18362 2013-06-13  E Sabof  <esabof@gmail.com>  (tiny change)
18364         * image-dired.el (image-dired-dired-toggle-marked-thumbs):
18365         Only remove a `thumb-file' overlay.  (Bug#14548)
18367 2013-06-12  Grégoire Jadi  <daimrod@gmail.com>
18369         * mail/reporter.el (reporter-submit-bug-report):
18370         Handle missing package-name.  (Bug#14600)
18372 2013-06-12  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
18374         * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
18375         (reftex-citation-prompt, reftex-default-bibliography)
18376         (reftex-bib-or-thebib, reftex-get-bibfile-list)
18377         (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
18378         (reftex-bib-sort-author, reftex-bib-sort-year)
18379         (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
18380         (reftex-extract-bib-entries-from-thebibliography)
18381         (reftex-get-bibkey-default, reftex-get-bib-names)
18382         (reftex-parse-bibtex-entry, reftex-get-bib-field)
18383         (reftex-format-bib-entry, reftex-parse-bibitem)
18384         (reftex-format-bibitem, reftex-do-citation)
18385         (reftex-figure-out-cite-format, reftex-offer-bib-menu)
18386         (reftex-restrict-bib-matches, reftex-extract-bib-file)
18387         (reftex-insert-bib-matches, reftex-format-citation)
18388         (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
18389         (reftex-create-bibtex-file): Add docstrings, mostly by converting
18390         existing comments into docstrings.
18392 2013-06-12  Xue Fuqiao  <xfq.free@gmail.com>
18394         * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
18396 2013-06-12  Andreas Schwab  <schwab@suse.de>
18398         * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
18399         for auto-save files.
18401 2013-06-12  Glenn Morris  <rgm@gnu.org>
18403         * ido.el (ido-delete-ignored-files): Remove.
18404         (ido-wide-find-dirs-or-files, ido-make-file-list-1):
18405         Go back to calling ido-ignore-item-p directly.
18407 2013-06-12  Eyal Lotem  <eyal.lotem@gmail.com>  (tiny change)
18409         * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
18411         * ido.el (ido-delete-ignored-files): New function,
18412         split from ido-make-file-list-1.
18413         (ido-wide-find-dirs-or-files): Maybe ignore files.  (Bug#13003)
18414         (ido-make-file-list-1): Use ido-delete-ignored-files.
18416 2013-06-12  Leo Liu  <sdl.web@gmail.com>
18418         * progmodes/octave.el (inferior-octave-startup)
18419         (inferior-octave-completion-table)
18420         (inferior-octave-track-window-width-change)
18421         (octave-eldoc-function-signatures, octave-help)
18422         (octave-find-definition): Use single quoted strings.
18423         (inferior-octave-startup-args): Change default value.
18424         (inferior-octave-startup): Do not hard code "-i" and
18425         "--no-line-editing".
18426         (inferior-octave-resync-dirs): Add optional arg NOERROR.
18427         (inferior-octave-directory-tracker): Use it.
18428         (octave-goto-function-definition): Robustify.
18429         (octave-help): Support highlighting operators in 'See also'.
18430         (octave-find-definition): Find subfunctions only in Octave mode.
18432 2013-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
18434         * help-fns.el (help-fns--compiler-macro): If the handler function is
18435         named, then put a link to it.
18436         * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
18437         * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
18438         (cl-typep): Use it.
18439         (cl-eval-when): Simplify debug spec.
18440         (cl-define-compiler-macro): Use eval-and-compile.  Give a name to the
18441         compiler-macro function instead of setting `compiler-macro-file'.
18443 2013-06-12  Xue Fuqiao  <xfq.free@gmail.com>
18445         * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
18446         * vc/vc-hooks.el (vc-stay-local): Doc fix.
18448 2013-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
18449             Daniel Hackney  <dan@haxney.org>
18451         First part of Daniel Hackney's patch to package.el.
18452         * emacs-lisp/package.el: Use defstruct.
18453         (package-desc): New, main struct.
18454         (package--bi-desc, package--ac-desc): New structs, used to describe the
18455         format in external files.
18456         (package-desc-vers): Replace with package-desc-version accessor.
18457         (package-desc-doc): Replace with package-desc-summary accessor.
18458         (package-activate-1): Remove `package' arg since the pkg-vec now
18459         includes the name.
18460         (define-package): Use package-desc-from-define.
18461         (package-unpack-single): Change file-name arg to be a symbol.
18462         (package--add-to-archive-contents): Use package-desc-create and new
18463         accessor functions to package--ac-desc.
18464         (package-buffer-info, package-tar-file-info): Return a package-desc.
18465         (package-install-from-buffer): Remove `type' argument.  Change pkg-info
18466         arg to be a package-desc.
18467         (package-install-file): Adjust accordingly.  Use \' to match EOS.
18468         (package--from-builtin): New function.
18469         (describe-package-1, package-menu--generate): Use it.
18470         (package--make-autoloads-and-compile): Change name arg to be a symbol.
18471         (package-generate-autoloads): Idem and return the name of the file.
18472         * emacs-lisp/package-x.el (package-upload-buffer-internal):
18473         Change pkg-info arg to be a package-desc.
18474         Use package-make-ac-desc.
18475         (package-upload-file): Use \' to match EOS.
18476         * finder.el (finder-compile-keywords): Use package-make-builtin.
18478 2013-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
18480         * vc/vc.el (vc-deduce-fileset): Change error message.
18481         (vc-read-backend): New function.
18482         (vc-next-action): Use it.
18484         * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
18486         * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
18487         (prolog-font-lock-keywords): Use regexp-opt instead.
18488         Don't manually highlight strings.
18489         (prolog-mode-variables): Simplify comment-start-skip.
18490         (prolog-consult-compile): Use display-buffer.  Remove unused old-filter.
18492         * emacs-lisp/generic.el (generic--normalise-comments)
18493         (generic-set-comment-syntax, generic-set-comment-vars): New functions.
18494         (generic-mode-set-comments): Use them.
18495         (generic-bracket-support): Use setq-local.
18496         (generic-make-keywords-list): Declare obsolete.
18498 2013-06-11  Glenn Morris  <rgm@gnu.org>
18500         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
18501         Prettify after setting font-lock-defaults.  (Bug#14574)
18503 2013-06-11  Juanma Barranquero  <lekktu@gmail.com>
18505         * replace.el (query-replace, occur-read-regexp-defaults-function)
18506         (replace-search):
18507         * subr.el (declare-function, number-sequence, local-set-key)
18508         (substitute-key-definition, locate-user-emacs-file)
18509         (with-silent-modifications, split-string, eval-after-load):
18510         Fix typos, remove unneeded backslashes and reflow some docstrings.
18512 2013-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
18514         * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
18515         default for Elisp files.
18517 2013-06-11  Glenn Morris  <rgm@gnu.org>
18519         * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
18520         although define-derived-mode was doing this anyway.  (Bug#14583)
18522 2013-06-10  Juanma Barranquero  <lekktu@gmail.com>
18524         * allout.el (allout-encryption-plaintext-sanitization-regexps):
18525         Fix make-variable-buffer-local call to refer to the correct variable.
18527 2013-06-10  Aidan Gauland  <aidalgol@amuri.net>
18529         * eshell/em-term.el (eshell-visual-commands)
18530         (eshell-visual-subcommands, eshell-visual-options):
18531         Add summary line to docstrings.  Add cross-references.
18533 2013-06-10  Glenn Morris  <rgm@gnu.org>
18535         * epa.el (epa-read-file-name): New function.  (Bug#14510)
18536         (epa-decrypt-file): Make plain-file optional.  Use epa-read-file-name.
18538 2013-06-09  Aidan Gauland  <aidalgol@amuri.net>
18540         * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
18541         output redirection to be ignored with visual commands.
18543 2013-06-09  Aidan Gauland  <aidalgol@amuri.net>
18545         * eshell/em-term.el (eshell-visual-command-p): New function.
18546         (eshell-term-initialize): Move long lambda to separate function
18547         eshell-visual-command-p.
18548         * eshell/em-dirs.el (eshell-dirs-initialize):
18549         * eshell/em-script.el (eshell-script-initialize):
18550         Add missing #' to lambda.
18552 2013-06-08  Leo Liu  <sdl.web@gmail.com>
18554         * progmodes/octave.el (octave-add-log-current-defun): New function.
18555         (octave-mode): Set add-log-current-defun-function.
18556         (octave-goto-function-definition): Do not move point if not found.
18557         (octave-find-definition): Enhance to try subfunctions first.
18559 2013-06-08  Glenn Morris  <rgm@gnu.org>
18561         * emacs-lisp/bytecomp.el (byte-compile-char-before)
18562         (byte-compile-backward-char, byte-compile-backward-word):
18563         Improve previous change, to handle non-explicit nil.
18565 2013-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
18567         * emacs-lisp/smie.el: Improve show-paren-mode behavior.
18568         (smie--opener/closer-at-point): New function.
18569         (smie--matching-block-data): Use it.  Don't match from right after an
18570         opener or right before a closer.  Obey smie-blink-matching-inners.
18571         Don't signal a mismatch for repeated inners like "switch..case..case".
18573 2013-06-07  Leo Liu  <sdl.web@gmail.com>
18575         * progmodes/octave.el (octave-mode): Set comment-use-global-state
18576         to t.  (Bug#14303)
18577         (octave-function-header-regexp): Fix.  (Bug#14570)
18578         (octave-help-mode-finish-hook, octave-help-mode-finish):
18579         Remove.  Just use temp-buffer-show-hook.
18581         * newcomment.el (comment-search-backward): Revert last change.
18582         (Bug#14434)
18584         * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
18586 2013-06-07  Eli Zaretskii  <eliz@gnu.org>
18588         * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
18589         through xargs, to avoid failure due to MS-Windows limitations on
18590         command-line length.
18592 2013-06-06  Glenn Morris  <rgm@gnu.org>
18594         * font-lock.el (lisp-font-lock-keywords-2):
18595         Treat user-error like error.
18597         * emacs-lisp/bytecomp.el (byte-compile-char-before)
18598         (byte-compile-backward-char, byte-compile-backward-word):
18599         Handle explicit nil arguments.  (Bug#14565)
18601 2013-06-05  Alan Mackenzie  <acm@muc.de>
18603         * isearch.el (isearch-allow-prefix): New user option.
18604         (isearch-other-meta-char): Don't exit isearch when a prefix
18605         argument is typed whilst `isearch-allow-prefix' is non-nil.
18606         (Bug#9706)
18608 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
18610         * autorevert.el (auto-revert-notify-handler): Use memq.
18611         Hide assertion failure.
18613         * skeleton.el: Use cl-lib.
18614         (skeleton-further-elements): Use defvar-local.
18615         (skeleton-insert): Use cl-progv.
18617 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
18619         * progmodes/prog-mode.el (prog-prettify-symbols)
18620         (prog-prettify-install): Update docstrings.
18622 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
18624         * simple.el: Move all the prog-mode code to prog-mode.el.
18625         * progmodes/prog-mode.el: New file.
18626         * loadup.el: Add prog-mode.el.
18628 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
18630         * simple.el (prog-prettify-symbols): Add version.
18631         (prog-prettify-install): Add convenience function to prettify symbols.
18633         * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
18634         (perl--augmented-font-lock-keywords-1)
18635         (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
18636         variables and use it.
18638         * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
18639         (cfengine3-mode): Remove unneeded variable and use it.
18641         * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
18642         (lisp--augmented-font-lock-keywords-1)
18643         (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
18644         Remove unneeded variables and use it.
18646 2013-06-05  João Távora  <joaotavora@gmail.com>
18648         * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
18649         to point when opening the connection.  (Bug#14380)
18651 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
18653         * subr.el (load-history-regexp, load-history-filename-element)
18654         (eval-after-load, after-load-functions, do-after-load-evaluation)
18655         (eval-next-after-load, display-delayed-warnings)
18656         (collapse-delayed-warnings, delayed-warnings-hook): Move after the
18657         definition of save-match-data.
18658         (overriding-local-map): Remove accidental obsolescence declaration.
18660         * emacs-lisp/edebug.el (edebug-result): Move before first use.
18662 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
18664         Generalize symbol prettify support to prog-mode and implement it
18665         for perl-mode, cfengine3-mode, and emacs-lisp-mode.
18666         * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
18667         (prog--prettify-font-lock-compose-symbol)
18668         (prog-prettify-font-lock-symbols-keywords): New variables and
18669         functions to support symbol prettification.
18670         * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
18671         (lisp--augmented-font-lock-keywords-1)
18672         (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
18673         (lisp--prettify-symbols-alist): Implement prettify of lambda.
18674         * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
18675         (cfengine3--prettify-symbols-alist, cfengine3-mode):
18676         Implement prettify of -> => :: strings.
18677         * progmodes/perl-mode.el (perl-prettify-symbols)
18678         (perl--font-lock-compose-symbol)
18679         (perl--font-lock-symbols-keywords): Move to prog-mode.
18680         (perl--prettify-symbols-alist): Prettify -> => :: strings.
18681         (perl-font-lock-keywords-1)
18682         (perl-font-lock-keywords-2): Remove explicit prettify support.
18683         (perl--augmented-font-lock-keywords)
18684         (perl--augmented-font-lock-keywords-1)
18685         (perl--augmented-font-lock-keywords-2, perl-mode):
18686         Implement prettify support.
18688 2013-06-05  Leo Liu  <sdl.web@gmail.com>
18690         Re-implement SMIE matching block highlight using
18691         show-paren-data-function.  (Bug#14395)
18692         * emacs-lisp/smie.el (smie-matching-block-highlight)
18693         (smie--highlight-matching-block-overlay)
18694         (smie--highlight-matching-block-lastpos)
18695         (smie-highlight-matching-block)
18696         (smie-highlight-matching-block-mode): Remove.
18697         (smie--matching-block-data-cache): New variable.
18698         (smie--matching-block-data): New function.
18699         (smie-setup): Use smie--matching-block-data for
18700         show-paren-data-function.
18702         * progmodes/octave.el (octave-mode-menu): Fix.
18703         (octave-find-definition): Skip garbage lines.
18705 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
18707         Fix compilation error with simultaneous dynamic+lexical scoping.
18708         Add warning when a defvar appears after the first let-binding.
18709         * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
18710         (byte-compile-close-variables): Initialize it.
18711         (byte-compile--declare-var): New function.
18712         (byte-compile-file-form-defvar)
18713         (byte-compile-file-form-define-abbrev-table)
18714         (byte-compile-file-form-custom-declare-variable): Use it.
18715         (byte-compile-make-lambda-lexenv): Change the argument.  Simplify.
18716         (byte-compile-lambda): Share call to byte-compile-arglist-vars.
18717         (byte-compile-bind): Handle dynamic bindings that shadow
18718         lexical bindings.
18719         (byte-compile-unbind): Make arg non-optional.
18720         (byte-compile-let): Simplify.
18721         * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
18722         (cconv--analyse-function, cconv-analyse-form): Populate it.
18723         Protect byte-compile-bound-variables to limit the scope of defvars.
18724         (cconv-analyse-form): Add missing rule for (defvar <foo>).
18725         Remove unneeded rule for `declare'.
18727         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
18728         so as to avoid depending on cl-adjoin at run-time.
18729         * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
18731         * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
18732         (macroexp--warn-and-return): Use it.
18734 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
18736         * subr.el: Convert to lexical binding.
18737         (overriding-local-map): Make obsolete.
18738         (add-to-list): Doc fix.  Add compiler macro.
18739         (read-key): Swap values of local maps.
18741 2013-06-05  Leo Liu  <sdl.web@gmail.com>
18743         * eshell/esh-mode.el (eshell-mode): Fix key bindings.
18745 2013-06-04  Leo Liu  <sdl.web@gmail.com>
18747         * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
18748         (compilation-auto-jump): Suppress the "Mark set" message to give
18749         way to exit message.
18751 2013-06-04  Alan Mackenzie  <acm@muc.de>
18753         Remove faulty optimization from indentation calculation.
18754         * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
18755         search limit based on 2000 characters back from indent-point.
18757 2013-06-03  Tassilo Horn  <tsdh@gnu.org>
18759         * eshell/em-term.el (cl-lib): Require `cl-lib'.
18761 2013-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
18763         * emacs-lisp/lisp.el: Use lexical-binding.
18764         (lisp--local-variables-1, lisp--local-variables): New functions.
18765         (lisp--local-variables-completion-table): New var.
18766         (lisp-completion-at-point): Use it complete let-bound vars.
18768         * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
18769         eagerly (bug#14422).
18771 2013-06-03  Michael Albinus  <michael.albinus@gmx.de>
18773         * autorevert.el (auto-revert-notify-enabled)
18774         (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
18775         (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
18776         (auto-revert-notify-handler): Handle also gfilenotify.
18778         * subr.el (file-notify-handle-event): New defun.  Replacing ...
18779         (inotify-event-p, inotify-handle-event, w32notify-handle-event):
18780         Remove.
18782 2013-06-03  Juri Linkov  <juri@jurta.org>
18784         * bindings.el (search-map): Bind `highlight-symbol-at-point' to
18785         `M-s h .'.  (Bug#14427)
18787         * hi-lock.el (highlight-symbol-at-point): New alias for the new
18788         command `hi-lock-face-symbol-at-point'.
18789         (hi-lock-face-symbol-at-point): New command.
18790         (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
18791         (hi-lock-menu): Add `highlight-symbol-at-point'.
18792         (hi-lock-mode): Doc fix.
18794         * isearch.el (isearch-forward-symbol-at-point): New command.
18795         (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
18796         (isearch-highlight-regexp): Add a regexp which matches
18797         words/symbols for word/symbol mode.
18799         * subr.el (find-tag-default-bounds): New function with the body
18800         mostly moved from `find-tag-default'.
18801         (find-tag-default): Move most code to `find-tag-default-bounds',
18802         call it and apply `buffer-substring-no-properties' afterwards.
18804 2013-06-03  Tassilo Horn  <tsdh@gnu.org>
18806         * eshell/em-term.el (eshell-term-initialize):
18807         Use `cl-intersection' rather than `intersection'.
18809 2013-06-02  Xue Fuqiao  <xfq.free@gmail.com>
18811         * vc/log-view.el: Doc fix.
18812         (log-view-mode-map): Copy keymap from `special-mode-map'.
18814 2013-06-02  Eric Ludlam  <zappo@gnu.org>
18816         * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
18817         (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
18818         (eieio-optimize-primary-methods-flag, eieio-initializing-object)
18819         (eieio-unbound, eieio-default-superclass)
18820         (eieio--define-field-accessors, method-static, method-before)
18821         (method-primary, method-after, method-num-lists)
18822         (method-generic-before, method-generic-primary)
18823         (method-generic-after, method-num-slots)
18824         (eieio-specialized-key-to-generic-key)
18825         (eieio--check-type, class-v, class-p)
18826         (eieio-class-name, define-obsolete-function-alias)
18827         (eieio-class-parents-fast, eieio-class-children-fast)
18828         (same-class-fast-p, class-constructor, generic-p)
18829         (generic-primary-only-p, generic-primary-only-one-p)
18830         (class-option-assoc, class-option, eieio-object-p)
18831         (class-abstract-p, class-method-invocation-order)
18832         (eieio-defclass-autoload-map, eieio-defclass-autoload)
18833         (eieio-class-un-autoload, eieio-defclass)
18834         (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
18835         (eieio-add-new-slot, eieio-copy-parents-into-subclass)
18836         (eieio--defgeneric-init-form, eieio-defgeneric-form)
18837         (eieio-defgeneric-reset-generic-form)
18838         (eieio-defgeneric-form-primary-only)
18839         (eieio-defgeneric-reset-generic-form-primary-only)
18840         (eieio-defgeneric-form-primary-only-one)
18841         (eieio-defgeneric-reset-generic-form-primary-only-one)
18842         (eieio-unbind-method-implementations)
18843         (eieio--defmethod, eieio--typep)
18844         (eieio-perform-slot-validation, eieio-validate-slot-value)
18845         (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
18846         (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
18847         (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
18848         (eieio-slot-name-index, eieio-class-slot-name-index)
18849         (eieio-set-defaults, eieio-initarg-to-attribute)
18850         (eieio-attribute-to-initarg, eieio-c3-candidate)
18851         (eieio-c3-merge-lists, eieio-class-precedence-c3)
18852         (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
18853         (eieio-class-precedence-list, eieio-generic-call-methodname)
18854         (eieio-generic-call-arglst, eieio-generic-call-key)
18855         (eieio-generic-call-next-method-list)
18856         (eieio-pre-method-execution-functions, eieio-generic-call)
18857         (eieio-generic-call-primary-only, eieiomt-method-list)
18858         (eieiomt-optimizing-obarray, eieiomt-install)
18859         (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
18860         (eieio-generic-form, eieio-defmethod, make-obsolete)
18861         (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
18862         (defclass): Remove `eval-and-compile' from macro.
18863         (call-next-method, shared-initialize): Instead of using
18864         `scoped-class' variable, use new eieio--scoped-class, and
18865         eieio--with-scoped-class.
18866         (initialize-instance): Rename local variable 'scoped-class' to
18867         'this-class' to remove ambiguitity from old global.
18869         * emacs-lisp/eieio-core.el: New file.  Derived from key parts of
18870         eieio.el.
18871         (eieio--scoped-class-stack): New variable.
18872         (eieio--scoped-class): New fcn.
18873         (eieio--with-scoped-class): New scoping macro.
18874         (eieio-defclass): Use pushnew instead of add-to-list.
18875         (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
18876         (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
18877         (eieio-generic-call-primary-only, eieiomt-add): Instead of using
18878         `scoped-class' variable, use new eieio--scoped-class, and
18879         eieio--with-scoped-class.
18881         * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
18883 2013-06-02  Tassilo Horn  <tsdh@gnu.org>
18885         * eshell/esh-ext.el (eshell-external-command): Pass args to
18886         `eshell-find-interpreter'.
18887         (eshell-find-interpreter): Add new second parameter ARGS.
18889         * eshell/em-script.el (eshell-script-initialize): Add second arg
18890         to the function added as MATCH to `eshell-interpreter-alist'.
18892         * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
18893         the function added as MATCH to `eshell-interpreter-alist'.
18895         * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
18896         (eshell-visual-options): New defcustom.
18897         (eshell-escape-control-x): Adapt docstring.
18898         (eshell-term-initialize): Test `eshell-visual-subcommands' and
18899         `eshell-visual-options' in addition to `eshell-visual-commands'.
18900         (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
18902 2013-06-01  Fabián Ezequiel Gallina  <fgallina@gnu.org>
18904         * progmodes/python.el (python-indent-block-enders): Add break,
18905         continue and raise keywords.
18907 2013-06-01  Glenn Morris  <rgm@gnu.org>
18909         * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
18911         Plain (f)boundp silences compilation warnings since Emacs 22.1.
18912         * progmodes/cc-cmds.el (delete-forward-p):
18913         * progmodes/cc-defs.el (buffer-syntactic-context-depth):
18914         * progmodes/cc-engine.el (buffer-syntactic-context):
18915         * progmodes/cc-fonts.el (face-property-instance):
18916         * progmodes/cc-mode.el (set-keymap-parents):
18917         * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
18918         * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
18919         * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
18920         * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
18921         (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
18923         * progmodes/cc-vars.el (other): Emacs has this widget since
18924         at least 21.1, so don't (re)define it.
18926         * eshell/em-cmpl.el (eshell-cmpl-initialize):
18927         Replace the obsolete alias pcomplete-arg-quote-list.
18929 2013-06-01  Leo Liu  <sdl.web@gmail.com>
18931         * progmodes/octave.el (octave-mode-syntax-table): Give `.'
18932         punctuation syntax.
18933         (inferior-octave-minimal-columns)
18934         (inferior-octave-last-column-width): New variables.
18935         (inferior-octave-track-window-width-change): New function.
18936         (inferior-octave-mode): Adjust column width so that Octave output,
18937         for example from 'ls', can fit into the window nicely.
18939 2013-05-31  Dmitry Gutov  <dgutov@yandex.ru>
18941         * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
18942         Highlight expansions inside regexp literals.
18944 2013-05-31  Glenn Morris  <rgm@gnu.org>
18946         * obsolete/sym-comp.el (symbol-complete):
18947         Replace obsolete completion-annotate-function.
18949         * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
18951 2013-05-31  Dmitry Gutov  <dgutov@yandex.ru>
18953         * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
18954         New function, checks if point is inside a literal that allows
18955         expression expansion.
18956         (ruby-syntax-propertize-expansion): Use it.
18957         (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
18958         around the body.
18960 2013-05-30  Juri Linkov  <juri@jurta.org>
18962         * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
18963         to "\M-si".
18964         (isearch-invisible): New variable.
18965         (isearch-forward): Doc fix.
18966         (isearch-mode): Set `isearch-invisible'
18967         to the value of `search-invisible'.
18968         (isearch-toggle-case-fold): Doc fix.
18969         (isearch-toggle-invisible): New command.
18970         (isearch-query-replace): Let-bind `search-invisible'
18971         to the value of `isearch-invisible'.
18972         (isearch-search): Use `isearch-invisible' instead of
18973         `search-invisible'.  Let-bind `search-invisible'
18974         to the value of `isearch-invisible'.  (Bug#11378)
18976 2013-05-30  Juri Linkov  <juri@jurta.org>
18978         * replace.el (perform-replace): Avoid `isearch-range-invisible'
18979         call when `query-flag' is nil and `search-invisible' is non-nil.
18980         (Bug#11746)
18982 2013-05-30  Glenn Morris  <rgm@gnu.org>
18984         * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
18986         * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
18987         (cc-require): Suppress spurious "noruntime" warnings.
18988         (cc-require-when-compile): Use fboundp, for sake of compiler.
18990         * progmodes/cc-mode.el: Move load of cc-vars before that of
18991         cc-langs (which in turn loads cc-vars), to quieten compiler.
18993 2013-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
18995         * paren.el: Simplify the code.
18996         (show-paren-mode): Always start the timer.
18997         (show-paren--idle-timer): Rename from show-paren-idle-timer.
18998         (show-paren--overlay, show-paren--overlay-1): Rename from
18999         show-paren-overlay and show-paren-overlay-1, and initialize to an
19000         overlay rather than to nil.
19001         (show-paren-function): Misc cleanup and simplifications.
19003 2013-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
19005         * paren.el (show-paren-data-function): New hook.
19006         (show-paren--default): New function, extracted from show-paren-function.
19007         (show-paren-function): Use show-paren-data-function.
19009 2013-05-30  Glenn Morris  <rgm@gnu.org>
19011         * ielm.el (ielm-map, ielm-complete-symbol):
19012         Use completion-at-point rather than obsolete functions.
19013         (inferior-emacs-lisp-mode): Doc fix.
19014         Set completion-at-point-functions, rather than
19015         comint-dynamic-complete-functions.
19017         * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
19018         (eshell-cmpl-initialize, eshell-complete-parse-arguments):
19019         Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
19021         * image.el (image-animated-p): Tweak definition.
19023         * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
19024         (rlogin-process-connection-type): Tweak default.  Add set-after.
19025         (rlogin-host): Doc fix.
19026         (rlogin): Tweak prompt.
19027         (rlogin-tab-or-complete): Use completion-at-point rather than alias.
19029         * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
19030         * progmodes/tcl.el (inferior-tcl-mode-map):
19031         Use completion-at-point rather than obsolete alias.
19033         * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
19035         * minibuffer.el (read-file-name-completion-ignore-case):
19036         Move before completion--in-region, for eager macro expansion.
19038 2013-05-29  Juri Linkov  <juri@jurta.org>
19040         * replace.el (occur-engine): Rename `globalcount' to `global-lines'
19041         for total count of matching lines.  Add `global-matches' for total
19042         count of matches.  Rename `matches' to `lines' for count of
19043         matching lines.  Add `matches' for count of matches.
19044         Rename `lines' to `curr-line' for line count.  Rename `prev-lines'
19045         to `prev-line' for line number of prev match endpt.
19046         Increment `matches' for every match.  Print the number of
19047         matching lines in the header.
19048         (occur-context-lines): Rename `lines' to `curr-line'.
19049         Rename `prev-lines' to `prev-line'.  (Bug#14017)
19051 2013-05-29  Juri Linkov  <juri@jurta.org>
19053         * replace.el (perform-replace): Add `skip-read-only-count',
19054         `skip-filtered-count', `skip-invisible-count' let-bound to 0.
19055         Increment them for corresponding conditions and report the number
19056         of skipped occurrences in the final message.  (Bug#11746)
19057         (query-replace, query-replace-regexp, query-replace-regexp-eval)
19058         (replace-string, replace-regexp): Doc fix.
19060 2013-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
19062         * emacs-lisp/trace.el (trace--read-args): Provide a default.
19064         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
19065         prog-mode-map (bug#14504).
19067 2013-05-29  Leo Liu  <sdl.web@gmail.com>
19069         * progmodes/octave.el (octave-indent-comment): Tweak regexps.
19070         (octave-help): Small simplification.
19072         * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
19073         off the highlight first.
19075 2013-05-29  Glenn Morris  <rgm@gnu.org>
19077         * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
19078         Handle idlwave-last-system-routine-info-cons-cell being nil.
19080         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
19081         (idlwave-write-paths): Simplify via with-temp-buffer.
19083         * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
19084         * emulation/cua-rect.el: Also load cua-base at run time.
19086         * progmodes/cperl-mode.el (imenu-choose-buffer-index)
19087         (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
19088         (cperl-imenu-on-info): Require imenu.
19090 2013-05-28  Alan Mackenzie  <acm@muc.de>
19092         Handle "capitalised keywords" correctly.
19093         * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
19095 2013-05-28  Aidan Gauland  <aidalgol@amuri.net>
19097         * eshell/em-unix.el: Add -r option to cp.
19099 2013-05-28  Glenn Morris  <rgm@gnu.org>
19101         * vc/vc-arch.el (vc-exec-after): Declare.
19102         (vc-switches): Autoload.
19103         * vc/vc-bzr.el: No need to require vc when compiling.
19104         (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
19105         (vc-resynch-buffer, vc-dir-refresh): Declare.
19106         (vc-setup-buffer, vc-switches): Autoload.
19107         * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
19108         (vc-resynch-buffer): Declare.
19109         (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
19110         * vc/vc-dir.el (desktop-missing-file-warning): Declare.
19111         * vc/vc-git.el (vc-exec-after, vc-set-async-update)
19112         (grep-read-regexp, grep-read-files, grep-expand-template)
19113         (vc-dir-refresh): Declare.
19114         (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
19115         * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
19116         (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
19117         * vc/vc-mtn.el (vc-exec-after): Declare.
19118         (vc-switches): Autoload.
19119         * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
19120         (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
19121         (vc-file-tree-walk): Declare.
19122         * vc/vc-sccs.el (vc-file-tree-walk): Declare.
19123         (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
19124         (vc-tag-precondition, vc-rename-master): Autoload.
19125         * vc/vc-svn.el (vc-exec-after): Declare.
19126         (vc-switches, vc-setup-buffer): Autoload.
19127         * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
19128         Autoload.
19129         (vc-resynch-buffer): Declare.
19131         * obsolete/fast-lock.el (byte-compile-warnings):
19132         Don't warn about obsolete features in this obsolete file.
19134         * progmodes/cc-vars.el (c-macro-names-with-semicolon):
19135         Move definition before use.
19137         * play/dunnet.el (byte-compile-warnings): Don't disable them all.
19138         (dun-unix-verbs): Remove dun-zippy.
19139         (dun-zippy): Remove function.
19141         * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
19143 2013-05-27  Juri Linkov  <juri@jurta.org>
19145         * replace.el (replace-search): New function with code moved out
19146         from `perform-replace'.
19147         (replace-highlight, replace-dehighlight): Move function definitions
19148         up closer to `replace-search'.  (Bug#11746)
19150 2013-05-27  Juri Linkov  <juri@jurta.org>
19152         * replace.el (perform-replace): Ignore invisible matches.
19153         In addition to checking `query-replace-skip-read-only', also
19154         filter out matches by calling `run-hook-with-args-until-failure'
19155         on `isearch-filter-predicates', and also check `search-invisible'
19156         for t or call `isearch-range-invisible'.
19157         (replace-dehighlight): Call `isearch-clean-overlays'.  (Bug#11746)
19159 2013-05-27  Juri Linkov  <juri@jurta.org>
19161         * isearch.el (isearch-filter-predicates): Rename from
19162         `isearch-filter-predicate'.  Doc fix.  (Bug#11378)
19163         (isearch-message-prefix): Display text from the property
19164         `isearch-message-prefix' of the currently active filters.
19165         (isearch-search): Don't compare `isearch-filter-predicate' with
19166         `isearch-filter-visible'.  Call `run-hook-with-args-until-failure'
19167         on `isearch-filter-predicates'.  Also check `search-invisible' for t
19168         or call `isearch-range-invisible'.
19169         (isearch-filter-visible): Make obsolete.
19170         (isearch-lazy-highlight-search):
19171         Call `run-hook-with-args-until-failure' on
19172         `isearch-filter-predicates' and use `isearch-range-invisible'.
19174         * info.el (Info-search): Call `run-hook-with-args-until-failure' on
19175         `isearch-filter-predicates' instead of `funcall'ing
19176         `isearch-filter-predicate'.
19177         (Info-mode): Set `Info-isearch-filter' to
19178         `isearch-filter-predicates' instead of `isearch-filter-predicate'.
19180         * dired-aux.el (dired-isearch-filter-predicate-orig):
19181         Remove variable.
19182         (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
19183         (dired-isearch-filenames-end): Add and remove
19184         `dired-isearch-filter-filenames' in `isearch-filter-predicates'
19185         instead of changing the value of `isearch-filter-predicate'.
19186         Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
19187         (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
19188         Put property `isearch-message-prefix' to "filename " on
19189         `dired-isearch-filter-filenames'.
19191         * wdired.el (wdired-change-to-wdired-mode):
19192         Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
19193         locally instead of changing `isearch-filter-predicate'.
19194         (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
19196 2013-05-27  Dmitry Gutov  <dgutov@yandex.ru>
19198         * vc/vc-git.el (vc-git-working-revision): When in detached mode,
19199         return the commit hash (Bug#14459).  Also set the
19200         `vc-git-detached' property.
19201         (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
19202         (vc-git-mode-line-string): Use the same help-echo format whether
19203         in detached mode or not, because we know the actual revision now.
19204         When in detached mode, shorten the revision to 7 chars.
19206 2013-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
19208         * emacs-lisp/easy-mmode.el (define-minor-mode):
19209         * emacs-lisp/derived.el (define-derived-mode): Always defvar the
19210         mode hook and provide a docstring.
19212 2013-05-27  Alan Mackenzie  <acm@muc.de>
19214         Remove spurious syntax-table text properties inserted by C-y.
19215         * progmodes/cc-mode.el (c-after-change): Also clear hard
19216         syntax-table property with value nil.
19218 2013-05-27  Michael Albinus  <michael.albinus@gmx.de>
19220         * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
19221         when reading the events; the buffer layout shall not be changed.
19223 2013-05-27  Leo Liu  <sdl.web@gmail.com>
19225         * progmodes/octave.el (inferior-octave-directory-tracker-resync):
19226         New variable.
19227         (inferior-octave-directory-tracker): Automatically re-sync
19228         default-directory.
19229         (octave-help): Improve handling of 'See also'.
19231 2013-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
19233         * doc-view.el: Minor naming convention tweaks.
19234         (desktop-buffer-mode-handlers): Don't add to it repeatedly.
19236         * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
19237         even if there's no `display' property yet (bug#14435).
19239 2013-05-25  Eli Zaretskii  <eliz@gnu.org>
19241         * subr.el (unmsys--file-name): Rename from reveal-filename.
19243         * Makefile.in (custom-deps, finder-data, autoloads)
19244         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
19245         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
19246         ($(CAL_DIR)/hol-loaddefs.el): All users changed.
19248 2013-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
19250         * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
19251         error-completion on the first 2 args of condition-case (bug#14446).
19252         Don't burp at EOB.
19254 2013-05-25  Leo Liu  <sdl.web@gmail.com>
19256         * comint.el (comint-previous-matching-input): Do not flood the
19257         *Messages* buffer with trivial messages.
19259 2013-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
19261         * progmodes/flymake.el (flymake-nop): Don't return a string.
19262         (flymake-set-at): Fix typo.
19264         * simple.el (read--expression): New function, extracted from
19265         eval-expression.  Set completion-at-point-functions (bug#14465).
19266         (eval-expression, eval-minibuffer): Use it.
19268 2013-05-25  Xue Fuqiao  <xfq.free@gmail.com>
19270         * progmodes/flymake.el (flymake-save-buffer-in-file)
19271         (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
19272         (flymake-selected-frame, flymake-log, flymake-ins-after)
19273         (flymake-set-at, flymake-get-buildfile-from-cache)
19274         (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
19275         (flymake-find-possible-master-files, flymake-save-buffer-in-file):
19276         Refine the doc string.
19277         (flymake-get-file-name-mode-and-masks): Reformat.
19278         (flymake-get-real-file-name-function): Fix a minor bug.
19280 2013-05-24  Juri Linkov  <juri@jurta.org>
19282         * progmodes/grep.el (grep-mode-font-lock-keywords):
19283         Support =linenumber= format used by git-grep for lines with
19284         function names.  (Bug#13549)
19286 2013-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
19288         * progmodes/octave.el (octave-smie-rules): Return nil rather than
19289         0 after a semi-colon; it works better for smie-auto-fill.
19290         (octave--indent-new-comment-line): New function.
19291         (octave-indent-new-comment-line): Use it (indirectly).
19292         (octave-mode): Don't disable smie-auto-fill.  Use add-function to
19293         modify comment-line-break-function.
19295         * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
19296         (smie-setup): Use add-function to set it.
19298 2013-05-24  Sam Steingold  <sds@gnu.org>
19300         * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
19301         argument (before the `interactive' argument).
19303 2013-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
19305         * image-mode.el (image-mode-winprops): Add winprops to
19306         image-mode-winprops-alist before running
19307         image-mode-new-window-functions.
19308         * doc-view.el (doc-view-new-window-function): Don't delay
19309         doc-view-goto-page via timers (bug#14435).
19311 2013-05-24  Tassilo Horn  <tsdh@gnu.org>
19313         * doc-view.el: Integrate with desktop.el.  (Bug#14435)
19314         (doc-view-desktop-save-buffer): New function.
19315         (doc-view-restore-desktop-buffer): New function.
19316         (desktop-buffer-mode-handlers):
19317         Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
19318         handler.
19319         (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
19320         `desktop-save-buffer' function.
19322 2013-05-24  Michael Albinus  <michael.albinus@gmx.de>
19324         * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
19325         (tramp-gvfs-file-name-handler): Raise a user error when
19326         `tramp-gvfs-enabled' is nil.
19327         (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
19328         Do not raise a user error when loading package.  (Bug#14447)
19330         * net/xesam.el: Move to obsolete/.
19332 2013-05-24  Glenn Morris  <rgm@gnu.org>
19334         * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
19336         * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
19338         * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
19339         (Info-find-node, Man-getpage-in-background): Declare.
19341         * mail/unrmail.el (unrmail):
19342         Replace obsolete detect-coding-with-priority.
19344         * net/socks.el (socks-split-string): Use this rather than split-string.
19345         (socks-nslookup-host): Update for above change.
19346         (dynamic-choice, s5-dynamic-choice-match)
19347         (s5-dynamic-choice-match-inline, s5-widget-value-create):
19348         Comment out unused code.
19350         * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
19351         * progmodes/gud.el (gud-gdb-completion-function): Move before use.
19352         (gud-tooltip-echo-area): Make obsolete.
19353         (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
19355         * progmodes/js.el (js--optimize-arglist): Declare.
19357         * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
19359         * progmodes/which-func.el (ediff-window-A, ediff-window-B)
19360         (ediff-window-C): Declare.
19362         * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
19363         Tweak requires to silence compiler.
19365         * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
19366         (he-search-string, he-tried-table, he-expand-list)
19367         (he-init-string, he-string-member, he-substitute-string)
19368         (he-reset-string): Declare.
19370         * obsolete/options.el (list-options): Use custom-variable-p,
19371         rather than obsolete alias.
19373 2013-05-23  Sam Steingold  <sds@gnu.org>
19375         * simple.el (shell-command-on-region): Pass the `replace' argument
19376         down to `call-process-region' to comply with the doc as reported on
19377         <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
19379 2013-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
19381         * emacs-lisp/smie.el (smie-indent-forward-token)
19382         (smie-indent-backward-token): Handle string tokens (bug#14381).
19384 2013-05-23  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
19386         * ielm.el (ielm-menu): New menu.
19387         (inferior-emacs-lisp-mode): Set comment-start.
19389 2013-05-23  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
19391         * textmodes/reftex.el (reftex-ref-style-toggle):
19392         Fix deactivate action.
19394         * textmodes/reftex-vars.el (reftex-ref-style-alist):
19395         Add cleveref macros.
19397         * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
19398         Accept options for bibliography commands.
19399         * textmodes/reftex-vars.el (reftex-bibliography-commands):
19400         Add addbibresource.  Basic Biblatex support.
19402 2013-05-23  Michael Albinus  <michael.albinus@gmx.de>
19404         * net/tramp-gvfs.el (top):
19405         * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
19406         when loading package.  (Bug#14447)
19408 2013-05-23  Glenn Morris  <rgm@gnu.org>
19410         * progmodes/js.el: No need to load comint when compiling.
19411         (ring-insert, comint-send-string, comint-send-input)
19412         (comint-last-input-end, ido-chop): Declare.
19414         * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
19415         * vc/ediff-mult.el: Adjust requires.
19416         (ediff-directories-internal, ediff-directory-revisions-internal)
19417         (ediff-patch-file-internal): Declare.
19418         * vc/ediff-ptch.el: Adjust requires.
19419         (ediff-use-last-dir, ediff-buffers-internal): Declare.
19420         (ediff-find-file): Autoload.
19421         * vc/ediff-util.el: No need to load ediff when compiling.
19422         (ediff-regions-internal): Declare.
19423         * vc/ediff-wind.el: Adjust requires.
19424         (ediff-compute-toolbar-width): Define when compiling.
19425         (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
19426         * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
19427         (dired-get-filename, dired-get-marked-files)
19428         (ediff-last-dir-patch, ediff-patch-default-directory)
19429         (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
19430         (ediff-patch-buffer-internal): Declare.
19432         * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
19433         (ispell-process, ispell-buffer-local-words, lm-summary)
19434         (lm-section-start, lm-section-end): Declare.
19435         (checkdoc-ispell-init): Simplify.
19437         * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
19438         (he-string-member, he-reset-string, he-substitute-string): Declare.
19440         * eshell/em-ls.el: Adjust requires.
19441         (eshell-glob-regexp): Declare.
19442         * eshell/em-tramp.el: Adjust requires.
19443         (eshell-parse-command): Autoload.
19444         * eshell/em-xtra.el: Adjust requires.
19445         (eshell-parse-command): Autoload.
19446         * eshell/esh-ext.el: Adjust requires.
19447         (eshell-parse-command, eshell-close-handles): Autoload.
19448         * eshell/esh-io.el: Adjust requires.
19449         (eshell-output-filter): Autoload.
19450         * eshell/esh-util.el: No need to load tramp when compiling.
19451         (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
19452         Declare.
19453         (eshell-parse-ange-ls): Require ange-ftp and tramp.
19454         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
19455         * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
19456         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
19457         * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
19458         * eshell/esh-opt.el, eshell/esh-proc.el:
19459         * eshell/esh-var.el: Adjust requires.
19460         * eshell/eshell.el: Do not require esh-util twice.
19461         (eshell-add-input-to-history): Declare.
19462         (eshell-command): Check history module is active before using it.
19464         * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
19466 2013-05-22  Leo Liu  <sdl.web@gmail.com>
19468         * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
19470 2013-05-22  Michael Albinus  <michael.albinus@gmx.de>
19472         * autorevert.el (auto-revert-notify-add-watch)
19473         (auto-revert-notify-handler): Add `attrib' for the inotify case,
19474         it indicates changes in file modification time.
19476 2013-05-22  Glenn Morris  <rgm@gnu.org>
19478         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
19479         Always delete the autoloaded function from the noruntime and
19480         unresolved functions lists.
19482         * allout.el: No need to load epa, epg, overlay when compiling.
19483         (epg-context-set-passphrase-callback, epg-list-keys)
19484         (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
19485         (epg-key-user-id-list): Declare.
19487         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
19488         (viper-set-parsing-style-toggling-macro)
19489         (viper-set-emacs-state-searchstyle-macros):
19490         Use called-interactively-p on Emacs.
19491         (viper-looking-back): Make it an obsolete alias.  Update callers.
19492         * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
19493         Use looking-back rather than viper-looking-back.
19494         (viper-tmp-insert-at-eob, viper-enlarge-region)
19495         (viper-read-string-with-history, viper-register-to-point)
19496         (viper-append-to-register, viper-change-state-to-vi)
19497         (viper-backward-char-carefully, viper-forward-char-carefully)
19498         (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
19499         (viper-change-state-to-emacs): Declare.
19500         * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
19501         (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
19502         * emulation/viper-mous.el: Do not load viper-cmd.
19503         (viper-backward-char-carefully, viper-forward-char-carefully)
19504         (viper-forward-word, viper-adjust-window): Declare.
19506         * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
19508         * progmodes/idlw-help.el (idlwave-help-fontify):
19509         Use called-interactively-p.
19511         * term/w32console.el (w32-get-console-codepage)
19512         (w32-get-console-output-codepage): Declare.
19514         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
19515         Remove unnecessary declarations.
19516         (dframe-message): Doc fix.
19518         * info.el (dframe-select-attached-frame, dframe-current-frame):
19519         Declare.
19521         * speedbar.el (speedbar-message): Make it an obsolete alias.
19522         Update all callers.
19523         (speedbar-with-attached-buffer)
19524         (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
19525         (speedbar-with-writable): Use backquote.
19526         * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
19527         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
19528         Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
19529         rather than speedbar- aliases.
19530         * mail/rmail.el: Load dframe rather than speedbar when compiling.
19531         (speedbar-make-specialized-keymap, speedbar-insert-button)
19532         (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
19533         (speedbar-do-function-pointer): Declare.
19534         (rmail-speedbar-button, rmail-speedbar-find-file)
19535         (rmail-speedbar-move-message):
19536         Use dframe-with-attached-buffer rather than speedbar- alias.
19537         * progmodes/gud.el: Load dframe rather than speedbar when compiling.
19538         (dframe-message, speedbar-make-specialized-keymap)
19539         (speedbar-add-expansion-list, speedbar-mode-functions-list)
19540         (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
19541         (speedbar-insert-button, dframe-select-attached-frame)
19542         (dframe-maybee-jump-to-attached-frame)
19543         (speedbar-change-initial-expansion-list)
19544         (speedbar-previously-used-expansion-list-name): Declare.
19545         (gud-speedbar-item-info, gud-gdb-goto-stackframe):
19546         Use dframe-message, dframe-with-attached-buffer rather than
19547         speedbar- aliases.
19548         (gud-sentinel): Silence compiler.
19549         * progmodes/vhdl-mode.el (speedbar-refresh)
19550         (speedbar-do-function-pointer, speedbar-add-supported-extension)
19551         (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
19552         (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
19553         (speedbar-extension-list-to-regex, speedbar-directory-buttons)
19554         (speedbar-file-lists, speedbar-make-tag-line)
19555         (speedbar-line-directory, speedbar-goto-this-file)
19556         (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
19557         (speedbar-delete-subblock, speedbar-position-cursor-on-line)
19558         (speedbar-make-button, speedbar-reset-scanners)
19559         (speedbar-files-item-info, speedbar-line-text)
19560         (speedbar-find-file-in-frame, speedbar-set-timer)
19561         (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
19562         (speedbar-with-writable): Do not (re)define it.
19563         (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
19564         rather than speedbar- alias.
19566 2013-05-21  Leo Liu  <sdl.web@gmail.com>
19568         * progmodes/octave.el (octave-mode-menu): Update and re-organize
19569         menu items.
19570         (octave-mode): Tweak fill-nobreak-predicate.
19571         (inferior-octave-startup): Check process to avoid infinite loop.
19572         (inferior-octave): Pop to buffer first to show abornmal process
19573         exit information.
19575 2013-05-21  Glenn Morris  <rgm@gnu.org>
19577         * printing.el (pr-menu-bar): Define when compiling.
19579 2013-05-21  Leo Liu  <sdl.web@gmail.com>
19581         * progmodes/octave.el (octave-auto-fill): Remove.
19582         (octave-indent-new-comment-line): Improve.
19583         (octave-mode): Use auto fill mode through
19584         comment-line-break-function and fill-nobreak-predicate.
19585         (octave-goto-function-definition): Support DEFUN_DLD.
19586         (octave-beginning-of-defun): Small tweak.
19587         (octave-help): Show parent directory.
19589 2013-05-21  Glenn Morris  <rgm@gnu.org>
19591         * files.el (dired-unmark):
19592         * progmodes/gud.el (gdb-input): Update declarations.
19594         * calculator.el (electric, ehelp): No need to load when compiling.
19595         (Electric-command-loop, electric-describe-mode): Declare.
19597         * doc-view.el (doc-view-current-converter-processes): Move before use.
19599         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
19600         Move MODE-set-explicitly definition before use.
19602         * international/mule-diag.el (mule-diag):
19603         Don't use obsolete window-system-version.
19605         * mail/feedmail.el (smtpmail): No need to load when compiling.
19606         (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
19608         * mail/mail-utils.el (rfc822): No need to load when compiling.
19609         (rfc822-addresses): Autoload it.
19610         (mail-strip-quoted-names): Trivial simplification.
19612         * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
19613         (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
19615         * net/snmp-mode.el (tempo): Don't duplicate requires.
19617         * progmodes/prolog.el (info): No need to load when compiling.
19618         (comint): Require before shell requires it.
19619         (Info-goto-node): Autoload it.
19620         (Info-follow-nearest-node): Declare.
19621         (prolog-help-info, prolog-goto-predicate-info): No need to require info.
19623         * textmodes/artist.el (picture-mode-exit): Declare.
19625         * textmodes/reftex-parse.el (reftex-parse-from-file):
19626         Trivial rewrite so the compiler can parse it better.
19628 2013-05-20  Leo Liu  <sdl.web@gmail.com>
19630         * progmodes/octave.el (octave-help-mode-map)
19631         (octave-help-mode-finish-hook): New variables.
19632         (octave-help-mode, octave-help-mode-finish): New functions.
19633         (octave-help): Use octave-help-mode.
19635 2013-05-20  Glenn Morris  <rgm@gnu.org>
19637         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
19639 2013-05-19  Dmitry Gutov  <dgutov@yandex.ru>
19641         * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
19642         start at point, so that expansion starting right after opening
19643         slash in a regexp is recognized.
19644         (ruby-syntax-before-regexp-re): New defvar, extracted from
19645         ruby-syntax-propertize-function.  Since the value of this regexp
19646         is looked up at runtime now, we should be able to turn
19647         `ruby-syntax-methods-before-regexp' into a defcustom later.
19648         (ruby-syntax-propertize-function): Split regexp matching into two
19649         parts, for opening and closing slashes.  That allows us to skip
19650         over string interpolations and support multiline regexps.
19651         Don't call `ruby-syntax-propertize-expansions', instead use another rule
19652         for them, which calls `ruby-syntax-propertize-expansion'.
19653         (ruby-syntax-propertize-expansions): Move `remove-text-properties'
19654         call to `ruby-syntax-propertize-function'.
19655         (ruby-syntax-propertize-expansion): Extracted from
19656         `ruby-syntax-propertize-expansions'.  Handles one expansion.
19657         (ruby-syntax-propertize-percent-literal): Leave point right after
19658         the percent symbol, so that the expression expansion rule can
19659         propertize the contents.
19660         (ruby-syntax-propertize-heredoc): Leave point at bol following the
19661         heredoc openers.
19662         (ruby-syntax-propertize-expansions): Remove.
19664 2013-05-18  Juri Linkov  <juri@jurta.org>
19666         * man.el (Man-default-man-entry): Remove `-' from the end
19667         of the default value.  (Bug#14400)
19669 2013-05-18  Glenn Morris  <rgm@gnu.org>
19671         * comint.el (comint-password-prompt-regexp):
19672         Allow "password for XXX" where XXX contains colons (eg https://...).
19674 2013-05-18  Leo Liu  <sdl.web@gmail.com>
19676         * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
19677         instead.  Include "--no-gui" to prevent hangs for Octave > 3.7.
19678         (octave-source-directories): Don't check process.
19679         (octave-source-directories, octave-find-definition): Doc fix.
19681 2013-05-18  Glenn Morris  <rgm@gnu.org>
19683         * progmodes/vhdl-mode.el (vhdl-mode-map-init):
19684         Remove backspace/delete bindings.  (Bug#14392)
19686         * cus-dep.el (custom-make-dependencies): Sort the output.
19687         (custom-versions-load-alist): Convert comment to doc.
19689 2013-05-17  Leo Liu  <sdl.web@gmail.com>
19691         * newcomment.el (comment-search-backward): Stricter in finding
19692         comment start.  (Bug#14303)
19694         * progmodes/octave.el (octave-comment-start): Remove the SPC char.
19695         (octave-comment-start-skip): Properly anchored.
19697 2013-05-17  Leo Liu  <sdl.web@gmail.com>
19699         * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
19700         Clean up when turned off.  (Bug#14395)
19701         (smie--highlight-matching-block-overlay): No longer buffer-local.
19702         (smie-highlight-matching-block): Adjust.
19704 2013-05-17  Paul Eggert  <eggert@cs.ucla.edu>
19706         Doc string fix for "nanoseconds" (Bug#14406).
19707         * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
19708         Fix doc string typo that had "nanoseconds" instead of "microseconds".
19710 2013-05-17  Jay Belanger  <jay.p.belanger@gmail.com>
19712         * calc/calc-units.el (math-extract-units): Preserve powers
19713         of units.
19715 2013-05-17  Leo Liu  <sdl.web@gmail.com>
19717         * subr.el (delete-consecutive-dups): New function.
19718         * ido.el (ido-set-matches-1): Use it.
19719         * progmodes/octave.el (inferior-octave-completion-table): Use it.
19720         * ido.el (ido-remove-consecutive-dups): Remove.
19722 2013-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
19724         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
19725         (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
19726         regexp-opt's `words'.
19728 2013-05-16  Leo Liu  <sdl.web@gmail.com>
19730         * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
19731         (smie--highlight-matching-block-overlay)
19732         (smie--highlight-matching-block-lastpos)
19733         (smie--highlight-matching-block-timer): New variables.
19734         (smie-highlight-matching-block): New function.
19735         (smie-highlight-matching-block-mode): New minor mode.  (Bug#14395)
19736         (smie-setup): Conditionally enable smie-blink-matching-open.
19738 2013-05-16  Wilson Snyder  <wsnyder@wsnyder.org>
19740         Sync with upstream verilog-mode r840.
19741         * progmodes/verilog-mode.el (verilog-mode-version)
19742         (verilog-mode-release-date): Update.
19743         (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
19744         (verilog-sig-tieoff): Fix string error on
19745         AUTORESET with colon define, bug594.  Reported by Andrew Hou.
19746         (verilog-read-decls): Fix parameters confusing
19747         AUTOINST interfaces, bug565.  Reported by Leith Johnson.
19749 2013-05-16  Eli Zaretskii  <eliz@gnu.org>
19751         * subr.el (reveal-filename): New function.
19753         * loadup.el: Compute Emacs executable versions on MS-Windows,
19754         where executables have the .exe extension.  Add a hard link
19755         emacs-XX.YY.ZZ.exe on MS-Windows.
19757         * Makefile.in (XARGS_LIMIT): New variable.
19758         (custom-deps, finder-data, autoloads)
19759         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
19760         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
19761         ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
19762         (compile-main): Limit xargs according to $(XARGS_LIMIT).
19764 2013-05-16  Leo Liu  <sdl.web@gmail.com>
19766         * progmodes/octave.el (octave-indent-defun): Mark obsolete.
19767         (octave-mode-menu, octave-mode-map): Remove its uses.
19769 2013-05-16  Reto Zimmermann  <reto@gnu.org>
19771         Sync with upstream vhdl mode v3.34.2.
19772         * progmodes/vhdl-mode.el: Use `push' throughout.
19773         (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
19774         (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
19775         Add IBM & Quartus compiler.  Enhance entry for ADVance MS compiler.
19776         (vhdl-actual-generic-name): New option to derive actual generic name.
19777         (vhdl-port-paste-signals): Replace formal by actual generics.
19778         (vhdl-beautify): New name for old group vhdl-align.  Update users.
19779         (vhdl-beautify-options): New option.
19780         (vhdl-last-input-event): New compat alias.  Use throughout.
19781         (vhdl-goto-line): Replace user level function `goto-line'.
19782         (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
19783         vhdl-fix-statement-buffer.
19784         (vhdl-create-mode-menu): Add some entries.
19785         (vhdl-align-region-groups): Respect vhdl-beautify-options.
19786         (vhdl-align-inline-comment-region-1): Handle "--" inside string.
19787         (vhdl-fixup-whitespace-region): Handle symbols at EOL.
19788         (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
19789         to force statements on one line.
19790         (vhdl-remove-trailing-spaces-region):
19791         New, split from vhdl-remove-trailing-spaces.
19792         (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
19793         Respect vhdl-beautify-options.
19794         (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
19795         (vhdl-update-sensitivity-list): Not add with index if exists without.
19796         Not include array index with signal.  Ignore keywords in comments.
19797         (vhdl-get-visible-signals): Regexp tweaks.
19798         (vhdl-template-component-inst): Handle empty library.
19799         (vhdl-template-type): Add template for 'enum' type.
19800         (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
19801         Use vhdl-replace-string.
19802         (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
19803         (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
19804         (vhdl-speedbar-initialize): Update for above name change.
19805         (vhdl-compose-wire-components): Fix in handling of constants.
19806         (vhdl-error-regexp-emacs-alist): New variable.
19807         (vhdl-error-regexp-add-emacs): New function;
19808         adds support for new compile.el (Emacs 22+)
19809         (vhdl-generate-makefile-1): Change target order for single lib. units.
19810         Allow use of absolute file names.
19812 2013-05-16  Leo Liu  <sdl.web@gmail.com>
19814         * simple.el (prog-indent-sexp): Indent enclosing defun.
19816 2013-05-15  Glenn Morris  <rgm@gnu.org>
19818         * cus-start.el (show-trailing-whitespace): Move to editing basics.
19819         * faces.el (trailing-whitespace): Don't use whitespace-faces group.
19820         * obsolete/old-whitespace.el (whitespace-faces): Remove group.
19821         (whitespace-highlight): Move to whitespace group.
19823         * comint.el (comint-source):
19824         * pcmpl-linux.el (pcmpl-linux):
19825         * shell.el (shell-faces):
19826         * eshell/esh-opt.el (eshell-opt):
19827         * international/ccl.el (ccl): Remove empty custom groups.
19829         * completion.el (dynamic-completion-mode):
19830         * jit-lock.el (jit-lock-debug-mode):
19831         * minibuffer.el (completion-in-region-mode):
19832         * type-break.el (type-break-mode-line-message-mode)
19833         (type-break-query-mode):
19834         * emulation/tpu-edt.el (tpu-edt-mode):
19835         * progmodes/subword.el (global-subword-mode, global-superword-mode):
19836         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
19837         * term/vt100.el (vt100-wide-mode): Specify explicit :group.
19839         * term/xterm.el (xterm): Change parent group to terminals.
19841         * master.el (master): Remove empty custom group.
19842         (master-mode): Remove unused :group argument.
19843         * textmodes/refill.el (refill): Remove empty custom group.
19844         (refill-mode): Remove unused :group argument.
19846         * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
19848         * cus-dep.el: Provide a feature.
19849         (custom-make-dependencies): Ignore dotfiles (dir-locals).
19850         Don't mistakenly ignore files whose basenames match a basename
19851         from preloaded-file-list (eg cedet/ede/simple.el).
19852         Add a fallback method for getting :group.
19854 2013-05-15  Juri Linkov  <juri@jurta.org>
19856         * isearch.el (isearch-char-by-name): Rename from
19857         `isearch-insert-char-by-name'.  Doc fix.
19858         (isearch-forward): Mention `isearch-char-by-name' in
19859         the docstring.  (Bug#13348)
19861         * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
19862         `exit-minibuffer' instead of
19863         `isearch-nonincremental-exit-minibuffer'.
19864         (isearch-edit-string): Remove mention of
19865         `isearch-nonincremental-exit-minibuffer' from docstring.
19866         (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
19867         (isearch-forward-exit-minibuffer)
19868         (isearch-reverse-exit-minibuffer): Add docstring.  (Bug#13348)
19870 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
19872         * loadup.el: Just use unversioned DOC.
19874         * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
19875         literals as extending to EOB.
19876         (nxml-last-fontify-end): Remove unused variable.
19877         (nxml-after-change1): Use with-silent-modifications.
19878         (nxml-extend-after-change-region): Simplify.
19879         (nxml-extend-after-change-region1): Remove function.
19880         (nxml-after-change1): Don't adjust for dependent regions.
19881         (nxml-fontify-matcher): Simplify.
19882         * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
19883         (xmltok-add-dependent): Remove function.
19884         (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
19885         (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
19886         (xmltok-scan-prolog-after-processing-instruction-open): Treat
19887         unclosed <[[, <?, comment, and other literals as extending to EOB.
19888         * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
19889         (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
19890         Remove functions.
19891         (rng-do-some-validation-1): Don't mark dependent regions.
19892         * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
19893         (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
19894         (nxml-clear-dependent-regions): Remove functions.
19895         (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
19896         (nxml-ensure-scan-up-to-date):
19897         Don't clear&mark dependent regions.
19899 2013-05-15  Leo Liu  <sdl.web@gmail.com>
19901         * progmodes/octave.el (octave-goto-function-definition):
19902         Improve and fix callers.
19904 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
19906         * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
19907         the setter (bug#14387).
19909         * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
19910         surrounding group (bug#14402).
19912 2013-05-14  Juri Linkov  <juri@jurta.org>
19914         * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
19915         (Bug#14390)
19917 2013-05-14  Glenn Morris  <rgm@gnu.org>
19919         * progmodes/f90.el (f90-imenu-generic-expression):
19920         Fix typo in 2013-05-08 change.  (Bug#14402)
19922 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
19924         * progmodes/gdb-mi.el (gdb-running, gdb-starting):
19925         Remove signals for which replies are never received.
19927 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
19929         * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
19930         (gdb-handler-alist, gdb-handler-number): Remove variables.
19931         (gdb-handler-list): New variable.
19932         (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
19933         (gdb-pending-handler-p, gdb-handle-reply)
19934         (gdb-remove-all-pending-triggers): New functions.
19935         (gdb-discard-unordered-replies): New defcustom.
19936         (gdb-handler): New defstruct.
19937         (gdb-wait-for-pending): Fix invalid backquote.  Use gdb-handler-list.
19938         instead of gdb-pending-triggers.  Update docstring.
19939         (gdb-init-1): Remove dead variables.  Initialize gdb-handler-list.
19940         (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
19941         (gdb-var-update-handler, def-gdb-auto-update-trigger)
19942         (def-gdb-auto-update-handler, gdb-get-changed-registers)
19943         (gdb-changed-registers-handler, gdb-get-main-selected-frame)
19944         (gdb-frame-handler): Pending triggers are now automatically managed.
19945         (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
19946         Remove argument.
19947         (gdb-input): Automatically handles pending triggers.  Update docstring.
19948         (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
19949         (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
19950         Update comments.
19951         (gdb-done-or-error): Now use gdb-handle-reply.
19953 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
19955         * progmodes/gdb-mi.el (gdb-input): Include token numbers in
19956         gdb-debug-log.
19958 2013-05-14  Glenn Morris  <rgm@gnu.org>
19960         * subr.el (user-emacs-directory-warning): New option.
19961         (locate-user-emacs-file): Handle non-accessible .emacs.d.  (Bug#13930)
19963 2013-05-14  Leo Liu  <sdl.web@gmail.com>
19965         * progmodes/octave.el (octave-font-lock-keywords): Fix error
19966         during redisplay.
19967         (octave-goto-function-definition, octave-find-definition): Minor tweaks.
19968         (octave-font-lock-texinfo-comment): Fix invalid search bound
19969         error: wrong side of point.
19971 2013-05-14  Glenn Morris  <rgm@gnu.org>
19973         * progmodes/flymake.el (flymake-xml-program): New option.
19974         (flymake-xml-init): Use it.
19976         * term/xterm.el: Provide a feature.
19978         * term/sup-mouse.el: Move to obsolete/.  Provide a feature.
19980 2013-05-13  Glenn Morris  <rgm@gnu.org>
19982         * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
19983         Add compat aliases as a hack workaround.  (Bug#14384)
19985 2013-05-13  Leo Liu  <sdl.web@gmail.com>
19987         * progmodes/octave.el (octave-indent-comment): Fix indentation for
19988         ###, and %!.
19989         (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
19990         C-M-q.
19991         (octave-comment-start-skip): Include %!.
19992         (octave-mode): Set comment-start-skip to octave-comment-start-skip.
19994 2013-05-12  Leo Liu  <sdl.web@gmail.com>
19996         * progmodes/octave.el (inferior-octave-startup): Store the value
19997         of __octave_srcdir__ for octave-source-directories.
19998         (inferior-octave-check-process): New function refactored out of
19999         inferior-octave-send-list-and-digest.
20000         (octave-source-directories)
20001         (octave-find-definition-filename-function): New variables.
20002         (octave-source-directories)
20003         (octave-find-definition-default-filename): New functions.
20004         (octave-find-definition): Improve to find functions implemented in C++.
20006 2013-05-12  Glenn Morris  <rgm@gnu.org>
20008         * calendar/diary-lib.el (diary-outlook-format-1):
20009         Don't include dayname in the output.  (Bug#14349)
20011 2013-05-11  Glenn Morris  <rgm@gnu.org>
20013         * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
20015         * cus-dep.el (custom-make-dependencies): Only use safe local variables.
20016         Treat cc-provide like provide.
20018 2013-05-11  Kevin Ryde  <user42@zip.com.au>
20020         * cus-dep.el (custom-make-dependencies):
20021         Use generated-autoload-load-name for the sake of files such
20022         such cedet/semantic/bovine/c.el, where the base file name
20023         is not in load-path.  (Bug#5277)
20025 2013-05-11  Glenn Morris  <rgm@gnu.org>
20027         * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
20028         Provide features.
20030 2013-05-11  Leo Liu  <sdl.web@gmail.com>
20032         * progmodes/octave.el (octave-indent-comment): Improve.
20033         (octave-eldoc-message-style, octave-eldoc-cache): New variables.
20034         (octave-eldoc-function-signatures, octave-eldoc-function):
20035         New functions.
20036         (octave-mode, inferior-octave-mode): Add eldoc support.
20038 2013-05-11  Richard Stallman  <rms@gnu.org>
20040         * epa.el (epa-decrypt-file): Take output file name as argument
20041         and read it using `interactive'.
20043 2013-05-11  Leo Liu  <sdl.web@gmail.com>
20045         * progmodes/octave.el (octave-beginning-of-line)
20046         (octave-end-of-line): Check before using up-list because it jumps
20047         out of more syntactic contructs since moving to smie.
20048         (octave-indent-comment): New function.
20049         (octave-mode): Use it in smie-indent-functions.  (Bug#14350)
20050         (octave-begin-keywords, octave-end-keywords)
20051         (octave-reserved-words, octave-smie-bnf-table)
20052         (octave-smie-rules): Add new keywords from Octave 3.6.4.
20054 2013-05-11  Glenn Morris  <rgm@gnu.org>
20056         * faces.el (internal-face-x-get-resource):
20057         * frame.el (ns-display-monitor-attributes-list):
20058         * calc/calc-aent.el (math-to-radians-2):
20059         * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
20060         Fix declarations.
20062         * calc/calc-menu.el: Make it loadable in isolation.
20064         * net/eudcb-bbdb.el: Make it loadable without bbdb.
20065         (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
20066         (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
20067         (eudc-bbdb-query-internal): Require 'bbdb.
20069         * lpr.el (lpr-headers-switches):
20070         * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
20072         * progmodes/sql.el (sql-login-params): Fix and improve :type.
20074         * emulation/edt-mapper.el: In batch mode, error rather than hang.
20076         * term.el (term-set-escape-char): Make it idempotent.
20078 2013-05-10  Leo Liu  <sdl.web@gmail.com>
20080         * progmodes/octave.el (inferior-octave-completion-table):
20081         No longer a function and all uses changed.  Use cache to speed up
20082         completion due to bug#11906.
20083         (octave-beginning-of-defun): Re-write to be more general.
20085 2013-05-10  Glenn Morris  <rgm@gnu.org>
20087         * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
20089 2013-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
20091         * comint.el (comint-redirect-send-command-to-process): Use :around
20092         rather than :override for comint-redirect-filter.
20093         (comint-redirect-filter): Add the corresponding `orig-filter' argument.
20094         Call it instead of comint-redirect-original-filter-function (which
20095         is gone).  Reported by Juanma Barranquero <lekktu@gmail.com>.
20097 2013-05-09  Jan Djärv  <jan.h.d@swipnet.se>
20099         * frame.el (display-monitor-attributes-list): Add NS case.
20100         (ns-display-monitor-attributes-list): Declare.
20102 2013-05-09  Ulrich Mueller  <ulm@gentoo.org>
20104         * descr-text.el (describe-char): Fix %d/%x typo.  (Bug#14360)
20106 2013-05-09  Glenn Morris  <rgm@gnu.org>
20108         * international/fontset.el (vertical-centering-font-regexp):
20109         Set standard-value.
20111         * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
20113         * bookmark.el (bookmark-search-delay):
20114         * cus-start.el (vertical-centering-font-regexp):
20115         * ps-mule.el (ps-mule-font-info-database-default):
20116         * ps-print.el (ps-default-fg, ps-default-bg):
20117         * type-break.el (type-break-good-break-interval):
20118         * whitespace.el (whitespace-indentation-regexp)
20119         (whitespace-space-after-tab-regexp):
20120         * emacs-lisp/testcover.el (testcover-1value-functions)
20121         (testcover-noreturn-functions, testcover-progn-functions)
20122         (testcover-prog1-functions):
20123         * emulation/viper-init.el (viper-emacs-state-cursor-color):
20124         * eshell/em-glob.el (eshell-glob-translate-alist):
20125         * play/tetris.el (tetris-tty-colors):
20126         * progmodes/cpp.el (cpp-face-default-list):
20127         * progmodes/flymake.el (flymake-allowed-file-name-masks):
20128         * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
20129         (idlwave-help-browser-generic-args):
20130         * progmodes/make-mode.el (makefile-special-targets-list):
20131         * progmodes/python.el (python-shell-virtualenv-path):
20132         * progmodes/verilog-mode.el (verilog-active-low-regexp)
20133         (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
20134         (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
20135         (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
20136         * textmodes/reftex-vars.el (reftex-format-label-function):
20137         * textmodes/remember.el (remember-diary-file): Fix custom types.
20139         * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
20140         Add :version.
20142 2013-05-09  Leo Liu  <sdl.web@gmail.com>
20144         * progmodes/octave.el (inferior-octave-completion-at-point):
20145         Restore file completion.  (Bug#14300)
20146         (inferior-octave-startup): Fix incorrect highlighting for the
20147         first prompt.
20149 2013-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
20151         * progmodes/ruby-mode.el: First cut at SMIE support.
20152         (ruby-use-smie): New var.
20153         (ruby-smie-grammar): New constant.
20154         (ruby-smie--bosp, ruby-smie--implicit-semi-p)
20155         (ruby-smie--forward-token, ruby-smie--backward-token)
20156         (ruby-smie-rules): New functions.
20157         (ruby-mode-variables): Setup SMIE if applicable.
20159 2013-05-08  Eli Zaretskii  <eliz@gnu.org>
20161         * simple.el (line-move-visual): Signal beginning/end of buffer
20162         only if vertical-motion moved less than it was requested.  Avoids
20163         silly incorrect error messages when there are display strings with
20164         multiple newlines at EOL.
20166 2013-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
20168         * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
20169         * progmodes/prolog.el (prolog-underscore-wordchar-flag)
20170         (prolog-char-quote-workaround):
20171         * progmodes/cperl-mode.el (cperl-under-as-char):
20172         * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
20173         Mark as obsolete.
20174         (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
20175         their declaration.
20176         (vhdl-mode-syntax-table-init): Remove.
20178         * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
20179         last change.
20181         * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
20182         syntax for "_".
20183         (ld-script-font-lock-keywords):
20184         Change regexps to use things like \_< and \_>.
20186         * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
20187         Change all regexps to use things like \_< and \_>.
20189         * progmodes/autoconf.el (autoconf-definition-regexp)
20190         (autoconf-font-lock-keywords, autoconf-current-defun-function):
20191         Handle a _ with symbol syntax.
20192         (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
20194         * progmodes/ada-mode.el (ada-mode-abbrev-table):
20195         Consolidate declaration.
20196         (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
20197         the declaration.
20198         (ada-create-syntax-table): Remove.
20199         (ada-capitalize-word): Don't mess with the syntax of "_" since it
20200         already has the right syntax nowadays.
20201         (ada-goto-next-word): Don't change the syntax of "_".
20203         * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
20204         with-wrapper-hook.
20206 2013-05-08  Sam Steingold  <sds@gnu.org>
20208         * thingatpt.el (thing-at-point): Accept optional second argument
20209         NO-PROPERTIES to strip the text properties from the return value.
20210         * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
20211         to `thing-at-point' instead of stripping the properties ourselves.
20212         Also, when `thing-at-point' fails to find a url, prepend "http://"
20213         to the filename at point on the assumption that the user is
20214         pointing at something like gnu.org/gnu.
20216 2013-05-08  Juanma Barranquero  <lekktu@gmail.com>
20218         * emacs-lisp/bytecomp.el (byte-compile-insert-header):
20219         * faces.el (crm-separator):
20220         Silence byte-compiler.
20222         * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
20223         (tool-bar-map): Remove unneeded defvars.
20225 2013-05-08  Leo Liu  <sdl.web@gmail.com>
20227         Re-work a fix for bug#10994 based on Le Wang's patch.
20228         * ido.el (ido-remove-consecutive-dups): New helper.
20229         (ido-completing-read): Use it.
20230         (ido-chop): Revert fix for bug#10994.
20232 2013-05-08  Adam Spiers  <emacs@adamspiers.org>
20234         * cus-edit.el (custom-save-variables):
20235         Pretty-print long values.  (Bug#14187)
20237 2013-05-08  Glenn Morris  <rgm@gnu.org>
20239         * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
20240         (m4-mode-syntax-table): Init in the defvar.
20241         (m4-mode-abbrev-table): Let define-derived-mode define it.
20243 2013-05-08  Tom Tromey  <tromey@redhat.com>
20245         * progmodes/m4-mode.el (m4-mode-syntax-table):
20246         Do not treat "_" as word constituent.  (Bug#14167)
20248 2013-05-07  Glenn Morris  <rgm@gnu.org>
20250         * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
20251         Remove explicit eshell-isearch-cancel-map.
20253         * progmodes/f90.el (f90-smart-end-names): New option.
20254         (f90-smart-end): Doc fix.
20255         (f90-end-block-optional-name): New constant.
20256         (f90-block-match): Respect f90-smart-end-names.
20258 2013-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
20260         * progmodes/octave.el (octave-smie-forward-token): Be more careful
20261         about implicit semi-colons (bug#14218).
20263 2013-05-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
20265         * frame.el (display-monitor-attributes-list)
20266         (frame-monitor-attributes): New functions.
20268 2013-05-06  Leo Liu  <sdl.web@gmail.com>
20270         * progmodes/octave.el (octave-syntax-propertize-function): Change
20271         \'s syntax to escape when inside double-quoted strings.  (Bug#14332)
20272         (octave-font-lock-keywords): Use octave-operator-regexp.
20273         (octave-completion-at-point): Rename from
20274         octave-completion-at-point-function.
20275         (inferior-octave-directory-tracker): Robustify.
20276         (octave-text-functions): Remove and fix its uses.  No such things
20277         any more.
20279 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
20281         * emacs-lisp/trace.el (trace--display-buffer): New function.
20282         (trace-make-advice): Use it.
20284 2013-05-06  Juri Linkov  <juri@jurta.org>
20286         * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix.  (Bug#14344)
20287         (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
20288         Doc fix.
20289         (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
20290         in the help string.  (Bug#12985)
20292 2013-05-06  Kelly Dean  <kellydeanch@yahoo.com>  (tiny change)
20294         * simple.el (shell-command-on-region): Doc fix.  (Bug#14279)
20296 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
20298         * progmodes/perl-mode.el: Add support for here documents.
20299         (perl-syntax-propertize-function): Match here-doc markers.
20300         (perl-syntax-propertize-special-constructs): Find their end.
20301         (perl-imenu-generic-expression): Use [:alnum:].
20303         * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
20304         (advice--add-function): Refresh the advice if already present
20305         (bug#14317).
20307 2013-05-06  Ivan Andrus  <darthandrus@gmail.com>
20309         * find-file.el (cc-other-file-alist): Add ".m" for ObjC.  (Bug#14339)
20311 2013-05-06  Glenn Morris  <rgm@gnu.org>
20313         * w32-fns.el (w32-charset-info-alist): Declare.
20315         * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
20316         of its defcustom properties.
20317         (eshell-cmpl-initialize): No need to load pcomplete.
20319         * generic-x.el: No need to require comint when compiling.
20321         * net/eudc-export.el: Make it loadable without bbdb.
20322         (top-level): Use require rather than load-library.
20323         (eudc-create-bbdb-record, eudc-bbdbify-phone)
20324         (eudc-batch-export-records-to-bbdb)
20325         (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
20326         Require bbdb.
20328 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
20330         * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
20331         (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
20332         some tweaks, instead.
20334 2013-05-05  Leo Liu  <sdl.web@gmail.com>
20336         * progmodes/octave.el (octave-font-lock-keywords)
20337         (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
20338         (inferior-octave-send-list-and-digest): Improve error message.
20339         (octave-mode, inferior-octave-mode): Use setq-local.
20340         (octave-help): Set info-lookup-mode.
20342 2013-05-05  Richard Stallman  <rms@gnu.org>
20344         * vc/compare-w.el (compare-windows-whitespace):
20345         Treat no-break space as whitespace.
20347         * mail/rmailsum.el (rmail-summary-rmail-update):
20348         Detect empty summary and don't change selected message.
20349         (rmail-summary-goto-msg): Likewise.
20351         * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
20352         Doc fixes, rename args.
20354 2013-05-05  Alan Mackenzie  <acm@muc.de>
20356         * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
20358 2013-05-05  Juri Linkov  <juri@jurta.org>
20360         * info.el (Info-read-subfile): Use (point-min) instead of (point)
20361         to not add the length of the summary segment to the return value.
20362         (Bug#14125)
20364 2013-05-05  Leo Liu  <sdl.web@gmail.com>
20366         * progmodes/octave.el (inferior-octave-strip-ctrl-g)
20367         (inferior-octave-output-filter): Remove.
20368         (octave-send-region, inferior-octave-startup): Fix callers.
20369         (inferior-octave-mode-map): Don't use comint-dynamic-complete.
20370         (octave-binary-file-extensions): New user variable.
20371         (octave-find-definition): Confirm if opening binary files.
20372         (octave-help-file): Use octave-find-definition to get the binary
20373         confirmation.
20374         (octave-help): Adjust for octave-help-file change.
20376 2013-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
20378         * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
20379         Merge the two entries that handle function definitions.
20380         (pascal--syntax-propertize): New const.
20381         (pascal-mode): Use it.  Use setq-local.
20383 2013-05-04  Glenn Morris  <rgm@gnu.org>
20385         * calendar/diary-lib.el (diary-from-outlook-function): New variable.
20386         (diary-from-outlook): Respect diary-from-outlook-function.
20388 2013-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
20390         * simple.el (read-expression-map): Use completion-at-point (bug#14255).
20391         Move the declaration from C.
20392         (read-minibuffer, eval-minibuffer): Move from C.
20393         (completion-setup-function): Avoid minibuffer-completion-contents.
20395 2013-05-03  Leo Liu  <sdl.web@gmail.com>
20397         * progmodes/octave.el (octave-font-lock-keywords): Do not
20398         dehighlight 'end' in comments or strings.
20399         (octave-completing-read, octave-goto-function-definition):
20400         New helpers.
20401         (octave-help-buffer): New user variable.
20402         (octave-help-file, octave-help-function): New button types.
20403         (octave-help): New command and bind it to C-h ;.
20404         (octave-find-definition): New command and bind it to M-.
20405         (user-error): Alias to error if not defined.
20407 2013-05-02  Leo Liu  <sdl.web@gmail.com>
20409         * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
20410         for \.  (bug#14332)
20411         (octave-font-lock-keywords): Include [ and {.
20413 2013-05-02  Leo Liu  <sdl.web@gmail.com>
20415         * progmodes/octave.el (inferior-octave-startup-file): Change default.
20416         (inferior-octave): Remove calling comint-mode and return the buffer.
20417         (inferior-octave-startup): Cosmetic changes.
20419 2013-05-02  Leo Liu  <sdl.web@gmail.com>
20421         * progmodes/octave.el (octave-syntax-propertize-function):
20422         Include the case when ' is at line beginning.  (Bug#14336)
20424 2013-05-02  Glenn Morris  <rgm@gnu.org>
20426         * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
20427         * desktop.el (vc-dir-mode): Just autoload it here.
20429 2013-05-02  Alan Mackenzie  <acm@muc.de>
20431         Eliminate variable c-standard-font-lock-fontify-region-function.
20432         * progmodes/cc-mode.el
20433         (c-standard-font-lock-fontify-region-function): Remove.
20434         (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
20436 2013-05-01  Leo Liu  <sdl.web@gmail.com>
20438         * progmodes/octave.el: Compatible with older emacs-24 releases.
20439         (inferior-octave-has-built-in-variables): Remove.  Built-in
20440         variables were removed from Octave in 2007.
20441         (inferior-octave-startup): Fix uses.
20442         (comint-line-beginning-position): Remove compatibility code for
20443         emacs 21.
20445 2013-05-01  Juri Linkov  <juri@jurta.org>
20447         * isearch.el (isearch-forward, isearch-mode): Doc fix.  (Bug#13923)
20449 2013-05-01  Juri Linkov  <juri@jurta.org>
20451         * comint.el (comint-previous-matching-input): Don't print message
20452         "History item: %d" when `isearch-mode' is active.
20453         (comint-history-isearch-message): Print message "History item: %d"
20454         when `comint-input-ring-index' is not empty and this function is
20455         called from `isearch-update' with a nil `ellipsis'.  (Bug#13223)
20457 2013-05-01  Leo Liu  <sdl.web@gmail.com>
20459         * progmodes/octave.el (octave-abbrev-table): Remove abbrev
20460         definitions.  Use completion-at-point to insert keywords.
20461         (octave-abbrev-start): Remove.
20462         (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
20464 2013-04-30  Leo Liu  <sdl.web@gmail.com>
20466         * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
20467         change.
20469 2013-04-30  Alan Mackenzie  <acm@muc.de>
20471         Handle arbitrarily long C++ member initialisation lists.
20472         * progmodes/cc-engine.el (c-back-over-member-initializers):
20473         new function.
20474         (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
20475         (most) member init lists.
20477 2013-04-30  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
20479         * progmodes/octave.el (inferior-octave-prompt-read-only): New user
20480         variable.
20482 2013-04-30  Leo Liu  <sdl.web@gmail.com>
20484         * progmodes/octave.el (octave-variables): Remove.  No builtin
20485         variables any more.  All converted to functions.
20486         (octave-font-lock-keywords, octave-completion-at-point-function):
20487         Fix uses.
20488         (octave-font-lock-texinfo-comment): New user variable.
20489         (octave-texinfo-font-lock-keywords): New variable for texinfo
20490         comment block.
20491         (octave-function-comment-block): New face.
20492         (octave-font-lock-texinfo-comment): New function.
20493         (octave-mode): Font lock texinfo comment block.
20495 2013-04-29  Leo Liu  <sdl.web@gmail.com>
20497         * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
20498         indexing expression.
20499         (octave-continuation-string): Do not use \.
20500         (inferior-octave-complete-impossible): Remove.
20501         (inferior-octave-completion-table)
20502         (inferior-octave-completion-at-point): Remove its uses.
20503         (inferior-octave-startup): completion_matches was introduced to
20504         Octave in 1996 so safe to assume it.
20505         (octave-function-file-comment): Improve to follow how Octave does it.
20506         (octave-update-function-file-comment): Tweak.
20508 2013-04-29  Leo Liu  <sdl.web@gmail.com>
20510         * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
20511         (inferior-octave-startup): Remove inferior-octave-startup-hook.
20512         (octave-function-file-comment): Fix typo.
20513         (octave-sync-function-file-names): Use read-char-choice.
20515 2013-04-28  Jay Belanger  <jay.p.belanger@gmail.com>
20517         * calc/calc.el (math-normalize): Don't set `math-normalize-error'
20518         to t for the less important warnings.
20520 2013-04-27  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
20522         * isearch.el (isearch-fail-pos): Check for empty `cmds'.  (Bug#14268)
20524 2013-04-27  Glenn Morris  <rgm@gnu.org>
20526         * vc/log-view.el (log-view-current-entry):
20527         Treat "---" separator lines as part of the following rev.  (Bug#14169)
20529 2013-04-27  Juri Linkov  <juri@jurta.org>
20531         * subr.el (read-number): Doc fix about using it by interactive
20532         code letter `n'.  (Bug#14254)
20534 2013-04-27  Juri Linkov  <juri@jurta.org>
20536         * desktop.el (desktop-auto-save-timeout): New option.
20537         (desktop-file-checksum): New variable.
20538         (desktop-save): Add optional arg `auto-save' and don't auto-save
20539         if nothing changed.
20540         (desktop-auto-save-timer): New variable.
20541         (desktop-auto-save, desktop-auto-save-set-timer): New functions.
20542         (after-init-hook): Call `desktop-auto-save-set-timer'.
20543         Suggested by Reuben Thomas <rrt@sc3d.org> in
20544         <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
20546 2013-04-27  Leo Liu  <sdl.web@gmail.com>
20548         * progmodes/octave.el (octave-function-file-p)
20549         (octave-skip-comment-forward, octave-function-file-comment)
20550         (octave-update-function-file-comment): New functions.
20551         (octave-mode-map): Bind C-c ; to
20552         octave-update-function-file-comment.
20553         (octave-mode-menu): Add octave-update-function-file-comment.
20554         (octave-mode, inferior-octave-mode): Fix doc-string.
20555         (octave-insert-defun): Conform to Octave's coding convention.
20556         (Bug#14285)
20558         * files.el (basic-save-buffer): Don't let errors in
20559         before-save-hook prevent saving buffer.
20561 2013-04-20  Roland Winkler  <winkler@gnu.org>
20563         * faces.el (read-face-name): Use completing-read if arg multiple
20564         is nil.
20566 2013-04-27  Ingo Lohmar  <i.lohmar@gmail.com>  (tiny change)
20568         * ls-lisp.el (ls-lisp-insert-directory): If no files are
20569         displayed, move point to after the totals line.
20570         See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
20571         for the details.
20573 2013-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
20575         * emacs-lisp/package.el (package-autoload-ensure-default-file):
20576         Add current dir to the load-path.
20577         (package-generate-autoloads): Don't rely on
20578         autoload-ensure-default-file.
20580 2013-04-26  Reuben Thomas  <rrt@sc3d.org>
20582         * textmodes/remember.el (remember-store-in-files): Document that
20583         the file name format is passed to `format-time-string'.
20585 2013-04-26  Leo Liu  <sdl.web@gmail.com>
20587         * progmodes/octave.el (octave-sync-function-file-names): New function.
20588         (octave-mode): Use it in before-save-hook.
20590 2013-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
20592         * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
20593         (bug#14274).
20595         * progmodes/octave.el (octave-smie-forward-token): Properly skip
20596         \n and comment, even if it's not an implicit ; (bug#14218).
20598 2013-04-26  Glenn Morris  <rgm@gnu.org>
20600         * subr.el (read-number): Once more use `read' rather than
20601         `string-to-number', to trap non-numeric input.  (Bug#14254)
20603 2013-04-26  Erik Charlebois  <erikcharlebois@gmail.com>
20605         * emacs-lisp/syntax.el (syntax-propertize-multiline):
20606         Use `syntax-multiline' text property consistently instead of
20607         `font-lock-multiline'.  (Bug#14237)
20609 2013-04-26  Glenn Morris  <rgm@gnu.org>
20611         * emacs-lisp/shadow.el (list-load-path-shadows):
20612         No longer necessary to check for duplicate simple.el, since
20613         2012-07-07 change to init_lread to not include installation lisp
20614         directories in load-path when running uninstalled.  (Bug#14270)
20616 2013-04-26  Leo Liu  <sdl.web@gmail.com>
20618         * progmodes/octave.el (octave-submit-bug-report): Obsolete.
20619         (octave-mode, inferior-octave-mode): Use setq-local.
20620         (octave-not-in-string-or-comment-p): Rename to
20621         octave-in-string-or-comment-p.
20622         (octave-in-comment-p, octave-in-string-p)
20623         (octave-in-string-or-comment-p): Replace defsubst with defun.
20625 2013-04-25  Paul Eggert  <eggert@cs.ucla.edu>
20627         * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
20629 2013-04-25  Bastien Guerry  <bzg@gnu.org>
20631         * textmodes/remember.el (remember-data-directory)
20632         (remember-directory-file-name-format): Fix custom types.
20634 2013-04-25  Leo Liu  <sdl.web@gmail.com>
20636         * progmodes/octave.el (octave-completion-at-point-function):
20637         Make use of inferior octave process.
20638         (octave-initialize-completions): Remove.
20639         (inferior-octave-completion-table): New function.
20640         (inferior-octave-completion-at-point): Use it.
20641         (octave-completion-alist): Remove.
20643 2013-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
20645         * progmodes/opascal.el: Use font-lock and syntax-propertize.
20646         (opascal-mode-syntax-table): New var.
20647         (opascal-literal-kind, opascal-is-literal-end)
20648         (opascal-literal-token-at): Rewrite.
20649         (opascal--literal-start-re, opascal-font-lock-keywords)
20650         (opascal--syntax-propertize): New constants.
20651         (opascal-font-lock-defaults): Adjust.
20652         (opascal-mode): Use them.  Set comment-<foo> variables as well.
20653         (delphi-comment-face, opascal-comment-face, delphi-string-face)
20654         (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
20655         (delphi-other-face, opascal-other-face): Remove face variables.
20656         (opascal-save-state): Remove macro.
20657         (opascal-fontifying-progress-step): Remove constant.
20658         (opascal--ignore-changes): Remove var.
20659         (opascal-set-token-property, opascal-parse-next-literal)
20660         (opascal-is-stable-literal, opascal-complete-literal)
20661         (opascal-is-literal-start, opascal-face-of)
20662         (opascal-parse-region, opascal-parse-region-until-stable)
20663         (opascal-fontify-region, opascal-after-change)
20664         (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
20665         (opascal-debug-parse-region, opascal-debug-parse-window)
20666         (opascal-debug-parse-buffer, opascal-debug-fontify-window)
20667         (opascal-debug-fontify-buffer): Remove.
20668         (opascal-debug-mode-map): Adjust accordingly.
20670 2013-04-25  Leo Liu  <sdl.web@gmail.com>
20672         Merge octave-mod.el and octave-inf.el into octave.el with some
20673         cleanups.
20674         * progmodes/octave.el: New file renamed from octave-mod.el.
20675         * progmodes/octave-inf.el: Merged into octave.el.
20676         * progmodes/octave-mod.el: Renamed to octave.el.
20678 2013-04-25  Tassilo Horn  <tsdh@gnu.org>
20680         * textmodes/reftex-vars.el
20681         (reftex-label-ignored-macros-and-environments): New defcustom.
20683         * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
20685 2013-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
20687         * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
20688         (smie-indent-keyword): Improve the check to ensure that the next
20689         comment is really on the same line.
20690         (smie-indent-comment): Don't align with a subsequent closer (or eob).
20692         * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
20693         semi-colons if the line is not otherwise empty (bug#14218).
20695 2013-04-25  Glenn Morris  <rgm@gnu.org>
20697         * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
20699 2013-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
20701         * progmodes/opascal.el (opascal-set-token-property): Rename from
20702         opascal-set-text-properties and only set `token' (bug#14134).
20703         Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
20704         (opascal-literal-text-properties): Remove.
20705         (opascal-parse-next-literal, opascal-debug-unparse-buffer):
20706         Adjust callers.
20708 2013-04-24  Reuben Thomas  <rrt@sc3d.org>
20710         * textmodes/remember.el (remember-handler-functions): Add an
20711         option for a new handler `remember-store-in-files'.
20712         (remember-data-directory, remember-directory-file-name-format):
20713         New options.
20714         (remember-store-in-files): New function to store remember notes
20715         as separate files within a directory.
20717 2013-04-24  Magnus Henoch  <magnus.henoch@gmail.com>
20719         * progmodes/compile.el (compilation-next-error-function):
20720         Pass "formats" to compilation-find-file (bug#11777).
20722 2013-04-24  Glenn Morris  <rgm@gnu.org>
20724         * vc/vc-bzr.el (vc-bzr-print-log):
20725         * vc/vc-hg.el (vc-hg-print-log):
20726         * vc/vc-svn.el (vc-svn-print-log):
20727         Fix START-REVISION with LIMIT != 1.  (Bug#14168)
20729         * vc/vc-bzr.el (vc-bzr-print-log):
20730         * vc/vc-cvs.el (vc-cvs-print-log):
20731         * vc/vc-git.el (vc-git-print-log):
20732         * vc/vc-hg.el (vc-hg-print-log):
20733         * vc/vc-mtn.el (vc-mtn-print-log):
20734         * vc/vc-rcs.el (vc-rcs-print-log):
20735         * vc/vc-sccs.el (vc-sccs-print-log):
20736         * vc/vc-svn.el (vc-svn-print-log):
20737         * vc/vc.el (vc-print-log-internal): Doc fixes.
20739 2013-04-23  Glenn Morris  <rgm@gnu.org>
20741         * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
20742         Remove venerable code attempting to avoid substitute-command-keys.
20744 2013-04-23  Tassilo Horn  <tsdh@gnu.org>
20746         * textmodes/reftex-vars.el (reftex-label-regexps):
20747         Call `reftex-compile-variables' after changes to this variable.
20749 2013-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
20751         * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
20752         Use lexical-binding.
20753         (jit-lock-force-redisplay): Use markers, check buffer's continued
20754         existence and beware narrowed buffers.
20755         (jit-lock-fontify-now): Adjust call accordingly.
20757 2013-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
20759         * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
20760         to avoid misleading the user.
20762 2013-04-22  Leo Liu  <sdl.web@gmail.com>
20764         * info-look.el: Prefer latex2e.info.  (Bug#14240)
20766 2013-04-22  Michael Albinus  <michael.albinus@gmx.de>
20768         Fix pack/unpack coding.  Reported by David Smith <davidsmith@acm.org>.
20770         * net/tramp-compat.el (tramp-compat-call-process): Move function ...
20771         * net/tramp.el (tramp-call-process): ... here.
20772         (tramp-set-completion-function, tramp-parse-putty):
20773         * net/tramp-adb.el (tramp-adb-execute-adb-command):
20774         * net/tramp-gvfs.el (tramp-gvfs-send-command):
20775         * net/tramp-sh.el (tramp-sh-handle-set-file-times)
20776         (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
20777         (tramp-call-local-coding-command): Use `tramp-call-process'
20778         instead of `tramp-compat-call-process'.
20780         * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
20781         (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
20782         (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
20783         (tramp-find-inline-compress): Improve traces.
20784         (tramp-maybe-send-script): Check for Perl binary.
20785         (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
20787 2013-04-22  Daiki Ueno  <ueno@gnu.org>
20789         * epg.el (epg-context-pinentry-mode): New function.
20790         (epg-context-set-pinentry-mode): New function.
20791         (epg--start): Pass --pinentry-mode option to gpg command.
20793 2013-04-21  Xue Fuqiao  <xfq.free@gmail.com>
20795         * comint.el (comint-dynamic-complete-functions, comint-mode-map):
20796         `comint-dynamic-complete' is obsolete since 24.1, replaced by
20797         `completion-at-point'.  (Bug#13774)
20799         * startup.el (normal-no-mouse-startup-screen): Bug fix, the
20800         default key binding for `describe-distribution' has been moved to
20801         `C-h C-o'.  (Bug#13970)
20803 2013-04-21  Glenn Morris  <rgm@gnu.org>
20805         * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
20806         Add doc strings.
20807         (vc-print-log): Clarify interactive prompt.
20809 2013-04-20  Glenn Morris  <rgm@gnu.org>
20811         * emacs-lisp/bytecomp.el (byte-compile-insert-header):
20812         No longer include timestamp etc information.
20814 2013-04-20  Roland Winkler  <winkler@gnu.org>
20816         * faces.el (read-face-name): Bug fix, return just one face if arg
20817         multiple is nil.  (Bug#14209)
20819 2013-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
20821         * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
20822         (remove-function): Autoload.
20824         * comint.el (comint-redirect-original-filter-function): Remove.
20825         (comint-redirect-cleanup, comint-redirect-send-command-to-process):
20826         * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
20827         (vc-cvs-annotate-command):
20828         * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
20829         * progmodes/prolog.el (prolog-consult-compile):
20830         * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
20831         Use add/remove-function instead.
20832         * progmodes/gud.el (gud-tooltip-original-filter): Remove.
20833         (gud-tooltip-process-output, gud-tooltip-tips):
20834         Use add/remove-function instead.
20835         * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
20836         (scheme-interaction-mode, exit-scheme-interaction-mode):
20837         Use add/remove-function instead.
20839         * vc/vc-dispatcher.el: Use lexical-binding.
20840         (vc--process-sentinel): Rename from vc-process-sentinel.
20841         Change last arg to be the code to run.  Don't use vc-previous-sentinel
20842         and vc-sentinel-commands any more.
20843         (vc-exec-after): Allow code to be a function.  Use add/remove-function.
20844         (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
20846 2013-04-19  Masatake YAMATO  <yamato@redhat.com>
20848         * progmodes/sh-script.el (sh-imenu-generic-expression):
20849         Handle function names with a single character.  (Bug#14111)
20851 2013-04-19  Dima Kogan  <dima@secretsauce.net>  (tiny change)
20853         * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
20854         for subroutines defined in an eval (bug#14182).
20856 2013-04-19  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
20858         * bookmark.el (bookmark-completing-read): Improve handling of empty
20859         string (bug#14176).
20861 2013-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
20863         * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
20865 2013-04-19  Fabián Ezequiel Gallina  <fgallina@gnu.org>
20867         New faster Imenu implementation (bug#14058).
20868         * progmodes/python.el (python-imenu-prev-index-position)
20869         (python-imenu-format-item-label-function)
20870         (python-imenu-format-parent-item-label-function)
20871         (python-imenu-format-parent-item-jump-label-function):
20872         New vars.
20873         (python-imenu-format-item-label)
20874         (python-imenu-format-parent-item-label)
20875         (python-imenu-format-parent-item-jump-label)
20876         (python-imenu--put-parent, python-imenu--build-tree)
20877         (python-imenu-create-index, python-imenu-create-flat-index)
20878         (python-util-popn): New functions.
20879         (python-mode): Set imenu-create-index-function to
20880         python-imenu-create-index.
20882 2013-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
20884         * winner.el (winner-active-region): Use region-active-p, activate-mark
20885         and deactivate-mark (bug#14225).
20887         * simple.el (deactivate-mark): Don't inline it.
20889 2013-04-18  Michael Albinus  <michael.albinus@gmx.de>
20891         * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
20893 2013-04-18  Tassilo Horn  <tsdh@gnu.org>
20895         * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
20896         file extensions from the archive-mode entry in order to prefer
20897         doc-view-mode-maybe with archive-mode as fallback (bug#14188).
20899 2013-04-18  Leo Liu  <sdl.web@gmail.com>
20901         * bindings.el (help-event-list): Add ?\?.
20903 2013-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
20905         * subr.el (with-wrapper-hook): Declare obsolete.
20906         * simple.el (filter-buffer-substring-function): New hook.
20907         (filter-buffer-substring): Use it.
20908         (filter-buffer-substring-functions): Mark obsolete.
20909         * minibuffer.el (completion-in-region-function): New hook.
20910         (completion-in-region): Use it.
20911         (completion-in-region-functions): Mark obsolete.
20912         * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
20913         * abbrev.el (abbrev-expand-function): New hook.
20914         (expand-abbrev): Use it.
20915         (abbrev-expand-functions): Mark obsolete.
20916         * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
20917         and :filter-return.
20919 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
20921         * progmodes/python.el (python-nav--syntactically): Fix cornercases
20922         and do not care about match data.
20924 2013-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
20926         * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
20927         completion tables when completing error conditions and
20928         `declare' arguments.
20929         (lisp-complete-symbol, field-complete): Mark as obsolete.
20930         (check-parens): Unmatched parens are user errors.
20931         * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
20933 2013-04-17  Michal Nazarewicz  <mina86@mina86.com>
20935         * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
20936         command changed buffer (ie. `flyspell-pre-buffer' is not current
20937         buffer), which prevents making decisions based on invalid value of
20938         `flyspell-pre-point' in the wrong buffer.  Most notably, this used to
20939         cause an error when `flyspell-pre-point' was nil after switching
20940         buffers.
20941         (flyspell-post-command-hook): No longer needs to change buffers when
20942         checking pre-word.  While at it remove unnecessary progn.
20944 2013-04-17  Nicolas Richard  <theonewiththeevillook@yahoo.fr>  (tiny change)
20946         * textmodes/ispell.el (ispell-add-per-file-word-list):
20947         Fix `flyspell-correct-word-before-point' error when accepting
20948         words and `coment-padding' is an integer by using
20949         `comment-normalize-vars' (Bug #14214).
20951 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
20953         New defun movement commands.
20954         * progmodes/python.el (python-nav--syntactically)
20955         (python-nav--forward-defun, python-nav-backward-defun)
20956         (python-nav-forward-defun): New functions.
20958 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
20960         * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
20961         (python-syntax-context): Use named compiler-macro for backwards
20962         compatibility with Emacs 24.x.
20964 2013-04-17  Leo Liu  <sdl.web@gmail.com>
20966         * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
20967         octave-hide-process-buffer.
20969 2013-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
20971         * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
20972         (bug#14216).
20974 2013-04-17  Jean-Philippe Gravel  <jpgravel@gmail.com>
20976         * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
20977         Fix adjustment of offset when receiving incomplete responses from GDB
20978         (bug#14129).
20980 2013-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
20982         * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
20983         python-mode-abbrev-table.
20984         (python-skeleton-define): Adjust accordingly.
20985         (python-mode-abbrev-table): New table that inherits from it so that
20986         python-skeleton-autoinsert does not affect non-skeleton abbrevs.
20988         * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
20989         (abbrev-symbol): Use it.
20990         (abbrev--before-point): Use it since we already handle inheritance.
20992 2013-04-16  Leo Liu  <sdl.web@gmail.com>
20994         * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
20995         binding to info-lookup-symbol.
20997 2013-04-16  Juanma Barranquero  <lekktu@gmail.com>
20999         * minibuffer.el (completion--twq-all):
21000         * term/ns-win.el (ns-initialize-window-system):
21001         * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
21003 2013-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
21005         * emacs-lisp/nadvice.el (add-function): Default simple vars to their
21006         global bindings.
21008         * doc-view.el (doc-view-start-process): Handle url-handler directories.
21010 2013-04-15  Dmitry Gutov  <dgutov@yandex.ru>
21012         * progmodes/ruby-mode.el (ruby-beginning-of-defun)
21013         (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
21014         to nil.
21015         (ruby-end-of-defun): Remove the unused arg, change the docstring
21016         to reflect that this function is only used as the value of
21017         `end-of-defun-function'.
21018         (ruby-beginning-of-defun): Remove "top-level" from the docstring,
21019         to reflect an earlier change that beginning/end-of-defun functions
21020         jump between methods in a class definition, as well as top-level
21021         functions.
21023 2013-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
21025         * minibuffer.el (minibuffer-complete): Don't just scroll
21026         a *Completions* that's been iconified.
21027         (minibuffer-force-complete): Make sure repetitions do cycle when going
21028         through completion-in-region -> minibuffer-complete.
21030 2013-04-15  Alan Mackenzie  <acm@muc.de>
21032         Correct the placement of c-cpp-delimiters when there're #s not at
21033         col 0.
21035         * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
21036         place a submatch around the #.
21037         * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
21038         Start a search at BOL.  Put the c-cpp-delimiter category text propertiy
21039         on the #, not BOL.
21041 2013-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
21043         * emacs-lisp/nadvice.el: Properly test names when adding advice.
21044         (advice--member-p): New arg `name'.
21045         (advice--add-function, advice-member-p): Use it (bug#14202).
21047 2013-04-15  Filipp Gunbin  <fgunbin@fastmail.fm>
21049         Reformulate java imenu-generic-expression.
21050         The old expression contained ill formed regexps.
21052         * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
21053         (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
21054         (cc-imenu-java-method-arg-regexp): New defconsts.
21055         (cc-imenu-java-build-type-args-regex): New defun.
21056         (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
21057         handling of spaces in the regexp.
21059 2013-03-15  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
21061         * textmodes/ispell.el (ispell-command-loop): Remove
21062         flyspell highlight of a word when ispell accepts it (bug #14178).
21064 2013-04-15  Michael Albinus  <michael.albinus@gmx.de>
21066         * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
21067         uses code from the previous `ange-ftp-run-real-handler'.
21068         (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
21069         only in case that function exist.  This is needed for proper
21070         unloading of Tramp.
21072 2013-04-15  Tassilo Horn  <tsdh@gnu.org>
21074         * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
21076         * textmodes/reftex.el (reftex-compile-variables): Use it.
21078 2013-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
21080         * files.el (normal-mode): Only use default major-mode if no other mode
21081         was specified.
21083         * emacs-lisp/trace.el (trace-values): New function.
21085         * files.el: Allow : in local variables (bug#14089).
21086         (hack-local-variable-regexp): New var.
21087         (hack-local-variables-prop-line, hack-local-variables): Use it.
21089 2013-04-13  Roland Winkler  <winkler@gnu.org>
21091         * textmodes/bibtex.el (bibtex-search-entries): Bug fix.  Use match
21092         data before it gets modified by bibtex-beginning-of-entry.
21094 2013-04-13  Roland Winkler  <winkler@gnu.org>
21096         * textmodes/bibtex.el (bibtex-url): Doc fix.
21098 2013-04-13  Roland Winkler  <winkler@gnu.org>
21100         * textmodes/bibtex.el (bibtex-initialize): If the current buffer
21101         does not visit a BibTeX file, exclude it from the list of buffers
21102         returned by bibtex-initialize.
21104 2013-04-13  Stephen Berman  <stephen.berman@gmx.net>
21106         * window.el (split-window): Remove interactive form, since as a
21107         command this function is a special case of split-window-below.
21108         Correct doc string.
21110 2013-04-12  Roland Winkler  <winkler@gnu.org>
21112         * faces.el (read-face-name): Do not override value of arg default.
21113         Allow single faces and strings as default values.  Remove those
21114         elements from return value that are not faces.
21115         (describe-face): Simplify.
21116         (face-at-point): New optional args thing and multiple so that this
21117         function can provide the same functionality previously provided by
21118         read-face-name.
21119         (make-face-bold, make-face-unbold, make-face-italic)
21120         (make-face-unitalic, make-face-bold-italic, invert-face)
21121         (modify-face, read-face-and-attribute): Use face-at-point.
21123         * cus-edit.el (customize-face, customize-face-other-window)
21124         * cus-theme.el (custom-theme-add-face)
21125         * face-remap.el (buffer-face-set)
21126         * facemenu.el (facemenu-set-face): Use face-at-point.
21128 2013-04-12  Michael Albinus  <michael.albinus@gmx.de>
21130         * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
21132 2013-04-10  Tassilo Horn  <tsdh@gnu.org>
21134         * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
21135         off leading { and trailing } from field values.
21137 2013-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
21139         * emacs-lisp/timer.el (timer--check): New function.
21140         (timer--time, timer-set-function, timer-event-handler): Use it.
21141         (timer-set-idle-time): Simplify.
21142         (timer--activate): CSE.
21143         (timer-event-handler): Give more info in error message.
21144         (internal-timer-start-idle): New function, moved from C.
21146         * mpc.el (mpc-proc): Add `restart' argument.
21147         (mpc-proc-cmd): Use it.
21148         (mpc--status-timer-run): Also catch signals from `mpc-proc'.
21149         (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
21150         less often.
21152 2013-04-10  Masatake YAMATO  <yamato@redhat.com>
21154         * progmodes/sh-script.el: Implement `sh-mode' own
21155         `add-log-current-defun-function' (bug#14112).
21156         (sh-current-defun-name): New function.
21157         (sh-mode): Use the function.
21159 2013-04-09  Bastien Guerry  <bzg@gnu.org>
21161         * simple.el (choose-completion-string): Fix docstring (bug#14163).
21163 2013-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
21165         * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
21167         * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
21168         timer (bug#14156).
21170 2013-04-07  Nic Ferrier  <nferrier@ferrier.me.uk>
21172         * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
21173         declaration.
21175 2013-04-07  Leo Liu  <sdl.web@gmail.com>
21177         * pcmpl-x.el: New file.
21179 2013-04-06  Dmitry Antipov  <dmantipov@yandex.ru>
21181         Do not set x-display-name until X connection is established.
21182         This is needed to prevent from weird situation described at
21183         <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
21184         * frame.el (make-frame): Set x-display-name after call to
21185         window system initialization function, not before.
21186         * term/x-win.el (x-initialize-window-system): Add optional
21187         display argument and use it.
21188         * term/w32-win.el (w32-initialize-window-system):
21189         * term/ns-win.el (ns-initialize-window-system):
21190         * term/pc-win.el (msdos-initialize-window-system):
21191         Add compatible optional display argument.
21193 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
21195         * files.el (normal-backup-enable-predicate): On MS-Windows and
21196         MS-DOS compare truenames of temporary-file-directory and of the
21197         file, so that 8+3 aliases (usually found in $TEMP on Windows)
21198         don't fail comparison by compare-strings.  Also, compare file
21199         names case-insensitively on MS-Windows and MS-DOS.
21201 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
21203         * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
21204         Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
21206 2013-04-05  Dmitry Gutov  <dgutov@yandex.ru>
21208         * whitespace.el (whitespace-color-on, whitespace-color-off):
21209         Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
21211 2013-04-05  Jacek Chrząszcz  <chrzaszcz@mimuw.edu.pl>  (tiny change)
21213         * ispell.el (ispell-set-spellchecker-params):
21214         Really set `ispell-args' for all equivs.
21216 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
21218         * ido.el (ido-completions): Use extra elements of ido-decorations
21219         (bug#14143).
21220         (ido-decorations): Update docstring.
21222 2013-04-05  Michael Albinus  <michael.albinus@gmx.de>
21224         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
21225         (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
21226         nil during initialization, in order not to miss changes since the
21227         file was opened.  (Bug#14140)
21229 2013-04-05  Leo Liu  <sdl.web@gmail.com>
21231         * kmacro.el (kmacro-call-macro): Fix bug#14135.
21233 2013-04-05  Jay Belanger  <jay.p.belanger@gmail.com>
21235         * calc/calc-units.el (calc-convert-units): Rewrite conditional.
21237 2013-04-04  Glenn Morris  <rgm@gnu.org>
21239         * electric.el (electric-pair-inhibit-predicate): Add :version.
21241 2013-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
21243         * emacs-lisp/package.el (package-compute-transaction): Fix ordering
21244         when a package is required several times (bug#14082).
21246 2013-04-04  Roland Winkler  <winkler@gnu.org>
21248         * faces.el (read-face-name): Behave as promised by the docstring.
21249         Assume that arg default is a list of faces.
21250         (describe-face): Call read-face-name with list of default faces.
21252 2013-04-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
21254         * bookmark.el: Fix deletion of bookmarks (bug#13972).
21255         (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
21256         (bookmark-bmenu-execute-deletions): Only skip first line if it's
21257         the header.
21258         (bookmark-exit-hook-internal): Save even if list is empty.
21260 2013-04-04  Yann Hodique  <yann.hodique@gmail.com>  (tiny change)
21262         * emacs-lisp/package.el (package-pinned-packages): New var.
21263         (package--add-to-archive-contents): Obey it (bug#14118).
21265 2013-04-03  Alan Mackenzie  <acm@muc.de>
21267         Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
21268         Also adapt to the new values of element 7 of a parse state.
21270         * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
21271         parameter `not-in-delimiter'.  Handle being inside comment opener.
21272         (c-invalidate-state-cache-1): Reckon with an extra "invalid"
21273         character in case we're typing a '*' after a '/'.
21274         (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
21275         instead by passing the parameter to c-state-pp-to-literal.
21277         * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
21278         for elt. 7 of a parse state.
21280 2013-04-01  Paul Eggert  <eggert@cs.ucla.edu>
21282         Use UTF-8 for most files with non-ASCII characters (Bug#13936).
21283         * international/latin1-disp.el, international/mule-util.el:
21284         * language/cyril-util.el, language/european.el, language/ind-util.el:
21285         * language/lao-util.el, language/thai.el, language/tibet-util.el:
21286         * language/tibetan.el, language/viet-util.el:
21287         Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
21289 2013-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
21291         * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
21292         (electric-pair-post-self-insert-function): Use it.
21293         (electric-pair-default-inhibit): New function, extracted from
21294         electric-pair-post-self-insert-function.
21296 2013-03-31  Roland Winkler  <winkler@gnu.org>
21298         * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
21300 2013-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
21302         * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
21304 2013-03-30  Fabián Ezequiel Gallina  <fabian@anue.biz>
21306         Un-indent after "pass" and "return" statements (Bug#13888)
21307         * progmodes/python.el (python-indent-block-enders): New var.
21308         (python-indent-calculate-indentation): Use it.
21310 2013-03-30  Michael Albinus  <michael.albinus@gmx.de>
21312         * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
21313         defun.  Defining it as defalias could introduce too eager
21314         byte-compiler optimization.  (Bug#14030)
21316 2013-03-30  Chong Yidong  <cyd@gnu.org>
21318         * iswitchb.el (iswitchb-read-buffer): Fix typo.
21320 2013-03-30  Leo Liu  <sdl.web@gmail.com>
21322         * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
21323         (kmacro-execute-from-register): Pass the keyboard macro to
21324         kmacro-call-macro or repeating won't work correctly.
21326 2013-03-30  Teodor Zlatanov  <tzz@lifelogs.com>
21328         * progmodes/subword.el: Back to using `forward-symbol'.
21330         * subr.el (forward-whitespace, forward-symbol)
21331         (forward-same-syntax): Move from thingatpt.el.
21333 2013-03-29  Leo Liu  <sdl.web@gmail.com>
21335         * kmacro.el (kmacro-to-register): New command.
21336         (kmacro-execute-from-register): New function.
21337         (kmacro-keymap): Bind to 'x'.  (Bug#14071)
21339 2013-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
21341         * mpc.el: Use defvar-local and setq-local.
21342         (mpc--proc-connect): Connection failures are not bugs.
21343         (mpc-mode-map): `follow-link' only applies to the buffer's content.
21344         (mpc-volume-map): Bind to the up-events.
21346 2013-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
21348         * progmodes/subword.el (superword-mode): Use `forward-sexp'
21349         instead of `forward-symbol'.
21351 2013-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
21353         * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
21354         (edebug--recursive-edit): Use it.
21355         (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
21356         (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
21358 2013-03-28  Leo Liu  <sdl.web@gmail.com>
21360         * vc/vc-bzr.el (vc-bzr-revert): Don't backup.  (Bug#14066)
21362 2013-03-27  Eli Zaretskii  <eliz@gnu.org>
21364         * facemenu.el (list-colors-callback): New defvar.
21365         (list-colors-redisplay): New function.
21366         (list-colors-display): Install list-colors-redisplay as the
21367         revert-buffer-function.  (Bug#14063)
21369 2013-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
21371         * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
21372         and suffixes don't overlap (bug#14061).
21374         * case-table.el: Use lexical-binding.
21375         (case-table-get-table): New function.
21376         (get-upcase-table): Use it.  Mark as obsolete.  Adjust callers.
21378 2013-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
21380         * progmodes/subword.el: Add `superword-mode' to do word motion
21381         over symbol_words (parallels and leverages `subword-mode' which
21382         does word motion inside MixedCaseWords).
21384 2013-03-27  Aidan Gauland  <aidalgol@no8wireless.co.nz>
21386         * eshell/em-unix.el: Move su and sudo to...
21387         * eshell/em-tramp.el: ...Eshell tramp module.
21389 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
21391         * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
21392         Change return value to be a sexp.  Delay `get-buffer' to after
21393         restoring the desktop (bug#13951).
21395 2013-03-26  Leo Liu  <sdl.web@gmail.com>
21397         * register.el: Move semantic tag handling back to
21398         cedet/semantic/senator.el.  (Bug#14052)
21400 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
21402         * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
21403         into the prompt either (bug#13963).
21405 2013-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
21407         * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
21408         part of "(error-foo)".
21410 2013-03-24  Juri Linkov  <juri@jurta.org>
21412         * replace.el (list-matching-lines-prefix-face): New defcustom.
21413         (occur-1): Pass `list-matching-lines-prefix-face' to the function
21414         `occur-engine' if `face-differs-from-default-p' returns t.
21415         (occur-engine): Add `,' inside backquote construct to evaluate
21416         `prefix-face'.  Propertize the prefix with the `prefix-face' face.
21417         Pass `prefix-face' to the functions `occur-context-lines' and
21418         `occur-engine-add-prefix'.
21419         (occur-engine-add-prefix, occur-context-lines): Add optional arg
21420         `prefix-face' and propertize the prefix with `prefix-face'.
21421         (Bug#14017)
21423 2013-03-24  Leo Liu  <sdl.web@gmail.com>
21425         * nxml/rng-valid.el (rng-validate-while-idle)
21426         (rng-validate-quick-while-idle): Guard against deleted buffer.
21427         (Bug#13999)
21429         * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
21430         is the last entry in kill-buffer-hook.
21432         * files.el (kill-buffer-hook): Doc fix.
21434 2013-03-23  Dmitry Gutov  <dgutov@yandex.ru>
21436         * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
21437         Make it safe-local.
21439         * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
21441 2013-03-23  Leo Liu  <sdl.web@gmail.com>
21443         * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
21444         Remove.
21446         * nxml/rng-valid.el (rng-validate-mode)
21447         (rng-after-change-function, rng-do-some-validation):
21448         * nxml/rng-maint.el (rng-validate-buffer):
21449         * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
21450         * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
21451         * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
21452         (nxml-extend-after-change-region): Use with-silent-modifications.
21454         * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
21455         timer-idle-list.
21457         * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
21458         (rng-next-error-1, rng-previous-error-1): Do not let-bind
21459         timer-idle-list.  (Bug#13999)
21461 2013-03-23  Juri Linkov  <juri@jurta.org>
21463         * info.el (info-index-match): New face.
21464         (Info-index, Info-apropos-matches): Add a nested subgroup to the
21465         main pattern and add text properties with the new face to matches
21466         in index entries relative to the beginning of the index entry.
21467         (Bug#14015)
21469 2013-03-21  Eric Ludlam  <zappo@gnu.org>
21471         * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
21472         Inhibit read only while inserting objects.
21474 2013-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
21476         * progmodes/cfengine.el: Update docs to mention
21477         `cfengine-auto-mode'.  Use \_> and \_< instead of \> and \< for
21478         symbol motion.  Remove "_" from the word syntax.
21480 2013-03-21  Teodor Zlatanov  <tzz@lifelogs.com>
21482         * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
21483         syntax for both `cfengine2-mode' and `cfengine3-mode'.
21485 2013-03-20  Juri Linkov  <juri@jurta.org>
21487         * info.el (Info-next-reference-or-link)
21488         (Info-prev-reference-or-link): New functions.
21489         (Info-next-reference, Info-prev-reference): Use them.
21490         (Info-try-follow-nearest-node): Handle footnote navigation.
21491         (Info-fontify-node): Fontify footnotes.  (Bug#13989)
21493 2013-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
21495         * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
21496         * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
21498 2013-03-20  Paul Eggert  <eggert@cs.ucla.edu>
21500         Suppress unnecessary non-ASCII chatter during build process.
21501         * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
21502         (batch-skkdic-convert): Suppress most of the chatter.
21503         It's not needed so much now that machines are faster,
21504         and its non-ASCII component was confusing; see Dmitry Gutov in
21505         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
21507 2013-03-20  Leo Liu  <sdl.web@gmail.com>
21509         * ido.el (ido-chop): Fix bug#10994.
21511 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
21513         * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
21514         Remove vars.
21515         (whitespace-color-on, whitespace-color-off):
21516         Use `font-lock-fontify-buffer' (Bug#13817).
21518 2013-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
21520         * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
21521         remapping in mode-line.
21522         (mouse-on-link-p): Also check [mode-line follow-link] bindings.
21524 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
21526         * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
21527         value for `whitespace-line' face (Bug#13875).
21528         (whitespace-font-lock-keywords): Change description.
21529         (whitespace-color-on): Don't save `font-lock-keywords' value, save
21530         the constructed keywords instead.
21531         (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
21533 2013-03-19  Leo Liu  <sdl.web@gmail.com>
21535         * progmodes/compile.el (compilation-display-error): New command.
21536         (compilation-mode-map, compilation-minor-mode-map): Bind it to
21537         C-o.  (Bug#13992)
21539 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
21541         * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
21543 2013-03-18  Jan Djärv  <jan.h.d@swipnet.se>
21545         * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
21547 2013-03-18  Michael Albinus  <michael.albinus@gmx.de>
21549         * net/tramp-compat.el (tramp-compat-user-error): New defun.
21551         * net/tramp-adb.el (tramp-adb-handle-shell-command):
21552         * net/tramp-gvfs.el (top):
21553         * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
21554         (tramp-handle-shell-command): Use it.
21555         (tramp-dissect-file-name): Raise an error when hostname is a
21556         method name, and neither method nor user is specified.
21558         * net/trampver.el: Update release number.
21560 2013-03-18  Leo Liu  <sdl.web@gmail.com>
21562         Make sure eldoc can be turned off properly.
21563         * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
21564         eldoc-mode.
21565         (eldoc-display-message-p): Revert last change.
21566         (eldoc-display-message-no-interference-p)
21567         (eldoc-print-current-symbol-info): Tweak.
21569 2013-03-18  Tassilo Horn  <tsdh@gnu.org>
21571         * doc-view.el (doc-view-new-window-function): Check the new window
21572         overlay's display property instead the char property of the
21573         buffer's first char.  Use `with-selected-window' instead of
21574         `save-window-excursion' with `select-window'.
21575         (doc-view-document->bitmap): Check the current doc-view overlay's
21576         display property instead the char property of the buffer's first char.
21578 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
21580         Automate the build of ja-dic.el (Bug#13984).
21581         * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
21582         from the input, rather than assume that it's been done for us by the
21583         SKK script unannotate.awk.  Switch ja-dic.el to UTF-8.  Don't put
21584         the current date into a ja-dic.el comment, as that complicates
21585         regression testing.
21587 2013-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
21589         * whitespace.el: Fix double evaluation.
21590         (whitespace-space, whitespace-hspace, whitespace-tab)
21591         (whitespace-newline, whitespace-trailing, whitespace-line)
21592         (whitespace-space-before-tab, whitespace-indentation)
21593         (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
21594         obsolete defvars.
21595         (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
21596         (whitespace-color-on): Use a single font-lock-add-keywords call.
21597         Fix double-evaluation of face variables.
21599 2013-03-17  Michael Albinus  <michael.albinus@gmx.de>
21601         * net/tramp-adb.el (tramp-adb-parse-device-names):
21602         Use `start-process' instead of `call-process'.  Otherwise, the
21603         function might be blocked under MS Windows.  (Bug#13299)
21605 2013-03-17  Leo Liu  <sdl.web@gmail.com>
21607         Extend eldoc to display info in the mode-line.  (Bug#13978)
21608         * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
21609         (eldoc-mode-line-string): New variable.
21610         (eldoc-minibuffer-message): New function.
21611         (eldoc-message-function): New variable.
21612         (eldoc-message): Use it.
21613         (eldoc-display-message-p)
21614         (eldoc-display-message-no-interference-p):
21615         Support eldoc-post-insert-mode.
21617         * simple.el (eval-expression-minibuffer-setup-hook): New hook.
21618         (eval-expression): Run it.
21620 2013-03-17  Roland Winkler  <winkler@gnu.org>
21622         * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
21623         strings in the list of return values.
21625 2013-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
21627         * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
21628         radix before checking for HMS forms.
21630 2013-03-16  Leo Liu  <sdl.web@gmail.com>
21632         * progmodes/scheme.el: Add indentation and font-locking for λ.
21633         (Bug#13975)
21635 2013-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
21637         * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
21638         token before point (bug#13942).
21640 2013-03-16  Leo Liu  <sdl.web@gmail.com>
21642         * thingatpt.el (end-of-sexp): Fix bug#13952.  Use syntax-after.
21644 2013-03-16  Eli Zaretskii  <eliz@gnu.org>
21646         * startup.el (command-line-normalize-file-name): Fix handling of
21647         backslashes in DOS and Windows file names.  Reported by Xue Fuqiao
21648         <xfq.free@gmail.com> in
21649         http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
21651 2013-03-15  Michael Albinus  <michael.albinus@gmx.de>
21653         Sync with Tramp 2.2.7.
21655         * net/trampver.el: Update release number.
21657 2013-03-14  Tassilo Horn  <tsdh@gnu.org>
21659         * doc-view.el: Fix bug#13887.
21660         (doc-view-insert-image): Don't modify overlay associated to
21661         non-live windows, and implement horizontal centering of image in
21662         case it's smaller than the window.
21663         (doc-view-new-window-function): Force redisplay of new windows on
21664         doc-view buffers.
21666 2013-03-13  Karl Fogel  <kfogel@red-bean.com>
21668         * saveplace.el (save-place-alist-to-file): Don't sort
21669         `save-place-alist', just pretty-print it (bug#13882).
21671 2013-03-13  Michael Albinus  <michael.albinus@gmx.de>
21673         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
21674         Check whether `default-file-name-coding-system' is bound.
21675         It isn't in XEmacs.
21677 2013-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
21679         * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
21680         backquotes for `obsolete' (bug#13929).
21682         * international/mule.el (find-auto-coding): Include file name in
21683         obsolescence warning (bug#13922).
21685 2013-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
21687         * progmodes/cfengine.el (cfengine-parameters-indent): New variable
21688         for CFEngine 3-specific indentation.
21689         (cfengine3-indent-line): Use it.  Fix up category regex.
21690         (cfengine3-font-lock-keywords): Add bundle and namespace characters.
21692 2013-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
21694         * type-break.el (type-break-file-name):
21695         * textmodes/remember.el (remember-data-file):
21696         * strokes.el (strokes-file):
21697         * shadowfile.el (shadow-initialize):
21698         * saveplace.el (save-place-file):
21699         * ps-bdf.el (bdf-cache-file):
21700         * progmodes/idlwave.el (idlwave-config-directory):
21701         * net/quickurl.el (quickurl-url-file):
21702         * international/kkc.el (kkc-init-file-name):
21703         * ido.el (ido-save-directory-list-file):
21704         * emulation/viper.el (viper-custom-file-name):
21705         * emulation/vip.el (vip-startup-file):
21706         * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
21707         * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
21709 2013-03-12  Paul Eggert  <eggert@cs.ucla.edu>
21711         Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
21712         * language/thai-word.el: Switch to UTF-8.
21714 See ChangeLog.16 for earlier changes.
21716 ;; Local Variables:
21717 ;; coding: utf-8
21718 ;; End:
21720   Copyright (C) 2011-2014 Free Software Foundation, Inc.
21722   This file is part of GNU Emacs.
21724   GNU Emacs is free software: you can redistribute it and/or modify
21725   it under the terms of the GNU General Public License as published by
21726   the Free Software Foundation, either version 3 of the License, or
21727   (at your option) any later version.
21729   GNU Emacs is distributed in the hope that it will be useful,
21730   but WITHOUT ANY WARRANTY; without even the implied warranty of
21731   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21732   GNU General Public License for more details.
21734   You should have received a copy of the GNU General Public License
21735   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.