Add seq-into as a public function
[emacs.git] / lisp / ChangeLog
blobd8330a46c8956acde785ec935fbbbab069f676fb
1 2015-03-09  Nicolas Petton <nicolas@petton.fr>
3         * emacs-lisp/seq.el (seq-into): New function.
4         Bump seq.el version to 1.3.
6 2015-03-09  Dmitry Gutov  <dgutov@yandex.ru>
8         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Don't consider
9         `=' a part of symbol when followed by `>'.  (Bug#18644)
10         (ruby-syntax-before-regexp-re): Detect regexps after `!'.
11         (Bug#19285)
13 2015-03-09  Eli Zaretskii  <eliz@gnu.org>
15         * dired.el (dired-delete-file): Doc fix.  (Bug#20021)
17 2015-03-06  Sergio Durigan Junior  <sergiodj@sergiodj.net>
18             Thomas Fitzsimmons  <fitzsim@fitzsim.org>
20         * net/eudcb-bbdb.el (eudc-bbdb-field): New function.
21         (eudc-bbdb-filter-non-matching-record): Call eudc-bbdb-field.
22         (eudc-bbdb-format-record-as-result): Likewise.
24 2015-03-08  Dmitry Gutov  <dgutov@yandex.ru>
26         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Use
27         `font-lock-constant-face' for nil, true and false.  Highlight
28         `self' as a keyword.  (Bug#17733)
30 2015-03-08  Nobuyoshi Nakada  <nobu@ruby-lang.org>
32         * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re): Expect
33         beginning of regexp also after open brace or vertical bar.
34         (Bug#20026)
36 2015-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
38         * battery.el (battery-echo-area-format): Simplify default.
39         (battery-linux-sysfs): Standardize on energy&power.  Accept ADP1
40         for AC adapter.
42         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Don't try to
43         unfold `closure's since byte-compile-unfold-lambda doesn't know how to
44         do it.
46 2015-03-06  Oscar Fuentes  <ofv@wanadoo.es>
48         * net/browse-url.el (browse-url-firefox): Remove outdated
49         MS-Windows limitations.
51 2015-03-06  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
53         * net/eudcb-ldap.el (eudc-ldap-cleanup-record-simple): Mark as
54         obsolete.
55         (eudc-ldap-cleanup-record-filtering-addresses): Add docstring.
56         Don't clean up postal addresses if ldap-ignore-attribute-codings
57         is set.  Combine mail addresses into one field. (Bug#17720)
58         (eudc-ldap-simple-query-internal):
59         Call eudc-ldap-cleanup-record-filtering-addresses instead of
60         eudc-ldap-cleanup-record-simple.
61         (eudc-ldap-get-field-list): Likewise.
63 2015-03-05  Ivan Shmakov  <ivan@siamics.net>
65         * net/eww.el (eww-html-p): New function (bug#20009).
66         (eww-render): Use it.
68 2015-03-05  Artur Malabarba  <bruce.connor.am@gmail.com>
70         * desktop.el (desktop-buffer-info): Write docstring.
71         (desktop-buffer-info): Use `pushnew' instead of `add-to-list' and
72         unquote lamda.
74         * emacs-lisp/package.el (package-refresh-contents): Update doc.
76 2015-03-05  Dmitry Gutov  <dgutov@yandex.ru>
78         * progmodes/js.el (js-mode-syntax-table): Add an entry for `.
80 2015-03-05  Stefan Monnier  <monnier@iro.umontreal.ca>
82         Replace *-function vars with generic functions in cl-generic.
83         * emacs-lisp/cl-generic.el (cl--generic-generalizer): New struct.
84         (cl-generic-tagcode-function, cl-generic-tag-types-function): Remove.
85         (cl--generic-t-generalizer): New const.
86         (cl--generic-make-method): Rename from `cl--generic-method-make'.
87         (cl--generic-make): Change calling convention.
88         (cl--generic): Add `options' field.
89         (cl-generic-function-options): New function.
90         (cl-defgeneric): Rewrite handling of options.  Add support for :method
91         options and allow the use of a default body.
92         (cl-generic-define): Save options in the corresponding new field.
93         (cl-defmethod): Fix ordering of qualifiers.
94         (cl-generic-define-method): Use cl-generic-generalizers.
95         (cl--generic-get-dispatcher): Change calling convention, and change
96         calling convention of the returned function as well so as to take the
97         list of methods separately from the generic function object, so that it
98         can receive the original generic function object.
99         (cl--generic-make-next-function): New function, extracted from
100         cl--generic-make-function.
101         (cl--generic-make-function): Use it.
102         (cl-generic-method-combination-function): Remove.
103         (cl--generic-cyclic-definition): New error.
104         (cl-generic-call-method): Take a generic function object rather than
105         its name.
106         (cl-method-qualifiers): New alias.
107         (cl--generic-build-combined-method): Use cl-generic-combine-methods,
108         don't segregate by qualifiers here any more.
109         (cl--generic-standard-method-combination): Segregate by qualifiers
110         here instead.  Add support for the `:extra' qualifier.
111         (cl--generic-cache-miss): Move earlier, adjust to new calling convention.
112         (cl-generic-generalizers, cl-generic-combine-methods):
113         New generic functions.
114         (cl-no-next-method, cl-no-applicable-method, cl-no-primary-method):
115         Use the new "default method in defgeneric" functionality, change
116         calling convention to receive a generic function object.
117         (cl--generic-head-used): New var.
118         (cl--generic-head-generalizer, cl--generic-eql-generalizer)
119         (cl--generic-struct-generalizer, cl--generic-typeof-generalizer):
120         New consts.
121         * emacs-lisp/eieio-core.el (eieio--generic-generalizer)
122         (eieio--generic-subclass-generalizer): New consts.
123         (cl-generic-generalizers): New methods.
124         * emacs-lisp/eieio-compat.el (eieio--generic-static-symbol-generalizer)
125         (eieio--generic-static-object-generalizer): New consts.
126         (cl-generic-generalizers) <(head eieio--static)>: New method.
127         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
128         Unfold closures like lambdas.
130 2015-03-04  Filipp Gunbin  <fgunbin@fastmail.fm>
132         * autorevert.el (auto-revert-notify-add-watch):
133         Fix handler installation.  (Bug#20000)
135 2015-03-04  Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
137         * net/eww.el (eww-search-prefix, eww-open-file, eww-search-words)
138         (eww-same-page-p,eww-set-character-encoding): Fix docstring.
139         (eww): Do not end error messages with a period.
141 2015-03-04  Zhongwei Yao  <ashi08104@gmail.com>
143         * net/tramp-adb.el (tramp-adb-connect-if-not-connected):
144         New user option.
145         (tramp-adb-ls-toolbox-regexp): Fix regexp in order to support file
146         names starting with a space.
147         (tramp-methods): Add `tramp-default-port' for "adb".
148         (tramp-adb-parse-device-names): Add traces.  Return device names
149         with port, if present.
150         (tramp-adb-handle-directory-files-and-attributes): Quote all
151         remote file names.
152         (tramp-adb-get-device): New defun.
153         (tramp-adb-execute-adb-command, tramp-adb-maybe-open-connection):
154         Use it.
155         (tramp-adb-maybe-open-connection): Set `tramp-current-*'
156         variables.  Remove checks for listed devices.
158 2015-03-04  Michael Albinus  <michael.albinus@gmx.de>
160         * net/tramp.el (tramp): Add :link property.
161         (tramp-login-prompt-regexp): Allow also "user", as required by
162         Fritz!Box telnet.
163         (tramp-autoload-file-name-handler): Use "/".
164         (tramp-handle-unhandled-file-name-directory): Return nil when
165         required by the spec.
167         * net/tramp-cache.el (tramp-dump-connection-properties):
168         Use `with-temp-file'.
170         * net/tramp-sh.el (tramp-perl-file-attributes)
171         (tramp-perl-directory-files-and-attributes): Escape apostrophs in
172         file names.
173         (tramp-do-file-attributes-with-stat): Quote file name.
174         (tramp-sh-handle-directory-files-and-attributes): Fall back to
175         `tramp-handle-directory-files-and-attributes' in case of problems.
176         (tramp-do-directory-files-and-attributes-with-stat)
177         (tramp-sh-handle-file-name-all-completions)
178         (tramp-sh-handle-delete-directory)
179         (tramp-sh-handle-expand-file-name, tramp-sh-handle-process-file):
180         Normalize use of "cd".
181         (tramp-do-directory-files-and-attributes-with-stat): Use the
182         `quoting-style' arg of `ls' if possible.  Make it also working for
183         file names with apostrophs.
184         (tramp-sh-handle-file-name-all-completions): Use arguments of `ls'
185         in proper order.
186         (tramp-do-copy-or-rename-file-via-buffer)
187         (tramp-sh-handle-file-local-copy): Use `with-temp-file'.
188         (tramp-get-remote-locale): Accept also \r in output.
189         (tramp-get-ls-command-with-quoting-style): New defun.
190         (tramp-get-inline-coding): Set `default-directory' to a local
191         directory.  Sporadically, `call-process-region' does not handle a
192         remote default directory properly.
194         * net/trampver.el: Update release number.
196 2015-03-03  Agustín Martín Domingo  <agustin6martin@gmail.com>
198         * textmodes/ispell.el (ispell-aspell-find-dictionary): Make sure
199         .dat files for aspell dicts are also searched for in location
200         described by `ispell-aspell-dict-dir', matching aspell's dict-dir
201         variable.
203 2015-03-03  Agustín Martín Domingo  <agustin6martin@gmail.com>
205         * textmodes/ispell.el (ispell-dicts-name2locale-equivs-alist)
206         (ispell-hunspell-fill-dictionary-entry)
207         (ispell-find-hunspell-dictionaries)
208         (ispell-set-spellchecker-params): New generic name for
209         `ispell-hunspell-dictionary-equivs-alist'.
210         (ispell-aspell-add-aliases): Also use
211         `ispell-dicts-name2locale-equivs-alist' to get aspell aliases for
212         standard dict names.
214 2015-03-03  Glenn Morris  <rgm@gnu.org>
216         * net/browse-url.el (browse-url-firefox-startup-arguments):
217         Make obsolete.
218         (browse-url-firefox): Doc fix.  Remove -remote, which no longer
219         exists in Firefox 36.  (Bug#19921)
220         (browse-url-firefox-sentinel): Remove function.
222 2015-03-03  Eli Zaretskii  <eliz@gnu.org>
224         * frame.el (blink-cursor-timer-function): Don't increment
225         blink-cursor-blinks-done counter when a menu is active on a w32
226         frame.  (Bug#19925)
228 2015-03-03  Juri Linkov  <juri@linkov.net>
230         * comint.el (comint-line-beginning-position): Revert searching for
231         the prompt when comint-use-prompt-regexp is non-nil because it
232         doesn't distinguish input from output.  Check the field property
233         `output' for the case when comint-use-prompt-regexp is nil.
234         (Bug#19710)
236 2015-03-03  Jérémy Compostella  <jeremy.compostella@gmail.com>
238         * net/tramp-sh.el (tramp-remote-process-environment): Disable paging
239         with PAGER=cat.  (Bug#19870)
241 2015-03-03  Glenn Morris  <rgm@gnu.org>
243         * textmodes/flyspell.el (flyspell-duplicate-distance):
244         Bump :version.
246 2015-03-03  Eli Zaretskii  <eliz@gnu.org>
248         * textmodes/text-mode.el (text-mode-syntax-table): Make some
249         punctuation character behave as word-constituent, for more
250         compatibility with Unicode.
252         * simple.el (transient-mark-mode): Doc fix.  (Bug#19841)
254 2015-03-03  Agustín Martín Domingo  <agustin6martin@gmail.com>
256         Improve string search in `flyspell-word-search-*`. (Bug#16800)
257         * textmodes/flyspell.el (flyspell-duplicate-distance): Limit
258         default search distance for duplicated words to 40000.
259         (flyspell-word-search-backward, flyspell-word-search-forward):
260         Search as full word with defined casechars, not as substring.
262 2015-03-03  Juri Linkov  <juri@linkov.net>
264         Better support for the case of typing RET on the prompt in comint.
265         * comint.el (comint-get-old-input-default): Go to the field end
266         when comint-use-prompt-regexp is nil.
267         (comint-line-beginning-position): Check if point is already
268         on the prompt before searching for the prompt when
269         comint-use-prompt-regexp is non-nil.  (Bug#19710)
271 2015-03-03  Eli Zaretskii  <eliz@gnu.org>
273         * frame.el (frame-notice-user-settings): Refresh the value of
274         frame parameters after calling tty-handle-reverse-video.
275         Call face-set-after-frame-default with the actual parameters, to avoid
276         resetting colors back to unspecified.
277         (set-background-color, set-foreground-color): Pass the foreground
278         and background colors to face-set-after-frame-default.  (Bug#19802)
280 2015-03-03  Wolfgang Jenkner  <wjenkner@inode.at>
282         * net/network-stream.el (network-stream-open-tls): Respect the
283         :end-of-capability setting.
285 2015-03-03  Juri Linkov  <juri@linkov.net>
287         Revert the previous change of comint-line-beginning-position callers,
288         and modify comint-line-beginning-position instead.
290         * comint.el (comint-history-isearch-search)
291         (comint-history-isearch-message, comint-history-isearch-wrap):
292         Use comint-line-beginning-position instead of field-beginning.
293         (comint-send-input): Use either end-of-line or field-end
294         depending on comint-use-prompt-regexp.
295         (comint-line-beginning-position): Search backward
296         for comint-prompt-regexp if comint-use-prompt-regexp is non-nil.
297         Use field-beginning instead of line-beginning-position
298         if comint-use-prompt-regexp is nil.  (Bug#19710)
300 2015-03-03  Robert Pluim  <rpluim@gmail.com>  (tiny change)
302         * calendar/todo-mode.el (todo-item-done): When done items are
303         hidden, restore point to its location prior to invoking this
304         command.  (Bug#19727)
306 2015-03-03  Eli Zaretskii  <eliz@gnu.org>
308         * textmodes/artist.el (artist-ellipse-compute-fill-info):
309         Use mapcar, not mapc, to create the other half of fill-info.
310         (Bug#19763)
312 2015-03-03  Nicolas Petton  <nicolas@petton.fr>
314         * emacs-lisp/authors.el (authors-ignored-files)
315         (authors-renamed-files-alist): Additions.
317 2015-03-03  Michael Albinus  <michael.albinus@gmx.de>
319         * net/tramp.el (tramp-ssh-controlmaster-options): Don't use a
320         tempfile for ControlPath.  (Bug#19702)
322 2015-03-03  Michael Albinus  <michael.albinus@gmx.de>
324         * net/tramp.el (tramp-ssh-controlmaster-options): Use "%C" for
325         ControlPath if possible.  (Bug#19702)
327 2015-03-03  Glenn Morris  <rgm@gnu.org>
329         * emacs-lisp/authors.el (authors-obsolete-files-regexps)
330         (authors-valid-file-names, authors-renamed-files-alist): Additions.
332 2015-03-03  Alan Mackenzie  <acm@muc.de>
334         CC Mode: Stop Font Lock forcing fontification from BOL.  (Bug#19669)
335         * progmodes/cc-mode.el (c-font-lock-init):
336         Set font-lock-extend-region-functions to nil.
338 2015-03-03  Daniel Colascione  <dancol@dancol.org>
340         * emacs-lisp/generator.el: Make globals conform to elisp
341         style throughout.  Use more efficient font-lock patterns.
342         (cps-inhibit-atomic-optimization): Rename from
343         `cps-disable-atomic-optimization'.
344         (cps--gensym): New macro; replaces `cl-gensym' throughout.
345         (cps-generate-evaluator): Move the `iter-yield' local macro
346         definition here
347         (iter-defun, iter-lambda): from here.
349         (iter-defun): Use `macroexp-parse-body'.
351 2015-03-03  Daniel Colascione  <dancol@dancol.org>
353 2015-03-03  Stefan Monnier  <monnier@iro.umontreal.ca>
355         * progmodes/gud.el: Use lexical-binding (bug#19966).
357         * emacs-lisp/gv.el (gv-ref): Warn about likely problematic cases.
359 2015-03-03  Daniel Colascione  <dancol@dancol.org>
361         * emacs-lisp/generator.el: Make globals conform to elisp
362         style throughout.  Use more efficient font-lock patterns.
363         (cps-inhibit-atomic-optimization): Rename from
364         `cps-disable-atomic-optimization'.
365         (cps--gensym): New macro; replaces `cl-gensym' throughout.
366         (cps-generate-evaluator): Move the `iter-yield' local macro
367         definition here...
368         (iter-defun, iter-lambda): ...from here.
370 2015-03-03  Artur Malabarba  <bruce.connor.am@gmail.com>
372         * emacs-lisp/package.el (package-autoremove): Fix if logic.
374 2015-03-03  Martin Rudalics  <rudalics@gmx.at>
376         * window.el (window--dump-frame): For pixel height return total
377         number of frame's lines.
379 2015-03-03  Daniel Colascione  <dancol@dancol.org>
381         * emacs-lisp/cl-macs.el (cl-iter-defun): Add cl-iter-defun.
383         * emacs-lisp/generator.el (iter-defun): Correctly propagate
384         docstrings and declarations to underlying function.
386 2015-03-02  Daniel Colascione  <dancol@dancol.org>
388         * emacs-lisp/generator.el: New file.
390         * vc/vc.el (vc-responsible-backend): Add autoload cookie for
391         `vc-responsible-backend'.
393 2015-03-01  Michael Albinus  <michael.albinus@gmx.de>
395         * vc/vc-hooks.el (vc-state, vc-working-revision):
396         Use `vc-responsible-backend' in order to support unregistered files.
398         * vc/vc-rcs.el (vc-rcs-unregister): Support unregistered files.
400         * vc/vc-rcs.el (vc-rcs-fetch-master-state):
401         * vc/vc-sccs.el (vc-sccs-working-revision): Handle undefined
402         master name.
404         * vc/vc-src.el (vc-src-working-revision): Do not return an empty string.
406 2015-03-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
408         * net/shr.el (shr-insert): Remove soft hyphens.
409         (shr-insert): Also remove soft hypens from non-folded text.
411 2015-02-28  Eli Zaretskii  <eliz@gnu.org>
413         * mail/rmailmm.el (rmail-mime-insert-html): Decode HTML payload
414         when the charset is only given by the HTML <head>, and allow to
415         specify the encoding with "C-x RET c".
417 2015-02-27  Mark Laws  <mdl@60hz.org>
419         Support daemon mode on MS-Windows (bug#19688)
420         * server.el (server-process-filter): Force GUI frames on
421         MS-Windows in daemon mode, even if a TTY frame was requested.
423         * frameset.el (frameset-keep-original-display-p): Don't assume
424         windows-nt cannot be in daemon mode.
426         * frame.el (window-system-for-display): Don't assume windows-nt
427         cannot be in daemon mode.
429 2015-02-26  Ivan Shmakov  <ivan@siamics.net>
431         * faces.el (face-list-p): Split from face-at-point.
432         (face-at-point): Use it.
433         * facemenu.el (facemenu-add-face): Likewise.  (Bug#19912)
435 2015-02-26  Oscar Fuentes  <ofv@wanadoo.es>
437         * vc/vc.el (vc-annotate-switches): New defcustom.
438         * vc/vc-bzr.el (vc-bzr-annotate-switches): New defcustom.
439         (vc-bzr-annotate-command): Use vc-switches.
440         * vc/vc-cvs.el (vc-cvs-annotate-switches): New defcustom.
441         (vc-cvs-annotate-command): Use vc-switches.
442         * vc/vc-git.el (vc-git-annotate-switches): New defcustom.
443         (vc-git-annotate-command): Use vc-switches.
444         * vc/vc-hg.el (vc-hg-annotate-switches): New defcustom.
445         (vc-hg-annotate-command): Use vc-switches.
446         * vc/vc-mtn.el (vc-mtn-annotate-switches): New defcustom.
447         (vc-mtn-annotate-command): Use vc-switches.
448         * vc/vc-svn.el (vc-svn-annotate-switches): New defcustom.
449         (vc-svn-annotate-command): Use vc-switches.
451 2015-02-26  Alan Mackenzie  <acm@muc.de>
453         Handle "#" operator properly inside macro.  Fix coding bug.
455         * progmodes/cc-mode.el (c-neutralize-syntax-in-and-mark-CPP):
456         On finding a "#" which looks like the start of a macro, check it
457         isn't already inside a macro.
459         * progmodes/cc-engine.el (c-state-safe-place): Don't record a new
460         "safe" position into the list of them when this is beyond our
461         current position.
463 2015-02-26  Martin Rudalics  <rudalics@gmx.at>
465         * menu-bar.el (menu-bar-non-minibuffer-window-p): Return nil when
466         the menu frame is dead.  (Bug#19728)
468 2015-02-26  Fabián Ezequiel Gallina  <fgallina@gnu.org>
470         python.el: Handle tabs in python-indent-dedent-line.
471         * progmodes/python.el (python-indent-dedent-line): Fixes for
472         indentation with tabs.  Thanks to <dale@codefu.org> (Bug#19730).
474 2015-02-26  Fabián Ezequiel Gallina  <fgallina@gnu.org>
476         * progmodes/python.el (python-indent-context): Respect user
477         indentation after comment.
479 2015-02-26  Tassilo Horn  <tsdh@gnu.org>
481         * textmodes/reftex-vars.el (featurep): Conditionalize value of
482         reftex-label-regexps in order to stay compatible with XEmacs 21.5
483         which has no explicitly numbered groups in regexps (bug#19714).
485 2015-02-26  Daiki Ueno  <ueno@gnu.org>
487         * net/dbus.el (dbus-register-signal): Convert "N" of ":argN" to
488         integer before comparison.
490 2015-02-25  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
492         * progmodes/elisp-mode.el (elisp--eval-last-sexp): Document argument.
494 2015-02-25  Oleh Krehel  <ohwoeowho@gmail.com>
496         * emacs-lisp/check-declare.el (check-declare-warn):
497         Use compilation-style warnings.
498         (check-declare-files): Make sure that
499         `check-declare-warning-buffer' is in `compilation-mode'.
501 2015-02-25  Oleh Krehel  <ohwoeowho@gmail.com>
503         * emacs-lisp/check-declare.el (check-declare-ext-errors):
504         New defcustom.
505         (check-declare): New defgroup.
506         (check-declare-verify): When `check-declare-ext-errors' is
507         non-nil, warn about an unfound function, instead of saying
508         "skipping external file".
510 2015-02-25  Tassilo Horn  <tsdh@gnu.org>
512         * textmodes/reftex-vars.el (reftex-include-file-commands):
513         Call reftex-set-dirty on changes.
515 2015-02-25  Stefan Monnier  <monnier@iro.umontreal.ca>
517         * emacs-lisp/edebug.el (edebug--display): Save-excursion (bug#19611).
518         * emacs-lisp/debug.el (debugger-env-macro): Remove redundant
519         save-excursion.
521 2015-02-24  Glenn Morris  <rgm@gnu.org>
523         * mail/rmailsum.el (rmail-summary-previous-all)
524         (rmail-summary-previous-msg): Simplify.
526 2015-02-25  Artur Malabarba  <bruce.connor.am@gmail.com>
528         * simple.el (region-active-p): Fix doc to say non-nil.
530 2015-02-24  Samer Masterson  <nosefrog@gmail.com>
532         * eshell/em-hist.el (eshell-hist-parse-word-designator):
533         Return args joined with " ".
534         * eshell/em-pred.el (eshell-parse-modifiers): Correct docstring.
535         (eshell-hist-parse-modifier): Pass mod a list instead of a string
536         (bug#18960).
538 2015-02-24  Karl Fogel  <kfogel@red-bean.com>  (tiny change)
540         * comint.el (comint-mode-map): Fix obvious typo.
542 2015-02-24  Johan Claesson  <johanclaesson@bredband.net>  (tiny change)
544         * filecache.el (file-cache-filter-regexps):
545         Add lock files.  (Bug#19516)
547 2015-02-24  Glenn Morris  <rgm@gnu.org>
549         * mail/rmailsum.el (rmail-summary-next-all)
550         (rmail-summary-previous-all, rmail-summary-next-msg):
551         Fix handling of optional argument.  (Bug#19916)
553         * progmodes/f90.el (f90-beginning-of-subprogram)
554         (f90-end-of-subprogram, f90-match-end):
555         Handle continued strings where the continuation does not start
556         with "&" and happens to match our regexp.  (Bug#19809)
558 2015-02-24  Bozhidar Batsov  <bozhidar@batsov.com>
560         * comint.el (comint-clear-buffer): New command.
561         (comint-mode-map): Bind `comint-clear-buffer' to 'C-c M-o'.
563 2015-02-23  Pete Williamson  <petewil0@googlemail.com>  (tiny change)
565         Use ${EXEEXT} more uniformly in makefiles
566         * Makefile.in (EMACS): Append ${EXEEXT}.
568 2015-02-23  Sam Steingold  <sds@gnu.org>
570         * files.el (recover-session): Handle `auto-save-list-file-prefix'
571         being a directory (empty non-directory part).
573 2015-02-23  Magnus Henoch  <magnus.henoch@gmail.com>
575         * net/sasl.el (sasl-mechanism-alist): Refer to sasl-scram-rfc
576         instead of sasl-scram-sha-1, as the former is the name that can be
577         required.
579         * net/sasl-scram-rfc.el (sasl-scram-sha-1-steps)
580         (sasl-scram-sha-1-client-final-message)
581         (sasl-scram-sha-1-authenticate-server): Move to end of file.
583 2015-02-23  Paul Eggert  <eggert@cs.ucla.edu>
585         * bindings.el (ctl-x-map): Use [?\C-\;] to get the desired binding.
586         (Bug#19826)
588 2015-02-23  Stefan Monnier  <monnier@iro.umontreal.ca>
590         * emacs-lisp/macroexp.el (macroexp-parse-body): Handle cl-declare
591         and :documentation.  Change return value format accordingly.
592         * emacs-lisp/cl-generic.el (cl--generic-lambda):
593         * emacs-lisp/pcase.el (pcase-lambda): Adjust accordingly.
594         * emacs-lisp/cl-macs.el (cl--transform-lambda): Use macroexp-parse-body.
596 2015-02-23  Dmitry Gutov  <dgutov@yandex.ru>
598         Introduce `xref-etags-mode'.
599         * progmodes/xref.el (xref-etags-mode--saved): New variable.
600         (xref-etags-mode): New minor mode.  (Bug#19466)
602 2015-02-22  Lars Magne Ingebrigtsen  <larsi@gnus.org>
604         * dom.el (dom-previous-sibling): New function.
606 2015-02-21  Paul Eggert  <eggert@cs.ucla.edu>
608         * bindings.el (ctl-x-map): There is no 'C-;'.
609         For now, make do with 'M-;'; this allows 'make bootstrap' to work.
610         Perhaps some other binding should be chosen.  (Bug#19826)
612 2015-02-21  Artur Malabarba  <bruce.connor.am@gmail.com>
614         * bindings.el (ctl-x-map): Fix `comment-line' binding.  (Bug#19826)
616 2015-02-21  Michael Albinus  <michael.albinus@gmx.de>
618         * autorevert.el (auto-revert-notify-add-watch)
619         (auto-revert-notify-handler, auto-revert-buffers): Handle also
620         buffers without an associated file, like dired buffers.  (Bug#16112)
622 2015-02-21  Dima Kogan  <dima@secretsauce.net>
624         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
625         (global-auto-revert-mode): Remove (let (auto-revert-use-notify) ... )
626         wrappers.  Call (auto-revert-buffers) consequently in order to
627         install handlers.
629 2015-02-21  Wilson Snyder  <wsnyder@wsnyder.org>
631         Sync with upstream verilog-mode revision 0d6420b.
632         * progmodes/verilog-mode.el (verilog-mode-version): Update.
633         (vector-skip-list): Remove.
634         (verilog-auto-inst-port, verilog-auto-inst-port-list)
635         (verilog-auto-inst, verilog-auto-inst-param):
636         Use arguments rather than vector-skip.
637         (verilog-auto-inst-port): Fix AUTOINST interfaces to not show
638         modport if signal attachment is itself a modport.
639         Reported by Matthew Lovell.
641 2015-02-21  Reto Zimmermann  <reto@gnu.org>
643         Sync with upstream vhdl mode v3.37.1.  Add VHDL'08 support.
644         * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp)
645         (vhdl-doc-release-notes): Update.
646         (vhdl-standard): Add VHDL'08 option.
647         (vhdl-sensitivity-list-all): New option.
648         (vhdl-directive-keywords): Add psl.
649         (vhdl-offsets-alist-default, vhdl-mode-abbrev-table-init)
650         (vhdl-template-construct-alist-init, vhdl-create-mode-menu):
651         (vhdl-imenu-generic-expression): Add context, directive.
652         (vhdl-offsets-alist, vhdl-mode, vhdl-doc-keywords): Doc fixes.
653         (vhdl-template-map-init): Add vhdl-template-context.
654         (vhdl-mode-syntax-table): Support VHDL'08 block comments.
655         (vhdl-create-mode-menu): Add some entries.
656         (vhdl-08-keywords, vhdl-08-types, vhdl-08-attributes)
657         (vhdl-08-functions, vhdl-08-packages, vhdl-08-directives):
658         New constants.
659         (vhdl-directives): New variable.
660         (vhdl-words-init, vhdl-template-process)
661         (vhdl-template-replace-header-keywords): Support VHDL'08.
662         (vhdl-abbrev-list-init): Add vhdl-directives.
663         (vhdl-in-comment-p, vhdl-in-literal, vhdl-win-il)
664         (vhdl-forward-syntactic-ws, vhdl-get-syntactic-context)
665         (vhdl-lineup-comment): Handle block comments and directives.
666         (vhdl-beginning-of-directive, vhdl-template-context)
667         (vhdl-template-context-hook): New functions.
668         (vhdl-libunit-re, vhdl-defun-re, vhdl-begin-p)
669         (vhdl-corresponding-begin, vhdl-get-library-unit, vhdl-regress-line)
670         (vhdl-align-declarations, vhdl-beginning-of-block, vhdl-end-of-block)
671         (vhdl-font-lock-keywords-2, vhdl-get-end-of-unit)
672         (vhdl-scan-context-clause): Add context.
674 2015-02-20  Glenn Morris  <rgm@gnu.org>
676         * calendar/solar.el (solar-sunrise-sunset-string):
677         Shorten message a little.
678         (sunrise-sunset): Use message rather than a window.  (Bug#19859)
680         * progmodes/f90.el (f90-keywords-re, f90-procedures-re)
681         (f90-font-lock-keywords-2): Some F2008 additions.
683 2015-02-19  Dima Kogan  <dima@secretsauce.net>
685         * autorevert.el (auto-revert-buffers-counter)
686         (auto-revert-buffers-counter-lockedout): New variables.
687         (auto-revert-buffers): Increase `auto-revert-buffers-counter'.
688         (auto-revert-notify-handler): Apply `auto-revert-handler' if not
689         suppressed by lockout.  (Bug#18958)
691 2015-02-19  Stefan Monnier  <monnier@iro.umontreal.ca>
693         * emacs-lisp/eieio-opt.el (eieio-help-class): `eieio-class-parents'
694         returns classes, not class names (bug#19891).
696         * emacs-lisp/cl-macs.el (cl-struct-slot-value): Handle a nil type.
698         * emacs-lisp/smie.el (smie-prec2->grammar): Fix corner case problem.
700 2015-02-18  Kelly Dean  <kelly@prtime.org>
702         * register.el (jump-to-register):
703         * emacs-lisp/lisp.el (check-parens):
704         Push mark before goto-char so user doesn't lose his previous place.
706 2015-02-18  Kelly Dean  <kelly@prtime.org>
708         * rect.el (rectangle-mark-mode):
709         Suppress superfluous "Mark set" message from push-mark.
711 2015-02-18  Kelly Dean  <kelly@prtime.org>
713         * help-mode.el (help-go-back, help-go-forward, help-follow):
714         * simple.el (yank-pop, pop-to-mark-command, exchange-point-and-mark):
715         * winner.el (winner-redo):
716         * windmove.el (windmove-do-window-select):
717         * register.el (jump-to-register, increment-register, insert-register)
718         (append-to-register, prepend-to-register):
719         * files.el (find-alternate-file, abort-if-file-too-large, write-file)
720         (set-visited-file-name):
721         * emacs-lisp/lisp.el (kill-backward-up-list):
722         Use user-error instead of error.  (Bug#14480)
724 2015-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
726         * emacs-lisp/checkdoc.el (checkdoc-show-diagnostics): Don't make bogus
727         assumptions about window ordering.
729 2015-02-16  Kelly Dean  <kelly@prtime.org>
731         * files.el (insert-file-contents-literally): Fix docstring typo.
733 2015-02-16  Kelly Dean  <kelly@prtime.org>
735         * emacs-lisp/easy-mmode.el (define-minor-mode): Process macro
736         arguments correctly. (Bug#19685)
737         (define-minor-mode): Clarify docstring.
738         Clarify mode switch messages for minor modes.  (Bug#19690)
740 2015-02-16  Kelly Dean  <kelly@prtime.org>
742         * emacs-lisp/package-x.el (package-upload-buffer-internal):
743         Create valid tar files.  (Bug#19536)
745 2015-02-16  Kelly Dean  <kelly@prtime.org>
747         * desktop.el (desktop-read): Conditionally re-enable desktop autosave.
748         (Bug#19059)
750 2015-02-16  Kelly Dean  <kelly@prtime.org>
752         * help-mode.el (help-do-xref): Prevent duplicated display of Info
753         buffer, and prevent interference with existing buffer.  (Bug#13190)
755 2015-02-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
757         python.el: Do not deactivate mark on shell fontification.  (Bug#19871)
759         * progmodes/python.el (python-shell-font-lock-post-command-hook):
760         Do not deactivate mark on fontification.
762 2015-02-16  Ivan Shmakov  <ivan@siamics.net>
764         * net/eww.el: Fix desktop support.  (Bug#19226)
765         (eww-mode): Add autoload cookie.
766         (eww-restore-desktop): Use inhibit-read-only.
768         * net/eww.el (eww-suggest-uris): Add autoload cookie, so that
769         add-hook works correctly even if the file is not yet loaded.
771 2015-02-16  Stefan Monnier  <monnier@iro.umontreal.ca>
773         * emacs-lisp/eieio.el (defclass): Use make-instance rather than
774         eieio-constructor.
775         (set-slot-value): Mark as obsolete.
776         (eieio-object-class-name): Improve call to eieio-class-name.
777         (eieio-slot-descriptor-name, eieio-class-slots): New functions.
778         (object-slots): Use it.  Declare obsolete.
779         (eieio-constructor): Merge it with `make-instance'.
780         (initialize-instance): Use `dolist'.
781         (eieio-override-prin1, eieio-edebug-prin1-to-string):
782         Use eieio--class-print-name.
784         * emacs-lisp/eieio-core.el (eieio--class-print-name): New function.
785         (eieio-class-name): Make it do what the docstring claims.
786         (eieio-defclass-internal): Simplify since `prots' isn't used any more.
787         (eieio--slot-name-index): Simplify accordingly.
788         (eieio-barf-if-slot-unbound): Pass the class object rather than its
789         name to `slot-unbound'.
791         * emacs-lisp/eieio-base.el (make-instance): Add a method here rather
792         than on eieio-constructor.
794 2015-02-16  Stefan Monnier  <monnier@iro.umontreal.ca>
796         * emacs-lisp/cl-macs.el (cl-defstruct): Keep type=nil by default.
797         * emacs-lisp/cl-preloaded.el (cl-struct-define): Add sanity checks
798         about relationship between `type', `named', and `slots'.
799         * emacs-lisp/cl-generic.el (cl--generic-struct-tagcode): Adjust to new
800         value of `cl-struct-type' property.
802 2015-02-15  Jérémy Compostella  <jeremy.compostella@gmail.com>
804         * net/tramp-sh.el (tramp-remote-process-environment): Disable paging
805         with PAGER=cat.  (Bug#19870)
807 2015-02-14  Artur Malabarba  <bruce.connor.am@gmail.com>
809         * emacs-lisp/package.el (package-read-all-archive-contents):
810         Don't build the compatibility table.
811         (package-refresh-contents, package-initialize): Do build the
812         compatibility table.
813         (package--build-compatibility-table): New function.
814         (describe-package-1): Describe why a package is incompatible.
816 2015-02-14  Stefan Monnier  <monnier@iro.umontreal.ca>
818         * emacs-lisp/cl-preloaded.el (cl-struct-define): Register as children
819         of the parent.
820         (cl--assertion-failed): New function.
821         (cl-assertion-failed): Move in from cl-lib.el.
823         * emacs-lisp/cl-macs.el (cl-defstruct): Don't generate code to register
824         as children of its parents.
825         (cl--make-type-test, cl--compiler-macro-typep): Remove functions.
826         (cl-typep): Reimplement using define-inline.
827         (cl-assert): Use cl--assertion-failed.
828         (cl-struct-slot-value): Use define-inline.
830         * emacs-lisp/cl-lib.el: Move autoloaded code to cl-preload.
832         * textmodes/flyspell.el (flyspell-word): Defvar (bug#19844).
833         (flyspell-generic-check-word-p): Mark as obsolete.
835 2015-02-13  Artur Malabarba  <bruce.connor.am@gmail.com>
837         * emacs-lisp/package.el (package--compatibility-table): New var.
838         (package--add-to-compatibility-table): New function.
839         (package-read-all-archive-contents): Populate compatibility table.
840         (package--incompatible-p): Also look in dependencies.
841         (describe-package-1): Fix "incompat" handling.
843 2015-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
845         * net/rfc2104.el: Moved here from lisp/gnus.
847 2015-02-13  Magnus Henoch  <magnus.henoch@gmail.com>
849         * net/sasl-scram-rfc.el: New file.
851         * net/sasl.el (sasl-mechanisms): Remove SCRAM-MD5.
852         Add SCRAM-SHA-1 first.
853         (sasl-mechanism-alist): Remove SCRAM-MD5 entry.  Add SCRAM-SHA-1
854         entry (bug#17636).
856 2015-02-13  Lars Ingebrigtsen  <larsi@gnus.org>
858         * net/shr.el (shr-tag-li): Speed up rendering pages with lots of
859         <ul>.
861 2015-02-12  Oleh Krehel  <ohwoeowho@gmail.com>
863         * progmodes/gdb-mi.el (gdb-display-io-nopopup): New defcustom.
864         (gdb-inferior-filter): Don't pop up the buried output buffer when
865         `gdb-display-io-nopopup' is non-nil.
867 2015-02-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
869         python.el: Allow killing shell buffer if process is dead.  (Bug#19823)
871         * progmodes/python.el (python-shell-font-lock-kill-buffer):
872         Don't require a running process.
873         (python-shell-font-lock-post-command-hook): Fontify only if the
874         shell process is running.
876 2015-02-11  Stefan Monnier  <monnier@iro.umontreal.ca>
878         * hi-lock.el (hi-lock-unface-buffer): Don't call
879         font-lock-remove-keywords if not needed (bug#19796).
881 2015-02-11  Artur Malabarba  <bruce.connor.am@gmail.com>
883         * emacs-lisp/package.el (package-install): Invert the second
884         argument, for better backwards compatibility.
885         (package-install-button-action, package-reinstall)
886         (package-menu-execute): Account for the change.
888 2015-02-11  Nicolas Petton  <nicolas@petton.fr>
890         * emacs-lisp/seq.el (seq-reverse): Add a backward-compatible
891         version of seq-reverse that works on sequences in Emacs 24.
892         Bump seq.el version to 1.2.
894 2015-02-11  Artur Malabarba  <bruce.connor.am@gmail.com>
896         * emacs-lisp/package.el (package--incompatible-p): New function.
897         Return non-nil if PKG has no chance of being installable.
898         (package--emacs-version-list): New variable.
899         (describe-package-1, package-desc-status)
900         (package-menu--print-info, package-menu--status-predicate):
901         Account for the "incompat" status.
903 2015-02-11  Martin Rudalics  <rudalics@gmx.at>
905         * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
906         Rename frame parameter `maximized' to `fullscreen-restore'.
907         Restore fullwidth/-height after fullboth state.  Update doc-strings.
909 2015-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
911         * net/shr.el (shr-insert): Make sure the space inserted has the
912         right font (for width).
913         (shr-fill-line): Preserve background colours when indenting/folding.
914         (shr-ensure-paragraph): Don't insert a new paragraph as the first
915         item in a <li>.
917 2015-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
919         * net/shr.el (shr-use-fonts): New variable.
920         (shr-fill-text): Rename from "fold".
921         (shr-pixel-column, shr-pixel-region, shr-string-pixel-width):
922         New functions.
923         (shr-insert): Just insert, don't fill the text.  Filling is now
924         done afterwards per display unit.
925         (shr-fill-lines, shr-fill-line): New functions to fill text on a
926         per-unit base.
927         (shr-find-fill-point): Take a "beginning" parameter.
928         (shr-indent): Indent using the :width display parameter when using
929         fonts.
930         (shr-parse-style): Ignore "inherit" values, since we already do that.
931         (shr-tag-img): Remove the insertion states.
932         (shr-tag-blockquote): New-style filling.
933         (shr-tag-dd): Ditto.
934         (shr-tag-li): Ditto.
935         (shr-mark-fill): New function to mark lines that need filling.
936         (shr-tag-h1): Use a larger font.
937         (shr-tag-table-1): Get the natural and suggested widths in one
938         rendering.
939         (shr-tag-table): Create the "fixed" version of the table only once
940         so that we can cache data in the table.
941         (shr-insert-table): Get colspan calculations right by having
942         zero-width columns after colspan ones.
943         (shr-expand-alignments): New function to make :align-to specs work
944         right when rendered in one buffer and displayed in another one.
945         (shr-insert-table-ruler): Use :align-to to get the widths right.
946         (shr-make-table): Cache more.
947         (shr-make-table-1): Use the new <td> data layout.
948         (shr-pixel-buffer-width): New function.
949         (shr-render-td): Add a caching layer.
950         (shr-dom-max-natural-width): New function.
951         (shr-tag-h1): Don't use variable-pitch fonts on fontless rendering.
952         (shr-tag-tt): New function.
953         (shr-tag-hr): Compute the right length when using fonts.
954         (shr-table-widths): Off-by-one error in width computation.
955         (shr-expand-newlines): Remove dead code.
956         (shr-insert-table): Extend background colors to the end of the column.
957         (shr-insert-table): Only copy the background, not underline and
958         the like.
959         (shr-face-background): New function.
961 2015-02-10  Fabián Ezequiel Gallina  <fgallina@gnu.org>
963         python.el: Improved shell font lock respecting markers.  (Bug#19650)
965         * progmodes/python.el
966         (python-shell-font-lock-get-or-create-buffer): Use special buffer name.
967         (python-shell-font-lock-with-font-lock-buffer): Enable font lock.
968         (python-shell-font-lock-post-command-hook): Fontify by copying text
969         properties from fontified buffer to shell, keeping markers unchanged.
970         (python-shell-font-lock-turn-off): Fix typo.
971         (python-util-text-properties-replace-name): Delete function.
973 2015-02-09  Nicolas Petton  <nicolas@petton.fr>
975         * emacs-lisp/seq.el (seq-group-by): Improves seq-group-by to
976         return sequence elements in correct order.
978 2015-02-09  Simen Heggestøyl  <simenheg@gmail.com>  (tiny change)
980         * textmodes/css-mode.el (css-smie-rules): Fix paren indent (bug#19815).
982 2015-02-09  Stefan Monnier  <monnier@iro.umontreal.ca>
984         * emacs-lisp/cl-generic.el (cl--generic-lambda): Use macroexp-parse-body.
986         * emacs-lisp/eieio-core.el (eieio-oset-default): Catch the unexpected
987         case where the default value would be re-interpreted as a form!
989 2015-02-09  Christopher Genovese  <genovese@cmu.edu>  (tiny change)
991         * help-fns.el (help-fns--signature): Keep doc for keymap.
993 2015-02-09  Kelly Dean  <kelly@prtime.org>
995         * desktop.el: Save mark-ring less verbosely.
996         (desktop-var-serdes-funs): New var.
997         (desktop-buffer-info, desktop-create-buffer): Use it.
998         (desktop-file-version): Update to 208.
1000 2015-02-09  Leo Liu  <sdl.web@gmail.com>
1002         * emacs-lisp/pcase.el (pcase-lambda): New Macro.  (Bug#19814)
1004         * emacs-lisp/lisp-mode.el (el-kws-re): Include `pcase-lambda'.
1006         * emacs-lisp/macroexp.el (macroexp-parse-body): New function.
1008 2015-02-08  Paul Eggert  <eggert@cs.ucla.edu>
1010         Port to platforms lacking test -a and -o
1011         * Makefile.in (compile-clean):
1012         * net/tramp-sh.el (tramp-find-executable):
1013         Prefer '&&' and '||' to 'test -a' and 'test -o'.
1015 2015-02-08  Artur Malabarba  <bruce.connor.am@gmail.com>
1017         * newcomment.el (comment-line): Fix missing paren.
1019 2015-02-08  Ulrich Müller  <ulm@gentoo.org>
1021         * play/gamegrid.el: Update comment to reflect that the
1022         'update-game-score' helper program is now setgid by default.
1024 2015-02-08  David Kastrup  <dak@gnu.org>
1026         * subr.el (apply-partially): Use lexical binding here.
1028 2015-02-08  Artur Malabarba  <bruce.connor.am@gmail.com>
1030         * newcomment.el (comment-line): New command.
1032         * bindings.el (ctl-x-map): Bind to `C-x C-;'.
1034 2015-02-08  Oleh Krehel  <ohwoeowho@gmail.com>
1036         * outline.el (outline-show-entry): Fix one invisible char for the
1037         file's last outline.  (Bug#19493)
1039 2015-02-08  Stefan Monnier  <monnier@iro.umontreal.ca>
1041         * subr.el (indirect-function): Change advertised calling convention.
1043 2015-02-08  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1045         python.el: Fix completion-at-point.  (Bug#19667)
1047         * progmodes/python.el
1048         (python-shell-completion-native-get-completions): Force process buffer.
1049         (python-shell-completion-at-point): Handle case where call is not
1050         in a shell buffer.
1052 2015-02-08  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1054         python.el: Fix shell font-lock multiline input.  (Bug#19744)
1056         * progmodes/python.el
1057         (python-shell-font-lock-post-command-hook): Handle multiline input.
1059 2015-02-08  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1061         python.el: Make shell font-lock respect markers.  (Bug#19650)
1063         * progmodes/python.el (python-shell-font-lock-cleanup-buffer):
1064         Use `erase-buffer`.
1065         (python-shell-font-lock-comint-output-filter-function):
1066         Handle newlines.
1067         (python-shell-font-lock-post-command-hook): Respect markers on
1068         text fontification.
1070 2015-02-07  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1072         python.el: Keep eldoc visible while typing args.  (Bug#19637)
1073         * progmodes/python.el (python-eldoc--get-symbol-at-point):
1074         New function based on Carlos Pita <carlosjosepita@gmail.com> patch.
1075         (python-eldoc--get-doc-at-point, python-eldoc-at-point): Use it.
1077 2015-02-07  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1079         Fix hideshow integration.  (Bug#19761)
1080         * progmodes/python.el
1081         (python-hideshow-forward-sexp-function): New function based on
1082         Carlos Pita <carlosjosepita@gmail.com> patch.
1083         (python-mode): Make `hs-special-modes-alist` use it and initialize
1084         the end regexp with the empty string to avoid skipping parens.
1086 2015-02-07  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1088         * progmodes/python.el (python-check-custom-command): Do not use
1089         defvar-local for compat with Emacs<24.3.
1091 2015-02-07  Martin Rudalics  <rudalics@gmx.at>
1093         * frame.el (frame-notice-user-settings):
1094         Update `frame-size-history'.
1095         (make-frame): Update `frame-size-history'.
1096         Call `frame-after-make-frame'.
1097         * faces.el (face-set-after-frame-default): Remove call to
1098         frame-can-run-window-configuration-change-hook.
1100 2015-02-06  Dmitry Gutov  <dgutov@yandex.ru>
1102         * vc/vc-cvs.el (vc-cvs-dir-status-files): Don't pass DIR to
1103         `vc-cvs-command' (bug#19732).
1105 2015-02-06  Nicolas Petton  <nicolas@petton.fr>
1107         * emacs-lisp/seq.el (seq-mapcat, seq-partition, seq-group-by):
1108         New functions.
1109         * emacs-lisp/seq.el (seq-drop-while, seq-take-while, seq-count)
1110         (seq--drop-list, seq--take-list, seq--take-while-list):
1111         Better docstring.
1113 2015-02-06  Artur Malabarba  <bruce.connor.am@gmail.com>
1115         * doc-view.el (doc-view-kill-proc-and-buffer): Obsolete. Use
1116         `image-kill-buffer' instead.
1118 2015-02-06  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1120         * net/ldap.el (ldap-search-internal): Fix docstring.
1122 2015-02-06  Lars Ingebrigtsen  <larsi@gnus.org>
1124         * subr.el (define-error): The error conditions may be constant
1125         lists, so use `append' to concatenate them.
1127 2015-02-06  Wolfgang Jenkner  <wjenkner@inode.at>
1129         * net/network-stream.el (network-stream-open-tls): Respect the
1130         :end-of-capability setting.
1132 2015-02-05  Artur Malabarba  <bruce.connor.am@gmail.com>
1134         * emacs-lisp/package.el (package--sort-by-dependence):
1135         New function.  Return PACKAGE-LIST sorted by dependencies.
1136         (package-menu-execute): Use it to delete packages in order.
1137         (package--sort-deps-in-alist): New function.
1138         (package-menu-mark-install): Can mark dependencies.
1139         (package--newest-p): New function.
1140         (package-delete): Don't deselect when deleting an older version of
1141         an upgraded package.
1143         * emacs-lisp/package.el: Add missing (require 'subr-x)
1145 2015-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1147         * textmodes/css-mode.el (scss-smie--not-interpolation-p): Vars can be
1148         hyphenated (bug#19263).
1150         * textmodes/css-mode.el (css-fill-paragraph): Fix filling in presence
1151         of variable interpolation (bug#19751).
1153 2015-02-05  Era Eriksson  <era+emacs@iki.fi>
1155         * json.el (json-end-of-file): New error (bug#19768).
1156         (json-pop, json-read): Use it.
1158 2015-02-05  Kelly Dean  <kelly@prtime.org>
1160         * help-mode.el (help-xref-interned): Pass BUFFER and FRAME to
1161         `describe-variable'.
1163         * help-fns.el (describe-function-or-variable): New function.
1165         * help.el (help-map): Bind `describe-function-or-variable' to o.
1166         (help-for-help-internal): Document o key.
1168 2015-02-05  Stefan Monnier  <monnier@iro.umontreal.ca>
1170         * emacs-lisp/eieio-compat.el (eieio--defmethod): Use new
1171         special (:documentation ...) feature.
1172         * emacs-lisp/eieio-core.el (eieio-make-class-predicate)
1173         (eieio-make-child-predicate): Same.
1174         (eieio-copy-parents-into-subclass): Remove unused arg.
1175         (eieio-defclass-internal): Adjust call accordingly and remove redundant
1176         `pname' var.
1177         (eieio--slot-name-index): Remove unused arg `obj' and adjust all
1178         callers accordingly.
1180         * emacs-lisp/cconv.el (cconv--convert-function):
1181         Add `docstring' argument.
1182         (cconv-convert): Use it to handle the new (:documentation ...) form.
1183         (cconv-analyze-form): Handle the new (:documentation ...) form.
1185         * emacs-lisp/bytecomp.el:
1186         (byte-compile-initial-macro-environment): Use macroexp-progn.
1187         (byte-compile-cl-warn): Don't silence use of cl-macroexpand-all.
1188         (byte-compile-file-form-defvar-function): Rename from
1189         byte-compile-file-form-define-abbrev-table.
1190         (defvaralias, byte-compile-file-form-custom-declare-variable): Use it.
1191         (byte-compile): Use byte-compile-top-level rather than
1192         byte-compile-lambda so we can compile non-values.
1193         (byte-compile-form): Add warnings for failed uses of lexical vars via
1194         quoted symbols.
1195         (byte-compile-unfold-bcf): Improve message for failed inlining.
1196         (byte-compile-make-closure): Handle new format of internal-make-closure
1197         for dynamically-generated docstrings.
1199         * delsel.el: Deprecate the `kill' option.  Use lexical-binding.
1200         (open-line): Delete like all other commands, instead of killing.
1201         (delete-active-region): Don't define any return any value.
1203         * progmodes/python.el: Try to preserve compatibility with Emacs-24.
1204         (python-mode): Don't assume eldoc-documentation-function has a non-nil
1205         default.
1207 2015-02-04  Sam Steingold  <sds@gnu.org>
1209         * progmodes/python.el (python-indent-calculate-indentation):
1210         Avoid the error when computing top-level indentation.
1212 2015-02-04  Stefan Monnier  <monnier@iro.umontreal.ca>
1214         * emacs-lisp/cl-generic.el (cl--generic-member-method): Fix paren typo.
1216         * textmodes/flyspell.el: Use lexical-binding and cl-lib.
1217         (mail-mode-flyspell-verify): Fix last change.
1218         (flyspell-external-point-words, flyspell-large-region):
1219         Avoid add-to-list on local vars.
1221 2015-02-04  Tassilo Horn  <tsdh@gnu.org>
1223         * emacs-lisp/package.el (package-installed-p): Fix typo causing
1224         void-variable error.
1226 2015-02-04  Artur Malabarba  <bruce.connor.am@gmail.com>
1228         * image-mode.el (image-kill-buffer): New command.
1229         (image-mode-map): Bind it to k.
1231         * emacs-lisp/package.el (package-delete): Remove package from
1232         `package-selected-packages' even if it can't be deleted.
1233         (package-installed-p): Accept package-desc objects.
1234         (package-install): Can be used to mark dependencies as
1235         selected. When given a package-desc object which is already
1236         installed, the package is not downloaded again, but it is marked
1237         as selected (if it wasn't already).
1238         (package-reinstall): Accept package-desc objects.
1240 2015-02-03  Artur Malabarba  <bruce.connor.am@gmail.com>
1242         * emacs-lisp/package.el (package-delete): Document NOSAVE.
1243         (package--get-deps): delete-dups when ONLY is nil.
1244         (package-autoremove): Warn the user if `package-selected-packages'
1245         is empty.
1247         (package--user-selected-p): New function.
1248         (package-delete, package-install, package-install-from-buffer):
1249         Use it
1250         (package-selected-packages): Mention it.
1252         (package-initialize): Don't populate `package-selected-packages'.
1253         (package-install-user-selected-packages, package-autoremove):
1254         Special handling for empty `package-selected-packages'.
1255         (package-install): Fix when PKG is a package-desc.
1257         (package-desc-status): Add "dependency" status to the Package
1258         Menu.
1259         (package-menu--status-predicate, package-menu--print-info)
1260         (package-menu-mark-delete, package-menu--find-upgrades)
1261         (package-menu--status-predicate, describe-package-1): Use it
1263         (package--removable-packages): New function.
1264         (package-autoremove): Use it.
1265         (package-menu-execute): Offer to remove unneeded packages.
1267         (package--read-pkg-desc, package-tar-file-info): Fix reference to
1268         tar-desc.
1270 2015-02-03  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1272         * emacs-lisp/package.el (package-reinstall): Don't change package's selected status.
1273         (package-delete): New NOSAVE argument.
1275 2015-02-03  Michael Albinus  <michael.albinus@gmx.de>
1277         * net/tramp-sh.el (tramp-histfile-override): Fix docstring.
1278         (tramp-open-shell, tramp-maybe-open-connection): Set also
1279         HISTFILESIZE and HISTSIZE when needed.  (Bug#19731)
1281 2015-02-02  Artur Malabarba  <bruce.connor.am@gmail.com>
1283         * emacs-lisp/package.el (package--find-non-dependencies):
1284         New function.
1285         (package-initialize): Use it to populate `package-selected-packages'.
1286         (package-menu-execute): Clean unnecessary `and'.
1287         (package--get-deps): Fix returning duplicates.
1289 2015-02-02  Michael Albinus  <michael.albinus@gmx.de>
1291         * net/tramp-sh.el (tramp-histfile-override): Add another choice t.
1292         Use it as default.
1293         (tramp-open-shell, tramp-maybe-open-connection): Support it.
1294         (Bug#19731)
1296 2015-02-02  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1298         * emacs-lisp/package.el (package-delete): Remove package from
1299         package-selected-packages.
1300         (package-autoremove): Remove unneeded variable.
1302 2015-02-01  Artur Malabarba  <bruce.connor.am@gmail.com>
1304         * emacs-lisp/package.el (package-selected-packages): Fix :type
1305         (package-install): Rename ARG to MARK-SELECTED.
1306         (package--get-deps): Fix for indirect dependencies.
1307         (package-used-elsewhere-p): Rename to
1308         (package--used-elsewhere-p): New function.
1309         (package-reinstall, package-user-selected-packages-install)
1310         (package-autoremove): Use sharp-quote.
1311         (package-user-selected-packages-install): Reindent and rename to
1312         (package-install-user-selected-packages): New function.
1314 2015-02-01  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
1316         * emacs-lisp/package.el: Don't allow deleting dependencies.
1318         (package-used-elsewhere-p): New function.
1319         (package-delete): Use it, return now an error when trying to
1320         delete a package used as dependency by another package.
1322         Add a reinstall package command.
1323         (package-reinstall): New function.
1325         Add a package-autoremove command.
1326         (package-selected-packages): New user var.
1327         (package-install): Add an optional arg to notify interactive use.
1328         Fix docstring. Save installed package to
1329         packages-installed-directly.
1330         (package-install-from-buffer): Same.
1331         (package-user-selected-packages-install): Allow installing all
1332         packages in packages-installed-directly at once.
1333         (package--get-deps): New function.
1334         (package-autoremove): New function.
1335         (package-install-button-action): Call package-install with
1336         interactive arg.
1337         (package-menu-execute): Same but only for only for not installed
1338         packages.
1340 2015-01-31  Stefan Monnier  <monnier@iro.umontreal.ca>
1342         * emacs-lisp/eieio.el (defclass): Use new eieio-make-class-predicate
1343         and eieio-make-child-predicate.
1344         (eieio-class-parents): Use eieio--class-object.
1345         (slot-boundp, find-class, eieio-override-prin1): Avoid class-p.
1346         (slot-exists-p): Use find-class.
1348         * emacs-lisp/eieio-opt.el (eieio-help-class, eieio-help-constructor):
1349         Use find-lisp-object-file-name, help-fns-short-filename and new calling
1350         convention for eieio-class-def.
1351         (eieio-build-class-list): Remove function, unused.
1352         (eieio-method-def): Remove button type, unused.
1353         (eieio-class-def): Inherit from help-function-def.
1354         (eieio--defclass-regexp): New constant.
1355         (find-function-regexp-alist): Use it.
1356         (eieio--specializers-apply-to-class-p): Handle eieio--static as well.
1357         (eieio-help-find-method-definition, eieio-help-find-class-definition):
1358         Remove functions.
1360         * emacs-lisp/eieio-core.el (eieio--check-type): Remove.
1361         Use cl-check-type everywhere instead.
1362         (eieio-class-object): Remove, use find-class instead when needed.
1363         (class-p): Don't inline.
1364         (eieio-object-p): Check more thoroughly, so we don't treat cl-structs,
1365         such as eieio classes, as objects.  Don't inline.
1366         (object-p): Mark as obsolete.
1367         (eieio-defclass-autoload, eieio-defclass-internal, eieio-oref)
1368         (eieio--generic-tagcode): Avoid `class-p'.
1369         (eieio-make-class-predicate, eieio-make-child-predicate): New functions.
1370         (eieio-defclass-internal): Use current-load-list rather than
1371         `class-location'.
1373         * emacs-lisp/cl-generic.el (cl--generic-search-method): Fix regexp.
1375 2015-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
1377         * emacs-lisp/backquote.el (backquote-delay-process): Don't reuse `s'
1378         since it may be "equivalent" in some sense, yet different (bug#19734).
1380 2015-01-30  Oleh Krehel  <ohwoeowho@gmail.com>
1382         * outline.el (outline-font-lock-face): Add docstring.
1383         (outline-invisible-p): Improve docstring.
1384         (outline-invent-heading): Add docstring.
1385         (outline-promote): Improve docstring.
1386         (outline-demote): Improve docstring.
1387         (outline-head-from-level): Improve docstring.
1388         (outline-end-of-heading): Add docstring.
1389         (outline-next-visible-heading): Improve docstring.
1390         (outline-previous-visible-heading): Improve docstring.
1391         (outline-hide-region-body): Improve docstring.
1392         (outline-flag-subtree): Add docstring.
1393         (outline-end-of-subtree): Add docstring.
1394         (outline-headers-as-kill): Improve docstring.
1396 2015-01-30  Oleh Krehel  <ohwoeowho@gmail.com>
1398         * outline.el (outline-hide-entry): Rename from `hide-entry'.
1399         (hide-entry): Declare as obsolete.
1400         (outline-show-entry): Rename from `show-entry'.
1401         (show-entry): Declare as obsolete.
1402         (outline-hide-body): Rename from `hide-body'.
1403         (hide-body): Declare as obsolete.
1404         (outline-hide-region-body): Rename from `hide-region-body'.
1405         (hide-region-body): Declare as obsolete.
1406         (outline-show-all): Rename from `show-all'.
1407         (show-all): Declare as obsolete.
1408         (outline-hide-subtree): Rename from `hide-subtree'.
1409         (hide-subtree): Declare as obsolete.
1410         (outline-hide-leaves): Rename from `hide-leaves'.
1411         (hide-leaves): Declare as obsolete.
1412         (outline-show-subtree): Rename from `show-subtree'.
1413         (show-subtree): Declare as obsolete.
1414         (outline-hide-sublevels): Rename from `hide-sublevels'.
1415         (hide-sublevels): Declare as obsolete.
1416         (outline-hide-other): Rename from `hide-other'.
1417         (hide-other): Declare as obsolete.
1418         (outline-show-children): Rename from `show-children'.
1419         (show-children): Declare as obsolete.
1420         (outline-show-branches): Rename from `show-branches'.
1421         (show-branches): Declare as obsolete.
1423 2015-01-30  Oleh Krehel  <ohwoeowho@gmail.com>
1425         * outline.el (outline-mode): Clean up docstring.
1426         (font-lock-warning-face): Remove obsolete declaration.
1427         (outline-font-lock-face): Remove obsolete comment.
1429 2015-01-30  Oleh Krehel  <ohwoeowho@gmail.com>
1431         * lisp/custom.el (defface): Set `indent' to 1.
1433 2015-01-30  Oleh Krehel  <ohwoeowho@gmail.com>
1435         * emacs-lisp/easy-mmode.el (define-minor-mode): Set `indent' to 1.
1437 2015-01-30  Michal Nazarewicz  <mina86@mina86.com>
1439         * lisp/files.el (save-buffers-kill-emacs): If `confirm-kill-emacs'
1440         is set, but user has just been asked whether they really want to
1441         kill Emacs (for example with a ‘Modified buffers exist; exit
1442         anyway?’ prompt), do not ask them for another confirmation.
1444 2015-01-29  Jay Belanger  <jay.p.belanger@gmail.com>
1446         * lisp/calc/calc-units.el (calc-convert-exact-units): New function.
1447         (calc-convert-units): Check for missing units.
1448         (math-consistent-units-p): Strengthen the test for consistent units.
1450         * lisp/calc/calc-ext.el (calc-init-extensions):  Autoload
1451         `calc-convert-exact-units' and assign it a keybinding.
1453         * lisp/calc/calc-help (calc-u-prefix-help): Add help for the
1454         "un" keybinding.
1456 2015-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1458         * emacs-lisp/cl.el (cl--function-convert): Simplify.
1460 2015-01-28  Tassilo Horn  <tsdh@gnu.org>
1462         * textmodes/reftex.el (reftex-syntax-table-for-bib): Give ( and )
1463         punctuation syntax since to allow bibtex fields with values such
1464         as {Test 1) and 2)} (bug#19205, bug#19707).
1465         (reftex--prepare-syntax-tables): New function.
1466         (reftex-mode): Use it.
1468 2015-01-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
1470         python.el: New non-global state dependent indentation engine.
1471         (Bug#18319, Bug#19595)
1472         * progmodes/python.el (python-syntax-comment-or-string-p):
1473         Accept PPSS as argument.
1474         (python-syntax-closing-paren-p): New function.
1475         (python-indent-current-level)
1476         (python-indent-levels): Mark obsolete.
1477         (python-indent-context): Return more context cases.
1478         (python-indent--calculate-indentation)
1479         (python-indent--calculate-levels): New functions.
1480         (python-indent-calculate-levels): Use them.
1481         (python-indent-calculate-indentation, python-indent-line):
1482         (python-indent-line-function): Rewritten to use new API.
1483         (python-indent-dedent-line): Simplify logic.
1484         (python-indent-dedent-line-backspace): Use `unless`.
1485         (python-indent-toggle-levels): Delete function.
1487 2015-01-28  Daniel Koning  <dk@danielkoning.com>  (tiny change)
1489         * subr.el (posnp): Correct docstring of `posnp'.
1490         (posn-col-row): Make it work with all mouse position objects.
1491         * textmodes/artist.el (artist-mouse-draw-continously):
1492         Cancel timers if an error occurs during continuous drawing.  (Bug#6130)
1494 2015-01-28  Eli Zaretskii  <eliz@gnu.org>
1496         * button.el (button-activate, push-button): Doc fix.  (Bug#19628)
1498 2015-01-28  Michael Albinus  <michael.albinus@gmx.de>
1500         * filenotify.el (file-notify-descriptors, file-notify-handle-event):
1501         Adapt docstring.
1502         (file-notify--descriptor): New defun.
1503         (file-notify-callback, file-notify-add-watch, file-notify-rm-watch):
1504         Adapt docstring.  Handle multiple values for
1505         `file-notify-descriptors' entries.  (Bug#18880)
1507         * net/tramp.el (tramp-handle-file-notify-rm-watch): Do not check
1508         `file-notify-descriptors', the implementation has been changed.
1510 2015-01-28  Eli Zaretskii  <eliz@gnu.org>
1512         * net/net-utils.el (net-utils-run-program, net-utils-run-simple):
1513         On MS-Windows, bind coding-system-for-read to the console output
1514         codepage.  (Bug#19458)
1516 2015-01-28  Dmitry Gutov  <dgutov@yandex.ru>
1518         Unbreak `mouse-action' property in text buttons.
1519         * button.el (push-button): Fix regression from 2012-12-06.
1521 2015-01-28  Glenn Morris  <rgm@gnu.org>
1523         * progmodes/sh-script.el (sh-mode): Doc fix.
1524         (sh-basic-indent-line): Handle electric newline.  (Bug#18756)
1526 2015-01-28  Paul Eggert  <eggert@cs.ucla.edu>
1528         Fix dired quoting bug with "Hit`N`Hide".
1529         * files.el (shell-quote-wildcard-pattern): Also quote "`".  (Bug#19498)
1531 2015-01-28  Stefan Monnier  <monnier@iro.umontreal.ca>
1533         Tighten up the tagcode used for eieio and cl-struct objects.
1534         * loadup.el: Load cl-preloaded.
1535         * emacs-lisp/eieio-core.el (eieio-defclass-internal): Set the function
1536         slot of the tag symbol to :quick-object-witness-check.
1537         (eieio-object-p): Use :quick-object-witness-check.
1538         (eieio--generic-tagcode): Use cl--generic-struct-tag.
1539         * emacs-lisp/cl-preloaded.el: New file.
1540         * emacs-lisp/cl-macs.el (cl--bind-inits): Remove, unused.
1541         (cl--transform-lambda, cl-destructuring-bind): Remove cl--bind-inits.
1542         (cl--make-usage-args): Strip away &aux args.
1543         (cl-case, cl-typecase, cl--parse-loop-clause): Use macroexp-let2.
1544         (cl-the, cl-check-type): Use macroexp-let2 and cl-typep.
1545         (cl-defstruct): Use `declare' and cl-struct-define.
1546         * emacs-lisp/cl-generic.el (cl--generic-struct-tag): New function.
1547         (cl--generic-struct-tagcode): Use it to tighten the tagcode.
1549 2015-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1551         * emacs-lisp/cl.el (cl--function-convert):
1552         Merge cache that cl--labels-convert adds (bug#19699).
1554 2015-01-27  Ivan Shmakov  <ivan@siamics.net>
1556         * tar-mode.el: Allow for adding new archive members.  (Bug#19274)
1557         (tar-new-regular-file-header, tar--pad-to, tar--put-at)
1558         (tar-header-serialize): New functions.
1559         (tar-current-position): Split from tar-current-descriptor.
1560         (tar-current-descriptor): Use it.
1561         (tar-new-entry): New command.
1562         (tar-mode-map): Bind it.
1564 2015-01-27  Sam Steingold  <sds@gnu.org>
1566         * progmodes/python.el (python-check-custom-command): Buffer local
1567         because it usually includes the buffer name.
1568         (python-check-command): Set to epylint when pyflakes is not available.
1570 2015-01-27  Artur Malabarba  <bruce.connor.am@gmail.com>
1572         * isearch.el (isearch-process-search-char): Add docstring.
1574 2015-01-27  Oleh Krehel  <ohwoeowho@gmail.com>
1576         * emacs-lisp/derived.el (define-derived-mode): Declare indent 3.
1578 2015-01-27  Katsumi Yamaoka  <yamaoka@jpl.org>
1580         * emacs-lisp/cl.el (cl--function-convert): Run cl--labels-convert
1581         for the case cl-flet or cl-labels form is wrapped with lexical-let
1582         (bug#19613).
1584 2015-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1586         * emacs-lisp/cl-generic.el (cl--generic-method): New struct.
1587         (cl--generic): The method-table is now a (list-of cl--generic-method).
1588         (cl--generic-member-method): New function.
1589         (cl-generic-define-method): Use it.
1590         (cl--generic-build-combined-method, cl--generic-cache-miss):
1591         Adapt to new method-table.
1592         (cl--generic-no-next-method-function): Add `method' argument.
1593         (cl-generic-call-method): Adapt to new method representation.
1594         (cl--generic-cnm-sample, cl--generic-nnm-sample): Adjust.
1595         (cl-find-method, cl-method-qualifiers): New functions.
1596         (cl--generic-method-info): Adapt to new method representation.
1597         Return a string for the qualifiers.
1598         (cl--generic-describe):
1599         * emacs-lisp/eieio-opt.el (eieio-help-class): Adjust accordingly.
1600         (eieio-all-generic-functions, eieio-method-documentation):
1601         Adjust to new method representation.
1603         * emacs-lisp/eieio-compat.el (eieio--defmethod): Use cl-find-method.
1605 2015-01-26  Stefan Monnier  <monnier@iro.umontreal.ca>
1607         * emacs-lisp/cl-generic.el: Add a method-combination hook.
1608         (cl-generic-method-combination-function): New var.
1609         (cl--generic-lambda): Remove `with-cnm' arg.
1610         (cl-defmethod): Change accordingly.
1611         (cl-generic-define-method): Don't check qualifiers validity.
1612         Preserve all qualifiers in `method-table'.
1613         (cl-generic-call-method): New function.
1614         (cl--generic-nest): Remove (morph into cl-generic-call-method).
1615         (cl--generic-build-combined-method): Adjust to new format of method-table
1616         and use cl-generic-method-combination-function.
1617         (cl--generic-standard-method-combination): New function, extracted from
1618         cl--generic-build-combined-method.
1619         (cl--generic-cnm-sample): Adjust to new format of method-table.
1621         * emacs-lisp/eieio-compat.el (eieio--defmethod): Use () qualifiers
1622         instead of :primary.
1624         * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke):
1625         Remove obsolete function.
1627 2015-01-26  Lars Ingebrigtsen  <larsi@gnus.org>
1629         * net/shr.el (shr-make-table-1): Fix colspan typo.
1630         (shr-make-table-1): Add comments.
1631         (shr-make-table-1): Make colspan display more sensibly.
1633         * net/eww.el (eww-add-bookmark): Fix prompt and clean up the code
1634         slightly.
1636 2015-01-25  Stefan Monnier  <monnier@iro.umontreal.ca>
1638         * emacs-lisp/cl-generic.el (cl--generic-no-next-method-function): New fun.
1639         (cl--generic-build-combined-method, cl--generic-nnm-sample): Use it
1640         (bug#19672).
1641         (cl--generic-typeof-types): Add support for `sequence'.
1642         (cl-defmethod): Add non-keywords in the qualifiers.
1644 2015-01-25  Dmitry Gutov  <dgutov@yandex.ru>
1646         * emacs-lisp/find-func.el (find-function-regexp): Don't match
1647         `defgroup' (regression from the previous change here).
1649 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1651         * net/ldap.el (ldap-search-internal): Mention binddn in invalid
1652         credentials error message.
1654 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1656         * net/ldap.el (ldap-password-read): Validate password before
1657         caching it.
1658         (ldap-search-internal): Handle ldapsearch error conditions.
1660 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1662         * net/ldap.el (ldap-password-read): Handle password-cache being nil.
1664 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1666         * net/eudc.el (eudc-expand-inline): Always restore former server
1667         and protocol.
1669 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1671         * net/eudcb-ldap.el: Don't nag the user in case a default base is
1672         provided by the LDAP system configuration file.
1674 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1676         * net/eudc.el (eudc-format-query): Preserve the
1677         eudc-inline-query-format ordering of attributes in the returned list.
1678         * net/eudcb-ldap.el (eudc-ldap-format-query-as-rfc1558):
1679         Append the LDAP wildcard character to the last attribute value.
1681 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1683         * net/eudcb-ldap.el (eudc-ldap-cleanup-record-simple):
1684         Downcase field names of LDAP results.
1685         (eudc-ldap-cleanup-record-filtering-addresses): Likewise.
1687 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1689         * net/ldap.el (ldap-ldapsearch-password-prompt): New defcustom.
1690         (ldap-search-internal): Send password to ldapsearch through a pipe
1691         instead of via the command line.
1693 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1695         * net/ldap.el: Require password-cache.
1696         (ldap-password-read): New function.
1697         (ldap-search-internal): Call ldap-password-read when it is
1698         configured to be called.
1700 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1702         * net/eudc-vars.el (eudc-expansion-overwrites-query):
1703         Change default to nil.
1705 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1707         * net/eudc.el (eudc-expand-inline): Ignore text properties of
1708         string-to-expand.
1710 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1712         * net/eudc-vars.el (eudc-inline-expansion-format): Default to a
1713         format that includes first name and surname.
1715 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1717         * net/eudc-vars.el (eudc-inline-query-format): Change default to
1718         query email and first name instead of surname.
1720 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1722         * net/ldap.el (ldap-search-internal): Support new-style LDAP URIs.
1724 2015-01-23  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
1726         * net/eudc-vars.el (eudc-server): Adjust docstring to mention
1727         eudc-server-hotlist.
1728         (eudc-server-hotlist): Move from eudc.el and make defcustom.
1729         * net/eudc.el (eudc-server-hotlist): Move to eudc-vars.el.
1730         (eudc-set-server): Allow setting protocol to nil.
1731         (eudc-expand-inline): Support hotlist-only expansions when server
1732         is not set.
1734 2015-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
1736         * emacs-lisp/cl-generic.el (cl-no-primary-method): New fun and error.
1737         (cl--generic-build-combined-method): Use it.
1739 2015-01-22  Paul Eggert  <eggert@cs.ucla.edu>
1741         Don't downcase system diagnostics' first letters
1742         * emacs-lisp/bytecomp.el (byte-compile-file):
1743         * ffap.el (find-file-at-point):
1744         * files.el (insert-file-1):
1745         * net/ange-ftp.el (ange-ftp-barf-if-not-directory)
1746         (ange-ftp-copy-file-internal):
1747         * progmodes/etags.el (visit-tags-table):
1748         Keep diagnostics consistent with system's.
1749         * ffap.el (ffap-machine-p):
1750         Ignore case while comparing diagnostics.
1752 2015-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
1754         * help.el (help-make-usage): Don't turn a "_" arg into an empty-string
1755         arg (bug#19645).
1756         * emacs-lisp/cl-generic.el (cl--generic-lambda): Don't confuse a string
1757         body with a docstring.
1759 2015-01-22  Dmitry Gutov  <dgutov@yandex.ru>
1761         * progmodes/xref.el (xref-location-marker, xref-location-group):
1762         Use `cl-defgeneric' and `cl-defmethod' instead of the EIEIO
1763         counterparts.
1765         * progmodes/etags.el (xref-location-marker): Same.
1767         * progmodes/xref.el (xref--current): Rename from `xref--selected'.
1768         (xref--inhibit-mark-current): Rename from
1769         `xref--inhibit-mark-selected'.  Update the usages.
1770         (xref-quit): Reword the docstring.  Kill buffers after quitting
1771         windows instead of before.
1772         (xref--insert-xrefs): Tweak help-echo.
1773         (xref--read-identifier-history, xref--read-pattern-history):
1774         New variables.
1775         (xref--read-identifier, xref-find-apropos): Use them.
1777 2015-01-21  Ulrich Müller  <ulm@gentoo.org>
1779         * play/gamegrid.el (gamegrid-add-score-with-update-game-score):
1780         Allow the 'update-game-score' helper program to run suid or sgid.
1782 2015-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
1784         * emacs-lisp/eieio.el: Use cl-defmethod.
1785         (defclass): Generate cl-defmethod calls; use setf methods for :accessor.
1786         (eieio-object-name-string): Declare as obsolete.
1788         * emacs-lisp/eieio-opt.el: Adapt to cl-generic.
1789         (eieio--specializers-apply-to-class-p): New function.
1790         (eieio-all-generic-functions): Use it.
1791         (eieio-method-documentation): Use it as well as cl--generic-method-info.
1792         Change format of return value.
1793         (eieio-help-class): Adapt accordingly.
1795         * emacs-lisp/eieio-compat.el (eieio--defmethod): Avoid no-next-method
1796         errors when there's a `before' but no `primary' (bug#19645).
1797         (next-method-p): Return nil rather than signal an error.
1798         (eieio-defgeneric): Remove bogus (fboundp 'method).
1800         * emacs-lisp/eieio-speedbar.el:
1801         * emacs-lisp/eieio-datadebug.el:
1802         * emacs-lisp/eieio-custom.el:
1803         * emacs-lisp/eieio-base.el: Use cl-defmethod.
1805         * emacs-lisp/cl-generic.el (cl-defgeneric): Add support for `declare'.
1806         (cl--generic-setf-rewrite): Setup the setf expander right away.
1807         (cl-defmethod): Make sure the setf expander is setup before we expand
1808         the body.
1809         (cl-defmethod): Silence byte-compiler warnings.
1810         (cl-generic-define-method): Shuffle code to change return value.
1811         (cl--generic-method-info): New function, extracted from
1812         cl--generic-describe.
1813         (cl--generic-describe): Use it.
1815 2015-01-21  Dmitry Gutov  <dgutov@yandex.ru>
1817         * progmodes/xref.el (xref--xref-buffer-mode-map): Define before
1818         the major mode.  Remap `quit-window' to `xref-quit'.
1819         (xref--xref-buffer-mode): Inherit from special-mode.
1821         xref: Keep track of temporary buffers  (bug#19466).
1822         * progmodes/xref.el (xref--temporary-buffers, xref--selected)
1823         (xref--inhibit-mark-selected): New variables.
1824         (xref--mark-selected): New function.
1825         (xref--show-location): Maybe add the buffer to
1826         `xref--temporary-buffers', add `xref--mark-selected' to
1827         `buffer-list-update-hook' there.
1828         (xref--window): Add docstring.
1829         (xref-quit): Rename from `xref--quit'.  Update both references.
1830         Add KILL argument.  When it's non-nil, kill the temporary buffers
1831         that haven't been selected by the user.
1832         (xref--show-xref-buffer): Change the second argument to alist,
1833         extract the values for `xref--window' and
1834         `xref--temporary-buffers' from it.  Add `xref--mark-selected' to
1835         `buffer-list-update-hook' to each buffer in the list.
1836         (xref--show-xrefs): Move the logic of calling `xref-find-function'
1837         here.  Save the difference between buffer lists before and after
1838         it's called as "temporary buffers", and `pass it to
1839         `xref-show-xrefs-function'.
1840         (xref--find-definitions, xref-find-references)
1841         (xref-find-apropos): Update accordingly.
1843 2015-01-20  Artur Malabarba  <bruce.connor.am@gmail.com>
1845         * emacs-lisp/package.el (package-dir-info): Fix `while' logic.
1847 2015-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
1849         * emacs-lisp/eieio-generic.el: Remove.
1850         (defgeneric, defmethod): Move to eieio-compat.el.  Mark obsolete.
1851         * emacs-lisp/eieio-compat.el: New file.
1852         * emacs-lisp/eieio.el: Don't require eieio-generic any more.
1853         * emacs-lisp/eieio-core.el (eieio--slot-originating-class-p):
1854         Remove unused function.
1855         (eieio-defclass): Move to eieio-compat.el.
1856         * emacs-lisp/macroexp.el (macroexp-macroexpand): New function.
1857         (macroexp--expand-all): Use it.
1858         * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): Here too.
1860 2015-01-20  Michal Nazarewicz  <mina86@mina86.com>
1862         * emacs-lisp/eldoc.el (eldoc-documentation-function): Describe how
1863         major modes should use `add-function' to alter value of the variable.
1864         * hexl.el (hexl-mode):
1865         * ielm.el (inferior-emacs-lisp-mode):
1866         * progmodes/cfengine.el (cfengine3-mode):
1867         * progmodes/elisp-mode (emacs-lisp-mode):
1868         * progmodes/octave.el (octave-mode):
1869         * progmodes/python.el (python-mode):
1870         * simple.el (read--expression): Set `eldoc-documentation-function'
1871         using `add-function' so the default value is always used.
1873         * descr-text.el (describe-char-eldoc): New function returning
1874         basic Unicode codepoint information (e.g. name) about character
1875         at point.  It is meant to be used as a default value of the
1876         `eldoc-documentation-function' variable.
1877         (describe-char-eldoc--format, describe-char-eldoc--truncate):
1878         New helper functions for `describe-char-eldoc' function.
1880 2015-01-20  Michal Nazarewicz  <mina86@mina86.com>
1882         * textmodes/paragraphs.el (sentence-end-base): Include an
1883         ellipsis (…) and interrobang (‽) characters as end of a sentence,
1884         and a closing single quote (’) as an end of a quote.
1886 2015-01-20  Michal Nazarewicz  <mina86@mina86.com>
1888         * textmodes/tildify.el (tildify-double-space-undos): A new
1889         variable specifying whether pressing space in `tildify-mode' after
1890         a space has been replaced with hard space undos the substitution.
1891         (tildify-space): Add code branch for handling `tildify-doule-space'.
1893         * textmodes/tildify.el (tildify-space): A new function
1894         which can be used as a `post-self-insert-hook' to automatically
1895         convert spaces into hard spaces.
1896         (tildify-space-pattern): A new variable specifying pattern where
1897         `tildify-space' should take effect.
1898         (tildify-space-predicates): A new variable specifying list of
1899         predicate functions that all must return non-nil for
1900         `tildify-space' to take effect.
1901         (tildify-space-region-predicate): A new functions meant to be
1902         used as a predicate in `tildify-space-predicates' list.
1903         (tildify-mode): A new minor mode enabling `tildify-space' as a
1904         `post-self-insert-hook'
1906 2015-01-20  Daniel Colascione  <dancol@dancol.org>
1908         * vc/vc-dir.el (vc-dir): Default to repository root, not
1909         default-directory.
1911 2015-01-20  Dmitry Gutov  <dgutov@yandex.ru>
1913         * progmodes/etags.el (xref-etags-location): New class.
1914         (xref-make-etags-location): New function.
1915         (etags--xref-find-definitions): Use it.
1916         (xref-location-marker): New method implementation.
1918         * progmodes/xref.el: Mention that xref-location is an EIEIO class.
1919         (xref--insert-xrefs): Expand help-echo string.
1921 2015-01-19  Dmitry Gutov  <dgutov@yandex.ru>
1923         * ido.el: Update Customization instructions.
1925 2015-01-19  Jonas Bernoulli  <jonas@bernoul.li>
1927         Define Ido keymaps once (bug#17000).
1928         * ido.el (ido-common-completion-map)
1929         (ido-file-dir-completion-map)
1930         (ido-file-completion-map, ido-buffer-completion-map): Set up key
1931         bindings when each variable is defined.
1932         (ido-completion-map): Move definition.
1933         (ido-init-completion-maps): Noop.
1934         (ido-common-initialization): Don't call it.
1935         (ido-setup-completion-map): Improve doc-string, cleanup.
1937 2015-01-19  Ivan Shmakov  <ivan@siamics.net>
1939         * cus-dep.el (custom-make-dependencies): Ensure that
1940         default-directory is interpreted as a directory (see bug#19140.)
1942 2015-01-19  Dmitry Gutov  <dgutov@yandex.ru>
1944         * progmodes/xref.el (xref--display-position):
1945         Set `other-window-scroll-buffer'.
1946         (xref-goto-xref): Use `user-error'.
1948 2015-01-19  Dmitry Gutov  <dgutov@yandex.ru>
1950         * progmodes/xref.el (xref--display-history): New variable.
1951         (xref--window-configuration): Remove.
1952         (xref--save-to-history): New function.
1953         (xref--display-position): Use it.  Add new argument.
1954         (xref--restore-window-configuration): Remove.
1955         (xref--show-location, xref-show-location-at-point):
1956         Update accordingly.
1957         (xref--xref-buffer-mode): Don't use `pre-command-hook'.
1958         (xref--quit): New command.
1959         (xref-goto-xref): Use it.
1960         (xref--xref-buffer-mode-map): Bind `q' to it.
1962 2015-01-18  Dmitry Gutov  <dgutov@yandex.ru>
1964         * progmodes/xref.el (xref-goto-xref): Perform the jump even inside
1965         indentation or at eol.
1967 2015-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
1969         * emacs-lisp/eieio-core.el: Add `subclass' specializer for cl-generic.
1970         (eieio--generic-subclass-tagcode, eieio--generic-subclass-tag-types):
1971         New functions.
1972         (cl-generic-tagcode-function, cl-generic-tag-types-function): Use them.
1974         * emacs-lisp/eieio.el (defclass): Add obsolescence warning for the
1975         `newname' argument.
1977         * emacs-lisp/cl-generic.el (cl-generic-define-method): Correctly handle
1978         introduction of a new dispatch argument.
1979         (cl--generic-cache-miss): Handle dispatch on an argument which was not
1980         considered as dispatchable for this method.
1981         (cl-defmethod): Warn when adding a method to an obsolete generic function.
1982         (cl--generic-lambda): Make sure it works if cl-lib is not yet loaded.
1984         * emacs-lisp/eieio-generic.el (eieio--defgeneric-init-form): Use autoloadp.
1986 2015-01-18  Artur Malabarba  <bruce.connor.am@gmail.com>
1988         * emacs-lisp/package.el (package--append-to-alist): Rename from
1989         `package--add-to-alist'
1990         Updated docstring due to new name.
1992 2015-01-18  Leo Liu  <sdl.web@gmail.com>
1994         * emacs-lisp/cl-extra.el (cl-subseq): Use seq-subseq and fix
1995         multiple evaluation.  (Bug#19519)
1997         * emacs-lisp/seq.el (seq-subseq): Throw bad bounding indices
1998         error.  (Bug#19434)
2000 2015-01-18  Stefan Monnier  <monnier@iro.umontreal.ca>
2002         * emacs-lisp/eieio-core.el: Add `subclass' specializer for cl-generic.
2003         (eieio--generic-subclass-tagcode, eieio--generic-subclass-tag-types):
2004         New functions.
2005         (cl-generic-tagcode-function, cl-generic-tag-types-function): Use them.
2007         * emacs-lisp/cl-macs.el (cl-defstruct): Minor optimization when include
2008         or print is nil.
2009         (cl-struct-type-p): New function.
2011         * emacs-lisp/cl-generic.el: Add support for cl-next-method-p.
2012         (cl-defmethod): Add edebug spec.
2013         (cl--generic-build-combined-method): Fix call to
2014         cl-no-applicable-method.
2015         (cl--generic-nnm-sample, cl--generic-cnm-sample): New constant.
2016         (cl--generic-isnot-nnm-p): New function.
2017         (cl--generic-lambda): Use it to add support for cl-next-method-p.
2018         (cl-no-next-method, cl-no-applicable-method): Simplify arg list.
2019         (cl-next-method-p): New function.
2021 2015-01-17  Ulrich Müller  <ulm@gentoo.org>
2023         * version.el (emacs-repository-get-version): Update docstring.
2025 2015-01-17  Ivan Shmakov  <ivan@siamics.net>
2027         * files.el (find-file-other-window, find-file-other-frame):
2028         Use mapc instead of mapcar.  (Bug#18175)
2030         * files.el (dir-locals-collect-variables): Use default-directory
2031         in place of the file name while working on non-file buffers, just
2032         like hack-dir-local-variables already does.  (Bug#19140)
2034         * textmodes/enriched.el (enriched-encode):
2035         Use inhibit-point-motion-hooks in addition to inhibit-read-only.
2036         (Bug#18246)
2038         * desktop.el (desktop-read): Do not call desktop-clear when no
2039         desktop file is found.  (Bug#18371)
2041         * misearch.el (multi-isearch-unload-function): New function.
2042         (misearch-unload-function): New alias.  (Bug#19566)
2044 2015-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2046         * emacs-lisp/eieio-core.el (eieio--class-constructor): Rename from
2047         class-constructor, and make it an alias for `identity'.
2048         Update all callers.
2050         * emacs-lisp/eieio.el (eieio-constructor): Handle obsolete object name
2051         argument here (bug#19620)...
2052         (defclass): ...instead of in the constructor here.
2054 2015-01-16  Jorgen Schaefer  <contact@jorgenschaefer.de>
2056         * emacs-lisp/package.el (package-archive-priorities):
2057         Specify correct type.
2059 2015-01-17  Ulrich Müller  <ulm@gentoo.org>
2061         * version.el (emacs-bzr-version-dirstate, emacs-bzr-version-bzr):
2062         Remove.
2063         (emacs-repository-get-version): Discard the Bazaar case.
2064         * vc/vc-bzr.el (vc-bzr-version-dirstate): Rename from
2065         emacs-bzr-version-dirstate and move from version.el to here.
2066         (vc-bzr-working-revision): Use it.
2068 2015-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2070         * emacs-lisp/eieio-generic.el (call-next-method): Don't bother checking
2071         eieio--scoped-class any more.
2073         * emacs-lisp/eieio-core.el (eieio--scoped-class-stack): Remove var.
2074         (eieio--scoped-class): Remove function.
2075         (eieio--with-scoped-class): Remove macro.  Replace uses with `progn'.
2076         (eieio--slot-name-index): Don't check the :protection anymore.
2077         (eieio-initializing-object): Remove var.
2078         (eieio-set-defaults): Don't let-bind eieio-initializing-object.
2080 2015-01-17  Stefan Monnier  <monnier@iro.umontreal.ca>
2082         Improve handling of doc-strings and describe-function for cl-generic.
2084         * help-mode.el (help-function-def): Add optional arg `type'.
2086         * help-fns.el (find-lisp-object-file-name): Accept any `type' as long
2087         as it's a symbol.
2088         (help-fns-short-filename): New function.
2089         (describe-function-1): Use it.  Use autoload-do-load.
2091         * emacs-lisp/find-func.el: Use lexical-binding.
2092         (find-function-regexp): Don't rule out `defgeneric'.
2093         (find-function-regexp-alist): Document new possibility of including
2094         a function instead of a regexp.
2095         (find-function-search-for-symbol): Implement that new possibility.
2096         (find-function-library): Don't assume that `function' is a symbol.
2097         (find-function-do-it): Remove unused var `orig-buf'.
2099         * emacs-lisp/eieio-generic.el (eieio--defalias): Move from eieio-core.
2100         (eieio--defgeneric-init-form): Don't throw away a previous docstring.
2101         (eieio--method-optimize-primary): Don't mess with the docstring.
2102         (defgeneric): Keep the `args' in the docstring.
2103         (defmethod): Don't use the method's docstring for the generic
2104         function's docstring.
2106         * emacs-lisp/eieio-core.el (eieio--defalias): Move to eieio-generic.el.
2107         (eieio-defclass-autoload): Don't record the superclasses any more.
2108         (eieio-defclass-internal): Reuse the old class object if it was just an
2109         autoload stub.
2110         (eieio--class-precedence-list): Load the class if it's autoloaded.
2112         * emacs-lisp/cl-generic.el (cl-generic-ensure-function): It's OK to
2113         override an autoload.
2114         (cl-generic-current-method-specializers): Replace dyn-bind variable
2115         with a lexically-scoped macro.
2116         (cl--generic-lambda): Update accordingly.
2117         (cl-generic-define-method): Record manually in the load-history with
2118         type `cl-defmethod'.
2119         (cl--generic-get-dispatcher): Minor optimization.
2120         (cl--generic-search-method): New function.
2121         (find-function-regexp-alist): Add entry for `cl-defmethod' type.
2122         (cl--generic-search-method): Add hyperlinks for methods.  Merge the
2123         specializers and the function's arguments.
2125 2015-01-16  Artur Malabarba  <bruce.connor.am@gmail.com>
2127         * emacs-lisp/package.el (package--read-pkg-desc):
2128         New function. Read a `define-package' form in current buffer.
2129         Return the pkg-desc, with desc-kind set to KIND.
2130         (package-dir-info): New function. Find package information for a
2131         directory. The return result is a `package-desc'.
2132         (package-install-from-buffer): Install packages from dired buffer.
2133         (package-install-file): Install packages from directory.
2134         (package-desc-suffix)
2135         (package-install-from-archive)
2136         * emacs-lisp/package-x.el (package-upload-buffer-internal):
2137         Ensure all remaining instances of `package-desc-kind' handle the 'dir
2138         value.
2140 2015-01-16  Jorgen Schaefer  <contact@jorgenschaefer.de>
2142         * emacs-lisp/package.el: Provide repository priorities.
2143         (package-archive-priorities): New variable.
2144         (package--add-to-alist): New function.
2145         (package--add-to-archive-contents): Use it.
2146         (package-menu--find-upgrades): Use it as well. Small clean up to
2147         make the use of the package name here explicit.
2148         (package-archive-priority): New function.
2149         (package-desc-priority-version): New function.
2151 2015-01-16  Daniel Colascione  <dancol@dancol.org>
2153         * cus-start.el (all): Make `ring-bell-function' customizable.
2155 2015-01-16  Dmitry Gutov  <dgutov@yandex.ru>
2157         * vc/vc-svn.el (vc-svn-dir-status-files): Pass t as
2158         vc-svn-after-dir-status's second argument.  (Bug#19429)
2160 2015-01-16  Samer Masterson  <samer@samertm.com>
2162         * pcomplete.el (pcomplete-parse-arguments): Parse arguments
2163         regardless of pcomplete-cycle-completions's value.  (Bug#18950)
2165 2015-01-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2167         * dom.el (dom-strings): New function.
2169         * files.el (directory-files-recursively): Don't use the word
2170         "path" for a file name.
2172 2015-01-15  Wolfgang Jenkner  <wjenkner@inode.at>
2174         * calc/calc-units.el (math-units-in-expr-p)
2175         (math-single-units-in-expr-p, math-find-compatible-unit-rec)
2176         (math-extract-units): Handle the `neg' operator.  (Bug#19582)
2178 2015-01-15  Stefan Monnier  <monnier@iro.umontreal.ca>
2180         * emacs-lisp/cl-macs.el (cl--labels-magic): New constant.
2181         (cl--labels-convert): Use it to ask the macro what is its replacement
2182         in the #'f case.
2184         * emacs-lisp/cl-generic.el (cl--generic-build-combined-method):
2185         Return the value of the primary rather than the after method.
2187         * emacs-lisp/eieio-core.el: Provide support for cl-generic.
2188         (eieio--generic-tagcode): New function.
2189         (cl-generic-tagcode-function): Use it.
2190         (eieio--generic-tag-types): New function.
2191         (cl-generic-tag-types-function): Use it.
2192         (eieio-object-p): Tighten up the test.
2194         * emacs-lisp/cl-generic.el (cl-generic-define-method): Fix paren typo.
2196 2015-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2198         * emacs-lisp/cl-generic.el: New file.
2200         * emacs-lisp/cl-macs.el (cl-flet): Allow (FUN EXP) forms.
2201         (cl-load-time-value, cl-labels): Use closures rather than
2202         backquoted lambdas.
2203         (cl-macrolet): Use `eval' to create the function value, and support CL
2204         style arguments in for the defined macros.
2206 2015-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
2208         * net/eww.el: Use lexical-binding.
2209         (eww-links-at-point): Remove unused arg.
2210         (eww-mode-map): Inherit from special-mode-map.
2211         (eww-mode): Derive from special-mode.  Don't use `setq' on a hook.
2213 2015-01-13  Alan Mackenzie  <acm@muc.de>
2215         Allow compilation during loading of CC Mode-derived modes (bug#19206).
2216         * progmodes/cc-bytecomp.el (cc-bytecomp-compiling-or-loading):
2217         New function which walks the stack to discover whether we're compiling
2218         or loading.
2219         (cc-bytecomp-is-compiling): Reformulate, and move towards beginning.
2220         (cc-bytecomp-is-loading): New defsubst.
2221         (cc-bytecomp-setup-environment, cc-bytecomp-restore-environment):
2222         Use the above defsubsts.
2223         (cc-require-when-compile, cc-bytecomp-defvar)
2224         (cc-bytecomp-defun): Simplify conditionals.
2225         * progmodes/cc-defs.el (cc-bytecomp-compiling-or-loading):
2226         "Borrow" this function from cc-bytecomp.el.
2227         (c-get-current-file): Reformulate using the above.
2228         (c-lang-defconst): Prevent duplicate entries of file names in a
2229         symbol's 'source property.
2230         (c-lang-const): Use cc-bytecomp-is-compiling.
2231         * progmodes/cc-langs.el (c-make-init-lang-vars-fun):
2232         Use cc-bytecomp-is-compiling.
2234 2015-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
2236         * emacs-lisp/eieio-core.el (eieio-defclass): Fix call to `defclass'
2237         (bug#19552).
2239 2015-01-13  Dmitry Gutov  <dgutov@yandex.ru>
2241         * menu-bar.el (menu-bar-goto-menu): Before calling
2242         `xref-marker-stack-empty-p', first check that `xref' is loaded.
2243         (Bug#19554)
2245 2015-01-12  Martin Rudalics  <rudalics@gmx.at>
2247         * progmodes/xref.el (xref-marker-stack-empty-p): Add autoload
2248         cookie (Bug#19554).
2250         * frame.el (frame-notice-user-settings): Remove code dealing with
2251         frame-initial-frame-tool-bar-height.  Turn off `tool-bar-mode'
2252         only if `window-system-frame-alist' or `default-frame-alist' ask
2253         for it.
2254         (make-frame): Update frame-adjust-size-history if needed.
2256 2015-01-12  Paul Eggert  <eggert@cs.ucla.edu>
2258         Have 'make' output better GEN names
2259         * Makefile.in (PHONY_EXTRAS): New macro.
2260         (.PHONY): Depend on it, and on $(lisp)/loaddefs.el, so that the
2261         relevant files' time stamps are ignored.
2262         (custom-deps, $(lisp)/cus-load.el, finder-data)
2263         ($(lisp)/finder-inf.el): Use PHONY_EXTRAS.
2264         (custom-deps, $(lisp)/cus-load.el, finder-data)
2265         ($(lisp)/finder-inf.el, autoloads, $(lisp)/loaddefs.el)
2266         ($(lisp)/subdirs.el, update-subdirs):
2267         Output more-accurate destination names with GEN.
2269         Say "ELC foo.elc" instead of "GEN foo.elc"
2270         * Makefile.in (AM_V_ELC, am__v_ELC_, am__v_ELC_0, am__v_ELC_1):
2271         New macros.
2272         ($(THEFILE)c, .el.elc): Use them.
2274 2015-01-11  Michael Albinus  <michael.albinus@gmx.de>
2276         * files.el (directory-files-recursively): Do not include
2277         superfluous remote file names.
2279 2015-01-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2281         * net/eww.el (eww): Interpret anything that looks like a protocol
2282         designator as a full URL.
2284 2015-01-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2286         * net/shr.el (shr-urlify): Don't bother the user about
2287         invalidly-encoded display strings.
2289 2015-01-10  Ivan Shmakov  <ivan@siamics.net>
2291         * net/shr.el (shr-urlify): Decode URLs before using them as titles
2292         (bug#19555).
2294 2015-01-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
2296         * net/eww.el (eww): Always interpret URLs that start with https?:
2297         as plain URLs, even if they have spaces in them (bug#19556).
2298         (eww): Also interpret things like "en.wikipedia.org/wiki/Free
2299         software" as an URL.
2300         (eww): Don't interpret "org/foo" as an URL.
2301         (eww): Clear the title when loading so that we don't display
2302         misleading information.
2304 2015-01-10  Daniel Colascione  <dancol@dancol.org>
2306         * vc/vc-hooks.el (vc-prefix-map): Bind vc-delete-file to C-x v x,
2307         by analogy with dired.
2309 2015-01-09  Daniel Colascione  <dancol@dancol.org>
2311         * progmodes/js.el (js--function-heading-1-re)
2312         (js--function-prologue-beginning): Parse ES6 generator function
2313         declarations.  (That is, "function* name()").
2315 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2317         * emacs-lisp/eieio.el (defclass): Move from eieio-defclass all the code
2318         that creates functions, and most of the sanity checks.
2319         Mark as obsolete the <class>-child-p function.
2320         * emacs-lisp/eieio-core.el (eieio--define-field-accessors): Remove.
2321         (eieio--class, eieio--object): Use cl-defstruct.
2322         (eieio--object-num-slots): Define manually.
2323         (eieio-defclass-autoload): Use eieio--class-make.
2324         (eieio-defclass-internal): Rename from eieio-defclass.  Move all the
2325         `(lambda...) definitions and most of the sanity checks to `defclass'.
2326         Mark as obsolete the <class>-list-p function, the <class> variable and
2327         the <initarg> variables.  Use pcase-dolist.
2328         (eieio-defclass): New compatibility function.
2329         * emacs-lisp/eieio-opt.el (eieio-build-class-alist)
2330         (eieio-class-speedbar): Don't use eieio-default-superclass var.
2332 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2334         * emacs-lisp/eieio-generic.el: New file.
2335         * emacs-lisp/eieio-core.el: Move all generic function code to
2336         eieio-generic.el.
2337         (eieio--defmethod): Declare.
2339         * emacs-lisp/eieio.el: Require eieio-generic.  Move all generic
2340         function code to eieio-generic.el.
2341         * emacs-lisp/eieio-opt.el (eieio-help-generic): Move to
2342         eieio-generic.el.
2343         * emacs-lisp/eieio-datadebug.el (eieio-debug-methodinvoke): Update call
2344         to eieio--generic-call.
2345         * emacs-lisp/eieio-base.el (eieio-instance-inheritor): Don't use
2346         <class>-child type.
2348 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2350         * emacs-lisp/chart.el (chart-add-sequence, chart-bar-quickie):
2351         Don't use <class> as a variable.
2353         * emacs-lisp/eieio.el (same-class-p): Accept class object as well.
2354         (call-next-method): Simplify.
2355         (clone): Obey eieio-backward-compatibility.
2357         * emacs-lisp/eieio-opt.el (eieio-read-generic-p): Remove.
2358         (eieio-read-generic): Use `generic-p' instead.
2360         * emacs-lisp/eieio-core.el (eieio-backward-compatibility): New var.
2361         (eieio-defclass-autoload): Obey it.
2362         (eieio--class-object): Improve error behavior.
2363         (eieio-class-children-fast, same-class-fast-p): Remove.  Inline at
2364         every use site.
2365         (eieio--defgeneric-form-primary-only): Rename from
2366         eieio-defgeneric-form-primary-only; update all callers.
2367         (eieio--defgeneric-form-primary-only-one): Rename from
2368         eieio-defgeneric-form-primary-only-one; update all callers.
2369         (eieio-defgeneric-reset-generic-form)
2370         (eieio-defgeneric-reset-generic-form-primary-only)
2371         (eieio-defgeneric-reset-generic-form-primary-only-one): Remove.
2372         (eieio--method-optimize-primary): New function to replace them.
2373         (eieio--defmethod, eieio-defmethod): Use it.
2374         (eieio--perform-slot-validation): Rename from
2375         eieio-perform-slot-validation; update all callers.
2376         (eieio--validate-slot-value): Rename from eieio-validate-slot-value.
2377         Change `class' to be a class object.  Update all callers.
2378         (eieio--validate-class-slot-value): Rename from
2379         eieio-validate-class-slot-value.  Change `class' to be a class object.
2380         Update all callers.
2381         (eieio-oset-default): Accept class object as well.
2382         (eieio--generic-call-primary-only): Rename from
2383         eieio-generic-call-primary-only.  Update all callers.
2385         * emacs-lisp/eieio-base.el (eieio-persistent-validate/fix-slot-value):
2386         Improve error messages.
2387         (eieio-persistent-slot-type-is-class-p): Handle `list-of' types, as
2388         well as user-defined types.  Emit errors for legacy types like
2389         <class>-child and <class>-list, if not eieio-backward-compatibility.
2391 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2393         * emacs-lisp/eieio.el (eieio-class-parents): Accept class objects.
2394         (eieio--class-slot-initarg): Rename from class-slot-initarg.
2395         Change `class' arg to be a class object.  Update all callers.
2396         (call-next-method): Adjust to new return value of `eieio-generic-form'.
2397         (eieio-default-superclass): Set var to the class object.
2398         (eieio-edebug-prin1-to-string): Fix recursive call for lists.
2399         Change print behavior to affect class objects rather than
2400         class symbols.
2402         * emacs-lisp/eieio-core.el (eieio-class-object): New function.
2403         (eieio-class-parents-fast): Remove macro.
2404         (eieio--class-option-assoc): Rename from class-option-assoc.
2405         Update all callers.
2406         (eieio--class-option): Rename from class-option.  Change `class' arg to
2407         be a class object.  Update all callers.
2408         (eieio--class-method-invocation-order): Rename from
2409         class-method-invocation-order.  Change `class' arg to be a class
2410         object.  Update all callers.
2411         (eieio-defclass-autoload, eieio-defclass): Set the `parent' field to
2412         a list of class objects rather than names.
2413         (eieio-defclass): Remove redundant quotes.  Use `eieio-oref-default'
2414         for accessors to class allocated slots.
2415         (eieio--perform-slot-validation-for-default): Rename from
2416         eieio-perform-slot-validation-for-default.  Update all callers.
2417         (eieio--add-new-slot): Rename from eieio-add-new-slot.
2418         Update all callers.  Use push.
2419         (eieio-copy-parents-into-subclass): Adjust to new content of
2420         `parent' field.  Use dolist.
2421         (eieio-oref): Remove support for providing a class rather than
2422         an object.
2423         (eieio-oref-default): Prefer class objects over class names.
2424         (eieio--slot-originating-class-p): Rename from
2425         eieio-slot-originating-class-p.  Update all callers.  Use `or'.
2426         (eieio--slot-name-index): Turn check into assertion.
2427         (eieio--class-slot-name-index): Rename from
2428         eieio-class-slot-name-index.  Change `class' arg to be a class object.
2429         Update all callers.
2430         (eieio-attribute-to-initarg): Move to eieio-test-persist.el.
2431         (eieio--c3-candidate): Rename from eieio-c3-candidate.
2432         Update all callers.
2433         (eieio--c3-merge-lists): Rename from eieio-c3-merge-lists.
2434         Update all callers.
2435         (eieio--class-precedence-c3): Rename from eieio-class-precedence-c3.
2436         Update all callers.
2437         (eieio--class-precedence-dfs): Rename from eieio-class-precedence-dfs.
2438         Update all callers.
2439         (eieio--class-precedence-bfs): Rename from eieio-class-precedence-bfs.
2440         Update all callers.  Adjust to new `parent' content.
2441         (eieio--class-precedence-list): Rename from -class-precedence-list.
2442         Update all callers.
2443         (eieio-generic-call): Use autoloadp and autoload-do-load.
2444         Slight simplification.
2445         (eieio-generic-call, eieio-generic-call-primary-only): Adjust to new
2446         return value of `eieio-generic-form'.
2447         (eieiomt-add): Index the hashtable with class objects rather than
2448         class names.
2449         (eieio-generic-form): Accept class objects as well.
2451         * emacs-lisp/eieio-base.el (eieio-persistent-convert-list-to-object):
2452         Adjust to new convention for eieio-persistent-validate/fix-slot-value.
2453         (eieio-persistent-validate/fix-slot-value):
2454         Change `class' arg to be a class object.  Update all callers.
2456 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2458         * emacs-lisp/eieio.el (child-of-class-p): Make it accept class objects
2459         additionally to class names.
2461         * emacs-lisp/eieio-core.el (eieio--with-scoped-class): Use let-binding.
2462         (object): Remove first (constant) slot; rename second to `class-tag'.
2463         (eieio--object-class-object, eieio--object-class-name): New funs
2464         to replace eieio--object-class.
2465         (eieio--class-object, eieio--class-p): New functions.
2466         (same-class-fast-p): Make it a defsubst, change its implementation
2467         to check the class objects rather than their names.
2468         (eieio-object-p): Rewrite.
2469         (eieio-defclass): Adjust the object initialization according to the new
2470         object layout.
2471         (eieio--scoped-class): Declare it returns a class object (not a class
2472         name any more).  Adjust calls accordingly (along with calls to
2473         eieio--with-scoped-class).
2474         (eieio--slot-name-index): Rename from eieio-slot-name-index and change
2475         its class arg to be a class object.  Adjust callers accordingly.
2476         (eieio-slot-originating-class-p): Make its start-class arg a class
2477         object.  Adjust all callers.
2478         (eieio--initarg-to-attribute): Rename from eieio-initarg-to-attribute.
2479         Make its `class' arg a class object.  Adjust all callers.
2481         * emacs-lisp/eieio-base.el (eieio-persistent-validate/fix-slot-value):
2482         Use eieio--slot-name-index rather than eieio-slot-name-index.
2484 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2486         * emacs-lisp/eieio.el (make-instance): Simplify by not adding an object
2487         name argument.
2488         (eieio-object-name): Use eieio-object-name-string.
2489         (eieio--object-names): New const.
2490         (eieio-object-name-string, eieio-object-set-name-string): Re-implement
2491         using a hashtable rather than a built-in slot.
2492         (eieio-constructor): Rename from `constructor'.  Remove `newname' arg.
2493         (clone): Don't mess with the object's "name".
2495         * emacs-lisp/eieio-custom.el (eieio-widget-test): Remove dummy arg.
2496         (eieio-object-value-get): Use eieio-object-set-name-string.
2498         * emacs-lisp/eieio-core.el (eieio--defalias): Follow aliases.
2499         (eieio--object): Remove `name' field.
2500         (eieio-defclass): Adjust to new convention where constructors don't
2501         take an "object name" any more.
2502         (eieio--defgeneric-init-form, eieio--defmethod): Follow aliases.
2503         (eieio-validate-slot-value, eieio-oset-default)
2504         (eieio-slot-name-index): Don't hardcode eieio--object-num-slots.
2505         (eieio-generic-call-primary-only): Simplify.
2507         * emacs-lisp/eieio-base.el (clone) <eieio-instance-inheritor>:
2508         Use call-next-method.
2509         (eieio-constructor): Rename from `constructor'.
2510         (eieio-persistent-convert-list-to-object): Drop objname.
2511         (eieio-persistent-validate/fix-slot-value): Don't hardcode
2512         eieio--object-num-slots.
2513         (eieio-named): Use a normal slot.
2514         (slot-missing) <eieio-named>: Remove.
2515         (eieio-object-name-string, eieio-object-set-name-string, clone)
2516         <eieio-named>: New methods.
2518 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2520         * emacs-lisp/eieio-core.el (eieio--class-v): Rename from class-v.
2521         (method-*): Add a "eieio--" prefix to those constants.
2523         * emacs-lisp/eieio.el: Move edebug specs to the corresponding macro.
2525         * emacs-lisp/eieio-speedbar.el: Use lexical-binding.
2527 2015-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
2529         * emacs-lisp/eieio.el (child-of-class-p): Fix case where `class' is
2530         `eieio-default-superclass'.
2532         * emacs-lisp/eieio-datadebug.el: Use lexical-binding.
2534         * emacs-lisp/eieio-custom.el: Use lexical-binding.
2535         (eieio-object-value-to-abstract): Simplify.
2537         * emacs-lisp/eieio-opt.el (eieio-build-class-list): Use cl-mapcan.
2538         (eieio-build-class-alist): Use dolist.
2539         (eieio-all-generic-functions): Adjust to use of hashtables.
2541         * emacs-lisp/eieio-core.el (class): Rename field symbol-obarray to
2542         symbol-hashtable.  It contains a hashtable instead of an obarray.
2543         (generic-p): Use symbol property `eieio-method-hashtable' instead of
2544         `eieio-method-obarray'.
2545         (generic-primary-only-p, generic-primary-only-one-p):
2546         Slight optimization.
2547         (eieio-defclass-autoload-map): Use a hashtable instead of an obarray.
2548         (eieio-defclass-autoload, eieio-defclass): Adjust/simplify accordingly.
2549         (eieio-class-un-autoload): Use autoload-do-load.
2550         (eieio-defclass): Use dolist, cl-pushnew, cl-callf.
2551         Use new cl-deftype-satisfies.  Adjust to use of hashtables.
2552         Don't hardcode the value of eieio--object-num-slots.
2553         (eieio-defgeneric-form-primary-only-one): Remove `doc-string' arg.
2554         Use a closure rather than a backquoted lambda.
2555         (eieio--defmethod): Adjust call accordingly.  Set doc-string via the
2556         function-documentation property.
2557         (eieio-slot-originating-class-p, eieio-slot-name-index)
2558         (eieiomt--optimizing-hashtable, eieiomt-install, eieiomt-add)
2559         (eieio-generic-form): Adjust to use of hashtables.
2560         (eieiomt--sym-optimize): Rename from eieiomt-sym-optimize; take
2561         additional class argument.
2562         (eieio-generic-call-methodname): Remove, unused.
2564         * emacs-lisp/eieio-base.el (eieio-persistent-slot-type-is-class-p):
2565         Prefer \' to $.
2567 2015-01-08  Eli Zaretskii  <eliz@gnu.org>
2569         * simple.el (line-move-visual): When converting X pixel coordinate
2570         to temporary-goal-column, adjust the value for right-to-left
2571         screen lines.  This fixes vertical-motion, next/prev-line, etc.
2573 2015-01-08  Glenn Morris  <rgm@gnu.org>
2575         * files.el (file-tree-walk): Remove; of unknown authorship.  (Bug#19325)
2577 2015-01-07  K. Handa  <handa@gnu.org>
2579         * international/ccl.el (define-ccl-program): Improve the docstring.
2581 2015-01-06  Sam Steingold  <sds@gnu.org>
2583         * shell.el (shell-display-buffer-actions): Remove,
2584         use `display-buffer-alist' instead.
2586 2015-01-05  Dmitry Gutov  <dgutov@yandex.ru>
2588         * progmodes/xref.el (xref--insert-xrefs): Add `help-echo' property
2589         to the references.
2591 2015-01-05  Stefan Monnier  <monnier@iro.umontreal.ca>
2593         * minibuffer.el (completion-category-defaults): New var.
2594         Set unicode-name to use substring completion.
2595         (completion-category-defaults): Set it to nil.
2597 2015-01-04  Dmitry Gutov  <dgutov@yandex.ru>
2599         Add mouse interaction to xref.
2600         * progmodes/xref.el (xref--button-map): New variable.
2601         (xref--mouse-2): New command.
2602         (xref--insert-xrefs): Add `mouse-face' and `keymap' properties to
2603         the inserted references.
2605 2015-01-04  Paul Eggert  <eggert@cs.ucla.edu>
2607         Less 'make' chatter for lisp dir
2608         * Makefile.in (THEFILE): Define to be 'no-such-file' by default,
2609         to make it clearer that the caller must specify it.
2610         (compile-onefile): Remove, replacing by ...
2611         ($(THEFILE)c): ... new rule.  This lets us use AM_V_GEN here.
2612         ($(THEFILE)c, .el.elc, $(MH_E_DIR)/mh-loaddefs.el)
2613         ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
2614         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
2615         Use AM_V_GEN to lessen 'make' chatter.
2616         (.el.elc): Omit duplicate comment.
2618         Less 'make' chatter in batch mode
2619         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
2620         * emacs-lisp/bytecomp.el (byte-compile-file):
2621         * files.el (save-buffer, basic-save-buffer):
2622         * international/quail.el (quail-update-leim-list-file):
2623         Don't output messages like "Generating ..." in batch mode.
2625 2015-01-04  Dmitry Gutov  <dgutov@yandex.ru>
2627         Unbreak `mouse-action' property in text buttons.
2628         * button.el (push-button): Fix regression from 2012-12-06.
2630 2015-01-03  Dmitry Gutov  <dgutov@yandex.ru>
2632         * progmodes/xref.el (xref-marker-stack-empty-p): New function.
2634         * menu-bar.el (menu-bar-goto-menu): Use it.
2636 2015-01-03  Dmitry Gutov  <dgutov@yandex.ru>
2638         * progmodes/xref.el (xref--window-configuration): New variable.
2639         (xref-show-location-at-point): New command.
2640         (xref--restore-window-configuration): New function.
2641         (xref-next-line, xref-prev-line): Delegate to
2642         `xref-show-location-at-point'.
2643         (xref--location-at-point): Don't signal the error.
2644         (xref-goto-xref): Do that here instead.
2645         (xref--xref-buffer-mode): Add `xref--restore-window-configuration'
2646         to `pre-command-hook'.
2647         (xref--xref-buffer-mode-map): Don't remap `next-line' and
2648         `previous-line'.  Additionally bind `xref-next-line' and
2649         `xref-prev-line' to `n' and `p' respectively.
2650         Bind `xref-show-location-at-point' to `C-o'.
2652 2015-01-01  Eli Zaretskii  <eliz@gnu.org>
2654         * tool-bar.el (tool-bar-local-item)
2655         (tool-bar-local-item-from-menu): Call force-mode-line-update to
2656         make sure the tool-bar changes show on display.
2658 2015-01-01  Michael Albinus  <michael.albinus@gmx.de>
2660         Sync with Tramp 2.2.11.
2662         * net/tramp-compat.el (top): Require cl-macs for Emacs 22.
2663         Make an alias for `default-toplevel-value' if it doesn't exist.
2665         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
2666         Use `tramp-compat-delete-directory'.
2668         * net/trampver.el: Update release number.
2670 2015-01-01  Filipp Gunbin  <fgunbin@fastmail.fm>
2672         * autorevert.el (auto-revert-handler): Fix auto-revert-tail-mode
2673         for remote files.  (Bug#19449)
2675 2015-01-01  Simen Heggestøyl  <simenheg@gmail.com>  (tiny change)
2677         * textmodes/css-mode.el (scss-mode): Fix typo (bug#19446).
2679 2014-12-31  Paul Eggert  <eggert@cs.ucla.edu>
2681         Less 'make' chatter in lisp directory
2682         * Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_GEN, am__v_GEN_)
2683         (am__v_GEN_0, am__v_GEN_1): New macros, from ../src/Makefile.in.
2684         (custom-deps, finder-data, autoloads, update-subdirs): Use them.
2686 2014-12-31  Filipp Gunbin  <fgunbin@fastmail.fm>
2688         * info.el (info-display-manual): Limit the completion alternatives
2689         to currently visited manuals if prefix argument is non-nil.
2691 2014-12-30  Paul Eggert  <eggert@cs.ucla.edu>
2693         * Makefile.in (semantic): Simplify.
2695 2014-12-30  Juri Linkov  <juri@linkov.net>
2697         * net/eww.el (eww-isearch-next-buffer): New function.
2698         (eww-mode): Set multi-isearch-next-buffer-function to it.
2700 2014-12-30  Dmitry Gutov  <dgutov@yandex.ru>
2702         * progmodes/xref.el (xref-find-definitions): Mention "no
2703         identifier at point" case in the docstring.
2705         * menu-bar.el (menu-bar-goto-uses-etags-p): New function.
2706         (menu-bar-goto-menu): Use it to show or hide the `set-tags-name'
2707         and `separator-tag-file' items.
2709 2014-12-29  Paul Eggert  <eggert@cs.ucla.edu>
2711         * obsolete/pc-select.el (pc-selection-mode): Use system-type.
2712         This is instead of system-name, which is both wrong here and obsolete.
2713         * desktop.el (desktop-save-frameset):
2714         * dnd.el (dnd-get-local-file-uri):
2715         * nxml/rng-uri.el (rng-uri-file-name-1):
2716         Prefer (system-name) to system-name, and avoid naming
2717         locals 'system-name'.
2718         * startup.el (system-name): Now an obsolete variable.  (Bug#19438)
2720 2014-12-29  Dmitry Gutov  <dgutov@yandex.ru>
2722         * menu-bar.el (menu-bar-next-tag-other-window)
2723         (menu-bar-next-tag): Remove.
2725 2014-12-29  K. Handa  <handa@gnu.org>
2727         * international/mule.el (make-translation-table-from-alist):
2728         Accept nil or zero-length vector for FROM and TO.
2730 2014-12-29  Lars Ingebrigtsen  <larsi@gnus.org>
2732         * net/eww.el (eww-mode): Truncate overlong lines for prettier
2733         display when resizing.
2735         * net/shr.el (shr-width): Default to using the window width when
2736         rendering.
2738 2014-12-29  Dmitry Gutov  <dgutov@yandex.ru>
2740         Unbreak jumping to an alias's definition.
2741         * emacs-lisp/find-func.el (find-function-library): Return a pair
2742         (ORIG-FUNCTION . LIBRARY) instead of just its second element.
2743         (find-function-noselect): Use it.
2744         * progmodes/elisp-mode.el (elisp--xref-identifier-file): Rename to
2745         `elisp--xref-identifier-location', incorporate logic from
2746         `elisp--xref-find-definitions', use the changed
2747         `find-function-library' return value.
2749 2014-12-29  Juri Linkov  <juri@linkov.net>
2751         * comint.el (comint-history-isearch-message): Use field-beginning
2752         instead of comint-line-beginning-position - that's more fixes for
2753         http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00305.html
2754         (comint-history-isearch-message): Fix args of isearch-message-prefix.
2756 2014-12-29  Juri Linkov  <juri@linkov.net>
2758         * vc/vc-dir.el (vc-dir-display-file): New command (bug#19450).
2759         (vc-dir-mode-map): Bind it to "\C-o".
2760         (vc-dir-menu-map): Add it to menu.
2762 2014-12-29  Dmitry Gutov  <dgutov@yandex.ru>
2764         * progmodes/etags.el (find-tag-other-window)
2765         (find-tag-other-frame, find-tag-regexp, tags-loop-continue)
2766         (tags-apropos): Declare obsolete.
2768         * menu-bar.el (menu-bar-goto-menu): Replace all but one etags item
2769         with xref ones.
2771 2014-12-28  Eli Zaretskii  <eliz@gnu.org>
2773         * international/mule.el (define-coding-system): Fix typos in the
2774         doc string.
2776 2014-12-28  Kenichi Handa  <handa@gnu.org>
2778         * international/mule.el (define-coding-system): Improve the doc
2779         string.
2781 2014-12-28  Ivan Shmakov  <ivan@siamics.net>
2783         * net/shr.el (shr-tag-table): Fix handling of tbody/header/footer
2784         elements in tables (bug#19444).
2786         * net/eww.el (eww-handle-link): Fix typo in "up" rel handling
2787         (bug#19445).
2789 2014-12-28  Juri Linkov  <juri@linkov.net>
2791         * vc/compare-w.el: Require diff-mode for diff faces.
2792         (compare-windows-removed, compare-windows-added): New faces
2793         inheriting from diff faces.
2794         (compare-windows): Define obsolete face alias.
2795         (compare-windows-highlight): Replace face `compare-windows' with
2796         new faces `compare-windows-added' and `compare-windows-removed'
2797         (bug#19451).
2798         (compare-windows-get-recent-window): Signal an error when
2799         no other window is found (bug#19170).
2801 2014-12-27  Dmitry Gutov  <dgutov@yandex.ru>
2803         * progmodes/elisp-mode.el (elisp--xref-identifier-file):
2804         Skip features that have no sources.
2806         * simple.el (execute-extended-command):
2807         When `suggest-key-bindings' is nil, don't.
2809 2014-12-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
2811         python.el: Native readline completion.
2812         * progmodes/python.el (python-shell-completion-native-disabled-interpreters)
2813         (python-shell-completion-native-enable)
2814         (python-shell-completion-native-output-timeout): New defcustoms.
2815         (python-shell-completion-native-interpreter-disabled-p)
2816         (python-shell-completion-native-try)
2817         (python-shell-completion-native-setup)
2818         (python-shell-completion-native-turn-off)
2819         (python-shell-completion-native-turn-on)
2820         (python-shell-completion-native-turn-on-maybe)
2821         (python-shell-completion-native-turn-on-maybe-with-msg)
2822         (python-shell-completion-native-toggle): New functions.
2823         (python-shell-completion-native-get-completions): New function.
2824         (python-shell-completion-at-point): Use it.
2826 2014-12-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
2828         python.el: Enhance shell user interaction and deprecate
2829         python-shell-get-or-create-process.
2830         * progmodes/python.el (python-shell-get-process-or-error):
2831         New function.
2832         (python-shell-with-shell-buffer): Use it.
2833         (python-shell-send-string, python-shell-send-region)
2834         (python-shell-send-buffer, python-shell-send-defun)
2835         (python-shell-send-file, python-shell-switch-to-shell): Use it.
2836         Add argument MSG to display user-friendly message when no process
2837         is running.
2838         (python-shell-switch-to-shell): Call pop-to-buffer with NORECORD.
2839         (python-shell-make-comint): Rename argument SHOW from POP.
2840         Use display-buffer instead of pop-to-buffer.
2841         (run-python): Doc fix.  Return process.
2842         (python-shell-get-or-create-process): Make obsolete.
2844 2014-12-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
2846         * progmodes/python.el (python-shell-buffer-substring):
2847         Handle cornercase when region sent starts at point-min.
2849 2014-12-27  Eli Zaretskii  <eliz@gnu.org>
2851         * language/misc-lang.el (composition-function-table): Add Syriac
2852         characters and also ZWJ/ZWNJ.
2853         See http://lists.gnu.org/archive/html/help-gnu-emacs/2014-12/msg00248.html
2854         for the details.
2856 2014-12-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
2858         python.el: Fix message when sending region.
2859         * progmodes/python.el (python-shell-send-region): Rename argument
2860         send-main from nomain.  Fix message.
2861         (python-shell-send-buffer): Rename argument send-main from arg.
2863         python.el: Cleanup temp files even with eval errors.
2864         * progmodes/python.el (python-shell-send-file): Make file-name
2865         mandatory.  Fix temp file removal in the majority of cases.
2867         python.el: Handle file encoding for shell.
2868         * progmodes/python.el (python-rx-constituents): Add coding-cookie.
2869         (python-shell--save-temp-file): Write file with proper encoding.
2870         (python-shell-buffer-substring): Add coding cookie for detected
2871         encoding to generated content.  Fix blank lines when removing
2872         if-name-main block.
2873         (python-shell-send-file): Handle file encoding.
2874         (python-info-encoding-from-cookie)
2875         (python-info-encoding): New functions.
2877 2014-12-27  Michael Albinus  <michael.albinus@gmx.de>
2879         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
2880         Use `tramp-rsh-end-of-line', it ought to be more robust.
2882 2014-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2884         * progmodes/js.el (js-syntax-propertize): "return" can't be divided
2885         (bug#19397).
2887 2014-12-27  Michael Albinus  <michael.albinus@gmx.de>
2889         * net/tramp.el (tramp-read-passwd): Ignore errors from `auth-source-*'.
2891         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band): Use "\n"
2892         as end-of-line delimeter for passwords, when running on MS Windows.
2894 2014-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2896         * progmodes/sh-script.el (sh-set-shell): Don't change the global value
2897         of indent-line-function (bug#19433).
2899 2014-12-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
2901         Fix line numbers on Python shell.
2902         * progmodes/python.el (python-shell--save-temp-file): Do not
2903         append coding cookie.
2904         (python-shell-send-string): Generalize for
2905         python-shell-send-region.
2906         (python--use-fake-loc): Delete var.
2907         (python-shell-buffer-substring): Cleanup fake-loc logic.
2908         (python-shell-send-region): Remove fake-loc logic, simplify.
2910 2014-12-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
2912         * progmodes/python.el (python-indent-post-self-insert-function):
2913         Make colon to re-indent only for dedenters, handling
2914         multiline-statements gracefully.
2916 2014-12-27  Michael Albinus  <michael.albinus@gmx.de>
2918         * net/tramp.el (tramp-handle-insert-file-contents):
2919         Set `find-file-not-found-functions' in case of errors.  (Bug#18623)
2921 2014-12-27  Michael Albinus  <michael.albinus@gmx.de>
2923         * net/tramp-sh.el (tramp-send-command-and-read): New optional
2924         arg MARKER.
2925         (tramp-get-remote-path): Use it.
2927 2014-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2929         * subr.el (redisplay-dont-pause): Mark as obsolete.
2931 2014-12-27  Michael Albinus  <michael.albinus@gmx.de>
2933         * net/tramp.el (tramp-error-with-buffer): Call `message' properly.
2934         (tramp-accept-process-output): Use nil as argument for
2935         `accept-process-output', when there is a gateway prepended.
2937         * net/tramp-gw.el (tramp-gw-open-connection): Suppress traces in
2938         wrong debug buffer.
2939         (tramp-gw-open-connection): Set process coding system 'binary.
2940         (tramp-gw-open-network-stream): Handle HTTP error 403.
2942         * net/tramp-sh.el (tramp-compute-multi-hops): Suppress traces in
2943         wrong debug buffer.
2944         (tramp-maybe-open-connection): Set connection property "gateway".
2946 2014-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
2948         * subr.el (sit-for): Tweak docstring (bug#19381).
2950 2014-12-27  Dmitry Gutov  <dgutov@yandex.ru>
2952         * vc/vc-git.el (vc-git-after-dir-status-stage): Move `up-to-date'
2953         stage to after `diff-index' (bug#19386).
2955 2014-12-27  João Távora  <joaotavora@gmail.com>
2957         * textmodes/tex-mode.el (tex-insert-quote): Consider and respect
2958         `electric-pair-mode' (bug#19356).
2960 2014-12-27  Dmitry Gutov  <dgutov@yandex.ru>
2962         elisp-xref-find: Don't create buffers eagerly.
2964         * progmodes/elisp-mode.el (elisp--identifier-location): Fold back
2965         into `elisp--company-location'.
2966         (elisp--identifier-completion-table): Rename to
2967         `elisp--identifier-completion-table', and do not include just any
2968         symbols with a property list.
2969         (elisp-completion-at-point): Revert the 2014-12-25 change.
2970         (elisp--xref-identifier-file): New function.
2971         (elisp--xref-find-definitions): Use it.
2973         * emacs-lisp/find-func.el (find-function-library): New function,
2974         extracted from `find-function-noselect'.
2976         * progmodes/xref.el (xref-elisp-location): New class.
2977         (xref-make-elisp-location): New function.
2978         (xref-location-marker): New implementation.
2980 2014-12-27  Juri Linkov  <juri@linkov.net>
2982         * minibuffer.el (minibuffer-completion-help):
2983         Use shrink-window-if-larger-than-buffer in window-height
2984         when temp-buffer-resize-mode is nil.
2986         * window.el (with-displayed-buffer-window): Remove window-height
2987         from the action alist in the temp-buffer-window-show call
2988         when window-height is handled explicitly afterwards (bug#19355).
2990 2014-12-27  Juri Linkov  <juri@linkov.net>
2992         Support subdirectories when saving places in dired.
2993         * saveplace.el (toggle-save-place, save-place-to-alist)
2994         (save-places-to-alist, save-place-dired-hook):
2995         Use dired-current-directory instead of dired-directory (bug#19436).
2996         (save-place-dired-hook): Add check for alist to make the new
2997         format future-proof to allow other possible formats.
2999 2014-12-26  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3001         python.el: Generate clearer shell buffer names.
3002         * progmodes/python.el (python-shell-get-process-name)
3003         (python-shell-internal-get-process-name): Use `buffer-name`.
3004         (python-shell-internal-get-or-create-process): Simplify.
3006 2014-12-26  Dmitry Gutov  <dgutov@yandex.ru>
3008         Add basic xref apropos implementation to elisp-mode.
3010         * progmodes/elisp-mode.el (elisp--xref-find-definitions):
3011         Filter out nil results.
3012         (elisp--xref-find-apropos): New function.
3013         (elisp-xref-find): Use it.
3015         * progmodes/xref.el (xref--show-xrefs): Use `user-error'.
3017 2014-12-25  Filipp Gunbin  <fgunbin@fastmail.fm>
3019         * dired-aux.el (dired-maybe-insert-subdir):
3020         Make dired-maybe-insert-subdir always skip trivial files.
3022 2014-12-25  Helmut Eller  <eller.helmut@gmail.com>
3023             Dmitry Gutov  <dgutov@yandex.ru>
3025         Consolidate cross-referencing commands.
3027         Move autoloaded bindings for `M-.', `M-,', `C-x 4 .' and
3028         `C-x 5 .' from etags.el to xref.el.
3030         * progmodes/xref.el: New file.
3032         * progmodes/elisp-mode.el (elisp--identifier-types): New variable.
3033         (elisp--identifier-location): New function, extracted from
3034         `elisp--company-location'.
3035         (elisp--company-location): Use it.
3036         (elisp--identifier-completion-table): New variable.
3037         (elisp-completion-at-point): Use it.
3038         (emacs-lisp-mode): Set the local values of `xref-find-function'
3039         and `xref-identifier-completion-table-function'.
3040         (elisp-xref-find, elisp--xref-find-definitions)
3041         (elisp--xref-identifier-completion-table): New functions.
3043         * progmodes/etags.el (find-tag-marker-ring): Mark obsolete in
3044         favor of `xref--marker-ring'.
3045         (tags-lazy-completion-table): Autoload.
3046         (tags-reset-tags-tables): Use `xref-clear-marker-stack'.
3047         (find-tag-noselect): Use `xref-push-marker-stack'.
3048         (pop-tag-mark): Make an alias for `xref-pop-marker-stack'.
3049         (etags--xref-limit): New constant.
3050         (etags-xref-find, etags--xref-find-definitions): New functions.
3052 2014-12-25  Martin Rudalics  <rudalics@gmx.at>
3054         * cus-start.el (resize-mini-windows): Make it customizable.
3056 2014-12-24  Stephen Leake  <stephen_leake@stephe-leake.org>
3058         * startup.el (fancy-about-text): Change buttons for etc/CONTRIBUTE
3059         to (info "(emacs)Contributing").  (Bug#19299)
3061 2014-12-24  Martin Rudalics  <rudalics@gmx.at>
3063         * window.el (mouse-autoselect-window-position-1): New variable.
3064         (mouse-autoselect-window-cancel)
3065         (mouse-autoselect-window-select, handle-select-window):
3066         With delayed autoselection select window only if mouse moves after
3067         selecting its frame.
3069 2014-12-24  Michael Albinus  <michael.albinus@gmx.de>
3071         * eshell/esh-ext.el (eshell-find-interpreter): Expand relative
3072         remote file names.  (Bug#18782)
3074 2014-12-23  Sam Steingold  <sds@gnu.org>
3076         * shell.el (shell-display-buffer-actions): New user option.
3077         (shell): Pass it to `pop-to-buffer' instead of hard-coding
3078         `pop-to-buffer-same-window'.
3080 2014-12-23  Stefan Monnier  <monnier@iro.umontreal.ca>
3082         * progmodes/js.el (js--syntax-propertize-regexp-syntax-table): New var.
3083         (js-syntax-propertize-regexp): Use it to recognize "slash in
3084         a character class" (bug#19397).
3086 2014-12-22  Stefan Monnier  <monnier@iro.umontreal.ca>
3088         * completion.el: Use post-self-insert-hook (bug#19400).
3089         (completion-separator-self-insert-command)
3090         (completion-separator-self-insert-autofilling): Remove.
3091         (completion-separator-chars): New var.
3092         (completion-c-mode-hook, completion-setup-fortran-mode): Use it instead
3093         of changing the keymap.
3094         (completion--post-self-insert): New function.
3095         (dynamic-completion-mode): Use it instead of rebinding keys.
3096         (cmpl--completion-string): Rename from completion-string.
3097         (add-completion-to-head, delete-completion): Let-bind it explicitly.
3099 2014-12-22  Bozhidar Batsov  <bozhidar@batsov.com>
3101         * progmodes/ruby-mode.el (ruby--string-region): Simplify code
3102         by leveraging `syntax-ppss'.
3104 2014-12-22  Artur Malabarba  <bruce.connor.am@gmail.com>
3106         * let-alist.el (let-alist): Use `make-symbol' instead of `gensym'.
3108 2014-12-20  Michael Albinus  <michael.albinus@gmx.de>
3110         * net/tramp-sh.el (tramp-histfile-override): Add :version.
3112 2014-12-20  Teodor Zlatanov  <tzz@lifelogs.com>
3114         * net/tramp-sh.el (tramp-histfile-override): Clarify docstring.
3116 2014-12-19  Artur Malabarba  <bruce.connor.am@gmail.com>
3118         * let-alist.el (let-alist): Enable access to deeper alists by
3119         using dots inside the dotted symbols.
3121 2014-12-19  Alan Mackenzie  <acm@muc.de>
3123         Make C++11 uniform init syntax work.
3124         New keywords "final" and "override".
3125         * progmodes/cc-engine.el (c-back-over-member-initializer-braces):
3126         New function.
3127         (c-guess-basic-syntax): Set `containing-sex' and `lim' using the
3128         new function.
3129         * progmodes/cc-fonts.el (c-font-lock-declarations): Check more
3130         carefully for "are we at a declarator?" using
3131         c-back-over-member-initializers.
3132         * progmodes/cc-langs.el (c-type-modifier-kwds): Include "final"
3133         and "override" in the C++ value.
3135 2014-12-19  Martin Rudalics  <rudalics@gmx.at>
3137         * textmodes/ispell.el (ispell-command-loop): Don't use `next-window'.
3139 2014-12-21  Lars Ingebrigtsen  <larsi@gnus.org>
3141         * net/nsm.el (nsm-save-host): Don't save the host name twice
3142         (bug#19269).
3144 2014-12-18  Sam Steingold  <sds@gnu.org>
3146         Keyboard interface (C-f10) to `mouse-buffer-menu' (C-down-mouse-1).
3147         * mouse.el (mouse-buffer-menu-map): Extract from `mouse-buffer-menu'.
3148         (mouse-buffer-menu): Use `mouse-buffer-menu-map'.
3149         * menu-bar.el (menu-bar-buffer-vector): Extract from
3150         `menu-bar-update-buffers'.
3151         (menu-bar-update-buffers): Use `menu-bar-buffer-vector'.
3152         (buffer-menu-open): New user command, bound globally to C-f10,
3153         provides a keyboard interface to `mouse-buffer-menu' (C-down-mouse-1).
3154         (mouse-buffer-menu-keymap): Use `menu-bar-buffer-vector' to
3155         convert the value returned by `mouse-buffer-menu-map' to a list
3156         acceptable to `popup-menu' for `buffer-menu-open'.
3158 2014-12-18  Artur Malabarba  <bruce.connor.am@gmail.com>
3160         * let-alist.el (let-alist): Evaluate the `alist' argument only once.
3162 2014-12-18  Sam Steingold  <sds@gnu.org>
3164         * emacs-lisp/package.el: Avoid compilation warning by declaring
3165         the `find-library-name' function.
3166         (package-activate-1): Fix the `with-demoted-errors' calls:
3167         the first argument must be a string literal.
3169 2014-12-18  Martin Rudalics  <rudalics@gmx.at>
3171         Add code for "preserving" window sizes.
3172         * dired.el (dired-pop-to-buffer): Call fit-window-to-buffer with
3173         `preserve-size' t.
3174         (dired-mark-pop-up): Preserve size of window showing marked files.
3175         * electric.el (Electric-pop-up-window):
3176         * help.el (resize-temp-buffer-window): Call fit-window-to-buffer
3177         with `preserve-size' t.
3178         * minibuffer.el (minibuffer-completion-help):
3179         Use `resize-temp-buffer-window' instead of `fit-window-to-buffer'
3180         (Bug#19355).  Preserve size of completions window.
3181         * register.el (register-preview): Preserve size of register
3182         preview window.
3183         * tmm.el (tmm-add-prompt): Call fit-window-to-buffer
3184         with `preserve-size' t (Bug#1291).
3185         * window.el (with-displayed-buffer-window): Add calls to
3186         `window-preserve-size'.
3187         (window-min-pixel-size, window--preservable-size)
3188         (window-preserve-size, window-preserved-size)
3189         (window--preserve-size, window--min-size-ignore-p): New functions.
3190         (window-min-size, window-min-delta, window--resizable)
3191         (window--resize-this-window, split-window-below)
3192         (split-window-right): Amend doc-string.
3193         (window--min-size-1, window-sizable, window--size-fixed-1)
3194         (window-size-fixed-p, window--min-delta-1)
3195         (frame-windows-min-size, window--max-delta-1, window-resize)
3196         (window--resize-child-windows, window--resize-siblings)
3197         (enlarge-window, shrink-window, split-window): Handle preserving
3198         window sizes.
3199         (adjust-window-trailing-edge): Handle preserving window
3200         sizes.  Signal user-error instead of an error when there's no
3201         window above or below.
3202         (window--state-put-2): Handle horizontal scroll bars.
3203         (window--display-buffer): Call `preserve-size' if asked for.
3204         (display-buffer): Mention `preserve-size' alist member in doc-string.
3205         (fit-window-to-buffer): New argument PRESERVE-SIZE.
3206         * textmodes/ispell.el (ispell-command-loop): Suppress horizontal
3207         scroll bar on ispell's windows.  Don't count window lines and
3208         don't deal with dedicated windows.
3209         (ispell-show-choices, ispell-help): Let `ispell-display-buffer'
3210         do the window handling.
3211         (ispell-adjusted-window-height, ispell-overlay-window): Remove.
3212         (ispell-display-buffer): New function to reuse, create and fit
3213         window to ispell's buffers.  (Bug#3413)
3215 2014-12-18  Dmitry Gutov  <dgutov@yandex.ru>
3217         * emacs-lisp/package.el (package-activate): Do not re-activate or
3218         reload the dependencies (bug#19390).
3220 2014-12-18  Stefan Monnier  <monnier@iro.umontreal.ca>
3222         * progmodes/cc-cmds.el (c-subword-mode): Alias to subword-mode.
3223         (c-update-modeline):
3224         * progmodes/cc-langs.el (c-mode-menu): Use c-subword-mode.
3225         * progmodes/cc-mode.el (subword-mode): Move autoload to cc-cmds.el.
3226         (c-mode-base-map): Use c-subword-mode.
3228 2014-12-18  Eli Zaretskii  <eliz@gnu.org>
3230         * international/mule-diag.el (describe-font-internal):
3231         Display additional info returned by font-info.
3233         * linum.el (linum--face-width): Rename from linum--face-height,
3234         and use the new functionality of font-info.
3235         (linum-update-window): Use linum--face-width and frame-char-width,
3236         instead of approximating with height.
3238 2014-12-18  Dmitry Gutov  <dgutov@yandex.ru>
3240         * vc/vc-svn.el (vc-svn-dir-status-files): Revert the 2014-12-02
3241         change (bug#19387).  Use `apply' on `vc-dir-command'  (bug#19405).
3243         * emacs-lisp/package.el (package-activate-1): Add RELOAD argument
3244         and a docstring.
3245         (package-activate): Call itself on dependencies on PACKAGE with
3246         the same FORCE argument.  Pass FORCE as RELOAD into
3247         `package-activate-1'  (bug#19390).
3249 2014-12-17  Sam Steingold  <sds@gnu.org>
3251         * emacs-lisp/package.el (package--list-loaded-files):
3252         Handle `(nil ...)' elements in `load-history'.
3254 2014-12-17  Teodor Zlatanov  <tzz@lifelogs.com>
3256         * net/tramp-sh.el (tramp-histfile-override): New variable.
3257         (tramp-open-shell, tramp-maybe-open-connection): Use it.
3259 2014-12-17  Dmitry Gutov  <dgutov@yandex.ru>
3261         * vc/vc.el: Improve `dir-status-files' description.
3263         * emacs-lisp/package.el (package--list-loaded-files): Don't call
3264         file-truename on load-history elements (bug#19390).
3266 2014-12-16  Nicolas Petton  <petton.nicolas@gmail.com>
3268         * emacs-lisp/seq.el: New file.
3270 2014-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
3272         * jit-lock.el (jit-lock-function): Don't defer if jit-lock-defer-time
3273         is 0 and there is no input pending.
3275 2014-12-15  Juri Linkov  <juri@linkov.net>
3277         * replace.el (query-replace-read-from): Use query-replace-compile-replacement
3278         only on the return value (bug#19383).
3280 2014-12-15  Juri Linkov  <juri@linkov.net>
3282         * isearch.el (isearch-lazy-highlight-search): Extend the bound of
3283         the wrapped search by the length of the search string to be able
3284         to lazy-highlight the whole search string at point (bug#19353).
3286 2014-12-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3288         * net/shr.el (shr-fold-text): Don't bug out on zero-length text.
3290 2014-12-14  Alan Mackenzie  <acm@muc.de>
3292         * cus-start.el (all): Add fast-but-imprecise-scrolling.
3294 2014-12-14  Artur Malabarba  <bruce.connor.am@gmail.com>
3296         * let-alist.el: Add lexical binding.
3298 2014-12-14  Steve Purcell  <steve@sanityinc.com>  (tiny change)
3300         * emacs-lisp/package.el (package-menu-mode): Use an extra column
3301         for the "Version" column, to accomodate date-and-time-based versions.
3303 2014-12-14  Cameron Desautels  <camdez@gmail.com>
3305         * cus-edit.el (custom-unsaved-options): New function, extracted
3306         from `customize-unsaved'.
3307         (custom-unsaved): Use it.
3308         (custom-prompt-customize-unsaved-options): New function.
3309         (Bug#19328)
3311 2014-12-14  Dmitry Gutov  <dgutov@yandex.ru>
3313         * fringe.el (fringe-bitmap-p): Fix 2014-12-05 breakage.
3315 2014-12-14  Dmitry Gutov  <dgutov@yandex.ru>
3317         Move ASYNC argument to the `diff' VC command to the fifth
3318         position, for better compatibility with existing third-party code,
3319         and document it.
3321         * vc/vc.el (vc-diff-internal): Pass `async' argument to the
3322         backend `diff' command in the last position.
3324         * vc/vc-svn.el (vc-svn-diff):
3325         * vc/vc-src.el (vc-src-diff):
3326         * vc/vc-sccs.el (vc-sccs-diff):
3327         * vc/vc-rcs.el (vc-rcs-diff):
3328         * vc/vc-mtn.el (vc-mtn-diff):
3329         * vc/vc-hg.el (vc-hg-diff):
3330         * vc/vc-git.el (vc-git-diff):
3331         * vc/vc-dav.el (vc-dav-diff):
3332         * vc/vc-cvs.el (vc-cvs-diff):
3333         * vc/vc-bzr.el (vc-bzr-diff):
3334         * obsolete/vc-arch.el (vc-arch-diff): Move ASYNC argument to the end.
3336 2014-12-14  Paul Eggert  <eggert@cs.ucla.edu>
3338         * emacs-lisp/cconv.el (cconv--analyze-use):
3339         Rename from cconv--analyse-use.
3340         (cconv--analyze-function): Rename from cconv--analyse-function.
3341         (cconv-analyze-form): Rename from cconv-analyse-form.
3343 2014-12-13  Andreas Schwab  <schwab@linux-m68k.org>
3345         * net/shr.el (shr-next-link): Don't error out at eob.
3347 2014-12-05  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
3349         * isearch.el (isearch-open-necessary-overlays): Open overlay
3350         ending at point (bug#19333).
3352 2014-12-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3354         * net/shr.el (shr-fold-text): New function.
3355         (shr-show-alt-text, shr-urlify, shr-tag-img): Use it to fold long
3356         alt/title texts.
3357         (shr-fold-text): Inhibit state from being altered.
3359         * files.el (directory-files-recursively): Really check whether
3360         files are symlinks.
3361         (directory-name-p): New function.
3362         (directory-files-recursively): Use it.
3364 2014-12-13  Artur Malabarba  <bruce.connor.am@gmail.com>
3366         * emacs-lisp/package.el (package--list-loaded-files): New function
3367         to list files in a given directory which correspond to already
3368         loaded files.
3369         (package-activate-1): Reload files given by `package--list-loaded-files'.
3370         Fix bug#10125, bug#18443, and bug#18448.
3372 2014-12-13  Eric S. Raymond  <esr@snark.thyrsus.com>
3374         * vc/vc-svn.el (vc-svn-diff): Fix bug #19312.
3376 2014-12-13  Michael Albinus  <michael.albinus@gmx.de>
3378         * simple.el (password-word-equivalents): Add "passcode", used for
3379         numeric secrets like PINs or RSA tokens.
3381 2014-12-13  Michael Albinus  <michael.albinus@gmx.de>
3383         * net/tramp-sh.el (tramp-get-remote-path): Use a login shell in
3384         order to determine `tramp-own-remote-path'.
3386 2014-12-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3388         * progmodes/python.el (python-shell-parse-command):
3389         Quote `python-shell-interpreter`.  (Bug#19289)
3391 2014-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
3393         * progmodes/python.el (python-indent-line): Use `noindent' in strings.
3394         (python-indent-levels): Document extra value.
3395         (python-indent-calculate-indentation): Return `noindent' in strings.
3396         (python-indent-post-self-insert-function)
3397         (python-indent-calculate-levels): Handle new value.
3399 2014-12-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3401         * net/network-stream.el (network-stream-open-starttls): No need to
3402         check for the availability of `gnutls-available-p'.
3404         * files.el (directory-files-recursively): Don't follow symlinks to
3405         other directories.
3407 2014-12-12  Eric S. Raymond  <esr@snark.thyrsus.com>
3409         * vc/vc-dav.el, vc/vc-git.el, vc/vc-hg.el, vc/vc-src.el:
3410         * vc/vc.el: latest-on-branch-p is no longer a public method.
3412         * vc/vc.el, vc/vc-hg.el, vc/vc-git.el, vc/vc-hooks.el:
3413         * vc/vc-mtn.el, vc/vc-rcs.el, vc/vc-sccs.el, vc/vc-src.el:
3414         Remove `rollback' method, to be replaced in the future by uncommit.
3416 2014-12-11  Michael Albinus  <michael.albinus@gmx.de>
3418         * vc/vc-hg.el (vc-hg-state): Make FILE absolute.  Handle the case
3419         that there is empty output.
3421 2014-12-11  Stefan Monnier  <monnier@iro.umontreal.ca>
3423         * emacs-lisp/eldoc.el (eldoc-documentation-function): Change default.
3424         (eldoc-mode, eldoc-schedule-timer): Adjust to new default.
3426 2014-12-10  Artur Malabarba  <bruce.connor.am@gmail.com>
3428         * let-alist.el: Add new package and macro.
3430 2014-12-10  Eric S. Raymond  <esr@snark.thyrsus.com>
3432         * vc/vc-dispatcher.el, vc/vc-hooks.el, vc/vc-rcs.el:
3433         * vc/vc-sccs.el, vc/vc.el: Righteous featurectomy of vc-keep-workfiles,
3434         it's a shoot-self-in-foot archaism.  Workfiles are always kept.
3436 2014-12-10  Rasmus Pank Roulund  <emacs@pank.eu>
3438         * net/ange-ftp.el (ange-ftp-switches-ok): Disallow flags causing
3439         trouble with ls over ftp.  These flags result in ls returning no
3440         output, causing Tramp-breakage.  (bug#19192)
3442 2014-12-10  Andreas Schwab  <schwab@suse.de>
3444         * files.el (file-tree-walk): Use file-name-as-directory unconditionally.
3446 2014-12-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3448         * files.el (directory-files-recursively):
3449         Use `file-name-all-completions' instead of `directory-files' for
3450         greater speed.
3452         * net/shr.el (shr-tag-object): Don't bug out on text elements in
3453         <object>.
3455 2014-12-09  Bozhidar Batsov  <bozhidar@batsov.com>
3457         * progmodes/ruby-mode.el (auto-mode-alist): Add .rabl, Berksfile
3458         and Puppetfile.
3459         (ruby-toggle-string-quotes): New command that allows you to quickly
3460         toggle between single-quoted and double-quoted string literals.
3462 2014-12-09  Eric S. Raymond  <esr@snark.thyrsus.com>
3464         * vc/vc-src.el (vc-src-do-comand): Prepend -- to file argument
3465         list, avoids problems witt names containing hyphens.
3467 2014-12-09  Wilson Snyder  <wsnyder@wsnyder.org>
3469         Sync with upstream verilog-mode revision aa4b777.
3470         * progmodes/verilog-mode.el (verilog-mode-version): Update.
3471         (verilog-auto-end-comment-lines-re, verilog-end-block-ordered-re)
3472         (verilog-set-auto-endcomments): Automatically comment property/
3473         endproperty blocks to match other similar blocks like sequence/
3474         endsequence, function/endfunction, etc.  Reported by Alex Reed.
3475         (verilog-set-auto-endcomments): Fix end comments for functions of
3476         type void, etc.  Detect the function- or task-name when
3477         auto-commenting blocks that lack an explicit portlist.
3478         Reported by Alex Reed.
3479         (verilog-nameable-item-re): Fix nameable items that can have an
3480         end-identifier to include endchecker, endgroup, endprogram,
3481         endproperty, and endsequence.  Reported by Alex Reed.
3482         (verilog-preprocessor-re, verilog-beg-of-statement):
3483         Fix indentation of property/endproperty around pre-processor
3484         directives.  Reported by Alex Reed.
3485         (verilog-label-be): When auto-commenting a buffer, consider
3486         auto-comments on all known keywords (not just a subset thereof).
3487         Reported by Alex Reed.
3488         (verilog-beg-of-statement): Fix labeling do-while blocks, bug842.
3489         Reported by Alex Reed.
3490         (verilog-beg-of-statement-1, verilog-at-constraint-p):
3491         Fix hanging with many curly-bracket pairs, bug663.
3492         (verilog-do-indent): Fix electric tab deleting form-feeds.
3493         Note caused by indent-line-to deleting tabls pre 24.5.
3494         (verilog-auto-output, verilog-auto-input, verilog-auto-inout)
3495         (verilog-auto-inout-module, verilog-auto-inout-in): Doc fixes.
3496         (verilog-read-always-signals, verilog-auto-sense-sigs)
3497         (verilog-auto-reset): Fix AUTORESET with always_comb and always_latch,
3498         bug844.  Reported by Greg Hilton.
3500 2014-12-09  Alex Reed  <acreed4@gmail.com>  (tiny change)
3502         * progmodes/verilog-mode.el (verilog-no-indent-begin-re):
3503         Fix `verilog-indent-begin-after-if' nil not honoring 'forever',
3504         'foreach', and 'do' keywords.
3505         (verilog-endcomment-reason-re, verilog-beg-of-statement):
3506         Fix labeling do-while blocks, bug842.
3507         (verilog-backward-token): Fix indenting sensitivity lists with
3508         named events, bug840.
3510 2014-12-09  Reto Zimmermann  <reto@gnu.org>
3512         Sync with upstream vhdl mode v3.36.1.
3513         * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
3514         (vhdl-compiler-alist): Anchor all error regexps.
3515         (vhdl-compile-use-local-error-regexp): Change default to nil.
3516         (vhdl-asort, vhdl-anot-head-p): Remove.
3517         (vhdl-aput, vhdl-adelete, vhdl-aget): Simplify.
3518         Remove optional argument of vhdl-aget and update all callers.
3519         (vhdl-import-project): Also set `vhdl-compiler'.
3521 2014-12-09  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3523         * files.el (find-files): New function.
3525         * net/shr.el (shr-dom-print): Don't print comments.
3526         (shr-tag-svg): Give inline SVG images the right type.
3528         * net/eww.el (eww-update-header-line-format): Mark valid/invalid
3529         certificates in the header line.
3530         (eww-invalid-certificate, eww-valid-certificate): New faces.
3532 2014-12-09  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3534         * progmodes/python.el (inferior-python-mode):
3535         Set `comint-prompt-read-only` to `t` only locally.
3537 2014-12-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3539         * net/nsm.el (nsm-check-protocol): Test for RC4 on `high'.
3540         (nsm-format-certificate): Include more data about the connection.
3541         (nsm-query): Fill the text to that it looks nicer.
3542         (nsm-check-protocol): Also warn if using SSL3 or older.
3544 2014-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
3546         * progmodes/gud.el (gud-gdb-completions): Remove unused var `start'.
3548         * obsolete/gulp.el (gulp-create-m-p-alist): Remove unused var `mnt-tm'.
3550         * net/tramp.el (tramp-handle-make-symbolic-link): Mark unused arg.
3552         * info.el (Info-mode-map): Remove left-over binding.
3554         * emacs-lisp/avl-tree.el: Use lexical-binding and cl-lib.
3555         (avl-tree--root): Remove redundant defsetf.
3557 2014-12-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3559         * net/nsm.el (network-security-level): Remove the detailed
3560         description, which was already outdated, and refer the users to
3561         the manual.
3562         (nsm-check-protocol): Check for weak Diffie-Hellman prime bits
3563         (bug#19153).
3565 2014-12-06  Andrey Kotlarski  <m00naticus@gmail.com>
3567         * net/eww.el (eww-buffers-mode): New major mode.
3568         (eww-list-buffers, eww-buffer-select, eww-buffer-show-next)
3569         (eww-buffer-show-previous, eww-buffer-kill, eww-buffer-show):
3570         New commands/functions (bug#19131).
3572 2014-12-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3574         * net/gnutls.el (gnutls-negotiate): Ignore files found via
3575         'file-name-handler-alist' since the gnutls library can't use those
3576         (bug#15866).
3578 2014-12-08  Dmitry Gutov  <dgutov@yandex.ru>
3580         * vc/vc-hg.el (vc-hg-dir-status-files): Only include ignores files
3581         when FILES is non-nil (bug#19304).
3583 2014-12-08  Eric S. Raymond  <esr@snark.thyrsus.com>
3585         * vc/vc-arch.el: Move to obsolete directory so a test framework
3586         won't trip over bit-rot in it.  There has been no Arch snapshot
3587         for nine years.
3589 2014-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3591         * net/eww.el (eww-follow-link): Revert prefix behaviour to
3592         previous behavior.
3593         (eww-copy-page-url): Add doc string.
3595 2014-12-07  Ivan Shmakov  <ivan@siamics.net>
3597         * net/eww.el (eww): Move history recording here...
3598         (eww-browse-url): ... from here (bug#19253).
3600         * net/eww.el (eww-browse-url): Use generate-new-buffer (was:
3601         iterating over possible buffer names.)
3603 2014-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3605         * net/eww.el (eww-reload): Take a prefix to work locally (bug#19086).
3606         (eww-current-buffer): Compilation fix for bug#18550 patch.
3608 2014-12-07  Ivan Shmakov  <ivan@siamics.net>
3610         * net/eww.el (eww-list-histories): Restore the history in the
3611         correct buffer (bug#18550).
3613 2014-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3615         * net/eww.el (eww-bookmark-prepare): Display URLs in first by
3616         displaying shortened titles first (bug#16398).
3618 2014-12-07  Tom Willemse  <tom@ryuslash.org>  (tiny change)
3620         * progmodes/python.el: Recognize docstrings.
3621         (python-docstring-at-p, python-font-lock-syntactic-face-function):
3622         New functions.
3623         (python-mode): Use them.
3625 2014-12-06  Ulf Jasper  <ulf.jasper@web.de>
3627         * net/newst-treeview.el (newsticker--treeview-list-add-item)
3628         (newsticker--treeview-propertize-tag): Bind tree menu to mouse-3.
3629         (newsticker--treeview-create-groups-menu)
3630         (newsticker--treeview-create-tree-menu): Remove.
3631         (newsticker--treeview-tree-open-menu): New.
3632         (newsticker-treeview-tree-click): Pass event to
3633         `newsticker-treeview-tree-do-click'.
3634         (newsticker-treeview-tree-do-click): Open treemenu on mouse-3.
3636 2014-12-05  Juri Linkov  <juri@linkov.net>
3638         * comint.el (comint-history-isearch-search)
3639         (comint-history-isearch-wrap): Use field-beginning instead of
3640         comint-line-beginning-position.
3641         (comint-send-input): Go to the end of the field instead of the end
3642         of the line to accept whole multi-line input.
3643         http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00305.html
3645 2014-12-05  Juri Linkov  <juri@linkov.net>
3647         * minibuffer.el (minibuffer-completion-help):
3648         Compare selected-window with minibuffer-window to check whether
3649         completions should be displayed near the minibuffer.  (Bug#17809)
3650         http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00311.html
3652 2014-12-05  Michael Albinus  <michael.albinus@gmx.de>
3654         * vc/vc-mtn.el (vc-mtn-root):
3655         * vc/vc-svn.el (vc-svn-registered): Make FILE absolute.
3657 2014-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3659         * progmodes/sh-script.el (sh-smie-sh-rules): Go back to the beginning
3660         of the whole pipe when indenting an opening keyword after a |.
3661         Generalize this treatment to opening keywords like "while" (bug#18031).
3663 2014-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3665         * simple.el (newline): Place the hook buffer-locally,
3666         to make sure it's first.
3668         * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
3669         Fix handling of symbols with different syntax at beginning/end or with
3670         symbol rather than word syntax.
3672 2014-12-05  Eli Zaretskii  <eliz@gnu.org>
3674         * simple.el (line-move): If noninteractive, call line-move-1, not
3675         forward-line, since the former is compatible with line-move-visual
3676         both in terms of the column to which it moves and the return
3677         value.  (Bug#19211)
3679 2014-12-05  Stefan Monnier  <monnier@iro.umontreal.ca>
3681         * vc/ediff-init.el (ediff-odd-p): Remove.
3682         (ediff-background-face): Use cl-oddp instead.
3683         (ediff-buffer-live-p): Make it a defsubst.
3685         * tooltip.el (tooltip-region-active-p): Remove.
3687         * net/shr.el (shr-char-breakable-p, shr-char-kinsoku-bol-p)
3688         (shr-char-kinsoku-eol-p, shr-char-nospace-p): Use define-inline.
3690         * fringe.el (fringe-bitmap-p): Make it a plain function.
3692         * emacs-lisp/eieio-core.el: Prefer inlinable functions over macros.
3693         (class-p, generic-p, eieio-object-p, class-abstract-p):
3694         Make them defsubst, so as to avoid corner case problems where
3695         the arg might be evaluated in the condition-case, or it can't be passed
3696         to higher-order functions like `cl-some'.
3698 2014-12-05  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
3700         * wid-edit.el (widget-choose): Let numeric keypad work (bug#19268)
3701         and remove old menu-related code.
3703 2014-12-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3705         * net/eww.el (eww-display-pdf): Let mailcap determine how to
3706         display PDF files (bug#19270).
3708 2014-12-05  Juri Linkov  <juri@linkov.net>
3710         Compare with the most recent window by default.
3711         * vc/compare-w.el (compare-windows-get-window-function): New defcustom.
3712         (compare-windows-get-recent-window)
3713         (compare-windows-get-next-window): New functions.
3714         (compare-windows, compare-windows-sync-default-function):
3715         Use `compare-windows-get-window-function' instead of `next-window'.
3716         (compare-windows): Add diff/match messages with region boundaries.
3717         (Bug#19170)
3719 2014-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
3721         * subr.el (filter): Remove.  Use `cl-remove-if-not' or `seq-filter'.
3723 2014-12-04  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3725         * net/shr.el (shr--extract-best-source): Ignore non-text children.
3727 2014-12-04  Eli Zaretskii  <eliz@gnu.org>
3729         Implement copying of a buffer portion while preserving visual order.
3730         * simple.el (bidi-directional-controls-chars)
3731         (bidi-directional-non-controls-chars): New variables.
3732         (squeeze-bidi-context-1, squeeze-bidi-context)
3733         (line-substring-with-bidi-context)
3734         (buffer-substring-with-bidi-context): New functions.
3736         * files.el (file-tree-walk): Doc fix.
3738 2014-12-04  Rupert Swarbrick  <ruperts@broadcom.com> (tiny change)
3739             Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
3741         * autoinsert.el (auto-insert-alist): Update C/C++ header and
3742         program support to match more extensions.  Replace non-alnum
3743         characters when generating include guards (headers) and check for
3744         more extensions when generating includes (programs)
3745         (bug#19254).
3747 2014-12-03  Eric S. Raymond  <esr@snark.thyrsus.com>
3749         * files.el (file-tree-walk): Fix docstring.
3751 2014-12-03  Karl Fogel  <kfogel@red-bean.com>
3753         Fix bug whereby saving files hung in VC hook.
3755         Saving a buffer visiting a file under SVN control would hang if
3756         the remote repository were unreachable, because the VC hooks tried
3757         to run "svn status -u" on the file, where the "-u" tells svn to
3758         get update information from the remote repository.
3759         http://lists.gnu.org/archive/html/emacs-devel/2014-12/msg00174.html
3761         * vc/vc-svn.el (vc-svn-state): Remove optional `localp'
3762         argument and always pass "-v" to "svn status", never "-u".
3764 2014-12-03  Stefan Monnier  <monnier@iro.umontreal.ca>
3766         * emacs-lisp/inline.el: Fix up copyright header.
3767         (inline-quote, inline-const-p, inline-const-val, inline-error):
3768         Silence compiler warnings.
3769         (inline-letevals): Fix edebug spec.
3770         (inline--testconst-p): Consider lambda expressions as const-p.
3771         (inline--getconst-val): Use inline--testconst-p.
3773         * minibuffer.el (completion-table-dynamic): Add arg `switch-buffer'
3774         and change default to stay in the minibuffer when called from
3775         the minibuffer (bug#19250).
3776         (lazy-completion-table): Use this new argument to preserve the
3777         old behavior.
3779         * progmodes/elisp-mode.el (elisp--local-variables): Don't burp on
3780         incorrect lexical elements (bug#19250).
3782 2014-12-03  A. N. Other  <none@example.com>
3784         * files.el (file-tree-walk): Lisp translation of ANSI ftw(3).
3786 2014-12-02  Glenn Morris  <rgm@gnu.org>
3788         * whitespace.el (whitespace-big-indent-regexp): Add :version.
3790 2014-12-02  Eric S. Raymond  <esr@snark.thyrsus.com>
3792         * subr.el (filter): New macro.  Because it's just silly for a Lisp
3793         not to have this in 2014.  And VC needs it.
3795         * vc.el: All backends: API simplification: Abolish dir-status.
3796         It's replaced by dir-status-files.
3798         * vc.el: All backends: API simplification: Remove 4th
3799         'default-state' argument from vc-dir-status files and its backend
3800         methods - no backend method ever set it.  It was used only in the
3801         fallback method to to set a default of 'up-to-date, though a
3802         convoluted call chain obscured this.
3804         * vc-hooks.el: Bind vc-delete-file to Ctrl-x v delete.
3806         * vc.el (vc-expand-dirs): Now takes a second BACKEND argument,
3807         improving behavior on directories using multiple file-oriented VCSes.
3809         * vc/vc.el: All backends: API simplification; clear-headers
3810         is no longer a public method.  It is now local to the one place
3811         it's used, in the RCS steal-lock method.
3813 2014-12-01  Eric S. Raymond  <esr@snark.thyrsus.com>
3815         * vc/vc.el: In all backends: API simplification; could-register
3816         is no longer a public method.  (vc-cvs.el still has a private
3817         implementation.)
3819         * vc/vc.el: In all backends: API cleanup; the backend diff method
3820         takes an explicit async flag.  This eliminates a particularly ugly
3821         global.
3823         * vc-bzr.el: Restore vc-bzr-state-heuristic as a private method.
3824         VC randomly/unpredictably fails without it; cause not yet established.
3826 2014-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3828         Merge some of the differences from the standalone CC-mode.
3829         The main change is to only use the `category' text-property only when
3830         available.  For that many calls are changed to use c-get-char-property,
3831         c-next-single-property-change, c-sc-scan-lists,
3832         c-sc-parse-partial-sexp, c-unmark-<->-as-paren.
3834         * progmodes/cc-mode.el (c-just-done-before-change): New var.
3835         (c-basic-common-init): Initialize it.
3836         (c-common-init): Only use mode-require-final-newline when available.
3837         (c-before-change): Check and set c-just-done-before-change.
3838         (c-after-change): Re-set c-just-done-before-change.
3839         (c-advise-fl-for-region): New macro.
3840         (lazy-lock-defer-rest-after-change, lazy-lock-defer-line-after-change)
3841         (font-lock-after-change-function, jit-lock-after-change):
3842         Advise if needed.
3844         * progmodes/cc-langs.el (c-modified-constant): New lang var.
3845         (c-known-type-key): Don't make a list just to throw it away.
3847         * progmodes/cc-engine.el (c-invalidate-state-cache, c-parse-state):
3848         Handle the case where categories are not available.
3849         (c-record-parse-state-state, c-replay-parse-state-state):
3850         Handle marker values.
3851         (c-before-change-check-<>-operators): Look for the `syntax-table'
3852         property rather than for the corresponding `category'.
3853         (c-looking-at-decl-block): Remove unused var
3854         `c-disallow-comma-in-<>-arglists'.
3855         (c-forward-<>-arglist-recur): Remove unused var
3856         `orig-record-found-types'.
3858         * progmodes/cc-defs.el (c-version): Bump up to 5.33.
3859         (c-use-category): New const.
3860         (c-next-single-property-change): New macro.
3861         (c-region-is-active-p): Prefer region-active-p when available.
3862         (c-search-backward-char-property): Fix old min/max typo; probably
3863         a copy/paste error.
3864         (c-mark-<-as-paren, c-mark->-as-paren, c-unmark-<->-as-paren):
3865         Turn them into macros that obey c-use-category.
3866         (c-sc-scan-lists-no-category+1+1, c-sc-scan-lists-no-category+1-1)
3867         (c-sc-scan-lists-no-category-1+1, c-sc-scan-lists-no-category-1-1)
3868         (c-sc-scan-lists, c-sc-parse-partial-sexp)
3869         (c-looking-at-non-alphnumspace): New macros.
3870         (c-sc-parse-partial-sexp-no-category): New function.
3871         (c-emacs-features): Add `category-properties' element.
3873         * progmodes/cc-cmds.el (c-forward-into-nomenclature)
3874         (c-backward-into-nomenclature): Use cc-subword if subword-mode is
3875         not available.
3876         (c-beginning-of-defun, c-end-of-defun, c-mark-function)
3877         (c-indent-line-or-region): Use c-region-is-active-p.
3879         * progmodes/cc-bytecomp.el (cc-bytecomp-unbound-variables)
3880         (cc-bytecomp-original-functions, cc-bytecomp-original-properties)
3881         (cc-bytecomp-loaded-files): Re-set each time the file is loaded.
3882         (cc-bytecomp-obsolete-var, cc-bytecomp-ignore-obsolete)
3883         (cc-bytecomp-obsolete-fun): Delete unused functions.
3885         * progmodes/cc-align.el (c-lineup-respect-col-0): New function.
3887 2014-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3889         * net/shr.el (shr-dom-print): Fix up `shr-dom-print' after the
3890         dom.el changes.
3892 2014-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3894         * vc/vc.el (vc-find-conflicted-file): Look for conflicted files in the
3895         current "project" rather than just the current directory.
3896         * vc/vc-git.el (vc-git-conflicted-files): Clarify in which directory
3897         the file names make sense.
3899         * vc/smerge-mode.el (smerge-swap): New command.
3901         * vc/diff-mode.el (diff-kill-applied-hunks): New command.
3903 2014-12-01  Ulf Jasper  <ulf.jasper@web.de>
3905         * net/newst-treeview.el (newsticker--treeview-item-show):
3906         Check window liveliness before measuring its width.
3908         * net/newst-backend.el (newsticker--get-news-by-url-callback):
3909         Pass correct status to `newsticker--sentinel-work'.
3910         (newsticker--sentinel-work): Use "newsticker--download-error" as
3911         guid in order to prevent multiple "Could not download..."
3912         messages.  (Bug#19166)
3914 2014-12-01  Ivan Shmakov  <ivan@siamics.net>
3916         * net/eww.el (eww-render): Call `eww-after-render-hook' in the
3917         correct buffer (bug#19225).
3919 2014-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
3921         * net/nsm.el (network-security-level): Change the default to `medium'.
3923         * net/eww.el (eww): Leave point in a place that doesn't cause
3924         scrolling when displaying "Loading...".
3926 2014-12-01  Eric S. Raymond  <esr@snark.thyrsus.com>
3928         * vc/vc.el, vc/vc-cvs.el, vc/vc-rcs.el, vc/vc-svn.el: The 'merge'
3929         backend method of RCS/CVS/SVN is now 'merge-file', to contrast with
3930         'merge-branch'.  Prompting for merge revisions is pushed down to
3931         the back ends; this fixes a layering violation that caused bad
3932         behavior with SVN.
3934         * vc/vc.el, vc-hooks.el: All backends: API simplification;
3935         vc-stay-local-p and repository-hostname are no longer public
3936         methods.  Only the CVS and SVN backends used these, and the SVN
3937         support was conditioned out because svn status -v is too slow.
3938         The CVS back end retains this machinery and the vc-stay-local
3939         configuration variable now only affects it.
3941 2014-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
3943         * emacs-lisp/inline.el: New file.
3945 2014-12-01  Eric S. Raymond  <esr@snark.thyrsus.com>
3947         * vc/vc.el, vc-hooks.el: All backends: API simplification;
3948         vc-state-heuristic is no longer a public method, having been
3949         removed where it is redundant, unnecessary, or known buggy.
3950         This eliminated all backends except CVS.  Eliminates bug#7850.
3952         * vc/vc-cvs.el, vc/vc-hooks.el, vc/vc-rcs.el, vc/vc-sccs.el:
3953         Eliminate vc-mistrust-permissions.  It was only relevant to the
3954         RCS and SCCS back ends and defaulted to t.  Code now always
3955         mistrusts permissions - by actual measurement the effect on
3956         performance is negligible.  As a side effect bug#11490 is now
3957         irrelevant.
3959         * vc/vc.el, vc-hooks.el: All backends: API simplification;
3960         vc-workfile-unchanged-p is no longer a public method (but the RCS
3961         and SCCS back ends retain it as a private method used in state
3962         computation).  This method was redundant with vc-state and usually
3963         implemented as a trivial call to same.  Fixes the failure mode
3964         described in bug#694.
3966         * vc/vc.el: All backends: API simplification; init-revision is
3967         gone, and vc-registered functions no longer take an
3968         initial-revision argument.
3970 2014-11-29  Glenn Morris  <rgm@gnu.org>
3972         * vc/vc-src.el (vc-src, vc-src-diff-switches)
3973         (vc-src-master-templates): Fix :version tags.
3975 2014-11-29  Paul Rankin  <paul@tilk.co>  (tiny change)
3977         * outline.el (outline-move-subtree-down): Refactor and improve code.
3979 2014-11-29  Stephen Berman  <stephen.berman@gmx.net>
3980             Stefan Monnier  <monnier@iro.umontreal.ca>
3982         * outline.el (outline-move-subtree-down): Make sure we can move
3983         forward to find the end of the subtree and the insertion point
3984         (bug#19102).
3986 2014-11-29  Fabián Ezequiel Gallina  <fgallina@gnu.org>
3988         * progmodes/python.el (python-shell-completion-setup-code):
3989         Use __builtin__ module (or builtins in Python 3) and catch all errors
3990         when importing readline and rlcompleter.
3992 2014-11-29  Stephen Berman  <stephen.berman@gmx.net>
3994         * calendar/todo-mode.el: Handle calling revert-buffer (bug#19187).
3995         (todo-revert-buffer): New function.
3996         (todo-modes-set-1): Use it as the buffer-local value of
3997         revert-buffer-function.
3999 2014-11-29  Stephen Berman  <stephen.berman@gmx.net>
4001         * calendar/todo-mode.el (todo-mode): If called interactively, just
4002         display a message saying to call todo-show to enter Todo mode
4003         (Bug#19112).
4005 2014-11-29  Dmitry Gutov  <dgutov@yandex.ru>
4007         * vc/vc-hg.el (vc-hg-dir-status-files): Include ignored files.
4008         (Bug#18579)
4010         * vc/vc-bzr.el (vc-bzr-after-dir-status): Don't skip ignored
4011         files.  (Bug#18579)
4013 2014-11-29  Michael Albinus  <michael.albinus@gmx.de>
4015         * textmodes/makeinfo.el (makeinfo-buffer): Make it work also for
4016         remote `buffer-file-name'.
4018 2014-11-29  Leo Liu  <sdl.web@gmail.com>
4020         * calendar/diary-lib.el (calendar-mark-1): Fix thinko.
4022 2014-11-29  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4024         Set PYTHONUNBUFFERED on shell startup.
4026         * progmodes/python.el (python-shell-unbuffered): New var.
4027         (python-shell-calculate-process-environment): Use it.
4029 2014-11-29  Michael Albinus  <michael.albinus@gmx.de>
4031         * net/tramp.el (tramp-action-password): Clean password on subsequent
4032         attempts even if there was no wrong password indication.  (Bug#19047)
4034         * net/tramp-sh.el (tramp-get-remote-locale): Return "LC_ALL=C" as
4035         fallback.
4036         (tramp-open-connection-setup-interactive-shell): No need to check
4037         for nil as `tramp-get-remote-locale' return value.
4039 2014-11-29  Eli Zaretskii  <eliz@gnu.org>
4041         * vc/vc-git.el (vc-git-command, vc-git--call):
4042         Bind coding-system-for-read and coding-system-for-write to
4043         vc-git-commits-coding-system.
4044         (vc-git-previous-revision): Use "~1" instead of "^", since the
4045         latter is a special character for MS-Windows system shells.
4047 2014-11-29  Michael Albinus  <michael.albinus@gmx.de>
4049         Improve XEmacs compatibility.
4051         * net/tramp.el (tramp-autoload-file-name-handler):
4052         Wrap `temporary-file-directory' by `symbol-value', it doesn't
4053         exist in XEmacs.
4054         (tramp-read-passwd): Don't use `with-timeout-suspend' and
4055         `with-timeout-unsuspend' if they don't exist, like in XEmacs.
4056         (tramp-time-less-p, tramp-time-subtract): Remove functions.
4057         (tramp-handle-file-newer-than-file-p, tramp-time-diff):
4058         * net/tramp-adb.el (tramp-adb-ls-output-time-less-p):
4059         * net/tramp-cache.el (tramp-get-file-property):
4060         * net/tramp-smb.el (tramp-smb-handle-insert-directory):
4061         Use `time-less-p' and `time-subtract, respectively.
4063         * net/tramp-adb.el (top): Do not require time-date.el.
4065         * net/tramp-compat.el (top): Require time-date.el for XEmacs.
4067         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
4068         Check, whether `utf-8' is a valid coding system.
4070 2014-11-29  Eli Zaretskii  <eliz@gnu.org>
4072         * vc/vc.el (vc-retrieve-tag): Doc fix.
4074 2014-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
4076         * simple.el (execute-extended-command--shorter): Fix the "M-p" case
4077         (bug#19152).
4079 2014-11-28  Martin Rudalics  <rudalics@gmx.at>
4081         Fix two issues around help-window-select.  (Bug#11039) (Bug#19012)
4082         * help.el (help-window-old-frame): New variable.
4083         (help-window-select): Default to nil (Bug#11039).
4084         Rewrite doc-string.
4085         (help-window-setup): When the help window appears on another
4086         frame and `help-window-select' is non-nil, give that frame input
4087         focus too (Bug#19012).
4088         (with-help-window): Store selected frame in
4089         help-window-old-frame.
4091 2014-11-28  Ulf Jasper  <ulf.jasper@web.de>
4093         * net/newst-treeview.el (newsticker--treeview-load): Take care of
4094         nil value for `newsticker-groups-filename'.
4096 2014-11-28  Daiki Ueno  <ueno@gnu.org>
4098         * epa.el (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
4099         (epa-sign-region, epa-encrypt-region):
4100         Use `epg-context-set-{passphrase,progress}-callback', instead of
4101         `setf'.  This partially reverts commit 9e48a95c (bug#19150).
4102         Reported by José A. Romero L.
4104 2014-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4106         * net/eww.el (eww-restore-history):
4107         Bind `inhibit-modification-hooks' instead of `after-change-functions'.
4109 2014-11-27  Ulf Jasper  <ulf.jasper@web.de>
4111         * net/newst-backend.el (newsticker--parse-atom-1.0):
4112         Handle embedded (x)html in summary node.
4114 2014-11-27  Sam Steingold  <sds@gnu.org>
4116         * menu-bar.el (menu-bar-open): When everything else fails,
4117         use (mouse-menu-bar-map).
4119 2014-11-27  Ulf Jasper  <ulf.jasper@web.de>
4121         * net/newst-treeview.el (newsticker-groups-filename):
4122         Change default value to nil.  Point out that variable is obsolete in doc
4123         string.
4124         (newsticker--treeview-load): Change wording of the questions the
4125         user is asked when `newsticker-groups-filename' is found to be
4126         used and we offer to read and remove the groups file.  (Bug#19165)
4128 2014-11-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4130         * net/eww.el (eww): Record the new URL immediately, so that if the
4131         HTTP fetch fails, we have the right URL in the buffer.
4132         (eww-process-text-input): Don't shorten the input field if
4133         deleting at the last character (bug#19085).
4134         (eww-restore-history): Inhibit change functions while restoring
4135         the history.
4136         (eww-process-text-input): Fix deletion at the start of the field, too.
4137         (eww-mode): Revert mistanken removal of `buffer-disable-undo'.
4138         (eww-process-text-input): Try to keep track of the size more reliably.
4140         * dom.el (dom-pp): New function.
4142 2014-11-27  Eli Zaretskii  <eliz@gnu.org>
4144         * vc/vc-bzr.el (vc-bzr-print-log, vc-bzr-expanded-log-entry):
4145         Don't assume --long is the default for "bzr log", always specify
4146         it explicitly, in case the user defined an alias for 'log' that
4147         uses some other format.
4149 2014-11-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4151         * progmodes/python.el (python-eldoc--get-doc-at-point):
4152         Strip shell output before returning.  (bug#18794)
4154 2014-11-27  Dmitry Gutov  <dgutov@yandex.ru>
4156         Fix indentation before `!=' and after `+='.  Originally reported
4157         in https://github.com/mooz/js2-mode/issues/174.
4158         * progmodes/js.el (js--indent-operator-re): Make assignments and
4159         (in)equality operator a separate case.
4160         (js--continued-expression-p): Escape the second `+' in the regexp.
4162 2014-11-27  Stefan Monnier  <monnier@iro.umontreal.ca>
4164         * window.el (handle-select-window): Deactivate shift-region (bug#19003).
4166 2014-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4168         * net/nsm.el (nsm-new-fingerprint-ok-p): Display the certificate
4169         when querying about new certificates.
4171         * net/shr.el (shr-make-table-1): dom.el changes for table rendering.
4173         * dom.el (dom-by-tag): Use `equal' for comparisons so that tags
4174         can be strings.
4175         (dom-elements): Protect against non-text nodes.
4176         (dom-non-text-children): New function.
4178         * net/eww.el (eww-tag-title): Use `dom-text'.
4180 2014-11-26  Sam Steingold  <sds@gnu.org>
4182         * textmodes/sgml-mode.el (sgml-validate-command): Pass -utf8 to tidy.
4184 2014-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4186         * net/eww.el (eww-highest-readability): More dom.el fixes.
4188 2014-11-26  Ulf Jasper  <ulf.jasper@web.de>
4190         * net/newst-backend.el (newsticker--parse-generic-items):
4191         Take care of UIDs when adding elements to cache.
4193 2014-11-26  Alan Mackenzie  <acm@muc.de>
4195         Remove spurious reference to symbol category_properties.
4196         * progmodes/cc-engine.el (c-state-pp-to-literal): Fix here.
4198 2014-11-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4200         * net/eww.el: Use the new dom.el accessors throughout.
4202         * net/shr.el: Ditto.
4204         * dom.el: New file.
4206 2014-11-26  Glenn Morris  <rgm@gnu.org>
4208         * arc-mode.el (archive-visit-single-files): Add :version.
4210 2014-11-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4212         * net/nsm.el (nsm-format-certificate): Don't bug out on missing
4213         elements.
4214         (nsm-warnings-ok-p): The new version of this function always
4215         returned nil when everything was OK.
4217 2014-11-25  Teodor Zlatanov  <tzz@lifelogs.com>
4219         * net/gnutls.el (gnutls): Set :group to 'comm so it's near NSM.
4221         * net/nsm.el (nsm-check-tls-connection, nsm-save-host)
4222         (nsm-warnings-ok-p): Use `gnutls-peer-status-warning-describe'.
4224 2014-11-20  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
4226         * emacs-lisp/byte-run.el (function-put): Match argument names to
4227         docstring.
4229 2014-11-24  Sam Steingold  <sds@gnu.org>
4231         * vc/vc-hooks.el (vc-directory-exclusion-list):
4232         Fix a trivial typo (bug#19171).
4234 2014-11-24  Stefan Monnier  <monnier@iro.umontreal.ca>
4236         * vc/vc-hooks.el (vc-state-base-face): Don't override
4237         mode-line-inactive.
4239 2014-11-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4241         * net/eww.el (eww-set-character-encoding): Use `read-coding-system'.
4242         (eww-process-text-input): Inhibit read only so that input fields
4243         don't get shortened (bug#19085).
4245 2014-11-24  Leo Liu  <sdl.web@gmail.com>
4247         * emacs-lisp/macroexp.el (macroexp-let2*): New macro.
4249         * window.el (with-temp-buffer-window)
4250         (with-current-buffer-window, with-displayed-buffer-window):
4251         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin):
4252         * emacs-lisp/cl-lib.el (substring):
4253         * emacs-lisp/cl-extra.el (cl-getf): Use it.
4255 2014-11-24  Eli Zaretskii  <eliz@gnu.org>
4257         * isearch.el (isearch-update): Don't assume
4258         pos-visible-in-window-p will return nil when point is hscrolled
4259         out of view.  (Bug#19157)
4261 2014-11-20  Andrey Kotlarski  <m00naticus@gmail.com>
4263         * net/eww.el (eww-browse-url): Optionally create new eww buffer.
4264         (eww-follow-link): Follow in new buffer in case of prefix
4265         argument, open externally with double prefix (bug#19130).
4267 2014-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4269         * net/eww.el (eww-display-html): Decode the document-defined charset.
4270         (eww): Pop to the *eww* buffer immediately after executing the
4271         `M-x eww' command to avoid having buffers pop up later.
4272         (eww-display-html): Don't pop the *eww* buffer.
4273         (eww-display-raw): Ditto.
4274         (eww-display-image): Ditto.
4275         (eww-follow-link): Make going to #targets in the page work again.
4277 2014-11-23  Ivan Shmakov  <ivan@siamics.net>
4279         * net/eww.el (eww-suggest-uris): New variable.
4280         (eww-suggested-uris): New function.
4281         (eww): Default to URL under point.
4282         (eww-links-at-point): New function.
4284 2014-11-20  Mark Oteiza  <mvoteiza@udel.edu>  (tiny change)
4286         * net/eww.el (eww-add-bookmark): Fix bookmark titles.
4288 2014-11-17  Mark Oteiza  <mvoteiza@udel.edu>  (tiny change)
4290         * net/eww.el (eww-mode-map): Bind backtab to shr-previous-link.
4292 2014-11-23  Kenjiro Nakayama  <nakayamakenjiro@gmail.com>
4294         * net/eww.el (eww-set-character-encoding): New command and keystroke.
4295         (eww-display-raw): Use it (bug#16225).
4297 2014-11-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4299         * net/nsm.el (network-security-level): Rename from
4300         `nsm-security-level' and documented.
4302         * mail/smtpmail.el (smtpmail-via-smtp): Warn unless encrypted and
4303         we're sending a password.
4305         * net/nsm.el: New file that implements a Network Security Manager.
4307         * net/network-stream.el (open-network-stream): Add a new
4308         :warn-unless-encrypted parameter.
4309         (network-stream-open-plain): Allow warning unless encrypted.
4310         (network-stream-open-starttls): Call the Network Security Manager.
4311         (network-stream-open-tls): Ditto.
4313 2014-11-23  Leo Liu  <sdl.web@gmail.com>
4315         * calendar/cal-china.el (calendar-chinese-from-absolute-for-diary)
4316         (calendar-chinese-to-absolute-for-diary)
4317         (calendar-chinese-mark-date-pattern, diary-chinese-anniversary):
4318         Handle leap months in Chinese calendar.  (Bug#18953)
4320 2014-11-22  Alan Mackenzie  <acm@muc.de>
4322         Fix error with `mark-defun' and "protected:" in C++ Mode.
4323         * progmodes/cc-cmds.el (c-where-wrt-brace-construct): Handle a
4324         return code of (label) from c-beginning-of-decl-1.  (Bug#19134)
4326 2014-11-22  Ulf Jasper  <ulf.jasper@web.de>
4328         * net/newst-backend.el (newsticker--sentinel-work):
4329         Tell `libxml-parse-xml-region' to discard comments.  (Bug#18787)
4331 2014-11-22  Michael Albinus  <michael.albinus@gmx.de>
4333         * net/tramp-sh.el (tramp-sh-handle-start-file-process)
4334         (tramp-sh-handle-process-file): Propagate `process-environment'.
4336         * vc/vc-hg.el (vc-hg-state): No special handling for remote files;
4337         Tramp propagates environment variables now.
4339 2014-11-22  Eric S. Raymond  <esr@snark>
4341         * vc/vc-filewise.el: New file to isolate code used only by the
4342         file-oriented back ends (SCCS/RCS/CVS/SRC) which should not
4343         live in vc.el and certainly not in vc-hooks.el.
4345         * vc/vc-hooks.el, vc-rcs.el, vc-sccs.el: vc-name  -> vc-master-name.
4346         This is preparatory to isolating all the 'master' functions
4347         used only by the file-oriented back ends.  With this done first,
4348         the substantive diffs will be easier to read.
4350 2014-11-21  Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
4352         * play/morse.el (nato-alphabet): Mark URL in docstring in a way
4353         that is recognized by `help-mode'.
4355 2014-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
4357         * desktop.el (desktop-create-buffer): Use activate-mark to set
4358         `mark-active' (bug#19058).
4360 2014-11-21  Eric S. Raymond  <esr@snark>
4362         * vc/vc-src.el (vc-src-state): Fix bug that produced spurious
4363         nil state.
4365 2014-11-21  Eli Zaretskii  <eliz@gnu.org>
4367         * vc/vc.el (vc-deduce-fileset): Support invocation from
4368         *vc-change-log* buffer.  (Bug#19084)
4370 2014-11-13  Matthew Leach  <matthew@mattleach.net>
4372         * arc-mode.el (archive-visit-single-files): New.
4373         (archive-mode): Visit file if archive contains a single file.
4374         (Bug#1702)
4376 2014-11-21  Ulrich Müller  <ulm@gentoo.org>
4378         * vc/vc.el: Fix a typo in the commentary.
4380 2014-11-20  Eric S. Raymond  <esr@snark.thyrsus.com>
4382         * vc/vc-src.el, vc/vc.el: Added support for SRC.  Needs more
4383         testing and a real log-view mode.
4385         * vc/vc-bzr.el, vc/vc-cvs.el, vc/vc-dav.el, vc/vc-git.el:
4386         * vc/vc-hg.el, vc/vc-mtn.el, vc/vc-rcs.el, vc/vc-sccs.el:
4387         * vc/vc-svn.el, vc/vc.el: Remove editable argument from the backend
4388         checkout methods; where it matters (which is only in SCCS and RCS)
4389         files are always checked out editable.  This may actually have
4390         been dynamically true already - it looks like the vc-next-action
4391         code evolved past visiting the other case.  Tested with RCS.
4393         * vc/vc-arch.el, vc/vc-bzr.el, vc/vc-cvs.el, vc/vc-dav.el:
4394         * vc/vc-git.el, vc/vc-hg.el, vc/vc-mtn.el, vc/vc-rcs.el:
4395         * vc/vc-sccs.el, vc/vc-svn.el, vc/vc.el: Remove never-used rev
4396         argument from the backend checkin methods.  Only the RCS, SCCS,
4397         and CVS back ends tried to do anything with it, and that code was
4398         never exercised.  Chiseling away the cruft of decades...
4400 2014-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4402         * net/eww.el (eww-render): Remove a no-op :title setting.
4404 2014-11-19  Ivan Shmakov  <ivan@siamics.net>
4406         * net/eww.el (eww-history-limit): New variable.
4407         (eww-save-history): Use it (bug#19105).
4408         (eww-reload): Reload the page in the right buffer.
4410 2014-11-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4412         * net/eww.el (eww-desktop-misc-data): Use `cl-remove-duplicates'.
4414 2014-11-19  Ivan Shmakov  <ivan@siamics.net>
4416         * net/eww.el (eww-desktop-remove-duplicates)
4417         (eww-restore-desktop, eww-restore-reload-prompt): New variables.
4418         (eww-mode): Set up desktop mode (bug#18010).
4419         (eww-desktop-data-save, eww-desktop-data-1)
4420         (eww-desktop-history-duplicate, eww-desktop-misc-data)
4421         (eww-restore-desktop): New functions.
4423 2014-11-19  Eli Zaretskii  <eliz@gnu.org>
4425         * vc/vc.el (vc-log-internal-common): Turn on log-view-mode in the
4426         correct buffer.  (Bug#19101)
4428 2014-11-19  Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
4430         * vc/vc-git.el (vc-git-diff): Use "difftool -x diff" with
4431         `diff-switches' if `vc-git-diff-switches' is nil.  (Bug#19099)
4433 2014-11-19  Artur Malabarba  <bruce.connor.am@gmail.com>
4435         * ido.el (ido-bury-buffer-at-head): New command.
4436         (ido-buffer-completion-map): Bind it to C-S-b.
4438 2014-11-18  Juri Linkov  <juri@linkov.net>
4440         * simple.el (next-line-or-history-element): Wrap next-line
4441         in with-no-warnings.
4442         (previous-line-or-history-element): Wrap previous-line
4443         in with-no-warnings.
4445 2014-11-18  Juri Linkov  <juri@linkov.net>
4447         * progmodes/grep.el (grep-compute-defaults):
4448         Compute grep-highlight-matches before its use.
4450 2014-11-18  Juri Linkov  <juri@linkov.net>
4452         * replace.el (query-replace-from-to-separator): Turn defvar into
4453         defcustom.  Wrap char-displayable-p in ignore-errors because an
4454         attempt to autoload char-displayable-p fails during pre-loading.
4455         Move (propertize "\0" ... 'separator t) out of customizable part
4456         to query-replace-read-from.
4457         (query-replace-read-from): Call custom-reevaluate-setting on
4458         query-replace-from-to-separator to reevaluate the separator
4459         depending on the return value of char-displayable-p.
4460         http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00466.html
4462 2014-11-18  Juri Linkov  <juri@linkov.net>
4464         * bindings.el (minibuffer-local-map): Rebind [down] from
4465         next-history-element to next-line-or-history-element, and [up]
4466         from previous-history-element to previous-line-or-history-element.
4468         * simple.el (next-line-or-history-element)
4469         (previous-line-or-history-element): New commands.
4470         http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00822.html
4472 2014-11-18  Leo Liu  <sdl.web@gmail.com>
4474         * emacs-lisp/nadvice.el (define-advice): New macro.
4475         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
4476         Add define-advice.
4477         (lisp-font-lock-keywords-1): Add define-advice.
4479 2014-11-18  Daiki Ueno  <ueno@gnu.org>
4481         * epg.el (epg-context): New slot EDIT-CALLBACK.
4482         (epg--process-filter): Call EDIT-CALLBACK when editing a key.
4483         (epg-reset): Reset EDIT-CALLBACK of the context.
4484         (epg-start-edit-key): New function.
4485         (epg-edit-key): New function.
4487 2014-11-18  Paul Eggert  <eggert@cs.ucla.edu>
4489         Port new time stamp handling to Emacs 23.2.
4490         This fix is for Gnus.  Reported by Katsumi Yamaoka.
4491         * calendar/time-date.el (time-add, time-subtract, time-less-p):
4492         Use eval-and-compile, not eval-when-compile.
4494 2014-11-18  Daiki Ueno  <ueno@gnu.org>
4496         * epg.el (epg-context-set-passphrase-callback)
4497         (epg-context-set-progress-callback): Check if the CALLBACK
4498         argument is a function, instead of a cons.
4500 2014-11-18  Daiki Ueno  <ueno@gnu.org>
4502         * epa-file.el (epa-file-insert-file-contents)
4503         (epa-file-write-region): Remove redundant check of
4504         epa-pinentry-mode.
4505         * epa.el (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
4506         (epa-sign-region, epa-encrypt-region): Remove redundant check of
4507         epa-pinentry-mode.
4509 2014-11-18  Daiki Ueno  <ueno@gnu.org>
4511         * epa-file.el (epa-file-insert-file-contents): Don't show
4512         "*Error*" buffer if input file does not exist.
4513         Reported by Herbert J. Skuhra.
4515 2014-11-18  Paul Pogonyshev  <pogonyshev@gmail.com>
4516             Rüdiger Sonderfeld  <ruediger@c-plusplus.net>
4518         * progmodes/cc-langs.el: Support some of the new keywords in C++11.
4519         An alternative version of the patch from bug#13871.
4520         (c-operators): Add "alignof".
4521         (c-primitive-type-kwds): Add "char16_t", "char32_t".
4522         (c-type-modifier-kwds): Add "constexpr", "noexcept".
4523         (c-modifier-kwds): Add "thread_local".
4524         (c-constant-kwds): Add "nullptr".
4526 2014-11-17  Michal Nazarewicz  <mina86@mina86.com>
4528         * textmodes/tildify.el (tildify-pattern, tildify-space-string):
4529         New variables for specifying tildify pattern and representation of
4530         a hard space -- a no-break space by default -- respectively.
4531         Being buffer-local they are much easier to handle than
4532         `tildify-string-alist' and `tildify-pattern-alist' respectively
4533         that have been used so far.  They also works better with derived
4534         modes.
4535         (tildify-foreach-region-function): New variable specifying
4536         a function determining portions of buffer that should be
4537         tildified.  It allows major modes to create a filtering function
4538         more elaborate than a set of regular expressions.  Initialised to
4539         `tildify--deprecated-ignore-evironments' by default to handle now
4540         deprecated `tildify-ignored-environments-alist' variable.
4541         (tildify--foreach-region): A new function that takes
4542         `tildify-foreach-region-function' into account and calls callback
4543         for regions of the buffer that should be tildified.
4544         (tildify-foreach-ignore-environments): A new function which can be
4545         partially applied and used as `tildify-foreach-region-function'.
4546         (tildify-ignored-environments-alist, tildify-pattern)
4547         (tildify-string-alist, tildify--pick-alist-entry): Mark as obsolete.
4548         (tildify--find-env): Rename from `tildify-find-env' and mark as
4549         obsolete.
4550         (tildify--deprecated-ignore-evironments): New function,
4551         immediately marked as obsolete, used to handle deprecated
4552         `tildify-ignored-environments-alist'.
4554         * textmodes/tex-mode.el (tex-common-initialization):
4555         Set `tildify-space-string' and `tildify-foreach-region-function'
4556         variables in all variants of TeX mode since `tildify-string-alist'
4557         and `tildify-ignored-environments-alist' are now empty by default.
4559         * nxml/nxml-mode.el (nxml-mode): Ditto in `nxml-mode'.
4560         If encoding supports it use no-break space instead of character
4561         entity; this changes previous default which used a numeric
4562         reference.
4564         * textmodes/sgml-mode.el (sgml-mode): ditto in `sgml-mode'.
4565         If encoding does not support no-break space, use numeric reference;
4566         this changes previous default which used named entity (“&nbsp;”)
4567         in HTML mode.
4569 2014-11-17  Ulf Jasper  <ulf.jasper@web.de>
4571         * calendar/icalendar.el (icalendar-export-alarms):
4572         New customizable variable.  (Bug#5433)
4573         (icalendar-export-region): Export alarms as specified in
4574         `icalendar-export-alarms'.
4575         (icalendar--create-ical-alarm, icalendar--do-create-ical-alarm):
4576         New functions for exporting alarms.
4578 2014-11-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4580         * bindings.el (search-map): Move `eww-search-words' to `M-s M-w'.
4582 2014-11-17  Paul Eggert  <eggert@cs.ucla.edu>
4584         Port new time stamp handling to old Emacs and to XEmacs.
4585         This is needed for Gnus, which copies time-date.el and which
4586         runs on older Emacs implementations.
4587         * calendar/time-date.el (with-decoded-time-value):
4588         Handle 'nil' and floating-point arg more compatibly with new Emacs.
4589         (encode-time-value, with-decoded-time-value):
4590         Obsolete only if new Emacs.
4591         (time-add, time-subtract, time-less-p): Define if not new Emacs.
4593         Improve time stamp handling, and be more consistent about it.
4594         This implements a suggestion made in:
4595         http://lists.gnu.org/archive/html/emacs-devel/2014-10/msg00587.html
4596         Among other things, this means timer.el no longer needs to
4597         autoload the time-date module.
4598         * allout-widgets.el (allout-elapsed-time-seconds): Doc fix.
4599         * arc-mode.el (archive-ar-summarize):
4600         * calendar/time-date.el (seconds-to-time, days-to-time, time-since):
4601         * emacs-lisp/timer.el (timer-relative-time, timer-event-handler)
4602         (run-at-time, with-timeout-suspend, with-timeout-unsuspend):
4603         * net/tramp.el (tramp-time-less-p, tramp-time-subtract):
4604         * proced.el (proced-time-lessp):
4605         * timezone.el (timezone-time-from-absolute):
4606         * type-break.el (type-break-schedule, type-break-time-sum):
4607         Simplify by using new functionality.
4608         * calendar/cal-dst.el (calendar-next-time-zone-transition):
4609         Do not return time values in obsolete and undocumented (HI . LO)
4610         format; use (HI LO) instead.
4611         * calendar/time-date.el (with-decoded-time-value):
4612         Treat 'nil' as current time.  This is mostly for XEmacs.
4613         (encode-time-value, with-decoded-time-value): Obsolete.
4614         (time-add, time-subtract, time-less-p): Use no-op autoloads, for
4615         XEmacs.  Define only if XEmacs, as they're now C builtins in Emacs.
4616         * ldefs-boot.el: Update to match new time-date.el
4617         * proced.el: Do not require time-date.
4619 2014-11-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4621         * net/eww.el (eww-mode): Make the buffer read-only.
4622         (eww-form-text): Inhibit read-only-ness in text input fields
4623         (bug#16476).
4625 2014-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4627         * simple.el (execute-extended-command--shorter): Cut search here.
4628         (execute-extended-command): Instead of here.
4630 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4632         * progmodes/python.el (python-mode): Avoid use of set-local to
4633         keep Emacs 24.x compatibility.
4635 2014-11-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4637         * net/shr.el (shr): Move to the new defgroup `web'.
4639         * net/eww.el (eww): Ditto.
4641         * simple.el (execute-extended-command): Don't show the help
4642         message if the binding isn't significantly shorter than the
4643         M-x command the user typed (bug#19013).
4645 2014-11-16  Ulf Jasper  <ulf.jasper@web.de>
4647         * calendar/icalendar.el (icalendar--convert-tz-offset):
4648         Return complete cons when offsets of standard time and daylight saving
4649         time are equal.
4650         (icalendar-export-region): Fix unbound variable warning.
4652 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4654         * progmodes/python.el (run-python): Allow CMD to be optional and
4655         default it to a safe command, even for Windows.  (bug#18596)
4657 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4659         * progmodes/python.el (python-shell-calculate-command):
4660         Rename from python-shell-parse-command.  Cleanup.
4661         (run-python, run-python-internal): Use it.
4662         (python-shell-calculate-pythonpath): Rename from
4663         python-new-pythonpath.
4664         (python-shell-calculate-process-environment): Use it.
4665         (python-shell-calculate-exec-path): Add comment.
4667 2014-11-16  Thierry Banel  <tbanelwebmin@free.fr>  (tiny change)
4669         * calc/calc-arith.el (math-max-list, math-min-list): Fix bug
4670         for date handling.
4672 2014-11-16  Andreas Schwab  <schwab@linux-m68k.org>
4674         * version.el (emacs-repository-get-version): Use git rev-parse
4675         instead of git log.
4677 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4679         * progmodes/python.el (python-indent-calculate-levels):
4680         Fix indentation behavior multiline dedenter statement.  (Bug#18432)
4682 2014-11-16  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4684         * progmodes/python.el (python-indent-region):
4685         Use python-indent-line and skip special cases.  (Bug#18843)
4687 2014-11-16  Peder O. Klingenberg  <peder@klingenberg.no>
4689         * mail/emacsbug.el (report-emacs-bug): Make a better guess at
4690           envelope-from when reporting through sendmail (bug#19054).
4692 2014-11-16  Oscar Fuentes  <ofv@wanadoo.es>
4694         Add faces for the VC modeline state indicator.
4695         * vc/vc-hooks.el:
4696         (vc-state-faces, vc-state-base-face)
4697         (vc-up-to-date-state, vc-needs-update-state)
4698         (vc-locked-state, vc-locally-added-state)
4699         (vc-conflict-state, vc-removed-state)
4700         (vc-missing-state, vc-edited-state):
4701         New faces.
4702         (vc-default-mode-line-string): Use them
4704 2014-11-16  Stefan Monnier  <monnier@iro.umontreal.ca>
4706         * emacs-lisp/backquote.el (backquote-process): Optimize away ",'".
4708 2014-11-15  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4710         * net/eww.el (eww-search-words): Mention `eww-search-prefix'.
4712 2014-11-15  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4714         * progmodes/python.el (python-eldoc-setup-code): Enhance string
4715         type checks, simplify printing.  (Bug#18962)
4717 2014-11-14  Ivan Andrus  <darthandrus@gmail.com>
4719         * progmodes/python.el (python-shell-font-lock-kill-buffer):
4720         (python-shell-font-lock-with-font-lock-buffer)
4721         (python-shell-get-buffer, python-ffap-module-path):
4722         Use `derived-mode-p' instead of equality test on `major-mode'.
4724 2014-11-14  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4726         * progmodes/python.el (python-shell-virtualenv-root): Rename from
4727         python-shell-virtualenv-path.
4728         (python-shell-internal-get-process-name)
4729         (python-shell-calculate-process-environment)
4730         (python-shell-calculate-exec-path): Use it.
4732 2014-11-14  Eli Zaretskii  <eliz@gnu.org>
4734         * bindings.el (search-map): Fix last change: don't use 'kbd' in
4735         bindings.el, since it is not yet loaded when bindings.el is
4736         preloaded.
4738 2014-11-14  Fabián Ezequiel Gallina  <fgallina@gnu.org>
4740         * progmodes/python.el (python-shell-completion-get-completions):
4741         Fix previous merge.
4743 2014-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4745         * net/eww.el (eww-render): Don't set the title to the URL.
4747 2014-11-13  Ulrich Müller  <ulm@gentoo.org>
4749         * version.el (emacs-repository-get-version): Call `git log'
4750         command with proper format argument (bug#19049).
4752 2014-11-14  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4754         * bindings.el (search-map): Bind M-s M-s to `eww-search-words'.
4756 2014-11-14  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
4758         * net/eww.el (eww-search-words): New command (bug#16258).
4760 2014-11-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4762         * net/shr.el (shr-inhibit-images): Add a doc string.
4764         * net/eww.el (eww-after-render-hook): New variable.
4765         (eww-render): Use it.
4767         * net/shr.el (shr-descend): Don't descend further than
4768         `max-specpdl-size' allows (bug#16587).
4769         (shr-depth): New variable.
4770         (shr-warning): New variable.
4772 2014-11-13  Ivan Shmakov  <ivan@siamics.net>
4774         * net/shr.el (shr-parse-base): Handle <base href=""> correctly.
4775         (shr-expand-url): Expand absolute URLs correctly (bug#17958).
4777 2014-11-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4779         * net/eww.el (eww): Add comment to clarify.
4781         * net/shr.el (shr-parse-image-data): Remove blocked bits from
4782         external SVG images.
4783         (shr-tag-object): Display images in <object> forms (bug#16244).
4784         (shr-tag-table): Also insert <objects> after the tables.
4786 2014-11-13  Michael Albinus  <michael.albinus@gmx.de>
4788         * vc/vc-hg.el (vc-hg-state): Disable pager.  (Bug#18940)
4790 2014-11-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4792         * net/eww.el (eww-form-file): Fix version number.
4794 2014-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4796         * net/eww.el (eww-form-file): :type isn't a valid `defface' keyword.
4798 2014-11-10  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
4800         * net/eww.el(eww-form-file(defface)): New defface of file upload form.
4801         (eww-submit-file): New key map of file upload.
4802         (eww-form-file): New file upload button and file name context.
4803         (eww-select-file): Select file and display selected file name.
4804         (eww-tag-input): Handle input tag of file type.
4805         (eww-update-field): Add point offset.
4806         (eww-submit): Add submit with multipart/form-data.
4808 2014-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4810         * net/eww.el (eww-render, eww-display-html, eww-setup-buffer):
4811         Allow taking a buffer to render data in.  This allows using several
4812         eww buffers (bug#16211).
4814 2014-11-10  Charles Rendleman  <carendle@gmail.com>  (tiny change)
4816         * net/eww.el (eww-download-callback): Save only the file contents,
4817         not the headers.
4819 2014-11-10  Lars Magne Ingebrigtsen  <larsi@gnus.org>
4821         * net/eww.el (eww-data): New plist to store all the data relevant
4822         to a single page, used throughout the file instead of the
4823         variables `eww-current-url', `eww-current-dom',
4824         `eww-current-source', and `eww-current-title'.
4825         (eww-readable): Copy over pertinent data from the parent page.
4826         (eww-save-history): Don't let the history grow infinitely.
4828         * net/eww.el: Remove `eww-next-url', `eww-previous-url',
4829         `eww-up-url', `eww-home-url', `eww-start-url' and
4830         `eww-contents-url' and put the data into the `eww-data' plist.
4831         This allow restoring these values after going back in the history.
4833 2014-11-10  Sylvain Chouleur  <sylvain.chouleur@gmail.com>  (tiny change)
4835         Allow VTIMEZONE where daylight and standard time zones are equal.
4836         See: http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00494.html
4837         * calendar/icalendar.el (icalendar--convert-tz-offset):
4838         Support timezone without daylight saving time.
4840 2014-11-10  Glenn Morris  <rgm@gnu.org>
4842         * startup.el (command-line): Handle nil elements in load-path.
4844 2014-11-10  Stefan Monnier  <monnier@iro.umontreal.ca>
4846         * help.el (view-lossage): Include the actual commands run.
4848 2014-11-10  Dmitry Gutov  <dgutov@yandex.ru>
4850         * vc/vc-dir.el (vc-dir-hide-state): Also hide `ignored' items when
4851         no state is specified.  (Bug#18964)
4853 2014-11-09  Eric Ludlam  <zappo@gnu.org>
4855         * emacs-lisp/eieio-custom.el (eieio-customize-object):
4856         Set eieio-cog (current group) to g, which is an improved form of input
4857         group.
4859 2014-11-09  Juri Linkov  <juri@jurta.org>
4861         * isearch.el (isearch-message-prefix): Show "Multi-file" and
4862         "Multi-buffer" instead of "Multi".  (Bug#13592)
4864         * misearch.el (multi-isearch-file-list):
4865         Autoload multi-isearch-buffer-list and multi-isearch-file-list.
4866         (multi-isearch-end): Reset multi-isearch-buffer-list and
4867         multi-isearch-file-list to nil.
4869 2014-11-09  Stefan Monnier  <monnier@iro.umontreal.ca>
4871         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
4872         Don't call byte-compile-preprocess since the result will go through
4873         cconv.
4874         (byte-compile-output-docform): Handle uninterned `name' correctly.
4875         * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Use interned name
4876         to circumvent byte-compiler bug.
4878         * emacs-lisp/macroexp.el (macroexp--expand-all): Fix typo.
4879         (macroexp--compiler-macro): Remove left-over debug code.
4881         * emacs-lisp/cl-extra.el (cl-get): Silence compiler warning.
4883 2014-11-08  Juri Linkov  <juri@jurta.org>
4885         * simple.el (shell-command): Use buffer-name when output-buffer is
4886         a buffer.  (Bug#18096)
4888 2014-11-08  Juri Linkov  <juri@jurta.org>
4890         * minibuffer.el (minibuffer-completion-help): Compare this-command
4891         with completion-at-point.  (Bug#17809)
4893 2014-11-08  Glenn Morris  <rgm@gnu.org>
4895         * emacs-lisp/bytecomp.el (byte-compile-report-error):
4896         Allow the argument to be a string.  Due to the vague doc,
4897         it was already being used this way.
4899 2014-11-08  Michael Albinus  <michael.albinus@gmx.de>
4901         * net/tramp.el (tramp-check-cached-permissions): Include hop in
4902         the constructed Tramp file name.  (Bug#18943)
4904 2014-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4906         * emulation/cua-base.el (cua--select-keymaps): Use region-active-p
4907         (bug#18952).
4908         (cua-set-mark, cua--post-command-handler-1):
4909         * emulation/cua-gmrk.el (cua-cancel-global-mark): Same.
4911 2014-11-08  Michael Albinus  <michael.albinus@gmx.de>
4913         * files.el (file-name-non-special): Wrap the call of
4914         `insert-file-contents' by `unwind-protect', in order to set the
4915         buffer's file name anyway.  (Bug#18891)
4917 2014-11-08  Alan Mackenzie  <acm@muc.de>
4919         Fix wrong bound to c-font-lock-declarators.
4920         * progmodes/cc-fonts.el (c-font-lock-declarations):
4921         Pass "(point-max)" as bound to c-font-lock-declarators, not "limit", as
4922         the buffer is sometimes narrowed to less than "limit" (e.g., in
4923         the presence of macros).  (Bug#18948)
4925 2014-11-08  Michael Albinus  <michael.albinus@gmx.de>
4927         * net/tramp.el (tramp-error-with-buffer): Show connection buffer
4928         only when message appeared in minibuffer.  (Bug#18891)
4930         * net/tramp-adb.el (tramp-adb-handle-file-attributes):
4931         * net/tramp-gvfs.el (tramp-gvfs-handle-file-attributes):
4932         * net/tramp-sh.el (tramp-sh-handle-file-attributes): Return nil in
4933         case of errors.
4935 2014-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
4937         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
4938         Don't compile before eval in `eval-and-compile'.
4939         (byte-compile-arglist-warn): Add check for defining macros after their
4940         first use.  Check call use even if the function is fboundp.
4942 2014-11-08  Richard Stallman  <rms@gnu.org>
4944         * mail/rmail.el (rmail-epa-decrypt): Detect armor with line prefixes.
4945         Check more carefully for mime-part specified character set.
4946         Check for mime-part Content Transfer Encoding.
4947         Notify if no armor found.
4949 2014-11-08  Martin Rudalics  <rudalics@gmx.at>
4951         * faces.el (face-set-after-frame-default): Enable running
4952         `window-configuration-change-hook'.
4954 2014-11-07  Juri Linkov  <juri@jurta.org>
4956         * replace.el: History for query replace pairs.
4957         (query-replace-defaults): Promote to a list of cons cell.  Doc fix.
4958         (query-replace-from-to-separator): New variable.
4959         (query-replace-read-from): Let-bind query-replace-from-to-history
4960         to a list of FROM-TO strings created from query-replace-defaults
4961         and separated by query-replace-from-to-separator.  Use it as
4962         the history while reading from the minibuffer.  Split the returned
4963         string by the separator to get FROM and TO parts, and add them
4964         to the history variables.
4965         (query-replace-read-to): Add FROM-TO pairs to query-replace-defaults.
4966         (query-replace-regexp-eval): Let-bind query-replace-defaults to nil.
4967         http://lists.gnu.org/archive/html/emacs-devel/2014-11/msg00253.html
4969         * isearch.el (isearch-text-char-description): Keep characters
4970         intact and put formatted strings with the `display' property.
4972 2014-11-07  Martin Rudalics  <rudalics@gmx.at>
4974         * cus-start.el (frame-resize-pixelwise): Fix group.
4975         (frame-inhibit-implied-resize): Add entry.
4977 2014-11-07  Daiki Ueno  <ueno@gnu.org>
4979         * epa.el (epa-pinentry-mode): New user option.
4980         (epa-sign-file, epa-encrypt-file, epa-decrypt-region)
4981         (epa-sign-region, epa-encrypt-region): Respect epa-pinentry-mode.
4982         * epa-file.el (epa-file-insert-file-contents)
4983         (epa-file-write-region): Respect epa-pinentry-mode.
4985 2014-11-07  Daiki Ueno  <ueno@gnu.org>
4987         * epg.el (epg--list-keys-1): Ignore fields after the 15th field
4988         (bug#18979).  Reported by Hideki Saito.
4990 2014-11-06  Daiki Ueno  <ueno@gnu.org>
4992         * emacs-lisp/package.el (package--display-verify-error): New function.
4993         (package--check-signature): Use it to display output sent to stderr.
4995 2014-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
4997         * subr.el (pop): Don't call the getter twice (bug#18968).
4999         * emacs-lisp/macroexp.el (macroexp--expand-all): Optimize away trivial
5000         uses of `funcall'.
5002 2014-11-06  Daiki Ueno  <ueno@gnu.org>
5004         * epa.el (epa-error-buffer): New variable.
5005         (epa-display-error): New function.
5006         (epa-decrypt-file, epa-verify-file, epa-verify-region)
5007         (epa-delete-keys, epa-import-keys): Display output sent to stderr.
5008         (epa-sign-file, epa-sign-region, epa-encrypt-region)
5009         (epa-export-keys, epa-insert-keys): Display output sent to stderr.
5010         Use setf instead of epg-context-set-*.
5011         * epa-file.el (epa-file-insert-file-contents):
5012         Use epa-display-error instead of epa-display-info.  Mimic the behavior
5013         of jka-compr when decryption program is not found.
5014         (epa-file-write-region): Use epa-display-error instead of
5015         epa-display-info.
5017 2014-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
5019         * vc/vc.el (vc-region-history): New command.
5020         (vc-print-log-internal): Use cl-some.
5022         * vc/vc-git.el (vc-git-region-history): New function.
5023         (vc-git-region-history-mode-map)
5024         (vc-git--log-view-long-font-lock-keywords)
5025         (vc-git-region-history-font-lock-keywords): New vars.
5026         (vc-git-region-history-font-lock): New function.
5027         (vc-git-region-history-mode): New major mode.
5029 2014-11-05  Tassilo Horn  <tsdh@gnu.org>
5031         * net/eww.el (subr-x): Require subr-x at compile-time because eww
5032         uses string-trim.
5034 2014-11-05  Daiki Ueno  <ueno@gnu.org>
5036         * epg.el (epg-context): Add new slot ERROR-OUTPUT.
5037         (epg-error-output): New buffer-local variable.
5038         (epg--start): Initialize epg-error-output.
5039         (epg--process-filter): Record output lines sent to stderr, in
5040         epg-error-output.
5041         (epg-wait-for-completion): Copy epg-error-output to ERROR-OUTPUT
5042         slot of context.
5043         * epa-file.el (epa-file-insert-file-contents): On error, display
5044         output sent to stderr.
5045         (epa-file-write-region): Likewise.
5047 2014-11-05  Eli Zaretskii  <eliz@gnu.org>
5049         * jit-lock.el (jit-lock-stealth-fontify): Be tolerant to nil being
5050         returned by load-average.
5052 2014-11-05  Michael Albinus  <michael.albinus@gmx.de>
5054         * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer): Don't use
5055         a local copy; setting `inhibit-file-name-handlers' proper might be
5056         more performant.  (Bug#18751)
5058 2014-11-05  Glenn Morris  <rgm@gnu.org>
5060         * mail/emacsbug.el (report-emacs-bug): No longer include
5061         recent-keys in the report.  (Bug#18900)
5063 2014-11-04  Paul Eggert  <eggert@cs.ucla.edu>
5065         * mouse.el (mouse-drag-line): Fix misspelling of "right-fringe".
5067 2014-11-04  Teodor Zlatanov  <tzz@lifelogs.com>
5069         * net/eww.el (eww): Trim URL with `string-trim'.
5070         Suggested by Vibhav Pant <vibhavp@gmail.com>.
5072 2014-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5074         * net/eww.el (eww-score-readability): Don't count comments positively.
5076         * net/shr.el (shr-retransform-dom): Typo fix.
5078         * net/eww.el (eww-score-readability): Parse SVC images correctly.
5079         (eww-display-html): Don't leave point inside forms.
5081         * net/shr.el: Ditto.
5083 2014-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
5085         * emacs-lisp/edebug.el (edebug-safe-prin1-to-string): Assume that
5086         edebug-prin1-to-string already handles circularity.
5088         * emacs-lisp/byte-run.el (defun-declarations-alist): Fix compiler-macro
5089         autoloading when specified as a lambda.
5091         * simple.el (execute-extended-command--last-typed): New var.
5092         (read-extended-command): Set it.
5093         Don't complete obsolete commands.
5094         (execute-extended-command--shorter-1)
5095         (execute-extended-command--shorter): New functions.
5096         (execute-extended-command): Use them to suggest shorter names.
5097         (indicate-copied-region, deactivate-mark): Use region-active-p.
5099 2014-11-03  Michael Albinus  <michael.albinus@gmx.de>
5101         * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer): Use a
5102         local copy of FILENAME, when it is remote.  (Bug#18751)
5104         * net/tramp-adb.el (tramp-adb-handle-process-file): Do not raise
5105         an error when the command fails; the return code must indicate.
5106         (tramp-adb-send-command-and-check): Fix docstring.
5108 2014-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5110         * net/shr.el (shr-retransform-dom): Don't ignore elements that
5111         have no children like <br />.
5113         * net/eww.el (eww-display-html): Clear `url-queue'.
5114         (eww-display-pdf): New function.
5115         (eww-render): Display PDFs with `doc-view'.
5116         (url-queue): Require `url-queue' to avoid compilation warning.
5117         (eww-colorize-region): Remove duplicate function.
5118         (eww-tag-body): Use `shr-colorize-region'.
5120 2014-11-03  Yoni Rabkin <yrk@gnu.org>
5122         * net/eww.el (eww-list-bookmarks): Autoload.
5124 2014-11-03  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5126         * net/shr.el (shr-retransform-dom): Allow several text sub-nodes.
5128         * net/eww.el (eww-display-html): The charset is called `utf-8',
5129         not `utf8'.
5130         (eww-readable): Decode the saved text correctly.
5131         (eww-readable): Save the history before displaying so that we can
5132         go back to the non-readable version.
5133         (eww-display-html): Don't try to decode the text if we've been
5134         passed in a pre-parsed DOM.
5135         (eww-tag-title): Remove newlines and extra whitespace from the
5136         displayed title.
5138 2014-11-02  Lars Magne Ingebrigtsen  <larsi@gnus.org>
5140         * net/eww.el (eww-readable): New command and keystroke.
5142         * net/shr.el (shr-retransform-dom): New function.
5144         * net/eww.el (eww-display-html): Set `eww-current-source' in the
5145         correct buffer.
5146         (eww-view-source): Use it.
5148 2014-11-02  Ivan Shmakov  <ivan@siamics.net>
5150         * net/eww.el (eww): Recognize colon-delimited IPv6 addresses.
5151         (Bug#18603).
5153 2014-11-02  Brian McKenna  <brian@brianmckenna.org>  (tiny change)
5155         * net/eww.el (eww-submit): Encode empty form values as "".  (Bug#17785).
5157 2014-11-02  Ivan Shmakov  <ivan@siamics.net>
5159         * net/eww.el (eww): Allow "file:/file/name" URLs.  (Bug#18825).
5161 2014-11-02  Ivan Shmakov  <ivan@siamics.net>
5163         * net/eww.el (eww-mode-map): Remove mentions of `eww-quit'.
5164         (Bug#18834).
5166 2014-11-02  Eric Abrahamsen  <eric@ericabrahamsen.net>
5168         * emacs-lisp/eieio.el (eieio-edebug-prin1-to-string): Adjust for
5169         use as advice.
5170         (edebug-setup-hook): Advise `edebug-prin1-to-string'.  (Bug#18897)
5172 2014-11-02  Stefan Monnier  <monnier@iro.umontreal.ca>
5174         * emacs-lisp/pp.el (pp-macroexpand-expression): Use macroexpand-1
5175         (bug#18821).
5176         * progmodes/elisp-mode.el (emacs-lisp-macroexpand): Idem.
5178 2014-11-01  Michael R. Mauger  <michael@mauger.com>
5180         * sql.el (sql-mode-oracle-font-lock-keywords): Correct regexp
5181         syntax, add new keywords, and parse longer keywords first.
5182         (sql-redirect-one): Protect against empty command.
5183         (sql-mode, sql-interactive-mode): Set `custom-mode-group' property
5184         to SQL.  (Bug#14759)
5186 2014-11-01  Michael R. Mauger  <michael@mauger.com>
5188         * sql.el (sql-interactive-mode, sql-stop): Correct fix for
5189         Bug#16814 with let-bind of comint-input-ring variables around read
5190         and save functions.
5192 2014-11-01  Michael Albinus  <michael.albinus@gmx.de>
5194         * net/tramp-cache.el (tramp-get-file-property)
5195         (tramp-set-file-property): Check that `tramp-cache-get-count-*'
5196         and `tramp-cache-set-count-*' are bound.  Otherwise, there might
5197         be compiler warnings.
5199         * net/tramp-sh.el (tramp-get-remote-uid, tramp-get-remote-gid):
5200         Return -1 respective "UNKNOWN", if uid or gid cannot be determined.
5202 2014-11-01  Eli Zaretskii  <eliz@gnu.org>
5204         * progmodes/compile.el (compilation-mode): Turn off deferred
5205         fontifications locally.  (Bug#18856)
5207 2014-11-01  Wolfgang Jenkner  <wjenkner@inode.at>
5209         * net/tramp-sh.el (tramp-send-command): Fix the case where the
5210         remote-echo connection property is non-nil (bug#18858).
5212 2014-11-01  Stefan Monnier  <monnier@iro.umontreal.ca>
5214         * simple.el (newline): Add assertions to try and help catch bug#18913.
5216         * emulation/cua-base.el (cua-delete-region): Use delete-active-region
5217         (bug#18886).
5218         (cua--last-deleted-region-pos, cua--last-deleted-region-text): Remove.
5220 2014-11-01  Kim F. Storm  <storm@cua.dk>
5222         Restore cua-delete-copy-to-register-0 and M-v command (bug#18886).
5223         * delsel.el (delete-selection-save-to-register)
5224         (delsel--replace-text-or-position): New vars.
5225         (delete-active-region): Use them.
5226         (delete-selection-repeat-replace-region): New command, moved from
5227         cua-base.el.
5228         * emulation/cua-base.el (cua--repeat-replace-text): Remove var.
5229         (cua-repeat-replace-region): Move command to delsel.el.
5230         (cua--init-keymaps): Update binding accordingly.
5231         (cua-mode): Set delete-selection-save-to-register.
5233 2014-11-01  Alan Mackenzie  <acm@muc.de>
5235         Make blink-parens work with a closing template delimiter.
5236         * progmodes/cc-cmds.el (c-electric-lt-gt): Cause a redisplay
5237         before calling blink-paren-function, so as to apply syntax-table
5238         properties to the ">".
5240 2014-11-01  Jan Djärv  <jan.h.d@swipnet.se>
5242         * select.el (gui-get-selection): Comment: data-type ignored on NS.
5244 2014-10-31  Stefan Monnier  <monnier@iro.umontreal.ca>
5246         * emacs-lisp/macroexp.el (macroexpand-1): New function (bug#18821).
5247         (macroexp--expand-all): Unrelated tweaks.
5249         * emacs-lisp/gv.el (gv-get): Use macroexpand-1.
5251 2014-10-30  Glenn Morris  <rgm@gnu.org>
5253         * startup.el (command-line): Remove pointless attempt to avoid
5254         statting the file-system (which expand-file-name doesn't do).
5256 2014-10-30  Daniel Colascione  <dancol@dancol.org>
5258         Add "enum class" support to C++ mode.
5259         * progmodes/cc-langs.el (c-after-brace-list-decl-kwds)
5260         (c-after-brace-list-key): New language consts/variables.
5261         * progmodes/cc-engine.el (c-looking-at-decl-block):
5262         Exclude spurious match of "enum struct" from decl-block recognition.
5263         (c-backward-colon-prefixed-type): New function.
5264         (c-backward-over-enum-header): Call above function to extend
5265         recognition of enum structure.
5267 2014-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5269         * progmodes/cc-defs.el (c--macroexpand-all): New function (bug#18845).
5270         (c-lang-defconst):
5271         * progmodes/cc-langs.el (c-make-init-lang-vars-fun): Use it.
5273 2014-10-30  Eli Zaretskii  <eliz@gnu.org>
5275         * progmodes/compile.el (compilation-start):
5276         If compilation-scroll-output is non-nil, don't force window-start of
5277         the compilation buffer to be at beginning of buffer.  (Bug#18874)
5279         * startup.el (fancy-about-text): Read the entire tutorial, not
5280         just its first 256 bytes.  (Bug#18760)
5282 2014-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
5284         * emacs-lisp/bytecomp.el: Require cl-extra (bug#18804).
5285         * emacs-lisp/cl-extra.el: Add missing provide.
5287         * emacs-lisp/bytecomp.el (byte-compile-and-folded): Optimize case where
5288         all args are copyable (bug#18767).
5289         (=, <, >, <=, >=): Re-enable the optimization.
5291 2014-10-29  Glenn Morris  <rgm@gnu.org>
5293         * net/rcirc.el (rcirc-fill-column): Unbump :version.  Mark :risky.
5295         * version.el (emacs-bzr-version, emacs-bzr-get-version):
5296         Revert 2014-10-26 change.
5298 2014-10-29  Paul Eggert  <eggert@cs.ucla.edu>
5300         Simplify use of current-time and friends.
5301         * allout-widgets.el (allout-widgets-hook-error-handler):
5302         * calendar/appt.el (appt-display-message):
5303         * calendar/icalendar.el (icalendar--convert-float-to-ical):
5304         * calendar/timeclock.el (timeclock-in, timeclock-when-to-leave)
5305         (timeclock-last-period, timeclock-day-base):
5306         * eshell/em-ls.el (eshell-ls-file):
5307         * eshell/esh-util.el (eshell-parse-ange-ls):
5308         * generic-x.el (named-database-print-serial):
5309         * net/newst-backend.el (newsticker--get-news-by-url-callback)
5310         (newsticker-get-news, newsticker--sentinel-work)
5311         (newsticker--image-get, newsticker--image-sentinel):
5312         * net/tramp-sh.el (tramp-get-remote-touch):
5313         * progmodes/opascal.el (opascal-debug-log):
5314         * textmodes/remember.el (remember-mail-date)
5315         (remember-store-in-files):
5316         * vc/vc-annotate.el (vc-annotate-display-autoscale)
5317         (vc-default-annotate-current-time):
5318         * vc/vc-bzr.el (vc-bzr-shelve-snapshot):
5319         * vc/vc-cvs.el (vc-cvs-annotate-current-time):
5320         * vc/vc-rcs.el (vc-rcs-annotate-current-time):
5321         Omit unnecessary call to current-time.
5322         * calendar/time-date.el (time-to-seconds) [!float-time]:
5323         * vc/vc-annotate.el (vc-annotate-convert-time):
5324         Use current time if arg is nil, to be compatible with float-time.
5325         (time-date--day-in-year): New function, with most of the guts of
5326         the old time-to-day-in-year.
5327         (time-to-day-in-year): Use it.
5328         (time-to-days): Use it, to avoid decoding the same time stamp twice.
5329         * calendar/timeclock.el (timeclock-time-to-date):
5330         Arg is now optional, like current-time-string.
5331         (timeclock-update-mode-line):
5332         Don't call current-time twice to get the current time stamp,
5333         as this can lead to inconsistent results.
5334         * completion.el (cmpl-hours-since-origin):
5335         * ido.el (ido-time-stamp):
5336         * vc/vc-annotate.el (vc-annotate-convert-time):
5337         Simplify by using float-time.
5338         * completion.el (save-completions-to-file):
5339         Rename local var to avoid confusion.
5340         * net/rcirc.el (rcirc-float-time): Simplify to an alias because
5341         time-to-seconds now behaves like float-time with respect to nil arg.
5342         * subr.el (progress-reporter-do-update):
5343         Don't call float-time unless needed.
5345 2014-10-29  Leo Liu  <sdl.web@gmail.com>
5347         * net/rcirc.el (rcirc-fill-column): Use function.
5348         (rcirc-markup-fill): Remove adjustment.
5350 2014-10-28  Christopher Schmidt  <ch@ristopher.com>
5352         * calc/calc.el (quick-calc):
5353         * calc/calc-aent.el (calc-do-quick-calc): New argument INSERT.
5355 2014-10-28  Sam Steingold  <sds@gnu.org>
5357         * net/rcirc.el (rcirc-fill-column): Allow any symbolic value for
5358         the sake of `window-body-width' (in addition to `frame-width').
5360 2014-10-26  Eric S. Raymond  <esr@thyrsus.com>
5362         * version.el: Fix some fallback values to conform to the actual
5363         release number.
5365 2014-10-25  Eric S. Raymond  <esr@thyrsus.com>
5367         * Makefile.in: Change some production names so they're neutral
5368         about the repository type.
5370 2014-10-25  Michael Albinus  <michael.albinus@gmx.de>
5372         * net/tramp-gvfs.el (tramp-gvfs-methods-mounttracker)
5373         (tramp-gvfs-mountlocation-signature): Check `tramp-gvfs-enabled'
5374         during initialization.  (Bug#18774)
5376 2014-10-25  Vincent Belaïche  <vincentb1@users.sourceforge.net>
5378         * ses.el (macroexp): Add require for this package, so that
5379         function `ses--cell' gets macroexp-quote --- this change was
5380         supposed to be in my previous commit, but left out by mistake.
5381         (ses--cell): Do not make formula a macroexp-quote of value when
5382         value, not formula, is *skip*.
5384 2014-10-24  Vincent Belaïche  <vincentb1@users.sourceforge.net>
5386         * ses.el (macroexp): Add require for this package, so that function
5387         `ses--cell gets macroexp-quote.
5388         (ses--cell): Makes formula a macroexp-quote of value when formula
5389         is nil.  The rationale of this changr is to allow in the future
5390         shorter SES files, e.g. we could have only `(ses-cell A1 1.0)'
5391         instead of `(ses-cell A1 1.0 1.0 nil REFLIST)'.  In such a case
5392         reference list REFLIST would be re-computed after load --- thus
5393         trading off load time against file size.
5395         * emacs-lisp/package.el (package--alist-to-plist-args):
5396         Use macroexp-quote instead of a lambda expression which has the same
5397         content as macroexp-quote.
5398         (macroexp): Add require for this package, so that function
5399         `package--alist-to-plist-args' gets macroexp-quote.
5401         * emacs-lisp/macroexp.el (macroexp-quote): New defun.
5403 2014-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
5405         * term/ns-win.el (ns-store-cut-buffer-internal)
5406         (ns-copy-including-secondary): Use gui-set-selection (bug#18816).
5408 2014-10-24  Martin Rudalics  <rudalics@gmx.at>
5410         * mouse.el (mouse-drag-line): Don't use mouse-pixel-position.
5411         Calculate increment from last position instead of window edge.
5412         Add right- and bottom-divider bindings to transient map.
5414 2014-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5416         * emacs-lisp/cl-macs.el (cl-defstruct): Define an internal predicate
5417         even if :predicate was nil, for the benefit of typep.
5418         Record the name of the predicate for typep's use.
5419         (cl--make-type-test): Use pcase.  Obey new
5420         cl-deftype-satisfies property.
5422         * epg.el: Use cl-defstruct.
5423         (epg-make-data-from-file, epg-make-data-from-string, epg-data-file)
5424         (epg-data-string): Define via cl-defstruct.
5425         (epg--gv-nreverse): New macro.
5426         (epg-context--make): New constructor (provided vi cl-defstruct).
5427         (epg-make-context): Rewrite using it.
5428         (epg-context-protocol, epg-context-program)
5429         (epg-context-home-directory, epg-context-armor, epg-context-textmode)
5430         (epg-context-include-certs, epg-context-cipher-algorithm)
5431         (epg-context-digest-algorithm, epg-context-compress-algorithm)
5432         (epg-context-passphrase-callback, epg-context-progress-callback)
5433         (epg-context-signers, epg-context-sig-notations, epg-context-process)
5434         (epg-context-output-file, epg-context-result, epg-context-operation)
5435         (epg-context-pinentry-mode): Define using cl-defstruct.
5436         (epg-context-set-protocol, epg-context-set-program)
5437         (epg-context-set-include-certs, epg-context-set-cipher-algorithm)
5438         (epg-context-set-digest-algorithm)
5439         (epg-context-set-sig-notations, epg-context-set-process)
5440         (epg-context-set-output-file, epg-context-set-result)
5441         (epg-context-set-operation, epg-context-set-pinentry-mode)
5442         (epg-context-set-compress-algorithm): Remove.  Use setf instead.
5443         (epg-context-set-armor, epg-context-set-textmode)
5444         (epg-context-set-signers): Redefine using setf
5445         and declare as obsolete.
5446         (epg-context-set-passphrase-callback)
5447         (epg-context-set-progress-callback): Use setf.
5448         (epg-signature-notations): Rename from epg-sig-notations.
5449         (epg-make-signature, epg-signature-status, epg-signature-key-id)
5450         (epg-signature-validity, epg-signature-fingerprint)
5451         (epg-signature-creation-time, epg-signature-expiration-time)
5452         (epg-signature-pubkey-algorithm, epg-signature-digest-algorithm)
5453         (epg-signature-class, epg-signature-version): Define vi cl-defstruct.
5454         (epg-signature-set-status, epg-signature-set-key-id)
5455         (epg-signature-set-validity, epg-signature-set-fingerprint)
5456         (epg-signature-set-creation-time, epg-signature-set-expiration-time)
5457         (epg-signature-set-pubkey-algorithm)
5458         (epg-signature-set-digest-algorithm, epg-signature-set-class)
5459         (epg-signature-set-version, epg-signature-set-notations): Remove.
5460         Use setf instead.
5461         (epg-make-new-signature, epg-new-signature-type)
5462         (epg-new-signature-pubkey-algorithm)
5463         (epg-new-signature-digest-algorithm, epg-new-signature-class)
5464         (epg-new-signature-creation-time, epg-new-signature-fingerprint):
5465         Define using cl-defstruct.
5466         (epg-make-key, epg-key-owner-trust, epg-key-sub-key-list)
5467         (epg-key-user-id-list): Define using cl-defstruct.
5468         (epg-key-set-sub-key-list, epg-key-set-user-id-list): Remove.
5469         Use setf instead.
5470         (epg-make-sub-key, epg-sub-key-validity, epg-sub-key-capability)
5471         (epg-sub-key-secret-p, epg-sub-key-algorithm, epg-sub-key-length)
5472         (epg-sub-key-id, epg-sub-key-creation-time)
5473         (epg-sub-key-expiration-time, epg-sub-key-fingerprint): Define using
5474         cl-defstruct.
5475         (epg-sub-key-set-fingerprint): Remove.  Use setf instead.
5476         (epg-make-user-id, epg-user-id-validity, epg-user-id-string)
5477         (epg-user-id-signature-list): Define using cl-defstruct.
5478         (epg-user-id-set-signature-list): Remove.  Use setf instead.
5479         (epg-make-key-signature, epg-key-signature-validity)
5480         (epg-key-signature-pubkey-algorithm, epg-key-signature-key-id)
5481         (epg-key-signature-creation-time, epg-key-signature-expiration-time)
5482         (epg-key-signature-user-id, epg-key-signature-class)
5483         (epg-key-signature-exportable-p): Define using cl-defstruct.
5484         (epg-make-sig-notation, epg-sig-notation-name)
5485         (epg-sig-notation-value, epg-sig-notation-human-readable)
5486         (epg-sig-notation-critical): Define using cl-defstruct.
5487         (epg-sig-notation-set-value): Remove.  Use setf instead.
5488         (epg-make-import-status, epg-import-status-fingerprint)
5489         (epg-import-status-reason, epg-import-status-new)
5490         (epg-import-status-user-id, epg-import-status-signature)
5491         (epg-import-status-sub-key, epg-import-status-secret): Define using
5492         cl-defstruct.
5493         (epg-make-import-result, epg-import-result-considered)
5494         (epg-import-result-no-user-id, epg-import-result-imported)
5495         (epg-import-result-imported-rsa, epg-import-result-unchanged)
5496         (epg-import-result-new-user-ids, epg-import-result-new-sub-keys)
5497         (epg-import-result-new-signatures, epg-import-result-new-revocations)
5498         (epg-import-result-secret-read, epg-import-result-secret-imported)
5499         (epg-import-result-secret-unchanged, epg-import-result-not-imported)
5500         (epg-import-result-imports): Define using cl-defstruct.
5502         * emacs-lisp/package.el: Require EPG during macroexpansion.
5503         (package--check-signature, package-import-keyring): Use setf instead of
5504         epg-context-set-home-directory.
5506 2014-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5508         * emacs-lisp/bytecomp.el (byte-compile--use-old-handlers): Change default.
5510 2014-10-23  Leo Liu  <sdl.web@gmail.com>
5512         * progmodes/cfengine.el (cfengine3-defun-full-re): New var.
5513         (cfengine3-create-imenu-index): Use it and use ` ' for separation.
5514         (cfengine3-current-defun): New function.
5515         (cfengine3-mode): Set add-log-current-defun-function.
5517 2014-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
5519         * select.el: Use lexical-binding.
5520         (gui-set-selection): Provide an implementation for non-GUI frames
5521         (bug#18791).
5522         * term/x-win.el: Use lexical-binding.
5523         (x-clipboard-yank): Fix up missed renamings.
5524         * term/w32-win.el (libgif-version, libjpeg-version): Silence compiler.
5525         (w32--set-selection): Fix up var names.
5526         * term/pc-win.el: Use lexical-binding.
5527         (w16-selection-exists-p): Silence compiler warning.
5528         (w16-selection-owner-p): Fix up missed renamings.
5530         * emacs-lisp/bytecomp.el (byte-compile-form): Remove left-over debug.
5532         * frame.el (frame-notice-user-settings): Fix excessive quoting.
5534 2014-10-22  Tassilo Horn  <tsdh@gnu.org>
5536         * doc-view.el (doc-view-open-text): View the document's plain text
5537         in the current buffer instead of a new one.
5538         (doc-view-toggle-display): Handle the case where the current
5539         buffer contains the plain text contents of the document.
5540         (doc-view-initiate-display): Don't switch to fallback mode if the
5541         user wants to view the doc's plain text.
5542         (doc-view-set-doc-type): Use assoc-string instead of
5543         assoc-ignore-case.
5545 2014-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5547         * subr.el (read-key): Fix clicks on the mode-line.
5548         (set-transient-map): Return exit function.
5550         * mouse.el (mouse-drag-line): Use set-transient-map (bug#18015).
5551         (mouse--down-1-maybe-follows-link): Remove unused var `this-event'.
5552         (mouse-yank-secondary): Use gui-get-selection.
5553         (mouse--down-1-maybe-follows-link): Use read-key.
5555         * xt-mouse.el: Add `event-kind' property on the fly from
5556         xterm-mouse-translate-1 rather than statically at the outset.
5558 2014-10-21  Daniel Colascione  <dancol@dancol.org>
5560         * vc/vc-dispatcher.el (vc-resynch-window): Tell view-mode not to
5561         change window configuration when we turn it off.
5563 2014-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5565         Get rid of backend-dependent selection-handling functions for kill/yank
5566         and make it generic instead by relying on the lower-level selection
5567         management functions.
5569         * select.el (select-enable-clipboard): Rename from
5570         gui-select-enable-clipboard.
5571         (select-enable-primary): Move from x-win.el and rename from
5572         x-select-enable-primary.
5573         (gui-last-selected-text): Remove.
5574         (gui--last-selected-text-clipboard, gui--last-selected-text-primary):
5575         New vars.
5576         (gui-select-text): Rewrite, based on x-win.el's old x-select-text.
5577         (gui-select-text-alist, gui-selection-value-alist): Remove.
5578         (x-select-request-type): Move from x-win.el.
5579         (gui--selection-value-internal): New function, taken from x-win's
5580         x-selection-value-internal.
5581         (gui-selection-value): Rewrite, based on x-win.el's old x-selection-value.
5582         (gui-set-selection-alist): Rename from gui-own-selection-alist and
5583         extend it to handle a nil value as a "disown" request.
5584         (gui-disown-selection-alist): Remove.
5585         (xselect-convert-to-delete): Adjust accordingly.
5586         (gui-set-selection): Simplify accordingly as well.  Use dotimes.
5588         * term/x-win.el (x-last-selected-text-primary)
5589         (x-select-enable-primary): Remove (moved to select.el).
5590         (x-select-request-type): Move to select.el.
5591         (x-selection-value-internal, x--selection-value): Remove functions.
5592         (gui-selection-value, gui-select-text): Remove moethods.
5593         (gui-set-selection): Merge own and disown methods.
5595         * term/w32-win.el (w32--select-text, w32--get-selection-value):
5596         Delete function (move functionality into w32--set-selection and
5597         w32--get-selection).
5598         (gui-select-text, gui-selection-value): Don't define methods.
5599         (w32--set-selection, w32--get-selection, w32--selection-owner-p):
5600         New functions.
5601         (gui-get-selection, gui-selection-owner-p, gui-selection-exists-p):
5602         Use them.
5603         (gui-selection-exists-p): Adjust to new name of C primitive.
5605         * term/pc-win.el (w16-get-selection-value): Add dummy argument and drop
5606         test of gui-select-enable-clipboard, to make it usable as
5607         a gui-get-selection method.
5608         (gui-selection-exists-p): Adjust to new name of C primitive.
5609         (gui-set-selection): Merge own and disown methods.
5610         (gui-select-text, gui-selection-value): Delete methods.
5611         (w16--select-text): Delete function.
5613         * term/ns-win.el (ns-get-pasteboard, ns-set-pasteboard)
5614         (ns-selection-value): Remove functions.
5615         (gui-select-text, gui-selection-value): Don't define method any more.
5616         (gui-set-selection): Merge the old own and disown methods.
5617         (gui-selection-exists-p, gui-get-selection): Adjust to new name of
5618         underlying C primitive.
5620         * startup.el (command-line): Adjust now that `gui-method' expects nil
5621         for ttys.
5623         * frame.el (gui-method): Use window-system rather than framep.
5624         (gui-method-declare): The tty case is now nil rather than t.
5625         (make-frame): Adjust accordingly.
5627 2014-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
5629         * net/newst-reader.el (newsticker--image-read): Simplify.
5630         (newsticker--icon-read): Use dolist and fix free var error.
5632         * imenu.el (imenu--menubar-keymap): New var.
5633         (imenu-add-to-menubar): Set it to remember the keymap we used.
5634         (imenu-update-menubar): Use it instead of asking lookup-key.
5636         * obsolete/cc-compat.el: Make obsolete (bug#18561).
5638         * epg-config.el (epg-gpg-program): Don't use absolute names by default.
5640         * emacs-lisp/bytecomp.el (=, <, >, <=, >=): Don't optimize multi-arg
5641         case (bug#18767).
5643 2014-10-21  Glenn Morris  <rgm@gnu.org>
5645         * Merge in all changes up to version 24.4 release.
5647 2014-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5649         * emacs-lisp/bytecomp.el (=, <, >, <=, >=): Don't optimize multi-arg
5650         case (bug#18767).
5652 2014-10-20  Glenn Morris  <rgm@gnu.org>
5654         * Merge in all changes up to 24.4 release.
5656 2014-10-20  Ulf Jasper  <ulf.jasper@web.de>
5658         * net/newst-backend.el
5659         (newsticker--image-download-by-url-callback): Make this function
5660         actually work: Check status properly, then save image.
5662 2014-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5664         * mouse.el (mouse--down-1-maybe-follows-link): Remove unused var
5665         `this-event'.
5666         (mouse-drag-line): Unless there's no actual mouse, use the event's
5667         position info.
5669 2014-10-20  Stefan Monnier  <monnier@iro.umontreal.ca>
5671         * textmodes/css-mode.el (scss-mode): New major-mode.
5672         (css-mode-syntax-table): Use d style comment, to ease the scss case.
5673         (css-ident-re): Allow things like @-moz-keyframes.
5674         (scss--hash-re): New const.
5675         (css--font-lock-keywords): New function, extracted from
5676         css-font-lock-keywords.
5678 2014-10-19  Ulf Jasper  <ulf.jasper@web.de>
5680         * net/newst-backend.el: Require url-parse.
5681         (newsticker--get-news-by-wget): Store feed name as process property.
5682         (newsticker--sentinel): Read feed name from process property.
5683         (newsticker--sentinel-work): Rename argument name to feed-name.
5684         Rename variable imageurl to image-url.  Pick icon url from Atom
5685         1.0 data.  Launch download of feed icon.
5686         (newsticker--get-icon-url-atom-1.0): New.
5687         (newsticker--unxml)
5688         (newsticker--unxml-node)
5689         (newsticker--unxml-attribute): Documentation.
5690         (newsticker--icons-dir): New.
5691         (newsticker--image-get): New arguments FILENAME and DIRECTORY.
5692         Use `url-retrieve' if `newsticker-retrieval-method' is 'intern.
5693         (newsticker--image-download-by-wget): New.  Use process properties
5694         for storing informations.
5695         (newsticker--image-sentinel): Read informations from process properties.
5696         (newsticker--image-save)
5697         (newsticker--image-remove)
5698         (newsticker--image-download-by-url)
5699         (newsticker--image-download-by-url-callback): New.
5700         (newsticker-opml-export): Handle url list entries containing a
5701         function instead of an url string.
5703         * net/newst-reader.el (newsticker-html-renderer): Whitespace.
5704         (newsticker--print-extra-elements)
5705         (newsticker--do-print-extra-element):
5706         Documentation (newsticker--image-read): Optionally limit image height.
5707         Use imagemagick if possible.
5708         (newsticker--icon-read): New.
5710         * net/newst-treeview.el (newsticker--treeview-item-show): Limit height of feed logo.
5711         (newsticker--treeview-tree-expand): Use feed icons in treeview.
5712         (newsticker--tree-widget-icon-create): New.  Set the tree widget icon.
5713         (newsticker--tree-widget-leaf-icon): Use feed icon.
5715 2014-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
5717         * emacs-lisp/eieio-opt.el (eieio-lambda-arglist): Remove.
5718         Use help-function-arglist instead.
5720         * emacs-lisp/eieio-core.el (eieio-compiled-function-arglist): Remove.
5721         (eieio--with-scoped-class): Use `declare'.
5722         (eieio-defclass): Remove compatibility code.
5723         (no-method-definition, no-next-method, inconsistent-class-hierarchy)
5724         (invalid-slot-type, unbound-slot, invalid-slot-name): Use define-error.
5726 2014-10-18  Jan Djärv  <jan.h.d@swipnet.se>
5728         * cus-start.el (x-gtk-whole-detached-tool-bar): Remove.
5730         * term/x-win.el (x-gtk-stock-map): Add icon names suggested as
5731         replacements to stock names before stock names in a list.
5732         Cdr may be a list, each name is tried in turn until one is found.
5734 2014-10-18  Alan Mackenzie  <acm@muc.de>
5736         Check that a "macro" found near point-min isn't a ## operator.
5737         * progmodes/cc-engine.el (c-macro-is-genuine-p): New function.
5738         (c-beginning-of-macro): Use the above new function.  (Bug#18749)
5740 2014-10-18  Teodor Zlatanov  <tzz@lifelogs.com>
5742         * net/gnutls.el (gnutls-negotiate): Don't use cl-mapcan; pass
5743         correct data to `gnutls-boot' (Bug#18664).
5744         Reported by Toke Høiland-Jørgensen <toke@toke.dk>.
5746 2014-10-18  Michal Nazarewicz  <mina86@mina86.com>
5748         * whitespace.el (whitespace-style, whitespace-big-indent)
5749         (whitespace-big-indent-regexp, whitespace-style-value-list)
5750         (whitespace-toggle-option-alist, whitespace-interactive-char)
5751         (whitespace-toggle-options)
5752         (global-whitespace-toggle-options, whitespace-help-text)
5753         (whitespace-style-face-p, whitespace-color-on): Add a 'big-indent
5754         style to `whitespace-mode' to indicate that the line indentation
5755         is too deep.  By default, 32 SPACEs or four TABs are considered
5756         too many but `whitespace-big-indent-regexp' can be configured.
5758 2014-10-17  Michal Nazarewicz  <mina86@mina86.com>
5760         * textmodes/tildify.el (tildify--pick-alist-entry): Rename from
5761         tildify-mode-alist.
5763 2014-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
5765         * emacs-lisp/eieio.el: Use lexical-binding drop non-GV fallback.
5766         (defclass, defgeneric, defmethod): Add doc-string position.
5767         (with-slots): Require cl-lib.
5769         * emacs-lisp/eieio-core.el: Use lexical-binding and cl-lib.
5770         (list-of): New type.
5771         (eieio--typep): Remove.
5772         (eieio-perform-slot-validation): Use cl-typep instead.
5774         * emacs-lisp/eieio-base.el: Use lexical-binding and cl-lib.
5776         * emacs-lisp/cl-macs.el (cl--make-type-test): Avoid ((lambda ..) ..).
5778 2014-10-16  Alan Mackenzie  <acm@muc.de>
5780         Trigger showing when point is in the "periphery" of a line or just
5781         inside a paren.
5782         * paren.el (show-paren-style, show-paren-delay)
5783         (show-paren-priority, show-paren-ring-bell-on-mismatch):
5784         Remove superfluous :group specifications.
5785         (show-paren-when-point-inside-paren)
5786         (show-paren-when-point-in-periphery): New customizable variables.
5787         (show-paren-highlight-openparen): Make into a defcustom.
5788         (show-paren--unescaped-p, show-paren--categorize-paren)
5789         (show-paren--locate-near-paren): New defuns.
5790         (show-paren--default): Refaactor and trigger on more paren
5791         positions.
5792         (show-paren-function): Small consequential changes.
5794 2014-10-16  Tom Tromey  <tom@tromey.com>
5796         * files.el (auto-mode-alist): Use javascript-mode for .jsm
5797         (bug #18719).
5799 2014-10-16  Eli Zaretskii  <eliz@gnu.org>
5801         * international/characters.el (bracket-type): Force pre-loading of
5802         uni-brackets.el.
5804 2014-10-16  Alan Mackenzie  <acm@muc.de>
5806         * cus-edit.el (custom-command-apply): Specify the return value in
5807         the doc string.
5808         (Custom-reset-standard): Save custom-file (e.g. .emacs) only when
5809         custom-command-apply has returned non-nil.
5811 2014-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5813         * emacs-lisp/eldoc.el (global-eldoc-mode): Enable by default.
5814         Remove incorrect handling of eldoc-print-after-edit.
5815         (eldoc-message-commands, eldoc-last-data): Use defvar.
5816         * loadup.el (emacs-lisp/eldoc): Load it.
5818         * progmodes/m4-mode.el (m4-syntax-propertize): New var.
5819         (m4-mode): Use it.
5820         (m4--quoted-p): New function.
5821         (m4-font-lock-keywords): Don't handle #..\n comments any more.
5822         (m4-mode-syntax-table): Use punctuation syntax (according to m4 manual)
5823         for most special characters.
5825         * progmodes/compile.el (compilation--previous-directory): Simplify.
5826         (compilation-next-error): Ensure the parse before we look at
5827         compilation-message property.
5829 2014-10-15  Eli Zaretskii  <eliz@gnu.org>
5831         * simple.el (what-cursor-position):
5832         * descr-text.el (describe-char): Update to support the new bidi
5833         characters.
5835         * emacs-lisp/tabulated-list.el (tabulated-list-mode):
5836         Force bidi-paragraph-direction to 'left-to-right'.  This fixes
5837         buffer-menu display when the first buffer happens to start with
5838         R2L letter.
5840 2014-10-15  Stefan Monnier  <monnier@iro.umontreal.ca>
5842         * progmodes/elisp-mode.el (elisp--local-variables-1):
5843         Handle quoted expressions (bug#18688).
5845 2014-10-14  Jérémy Compostella  <jeremy.compostella@intel.com>
5846             Michael Albinus  <michael.albinus@gmx.de>
5848         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
5849         Reduce the amount of set environment variable commands.
5851 2014-10-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
5853         Fix import completion.  (Bug#18582)
5854         * progmodes/python.el (python-shell-completion-get-completions):
5855         Fix import case regexp.
5857 2014-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
5859         * progmodes/bat-mode.el (bat-font-lock-keywords): Fix \\<_ typo
5860         (bug#18622).  Reported by Arni Magnusson <arnima@hafro.is>.
5861         * progmodes/prolog.el (prolog-electric--underscore): Same.
5863 2014-10-12  Michael Albinus  <michael.albinus@gmx.de>
5865         * net/tramp-sh.el (tramp-get-remote-id): Check also for "gid".
5867 2014-10-11  Jan Djärv  <jan.h.d@swipnet.se>
5869         * cus-start.el (all): Add missing ns and boolean to
5870         ns-use-fullscreen-animation.
5872 2014-10-11  Leo Liu  <sdl.web@gmail.com>
5874         * progmodes/cfengine.el (cfengine3-defuns, cfengine3-vartypes):
5875         Use strings.
5876         (cfengine3-create-imenu-index): New function.
5877         (cfengine3-mode): Use it for `imenu-create-index-function'.
5878         (cfengine-auto-mode): Improve and prefer cfengine3-mode when
5879         buffer is empty.
5881 2014-10-11  Jan Djärv  <jan.h.d@swipnet.se>
5883         * cus-start.el (all): Add ns-use-fullscreen-animation.
5885 2014-10-11  Glenn Morris  <rgm@gnu.org>
5887         * calendar/diary-lib.el (diary-display-function):
5888         Drop support for deprecated nil and list forms.
5889         (diary-list-entries): Update for the above.
5890         * calendar/cal-x.el (calendar-dedicate-diary): Simplify accordingly.
5892 2014-10-10  Leo Liu  <sdl.web@gmail.com>
5894         * window.el (temp-buffer-window-show): Make BUFFER a required arg.
5895         (Bug#18656)
5897 2014-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
5899         * select.el (gui-selection-exists-p-alist): New method.
5900         * menu-bar.el (menu-bar-edit-menu, clipboard-yank):
5901         * simple.el (deactivate-mark): Use it.
5902         * term/x-win.el (gui-selection-exists-p):
5903         * term/w32-win.el (gui-selection-exists-p):
5904         * term/pc-win.el (gui-selection-exists-p):
5905         * term/ns-win.el (gui-selection-exists-p): Provide a backend instance.
5907 2014-10-10  Glenn Morris  <rgm@gnu.org>
5909         * info.el (Info-fontify-maximum-menu-size): Bump to 400k.  (Bug#16227)
5910         Fix :type.  Allow t to mean no limit.
5911         (Info-fontify-node): Handle Info-fontify-maximum-menu-size = t.
5913 2014-10-09  Glenn Morris  <rgm@gnu.org>
5915         * frame.el (display-monitor-attributes-list): Doc tweaks.
5917 2014-10-09  Eli Zaretskii  <eliz@gnu.org>
5919         * faces.el (display-grayscale-p): Mention in the doc string that
5920         the argument can be either a display name or a frame.
5922         * frame.el (display-pixel-height, display-pixel-width)
5923         (display-mm-height, display-mm-width, display-backing-store)
5924         (display-save-under, display-planes, display-color-cells)
5925         (display-visual-class, display-monitor-attributes-list)
5926         (display-screens): Mention in the doc string that the argument can
5927         be either a display name or a frame.  Improve the docs of the
5928         monitor attributes.  (Bug#18636)
5930 2014-10-09  Martin Rudalics  <rudalics@gmx.at>
5932         * term.el (term-window-width): Subtract 1 from the width when
5933         any fringe has zero width, not just the right fringe.  (Bug#18601)
5935 2014-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
5937         * frame.el (make-frame): Use t rather than nil for `w' (bug#18653).
5939 2014-10-08  Leo Liu  <sdl.web@gmail.com>
5941         * emacs-lisp/cl-extra.el (cl-fresh-line): New function.
5943 2014-10-08  Glenn Morris  <rgm@gnu.org>
5945         * calendar/cal-x.el (calendar-dedicate-diary):
5946         Drop support for recently deleted aliases.
5948 2014-10-08  Leo Liu  <sdl.web@gmail.com>
5950         * progmodes/cfengine.el (cfengine3-make-syntax-cache):
5951         Always return a syntax.  Replace call-process-shell-command with
5952         process-file.  Ensure cfengine-mode-syntax-functions-regex is
5953         always set.  Ensure cache when cfengine-cf-promises fails.
5954         (Bug#18620)
5956 2014-10-07  Glenn Morris  <rgm@gnu.org>
5958         * font-lock.el (font-lock-fontify-buffer): Fix interactive-only markup.
5960 2014-10-07  Wilson Snyder  <wsnyder@wsnyder.org>
5962         Sync with upstream verilog-mode revision c075a492.
5963         * progmodes/verilog-mode.el (verilog-mode-version): Bump.
5964         (verilog-menu): Add AUTOINSERTLAST.
5965         (verilog-no-indent-begin-re): When `verilog-indent-begin-after-if'
5966         is nil, fix indenting initial/final to match always statements, bug825.
5967         Reported by Tim Clapp.
5968         (verilog-extended-complete-re): Fix indentation of DPI-C imports,
5969         bug557.  Reported by ZeDong Mao and Jason Forkey.
5970         (verilog-read-decls): Fix parsing typed interfaces.
5971         Fix AUTOINOUTMODPORT missing types.  Reported by Stephan Bourduas.
5972         (verilog-auto-arg-ports): Fix verilog-auto-arg-format single.
5973         (verilog-auto-output-every): Add regexp to AUTOOUTPUTEVERY, bug793.
5974         Reported by Pierre-David Pfister.
5975         (verilog-auto-insert-lisp): Doc fix.
5976         (verilog-auto-insert-last, verilog-auto): Add AUTOINSERTLAST to
5977         allow post-AUTO user fixups, bug826.  Reported by Dennis Muhlestein.
5978         (verilog-sk-ovm-class, verilog-sk-uvm-object)
5979         (verilog-sk-uvm-component): Fix missing string keyword in class
5980         skeletons, bug824.  Reported by eldad faruhi.
5982 2014-10-06  Stefan Monnier  <monnier@iro.umontreal.ca>
5984         * term/w32-win.el: Move all code from 32-common-fns.el here.
5985         (gui-select-text, gui-selection-value): Use w32 handlers in the w32
5986         console as well (bug#18629).
5987         * w32-common-fns.el: Remove.
5988         * loadup.el: Don't load w32-common-fns.el.
5989         * w32-fns.elc: Don't require w32-common-fns.
5991         * icomplete.el: Move Iswitchb autoload here.  Much simpler.
5992         * obsolete/iswitchb.el (iswitchb-mode): Use normal autoload cookie.
5993         Remove redundant obsolescence thingy.
5994         * loadup.el: Don't load obsolete/loaddefs.el.
5995         * Makefile.in (obsolete-autoloads): Remove.
5996         (AUTOGENEL): Remove obsolete/loaddefs.el.
5998 2014-10-06  Glenn Morris  <rgm@gnu.org>
6000         * Makefile.in (obsolete-autoloads): Write to a separate file,
6001         to workaround autoloads bug.  (Bug#17407)
6002         (AUTOGENEL): Add obsolete/loaddefs.el.
6003         * loadup.el: Load obsolete/loaddefs.el if present.
6004         * subr.el (do-after-load-evaluation):
6005         Don't warn about obsolete/loaddefs.el.
6007         * menu-bar.el (menu-bar-games-menu): Remove landmark.
6008         It has zero relationship to a game.
6010 2014-10-06  Leo Liu  <sdl.web@gmail.com>
6012         * imenu.el (imenu): Re-write for clarity.
6014 2014-10-06  Glenn Morris  <rgm@gnu.org>
6016         Remove calendar code obsolete since at least version 23.1.
6017         * calendar/cal-bahai.el (calendar-absolute-from-bahai)
6018         (calendar-print-bahai-date, calendar-bahai-prompt-for-date)
6019         (calendar-goto-bahai-date, list-bahai-diary-entries)
6020         (mark-bahai-calendar-date-pattern, mark-bahai-diary-entries)
6021         (insert-bahai-diary-entry, insert-monthly-bahai-diary-entry)
6022         (insert-yearly-bahai-diary-entry):
6023         * calendar/cal-china.el (chinese-calendar-time-zone)
6024         (chinese-calendar-location-name)
6025         (chinese-calendar-daylight-time-offset)
6026         (chinese-calendar-standard-time-zone-name)
6027         (chinese-calendar-daylight-time-zone-name)
6028         (chinese-calendar-daylight-savings-starts)
6029         (chinese-calendar-daylight-savings-ends)
6030         (chinese-calendar-daylight-savings-starts-time)
6031         (chinese-calendar-daylight-savings-ends-time)
6032         (chinese-calendar-celestial-stem)
6033         (chinese-calendar-terrestrial-branch)
6034         (calendar-absolute-from-chinese, calendar-print-chinese-date)
6035         (calendar-goto-chinese-date):
6036         * calendar/cal-coptic.el (calendar-absolute-from-coptic)
6037         (calendar-print-coptic-date, coptic-prompt-for-date)
6038         (calendar-goto-coptic-date, calendar-absolute-from-ethiopic)
6039         (calendar-print-ethiopic-date, calendar-goto-ethiopic-date):
6040         * calendar/cal-french.el (calendar-absolute-from-french)
6041         (calendar-print-french-date, calendar-goto-french-date):
6042         * calendar/cal-hebrew.el (diary-sabbath-candles-minutes)
6043         (calendar-absolute-from-hebrew, calendar-print-hebrew-date)
6044         (hebrew-calendar-yahrzeit, calendar-goto-hebrew-date)
6045         (holiday-rosh-hashanah-etc, holiday-hanukkah)
6046         (holiday-passover-etc, holiday-tisha-b-av-etc)
6047         (list-hebrew-diary-entries, mark-hebrew-calendar-date-pattern)
6048         (mark-hebrew-diary-entries, insert-hebrew-diary-entry)
6049         (insert-monthly-hebrew-diary-entry)
6050         (insert-yearly-hebrew-diary-entry, list-yahrzeit-dates)
6051         (diary-omer, diary-yahrzeit, diary-rosh-hodesh, diary-parasha)
6052         (diary-sabbath-candles):
6053         * calendar/cal-islam.el (calendar-absolute-from-islamic)
6054         (calendar-print-islamic-date, calendar-goto-islamic-date)
6055         (list-islamic-diary-entries, mark-islamic-calendar-date-pattern)
6056         (mark-islamic-diary-entries, insert-islamic-diary-entry)
6057         (insert-monthly-islamic-diary-entry)
6058         (insert-yearly-islamic-diary-entry):
6059         * calendar/cal-iso.el (calendar-absolute-from-iso)
6060         (calendar-print-iso-date, calendar-iso-read-args)
6061         (calendar-goto-iso-date, calendar-goto-iso-week):
6062         * calendar/cal-julian.el (calendar-absolute-from-julian)
6063         (calendar-print-julian-date, calendar-goto-julian-date)
6064         (calendar-absolute-from-astro, calendar-print-astro-day-number)
6065         (calendar-goto-astro-day-number):
6066         * calendar/cal-mayan.el (calendar-print-mayan-date)
6067         (calendar-next-haab-date, calendar-previous-haab-date)
6068         (calendar-next-tzolkin-date, calendar-previous-tzolkin-date)
6069         (calendar-next-calendar-round-date)
6070         (calendar-previous-calendar-round-date)
6071         (calendar-absolute-from-mayan-long-count)
6072         (calendar-goto-mayan-long-count-date):
6073         * calendar/cal-move.el (scroll-calendar-left)
6074         (scroll-calendar-right, scroll-calendar-left-three-months)
6075         (scroll-calendar-right-three-months):
6076         * calendar/cal-persia.el (calendar-absolute-from-persian)
6077         (calendar-print-persian-date, persian-prompt-for-date)
6078         (calendar-goto-persian-date):
6079         * calendar/cal-x.el (calendar-after-frame-setup-hooks):
6080         * calendar/calendar.el (view-diary-entries-initially)
6081         (mark-diary-entries-in-calendar, calendar-today-face)
6082         (diary-face, holiday-face, view-calendar-holidays-initially)
6083         (mark-holidays-in-calendar, initial-calendar-window-hook)
6084         (today-visible-calendar-hook, today-invisible-calendar-hook)
6085         (hebrew-diary-entry-symbol, islamic-diary-entry-symbol)
6086         (bahai-diary-entry-symbol, american-date-diary-pattern)
6087         (european-date-diary-pattern, european-calendar-display-form)
6088         (american-calendar-display-form, holidays-in-diary-buffer)
6089         (all-hebrew-calendar-holidays, all-christian-calendar-holidays)
6090         (all-islamic-calendar-holidays, all-bahai-calendar-holidays)
6091         (fancy-diary-buffer, increment-calendar-month)
6092         (extract-calendar-month, extract-calendar-day)
6093         (extract-calendar-year, exit-calendar, calendar-date-is-legal-p)
6094         (mark-visible-calendar-date, calendar-version):
6095         * calendar/diary-lib.el (diary-button-face, sexp-diary-entry-symbol)
6096         (diary-display-hook, list-diary-entries-hook)
6097         (mark-diary-entries-hook, nongregorian-diary-listing-hook)
6098         (nongregorian-diary-marking-hook, print-diary-entries-hook)
6099         (abbreviated-calendar-year, number-of-diary-entries)
6100         (view-other-diary-entries, add-to-diary-list)
6101         (include-other-diary-files, simple-diary-display)
6102         (fancy-diary-display, print-diary-entries, mark-diary-entries)
6103         (mark-sexp-diary-entries, mark-included-diary-files)
6104         (mark-calendar-days-named, mark-calendar-month)
6105         (mark-calendar-date-pattern, sort-diary-entries)
6106         (list-sexp-diary-entries, make-diary-entry, insert-diary-entry)
6107         (insert-weekly-diary-entry, insert-monthly-diary-entry)
6108         (insert-yearly-diary-entry, insert-anniversary-diary-entry)
6109         (insert-block-diary-entry, insert-cyclic-diary-entry)
6110         (fancy-diary-font-lock-keywords, fancy-diary-display-mode):
6111         * calendar/holidays.el (general-holidays, oriental-holidays)
6112         (local-holidays, other-holidays, hebrew-holidays)
6113         (christian-holidays, islamic-holidays, bahai-holidays)
6114         (solar-holidays, list-calendar-holidays)
6115         (check-calendar-holidays, mark-calendar-holidays)
6116         (filter-visible-calendar-holidays):
6117         * calendar/lunar.el (calendar-phases-of-moon, phases-of-moon)
6118         (diary-phases-of-moon): Remove obsolete aliases.
6119         * calendar/cal-menu.el (cal-menu-load-hook): Remove obsolete hook.
6120         * calendar/cal-x.el (calendar-one-frame-setup)
6121         (calendar-only-one-frame-setup, calendar-two-frame-setup):
6122         Remove obsolete functions.
6123         (cal-x-load-hook): Remove obsolete hook.
6124         * calendar/calendar.el (european-calendar-style):
6125         Remove obsolete variable.
6126         (calendar-date-style): No longer consult european-calendar-style.
6127         * calendar/calendar.el (european-calendar, american-calendar):
6128         Remove obsolete commands.
6129         * calendar/calendar.el (calendar-for-loop): Remove obsolete macro.
6130         * calendar/diary-lib.el (diary-face): Remove obsolete variable.
6131         (diary-font-lock-date-forms, diary-fancy-font-lock-keywords):
6132         Use the face `diary' instead of the variable `diary-face'.
6133         * calendar/holidays.el (hebrew-holidays-1, hebrew-holidays-2)
6134         (hebrew-holidays-3, hebrew-holidays-4): Remove obsolete variables.
6135         * calendar/icalendar.el (icalendar--date-style): Remove function.
6136         Replace all uses with calendar-date-style.
6137         * textmodes/remember.el (calendar-date-style): Declare.
6138         (remember-diary-convert-entry):
6139         No longer consult european-calendar-style.
6141 2014-10-05  Leo Liu  <sdl.web@gmail.com>
6143         * imenu.el (imenu-default-goto-function): Fix typo.
6145 2014-10-04  Thomas Fitzsimmons  <fitzsim@fitzsim.org>
6147         * net/ntlm.el (ntlm-build-auth-request):
6148         Add NTLM2 Session support.  (Bug#15603)
6150 2014-10-04  Glenn Morris  <rgm@gnu.org>
6152         * apropos.el (apropos-symbols-internal):
6153         Avoid error with non-symbol properties.  (Bug#18337#16)
6155         * startup.el (command-line):
6156         Handle altered user-emacs-directory in load-path warning.  (Bug#18512)
6158 2014-10-04  Martin Rudalics  <rudalics@gmx.at>
6160         * window.el (window-full-height-p): Make it behave correctly for
6161         minibuffer window.
6162         (window-current-scroll-bars): Fix code.
6163         (fit-frame-to-buffer): Use window-scroll-bar-height instead of
6164         window-scroll-bars.
6165         * frame.el (frame-current-scroll-bars): Fix doc-string.
6166         * scroll-bar.el (toggle-horizontal-scroll-bar): New command.
6168 2014-10-04  Mark Oteiza  <mvoteiza@udel.edu>  (tiny change)
6170         * files.el (auto-mode-alist): Use sh-mode for .zsh files.  (Bug#18488)
6172 2014-10-04  Glenn Morris  <rgm@gnu.org>
6174         * frame.el (frame-monitor-attributes)
6175         (display-monitor-attributes-list): Doc fixes.
6177 2014-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
6179         Merge trivially safe differences from standalone CC-mode.
6180         * progmodes/cc-mode.el (c-initialize-cc-mode): Don't quote a symbol
6181         just to then pass it to `symbol-value'.
6182         (prog-mode): Provide fallback definition, if needed.
6183         * progmodes/cc-langs.el: Always load `cl'.  Don't load `cl-lib'.
6184         Remove "cl-" prefix accordingly.
6185         * progmodes/cc-fonts.el (c-font-lock-invalid-string): Use integerp or
6186         characterp depending on the type of characters.
6187         (c-font-lock-enum-tail): Remove unused var `start'.
6188         * progmodes/cc-engine.el: Load CL at compile-time.
6189         (c-declare-lang-variables): Use mapcan.
6190         (c-append-to-state-cache): Remove unused var `ce+1'.
6191         (c-parse-state-state): Make buffer-local.
6192         (c-ssb-lit-begin): Remove unused var `pps-end-pos'.
6193         (c-just-after-func-arglist-p): Remove unused var `end'.
6194         * progmodes/cc-defs.el: Load cc-fix if delete-dups is undefined.
6195         (c-<-as-paren-syntax, c->-as-paren-syntax): Move definition earlier.
6196         (c-make-keywords-re): Use delete-dups.
6197         (c-get-current-file): Avoid file-name-base.
6198         * progmodes/cc-cmds.el (c-electric-lt-gt): Remove unused var
6199         `close-paren-inserted'.
6200         * progmodes/cc-awk.el (c-forward-sws): Remove unused declaration.
6202         * progmodes/python.el: Avoid building unneeded markers.
6203         (python-font-lock-keywords, python-indent-dedent-line)
6204         (python-fill-paren, python-shell-completion-complete-or-indent):
6205         Prefer point over point-marker.
6206         (inferior-python-mode): Remove redundant completion settings.
6208 2014-10-03  Dmitry Gutov  <dgutov@yandex.ru>
6210         * vc/vc-svn.el (vc-svn-ignore-completion-table): Implement.
6211         (vc-svn-ignore): Use it.  (Bug#18619)
6213 2014-10-03  Martin Rudalics  <rudalics@gmx.at>
6215         * frame.el (toggle-frame-maximized, toggle-frame-fullscreen):
6216         In doc-string mention need to set `frame-resize-pixelwise'.
6218 2014-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6220         * vc/vc-svn.el (vc-svn-after-dir-status): Fix the non-remote regexp,
6221         similarly to Rogers's 2010-06-16 change for the remote case
6222         (bug#18605).
6224 2014-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
6226         New gui-selection-value consolidating x-selection-value.
6227         * select.el (gui-selection-value-alist): New method.
6228         (gui-selection-value): New function.
6229         (x-selection-value): Make it an obsolete alias.
6230         * simple.el (interprogram-paste-function): Default to
6231         gui-selection-value.
6232         * w32-common-fns.el (w32-get-selection-value): Simplify.
6233         (x-selection-value): Remove alias.
6234         (interprogram-paste-function): Don't set.
6235         (gui-selection-value): Define for w32.
6236         * term/x-win.el (gui-selection-value): Define for x.
6237         (x--selection-value): Rename from x--selection-value.
6238         (interprogram-paste-function): Don't set.
6239         * term/pc-win.el (w16-get-selection-value): Simplify.
6240         (msdos-initialize-window-system): Don't set
6241         interprogram-paste-function.
6242         (gui-selection-value): Define for pc.
6243         * term/ns-win.el (x-selection-value): Remove.
6244         (gui-selection-value): Define for ns, instead.
6245         * term/common-win.el (x-setup-function-keys): Don't set
6246         interprogram-paste-function.
6247         * obsolete/mouse-sel.el (mouse-sel-get-selection-function):
6248         Use gui-selection-value.
6250 2014-10-02  David Raynes  <rayners@gmail.com>  (tiny change)
6252         * term/ns-win.el: Add functions to ns frame, not x frame (bug#18614).
6254 2014-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6256         * obsolete/lucid.el (read-number): Remove, redundant.
6257         * obsolete/cl-compat.el (cl-floor, cl-ceiling, cl-round, cl-truncate):
6258         Remove, broken.
6260 2014-10-02  Glenn Morris  <rgm@gnu.org>
6262         * emacs-lisp/package.el (package-import-keyring):
6263         Create gnupg directory private.  (Bug#17625#155)
6265 2014-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6267         * progmodes/python.el (python-shell-completion-get-completions):
6268         Use python-shell--prompt-calculated-input-regexp from the
6269         process buffer (bug#18582).
6270         Don't assume that `line' comes from the process buffer.
6272 2014-10-02  Stefan Monnier  <monnier@iro.umontreal.ca>
6274         * frame.el: Use lexical-binding (bug#18598).
6275         (make-frame): Use t rather than nil for tty's window-system.
6276         * startup.el (command-line): Use gui-method.
6278         Consolidate management/ownership of selections.
6279         * select.el (gui-get-selection-alist): New method.
6280         (gui-get-selection): Use it.  Rename from x-get-selection.
6281         (x-get-selection): Define as obsolete alias.
6282         (x-get-clipboard): Mark obsolete.
6283         (gui-get-primary-selection): New function.
6284         (x-get-selection-value): Mark obsolete.
6285         (gui-own-selection-alist, gui-disown-selection-alist)
6286         (gui-selection-owner-p-alist): New methods.
6287         (gui-set-selection): Use them.  Rename from x-set-selection.
6288         (x-set-selection): Define as obsolete alias.
6289         (gui--valid-simple-selection-p): Rename from
6290         x-valid-simple-selection-p.
6291         * w32-common-fns.el (gui-own-selection, gui-disown-selection)
6292         (gui-selection-owner-p, gui-get-selection): Define for w32.
6293         (w32-get-selection-value): Rename from x-get-selection-value.
6294         Use the new gui-last-selected-text.
6295         * term/x-win.el (x-get-selection-value): Remove.
6296         (x-clipboard-yank): Declare obsolete.
6297         (gui-own-selection, gui-disown-selection, gui-get-selection)
6298         (gui-selection-owner-p): Define for x.
6299         * term/w32-win.el (w32-win-suspend-error): Rename from
6300         x-win-suspend-error.
6301         * term/pc-win.el (w16-get-selection-value): Rename from
6302         x-get-selection-value.
6303         (w16-selection-owner-p): Rename from x-selection-owner-p.
6304         (gui-own-selection, gui-disown-selection, gui-get-selection)
6305         (gui-selection-owner-p): Define for pc.
6306         (w16--select-text): New function.
6307         * term/ns-win.el (gui-own-selection, gui-disown-selection)
6308         (gui-get-selection, gui-selection-owner-p): Define for ns.
6309         * term.el (term-mouse-paste):
6310         * mouse.el (mouse-yank-primary): Use gui-get-primary-selection.
6312 2014-10-02  H. Dieter Wilhelm  <dieter@duenenhof-wilhelm.de>
6314         * calc/calc-help.el (calc-describe-thing): Quote strings
6315         which could look like regexps.
6317 2014-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6319         Consolidate x-select-text.
6320         * frame.el (gui-method, gui-method-define, gui-method-declare)
6321         (gui-call): New macros.
6322         (gui-method--name): New function.
6323         (frame-creation-function-alist): Use gui-method-declare.
6324         (make-frame): Use gui-method.
6325         * select.el (gui-select-enable-clipboard): Rename from
6326         x-select-enable-clipboard and move here.
6327         (x-select-enable-clipboard): Define as obsolete alias.
6328         (gui-last-selected-text): New var, to replace x-last-selected-text.
6329         (gui-select-text): New GUI method.
6330         (gui-select-text): New function.
6331         (x-select-text): Define as obsolete alias.
6332         * term/common-win.el (x-select-enable-clipboard, x-select-text):
6333         Move to select.el.
6334         * simple.el (interprogram-cut-function): Change default to
6335         x-select-text.
6336         (interprogram-paste-function): Change default to `ignore'.
6337         * w32-common-fns.el (interprogram-cut-function): Don't modify.
6338         * term/x-win.el (interprogram-cut-function): Don't modify.
6339         (gui-select-text): Add method for x.
6340         * term/w32-win.el (gui-select-text): Add method for w32.
6341         * term/pc-win.el (x-last-selected-text): Remove, use
6342         gui-last-selected-text instead.
6343         (msdos-initialize-window-system): Don't set interprogram-cut-function.
6344         (gui-select-text): Add method for pc.
6345         * term/ns-win.el (ns-last-selected-text): Remove, use
6346         gui-last-selected-text instead.
6347         (gui-select-text): Add method for ns.
6348         (x-setup-function-keys): Don't change interprogram-cut-function.
6349         * loadup.el ("startup"): Load after "frame".
6350         * subr.el (package--builtin-versions, package--description-file):
6351         Move from startup.el.
6352         * startup.el (package--builtin-versions, package--description-file):
6353         Move to subr.el.
6354         (handle-args-function-alist, window-system-initialization-alist):
6355         Use gui-method-declare.
6356         (command-line): Use gui-method.
6358 2014-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
6360         * subr.el (alist-get): New accessor.
6361         * emacs-lisp/gv.el (alist-get): Provide expander.
6362         * winner.el (winner-remember):
6363         * tempo.el (tempo-use-tag-list):
6364         * progmodes/gud.el (minor-mode-map-alist):
6365         * international/mule-cmds.el (define-char-code-property):
6366         * frameset.el (frameset-filter-params):
6367         * files.el (dir-locals-set-class-variables):
6368         * register.el (get-register, set-register):
6369         * calc/calc-yank.el (calc-set-register): Use it.
6370         * ps-print.el (ps-get, ps-put, ps-del): Mark as obsolete.
6371         * tooltip.el (tooltip-set-param): Mark as obsolete.
6372         (tooltip-show): Use alist-get instead.
6373         * ses.el (ses--alist-get): Remove.  Use alist-get instead.
6375 2014-10-01  Ulf Jasper  <ulf.jasper@web.de>
6377         * net/newst-backend.el: Remove Time-stamp.  Rename variable
6378         `newsticker--download-logos' to `newsticker-download-logos' and
6379         make it customizable.
6380         (newsticker--sentinel-work): Move xml-workarounds to function
6381         `newsticker--do-xml-workarounds', call unless libxml-parser is
6382         used.  Allow single quote in regexp for encoding.
6383         Use libxml-parser if available, else fall back to `xml-parse-region'.
6384         Take care of possibly missing namespace prefixes (like "RDF"
6385         instead of "rdf:RDF") when checking xml nodes and attributes (as
6386         libxml correctly removes the prefixes).  Always use Atom 1.0 as
6387         fallback feed type.  Rename `newsticker--download-logos' to
6388         `newsticker-download-logos'
6389         (newsticker--unxml, newsticker--unxml-node)
6390         (newsticker--unxml-attribute): New.
6391         (newsticker--parse-atom-1.0): Call `unxml' in case that embedded
6392         HTML code has become part of the xml parse tree.
6393         (newsticker--parse-rss-1.0, newsticker--parse-rss-2.0): Take care
6394         of possibly missing namespace prefixes.
6395         (newsticker--parse-generic-items): Code formatting.  Typo.
6396         (newsticker--images-dir): Add trailing slash.
6397         (newsticker--image-get): Fix error message.
6399         * net/newst-plainview.el: Remove Time-stamp.
6401         * net/newst-reader.el: Remove Time-stamp.
6402         (newsticker-download-logos): Rename variable
6403         `newsticker--download-logos' to `newsticker-download-logos' and
6404         make it customizable.
6405         (newsticker--print-extra-elements): Add optional parameter
6406         'htmlish for using html markup.  Amend list of ignored elements.
6407         (newsticker--do-print-extra-element): Add parameter 'htmlish for
6408         using html markup.
6410         * net/newst-ticker.el: Remove Time-stamp.
6412         * net/newst-treeview.el (newsticker--treeview-item-show): Use html
6413         for formatting extra elements.
6415         * net/newsticker.el:  Remove Time-stamp, Version.
6416         (newsticker-version): Make obsolete.
6418 2014-09-30  Leonardo Nobrega  <leonobr@gmail.com>  (tiny change)
6420         * progmodes/python.el (python-fill-paren): Don't inf-loop at EOB
6421         (bug#18462).
6423 2014-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6425         * emacs-lisp/package.el (package-check-signature): Default to nil if
6426         GPG is not available.
6427         (package-refresh-contents): Don't mess with the keyring if we won't
6428         check the signatures anyway.
6430 2014-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6432         * ses.el (ses--row, ses--col): New dyn-scoped vars, to replace row&col.
6433         (ses-center, ses-center-span): Use them.
6434         (ses-print-cell): Bind them while calling the printer.
6435         (row, col, maxrow, maxcol): Don't declare as dynamically scoped.
6436         (ses-dorange): Revert last change.
6437         (ses-calculate-cell): Don't bind row&col dynamically while evaluating
6438         the formula.
6439         (ses-set-cell): Avoid `eval'.
6440         (ses--time-check): Rename it from ses-time-check and turn it into
6441         a macro.
6443         * ses.el (ses-setup): Don't assume modifying the iteration var of
6444         dotimes affects the iteration (bug#18191).
6446 2014-09-30  Vincent Belaïche  <vincentb1@users.sourceforge.net>
6448         * ses.el (ses-calculate-cell): Bind row and col dynamically to
6449         their values with 'cl-progv'.
6450         (ses-dorange): Bind row, col, maxrow and maxcol dynamically to
6451         their values with 'cl-progv', also use non-interned symbols for
6452         row, minrow, maxrow, mincol and maxcol.
6453         (maxrow maxcol): New defvar, to make the compiler happy.
6455 2014-09-30  Stefan Monnier  <monnier@iro.umontreal.ca>
6457         * minibuffer.el (completion-at-point): Emit warning for ill-behaved
6458         completion functions.
6460 2014-09-29  Stefan Monnier  <monnier@iro.umontreal.ca>
6462         * ses.el (ses--letref): Quote value before it gets re-evaluated.
6464 2014-09-28  Thien-Thi Nguyen  <ttn@gnu.org>
6466         Font-lock `cl-flet*', too.
6467         * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2):
6468         Add "flet*" to intermediate var `cl-lib-kw'.
6470 2014-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6472         * epg-config.el (epg-gpg-program): Use the plain program names rather
6473         than their absolute file name.
6475         * subr.el (track-mouse): New macro.
6476         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form):
6477         Remove track-mouse case.
6478         * emacs-lisp/bytecomp.el (byte-compile-track-mouse): Remove.
6480 2014-09-27  Leo Liu  <sdl.web@gmail.com>
6482         * progmodes/elisp-mode.el (elisp--eldoc-last-data): Use defvar.
6484         * emacs-lisp/eldoc.el (eldoc-mode): Fix thinko.
6486 2014-09-27  Stefan Monnier  <monnier@iro.umontreal.ca>
6488         * emacs-lisp/pcase.el (pcase--split-match, pcase--app-subst-match):
6489         Handle the case where `match' is :pcase--succeed or :pcase--fail
6490         (bug#18554).
6492         Introduce global-eldoc-mode.  Move Elisp-specific code to elisp-mode.el.
6493         * emacs-lisp/eldoc.el (global-eldoc-mode): New minor mode.
6494         (eldoc-schedule-timer): Obey it.
6495         (eldoc-documentation-function): Default to nil.
6496         (eldoc-mode): Don't enable if eldoc-documentation-function is not set.
6497         (eldoc-documentation-function-default, eldoc-get-fnsym-args-string)
6498         (eldoc-highlight-function-argument, eldoc-get-var-docstring)
6499         (eldoc-last-data-store, eldoc-docstring-first-line)
6500         (eldoc-docstring-format-sym-doc, eldoc-fnsym-in-current-sexp)
6501         (eldoc-beginning-of-sexp, eldoc-current-symbol)
6502         (eldoc-function-argstring): Move to elisp-mode.el.
6503         (eldoc-symbol-function): Remove, unused.
6504         * progmodes/elisp-mode.el: New file.  Rename all "eldoc-*" to "elisp--*".
6505         (elisp-completion-at-point): Rename from lisp-completion-at-point.
6506         (elisp--preceding-sexp): Rename from preceding-sexp.
6507         * loadup.el: Load new file progmodes/elisp-mode.
6508         * ielm.el (inferior-emacs-lisp-mode): Set eldoc-documentation-function.
6509         * emacs-lisp/lisp.el (lisp--local-variables-1, lisp--local-variables)
6510         (lisp--local-variables-completion-table, lisp--expect-function-p)
6511         (lisp--form-quoted-p, lisp--company-doc-buffer)
6512         (lisp--company-doc-string, lisp--company-location)
6513         (lisp-completion-at-point): Move to elisp-mode.el.
6514         * emacs-lisp/lisp-mode.el (lisp--mode-syntax-table): New syntax-table,
6515         extracted from emacs-lisp-mode-syntax-table.
6516         (emacs-lisp-mode-abbrev-table, emacs-lisp-mode-syntax-table): Move to
6517         elisp-mode.el.
6518         (lisp-imenu-generic-expression): Add comments to document what comes
6519         from which Lisp dialect.
6520         (emacs-lisp-mode-map, emacs-lisp-byte-compile)
6521         (emacs-lisp-byte-compile-and-load, emacs-lisp-mode-hook)
6522         (emacs-lisp-mode, emacs-list-byte-code-comment-re)
6523         (emacs-lisp-byte-code-comment)
6524         (emacs-lisp-byte-code-syntax-propertize, emacs-lisp-byte-code-mode)
6525         (lisp-interaction-mode-map, lisp-interaction-mode)
6526         (eval-print-last-sexp, last-sexp-setup-props)
6527         (last-sexp-toggle-display, prin1-char, preceding-sexp)
6528         (eval-last-sexp-1, eval-last-sexp-print-value)
6529         (eval-last-sexp-fake-value, eval-sexp-add-defvars, eval-last-sexp)
6530         (eval-defun-1, eval-defun-2, eval-defun): Move to elisp-mode.el.
6532 2014-09-26  Paul Eggert  <eggert@cs.ucla.edu>
6534         * progmodes/grep.el (grep-regexp-alist): Use more-accurate regexp.
6535         Do not match file names that end in '/', as they cannot be 'grep'
6536         hits nowadays.  This prevents confusion when 'grep -r' reports a
6537         match in a file whose basename is ':12345:'.  Conversely, do not
6538         require exactly the same sequence of spaces and tabs after both
6539         colons, and allow spaces or tabs before the second colon, as per
6540         the POSIX spec for 'grep' output.
6542 2014-09-26  Leo Liu  <sdl.web@gmail.com>
6544         Add cl-parse-integer based on parse-integer (Bug#18557)
6545         * calendar/parse-time.el (parse-time-digits): Remove.
6546         (digit-char-p, parse-integer) Moved to cl-lib.el.
6547         (parse-time-tokenize, parse-time-rules, parse-time-string):
6548         Use cl-parse-integer.
6550         * emacs-lisp/cl-extra.el (cl-parse-integer): New function.
6552         * emacs-lisp/cl-lib.el (cl-digit-char-table): New var.
6553         (cl-digit-char-p): New function.
6555 2014-09-25  Juri Linkov  <juri@jurta.org>
6557         * vc/add-log.el (change-log-next-buffer): Don't create an empty
6558         buffer "ChangeLog" when the current buffer doesn't match ChangeLog.[0-9].
6559         Return the current buffer if no files match the default pattern
6560         ChangeLog.[0-9].  Signal "end of multi" when file is nil.  (Bug#18547)
6562 2014-09-25  Stefan Monnier  <monnier@iro.umontreal.ca>
6564         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Don't modify
6565         the global vc-handled-backends (bug#18535).
6567 2014-09-24  Stefan Monnier  <monnier@iro.umontreal.ca>
6569         * find-cmd.el (find-cmd): Use grep's `find-program' (bug#18518).
6570         Suggested by <lompik@voila.fr>.
6572 2014-09-24  Ulf Jasper  <ulf.jasper@web.de>
6574         * net/newst-treeview.el (newsticker--treeview-do-get-node-by-id):
6575         Rename from `newsticker--treeview-do-get-node'.
6576         (newsticker--treeview-get-node-by-id):
6577         Rename from `newsticker--treeview-get-node'.
6578         (newsticker--treeview-buffer-init)
6579         (newsticker--treeview-buffer-init): Disable buffer undo.
6580         (newsticker--treeview-unfold-node): Adapt to modified
6581         `newsticker--group-find-parent-group'.
6582         (newsticker--group-do-find-group):
6583         Rename from `newsticker--group-do-find-group-for-feed'.
6584         Now works for both, groups and feeds.
6585         (newsticker--group-find-parent-group):
6586         Rename from `newsticker--group-find-group-for-feed'.
6587         Now works for both, groups and feeds.
6588         (newsticker--group-do-get-parent-group)
6589         (newsticker--group-get-parent-group): Remove.
6590         (newsticker-group-add-group): Change interactive prompts.
6591         (newsticker-group-add-group): Finally jump to added group.
6592         (newsticker-group-delete-group): Finally jump to current feed.
6593         (newsticker--group-do-rename-group, newsticker-group-rename-group)
6594         (newsticker--get-group-names, newsticker--group-names): New.
6595         (newsticker-group-move-feed): Finally jump to moved feed.
6596         (newsticker-group-shift-feed-down, newsticker-group-shift-feed-up)
6597         (newsticker-group-shift-group-down)
6598         (newsticker-group-shift-group-up, newsticker--group-shift): New.
6599         (newsticker-treeview-mode-map): New keybindings for new shift commands.
6601         * net/newst-backend.el (newsticker--item-list)
6602         (newsticker--item-position, newsticker--prev-message)
6603         (newsticker--scrollable-text): Move to newst-ticker.el.
6605         * net/newst-ticker.el (newsticker--item-list)
6606         (newsticker--item-position, newsticker--prev-message)
6607         (newsticker--scrollable-text): Move from newst-backend.el.
6609 2014-09-22  Kan-Ru Chen  <kanru@kanru.info>
6611         * window.el (fit-window-to-buffer): When counting buffer width,
6612         count the whole visible buffer.  Correctly convert the body-height
6613         to pixel size for window-text-pixel-size (Bug#18498).
6615 2014-09-22  Sam Steingold  <sds@gnu.org>
6617         * progmodes/sql.el (sql-product-alist): Improve the Vertica entry.
6618         (sql-execute): Use `special-mode'.
6620 2014-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6622         Add pcase-defmacro, as well as `quote' and `app' patterns.
6623         * loadup.el: Increase max-lisp-eval-depth when macroexpanding macroexp.
6624         * emacs-lisp/pcase.el: Allow (F . ARGS) in `app' patterns.
6625         (pcase--funcall, pcase--eval): New functions.
6626         (pcase--u1): Use them for guard, pred, let, and app.
6627         (\`): Use the new feature to generate better code for vector patterns.
6628         * emacs-lisp/pcase.el: Use pcase-defmacro to handle backquote.
6629         (pcase--upat): Remove.
6630         (pcase--macroexpand): Don't hardcode handling of `.
6631         (pcase--split-consp, pcase--split-vector): Remove.
6632         (pcase--split-equal): Disregard ` since it's expanded away.
6633         (pcase--split-member): Optimize for quote rather than for `.
6634         (pcase--split-pred): Optimize for quote rather than for `.
6635         (pcase--u1): Remove handling of ` (and of `or' and `and').
6636         Quote non-selfquoting values when passing them to `eq'.
6637         Drop `app's let-binding if the variable is not used.
6638         (pcase--q1): Remove.
6639         (`): Define as a pattern macro.
6640         * emacs-lisp/pcase.el (pcase--match): New smart-constructor function.
6641         (pcase--expand pcase--q1, pcase--app-subst-match): Use it.
6642         (pcase--macroexpand): Handle self-quoting patterns here, expand them to
6643         quote patterns.
6644         (pcase--split-match): Don't hoist or/and here any more.
6645         (pcase--split-equal): Optimize quote patterns as well as ` patterns.
6646         (pcase--flip): New helper macro.
6647         (pcase--u1): Optimize the memq case directly.
6648         Don't handle neither self-quoting nor and/or patterns any more.
6649         * emacs-lisp/pcase.el (pcase-defmacro): New macro.
6650         (pcase--macroexpand): New function.
6651         (pcase--expand): Use it.
6652         * emacs-lisp/pcase.el (pcase--app-subst-match, pcase--app-subst-rest):
6653         New optimization functions.
6654         (pcase--u1): Add support for `quote' and `app'.
6655         (pcase): Document them in the docstring.
6657 2014-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6659         Use lexical-bindin in Ibuffer.
6660         * ibuffer.el (ibuffer-do-toggle-read-only): `arg' is unused.
6661         (ibuffer-compile-format): Simplify.
6662         (ibuffer-clear-summary-columns): Simplify.
6663         * ibuf-ext.el (ibuffer-generate-filter-groups): Don't use the third
6664         elem of dotimes when we don't refer to the iteration var from it.
6665         (ibuffer-toggle-sorting-mode): Avoid add-to-list.
6666         * ibuf-macs.el (define-ibuffer-column, define-ibuffer-op):
6667         Silence byte-compiler.
6669 2014-09-22  Stefan Monnier  <monnier@iro.umontreal.ca>
6671         * font-lock.el (font-lock-compile-keyword): Don't confuse a lambda
6672         expression for a list.
6674         * emacs-lisp/bytecomp.el (byte-compile-lambda): Don't add fundoc usage
6675         for functions with no arguments.
6677         * mpc.el (mpc-data-directory): Use locate-user-emacs-file.
6678         (mpc-volume-refresh): Make sure the corresponding header-line is updated.
6680 2014-09-17  Tom Willemse  <tom@ryuslash.org>  (tiny change)
6682         * simple.el (clone-indirect-buffer): Mention the return value
6683         (bug#18478).
6685         * progmodes/prog-mode.el (prog-mode-hook): Replace reference to
6686         Text mode in docstring (bug#18464).
6688 2014-09-21  Stefan Monnier  <monnier@iro.umontreal.ca>
6690         * progmodes/perl-mode.el (perl-syntax-propertize-function):
6691         Accept underscores in identifiers after "sub" (bug#18502).
6693 2014-09-21  Tassilo Horn  <tsdh@gnu.org>
6695         * textmodes/reftex-sel.el (reftex-select-label-mode)
6696         (reftex-select-bib-mode, reftex-insert-docstruct): Derive modes
6697         from special-mode (instead of fundamental-mode) and propertize
6698         with font-lock-face instead of just face.  (Bug#18496)
6700         * textmodes/reftex-toc.el (reftex-toc-mode, reftex-toc): Ditto.
6702 2014-09-19  Dmitry Gutov  <dgutov@yandex.ru>
6704         * emacs-lisp/lisp.el (lisp-completion-at-point): Only calculate
6705         `table-etc' when `end' is non-nil.
6706         (lisp-completion-at-point): Move `end' back if it's after quote.
6707         If in comment or string, only complete when after backquote.
6708         (Bug#18265)
6709         (lisp-completion-at-point): Don't use
6710         `lisp--local-variables-completion-table' in the
6711         `lisp--form-quoted-p' case.
6713 2014-09-19  Dmitry Gutov  <dgutov@yandex.ru>
6715         * emacs-lisp/lisp.el (lisp--expect-function-p)
6716         (lisp--form-quoted-p): New functions.
6717         (lisp-completion-at-point): Use them to see if we're completing a
6718         variable reference, a function name, or just any symbol.
6719         http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00229.html
6721 2014-09-18  Ivan Kanis  <ivan@kanis.fr>
6723         * net/shr.el, net/eww.el: Don't override `shr-width', but
6724         introduce a new variable `shr-internal-width'.  This allows users
6725         to specify a width themselves.
6727 2014-09-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
6729         * image-mode.el (image-toggle-display-image): If we have a
6730         `fit-width' or a `fit-height', don't limit the size of the image
6731         to the window size, because that doesn't preserve the aspect ratio.
6732         * image-mode.el: Move defvars earlier to avoid a byte-compilation
6733         warning.
6735 2014-09-17  Reuben Thomas  <rrt@sc3d.org>
6737         * progmodes/js.el: Add interpreter-mode-alist support for various
6738         JavaScript interpreters.
6740 2014-09-17  Paul Eggert  <eggert@cs.ucla.edu>
6742         Don't assume 'grep' supports GREP_OPTIONS.
6743         The GREP_OPTIONS environment variable is planned to be marked
6744         obsolescent in GNU grep, due to problems in its use, so stop
6745         relying on it.
6746         * progmodes/grep.el (grep-highlight-matches): Document this.
6747         (grep-process-setup): Do not set GREP_OPTIONS.
6748         (grep-compute-defaults): Use an explicit --color option if supported.
6750 2014-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
6752         * msb.el (msb--make-keymap-menu, msb-menu-bar-update-buffers):
6753         Don't add outdated key-shortcut cache (bug#18482).
6755 2014-09-15  Glenn Morris  <rgm@gnu.org>
6757         * image.el (image-multi-frame-p): Fix thinko - do not force
6758         a delay if none was specified.  (Bug#18334)
6760 2014-09-15  Kan-Ru Chen  <kanru@kanru.info>
6762         * window.el (fit-window-to-buffer): Doc fix.
6764 2014-09-15  Ivan Shmakov  <ivan@siamics.net>
6766         * desktop.el (desktop-create-buffer): Check that buffers are still live
6767         before burying them (bug#18373).
6769 2014-09-15  Glenn Morris  <rgm@gnu.org>
6771         * calendar/diary-lib.el (diary-list-entries):
6772         Restore 24.3 display behavior.  (Bug#18381)
6774 2014-09-15  Eli Zaretskii  <eliz@gnu.org>
6776         * mouse.el (mouse-drag-line): On text-mode frames, count the mode
6777         line and header line as 1 pixel.  This fixes the 1-"pixel" (row)
6778         discrepancy between window-pixel-edges and mouse events, and
6779         avoids moving mode line up when the mouse click is on the modeline
6780         and no drag is attempted.
6782 2014-09-14  Daniel Colascione  <dancol@dancol.org>
6784         * register.el (insert-register): Change default interactive
6785         insertion mode.
6787 2014-09-14  Michael Albinus  <michael.albinus@gmx.de>
6789         * net/tramp-cache.el (tramp-flush-file-function): Simplify check.
6790         Suppress debug messages.
6792         * net/tramp.el (tramp-file-name-handler):
6793         * net/tramp-gvfs.el (tramp-gvfs-url-file-name): Apply `cons' where
6794         appropriate.
6796 2014-09-13  Christopher Schmidt  <ch@ristopher.com>
6798         * calendar/calendar.el (calendar-update-mode-line):
6799         Do not overwrite mode-line-format if calendar-mode-line-format is
6800         nil.  (Bug#18467)
6802 2014-09-13  Leo Liu  <sdl.web@gmail.com>
6804         * emacs-lisp/pcase.el (pcase--dontwarn-upats): New var.
6805         (pcase--expand): Use it.
6806         (pcase-exhaustive): New macro.  (Bug#16567)
6808         * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
6809         Add pcase-exhaustive.
6811 2014-09-13  Eli Zaretskii  <eliz@gnu.org>
6813         * mail/rmailmm.el (rmail-mime-insert-html): Decode the HTML part
6814         using the specified transfer-encoding, if any, or 'undecided'.
6815         (rmail-mime-render-html-shr): Bind shr-width to nil, so lines are
6816         broken at the window margin.
6818 2013-12-27  Ken Olum  <kdo@cosmos.phy.tufts.edu>
6820         Support rendering of HTML parts in Rmail (bug#4258).
6821         * mail/rmailmm.el (rmail-mime-process): Handle text/html
6822         separately from other text/ types.  Suppress tagline for
6823         multipart body.
6824         (rmail-mime-parse): Don't change visibility of tagline here.
6825         (rmail-mime-set-bulk-data, rmail-mime-insert-bulk):
6826         Handle text/html specially.
6827         (rmail-mime-render-html-function,rmail-mime-prefer-html): New variables.
6828         (rmail-mime-insert-html, rmail-mime-render-html-shr)
6829         (rmail-mime-render-html-lynx): New functions.
6830         (rmail-mime-fix-inserted-faces): New function.
6831         (rmail-mime-process-multipart): Find the best part to show
6832         following rmail-mime-prefer-html if set.
6833         (rmail-mime-searching): New variable.
6834         (rmail-search-mime-message): Bind rmail-mime-searching to
6835         suppress rendering while searching.
6837 2014-09-12  Sam Steingold  <sds@gnu.org>
6839         * progmodes/sql.el (sql-product-alist): Add vertica.
6840         (sql-vertica-program, sql-vertica-options)
6841         (sql-vertica-login-params, sql-comint-vertica, sql-vertica):
6842         New functions and variables to support Vertica.
6843         Inspired by code by Roman Scherer <roman@burningswell.com>.
6845 2014-09-11  Paul Eggert  <eggert@cs.ucla.edu>
6847         * ses.el (ses-file-format-extend-parameter-list): Rename from
6848         ses-file-format-extend-paramter-list, to correct a misspelling.
6849         All uses changed.
6851 2014-09-10  Alan Mackenzie  <acm@muc.de>
6853         CC Mode: revert recent changes and fix bug 17463 (cc-langs.elc
6854         gets loaded at run-time).
6855         * progmodes/cc-langs.el (c-no-parens-syntax-table): Rename the
6856         c-lang-const to c-make-no-parens-syntax-table and correct the
6857         logic.
6858         (c-no-parens-syntax-table): Correct the logic of the
6859         c-lang-defvar.
6861 2014-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
6863         CC-mode: Set open-paren-in-column-0-is-defun-start to nil;
6864         plus misc cleanup.
6865         * progmodes/cc-mode.el (c-basic-common-init):
6866         Set open-paren-in-column-0-is-defun-start.
6867         (adaptive-fill-first-line-regexp, font-lock-syntactic-keywords):
6868         Remove declarations, unused.
6869         (run-mode-hooks): Remove declaration.
6870         (font-lock-defaults): Use plain `defvar' to declare.
6871         (c-run-mode-hooks): Test existence of run-mode-hooks with fboundp.
6872         * progmodes/cc-langs.el (c-filter-ops): Avoid `setq'.
6873         (c-make-mode-syntax-table): Don't micro-optimize.
6874         (c-keywords, c-keyword-member-alist): Simplify.
6875         (c-kwds-lang-consts): Don't eval at compile-time.
6876         (c-primary-expr-regexp): Comment out unused vars.
6877         * progmodes/cc-fonts.el (c-font-lock-context): Declare at top-level.
6878         (c-font-byte-compile): New var.
6879         (c--compile): New function.  Use it instead of `byte-compile'.
6880         (c-cpp-matchers): Quote the value returned by
6881         `c-make-syntactic-matcher' in case it's not self-evaluating.
6882         (c-basic-matchers-before): Avoid a plain MATCHER as keyword, wrap it in
6883         parentheses instead (in case MATCHER happens to be a list).
6884         (c-font-lock-enum-tail): Remove unused var `start'.
6885         (c-font-lock-objc-methods): Silence byte-compiler warnings.
6886         * progmodes/cc-engine.el (c-syntactic-re-search-forward): Sink an `if'
6887         test into an argument.
6888         * progmodes/cc-defs.el (c-point, c-major-mode-is, c-put-char-property)
6889         (c-get-char-property): Don't use `eval' just to unquote a constant.
6890         (c-use-extents): Remove.  Use (featurep 'xemacs), compiled
6891         more efficiently.
6892         (c-put-char-property-fun): Don't call `byte-compile' by hand.
6893         (c-clear-char-property, c-clear-char-properties): Check that `property'
6894         is a quoted constant.
6895         (c-emacs-features): Remove `infodock', `syntax-properties', and
6896         `pps-extended-state' (never used), `8-bit' and `1-bit' (use (featurep
6897         'xemacs) instead).  Use `with-temp-buffer' and let-bind vars after
6898         changing buffer, so we don't have to setq them again afterwards.
6899         (c-lang-const): Remove redundant symbolp assertions.
6900         (c-find-assignment-for-mode): Use `or'.
6901         * Makefile.in (compile-one-process): Remove cc-mode dependency.
6903 2014-09-09  Sam Steingold  <sds@gnu.org>
6905         * progmodes/sql.el (sql-default-directory): Fix type annotation.
6907 2014-09-09  Stefan Monnier  <monnier@iro.umontreal.ca>
6909         * progmodes/cc-awk.el: Remove unneeded cc-bytecomp use.
6910         Change doc comments into docstrings.
6911         * Makefile.in: Remove cc-awk dependency.
6913 2014-09-08  Sam Steingold  <sds@gnu.org>
6915         * progmodes/sql.el (sql-send-line-and-next): New command,
6916         bound to C-c C-n.
6917         (sql-show-sqli-buffer): Display the buffer instead of its name and
6918         bind the command to C-c C-z.
6919         (sql-default-directory): New user option.
6920         (sql-product-interactive): Bind `default-directory' to it to
6921         enable remote connections using Tramp.
6922         (sql-set-sqli-buffer): Call `sql-product-interactive' when no
6923         suitable buffer is available.
6925 2014-09-08  Glenn Morris  <rgm@gnu.org>
6927         * calendar/calendar.el (calendar-basic-setup):
6928         Fix calendar-view-holidays-initially-flag and fancy display.
6929         * calendar/diary-lib.el (diary-live-p): Doc fix.
6931         * calendar/calendar.el (calendar-basic-setup):
6932         Avoid clobbering calendar with diary.  (Bug#18381)
6934 2014-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
6936         * vc/vc-dir.el (vc-dir-update): Don't burp in corner case.
6938 2014-09-08  Lars Ljung  <lars@matholka.se>  (tiny change)
6940         * isearch.el (isearch-yank-word-or-char): Obey superword-mode
6941         as well (bug#18400).
6943 2014-09-08  Eli Zaretskii  <eliz@gnu.org>
6945         * subr.el (posn-actual-col-row): Doc fix.  (Bug#18385)
6947 2014-09-06  Leo Liu  <sdl.web@gmail.com>
6949         * emacs-lisp/pcase.el (pcase): Doc fix.
6950         (pcase--split-vector): New function.
6951         (pcase--q1): Support vector qpattern.  (Bug#18327)
6953 2014-09-05  Sam Steingold  <sds@gnu.org>
6955         * textmodes/tex-mode.el (tex-print-file-extension): New user
6956         option.
6957         (tex-print): Use it instead of the hard-coded string.
6959 2014-09-05  Michael Albinus  <michael.albinus@gmx.de>
6961         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
6962         Expand `default-directory'.
6964 2014-09-05  Martin Rudalics  <rudalics@gmx.at>
6966         * scroll-bar.el (horizontal-scroll-bars-available-p):
6967         New function.
6968         (horizontal-scroll-bar-mode): Rewrite using
6969         horizontal-scroll-bars-available-p.
6970         * menu-bar.el (menu-bar-showhide-scroll-bar-menu): Rewrite using
6971         horizontal-scroll-bars-available-p.
6973 2014-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
6975         * subr.el (call-process-shell-command, process-file-shell-command):
6976         Make the `args' obsolete (bug#18409).
6977         (start-process-shell-command, start-file-process-shell-command):
6978         Use `declare'.
6980 2014-09-05  Jay Belanger  <jay.p.belanger@gmail.com>
6982         * calc/calc-forms.el (math-normalize-hms): Do a better check for
6983         "negative" hms forms.
6985 2014-09-04  Rasmus Pank Roulund  <emacs@pank.eu>
6987         * vc/vc-git.el (vc-git-conflicted-files): Fix bug when git status
6988         returns nil (bug#18391).
6990 2014-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
6992         * emacs-lisp/eldoc.el (eldoc-function-argstring): Don't strip
6993         terminating paren (bug#18352).
6994         (eldoc-last-data-store): Return cached data.
6995         (eldoc-get-var-docstring): Avoid setq.
6996         (eldoc-get-fnsym-args-string): Clarify data flow.
6998 2014-09-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
7000         * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): Handle the
7001         case where we're currently providing part of the &rest arg after some
7002         &key args, as in define-ibuffer-op (bug#18048).
7004 2014-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7006         * progmodes/which-func.el (which-func-ff-hook): Obey pre-existing
7007         buffer-local setting of which-func-mode.
7008         (which-func-mode): Use defvar-local.
7009         (which-function-mode): Don't reset which-func-mode in each buffer since
7010         it might have been set by someone else.
7011         (which-func-update-ediff-windows): Check which-function-mode.
7013 2014-09-03  Martin Rudalics  <rudalics@gmx.at>
7015         * frame.el (frame-initialize): Remove horizontal-scroll-bars
7016         from frame-initial-frame-alist.
7017         * scroll-bar.el (previous-horizontal-scroll-bar-mode)
7018         (horizontal-scroll-bar-mode-explicit)
7019         (set-horizontal-scroll-bar-mode, get-horizontal-scroll-bar-mode)
7020         (toggle-horizontal-scroll-bar): Remove.
7021         (horizontal-scroll-bar-mode): Remove defcustom.
7022         (horizontal-scroll-bar-mode): Fix doc-string.
7023         (scroll-bar-toolkit-scroll)
7024         (scroll-bar-toolkit-horizontal-scroll): Add doc-strings stubs.
7026 2014-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7028         * emacs-lisp/package.el (package-generate-description-file):
7029         Properly quote the arguments (bug#18332).  Change second arg.
7030         (package--alist-to-plist-args): Rename from package--alist-to-plist and
7031         quote the elements.
7032         (package--make-autoloads-and-stuff): Fix the test for pre-existence of
7033         the *-pkg.el file.  Adjust to new calling convention of
7034         package-generate-description-file.
7036         * progmodes/gud.el (gud-gdb-completion-at-point): Add hack (bug#18282).
7037         (gud-gdb-completions): Remove obsolete workaround.
7039 2014-09-03  Eli Zaretskii  <eliz@gnu.org>
7041         * subr.el (posn-col-row): Revert the change from commit
7042         2010-11-13T21:07:58Z!eliz@gnu.org, which
7043         was inadvertently merged from emacs-23 release branch in 2010-11-18T03:54:14Z!monnier@iro.umontreal.ca
7044         monnier@iro.umontreal.ca-20101118035414-yvlg7k7dk4k4l3q, and
7045         introduced an off-by-one error in the reported row when there is a
7046         header line.  (Bug#18384)
7048 2014-09-03  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7050         * progmodes/python.el (python-indent-post-self-insert-function):
7051         Avoid electric colon at beginning-of-defun.  (Bug#18228)
7053 2014-09-03  Glenn Morris  <rgm@gnu.org>
7055         * tutorial.el (tutorial--display-changes):
7056         Fix 2014-08-01 change.  (Bug#18382)
7058 2014-09-03  Ken Brown  <kbrown@cornell.edu>
7060         * startup.el (fancy-splash-frame): Extend the fix for Bug#16014 to
7061         the Cygwin-w32 build.  (Bug#18347)
7063 2014-09-03  Glenn Morris  <rgm@gnu.org>
7065         * tar-mode.el (tar--extract, tar-extract):
7066         Avoid permanently disabling undo in extracted buffers.  (Bug#18344)
7068 2014-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
7070         * progmodes/sh-script.el (sh-font-lock-quoted-subshell): Try to better
7071         handle multiline elements (bug#18380).
7073 2014-09-01  Eli Zaretskii  <eliz@gnu.org>
7075         * ls-lisp.el (ls-lisp-use-string-collate)
7076         (ls-lisp-UCA-like-collation): New defcustoms.
7077         (ls-lisp-string-lessp): Use them to control sorting by file
7078         names.  (Bug#18051)
7079         (ls-lisp-version-lessp): New function.
7080         (ls-lisp-handle-switches): Use it to implement the -v switch of
7081         GNU ls.
7082         (ls-lisp--insert-directory): Mention the -v switch in the doc string.
7084 2014-08-31  Christoph Scholtes  <cschol2112@gmail.com>
7086         * ibuffer.el: Replace mode-specific quit function with
7087         `quit-window' via `special-mode'.
7088         (ibuffer-mode-map): Use keybindings from special-mode-map instead
7089         of local overrides.
7090         (ibuffer): Don't store previous windows configuration.
7091         Let `quit-window' handle restoring.
7092         (ibuffer-quit): Remove function.  Use `quit-window' instead.
7093         (ibuffer-restore-window-config-on-quit): Remove variable.
7094         (ibuffer-prev-window-config): Remove variable.
7096 2014-08-29  Michael Heerdegen  <michael_heerdegen@web.de>
7098         * emacs-lisp/easy-mmode.el (define-minor-mode): Use mode function
7099         name instead of variable name in hook docstring.  (Bug#18349)
7101 2014-08-29  Martin Rudalics  <rudalics@gmx.at>
7103         * window.el (display-buffer-at-bottom): Prefer bottom-left
7104         window to other bottom windows.  Reuse a bottom window if it
7105         shows the buffer already.  Suggested by Juri Linkov
7106         <juri@jurta.org> in discussion of (Bug#18181).
7108 2014-08-29  Leo Liu  <sdl.web@gmail.com>
7110         * files.el (minibuffer-with-setup-hook): Allow (:append FUN) to
7111         append to minibuffer-setup-hook.  (Bug#18341)
7113 2014-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7115         * progmodes/cc-defs.el: Expose c-lanf-defconst's expressions to the
7116         byte-compiler.
7117         (lookup-syntax-properties): Silence byte-compiler.
7118         (c-lang-defconst): Quote the code with `lambda' rather than with
7119         `quote'.
7120         (c-lang-const): Avoid unneeded setq.
7121         (c-lang-constants-under-evaluation): Add docstring.
7122         (c-lang--novalue): New constant.
7123         (c-find-assignment-for-mode): Use it instead of c-lang-constants.
7124         (c-get-lang-constant): Same here.
7125         Get the mode's value using `funcall' now that the code is quoted
7126         with `lambda'.
7128 2014-08-28  Michael Albinus  <michael.albinus@gmx.de>
7130         * net/tramp.el (tramp-handle-shell-command): Use `display-buffer'.
7131         (Bug#18326)
7133 2014-08-28  Martin Rudalics  <rudalics@gmx.at>
7135         * scroll-bar.el (scroll-bar-horizontal-drag-1): Handle new
7136         interpretation of `portion-whole'.
7138 2014-08-28  Michael Albinus  <michael.albinus@gmx.de>
7140         * net/tramp-adb.el: Spell author name correctly.
7142 2014-08-28  João Távora  <joaotavora@gmail.com>
7144         * net/shr.el (shr-expand-url): Plain expand-file-name is not enough;
7145         use url-expand-file-name.  (Bug#18310)
7147 2014-08-28  Glenn Morris  <rgm@gnu.org>
7149         * emulation/cua-rect.el (cua--highlight-rectangle):
7150         Avoid error at point-min.  (Bug#18309)
7152 2014-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
7154         * progmodes/python.el (python-shell-prompt-detect): Remove redundant
7155         executable-find (bug#18244).
7157         * simple.el (self-insert-uses-region-functions): Defvar.
7159 2014-08-28  Glenn Morris  <rgm@gnu.org>
7161         * subr.el (remq): Revert 2014-08-25 doc change (not always true).
7163 2014-08-27  Dmitry Antipov  <dmantipov@yandex.ru>
7165         * startup.el (normal-top-level): Now use internal--top-level-message.
7167 2014-08-26  Dmitry Antipov  <dmantipov@yandex.ru>
7169         * startup.el (normal-top-level): Use top-level-message.
7171 2014-08-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7173         * net/shr.el (shr-copy-url): Encode copied URL to avoid getting
7174         URLs containing spaces and the like.
7176 2014-08-25  Christoph Scholtes  <cschol2112@gmail.com>
7178         * subr.el (remq): Fix docstring (Bug#18253).
7180 2014-08-25  Christoph Scholtes  <cschol2112@gmail.com>
7182         * replace.el (query-replace): Fix typo in docstring (Bug#18320).
7184 2014-08-24  Alan Mackenzie  <acm@muc.de>
7186         Handle C++11's "auto" and "decltype" constructions.
7187         * progmodes/cc-engine.el (c-forward-type): Enhance to recognise
7188         and return 'decltype.
7189         (c-forward-decl-or-cast-1): New let variables backup-kwd-sym,
7190         prev-kwd-sym, new-style-auto.  Enhance to handle the new "auto"
7191         keyword.
7192         * progmodes/cc-fonts.el (c-font-lock-declarations): Handle the
7193         "decltype" keyword.
7194         (c-font-lock-c++-new): Handle "decltype" constructions.
7195         * progmodes/cc-langs.el (c-auto-ops, c-auto-ops-re):
7196         New c-lang-defconsts/defvars.
7197         (c-haskell-op, c-haskell-op-re): New c-lang-defconsts/defvars.
7198         (c-typeof-kwds, c-typeof-key): New c-lang-defconsts/defvars.
7199         (c-typeless-decl-kwds): Append "auto" onto the C++ value.
7200         (c-not-decl-init-keywords): Also exclude c-typeof-kwds from value.
7202         Make ">>" act as double template ender in C++ Mode.  (Bug#11386)
7203         * progmodes/cc-langs.el (c->-op-cont-tokens): New lang-const split
7204         off from c->-op-cont-re.
7205         (c->-op-cont-tokens): Change to use the above.
7206         (c->-op-without->-cont-regexp): New lang-const.
7207         * progmodes/cc-engine.el (c-forward-<>-arglist-recur):
7208         Use c->-op-without->-cont-regexp in place of c->-op-cont-tokens.
7211 2014-08-23  Alan Mackenzie  <acm@muc.de>
7213         * progmodes/cc-fonts.el (c-font-lock-declarators): Fix infinite
7214         loop, bug #18306.  The bug was introduced on 2014-08-02.
7216 2014-08-21  Eli Zaretskii  <eliz@gnu.org>
7218         * textmodes/texnfo-upd.el (texinfo-specific-section-type):
7219         Don't recognize a Top node if there are other sectioning commands
7220         earlier in the Texinfo file.  This fixes a bug in
7221         texinfo-make-menu and avoids inflooping in
7222         texinfo-all-menus-update when they are invoked on texinfo.texi.
7224 2014-08-21  Martin Rudalics  <rudalics@gmx.at>
7226         * window.el (window--side-window-p): New function.
7227         (split-window, window-splittable-p): Use window--side-window-p to
7228         determine whether WINDOW can be split (Bug#18304).
7229         * calendar/calendar.el (calendar-basic-setup): Fix one call of
7230         `window-splittable-p' and add another (Bug#18304).
7232 2014-08-20  Sam Steingold  <sds@gnu.org>
7234         * progmodes/python.el (python-new-pythonpath): Extract from
7235         `python-shell-calculate-process-environment'.
7237 2014-08-18  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
7239         * emacs-lisp/eldoc.el (eldoc-highlight-function-argument): Add support
7240         for &key args (bug#18048).
7242 2014-08-18  Stefan Monnier  <monnier@iro.umontreal.ca>
7244         * emacs-lisp/eldoc.el (eldoc-argument-case): Obsolete and change default.
7245         (eldoc-function-argstring-format): Remove.
7246         (eldoc-function-argstring): Always return upcase args.
7247         Use help-make-usage.  Don't add parens.
7248         (eldoc-get-fnsym-args-string): Don't obey eldoc-argument-case since
7249         it's too late to do it right (bug#18048).
7251 2014-08-18  Eli Zaretskii  <eliz@gnu.org>
7253         * scroll-bar.el (scroll-bar-horizontal-drag-1)
7254         (scroll-bar-toolkit-horizontal-scroll): When determining the
7255         paragraph direction, use the buffer of the window designated in
7256         the event.
7258 2014-08-16  Andreas Schwab  <schwab@linux-m68k.org>
7260         * vc/diff-mode.el (diff-fixup-modifs): Handle empty line in
7261         context of unified diff.
7263 2014-08-16  Paul Eggert  <eggert@cs.ucla.edu>
7265         Add dependencies to fix loaddefs race during parallel builds.
7266         Without this, for example, 'make -j bootstrap' can fail and report
7267         "Opening input file: no such file or directory,
7268         .../lisp/calendar/diary-loaddefs.el ... recipe for target
7269         'calendar/hol-loaddefs.el' failed", where the hol-loaddefs.el rule
7270         got confused because diary-loaddefs.el was being built in parallel.
7271         * Makefile.in ($(CAL_DIR)/diary-loaddefs.el):
7272         Depend on $(CAL_DIR)/cal-loaddefs.el.
7273         ($(CAL_DIR)/hol-loaddefs.el): Depend on $(CAL_DIR)/diary-loaddefs.el.
7275 2014-08-16  Martin Rudalics  <rudalics@gmx.at>
7277         * scroll-bar.el (scroll-bar-horizontal-drag-1): Use cdr of
7278         portion-whole for scrolling right-to-left text.
7280 2014-08-15  Leo Liu  <sdl.web@gmail.com>
7282         * speedbar.el (speedbar-generic-list-tag-p): Allow special
7283         elements from imenu.
7285 2014-08-15  Glenn Morris  <rgm@gnu.org>
7287         * subr.el (with-output-to-temp-buffer): Doc fix; from elisp manual.
7289 2014-08-13  Jan Nieuwenhuizen  <janneke@gnu.org>
7291         * progmodes/compile.el (compilation-error-regexp-alist-alist):
7292         Add Guile regexpses.
7294 2014-08-13  Jan Nieuwenhuizen  <janneke@gnu.org>
7296         * progmodes/gud.el (guiler): New function.  Starts the Guile REPL;
7297         add Guile debugger support for GUD.
7299 2014-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
7301         * obsolete/mouse-sel.el (mouse-sel-mode): Use add/remove-function.
7302         (mouse-sel--ignore): New function.
7303         (mouse-sel-has-been-enabled, mouse-sel-original-bindings)
7304         (mouse-sel-original-interprogram-cut-function)
7305         (mouse-sel-original-interprogram-paste-function): Remove.
7307 2014-08-13  Eric S. Raymond  <esr@thyrsus.com>
7309         * vc/vc-git.el (vc-git-resolve-when-done): New function.
7310         Call "git add" when there are no longer conflict markers.
7312 2014-08-13  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
7314         * vc/vc-git.el (vc-git-find-file-hook): New function.
7315         Adds support for calling smerge (and resolve) on a conflicted file.
7316         (vc-git-conflicted-files): New function.
7317         Useful in itself and a step towards better smerge support.
7319 2014-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7321         * mpc.el (mpc-reorder): Don't bother splitting the "active" elements
7322         to the first part if they're the same as the selection.
7324 2014-08-12  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7326         * image-mode.el (image-transform-reset): New command and menu item.
7327         (image-mode-map): Rearrange the menu items to put presumably more
7328         obscure items at the end.
7330 2014-08-12  Juri Linkov  <juri@jurta.org>
7332         * vc/vc-annotate.el (vc-annotate-background-mode):
7333         Use `with-demoted-errors' instead of `ignore-errors'.  (Bug#18189)
7335 2014-08-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7337         * files.el (out-of-memory-warning-percentage): Turn it off by default.
7339 2014-08-11  Sam Steingold  <sds@gnu.org>
7341         * textmodes/sgml-mode.el (sgml-validate-command): Set depending on
7342         the presence of known validators (tidy, (o)nsgmls).
7344 2014-08-11  Ulf Jasper  <ulf.jasper@web.de>
7346         Newsticker: introduce `newsticker-treeview-date-format'.  (Bug#17227)
7347         * net/newst-treeview.el (newsticker-treeview-date-format): New.
7348         (newsticker--treeview-list-add-item):
7349         Use `newsticker-treeview-date-format'.
7351 2014-08-11  Glenn Morris  <rgm@gnu.org>
7353         * files.el (basic-save-buffer-2): Revert 2013-01-31 change, which
7354         chose coding system for writing before backing up, since it causes
7355         a more serious problem than the one it solves.  (Closes Bug#18141,
7356         reopens Bug#13522.)
7358 2014-08-11  Martin Rudalics  <rudalics@gmx.at>
7360         * window.el (window-total-size): Make doc-string more self-contained.
7362         * window.el (display-buffer-below-selected): Restore original
7363         behavior if buffer is already displayed in the window below the
7364         selected one (Bug#18181).
7366 2014-08-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7368         * mouse.el (mouse--down-1-maybe-follows-link): Don't convert the down
7369         event (bug#18212).
7371 2014-08-11  Eli Zaretskii  <eliz@gnu.org>
7373         * info.el (info): Doc fix.
7375 2014-08-11  Stefan Monnier  <monnier@iro.umontreal.ca>
7377         * info.el (Info-mode-map): Override a global down-mouse-2 binding
7378         (bug#18212).
7380 2014-08-11  Eli Zaretskii  <eliz@gnu.org>
7382         * simple.el (default-line-height): A floating-point value of
7383         line-spacing means a fraction of the default frame font's height,
7384         not of the font currently used by the 'default' face.
7385         Truncate the pixel value, like the display engine does.
7386         (window-screen-lines): Use window-inside-pixel-edges for
7387         determining the window height in pixels.  (Bug#18195)
7389 2014-08-11  Grégoire Jadi  <daimrod@gmail.com>
7391         * leim/quail/latin-post.el: Transform " __" into " _".  (Bug#18023)
7393 2014-08-10  Ulf Jasper  <ulf.jasper@web.de>
7395         Enumerate evaluated sexp diary entries (Bug#7911).
7396         * calendar/icalendar.el (icalendar-export-sexp-enumerate-all)
7397         (icalendar-export-sexp-enumeration-days): New.
7398         (icalendar-export-region): Now `icalendar--convert-to-ical'
7399         returns a cons cell or a list of cons cells.
7400         (icalendar--convert-to-ical): Take care of
7401         `icalendar-export-sexp-enumerate-all'.  Return (a list of) cons cells.
7402         (icalendar--convert-ordinary-to-ical)
7403         (icalendar--convert-weekly-to-ical, icalendar--convert-yearly-to-ical)
7404         (icalendar--convert-block-to-ical, icalendar--convert-block-to-ical)
7405         (icalendar--convert-float-to-ical, icalendar--convert-cyclic-to-ical)
7406         (icalendar--convert-anniversary-to-ical): Return cons cell.
7407         (icalendar--convert-sexp-to-ical): Enumerate evaluated sexp
7408         entries.  Return (list of) cons cells.
7410 2014-08-09  Juri Linkov  <juri@jurta.org>
7412         * vc/vc-annotate.el (vc-annotate-background-mode): Add :set
7413         to reevaluate `vc-annotate-color-map'.  (Bug#18189)
7415 2014-08-09  Alan Mackenzie  <acm@muc.de>
7417         * progmodes/cc-fonts.el (c-font-lock-declarators): Remove check
7418         for top-level that can cause unacceptable slow-down in scrolling.
7419         See email Subject: Huge {...} blocks in C/C++ again, from Dmitry
7420         Antipov from 2013-10-14 in emacs-devel.
7422 2014-08-08  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
7424         * ibuffer.el (ibuffer-mode-map): Use toggle button for
7425         `ibuffer-auto-mode' menu entry.
7426         (ibuffer-mode-hook): Add `ibuffer-auto-mode' customization option.
7428 2014-08-08  Matthias Meulien  <orontee@gmail.com>
7430         * progmodes/prog-mode.el (prog-mode-hook): Make customizable.
7431         (Bug#16394)
7433 2014-08-07  Martin Rudalics  <rudalics@gmx.at>
7435         * window.el (window--min-size-1): Explicitly set WINDOW arg in
7436         calls of window-min-pixel-height and window-min-pixel-width.
7438 2014-08-07  Reuben Thomas  <rrt@sc3d.org>
7440         * progmodes/ada-mode.el:
7441         * net/tramp.el (tramp-handle-file-symlink-p):
7442         * net/tramp-ftp.el (tramp-ftp-file-name-handler): Remove a comment
7443         about VMS, which we no longer support.
7444         * progmodes/ada-xref.el (ada-xref-current): Remove mention of VMS,
7445         and fix a FIXME, using convert-standard-filename in place of
7446         removed ada-convert-file-name.
7448 2014-08-07  Eli Zaretskii  <eliz@gnu.org>
7450         * files.el (auto-mode-alist): Remove support for VMS from a pattern.
7452 2014-08-07  Reuben Thomas  <rrt@sc3d.org>
7454         Refer to MS-DOS using the same name everywhere.
7455         * arc-mode.el, files.el, frame.el: ``MS-DOG'', ``MSDOG'' and
7456         ``msdog'' become ``MS-DOS''.
7458 2014-08-07  Michael Albinus  <michael.albinus@gmx.de>
7460         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
7461         Use cached "remote-copy-args" value, if available.  (Bug#18199)
7463 2014-08-07  Leo Liu  <sdl.web@gmail.com>
7465         * help.el (temp-buffer-setup-hook,temp-buffer-show-hook):
7466         Revert change on 2014-03-22.
7468 2014-08-06  Ulf Jasper  <ulf.jasper@web.de>
7470         * calendar/icalendar.el (icalendar--diarytime-to-isotime)
7471         (icalendar--convert-ordinary-to-ical): Allow for missing minutes
7472         (Bug#13750).
7475 2014-08-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7477         * image-mode.el (image-toggle-display-image): Always rescale images
7478         to not be bigger than the current window.
7480 2014-08-05  Eric Brown  <brown@fastmail.fm>  (tiny change)
7482         * net/eww.el (eww-bookmarks-directory): New variable.
7483         (eww-write-bookmarks): Use it.
7484         (eww-read-bookmarks): Ditto.
7486 2014-08-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
7488         * net/shr.el (shr-copy-url): Also copy the image URL.
7490 2014-08-05  Michael Albinus  <michael.albinus@gmx.de>
7492         * net/tramp-cache.el (tramp-flush-file-function): Suppress function
7493         also for Tramp working buffers.
7495 2014-08-04  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7497         * progmodes/python.el: Fix completions inside (i)pdb.
7498         (python-shell-completion-pdb-string-code): Make obsolete.
7499         (python-shell-completion-get-completions):
7500         Use python-shell-completion-string-code resending setup code
7501         continuously for (i)pdb.
7503 2014-08-04  Paul Eggert  <eggert@cs.ucla.edu>
7505         * rect.el (rectangle--default-line-number-format): Rename
7506         from misspelled rectange--default-line-number-format (Bug#18045).
7507         All uses changed.
7509 2014-08-03  Paul Eggert  <eggert@cs.ucla.edu>
7511         Don't mishandle year-9999 dates (Bug#18176).
7512         * calendar/parse-time.el (parse-time-rules):
7513         Allow years up to most-positive-fixnum.
7514         * calendar/time-date.el (date-to-time):
7515         Pass "Specified time is not representable" errors through.
7517 2014-08-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7519         * progmodes/python.el: Completion code cleanups.
7520         (python-shell-completion-get-completions): Detect and send import
7521         statements directly to completion function.
7522         (python-shell-completion-at-point): Simplify prompt calculation
7523         and import vs input completion logic.
7525 2014-08-02  Alan Mackenzie  <acm@muc.de>
7527         Fix confusion in C++ file caused by comma in "= {1,2},".
7528         Bug #17756.
7529         * progmodes/cc-engine.el (c-beginning-of-statement-1): In checking
7530         for a statement boundary marked by "}", check there's no "="
7531         before the "{".
7532         (c-guess-basic-syntax CASE 9B): Call c-beginning-of-statement with
7533         non-nil `comma-delim' argument.
7534         * progmodes/cc-fonts.el (c-font-lock-declarators): Parse an
7535         initializer expression more accurately.
7537         Correct loop termination condition in c-syntactic-skip-backward.
7538         * progmodes/cc-engine.el (c-syntactic-skip-backward): Correct for
7539         the situation where, after moving back out of a literal,
7540         skip-chars-backward doesn't move further, yet checks have still to
7541         be done.
7543 2014-08-01  Eli Zaretskii  <eliz@gnu.org>
7545         * tutorial.el (tutorial--display-changes): Accept punctuation
7546         characters before the key binding.  (Bug#18146)
7548 2014-07-31  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7550         * progmodes/python.el: Shell output capture enhancements.
7551         (python-shell-accept-process-output): New function.
7552         (inferior-python-mode)
7553         (python-shell-send-setup-code): Use it.
7555 2014-07-30  Christophe Deleuze  <christophe.deleuze@free.fr>  (tiny change)
7557         * calendar/icalendar.el (icalendar--decode-isodatetime):
7558         Use actual current-time-zone when converting to local time.  (Bug#15408)
7560 2014-07-29  Martin Rudalics  <rudalics@gmx.at>
7562         * window.el (window--state-put-2): Handle horizontal scroll
7563         bars, if present.
7565 2014-07-29  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
7567         * menu-bar.el (menu-bar-update-buffers): Update item list format
7568         in `buffers-menu' to confirm with changes to `get_keyelt'
7569         (r117463).  (Bug#18016)
7571 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7573         * progmodes/python.el (inferior-python-mode): Make input prompts
7574         read-only.
7576 2014-07-28  Emilio C. Lopes  <eclig@gmx.net>
7578         * net/tramp-sh.el (tramp-get-remote-python): Also search for
7579         executables named "python2" or "python3".
7580         (tramp-get-remote-uid-with-python): Use parentheses around
7581         arguments to `print' to make it compatible with Python 3.
7582         (tramp-get-remote-gid-with-python): Ditto.  (Bug#18118)
7584 2014-07-28  Eli Zaretskii  <eliz@gnu.org>
7586         * window.el (window--pixel-to-total): Use FRAME's root window, not
7587         that of the selected frame.  (Bug#18112, Bug#16674)
7589 2014-07-28  Andreas Schwab  <schwab@linux-m68k.org>
7591         * textmodes/tex-mode.el (tex-font-lock-verb): Doc fix.
7592         (Bug#18117)
7594 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7596         * progmodes/python.el (inferior-python-mode): Doc fix.
7598 2014-07-28  Stephen Berman  <stephen.berman@gmx.net>
7600         * calendar/todo-mode.el (todo-edit-item--next-key): If next key is
7601         not a character, ignore it instead of raising an error.
7603         * calendar/todo-mode.el: Fix handling of marked items and make
7604         minor code improvements.
7605         (todo-edit-item): If there are marked items, ensure user can only
7606         invoke editing commands that work with marked items.
7607         (todo-edit-item--text): When there are marked items, make it a
7608         noop if invoked with point not on an item; otherwise, ensure it
7609         applies only to item at point.
7610         (todo-item-undone): If there are marked not-done items, return
7611         point to its original position before signaling user error.
7612         (todo--user-error-if-marked-done-item): New function.
7613         (todo-edit-item--header, todo-edit-item--diary-inclusion)
7614         (todo-item-done): Use it.
7616 2014-07-28  Glenn Morris  <rgm@gnu.org>
7618         * files.el (toggle-read-only): Re-add basic doc-string.
7619         * vc/vc-hooks.el (vc-toggle-read-only): Tweak obsolescence mesage.
7621         * progmodes/prolog.el (prolog-mode-keybindings-edit):
7622         Replace missing `switch-to-prolog' with `run-prolog'.
7623         (switch-to-prolog): Define as (obsolete) alias, as in 23.4.
7625 2014-07-28  Stephen Berman  <stephen.berman@gmx.net>
7627         * calendar/todo-mode.el (todo-set-top-priorities): Fix overwriting
7628         of file-wide setting when changing category-wide setting.
7630 2014-07-28  Stephen Berman  <stephen.berman@gmx.net>
7632         * doc-view.el (doc-view-open-text): Don't require that the
7633         document is saved in a file (e.g., email attachment).
7635 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7637         Parse completion input in a iPython friendly way.  (Bug#18084)
7638         * progmodes/python.el
7639         (python-shell-completion-at-point): Rename from
7640         python-shell-completion-complete-at-point.
7641         (inferior-python-mode): Use it.
7642         (python-completion-at-point): Rename from
7643         python-completion-complete-at-point.  Parse input up to first
7644         backward occurrence of whitespace, open-paren, close-paren or
7645         string delimiter.
7646         (python-mode): Use it.
7648 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7650         * progmodes/python.el
7651         (python-shell-with-shell-buffer): New macro.
7652         (python-shell-font-lock-get-or-create-buffer)
7653         (python-shell-font-lock-kill-buffer)
7654         (python-shell-font-lock-with-font-lock-buffer)
7655         (python-shell-font-lock-cleanup-buffer)
7656         (python-shell-font-lock-toggle): Use it.
7657         (python-shell-font-lock-turn-on)
7658         (python-shell-font-lock-turn-off): Use it.  Make command.
7660 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7662         Grab all Python process output before inferior-python-mode hooks.
7663         * progmodes/python.el (inferior-python-mode):
7664         Call accept-process-output and sit-for to ensure all output for process
7665         has been received before running hooks.
7666         (python-shell-internal-get-or-create-process):
7667         Cleanup accept-process-output and sit-for calls.
7669 2014-07-28  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7671         More robust shell startup and code setup.
7672         * progmodes/python.el (python-shell-make-comint):
7673         Remove accept-process-output call.
7674         (python-shell-get-buffer): Return current buffer if major-mode is
7675         inferior-python-mode.
7676         (python-shell-get-or-create-process): Use it.
7677         (python-shell-send-setup-code): Send all setup code in one string,
7678         output success message and accept-process-output.
7680 2014-07-27  Eli Zaretskii  <eliz@gnu.org>
7682         * scroll-bar.el (scroll-bar-toolkit-horizontal-scroll):
7683         Add rudimentary support for bidirectional text.
7685 2014-07-27  Martin Rudalics  <rudalics@gmx.at>
7687         * frame.el (frame-notice-user-settings): Rewrite using
7688         frame-initial-frame-tool-bar-height.
7689         * menu-bar.el (menu-bar-horizontal-scroll-bar)
7690         (menu-bar-no-horizontal-scroll-bar): New functions.
7691         (menu-bar-showhide-scroll-bar-menu): Add bindings for horizontal
7692         scroll bars.
7693         * scroll-bar.el (scroll-bar-lines)
7694         (set-horizontal-scroll-bar-mode)
7695         (get-horizontal-scroll-bar-mode, horizontal-scroll-bar-mode)
7696         (scroll-bar-horizontal-drag-1, scroll-bar-horizontal-drag)
7697         (scroll-bar-toolkit-horizontal-scroll): New functions.
7698         (horizontal-scroll-bar-mode)
7699         (previous-horizontal-scroll-bar-mode)
7700         (horizontal-scroll-bar-mode-explicit): New variables.
7701         (horizontal-scroll-bar-mode): New option.
7702         (toggle-horizontal-scroll-bar): Do something.
7703         (top-level): Bind horizontal-scroll-bar mouse-1.
7704         * startup.el (tool-bar-originally-present): Remove variable.
7705         (command-line): Don't set tool-bar-originally-present.
7706         * window.el (window-min-height): Update doc-string.
7707         (window--dump-frame): Dump horizontal scroll bar values.
7708         (window--min-size-1): Handle minibuffer window separately.
7709         Count in margins and horizontal scroll bar.  Return safe value
7710         iff IGNORE equals 'safe.
7711         (frame-windows-min-size): New function (used by frame resizing
7712         routines).
7713         (fit-frame-to-buffer, fit-window-to-buffer): Count in horizontal
7714         scroll bars.
7715         (window--sanitize-window-sizes): New function.
7716         (window-split-min-size): Remove.
7717         (split-window): Count divider-width.  Don't use
7718         `window-split-min-size' any more.  Reword error messages.
7719         Sanitize windows sizes after splitting.
7721 2014-07-27  Thien-Thi Nguyen  <ttn@gnu.org>
7723         Use `defvar-local' more.
7724         * progmodes/hideshow.el
7725         (hs-c-start-regexp, hs-block-start-regexp)
7726         (hs-block-start-mdata-select, hs-block-end-regexp)
7727         (hs-forward-sexp-func, hs-adjust-block-beginning): ...here;
7728         remove corresponding `make-variable-buffer-local' top-level calls.
7730 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7732         Cleanup error signals.  (Bug#18067)
7733         * progmodes/python.el
7734         (python-indent-shift-left): Use user-error instead.
7735         (python-shell-prompt-detect): Use lwarn with python group.
7736         (python-completion-complete-at-point)
7737         (python-eldoc--get-doc-at-point): Don't signal error.
7739 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7741         Support for packages in Python shell.  (Bug#13570)
7742         * progmodes/python.el (python-shell--package-depth): New var.
7743         (python-shell-package-enable): New command.
7744         (python-util-list-directories, python-util-list-files)
7745         (python-util-list-packages): New functions.
7747 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7749         Faster comint output.  (Bug#16875)
7750         * progmodes/python.el:
7751         (python-comint-output-filter-function): Make obsolete.
7752         (python-comint-postoutput-scroll-to-bottom): New function.
7753         (inferior-python-mode): Set comint-output-filter-functions to a
7754         minimum.
7756 2014-07-27  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7758         * progmodes/python.el (python-shell-font-lock-post-command-hook):
7759         Safeguard current point and undo history.
7761 2014-07-26  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7763         Robust shell syntax highlighting.  (Bug#18084, Bug#16875)
7764         * progmodes/python.el:
7765         (python-shell-prompt-input-regexps): Add iPython block prompt.
7766         (python-shell-output-syntax-table): Delete var.
7767         (python-shell-font-lock-with-font-lock-buffer): New macro.
7768         (python-shell-font-lock-get-or-create-buffer)
7769         (python-shell-font-lock-kill-buffer)
7770         (python-shell-font-lock-cleanup-buffer)
7771         (python-shell-font-lock-post-command-hook)
7772         (python-shell-font-lock-turn-off): New functions.
7773         (python-shell-font-lock-turn-on): New function.
7774         (inferior-python-mode): Use it.
7775         (python-shell-font-lock-toggle): New command.
7776         (python-shell-font-lock-enable): Rename from
7777         python-shell-enable-font-lock.
7778         (run-python-internal): Use it.
7779         (python-shell-font-lock-comint-output-filter-function): New function.
7780         (python-shell-comint-end-of-output-p): New function.
7781         (python-shell-output-filter): Use it.
7782         (python-util-comint-last-prompt): New function.
7783         (python-util-text-properties-replace-name): New function.
7785 2014-07-25  Glenn Morris  <rgm@gnu.org>
7787         * vc/ediff-init.el (ediff-toggle-read-only-function):
7788         * vc/ediff-util.el (ediff-toggle-read-only):
7789         Replace obsolete toggle-read-only with read-only-mode.
7791 2014-07-24  Michael Albinus  <michael.albinus@gmx.de>
7793         * net/tramp-cache.el (tramp-flush-file-function): Wrap the code
7794         with `save-match-data'.  (Bug#18095)
7796 2014-07-21  Vincent Belaïche  <vincentb1@users.sourceforge.net>
7798         * ses.el (ses-truncate-cell): Use cl-progv instead of eval in
7799         order to ensure that row and col are lexically bound inside the
7800         evaluated sexp.
7802 2014-07-21  Glenn Morris  <rgm@gnu.org>
7804         * progmodes/hideif.el (hide-ifdef-mode-submap):
7805         Also substitute read-only-mode.
7806         * bindings.el (mode-line-toggle-read-only):
7807         * bs.el (bs-toggle-readonly):
7808         * buff-menu.el (Buffer-menu-toggle-read-only):
7809         * dired.el (dired-toggle-read-only):
7810         * files.el (view-read-only, find-file-read-only)
7811         (find-file-read-only-other-window)
7812         (find-file-read-only-other-frame):
7813         * progmodes/hideif.el (hide-ifdef-toggle-outside-read-only):
7814         Doc fixes re toggle-read-only.
7816 2014-07-21  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7818         * progmodes/python.el: Add comment about pipe buffering and
7819         solutions for missing/delayed output in inferior Python shells.
7820         (Bug#17304)
7822         * progmodes/python.el (python-mode): Don't set
7823         mode-require-final-newline.  (Bug#17990)
7825         Make python.el work with IPython automatically.  (Bug#15510)
7826         * progmodes/python.el:
7827         (python-shell-completion-setup-code): New value supporting iPython.
7828         (python-shell-completion-string-code): New value supporting iPython.
7829         (python-shell-completion-get-completions): Use them.
7830         (python-shell-completion-module-string-code): Make obsolete.
7831         (python-shell-prompt-input-regexps)
7832         (python-shell-prompt-output-regexps): Add safeguard for ipdb.
7833         (python-shell-output-filter): Fix comment typo.
7835         Fix Python shell prompts detection for remote hosts.
7836         * progmodes/python.el (python-shell-prompt-detect):
7837         Replace call-process with process-file and make it more robust.
7839         Autodetect Python shell prompts.  (Bug#17370)
7840         * progmodes/python.el:
7841         (python-shell-interpreter-interactive-arg)
7842         (python-shell-prompt-detect-enabled)
7843         (python-shell-prompt-detect-failure-warning)
7844         (python-shell-prompt-input-regexps)
7845         (python-shell-prompt-output-regexps): New vars.
7846         (python-shell-prompt-calculated-input-regexp)
7847         (python-shell-prompt-calculated-output-regexp): New vars.
7848         (python-shell-get-process-name)
7849         (python-shell-internal-get-process-name)
7850         (python-shell-output-filter)
7851         (python-shell-completion-get-completions): Use them.
7852         (python-shell-prompt-detect)
7853         (python-shell-prompt-validate-regexps): New functions.
7854         (python-shell-prompt-set-calculated-regexps): New function.
7855         (inferior-python-mode): Use it.  Also honor overriden
7856         python-shell-interpreter and python-shell-interpreter-args.
7857         (python-shell-make-comint): Honor overriden
7858         python-shell-interpreter and python-shell-interpreter-args.
7859         (python-shell-get-or-create-process): Make it testable by allowing
7860         to call run-python non-interactively.
7861         (python-util-valid-regexp-p): New function.
7862         (python-shell-prompt-regexp, python-shell-prompt-block-regexp)
7863         (python-shell-prompt-output-regexp)
7864         (python-shell-prompt-pdb-regexp): Use it as defcustom :safe.
7866 2014-07-21  Stefan Monnier  <monnier@iro.umontreal.ca>
7868         * emacs-lisp/smie.el (smie-config--guess-1): Split from
7869         smie-config--guess.
7870         (smie-config--guess): Use it.
7872         * emacs-lisp/edebug.el: Use nadvice.
7873         (edebug-original-read): Remove.
7874         (edebug--read): Rename from edebug-read and add `orig' arg.
7875         (edebug-uninstall-read-eval-functions)
7876         (edebug-install-read-eval-functions): Use nadvice.
7877         (edebug-read-sexp, edebug-read-storing-offsets, edebug-read-symbol)
7878         (edebug-read-and-maybe-wrap-form1, edebug-instrument-callee)
7879         (edebug-read-string, edebug-read-function): Use just `read'.
7880         (edebug-original-debug-on-entry): Remove.
7881         (edebug--debug-on-entry): Rename from edebug-debug-on-entry and add
7882         `orig' arg.
7883         (debug-on-entry): Override with nadvice.
7885         * mouse.el (tear-off-window): Rename from mouse-tear-off-window since
7886         it also makes sense to bind it to a non-mouse event.
7888         * vc/vc-bzr.el (vc-bzr-shelve): Make it operate on fileset.
7890 2014-07-19  Stefan Monnier  <monnier@iro.umontreal.ca>
7892         * xt-mouse.el (xterm-mouse-event): Don't assume last-click is non-nil
7893         (bug#18015).
7895         * rect.el (rectangle--string-preview): Don't assume there
7896         a non-nil default (bug#17984).
7898 2014-07-16  Glenn Morris  <rgm@gnu.org>
7900         * desktop.el (after-init-hook): Disable startup frame restoration
7901         in non-graphical situations.  (Bug#17693)
7903         * vc/vc-dispatcher.el (vc-log-edit): Do set up the log buffer
7904         if it was "empty", or used for a different set of files.  (Bug#17884)
7906 2014-07-16  Eli Zaretskii  <eliz@gnu.org>
7908         * bindings.el (mode-line-remote): If default-directory is not a
7909         string, don't call file-remote-p on it; instead state in the
7910         help-echo that it is nil.  (Bug#17986)
7912 2014-07-14  Daniel Colascione  <dancol@dancol.org>
7914         * progmodes/cc-langs.el: Change comments from `cl-macroexpand-all'
7915         to `macroexpand-all'
7917         * progmodes/cc-defs.el (c-lang-defconst-eval-immediately):
7918         Use `macroexpand-all' instead of `cl-macroexpand-all'.
7920 2014-07-12  Paul Eggert  <eggert@cs.ucla.edu>
7922         Fix bug: C-x v v discarded existing log message (Bug#17884).
7923         * vc/vc-dispatcher.el (vc-log-edit):
7924         Don't clobber an already-existing log message.
7926 2014-07-12  Glenn Morris  <rgm@gnu.org>
7928         * vc/log-edit.el (log-edit-changelog-entries):
7929         Check for a visited-but-never-saved ChangeLog.
7931 2014-07-12  Stefan Monnier  <monnier@iro.umontreal.ca>
7933         * vc/log-edit.el (log-edit-changelog-entries): Don't both visiting
7934         a non-existing file (bug#17970).
7936         * faces.el (face-name): Undo last change.
7937         (x-resolve-font-name): Don't call face-name (bug#17956).
7939 2014-07-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
7941         Fix dedenters and electric colon handling.  (Bug#15163)
7942         * progmodes/python.el
7943         (python-rx-constituents): Add dedenter and block-ender.
7944         (python-indent-dedenters, python-indent-block-enders): Delete.
7945         (python-indent-context): Return new case for dedenter-statement.
7946         (python-indent-calculate-indentation): Handle new case.
7947         (python-indent-calculate-levels): Fix levels calculation for
7948         dedenter statements.
7949         (python-indent-post-self-insert-function): Fix colon handling.
7950         (python-info-dedenter-opening-block-message): New function.
7951         (python-indent-line): Use it.
7952         (python-info-closing-block)
7953         (python-info-closing-block-message): Remove.
7954         (python-info-dedenter-opening-block-position)
7955         (python-info-dedenter-opening-block-positions)
7956         (python-info-dedenter-statement-p): New functions.
7958 2014-07-11  Dmitry Antipov  <dmantipov@yandex.ru>
7960         * files.el (out-of-memory-warning-percentage): New defcustom.
7961         (warn-maybe-out-of-memory): Use it.
7963 2014-07-11  Michael Albinus  <michael.albinus@gmx.de>
7965         * subr.el (read-passwd): Use `read-hide-char' if non-nil.  Bind it
7966         when calling `read-string'.  (Bug#17839)
7968 2014-07-10  Eli Zaretskii  <eliz@gnu.org>
7970         * files.el (warn-maybe-out-of-memory): Fix the wording of the
7971         warning.
7973 2014-07-10  Dmitry Antipov  <dmantipov@yandex.ru>
7975         * files.el (warn-maybe-out-of-memory): New function.
7976         (find-file-noselect): Use it.
7978 2014-07-09  Sam Steingold  <sds@gnu.org>
7980         * progmodes/cperl-mode.el (cperl-block-p): Treat the perl keyword
7981         `constant' like `bless', `return' &c
7983 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7985         * rect.el (apply-on-rectangle): Check forward-line really moved to the
7986         next line.
7988 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
7990         * progmodes/sh-script.el (sh-smie-sh-rules): Don't align with a && in
7991         the middle of a line (bug#17896).
7993 2014-07-09  Juri Linkov  <juri@jurta.org>
7995         * startup.el (command-line): Append displaying the warning about
7996         the errors in the init file to the end of `after-init-hook'.
7997         (Bug#17927)
7999         * faces.el (face-name): Return input arg `face' as-is
8000         when it's not a symbol.
8001         (x-resolve-font-name): Don't check if the face is a symbol.
8002         (Bug#17956)
8004         * facemenu.el (list-colors-print): In help-echo format use %.2f
8005         instead of %d because now HSV values are floating-point components
8006         between 0.0 and 1.0.
8008 2014-07-09  Glenn Morris  <rgm@gnu.org>
8010         * emulation/cua-rect.el (cua--activate-rectangle):
8011         Avoid setting cua--rectangle to nil.  (Bug#17877)
8013 2014-07-09  Stephen Berman  <stephen.berman@gmx.net>
8015         * calendar/todo-mode.el: Fix wrong-type-argument error when
8016         marking multiple consecutive items.
8017         (todo-toggle-mark-item): Don't try to mark the empty lines at the
8018         end of the todo and done items sections.  Note in doc string that
8019         items marked by passing a numeric prefix argument can include the
8020         last todo and first done items.
8021         (todo-mark-category): Don't try to mark the empty line between the
8022         todo and done items sections.
8024 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8026         * emacs-lisp/edebug.el (edebug-eval-defun): Print result using
8027         proper Lisp quoting (bug#17934).
8029         * progmodes/ruby-mode.el (ruby-mode-variables): Don't meddle with
8030         require-final-newline since prog-mode already took care of it (bug#17947).
8032 2014-07-09  Stephen Berman  <stephen.berman@gmx.net>
8034         * calendar/todo-mode.el: Fix two bugs.  Shorten Commentary and
8035         refer to the Todo mode Info manual.  Update the comment on
8036         requiring cl-lib.
8037         (todo-find-filtered-items-file): Add todo-prefix overlays.
8038         (todo-filter-items): Reorder a let-bound variable to avoid a
8039         wrong-type-argument error on canceling the file choice dialog.
8041 2014-07-09  Stefan Monnier  <monnier@iro.umontreal.ca>
8043         * progmodes/octave.el (inferior-octave-mode):
8044         Set comint-input-ring-size to a number (bug#17912).
8046 2014-07-09  Juri Linkov  <juri@jurta.org>
8048         * desktop.el (desktop-minor-mode-table): Add `defining-kbd-macro'
8049         and `isearch-mode' associated with nil.  (Bug#17849)
8051 2014-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
8053         * linum.el (linum--face-height): New function (bug#17813).
8054         (linum-update-window): Use it to adjust margin to linum's width.
8056         * leim/quail/sisheng.el (sisheng-list): Don't bother with-case-table.
8057         * eshell/em-smart.el (eshell-smart-scroll-window):
8058         Use with-selected-window.
8060         * xt-mouse.el (xterm-mouse-translate-1): Intern drag event (bug#17894).
8061         Remove also pointless window&mark manipulation.
8063         * progmodes/perl-mode.el: Use syntax-ppss; fix one indentation case.
8064         (perl-indent-line): Use syntax-ppss to detect we're in a doc-section.
8065         (perl-continuation-line-p): Don't skip over anything else than labels.
8066         Return the previous char.
8067         (perl-calculate-indent): Use syntax-ppss instead of parse-start
8068         and update callers accordingly.  For continuation lines, check the
8069         the case of array hashes.
8070         (perl-backward-to-noncomment): Make it non-interactive.
8071         (perl-backward-to-start-of-continued-exp): Rewrite.
8073 2014-07-08  Sam Steingold  <sds@gnu.org>
8075         * progmodes/inf-lisp.el (lisp-eval-paragraph, lisp-eval-form-and-next):
8076         New user commands.
8078 2014-07-08  Juri Linkov  <juri@jurta.org>
8080         * vc/vc-annotate.el (vc-annotate-background-mode): New defcustom.
8081         (vc-annotate-color-map): Use less saturated colors (20%) for
8082         background-mode.
8083         (vc-annotate-very-old-color): Add default value for background-mode.
8084         (vc-annotate-background): Set default value to nil since now text on
8085         the default backgrounds should be legible in light and dark modes.
8086         (vc-annotate-lines): Use `vc-annotate-background-mode'.  Doc fix.
8087         (Bug#17808)
8089 2014-07-08  Juri Linkov  <juri@jurta.org>
8091         * simple.el (transpose-chars): Don't move point into read-only area.
8092         (Bug#17829)
8094 2014-07-08  Juri Linkov  <juri@jurta.org>
8096         * window.el (with-displayed-buffer-window): New macro.
8097         (with-temp-buffer-window, with-current-buffer-window):
8098         Use `macroexp-let2' to evaluate and bind variables
8099         in the same order as macro arguments.
8100         (display-buffer--action-function-custom-type):
8101         Add `display-buffer-below-selected' and `display-buffer-at-bottom'.
8103         * minibuffer.el (minibuffer-completion-help): Replace
8104         `with-output-to-temp-buffer' with `with-displayed-buffer-window'
8105         with actions that display *Completions* at-bottom when called
8106         from the minibuffer, or below-selected in a normal buffer.
8107         Associate `window-height' with `fit-window-to-buffer'.
8108         Let-bind `pop-up-windows' to nil.
8110         * dired.el (dired-mark-pop-up): Use `with-displayed-buffer-window'
8111         instead of `with-current-buffer-window'.  (Bug#17809)
8113 2014-07-07  Luke Lee  <luke.yx.lee@gmail.com>
8115         * progmodes/hideif.el (hide-ifdef-env): Change to global.
8116         (hide-ifdef-env-backup): New variable.
8117         (hide-ifdef-expand-reinclusion-protection, hide-ifdef-header-regexp):
8118         New customizable variables.
8119         (hif-clear-all-ifdef-defined): New defun.
8120         (hif-merge-ifdef-region, hide-ifdef-region-internal, hide-ifdef-region)
8121         (hif-show-ifdef-region): Merge hidden regions to prevent continuous "...".
8122         (hif-tokenize): Fix for MS-DOS/Win EOL style.
8123         (hif-endif-to-ifdef, hif-make-range, hif-find-range, hif-possibly-hide):
8124         Fix bug to hide the correct #elif region(s).
8125         (hif-range-elif): New defun.
8126         (hif-recurse-level): New var.
8127         (hif-evaluate-region, hif-evaluate-macro): New defun.
8128         (hide-ifdef-guts): Prevent reinclusion protected C/C++ headers from
8129         fully hidden.
8130         (hide-ifdef-define, hide-ifdefs, hide-ifdef-block, show-ifdef-block):
8131         Better interaction.
8133 2014-07-04  Michael Albinus  <michael.albinus@gmx.de>
8135         * net/dbus.el (dbus-peer-handler): New defun.
8136         (dbus-register-service): Register it.  (Bug#17858)
8137         (dbus-managed-objects-handler): Fix docstring.
8139 2014-07-04  Phil Sainty  <psainty@orcon.net.nz>
8141         * emacs-lisp/lisp.el (narrow-to-defun-include-comments): New var.
8142         (narrow-to-defun): New arg include-comments, defaulting to it
8143         (bug#16328).
8145 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8147         * rect.el (rectangle--highlight-for-redisplay): Don't pass `orig' with
8148         different calling convention to rectangle--unhighlight-for-redisplay.
8150 2014-07-03  Michael Albinus  <michael.albinus@gmx.de>
8152         * net/tramp.el (tramp-call-process): Handle error strings.
8154         * net/tramp-adb.el (tramp-adb-sh-fix-ls-output): Use `bolp'.
8156         * net/tramp-sh.el (tramp-sh-handle-set-visited-file-modtime)
8157         (tramp-sh-handle-verify-visited-file-modtime): Use `point-at-eol'.
8159         * net/trampver.el: Update release number.
8161 2014-07-03  Juri Linkov  <juri@jurta.org>
8163         * desktop.el (desktop-save): Rename arg `auto-save' to
8164         `only-if-changed'.  Doc fix.  (Bug#17873)
8166 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8168         * mouse.el (mouse-yank-primary, mouse-yank-secondary):
8169         Use insert-for-yank (bug#17271).
8171 2014-07-03  Leo Liu  <sdl.web@gmail.com>
8173         * emacs-lisp/pp.el (pp-eval-expression, pp-eval-last-sexp):
8174         Support lexical-binding.
8176 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8178         * vc/log-edit.el (log-edit-goto-eoh): New function.
8179         (log-edit--match-first-line): Use it (bug#17861).
8181 2014-07-03  Glenn Morris  <rgm@gnu.org>
8183         * vc/log-edit.el (log-edit-hook): Add missing :version.
8185 2014-07-03  Fabián Ezequiel Gallina  <fgallina@gnu.org>
8187         * progmodes/python.el (python-indent-post-self-insert-function):
8188         Enhancements to electric indentation behavior inside
8189         parens.  (Bug#17658)
8191 2014-07-03  Stefan Monnier  <monnier@iro.umontreal.ca>
8193         * ps-def.el (ps-generate-postscript-with-faces1): Don't mess with
8194         buffer-invisibility-spec (bug#17867).
8196 2014-07-03  Andreas Schwab  <schwab@linux-m68k.org>
8198         * vc/vc-git.el (vc-git-checkin): When operating on the whole tree
8199         pass "-a".
8201 2014-07-03  Glenn Morris  <rgm@gnu.org>
8203         * cus-edit.el (help):
8204         * finder.el (finder-known-keywords):
8205         * help.el (help-for-help-internal):
8206         * vc/ediff-mult.el (ediff-meta-buffer-verbose-message)
8207         (ediff-redraw-registry-buffer):
8208         * vc/ediff-ptch.el (ediff-patch-file-internal):
8209         Doc fixes re "online" help.  (Bug#17803)
8211         * progmodes/idlwave.el (idlwave): Update url-link for custom group.
8212         (idlwave-mode): Doc URL update.
8214 2014-07-01  Juri Linkov  <juri@jurta.org>
8216         * man.el: Display man pages immediately and use process-filter
8217         to format them asynchronously.
8218         (Man-width): Doc fix.
8219         (man): Doc fix.
8220         (Man-start-calling): Use `with-selected-window' to get
8221         `frame-width' and `window-width'.
8222         (Man-getpage-in-background): Call `Man-notify-when-ready'
8223         immediately after creating a new buffer.  Call `Man-mode' and set
8224         `mode-line-process' in the created buffer.  Set process-filter to
8225         `Man-bgproc-filter' in start-process branch.  In call-process branch
8226         call either `Man-fontify-manpage' or `Man-cleanup-manpage'.
8227         Use `Man-start-calling' inside `with-current-buffer'.
8228         (Man-fontify-manpage): Don't print messages.  Fix boundary condition.
8229         (Man-cleanup-manpage): Don't print messages.
8230         (Man-bgproc-filter): New function.
8231         (Man-bgproc-sentinel): Add `save-excursion' to keep point when
8232         user moved it during asynchronous formatting.  Move calls of
8233         `Man-fontify-manpage' and `Man-cleanup-manpage' to
8234         `Man-bgproc-filter'.  Move the call of `Man-mode' to
8235         `Man-getpage-in-background'.  Use `quit-restore-window'
8236         instead of `kill-buffer'.  Use `message' instead of `error'
8237         because errors are caught by process sentinel.
8238         (Man-mode): Move calls of `Man-build-page-list',
8239         `Man-strip-page-headers', `Man-unindent', `Man-goto-page' to
8240         `Man-bgproc-sentinel'.  Doc fix.  (Bug#2588, bug#5054, bug#9084, bug#17831)
8242         * man.el (Man-bgproc-sentinel): Use `Man-page-from-arguments'
8243         for the message about the man page cleaned up.
8245 2014-07-01  Mario Lang  <mlang@delysid.org>
8247         * net/gnutls.el (gnutls-negotiate): Prevent destructive modification of
8248         cosutomization option `gnutls-verify-error'.
8250 2014-07-01  Stefan Monnier  <monnier@iro.umontreal.ca>
8252         * simple.el (deactivate-mark, set-mark-command, handle-shift-selection):
8253         Don't keep transient-mark-mode buffer-local when not needed (bug#6316).
8255         * xt-mouse.el (turn-on-xterm-mouse-tracking-on-terminal)
8256         (turn-off-xterm-mouse-tracking-on-terminal): Don't burp if the terminal
8257         is suspended (bug#17857).
8259 2014-07-01  Michael Albinus  <michael.albinus@gmx.de>
8261         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
8262         Prefer utf-8 coding.  (Bug#17859)
8264 2014-06-30  Fabián Ezequiel Gallina  <fgallina@gnu.org>
8266         * emacs-lisp/subr-x.el (string-reverse): Define as obsolete alias
8267         for `reverse'.
8269 2014-06-30  Glenn Morris  <rgm@gnu.org>
8271         * emacs-lisp/autoload.el (autoload-ensure-writable): New variable.
8272         (autoload-ensure-default-file): Maybe make existing output writable.
8273         * Makefile.in (AUTOGEN_VCS): Remove.
8274         (autoloads): Use autoload-ensure-writable rather than AUTOGEN_VCS.
8276 2014-06-30  Fabián Ezequiel Gallina  <fgallina@gnu.org>
8278         * emacs-lisp/subr-x.el (string-reverse): Use `reverse'.
8280 2014-06-30  Fabián Ezequiel Gallina  <fgallina@gnu.org>
8282         New if-let, when-let, thread-first and thread-last macros.
8284         * emacs-lisp/subr-x.el
8285         (internal--listify, internal--check-binding)
8286         (internal--build-binding-value-form, internal--build-binding)
8287         (internal--build-bindings): New functions.
8288         (internal--thread-argument, thread-first, thread-last)
8289         (if-let, when-let): New macros.
8291 2014-06-30  Grégoire Jadi  <daimrod@gmail.com>
8293         * net/rcirc.el (rcirc-buffer-process): Restore previous
8294         behaviour.  (Bug#17772)
8296 2014-06-29  Alan Mackenzie  <acm@muc.de>
8298         Don't call c-parse-state when c++-template-syntax-table is active.
8299         * progmodes/cc-engine.el (c-guess-continued-construct CASE G)
8300         (c-guess-basic-syntax CASE 5D.3): Rearrange so that
8301         c-syntactic-skip-backwards isn't called with the pertinent syntax table.
8303 2014-06-28  Stephen Berman  <stephen.berman@gmx.net>
8305         * calendar/todo-mode.el (todo-set-top-priorities): Fix logic to
8306         account for file-wide setting of todo-top-priorities-overrides.
8307         Make code a bit cleaner.
8309 2014-06-28  Glenn Morris  <rgm@gnu.org>
8311         * net/eww.el (eww-mode) <eww-current-title>: Make local.  (Bug#17860)
8313 2014-06-28  Stephen Berman  <stephen.berman@gmx.net>
8315         * calendar/todo-mode.el (todo-prefix-overlays): If there is no
8316         category-wide setting of todo-top-priorities-overrides, check for
8317         a file-wide setting and fontify accordingly.
8319 2014-06-28  Glenn Morris  <rgm@gnu.org>
8321         * subr.el (read-passwd): Warn about batch mode.  (Bug#17839)
8323 2014-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8325         * progmodes/hideif.el: Use lexical-binding.  Fix up cl-lib usage.
8327 2014-06-28  K. Handa  <handa@gnu.org>
8329         Fix Bug#17739.
8331         * composite.el: Setup composition-function-table for dotted circle.
8332         (compose-gstring-for-dotted-circle): New function.
8334         * international/characters.el: Add category "^" to all
8335         non-spacing characters.
8337 2014-06-28  Glenn Morris  <rgm@gnu.org>
8339         * Makefile.in (doit): Remove force rule.
8340         (custom-deps, finder-data, autoloads, update-subdirs)
8341         (compile-one-process): PHONY targets do not need force rules.
8343         * Makefile.in (compile-main, compile, compile-always):
8344         No need to explicitly pass variables to ourself in recursive calls.
8346 2014-06-28  Stefan Monnier  <monnier@iro.umontreal.ca>
8348         * files.el (minibuffer-with-setup-hook): Evaluate the first arg eagerly.
8350 2014-06-26  Glenn Morris  <rgm@gnu.org>
8352         * Makefile.in (update-authors): Update for moved authors.el.
8354 2014-06-26  Leo Liu  <sdl.web@gmail.com>
8356         * skeleton.el (skeleton-end-hook): Default to nil and move the
8357         work to skeleton-insert.  (Bug#17850)
8359 2014-06-26  Dmitry Antipov  <dmantipov@yandex.ru>
8361         * calc/calc-alg.el (math-beforep):
8362         * progmodes/cc-guess.el (c-guess-view-reorder-offsets-alist-in-style):
8363         Simplify because string-lessp can accept symbols as args.
8365 2014-06-26  Daiki Ueno  <ueno@gnu.org>
8367         * emacs-lisp/package.el (package--check-signature):
8368         If package-check-signature is allow-unsigned, don't signal error when
8369         we can't verify signature because of missing public key
8370         (bug#17625).
8372 2014-06-26  Glenn Morris  <rgm@gnu.org>
8374         * emacs-lisp/cl-macs.el (help-add-fundoc-usage):
8375         Remove outdated declaration.
8377         * emacs-lisp/authors.el (authors-valid-file-names)
8378         (authors-renamed-files-alist): Additions.
8380 2014-06-26  Leo Liu  <sdl.web@gmail.com>
8382         * textmodes/picture.el (picture-set-tab-stops):
8383         * ruler-mode.el (ruler-mode-mouse-add-tab-stop)
8384         (ruler-mode-ruler): Fix to work with nil tab-stop-list.
8386         * progmodes/asm-mode.el (asm-calculate-indentation):
8387         Use indent-next-tab-stop.
8389         * indent.el (indent-accumulate-tab-stops): New function.
8391 2014-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8393         * emacs-lisp/package.el (package-list-unsigned): New var (bug#17625).
8394         (package-desc-status): Obey it.
8396 2014-06-26  Stephen Berman  <stephen.berman@gmx.net>
8398         * calendar/todo-mode.el: Fix two bugs.
8399         (todo-insert-item--basic): If user cancels item insertion to
8400         another category before setting priority, show original category
8401         whether it is in the same or a different file.
8402         (todo-set-item-priority): After selecting category, instead of
8403         moving point to top, which extends an active region, restore it.
8405 2014-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8407         * help-fns.el (describe-function-1): Check file-name is a string before
8408         calling help-fns--autoloaded-p (bug#17564).
8410 2014-06-26  Juri Linkov  <juri@jurta.org>
8412         * desktop.el (desktop-auto-save-enable)
8413         (desktop-auto-save-disable): New functions.
8414         (desktop-save-mode, desktop-auto-save-timeout): Use them.
8415         (desktop-read): Disable the autosave before loading the desktop,
8416         and enable afterwards.  (Bug#17351)
8418 2014-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
8420         Fix some indentation problem with \; and pipes (bug#17842).
8421         * progmodes/sh-script.el (sh-mode-syntax-table): Set syntax of ;|&.
8422         (sh-smie--default-forward-token, sh-smie--default-backward-token):
8423         New functions.
8424         (sh-smie-sh-forward-token, sh-smie-sh-backward-token)
8425         (sh-smie-rc-forward-token, sh-smie-rc-backward-token): Use them.
8426         (sh-smie-sh-rules): Fix indentation of a pipe at BOL.
8428 2014-06-26  Glenn Morris  <rgm@gnu.org>
8430         * emacs-lisp/find-func.el (find-function-C-source-directory):
8431         Use file-accessible-directory-p.
8433         * ps-samp.el: Make it slightly less awful.
8434         (ps-rmail-mode-hook, ps-gnus-article-prepare-hook, ps-vm-mode-hook):
8435         (ps-gnus-summary-setup, ps-info-mode-hook): Use [print] key.
8436         Only set local values.
8437         (ps-article-subject, ps-article-author): Use standard functions
8438         like mail-fetch-field.
8439         (ps-info-file, ps-info-node): Use match-string.
8440         (ps-jts-ps-setup, ps-jack-setup): Remove, merging into...
8441         (ps-samp-ps-setup): ... new function.
8443         * progmodes/idlw-shell.el (idlwave-shell-make-temp-file):
8444         Optimize away code unneeded on any modern Emacs.
8446         * emacs-lisp/authors.el: Move to ../admin.
8448         * emacs-lisp/ert.el (ert-summarize-tests-batch-and-exit): New.
8450 2014-06-26  Luke Lee  <luke.yx.lee@gmail.com>
8452         * progmodes/hideif.el (hif-string-to-number): Fix return value bug.
8453         (hif-simple-token-only, hif-tokenize): Comment in detail mainly for
8454         performance enhancements.
8455         (hif-parse-if-exp): Rename to `hif-parse-exp'.  Enhance for macro
8456         expansion.
8457         (hif-factor, hif-string-concatenation, intern-safe): Support string
8458         concatenation and argumented macro expansion.
8459         (hif-if-valid-identifier-p, hif-define-operator, hif-flatten)
8460         (hif-expand-token-list, hif-get-argument-list, hif-define-macro)
8461         (hif-delimit, hif-macro-supply-arguments, hif-invoke, hif-canonicalize)
8462         (hif-canonicalize-tokens, hif-place-macro-invocation)
8463         (hif-parse-macro-arglist): Mostly new functions for supporting
8464         argumented macro expansion.
8465         (hif-string-concatenation, hif-stringify, hif-token-concat)
8466         (hif-token-stringification, hif-token-concatenation):
8467         Stringification and concatenation.
8468         (hif-find-next-relevant): Fix comments.
8469         (hif-ifdef-to-endif, hif-looking-at-elif, hif-hide-line): Bug fix for
8470         some cases involving #elif.
8471         (hif-find-define, hif-add-new-defines): New functions for automatically
8472         scanning of defined symbols.
8473         (hide-ifdef-guts): Fix for defined symbol auto scanning.
8474         (hide-ifdef-undef): Fix behavior to match CPP.
8476 2014-06-25  Glenn Morris  <rgm@gnu.org>
8478         * Makefile.in ($(lisp)/progmodes/cc-defs.elc)
8479         ($(lisp)/progmodes/cc-fonts.elc, $(lisp)/progmodes/cc-langs.elc)
8480         ($(lisp)/progmodes/cc-vars.elc): Drop hand-written deps on non-cc
8481         files.  They are not relevant to the original issue (bug#1004),
8482         and cause unnecessary recompilation (bug#2151).
8484 2014-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
8486         * play/landmark.el: Use lexical-binding and avoid `intangible'.
8487         (landmark--last-pos): New var.
8488         (landmark--intangible-chars): New const.
8489         (landmark--intangible): New function.
8490         (landmark-mode, landmark-move): Use it.
8491         (landmark-mode): Remove properties.
8492         (landmark-plot-square, landmark-point-square, landmark-goto-xy)
8493         (landmark-cross-qtuple):
8494         Don't worry about `intangible' any more.
8495         (landmark-click, landmark-point-y): Same; and don't assume point-min==1.
8496         (landmark-init-display): Don't set `intangible' and `point-entered'.
8497         (square): Remove.  Inline it instead.
8498         (landmark--distance): Rename from `distance'.
8499         (landmark-calc-distance-of-robot-from): Rename from
8500         calc-distance-of-robot-from.
8501         (landmark-calc-smell-internal): Rename from calc-smell-internal.
8503 2014-06-25  Dmitry Antipov  <dmantipov@yandex.ru>
8505         * files.el (dir-locals-find-file, file-relative-name):
8506         * info.el (Info-complete-menu-item):
8507         * minibuffer.el (completion-table-subvert): Prefer string-prefix-p
8508         to compare-strings to avoid out-of-range errors.
8509         * subr.el (string-prefix-p): Adjust to match strict range
8510         checking in compare-strings.
8512 2014-06-24  Leonard Randall  <leonard.a.randall@gmail.com>  (tiny change)
8514         * textmodes/reftex-parse.el (reftex-using-biblatex-p): Make search
8515         for comment lines non-greedy and stopping at newlines to fix stack
8516         overflows with large files.
8518 2014-06-24  Eli Barzilay  <eli@barzilay.org>
8520         * calculator.el (calculator-last-input): Drop 'ascii-character property
8521         lookup.
8523 2014-06-24  Leo Liu  <sdl.web@gmail.com>
8525         * align.el (align-adjust-col-for-rule): Unbreak due to defaulting
8526         tab-stop-list to nil.  (Bug#16381)
8528         * indent.el (indent-next-tab-stop): Rename from indent--next-tab-stop.
8529         (indent-rigidly-left-to-tab-stop)
8530         (indent-rigidly-right-to-tab-stop, tab-to-tab-stop)
8531         (move-to-tab-stop): Change callers.
8533 2014-06-24  Eli Zaretskii  <eliz@gnu.org>
8535         * skeleton.el (skeleton-insert): Yet another fix of the doc string
8536         wrt behavior of \n as the first/last element of a skeleton.
8538 2014-06-24  Michael Albinus  <michael.albinus@gmx.de>
8540         * net/tramp-adb.el (tramp-adb-handle-process-file):
8541         * net/tramp-sh.el (tramp-sh-handle-process-file):
8542         * net/tramp-smb.el (tramp-smb-handle-process-file): Do not raise
8543         the output buffer when DISPLAY is non-nil.  (Bug#17815)
8545 2014-06-24  Glenn Morris  <rgm@gnu.org>
8547         * play/landmark.el (landmark-move-down, landmark-move-up):
8548         Fix 2007-10-20 change - preserve horizontal position.
8550 2014-06-23  Sam Steingold  <sds@gnu.org>
8552         * simple.el (kill-append): Remove undo boundary depending on ...
8553         (kill-append-merge-undo): New user option.
8555 2014-06-23  Stefan Monnier  <monnier@iro.umontreal.ca>
8557         * simple.el (handle-shift-selection, exchange-point-and-mark)
8558         (activate-mark): Set transient-mark-mode buffer-locally (bug#6316).
8559         (transient-mark-mode): Use&set the global value.
8560         * mouse.el (mouse-set-region-1, mouse-drag-track): Idem.
8561         * emulation/edt.el (edt-emulation-off): Save&restore the global
8562         transient-mark-mode setting.
8563         * obsolete/pc-select.el (pc-selection-mode): Use the
8564         transient-mark-mode function.
8566 2014-06-23  Eli Zaretskii  <eliz@gnu.org>
8568         * international/fontset.el (script-representative-chars):
8569         Add representative characters for scripts added in Unicode 7.0.
8570         (otf-script-alist): Synchronize with the latest registry of OTF
8571         script tags.
8573         * international/characters.el (char-script-table): Update for
8574         scripts added and codepoint ranges changed in Unicode 7.0.
8576 2014-06-23  Eli Barzilay  <eli@barzilay.org>
8578         * calculator.el (calculator-standard-displayer): Fix bug in use of
8579         `calculator-groupize-number'.
8580         (calculator-funcall): Fix broken `cl-flet' use by moving it into the
8581         `eval' code, so it works in v24.3.1 too.
8582         (calculator-last-input): Comment to clarify purpose.
8584 2014-06-22  Mario Lang  <mlang@delysid.org>
8586         * textmodes/rst.el (rst-comment-region): From from -> from.
8588         * net/tramp-adb.el (tramp-adb-send-command-and-check): And and -> and.
8590 2013-06-22  Dmitry Antipov  <dmantipov@yandex.ru>
8592         * electric.el (electric-layout-post-self-insert-function):
8593         * emacs-lisp/ert.el (ert--insert-infos):
8594         * obsolete/vi.el (vi-set-mark):
8595         * term.el (term-handle-scroll):
8596         * textmodes/bibtex.el (bibtex-fill-field, bibtex-fill-entry):
8597         * wid-edit.el (widget-editable-list-value-create):
8598         Prefer point-marker to copy-marker of point.
8600 2014-06-21  Fabián Ezequiel Gallina  <fgallina@gnu.org>
8602         Fix completion retrieval parsing (bug#17209).
8603         * progmodes/python.el (python-mode):
8604         (python-util-strip-string): New function.
8605         (python-shell-completion-get-completions): Use it.
8607 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
8609         * skeleton.el (skeleton-insert): Fix last change.
8611 2014-06-21  Fabián Ezequiel Gallina  <fgallina@gnu.org>
8613         Enhancements for outline integration (bug#17796).
8614         * progmodes/python.el (python-mode): Properly set
8615         outline-heading-end-regexp so that comments after colons for
8616         defuns are supported.
8618 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
8620         * skeleton.el (skeleton-insert): Doc fix.
8622 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8624         * emacs-lisp/smie.el (smie-config--guess): Fix typo.
8625         (smie-config-guess): Use smie-config-local so the rules are obeyed
8626         (bug#17818).
8628         * mouse.el (mouse-drag-line): Don't re-add to unread-comment-events,
8629         since it's already done inside the loop (bug#17819).
8631 2014-06-21  Martin Rudalics  <rudalics@gmx.at>
8633         * mouse.el (mouse-drag-line): Re-remove code initially removed
8634         on 2013-03-09 and inadvertently reintroduced on 2013-11-30
8635         (Bug#17819).
8637 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8639         * progmodes/sh-script.el (sh-smie-sh-rules): For { after &&, don't
8640         align with the surrounding parent (bug#17721).
8642 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
8644         * textmodes/texinfo.el (texinfo-mode): Set skeleton-end-newline
8645         locally to nil.
8646         (texinfo-insert-block, texinfo-insert-@end)
8647         (texinfo-insert-@example, texinfo-insert-@quotation): Adjust to
8648         local setting of skeleton-end-newline by adding an explicit \n to
8649         the skeletons where appropriate.  (Bug#17801)
8651 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8653         * emacs-lisp/smie.el (smie--hanging-eolp-function): New var.
8654         (smie-indent--hanging-p): Use it.
8655         * progmodes/sh-script.el (sh-set-shell): Set it (bug#17621).
8657 2014-06-21  Leo Liu  <sdl.web@gmail.com>
8659         * simple.el (read-quoted-char): Don't let help chars pop up help
8660         buffer.  (Bug#16617)
8662 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8664         * progmodes/sh-script.el (sh-smie-sh-rules): Use same rule for && as
8665         for | (bug#17621).
8667         * xt-mouse.el (xterm-mouse--read-event-sequence-1000):
8668         Drop unknown events instead of burping.
8670 2014-06-21  Eli Zaretskii  <eliz@gnu.org>
8672         * term/w32-win.el (dynamic-library-alist): Support giflib 5.1.0
8673         and later.  (Bug#17790)
8675 2014-06-21  Juri Linkov  <juri@jurta.org>
8677         * dired.el (dired-mark-pop-up): Let-bind display-buffer-mark-dedicated
8678         to `soft'.  (Bug#17554)
8680 2014-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
8682         * delsel.el (electric-newline-and-maybe-indent): Mark it as well
8683         (bug#17737).
8685 2014-06-21  Dmitry Gutov  <dgutov@yandex.ru>
8687         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Don't fontify
8688         `!' in `!~' with `font-lock-negation-char-face'.  (Bug#17732)
8690 2014-06-21  Michael Albinus  <michael.albinus@gmx.de>
8692         * net/dbus.el (dbus-call-method): Push only non D-Bus events into
8693         `unread-command-events'.
8695 2014-06-19  William Xu  <william.xwl@gmail.com>
8697         * progmodes/hideif.el (hif-string-to-number): Don't return float for
8698         hex integer constants (bug#17807).
8700 2014-06-19  Stefan Monnier  <monnier@iro.umontreal.ca>
8702         * international/mule-util.el (truncate-string-ellipsis): New var.
8703         (truncate-string-to-width): Use it.
8705 2014-06-19  Robert Brown  <robert.brown@gmail.com>  (tiny change)
8707         * emacs-lisp/lisp-mode.el (lisp-string-after-doc-keyword-p): New fun.
8708         (lisp-string-in-doc-position-p): New function, extracted from
8709         lisp-font-lock-syntactic-face-function.
8710         (lisp-font-lock-syntactic-face-function): Use them (bug#9130).
8712 2014-06-19  Grégoire Jadi  <daimrod@gmail.com>
8714         * net/rcirc.el (rcirc-omit-mode): Fix recenter error.  (Bug#17769)
8716 2014-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
8718         * play/bubbles.el (bubbles--initialize, bubbles--show-scores)
8719         (bubbles--game-over): Don't add `intangible' properties since they
8720         didn't work anyway.
8722 2014-06-18  Juri Linkov  <juri@jurta.org>
8724         * vc/ediff-init.el (ediff-current-diff-Ancestor)
8725         (ediff-fine-diff-Ancestor, ediff-even-diff-A, ediff-even-diff-B)
8726         (ediff-even-diff-C, ediff-even-diff-Ancestor, ediff-odd-diff-A)
8727         (ediff-odd-diff-B, ediff-odd-diff-C, ediff-odd-diff-Ancestor):
8728         Add `min-colors 88' version with removed black/white foregrounds.
8729         (Bug#10181)
8731 2014-06-18  Juri Linkov  <juri@jurta.org>
8733         * vc/diff-mode.el (diff-changed): Empty face definition to use
8734         `diff-removed' and `diff-added' on tty as well.  (Bug#10181)
8735         (diff-context): Use darker color on light background and
8736         lighter color on dark background.
8738 2014-06-18  Juri Linkov  <juri@jurta.org>
8740         * vc/diff-mode.el (diff-refine-changed): Rename from
8741         `diff-refine-change' for consistency with `diff-changed'.
8742         (diff-refine-change): Add obsolete face alias.  (Bug#10181)
8744         * vc/smerge-mode.el (smerge-refined-changed): Rename from
8745         `smerge-refined-change'.
8746         (smerge-refined-change): Add obsolete face alias.
8748 2014-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
8750         * rect.el (rectangle-preview): New custom.
8751         (rectangle): New group.
8752         (rectangle--pos-cols): Add `window' argument.
8753         (rectangle--string-preview-state, rectangle--string-preview-window):
8754         New vars.
8755         (rectangle--string-flush-preview, rectangle--string-erase-preview)
8756         (rectangle--space-to, rectangle--string-preview): New functions.
8757         (string-rectangle): Use them.
8758         (rectangle--inhibit-region-highlight): New var.
8759         (rectangle--highlight-for-redisplay): Obey it.  Make sure
8760         `apply-on-region' uses the point-crutches of the right window.
8761         Use :align-to rather than multiple spaces.
8763 2014-06-16  Andrea Rossetti  <andrea.rossetti@gmail.com>  (tiny change)
8765         * ruler-mode.el (ruler-mode-window-col)
8766         (ruler-mode-mouse-set-left-margin)
8767         (ruler-mode-mouse-set-right-margin): Fix calculation of column
8768         from mouse position (Bug#17768).
8770 2014-06-16  Ron Schnell  <ronnie@driver-aces.com>
8772         * play/dunnet.el (dun-doassign): Fix bug where UNIX variable assignment
8773         without varname or rhs causes crash.
8774         (dun-ftp): Fix bug where blank ftp password is allowed, making it
8775         impossible to win endgame.
8776         (dun-unix-verbs): Add ssh as alias to rlogin, because nobody knows what
8777         rlogin is anymore.
8778         (dun-help): Bump version number; update contact info.
8780 2014-06-15  Eli Barzilay  <eli@barzilay.org>
8782         * calculator.el (calculator-prompt, calculator-remove-zeros)
8783         (calculator-mode-hook, calculator-operators, calculator-stack)
8784         (calculator-mode): Tweak docstring.
8785         (calculator-user-operators): Tweak docstring, fix a bug in the last
8786         example.
8787         (calculator-displayer): `std' case has an optional boolean.
8788         (calculator-displayers): Use the new boolean to group in decimal mode.
8789         (calculator-mode-map, calculator, calculator-message)
8790         (calculator-op-arity, calculator-add-operators)
8791         (calculator-string-to-number, calculator-displayer-prev)
8792         (calculator-displayer-next, calculator-remove-zeros)
8793         (calculator-eng-display, calculator-number-to-string)
8794         (calculator-update-display, calculator-last-input)
8795         (calculator-clear-fragile, calculator-digit, calculator-decimal)
8796         (calculator-exp, calculator-saved-move, calculator-clear)
8797         (calculator-copy, calculator-put-value, calculator-help)
8798         (calculator-expt, calculator-truncate): Minor code improvements.
8799         (calculator-need-3-lines): New function pulling out code from
8800         `calculator'.
8801         (calculator-get-display): Rename from `calculator-get-prompt', and
8802         improved.
8803         (calculator-push-curnum): Rename from `calculator-curnum-value', and
8804         extended for all uses of it.  All callers changed.
8805         (calculator-groupize-number): New utility for splitting a number into
8806         groups.
8807         (calculator-standard-displayer): Improve code, new optional argument to
8808         use comma-split groups, make second argument optional too to use with
8809         'left/'right inputs.  All callers changed.
8810         (calculator-reduce-stack-once): New utility, doing the meat of what
8811         `calculator-reduce-stack' used to do, much improved (mostly using
8812         `pcase' for conciseness and clarity).
8813         (calculator-reduce-stack): Now doing just the reduction loop using
8814         `calculator-reduce-stack-once'.
8815         (calculator-funcall): Improve code, make it work in v24.3.1 too.
8816         (calculator-last-input): Improve code, remove some old cruft.
8817         (calculator-quit): Kill `calculator-buffer' in electric mode too.
8818         (calculator-integer-p): Remove.
8819         (calculator-fact): Improve code, make it work on non-integer values
8820         too (using truncated numbers).
8822 2014-06-15  Michael Albinus  <michael.albinus@gmx.de>
8824         Sync with Tramp 2.2.10.
8826         * net/tramp.el (tramp-methods): Tweak docstring.
8827         (tramp-handle-file-accessible-directory-p): Check for
8828         `file-readable-p' instead of `file-executable-p'.
8829         (tramp-check-cached-permissions):
8830         Use `tramp-compat-file-attributes'.
8831         (tramp-call-process): Add new argument VEC.  Adapt callees in all
8832         tramp*.el files.
8834         * net/tramp-adb.el (tramp-adb-handle-write-region): Improve messages.
8835         (tramp-adb-maybe-open-connection): Don't set
8836         `tramp-current-*' variables.
8838         * net/tramp-cache.el (tramp-flush-file-function): Do not flush
8839         file properties of temporary buffers.
8841         * net/tramp-ftp.el (top): Remove special handling for URL syntax.
8843         * net/tramp-gvfs.el (tramp-gvfs-methods) <sftp>: Add.
8844         (tramp-gvfs-handle-delete-file): Flush file
8845         properties, not directory properties.
8846         (tramp-gvfs-handle-file-attributes): Use `string-to-number' when
8847         reading "unix::mode".
8848         (tramp-gvfs-handle-file-name-all-completions):
8849         Use "-h" option for "gvfs-ls".
8850         (tramp-gvfs-url-file-name): `user' and `localname' could be nil.
8851         (tramp-gvfs-send-command): Simplify traces.
8853         * net/tramp-sh.el (vc-handled-backends, vc-bzr-program)
8854         (vc-git-program, vc-hg-program): Declare.
8855         (tramp-methods) <sftp>: Remove.  It has never worked satisfactorily.
8856         (tramp-methods) <nc>: Add new method.
8857         (tramp-methods) <telnet>: Redirect stderr to "/dev/null".
8858         (tramp-methods) <plink, plinkx, pscp, psftp>: Improve
8859         `tramp-login-args'.
8860         (tramp-default-user-alist): Add "nc".
8861         (top): Remove completion function for "sftp".  Add completion
8862         functions for "nc" and "psftp".
8863         (tramp-do-copy-or-rename-file-out-of-band): Tweak docstring.
8864         Implement support for "nc" method.
8865         (tramp-sh-handle-expand-file-name, tramp-local-coding-commands)
8866         (tramp-remote-coding-commands, tramp-call-local-coding-command):
8867         Tweak docstring.
8868         (tramp-sh-handle-write-region): Tweak error message.
8869         (tramp-sh-handle-vc-registered): Remove backends when the remote
8870         binary does not exist.
8871         (tramp-find-inline-encoding): Do not raise an error.
8872         (tramp-make-copy-program-file-name): Tweak docstring.  Handle also
8873         the "nc" case.  Quote result also locally.
8875         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
8876         (tramp-smb-handle-set-file-acl): Use `start-process'.
8877         (tramp-smb-handle-insert-directory): Use progress reporter.
8878         (tramp-smb-handle-rename-file): Flush also file properties of
8879         FILENAME.
8881         * net/trampver.el: Update release number.
8883 2014-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8885         * ses.el: Miscellaneous cleanups; use lexical-binding; avoid
8886         add-to-list.
8887         (ses-localvars): Remove ses--local-printer-list, unused.
8888         (ses--metaprogramming): New macro.  Use it to defvar variables.
8889         (ses-set-localvars): Simplify.
8890         (ses--locprn, ses-cell): Use defstruct.  Change ses-cell's
8891         property-list into an alist.
8892         (ses-locprn-get-compiled, ses-locprn-compiled-aset)
8893         (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number):
8894         Remove; use defstruct accessors/setters instead.
8895         (ses-cell-formula-aset, ses-cell-printer-aset)
8896         (ses-cell-references-aset): Remove, use setf instead.
8897         (ses--alist-get): New function.
8898         (ses-cell-property): Rename from ses-cell-property-get and rewrite.
8899         Use an alist instead of a plist and don't do move-to-front since the
8900         list is always short.
8901         (ses-cell-property-get-fun, ses-cell-property-delq-fun)
8902         (ses-cell-property-set-fun, ses-cell-property-set)
8903         (ses-cell-property-pop-fun, ses-cell-property-get-handle)
8904         (ses-cell-property-handle-car, ses-cell-property-handle-setcar): Remove.
8905         (ses--letref): New macro.
8906         (ses-cell-property-pop): Rewrite.
8907         (ses--cell): Rename from ses-cell and make it into a function.
8908         Make `formula' fallback on `value' if nil.
8909         (ses--local-printer): Rename from ses-local-printer and make it into
8910         a function.
8911         (ses-set-cell): Turn it into a macro so finding the accessor from the
8912         field name is done at compile time.
8913         (ses-repair-cell-reference-all): Test presence of `sym' rather than
8914         `ref' before adding `sym' to :ses-repair-reference.
8915         (ses-calculate-cell): Use ses--letref rather than
8916         ses-cell-property-get-handle.
8917         (ses-write-cells): Use a single prin1-to-string.
8918         (ses-setter-with-undo): New function.
8919         (ses-aset-with-undo, ses-set-with-undo): Rewrite using it.
8920         (ses-unset-with-undo): Remove.
8921         (ses-load): Prefer apply' over `eval'.
8922         (ses-read-printer, ses-set-column-width): Use standard "(default
8923         foo)" format.
8925 2014-06-15  Glenn Morris  <rgm@gnu.org>
8927         * Makefile.in (leim, semantic): Use `make -C' rather than `cd && make'.
8929         * progmodes/cc-langs.el: Require cl-lib.  (Bug#17463)
8930         Replace delete-duplicates and mapcan by cl- versions throughout.
8931         And cl-macroexpand-all by macroexpand-all.
8932         (delete-duplicates, mapcan, cl-macroexpand-all): No need to declare.
8934 2014-06-15  Eli Zaretskii  <eliz@gnu.org>
8936         * subr.el (posn-col-row): Doc fix.  (Bug#17768)
8938 2014-06-15  Juri Linkov  <juri@jurta.org>
8940         * bindings.el: Put `ascii-character' property on keypad keys
8941         mapped to characters.  (Bug#17759)
8943 2014-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
8945         * emacs-lisp/smie.el (smie-next-sexp): Fix up "other-end" info when
8946         bumping forward into a closing paren (bug#17761).
8948         * term/xterm.el (xterm--version-handler): Work around for OSX
8949         Terminal.app (bug#17607).
8951 2014-06-14  Ron Schnell  <ronnie@driver-aces.com>
8953         * play/dunnet.el (dun-describe-room, dun-mode):
8954         If a lamp is in the room, you won't be eaten by a grue.
8956 2014-06-13  Glenn Morris  <rgm@gnu.org>
8958         * Makefile.in ($(lisp)/cus-load.el, $(lisp)/finder-inf.el)
8959         (autoloads, $(lisp)/subdirs.el, compile-main, leim, semantic, compile)
8960         (compile-always): GNU make automatically passes
8961         command-line arguments to sub-makes.
8963         * calendar/calendar.el (calendar-generate-window):
8964         Remove pointless call to font-lock-fontify-buffer.
8966 2014-06-13  Matthias Meulien  <orontee@gmail.com>
8968         * simple.el (completion-list-mode-map): Navigate with tab and backtab
8969         (bug#17767).
8971 2014-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
8973         * simple.el (set-mark-command): Simplify a bit.
8975 2014-06-12  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
8977         * help.el (help--key-binding-keymap): New function.
8978         (help--binding-locus): New function.
8979         (describe-key): Mention the keymap in which the binding was
8980         found.  (bug#13948)
8982 2014-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
8984         * hippie-exp.el (he--all-buffers): New function.
8985         (try-expand-line-all-buffers, try-expand-list-all-buffers)
8986         (try-expand-dabbrev-all-buffers): Use it.
8988 2014-06-12  Emilio C. Lopes  <eclig@gmx.net>
8990         * hippie-exp.el (try-expand-line-all-buffers)
8991         (try-expand-list-all-buffers, try-expand-dabbrev-all-buffers):
8992         Read hippie-expand-only-buffers and hippie-expand-ignore-buffers in the
8993         original buffer, in case they're buffer-local.
8995 2014-06-12  Vincent Belaïche  <vincentb1@users.sourceforge.net>
8997         * ses.el (ses-initial-global-parameters-re): New defconst, a
8998         specific regexp is needed now that ses.el can handle both
8999         file-format 2 --- ie. no local printers --- and 3 --- i.e. may have
9000         local printers.
9001         (ses-localvars): Add local variables needed for local printer handling.
9002         (ses-set-localvars): Handle hashmap initialisation.
9003         (ses-paramlines-plist): Add param-line for number of local printers.
9004         (ses-paramfmt-plist): New defconst, needed for code factorization
9005         between functions `ses-set-parameter' and
9006         `ses-file-format-extend-paramter-list'
9007         (ses-make-local-printer-info): New defsubst.
9008         (ses-locprn-get-compiled, ses-locprn-compiled-aset)
9009         (ses-locprn-get-def, ses-locprn-def-aset, ses-locprn-get-number)
9010         (ses-cell-printer-aset): New defmacro.
9011         (ses-local-printer-compile): New defun.
9012         (ses-local-printer): New defmacro.
9013         (ses-printer-validate, ses-call-printer): Add support for local
9014         printer functions.
9015         (ses-file-format-extend-paramter-list): New defun.
9016         (ses-set-parameter): Use const `ses-paramfmt-plist' for code
9017         factorization.
9018         (ses-load): Add support for local printer functions.
9019         (ses-read-printer): Update docstring and add support for local printer
9020         functions.
9021         (ses-refresh-local-printer, ses-define-local-printer): New defun.
9022         (ses-safe-printer): Add support for local printer functions.
9024 2014-06-12  Ivan Andrus  <darthandrus@gmail.com>
9026         * ffap.el (ffap-lax-url): New var (bug#17723).
9027         (ffap-url-at-point): Use it.
9028         (ffap-file-at-point): Avoid returning just "/".
9030 2014-06-12  Matthias Meulien  <orontee@gmail.com>
9032         * progmodes/python.el (import skeleton): New skeleton (bug#17672).
9033         (python-mode-map): Bind it.
9035         * progmodes/python.el (class skeleton): Don't erase last char of class
9036         name (bug#17683).
9038 2014-06-12  Cameron Desautels  <camdez@gmail.com>  (tiny change)
9040         * help.el (where-is): Use `default' arg of completing-read (bug#17705).
9042 2014-06-12  Kevin Ryde  <user42_kevin@yahoo.com.au>
9044         * files.el (auto-mode-alist): Map .ad files to xdefaults-mode
9045         (bug#17745).
9047 2014-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9049         * international/mule-cmds.el: Use lexical-binding.
9050         (ucs-names): Simplify.
9052 2014-05-18  Eric Hanchrow  <eric.hanchrow@gmail.com>
9054         * progmodes/python.el (run-python): Use read-shell-command.
9056 2014-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9058         * rect.el: Make it possible to move bounds past EOL or into TABs.
9059         (operate-on-rectangle): Use apply-on-rectangle.
9060         (rectangle--mark-crutches): New var.
9061         (rectangle--pos-cols, rectangle--col-pos, rectangle--point-col)
9062         (rectangle--crutches, rectangle--reset-crutches): New functions.
9063         (apply-on-rectangle): Obey crutches.  Avoid setq.
9064         Fix missing final iteration if end is at EOB&BOL.
9065         (rectangle-mark-mode-map): Add remap bindings for
9066         exchange-point-and-mark and char/line movements.
9067         (rectangle--*-char): New function.
9068         (rectangle-exchange-point-and-mark, rectangle-right-char)
9069         (rectangle-left-char, rectangle-forward-char)
9070         (rectangle-backward-char, rectangle-next-line)
9071         (rectangle-previous-line): New commands.
9072         (rectangle--place-cursor): New function.
9073         (rectangle--highlight-for-redisplay): Use it.  Use apply-on-rectangle.
9075 2014-06-08  Glenn Morris  <rgm@gnu.org>
9077         * startup.el (initial-buffer-choice): Doc fix.
9078         Reset :version (adding an option does not merit a :version bump).
9080         * bookmark.el (bookmark-load):
9081         * uniquify.el (uniquify-buffer-name-style): Doc fixes.
9083 2014-06-08  Juri Linkov  <juri@jurta.org>
9085         * desktop.el: Activate auto-saving on window configuration changes.
9086         (desktop-save-mode, desktop-auto-save-timeout): Add/remove
9087         `desktop-auto-save-set-timer' to/from
9088         `window-configuration-change-hook'.
9089         (desktop-auto-save-set-timer): Change REPEAT arg of
9090         `run-with-idle-timer' from t to nil.
9091         http://lists.gnu.org/archive/html/emacs-devel/2014-06/msg00147.html
9093 2014-06-08  Santiago Payà i Miralta  <santiagopim@gmail.com>
9095         * vc/vc-hg.el (vc-hg-working-revision): Use "hg parent" and
9096         vc-hg-command (bug#17570).
9098 2014-06-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9100         * international/mule-cmds.el (ucs-names): Add special entry for BEL
9101         (bug#17702).
9103 2014-06-08  Glenn Morris  <rgm@gnu.org>
9105         * startup.el (window-setup-hook): Doc fix.
9107         * emacs-lisp/package.el (package-check-signature)
9108         (package-unsigned-archives): Doc fixes.
9110 2014-06-08  Martin Rudalics  <rudalics@gmx.at>
9112         * window.el (display-buffer-use-some-window): Don't make window
9113         used smaller than it was before (Bug#17671).
9115 2014-06-08  Eli Zaretskii  <eliz@gnu.org>
9117         * menu-bar.el (menu-bar-open): Fix last change: use the PC
9118         'redisplay' instead of '(sit-for 0)'.
9120 2014-06-08  Michael Albinus  <michael.albinus@gmx.de>
9122         * net/tramp.el (tramp-ssh-controlmaster-options):
9123         Improve search regexp.  (Bug#17653)
9125 2014-06-08  Glenn Morris  <rgm@gnu.org>
9127         * emacs-lisp/package.el (package-pinned-packages): Doc fix.
9129 2014-06-08  Eli Zaretskii  <eliz@gnu.org>
9131         * menu-bar.el (menu-bar-open): Fix invocation via M-x.
9133 2014-06-06  Santiago Payà i Miralta  <santiagopim@gmail.com>
9135         * vc/vc-hg.el (vc-hg-create-tag, vc-hg-retrieve-tag): New functions
9136         (bug#17586).
9138         * vc/vc-hg.el (vc-hg-log-graph): New var.
9139         (vc-hg-print-log): Use it.
9140         (vc-hg-root-log-format): Include branch name and bookmarks; ignore
9141         graph output (bug#17515).
9143 2014-06-06  Stefan Monnier  <monnier@iro.umontreal.ca>
9145         * mouse.el (mouse-posn-property): Ignore buffer position info when the
9146         even happened elsewhere.
9148 2014-06-06  Mario Lang  <mlang@delysid.org>
9150         * emacs-lisp/tabulated-list.el (tabulated-list-print): Only call
9151         `recenter' if `current-buffer' is equal to `window-buffer'.
9153 2014-06-05  Leo Liu  <sdl.web@gmail.com>
9155         * emacs-lisp/cl-macs.el (cl-macrolet): Avoid excessive progn's.
9157 2014-06-05  Michal Nazarewicz  <mina86@mina86.com>
9159         * textmodes/tildify.el (tildify-foreach-region-outside-env):
9160         New function which calls a callback on portions of the buffer that are
9161         outside of ignored environments.
9162         (tildify-build-regexp): Remove function since it is now
9163         incorporated in `tildify-foreach-region-outside-env' where it is
9164         optimized and simplified by the use of `mapconcat'.
9165         (tildify-tildify): Return number of substitutions made so that…
9166         (tildify-count): …can be removed.
9167         (tildify-find-env): Accept a new PAIRS argument which was
9168         previously looked up in `tildify-ignored-environments-alist' each
9169         time the function was called.  With this change, the lookup is
9170         performed only once in `tildify-foreach-region-outside-env'.
9171         (tildify-region): Greatly simplify the function since now most of
9172         the work is done by `tildify-foreach-region-outside-env'.
9173         (tildify-mode-alist): Simplify slightly by avoiding if and setq
9174         and instead using or.
9176         * textmodes/tildify.el (tildify-ignored-environments-alist):
9177         Optimize environments regexes
9179         Each time beginning of an environment to ignore is found,
9180         `tildify-find-env' needs to identify regexp for the ending
9181         of the environment.  This is done by trying all the opening
9182         regexes on matched text in a loop, so to speed that up, this
9183         loop should have fewer things to match, which can be done by
9184         using alternatives in the opening regexes.
9186         Coincidentally, this should make matching of the opening
9187         regexp faster as well thanks to the use of `regexp-opt' and
9188         having common prefix pulled from many regexes.
9190         * textmodes/tildify.el (tildify-string-alist)
9191         (tildify-ignored-environments-alist): Add `nxml-mode' to the list
9192         of supported modes since `xml-mode' is no longer a thing but just
9193         an alias to the former.  Also include comments and insides of tags
9194         in `tildify-ignored-environments-alist' for XML modes.  Finally,
9195         since XML does not define “&nbsp;”[1], use a numeric reference for
9196         a no-break space (namely “&#160;”)
9198         [1] XML specification defines only a handful of predefined entities.
9199             The list is at <http://www.w3.org/TR/REC-xml/#sec-predefined-ent>
9200             and includes only &lt;, &gt;, &amp;, &apos; and &quot; (meaning <,
9201             >, &, ' and " respectively).  This is in contrast to HTML and even
9202             XHTML which defined a whole bunch of entities including “&nbsp;”.
9204         * textmodes/tildify.el (tildify-pattern-alist)
9205         (tildify-string-alist, tildify-ignored-environments-alist):
9206         Improve defcustom's types by adding more tags explaining what each
9207         value means and replace “sexp” used in
9208         `tildify-ignored-environments-alist' with a full type declaration.
9210         * textmodes/tildify.el (tildify-find-env): Fix matched group
9211         indexes in end-regex building
9213         When looking for a start of an ignore-environment, the regex is built
9214         by concatenating regexes of all the environments configured in
9215         `tildify-ignored-environments-alist'.  So for example, the following
9216         list could be used to match TeX's \verb and \verb* commands:
9218             (("\\\\verb\\(.\\)" . (1))
9219              ("\\\\verb\\*\\(.\\)" . (1)))
9221         This would result in the following regex being used to find the start
9222         of any of the variants of the \verb command:
9224             \\\\verb\\(.\\)\\|\\\\verb\\*\\(.\\)
9226         But now, if “\\\\verb\\*\\(.\\)” matches, the first capture group
9227         won't match anything, and thus (match-string 1) will be nil, which
9228         will cause building of the end-matching regex to fail.
9230         Fix this by using capture groups from the time when the opening
9231         regexes are matched individually.
9233         * textmodes/tildify.el (tildify-find-env): Fix end-regex building
9234         in `tildify-find-env'
9236         The `tildify-ignored-environments-alist' allows the end-regex to
9237         be provided not as a static string but mix of strings and indexes
9238         of groups matched the begin-regex.  For example, the “\verb!…!”
9239         TeX-command (where “!” is an arbitrary character) is handled
9240         using:
9242             ("\\\\verb\\*?\\(.\\)" . (1))
9244         In the same way, the following should be supported as well:
9246             ("open-\\(.\\)" . ("end-" 1))
9248         However the tildify-find-env function fails at
9250             (concat result
9251                     (if (stringp (setq aux (car expression)))
9252                          expression  ; BUG: expression is a list
9253                        (regexp-quote (match-string aux))))
9255         where the string part is handled incorrectly.
9257         The most trivial fix would be to replace `expression' in the
9258         true-part of the if-statement with `aux', but instead, this commit
9259         optimizes `tildify-find-env' by changing it to use `mapconcat'
9260         rather than open-coded while-loop.
9262 2014-06-05  Mario Lang  <mlang@delysid.org>
9264         * woman.el (woman-mapcan): Remove.
9265         (woman-parse-colon-path): Use cl-mapcan instead.
9267 2014-06-03  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
9269         * register.el: Add link to Emacs manual in Commentary.
9271 2014-06-02  Sam Steingold  <sds@gnu.org>
9273         * menu-bar.el (lookup-key-ignore-too-long): Extract from...
9274         (popup-menu): ...here.
9275         (menu-bar-open): Use it to avoid an error when `lookup-key'
9276         returns a number.
9278 2014-06-02  Michael Albinus  <michael.albinus@gmx.de>
9280         * net/tramp.el (tramp-call-process): Add traces.
9281         (tramp-handle-unhandled-file-name-directory): Return "/".
9283 2014-06-02  Wilson Snyder  <wsnyder@wsnyder.org>
9285         Sync with upstream verilog-mode revision 3cd8144.
9286         * progmodes/verilog-mode.el (verilog-mode-version): Bump.
9287         (verilog-auto-arg-format): New option, to support newlines in AUTOARG.
9288         (verilog-type-font-keywords): Add nor.
9289         (verilog-batch-execute-func): Force reading of Local Variables.
9290         Fix printing "no changes to be saved" with verilog-batch.
9291         (verilog-auto-arg-ports): Doc fix.
9292         Add verilog-auto-arg-format to support newlines in AUTOARG.
9293         (verilog-auto-arg): Doc fix.
9295 2014-06-02  Glenn Morris  <rgm@gnu.org>
9297         * emulation/crisp.el, emulation/tpu-edt.el, emulation/tpu-extras.el:
9298         * emulation/tpu-mapper.el, emulation/vi.el, emulation/vip.el:
9299         * emulation/ws-mode.el: Move to obsolete/.
9300         * Makefile.in (AUTOGEN_VCS): Update for moved tpu-edu.el.
9302 2014-06-02  Eli Zaretskii  <eliz@gnu.org>
9304         * simple.el (keyboard-quit): Force update of mode lines, to remove
9305         the "Def" indicator, if we were defining a macro.  (Bug#17615)
9307 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9309         * minibuffer.el (minibuffer-force-complete-and-exit):
9310         Obey minibuffer-default (bug#17545).
9312         * progmodes/js.el (js-indent-line): Don't mix columns and chars
9313         (bug#17619).
9315         * subr.el (set-transient-map): Don't wait for some "nested"
9316         transient-map to finish if we're only supposed to be active for
9317         the next command (bug#17642).
9319 2014-06-02  Leo Liu  <sdl.web@gmail.com>
9321         * emacs-lisp/gv.el (window-buffer, window-display-table)
9322         (window-dedicated-p, window-hscroll, window-point, window-start):
9323         Fix gv-expander.  (Bug#17630)
9325 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9327         * mouse.el (mouse-posn-property): Ignore posn-point for mode-line
9328         clicks (bug#17633).
9330         * leim/quail/latin-pre.el ("latin-2-prefix"): Use ",," rather than ", "
9331         for the single comma, since ", " is *very* common in normal French text
9332         (bug#17643).
9334 2014-06-02  Glenn Morris  <rgm@gnu.org>
9336         * emacs-lisp/package.el (package-check-signature)
9337         (package-unsigned-archives): Fix :version.
9339 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9341         * subr.el (sit-for): Don't run input-methods (bug#15614).
9343 2014-06-02  Glenn Morris  <rgm@gnu.org>
9345         * cus-start.el: Fix some :version numbers.
9347 2014-06-02  Stefan Monnier  <monnier@iro.umontreal.ca>
9349         * simple.el (deactivate-mark): Set mark-active to nil even if
9350         deactivation is done via setting transient-mark-mode to nil,
9351         since one is buffer-local and the other is global.
9353         * emacs-lisp/byte-opt.el (byte-optimize-binary-predicate): Don't assume
9354         there can't be more than 2 arguments (bug#17584).
9356 2014-06-02  Glenn Morris  <rgm@gnu.org>
9358         * simple.el (filter-buffer-substring-functions)
9359         (filter-buffer-substring-function, buffer-substring-filters)
9360         (filter-buffer-substring, buffer-substring--filter): Doc fixes.
9362         * minibuffer.el (completion-in-region-functions, completion-in-region)
9363         (completion--in-region): Doc fixes.
9365         * abbrev.el (abbrev-expand-functions, abbrev-expand-function)
9366         (expand-abbrev, abbrev--default-expand): Doc fixes.
9368 2014-06-02  Paul Eggert  <eggert@cs.ucla.edu>
9370         Include sources used to create macuvs.h.
9371         * international/README: Refer to the Unicode Terms of Use rather
9372         than copying it bodily here, as that simplifies maintenance.
9374 2014-06-01  Glenn Morris  <rgm@gnu.org>
9376         * loadup.el (load-prefer-newer): Set non-nil when dumping.  (Bug#17629)
9378 2014-05-31  Glenn Morris  <rgm@gnu.org>
9380         * files.el (locate-dominating-file): Expand file argument.  (Bug#17641)
9382 2014-05-30  Glenn Morris  <rgm@gnu.org>
9384         * loadup.el: Treat `command-line-args' more flexibly.
9386 2014-05-30  Alan Mackenzie  <acm@muc.de>
9388         Guard (looking-at "\\s!") from XEmacs.
9389         * progmodes/cc-engine.el (c-state-pp-to-literal): Add guard form.
9391 2014-05-30    Ken Olum  <kdo@cosmos.phy.tufts.edu>
9393         * mail/rmail.el (rmail-delete-forward, rmail-delete-backward):
9394         The argument COUNT is now optional, to be more backward-compatible.
9395         Doc fix.  (Bug#17560)
9397 2014-05-29  Reuben Thomas  <rrt@sc3d.org>
9399         * whitespace.el (whitespace-report-region):
9400         Simplify documentation.
9401         (whitespace-report-region): Allow report-if-bogus to take the
9402         value `never', for non-interactive use.
9403         (whitespace-report): Refer to whitespace-report-region's
9404         documentation.
9406 2014-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
9408         * whitespace.el: Use font-lock-flush.  Minimize refontifications.
9409         Side benefit: it works without jit-lock.
9410         (whitespace-point--used): New buffer-local var.
9411         (whitespace-color-on): Initialize it and flush it.  Use font-lock-flush.
9412         (whitespace-color-off): Use font-lock-flush.
9413         (whitespace-point--used, whitespace-point--flush-used): New functions.
9414         (whitespace-trailing-regexp, whitespace-empty-at-bob-regexp)
9415         (whitespace-empty-at-eob-regexp): Use them.
9416         (whitespace-post-command-hook): Rewrite.
9418         * font-lock.el (font-lock-flush, font-lock-ensure): New functions.
9419         (font-lock-fontify-buffer): Mark interactive-only.
9420         (font-lock-multiline, font-lock-fontified, font-lock-set-defaults):
9421         Make buffer-local.
9422         (font-lock-specified-p): Remove redundant boundp check.
9423         (font-lock-flush-function, font-lock-ensure-function): New vars.
9424         (font-lock-turn-on-thing-lock): Set them.
9425         (font-lock-default-fontify-buffer): Obey font-lock-dont-widen.
9426         (font-lock-after-change-function): Make `old-len' optional.
9427         (font-lock-set-defaults): Remove redundant `set' of font-lock-defaults.
9428         Call font-lock-flush, just in case.
9429         * progmodes/verilog-mode.el (verilog-preprocess): Disable workaround in
9430         recent Emacsen.
9431         * progmodes/vera-mode.el (vera-fontify-buffer): Declare obsolete.
9432         (vera-mode-map, vera-mode-menu): Remove bindings to it.
9433         * progmodes/idlw-help.el (idlwave-help-fontify): Use font-lock-ensure
9434         and with-syntax-table.
9435         * textmodes/conf-mode.el (conf-quote-normal):
9436         * progmodes/sh-script.el (sh-set-shell):
9437         * progmodes/prog-mode.el (prettify-symbols-mode):
9438         * progmodes/f90.el (f90-font-lock-n):
9439         * progmodes/cwarn.el (cwarn-mode):
9440         * nxml/nxml-mode.el (nxml-toggle-char-ref-extra-display):
9441         * progmodes/compile.el (compilation-setup, compilation--unsetup):
9442         * hi-lock.el (hi-lock-mode, hi-lock-unface-buffer)
9443         (hi-lock-set-pattern, hi-lock-set-file-patterns): Use font-lock-flush.
9444         * mail/rmail.el (rmail-variables): Set font-lock-dont-widen instead of
9445         font-lock-fontify-buffer-function and
9446         font-lock-unfontify-buffer-function.
9447         (rmail-unfontify-buffer-function, rmail-fontify-message):
9448         Use with-silent-modifications.
9449         * htmlfontify.el (hfy-force-fontification): Use jit-lock-fontify-now
9450         and font-lock-ensure.
9451         * bs.el (bs-show-in-buffer): Use font-lock-ensure.
9453 2014-05-28  Thien-Thi Nguyen  <ttn@gnu.org>
9455         * emacs-lisp/package.el (package-generate-autoloads):
9456         Inhibit backup files.
9458 2014-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9460         * progmodes/hideshow.el (hs-hide-all): Call syntax-propertize
9461         (bug#17608).
9463 2014-05-21  Michal Nazarewicz  <mina86@mina86.com>
9465         * textmodes/tildify.el (tildify-buffer, tildify-region):
9466         Add dont-ask option.
9468 2014-05-28  Stefan Monnier  <monnier@iro.umontreal.ca>
9470         * subr.el (zerop): Move from C.  Add compiler-macro (bug#17475).
9471         * emacs-lisp/byte-opt.el (byte-optimize-zerop): Remove.
9473         * subr.el (internal--funcall-interactively): New.
9474         (internal--call-interactively): Remove.
9475         (called-interactively-p): Detect funcall-interactively instead of
9476         call-interactively.
9477         * simple.el (repeat-complex-command): Use funcall-interactively.
9478         (repeat-complex-command--called-interactively-skip): Remove.
9480 2014-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
9482         * register.el (register-read-with-preview): Don't burp on
9483         frame switches (e.g. due to the frame we just popped).
9485         * mouse.el (mouse-set-region): Handle spurious drag events (bug#17562).
9486         (mouse-drag-track): Annotate `mouse-drag-start' so we know we moved.
9488 2014-05-26  Andreas Schwab  <schwab@linux-m68k.org>
9490         * cus-face.el (custom-face-attributes): Add :distant-foreground.
9492 2014-05-26  Martin Rudalics  <rudalics@gmx.at>
9494         * window.el (window--dump-frame): Remove interactive specification.
9496 2014-05-26  Glenn Morris  <rgm@gnu.org>
9498         * hippie-exp.el (he-line-search-regexp):
9499         Handle comint-prompt-regexp containing subgroups.  (Bug#17529)
9501 2014-05-26  Stephen Berman  <stephen.berman@gmx.net>
9503         * calendar/todo-mode.el: Remove dependence on auto-mode-alist,
9504         to avoid errors when trying to create or visit a file foo.todo
9505         located outside to todo-directory, and to allow having such files
9506         without them being tied to Todo mode (bug#17482).
9507         (todo-show, todo-move-category, todo-merge-category, todo-find-archive)
9508         (todo-archive-done-item, todo-find-filtered-items-file)
9509         (todo-filter-items, todo-find-item, todo-diary-goto-entry)
9510         (todo-category-completions, todo-read-category): When visiting a
9511         Todo file, make sure we're in the right mode and the buffer local
9512         variables are set.
9513         (todo-make-categories-list, todo-reset-nondiary-marker)
9514         (todo-reset-done-string, todo-reset-comment-string):
9515         After processing all Todo files, kill the buffers of those files that
9516         weren't being visited before the processing.
9517         (todo-display-as-todo-file, todo-add-to-buffer-list)
9518         (todo-visit-files-commands): Comment out.
9519         (todo-modes-set-3, todo-mode): Comment out additions to find-file-hook.
9520         (auto-mode-alist): Remove add-to-list calls making Todo file
9521         extensions unrestrictedly tied to Todo modes.
9523 2014-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9525         * emacs-lisp/nadvice.el (advice--member-p): Change second arg.
9526         (advice-function-member-p): Tell it to check both names and functions
9527         (bug#17531).
9528         (advice--add-function): Adjust call accordingly.
9530 2014-05-26  Stephen Berman  <stephen.berman@gmx.net>
9532         * calendar/todo-mode.el: Miscellaneous bug fixes.
9533         (todo-delete-file): When deleting an archive but not its todo
9534         file, make sure to update the todo file's category sexp.
9535         (todo-move-category): Keep the moved category's name unless the
9536         file moved to already has a category with that name.  If the
9537         numerically last category of the source file was moved, make the
9538         first category current to avoid selecting a nonexisting category.
9539         (todo-merge-category): Fix implementation to make merging to a
9540         category in another file work as documented.  Eliminate now
9541         insufficient and unnecessary renaming of archive category, correct
9542         document string accordingly, and clarify it.  If the numerically
9543         last category of the source file was merged, make the first
9544         category current to avoid selecting a nonexisting category.
9545         (todo-archive-done-item): When there are marked items and point
9546         happens to be on an unmarked item, ignore the latter.  Don't leave
9547         point below last item after archiving marked items.
9548         (todo-unarchive-items): Fix logic to ensure unarchiving an item
9549         from an archive with only one category deletes the archive only
9550         when the category is empty after unarchiving.  Make sure the todo
9551         file's category sexp is updated.
9552         (todo-read-file-name): Allow an existing file name even when it is
9553         not required (todo-move-category needs this to work as documented).
9554         (todo-add-file): Call todo-validate-name to reject the name of an
9555         existing todo file (needed due to fix in todo-read-file-name).
9556         (todo-reset-nondiary-marker): Also reset in filtered items files.
9557         (todo-reset-done-string, todo-reset-comment-string): Also reset in
9558         regexp filtered items files.
9559         (todo-reset-highlight-item): Also reset in filtered items files.
9560         Fix incorrect variable reference in document string.
9562 2014-05-26  Glenn Morris  <rgm@gnu.org>
9564         * window.el (window--dump-frame): Avoid error in --without-x builds.
9566 2014-05-26  Glenn Morris  <rgm@gnu.org>
9568         * nxml/nxml-mode.el (xml-mode): Only define this alias once.
9570 2014-05-26  Eli Zaretskii  <eliz@gnu.org>
9572         * frame.el (set-frame-font): Doc fix.
9574         * menu-bar.el (menu-set-font): Doc fix.  (Bug#17532)
9576 2014-05-26  Dmitry Gutov  <dgutov@yandex.ru>
9578         * emacs-lisp/package.el (package--download-one-archive):
9579         Use `write-region' instead of `save-buffer' to avoid running various
9580         hooks.  (Bug#17155)
9581         (describe-package-1): Same.  Insert newline at the end of the
9582         buffer if appropriate.
9584 2014-05-26  Juri Linkov  <juri@jurta.org>
9586         * avoid.el (mouse-avoidance-set-mouse-position): Don't raise frame.
9587         (mouse-avoidance-ignore-p): Remove `switch-frame', add `focus-out'.
9588         Add more modifiers: meta, control, shift, hyper, super, alt.
9589         (Bug#17439)
9591         * avoid.el (mouse-avoidance-banish-position): Fix defcustom :options
9592         to allow changing its value with `set-variable'.
9594 2014-05-26  Stefan Monnier  <monnier@iro.umontreal.ca>
9596         * progmodes/scheme.el (scheme-mode-syntax-table): Remove hack for
9597         #; comments.
9598         (scheme-syntax-propertize, scheme-syntax-propertize-sexp-comment):
9599         New functions.
9600         (scheme-mode-variables): Set syntax-propertize-function instead of
9601         font-lock-syntactic-face-function.
9602         (scheme-font-lock-syntactic-face-function): Delete.
9604         * emacs-lisp/lisp.el (end-of-defun): Ensure we move (bug#17274).
9606         * emacs-lisp/timer.el (timer-event-handler): Don't run if canceled
9607         (bug#17392).
9609 2014-05-26  Michael Albinus  <michael.albinus@gmx.de>
9611         * net/tramp-sh.el (tramp-find-inline-encoding): Do not match "%%t"
9612         for a temporary file name.
9614 2014-05-26  Eli Zaretskii  <eliz@gnu.org>
9616         * simple.el (line-move-ignore-invisible): Doc fix.  (Bug#17511)
9618 2014-05-26  Michael Albinus  <michael.albinus@gmx.de>
9620         * net/dbus.el (dbus-init-bus, dbus-call-method)
9621         (dbus-call-method-asynchronously, dbus-send-signal)
9622         (dbus-method-return-internal, dbus-method-error-internal):
9623         Check, whether Emacs has been compiled with D-Bus support.  (Bug#17508)
9625 2014-05-26  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
9627         * emacs-lisp/eieio-opt.el (eieio-help-class): Correctly deal with
9628         methods which do not have a doc string.  (Bug#17490)
9630 2014-05-25  Tassilo Horn  <tsdh@gnu.org>
9632         * textmodes/reftex-ref.el (reftex-format-special): Make it work
9633         also for AMS Math's \eqref macro.
9635 2014-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
9637         Arrange to never byte-compile the generated -pkg.el file.
9639         * emacs-lisp/package.el (package-generate-description-file):
9640         Output first-line comment to set buffer-local var `no-byte-compile'.
9641         Suggested by Dmitry Gutov:
9642         <http://lists.gnu.org/archive/html/emacs-devel/2014-05/msg00401.html>.
9644 2014-05-25  Thien-Thi Nguyen  <ttn@gnu.org>
9646         Fix bug: Properly quote args to generated -pkg.el `define-package'.
9648         * emacs-lisp/package.el (package-generate-description-file):
9649         Inline `package--alist-to-plist'; rewrite to selectively
9650         quote alist values that are not self-quoting.
9651         (package--alist-to-plist): Delete func.
9653 2014-05-25  Andreas Schwab  <schwab@linux-m68k.org>
9655         * term/xterm.el (xterm-function-map): Add mapping for shifted
9656         keypad keys.
9658 2014-05-24  Daniel Colascione  <dancol@dancol.org>
9660         * progmodes/subword.el (subword-find-word-boundary): Move point to
9661         correct spot before search.  (Bug#17580)
9663         * emacs-lisp/nadvice.el (defun): Write in eval-and-compile to avoid
9664         breaking the build.
9666 2014-05-24  Leo Liu  <sdl.web@gmail.com>
9668         * calc/calc.el (math-bignum): Handle most-negative-fixnum.  (Bug#17556)
9670 2014-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
9672         * minibuffer.el (completion--sreverse): Remove.
9673         (completion--common-suffix): Use `reverse' instead.
9674         * emacs-lisp/regexp-opt.el (regexp-opt-group): Use `reverse' on strings.
9676 2014-05-22  Glenn Morris  <rgm@gnu.org>
9678         * shell.el (shell-mode) <shell-dirstack-query>: Bypass bash aliases.
9680 2014-05-21  Daniel Colascione  <dancol@dancol.org>
9682         * files.el (interpreter-mode-alist): Add mksh.
9684         * progmodes/sh-script.el (sh-ancestor-alist): Add mksh, a pdksh
9685         derivative.
9686         (sh-alias-alist): Alias /system/bin/sh (Android's system shell) to
9687         mksh. Improve custom spec; allow regular expressions.
9688         (sh-shell): Delegate name splitting to `sh-canonicalize-shell'.
9689         (sh-after-hack-local-variables): New function.
9690         (sh-mode): Use it; respect file-local `sh-shell' variable.  (Bug#17333)
9691         (sh-set-shell): Use `sh-canonicalize-shell' instead of open-coding
9692         the normalization.
9693         (sh-canonicalize-shell): Rewrite to support regexes.
9695 2014-05-21  Leo Liu  <sdl.web@gmail.com>
9697         * emacs-lisp/cl-lib.el (cl-endp): Fix last change.
9699 2014-05-19  Leo Liu  <sdl.web@gmail.com>
9701         * emacs-lisp/cl-lib.el (cl-endp): Conform to CL's semantics.
9703 2014-05-18  Glenn Morris  <rgm@gnu.org>
9705         * loadup.el:
9706         * play/gametree.el: `track-mouse' is always defined since 2012-11-24.
9708 2014-05-14  Sam Steingold  <sds@gnu.org>
9710         * progmodes/python.el (python-shell-get-or-create-process):
9711         Do not bind `current-prefix-arg' so that C-c C-z does not talk
9712         back unless requested.
9714 2014-05-14  Glenn Morris  <rgm@gnu.org>
9716         * subr.el (with-file-modes): New macro.
9717         * printing.el (pr-save-file-modes): Make obsolete.
9718         * eshell/esh-util.el (eshell-with-file-modes): Make obsolete.
9719         * emacs-lisp/lisp-mode.el (lisp-el-font-lock-keywords-2):
9720         Add with-file-modes.
9721         * doc-view.el (doc-view-make-safe-dir):
9722         * epg.el (epg--start):
9723         * files.el (locate-user-emacs-file, make-temp-file)
9724         (backup-buffer-copy, move-file-to-trash):
9725         * printing.el (pr-despool-print, pr-call-process, pr-text2ps):
9726         * eshell/esh-util.el (eshell-with-private-file-modes)
9727         (eshell-make-private-directory):
9728         * net/browse-url.el (browse-url-mosaic):
9729         * obsolete/mailpost.el (post-mail-send-it):
9730         * obsolete/pgg-pgp.el (pgg-pgp-verify-region):
9731         * obsolete/pgg-pgp5.el (pgg-pgp5-verify-region):
9732         Use with-file-modes.
9734         * vc/emerge.el (emerge-make-temp-file): Simplify.
9736 2014-05-14  Stephen Berman <stephen.berman@gmx.net>
9737             Stefan Monnier  <monnier@iro.umontreal.ca>
9739         * minibuffer.el (completion-pcm--merge-try): Merge trailing / with
9740         suffix (bug#15419).
9742 2014-05-14  Glenn Morris  <rgm@gnu.org>
9744         * vc/emerge.el (emerge-temp-file-prefix):
9745         Make pointless option obsolete.
9746         (emerge-temp-file-mode): Make non-functional option obsolete.
9748 2014-05-14  Michael Albinus  <michael.albinus@gmx.de>
9750         * net/browse-url.el (browse-url):
9751         Use `unhandled-file-name-directory' when setting `default-directory',
9752         in order to circumvent stalled remote connections.  (Bug#17425)
9754 2014-05-14  Glenn Morris  <rgm@gnu.org>
9756         * printing.el (subst-char-in-string, make-temp-file, pr-get-symbol):
9757         Optimize on Emacs, which has the relevant functions for ages.
9759 2014-05-13  Stefan Monnier  <monnier@iro.umontreal.ca>
9761         * simple.el (undo-make-selective-list): Obey undo-no-redo.
9763 2014-05-12  Sam Steingold  <sds@gnu.org>
9765         * calendar/time-date.el (seconds-to-string): New function to
9766         pretty print time delay in seconds.
9768 2014-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9770         * mpc.el (mpc-format): Trim Date to the year.
9771         (mpc-songs-hashcons): Shorten the Date field.
9773         * emacs-lisp/nadvice.el (advice--interactive-form): Don't get fooled
9774         into autoloading just because of a silly indirection.
9776 2014-05-12  Santiago Payà i Miralta  <santiagopim@gmail.com>
9778         * vc/vc-hg.el (vc-hg-unregister): New function.  (Bug#17454)
9780 2014-05-12  Glenn Morris  <rgm@gnu.org>
9782         * emacs-lisp/find-gc.el: Move to ../admin.
9784         * printing.el (pr-version):
9785         * ps-print.el (ps-print-version): Also mention bug-gnu-emacs.
9787         * net/browse-url.el (browse-url-mosaic):
9788         Create /tmp/Mosaic.PID as a private file.
9790 2014-05-12  Stefan Monnier  <monnier@iro.umontreal.ca>
9792         * emacs-lisp/nadvice.el: Support adding a given function multiple times.
9793         (advice--member-p): If name is given, only compare the name.
9794         (advice--remove-function): Don't stop at the first match.
9795         (advice--normalize-place): New function.
9796         (add-function, remove-function): Use it.
9797         (advice--add-function): Pass the name, if any, to
9798         advice--remove-function.
9800 2014-05-12  Philipp Rumpf  <prumpf@gmail.com>  (tiny change)
9802         * electric.el (electric-indent-post-self-insert-function): Don't use
9803         `pos' after modifying the buffer (bug#17449).
9805 2014-05-12  Stephen Berman  <stephen.berman@gmx.net>
9807         * calendar/todo-mode.el (todo-insert-item-from-calendar):
9808         Correct argument list to conform to todo-insert-item--basic.
9810 2014-05-12  Glenn Morris  <rgm@gnu.org>
9812         * files.el (cd-absolute): Test if directory is accessible
9813         rather than executable.  (Bug#17330)
9815         * progmodes/compile.el (recompile):
9816         Handle C-u M-x recompile from a non-compilation buffer.  (Bug#17444)
9818         * net/browse-url.el (browse-url-mosaic):
9819         Be careful when writing /tmp/Mosaic.PID.  (Bug#17428)
9820         This is CVE-2014-3423.
9822 2014-05-11  Stefan Monnier  <monnier@iro.umontreal.ca>
9824         * mouse.el: Use the normal toplevel loop while dragging.
9825         (mouse-set-point): Handle multi-clicks.
9826         (mouse-set-region): Handle multi-clicks for drags.
9827         (mouse-drag-region): Update call accordingly.
9828         (mouse-drag-track): Remove `do-mouse-drag-region-post-process' hack.
9829         Use the normal event loop instead of a local while/read-event loop.
9830         (global-map): Remove redundant bindings for double/triple-mouse-1.
9831         * xt-mouse.el (xterm-mouse-translate-1): Only process one event at a time.
9832         Generate synthetic down events when the protocol only sends up events.
9833         (xterm-mouse-last): Remove.
9834         (xterm-mouse--read-event-sequence-1000): Use xterm-mouse-last-down
9835         terminal parameter instead.
9836         (xterm-mouse--set-click-count): New function.
9837         (xterm-mouse-event): Detect/generate double/triple clicks.
9838         * reveal.el (reveal-close-old-overlays): Don't close while dragging.
9840         * info.el (Info-quoted): New face.
9841         (Info-mode-font-lock-keywords): New var.
9842         (Info-mode): Use it.
9844         * emacs-lisp/lisp-mode.el (preceding-sexp): Exclude leading "," which
9845         are a hindrance for C-x C-e.
9847 2014-05-11  Leo Liu  <sdl.web@gmail.com>
9849         * net/rcirc.el (rcirc-sentinel): Fix last change.
9851 2014-05-08  Sam Steingold  <sds@gnu.org>
9853         * net/rcirc.el (rcirc-reconnect-delay): New user option.
9854         (rcirc-sentinel): Auto-reconnect to the server if
9855         `rcirc-reconnect-delay' is non-0 (but not more often than its
9856         value in case the host is off-line).
9858 2014-05-09  Eli Zaretskii  <eliz@gnu.org>
9860         * progmodes/grep.el (lgrep): Fix a typo in last commit.
9862 2014-05-09  Glenn Morris  <rgm@gnu.org>
9864         * files.el (file-expand-wildcards):
9865         * man.el (Man-support-local-filenames):
9866         * printing.el (pr-i-directory, pr-interface-directory):
9867         * progmodes/grep.el (lgrep, rgrep):
9868         * textmodes/ispell.el (ispell-call-process)
9869         (ispell-call-process-region, ispell-start-process)
9870         (ispell-init-process): Use file-accessible-directory-p.
9872 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9874         * xt-mouse.el: Drop spurious/oddly shaped events (bug#17378).
9875         (xterm-mouse--read-event-sequence-1000): Return nil if something
9876         looks fishy.
9877         (xterm-mouse-event): Propagate it.
9878         (xterm-mouse-translate-1): Handle it.
9880 2014-05-08  Stephen Berman  <stephen.berman@gmx.net>
9882         * calendar/todo-mode.el (todo-insert-item--apply-args): When all
9883         four slots of the parameter list are filled, make sure to pass it
9884         to the argument list of todo-insert-item--basic.
9886 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9888         * emacs-lisp/package.el (package-compute-transaction): Topological sort.
9889         Add optional `seen' argument to detect and break infinite loops.
9891 2014-05-08  Eli Zaretskii  <eliz@gnu.org>
9893         * emacs-lisp/find-gc.el (find-gc-unsafe, find-unsafe-funcs)
9894         (trace-unsafe, trace-use-tree): Make parentheses style be
9895         according to Emacs style.
9897 2014-05-08  Michael Albinus  <michael.albinus@gmx.de>
9899         * net/tramp-sh.el (tramp-remote-process-environment):
9900         Remove HISTFILE and HISTSIZE; it's too late to set them here.
9901         Add :version entry.
9902         (tramp-open-shell): Do not let-bind `tramp-end-of-output'.
9903         Add "HISTFILE=/dev/null" to the shell's env arguments.  Do not send
9904         extra "PSx=..." commands.
9905         (tramp-maybe-open-connection): Setenv HISTFILE to /dev/null.
9906         (Bug#17295)
9908         (tramp-uudecode): Replace the hard-coded temporary file name by a
9909         format specifier.
9910         (tramp-remote-coding-commands): Enhance docstring.
9911         (tramp-find-inline-encoding): Replace "%t" by a temporary file
9912         name.  (Bug#17415)
9913         This is CVE-2014-3424.
9915 2014-05-08  Glenn Morris  <rgm@gnu.org>
9917         * emacs-lisp/find-gc.el (find-gc-source-directory): Give it a value.
9918         (find-gc-source-files): Update some names.
9919         (trace-call-tree): Simplify and update.
9920         Avoid predictable temp-file names.  (http://bugs.debian.org/747100)
9921         This is CVE-2014-3422.
9923 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9925         * minibuffer.el (completion--try-word-completion): Revert fix for
9926         Bug#15980 (bug#17375).
9928         * xt-mouse.el (xterm-mouse--read-event-sequence-1000): (bug#17378)
9929         Always store button numbers in the same way in xterm-mouse-last;
9930         Don't burp is xterm-mouse-last is not set as expected.
9931         Never return negative indices.
9933 2014-05-08  Dmitry Gutov  <dgutov@yandex.ru>
9935         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
9936         Backtrack one char if the global/char-literal var matcher hits
9937         inside a string.  The next char could be the beginning of an
9938         expression expansion.
9940 2014-05-08  Glenn Morris  <rgm@gnu.org>
9942         * help-fns.el (describe-function-1): Test for an autoload before a
9943         macro, since `macrop' works on autoloads.  (Bug#17410)
9945 2014-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
9947         * electric.el (electric-indent-functions-without-reindent): Add yaml.
9949         * minibuffer.el (completion-table-with-quoting) <completion--unquote>:
9950         Make sure the new point we return is within the new string (bug#17239).
9952 2014-05-05  Daniel Colascione  <dancol@dancol.org>
9954         * progmodes/compile.el (compilation-error-regexp-alist-alist):
9955         Port `gnu' pattern to rx.
9957 2014-05-05  Jarek Czekalski  <jarekczek@poczta.onet.pl>
9959         Remove unneeded prompt when closing a buffer with active
9960         emacsclient ("Buffer ... still has clients"), #16548.
9961         * server.el (server-start): Remove the only call to:
9962         (server-kill-buffer-query-function): Remove.
9964 2014-05-04  Leo Liu  <sdl.web@gmail.com>
9966         * calendar/diary-lib.el (calendar-chinese-month-name-array):
9967         Defvar to pacify compiler.
9969 2014-05-04  Eli Zaretskii  <eliz@gnu.org>
9971         * mail/rmailsum.el (rmail-new-summary-1): Fix a typo in a comment.
9973 2014-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
9975         * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
9976         Use nil rather than `default' for the "default" appearance (bug#17388).
9977         * vc/ediff-util.el (ediff-inferior-compare-regions)
9978         (ediff-toggle-autorefine, ediff-unselect-difference): Don't use
9979         a misleading `default' value when it's really a boolean.
9980         * vc/ediff-init.el (ediff-set-overlay-face): Don't set help-echo if the
9981         overlay is not visible.
9983 2014-05-04  Stephen Berman  <stephen.berman@gmx.net>
9985         * calendar/todo-mode.el (todo-edit-file): Use display-warning.
9986         (todo-menu): Uncomment and update.
9988 2014-05-04  Stephen Berman  <stephen.berman@gmx.net>
9990         * calendar/todo-mode.el: Reimplement item editing to have the same
9991         basic user interface as item insertion, and make small UI and
9992         larger internal improvements to the latter.
9993         (todo-insert-item): Add reference to the Todo mode user manual to
9994         the documentation string.
9995         (todo-insert-item--basic): Rename from todo-basic-insert-item and
9996         adjust all callers.  Change signature to combine diary and
9997         nonmarking arguments.  Incorporate functionality of deleted item
9998         copying command and add error checking.  Remove detailed
9999         descriptions of the arguments from the documentation string, since
10000         this is treated in the Todo mode user manual.
10001         (todo-copy-item, todo-edit-multiline-item)
10002         (todo-edit-done-item-comment, todo-edit-item-header)
10003         (todo-edit-item-time, todo-edit-item-date-from-calendar)
10004         (todo-edit-item-date-to-today, todo-edit-item-date-day-name)
10005         (todo-edit-item-date-year, todo-edit-item-date-month)
10006         (todo-edit-item-date-day, todo-edit-item-diary-nonmarking):
10007         Remove.
10008         (todo-edit-item): Reimplement as wrapper command for
10009         todo-edit-item--next-key and make it distinguish done and not done
10010         todo items.
10011         (todo-edit-item--text): New function, replacing old command
10012         todo-edit-item and incorporating deleted commands
10013         todo-edit-multiline-item and todo-edit-done-item-comment.
10014         (todo-edit-item--header): Rename from todo-basic-edit-item-header.
10015         Use only numeric value of prefix argument.  Remove detailed
10016         descriptions of the arguments from the documentation string, since
10017         this is treated in the Todo mode user manual.
10018         (todo-edit-item--diary-inclusion): New function, replacing old
10019         command todo-edit-item-diary-inclusion and incorporating and fixing
10020         functionality of deleted command todo-edit-item-diary-nonmarking,
10021         making sure to remove todo-nondiary-marker when adding
10022         diary-nonmarking-symbol.
10023         (todo-edit-category-diary-inclusion): Make sure to delete
10024         diary-nonmarking-symbol when adding todo-nondiary-marker.
10025         (todo-edit-category-diary-nonmarking): Fix indentation.
10026         (todo-insert-item--parameters): Group diary and nonmarking
10027         parameters together.
10028         (todo-insert-item--apply-args): Adjust to signature of
10029         todo-insert-item--basic and incorporate copy parameter.
10030         Make small code improvements.
10031         (todo-insert-item--next-param): Improve prompt and adjust it to
10032         new parameter grouping.  Remove obsolete code.
10033         (todo-edit-item--param-key-alist)
10034         (todo-edit-item--date-param-key-alist)
10035         (todo-edit-done-item--param-key-alist): New defconsts.
10036         (todo-edit-item--prompt): New variable.
10037         (todo-edit-item--next-key): New function.
10038         (todo-key-bindings-t): Bind "e" to todo-edit-item.
10039         Remove bindings of deleted commands.
10041 2014-05-04  Leo Liu  <sdl.web@gmail.com>
10043         * emacs-lisp/cl-macs.el (cl-deftype): Fix indentation.
10045 2014-05-04  Glenn Morris  <rgm@gnu.org>
10047         * allout-widgets.el (allout-widgets-tally)
10048         (allout-decorate-item-guides):
10049         * menu-bar.el (menu-bar-positive-p):
10050         * minibuffer.el (completion-pcm-complete-word-inserts-delimiters):
10051         * progmodes/gdb-mi.el (gdbmi-same-start, gdbmi-is-number):
10052         * progmodes/js.el (js--inside-param-list-p)
10053         (js--inside-dojo-class-list-p, js--forward-destructuring-spec):
10054         * progmodes/prolog.el (region-exists-p):
10055         * progmodes/verilog-mode.el (verilog-scan-cache-ok-p):
10056         * textmodes/reftex-parse.el (reftex-using-biblatex-p):
10057         Doc fixes (replace `iff').
10059 2014-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10061         * mpc.el (mpc-volume-mouse-set): Don't burp at the boundaries.
10063 2014-05-04  Leo Liu  <sdl.web@gmail.com>
10065         Support Chinese diary entries in calendar and diary.  (Bug#17393)
10066         * calendar/cal-china.el (calendar-chinese-month-name-array): New var.
10067         (calendar-chinese-from-absolute-for-diary)
10068         (calendar-chinese-to-absolute-for-diary)
10069         (calendar-chinese-mark-date-pattern, diary-chinese-mark-entries)
10070         (diary-chinese-list-entries): New functions to list and mark
10071         Chinese diary entries in the calendar window.
10072         (diary-chinese-anniversary)
10073         (diary-chinese-insert-anniversary-entry)
10074         (diary-chinese-insert-entry, diary-chinese-insert-monthly-entry)
10075         (diary-chinese-insert-yearly-entry): New commands to insert
10076         Chinese diary entries.
10078         * calendar/diary-lib.el (diary-font-lock-keywords):
10079         Support font-locking Chinese dates.
10081         * calendar/cal-menu.el (cal-menu-diary-menu): Add entries for
10082         inserting Chinese diary entries.
10084         * calendar/calendar.el (diary-chinese-entry-symbol):
10085         New customizable variable.
10086         (calendar-mode-map): Add bindings for inserting Chinese diary
10087         entries.
10089 2014-05-03  Juri Linkov  <juri@jurta.org>
10091         * dired.el (dired-check-switches, dired-switches-recursive-p):
10092         New functions.  (Bug#17218)
10093         (dired-switches-escape-p, dired-move-to-end-of-filename):
10094         Use `dired-check-switches'.
10095         (dired-insert-old-subdirs, dired-build-subdir-alist)
10096         (dired-sort-R-check): Use `dired-switches-recursive-p'.
10098 2014-05-01  Barry O'Reilly  <gundaetiapo@gmail.com>
10100         * simple.el (undo-make-selective-list): New algorithm fixes
10101         incorrectness of position adjustments when undoing in region.
10102         (Bug#17235)
10103         (undo-elt-crosses-region): Make obsolete.
10104         (undo-adjust-elt, undo-adjust-beg-end, undo-adjust-pos):
10105         New functions to adjust positions using undo-deltas.
10107 2014-05-01  Stefan Monnier  <monnier@iro.umontreal.ca>
10109         * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): Only highlight past
10110         the last consecutive closing paren (bug#17345).
10112 2014-04-30  Reuben Thomas  <rrt@sc3d.org>
10114         * dired.el (dired-mode): make terminology for eXpunge command
10115         consistent.  (Bug#17276)
10117 2014-04-30  Eli Zaretskii  <eliz@gnu.org>
10119         * dired.el (dired-initial-position-hook, dired-initial-position):
10120         Doc string fixes.
10122 2014-04-30  Glenn Morris  <rgm@gnu.org>
10124         * mail/rmail.el (rmail-quit): Handle killed summaries.  (Bug#17283)
10126 2014-04-30  Matthias Dahl  <matthias.dahl@binary-island.eu>
10128         * faces.el (face-spec-recalc): Apply X resources only after the
10129         defface spec has been applied. Thus, X resources are no longer
10130         overriden by the defface spec which also fixes issues on win32 where
10131         the toolbar coloring was wrong because it is set through X resources
10132         and was (wrongfully) overriden.  (Bug#16694)
10134 2014-04-30  Stefan Monnier  <monnier@iro.umontreal.ca>
10136         * textmodes/rst.el (electric-pair-pairs): Declare.
10137         (rst-mode): Set it (bug#17131).
10139 2014-04-30  Juri Linkov  <juri@jurta.org>
10141         * desktop.el (desktop-value-to-string): Let-bind `print-length'
10142         and `print-level' to nil.  (Bug#17351)
10144 2014-04-30  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
10146         * battery.el (battery-update): Handle the case where battery
10147         status is "N/A" (bug#17319).
10149 2014-04-28  Stefan Monnier  <monnier@iro.umontreal.ca>
10151         * progmodes/ps-mode.el: Use SMIE.  Move string and comment recognition
10152         to syntax-propertize.
10153         (ps-mode-auto-indent): Mark as obsolete.
10154         (ps-mode-font-lock-keywords-1): Remove string-or-comment handling.
10155         (ps-mode-font-lock-keywords-3): Use symbol regexp operators instead of
10156         word regexp operators.
10157         (ps-mode-map): Move initialization into declaration.  Remove binding
10158         for TAB, RET, >, ], and }.
10159         (ps-mode-syntax-table): Move initialization into declaration.
10160         Don't give word syntax to non-word chars.
10161         (ps-run-mode-map): Move initialization into declaration.
10162         (ps-mode-menu-main): Remove auto-indent entry.
10163         (ps-mode-smie-rules): New function.
10164         (ps-mode): Setup smie, syntax-propertize, and electric-indent-mode.
10165         (ps-mode-looking-at-nested, ps-mode-match-string-or-comment): Remove.
10166         (ps-mode--string-syntax-table): New const.
10167         (ps-mode--syntax-propertize-special, ps-mode-syntax-propertize):
10168         New functions.
10169         (ps-mode-newline, ps-mode-tabkey, ps-mode-r-brace, ps-mode-r-angle)
10170         (ps-mode-r-gt, ps-mode-r-balance): Remove functions.
10172 2014-04-27  Daniel Colascione  <dancol@dancol.org>
10174         * term/xterm.el (xterm-paste): Use large finite timeout when
10175         reading event to avoid putting keys in this-command-keys.
10177 2014-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10179         * progmodes/perl-mode.el (perl--syntax-exp-intro-regexp): New var.
10180         (perl-syntax-propertize-function): Use it.  Extend handling of
10181         here-docs to the unquoted case.
10183 2014-04-25  Eli Zaretskii  <eliz@gnu.org>
10185         * tooltip.el (tooltip-show-help-non-mode, tooltip-show-help):
10186         Use equal-including-properties to compare help-echo strings (bug#17331).
10188 2014-04-25  Leo Liu  <sdl.web@gmail.com>
10190         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-syntax-table):
10191         Fix syntax for @.  (Bug#17325)
10193 2014-04-25  Daniel Colascione  <dancol@dancol.org>
10195         * emacs-lisp/cl.el (gv): Require gv early to break eager
10196         macro-expansion cycles.
10198 2014-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
10200         * simple.el (region-active-p): Check there's a mark (bug#17324).
10202         * simple.el (completion-list-mode-map): Use choose-completion for the
10203         mouse binding as well (bug#17302).
10204         (completion-list-mode, completion-setup-function): Adjust docstring and
10205         echo area message accordingly.
10206         * progmodes/idlwave.el (idlwave-choose-completion): Adjust to new
10207         calling convention of choose-completion.
10208         * comint.el (comint-dynamic-list-completions):
10209         * term.el (term-dynamic-list-completions): Accept choose-completion.
10211         * progmodes/perl-mode.el (perl-syntax-propertize-function): Slash after
10212         &, |, +, - and * can't be a division (bug#17317).
10214         * term/xterm.el (xterm--version-handler): Don't use modern xterm
10215         features on gnome-terminal (bug#16988).
10217 2014-04-25  Thien-Thi Nguyen  <ttn@gnu.org>
10219         Improve Scheme font-locking for (define ((foo ...) ...) ...).
10221         * progmodes/scheme.el (scheme-font-lock-keywords-1): To find
10222         the declared object, ignore zero or more parens, not zero or one.
10224 2014-04-24  Leo Liu  <sdl.web@gmail.com>
10226         * progmodes/xscheme.el (xscheme-expressions-ring)
10227         (xscheme-expressions-ring-yank-pointer, xscheme-running-p)
10228         (xscheme-control-g-disabled-p, xscheme-process-filter-state)
10229         (xscheme-allow-output-p, xscheme-prompt)
10230         (xscheme-string-accumulator, xscheme-mode-string): Use defvar-local.
10232         * progmodes/scheme.el (would-be-symbol, next-sexp-as-string):
10233         Comment out unused functions.
10235 2014-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
10237         * info.el: Use lexical-binding and cl-lib.
10238         Use defvar-local and setq-local instead of make-local-variable.
10239         (Info-apropos-matches): Avoid add-to-list.
10240         (Info-edit-mode-map): Fix obsolescence call to Info-edit-map.
10242 2014-04-24  Daniel Colascione  <dancol@dancol.org>
10244         * progmodes/sh-script.el (sh-builtins): Add coproc to list of bash builtins.
10246 2014-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
10248         * emacs-lisp/cl-macs.el (cl--loop-let): Fix last merge.
10250 2014-04-22  Michael Heerdegen  <michael_heerdegen@web.de>
10252         * dired.el (dired-insert-set-properties): Do not consider
10253         subdirectory headings and empty lines to be information that
10254         `dired-hide-details-mode' should hide.  (Bug#17228)
10256 2014-04-22  Michael Albinus  <michael.albinus@gmx.de>
10258         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
10259         Remove test messages.
10260         (tramp-do-copy-or-rename-file-out-of-band): Do not quote `source'
10261         and `target' twice.
10263 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10265         * dframe.el (dframe-get-focus): Remove `hook' argument (bug#17311).
10266         * speedbar.el (speedbar-get-focus): Run the "hook" afterwards instead.
10268         * emacs-lisp/cl-macs.el (cl--loop-let): Avoid `nil' as var name.
10270 2014-04-22  Michael Albinus  <michael.albinus@gmx.de>
10272         * net/tramp-sh.el (tramp-sh-handle-file-name-all-completions):
10273         Set "IFS=" when using read builtin, in order to preserve spaces in
10274         the file name.  Add test messages for hunting a bug on hydra.
10275         (tramp-get-ls-command): Undo using "-b" argument.  It doesn't help.
10277 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10279         * progmodes/prog-mode.el (prettify-symbols--compose-symbol):
10280         Don't prettify a word within a symbol.
10282 2014-04-22  Michael Albinus  <michael.albinus@gmx.de>
10284         * net/tramp-sh.el (tramp-get-ls-command): Use "-b" argument if
10285         possible.
10287 2014-04-22  Daniel Colascione  <dancol@dancol.org>
10289         * emacs-lisp/byte-run.el (function-put): Unbreak build: don't
10290         use defun to define `function-put'.
10292 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10294         * emacs-lisp/lisp-mode.el (lisp--match-hidden-arg): New function.
10295         (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords-2): Use it.
10296         (lisp-mode-variables): Set font-lock-extra-managed-props.
10298         * emacs-lisp/byte-run.el (function-put): New function.
10299         (defun-declarations-alist): Use it.  Add `pure' and `side-effect-free'.
10300         * emacs-lisp/cl-macs.el (cl-defstruct, cl-struct-sequence-type)
10301         (cl-struct-slot-info, cl-struct-slot-offset, cl-struct-slot-value):
10302         Use them.
10304 2014-04-22  Daniel Colascione  <dancol@dancol.org>
10306         * emacs-lisp/macroexp.el (internal-macroexpand-for-load):
10307         Add `full-p' parameter; when nil, call `macroexpand' instead of
10308         `macroexpand-all'.
10310         * emacs-lisp/byte-run.el (eval-when-compile, eval-and-compile):
10311         Improve docstrings.
10313         * emacs-lisp/bytecomp.el (byte-compile-initial-macro-environment):
10314         Use lambda function values, not quoted lambdas.
10315         (byte-compile-recurse-toplevel): Remove extraneous &optional.
10317         * emacs-lisp/cl-macs.el
10318         (cl-struct-sequence-type, cl-struct-slot-info): Declare pure.
10319         (cl-struct-slot-value): Conditionally use aref or nth so that the
10320         compiler produces optimal code.
10322 2014-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
10324         * emacs-lisp/cl-macs.el (cl-struct-slot-offset): Mark as pure.
10325         (inline): Don't inline cl--set-elt.
10326         (cl-struct-slot-value): Remove explicit gv-setter and compiler-macro.
10327         Define as inlinable instead.
10328         (cl-struct-set-slot-value): Remove.
10330         * emacs-lisp/cl-lib.el (cl--set-elt): Remove.
10331         * emacs-lisp/cl-seq.el (cl-replace, cl-substitute, cl-nsubstitute):
10332         Use setf instead.
10334 2014-04-21  Daniel Colascione  <dancol@dancol.org>
10336         * emacs-lisp/cl-macs.el (cl--const-expr-val): We didn't need the
10337         last two parameters after all.
10338         (cl--expr-contains,cl--compiler-macro-typep,cl--compiler-macro-member)
10339         (cl--compiler-macro-assoc,cl-struct-slot-value)
10340         (cl-struct-set-slot-value): Stop using them.
10342 (2014-04-21  Stefan Monnier  <monnier@iro.umontreal.ca>
10344         * image-mode.el (image-mode-window-put): Don't assume there's a `t'
10345         entry in image-mode-winprops-alist.
10347 2014-04-21  Daniel Colascione  <dancol@dancol.org>
10349         * emacs-lisp/bytecomp.el (byte-compile-recurse-toplevel): New function.
10350         (byte-compile-recurse-toplevel, byte-compile-initial-macro-environment)
10351         (byte-compile-toplevel-file-form): Use it.
10353         * emacs-lisp/cl-macs.el:
10354         (cl--loop-let): Properly destructure `while' clauses.
10356 2014-04-20  Daniel Colascione  <dancol@dancol.org>
10358         * vc/vc.el (vc-root-dir): New public autoloaded function for
10359         generically finding the current VC root.
10360         * vc/vc-hooks.el (vc-not-supported): New error.
10361         (vc-call-backend): Signal `vc-not-supported' instead of generic error.
10363 2014-04-20  Daniel Colascione  <dancol@dancol.org>
10365         * emacs-lisp/cl-macs.el (cl-the): Make `cl-the' assert its type
10366         argument.
10367         (cl--const-expr-val): cl--const-expr-val should macroexpand its
10368         argument in case we're inside a symbol-macrolet.
10369         (cl--do-arglist, cl--compiler-macro-typep)
10370         (cl--compiler-macro-member, cl--compiler-macro-assoc): Pass macro
10371         environment to `cl--const-expr-val'.
10372         (cl-struct-sequence-type,cl-struct-slot-info)
10373         (cl-struct-slot-offset, cl-struct-slot-value)
10374         (cl-struct-set-slot-value): New functions.
10376 2014-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
10378         * progmodes/sh-script.el (sh-smie--sh-keyword-p): Handle variable
10379         assignments such as "case=hello" (bug#17297).
10381 2014-04-18  Michael Albinus  <michael.albinus@gmx.de>
10383         * net/tramp.el (tramp-run-real-handler, tramp-file-name-handler):
10384         Do not autoload.
10385         (tramp-file-name-handler, tramp-completion-file-name-handler):
10386         Revert patch from 2014-04-10, it isn't necessary anymore.
10387         (tramp-autoload-file-name-handler)
10388         (tramp-register-autoload-file-name-handlers): New defuns.
10389         (top): Autoload call of `tramp-register-autoload-file-name-handlers'.
10390         (tramp-register-file-name-handlers): Remove also
10391         `tramp-autoload-file-name-handler' from `file-name-handler-list'.
10392         Do not autoload its invocation, but eval it after loading of 'tramp.
10394         * net/tramp-adb.el (tramp-unload-hook): Unload `tramp-adb'.
10396         * net/tramp-compat.el (tramp-unload-hook): Unload `tramp-loaddefs'.
10398 2014-04-17  Daniel Colascione  <dancol@dancol.org>
10400         Add support for bracketed paste mode; add infrastructure for
10401         managing terminal mode enabling and disabling automatically.
10403         * xt-mouse.el:
10404         (xterm-mouse-mode): Simplify.
10405         (xterm-mouse-tracking-enable-sequence)
10406         (xterm-mouse-tracking-disable-sequence): New constants.
10407         (turn-on-xterm-mouse-tracking-on-terminal)
10408         (turn-off-xterm-mouse-tracking-on-terminal):
10409         Use tty-mode-set-strings and tty-mode-reset-strings terminal
10410         parameters instead of random hooks.
10411         (turn-on-xterm-mouse-tracking)
10412         (turn-off-xterm-mouse-tracking): Delete.
10414         * term/xterm.el (xterm-extra-capabilities): Fix bitrotted comment.
10415         (xterm-paste-ending-sequence): New constant.
10416         (xterm-paste): New command used for bracketed paste support.
10418         (xterm-modify-other-keys-terminal-list): Delete obsolete variable.
10419         (terminal-init-xterm-bracketed-paste-mode): New function.
10420         (terminal-init-xterm): Call it.
10421         (terminal-init-xterm-modify-other-keys): Use tty-mode-set-strings
10422         and tty-mode-reset-strings instead of random hooks.
10423         (xterm-turn-on-modify-other-keys)
10424         (xterm-turn-off-modify-other-keys)
10425         (xterm-remove-modify-other-keys): Delete obsolete functions.
10427         * term/screen.el: Rewrite to just use the xterm code.
10428         Add copyright notice.  Mention tmux.
10430 2014-04-17  Ian D  <dunni@gnu.org>  (tiny change)
10432         * image-mode.el (image-mode-window-put): Also update the property of
10433         the "default window".
10434         * doc-view.el (doc-view-new-window-function): If no window
10435         exists, move to the last known page.
10437 2014-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
10439         * progmodes/perl-mode.el (perl-calculate-indent): Don't auto-indent in
10440         here-documents (bug#17262).
10442 2014-04-16  Eli Zaretskii  <eliz@gnu.org>
10444         * term/pc-win.el (x-list-fonts, x-get-selection-value):
10445         Provide doc strings, as required by snarf-documentation.
10447 2014-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
10449         * ps-def.el (ps-generate-postscript-with-faces1): Use the new `sorted'
10450         arg of overlays-at.  Use `invisible-p'.
10452         * obsolete/lucid.el (extent-at):
10453         * htmlfontify.el (hfy-overlay-props-at): Use the new `sorted' arg of
10454         overlays-at.
10455         (hfy-fontify-buffer): Remove unused var `orig-ovls'.
10457 2014-04-16  João Távora  <joaotavora@gmail.com>
10459         * net/shr.el (shr-expand-url): Use `expand-file-name' for relative
10460         links.  (Bug#17217).
10462 2014-04-16  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
10464         * vc/ediff-diff.el (ediff-set-fine-diff-properties-in-one-buffer):
10465         Use mapc to loop over a vector.  (Bug#17257).
10467 2014-04-16  Michael Albinus  <michael.albinus@gmx.de>
10469         * net/tramp-sh.el (tramp-sh-handle-file-truename): Revert previous
10470         patch, there are new problems with file names containing spaces.
10471         Get rid of backticks.  (Bug#17238)
10473 2014-04-16  João Távora  <joaotavora@gmail.com>
10475         * elec-pair.el (electric-pair--syntax-ppss): Simplify and fix
10476         possible bug.
10478 2014-04-16  Eli Zaretskii  <eliz@gnu.org>
10480         * frame.el (blink-cursor-blinks, blink-cursor-blinks-done): Doc fixes.
10481         (blink-cursor-mode): Mention customization variables and the
10482         effect of 'blink-cursor-blinks'.
10484 2014-04-16  Barry O'Reilly  <gundaetiapo@gmail.com>
10486         * simple.el (undo): Prevent insertion of identity mapping into
10487         undo-equiv-table so as undo-only does not inf loop in the presence
10488         of consecutive nils in undo list.
10490 2014-04-16  Matthias Dahl  <matthias.dahl@binary-island.eu>
10492         * faces.el (make-face): Deprecate optional argument as it is no
10493         longer needed/used since the conditional X resources handling
10494         has been pushed down to make-face-x-resource-internal itself.
10495         (make-empty-face): Don't pass optional argument to make-face.
10497 2014-04-16  Karl Fogel  <kfogel@red-bean.com>
10499         * savehist.el (savehist-save): Remove workaround for a read-passwd
10500         bug that was fixed before 24.3.  Thanks to Juanma Barranquero for
10501         noticing that the shim was still present.
10503 2014-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
10505         * doc-view.el (doc-view-set-doc-type): Ignore file name case; add .pps.
10507 2014-04-14  Juanma Barranquero  <lekktu@gmail.com>
10509         * faces.el (face-set-after-frame-default): Remove unused local variable.
10511 2014-04-12  Stefan Monnier  <monnier@iro.umontreal.ca>
10513         * progmodes/grep.el: Use lexical-binding.
10514         (grep-expand-template): Pass explicit lexical env to `eval'.
10515         (zrgrep): Let-bind grep-find-template explicitly.
10517         * emacs-lisp/cl-lib.el (current-case-table): Remove setter.
10518         * leim/quail/sisheng.el (sisheng-list): Use with-case-table.
10520 2014-04-12  Eli Zaretskii  <eliz@gnu.org>
10522         * international/characters.el <standard-case-table>: Add entries
10523         for letters from the Coptic block u+2C80-u+2CFF.  (Bug#17243)
10524         Set category of Coptic characters be 'g' (Greek).
10526 2014-04-12  Leo Liu  <sdl.web@gmail.com>
10528         * progmodes/octave.el (completion-table-with-cache):
10529         Define if not available.
10530         (octave-goto-function-definition, octave-sync-function-file-names)
10531         (octave-find-definition-default-filename):
10532         Backquote upattern for compatibility.
10534 2014-04-12  Michael Albinus  <michael.albinus@gmx.de>
10536         * net/tramp-sh.el (tramp-sh-handle-file-truename): Quote the file
10537         name twice due to backticks.  (Bug#17238)
10539 2014-04-12  Glenn Morris  <rgm@gnu.org>
10541         * term/w32-win.el (x-win-suspend-error):
10542         * term/x-win.el (x-win-suspend-error): Sync docs.
10544 2014-04-12  Matthias Dahl  <matthias.dahl@binary-island.eu>
10546         * faces.el (make-face): Remove deprecated optional argument.
10547         The conditional application of X resources is handled directly by
10548         make-face-x-resource-internal since Emacs 24.4.
10549         (make-empty-face): Don't pass optional argument to make-face.
10551 2014-04-11  Glenn Morris  <rgm@gnu.org>
10553         * Makefile.in (EMACSDATA, EMACSDOC, EMACSPATH): Unexport.  (Bug#16429)
10555 2014-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10557         Ediff's overlay priorities cause more trouble than they solve.
10558         * vc/ediff-init.el (ediff-shadow-overlay-priority): Remove variable.
10559         (ediff-highest-priority): Remove function (bug#17234).
10560         * vc/ediff-util.el (ediff-highlight-diff-in-one-buffer):
10561         * vc/ediff-diff.el (ediff-set-diff-overlays-in-one-buffer)
10562         (ediff-set-fine-diff-properties-in-one-buffer): Don't mess with
10563         overlay priorities.
10565 2014-04-11  Feng Li  <fengli@gmail.com>  (tiny change)
10567         * progmodes/pascal.el (pascal-font-lock-keywords): Fix incorrect format
10568         entry; use symbol boundaries to avoid mis-matches.
10570 2014-04-11  Michael Albinus  <michael.albinus@gmx.de>
10572         * net/tramp.el (tramp-file-name-handler)
10573         (tramp-completion-file-name-handler): Avoid recursive loading.
10575         * net/tramp-sh.el (tramp-make-copy-program-file-name):
10576         Quote result also locally.
10578 2014-04-11  Stefan Monnier  <monnier@iro.umontreal.ca>
10580         * emulation/cua-base.el (<toplevel>, cua--pre-command-handler-1):
10581         Remove left-over code.
10583         * newcomment.el (comment-indent-new-line): Sink code where it's used.
10584         Reuse the previous comment's indentation unconditionally if it's on its
10585         own line.
10587 2014-04-09  Daniel Colascione  <dancol@dancol.org>
10589         * emacs-lisp/lisp.el (backward-up-list): Add `escape-strings',
10590         `no-syntax-crossing' arguments.  Forward to `up-list'.
10591         (up-list): Add `escape-strings', `no-syntax-crossing' arguments.
10592         Implement logic for escaping from strings.  Use narrowing to deal
10593         with corner cases.
10595 2014-04-09  Leo Liu  <sdl.web@gmail.com>
10597         * net/rcirc.el (rcirc-connection-info): New variable.
10598         (rcirc-connect): Use it to store connection info.
10599         (rcirc-buffer-process): Avoid get-buffer-process which returns nil
10600         for killed process.
10601         (rcirc-cmd-reconnect): New command.  (Bug#17045)
10602         (rcirc-mode, set-rcirc-encode-coding-system)
10603         (set-rcirc-decode-coding-system, rcirc-connect): Use setq-local.
10605 2014-04-09  Daniel Colascione  <dancol@dancol.org>
10607         * emacs-lisp/cl-indent.el: Add comment claiming
10608         facility is also good for elisp.
10609         (lisp-indent-find-method): New function.
10610         (common-lisp-indent-function): Recognize cl-loop.
10611         (common-lisp-indent-function-1): Recognize cl constructs; use
10612         `lisp-indent-find-method' instead of `get' directly.
10613         (if): Use else-body style for elisp.
10615 2014-04-09  Dmitry Gutov  <dgutov@yandex.ru>
10617         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
10618         Module methods.  (Bug#17216)
10620 2014-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
10622         * help.el (describe-bindings): Fix buffer handling (bug#17210).
10623         (describe-bindings-internal): Mark obsolete.
10625 2014-04-09  Stefan Monnier  <monnier@iro.umontreal.ca>
10627         * subr.el (with-silent-modifications): Don't bind deactivate-mark,
10628         buffer-file-name, and buffer-file-truename any more.
10630 2014-04-08  Leo Liu  <sdl.web@gmail.com>
10632         Use lexical-binding and require cl-lib.
10633         * net/rcirc.el (rcirc, rcirc-handler-ctcp-KEEPALIVE)
10634         (rcirc-handler-generic, rcirc-fill-paragraph)
10635         (rcirc-format-response-string, rcirc-target-buffer)
10636         (rcirc-last-line, rcirc-record-activity, rcirc-split-activity)
10637         (rcirc-activity-string, rcirc-make-trees, rcirc-cmd-ctcp)
10638         (rcirc-ctcp-sender-PING, rcirc-browse-url)
10639         (rcirc-markup-timestamp, rcirc-markup-attributes)
10640         (rcirc-markup-my-nick, rcirc-markup-urls)
10641         (rcirc-markup-bright-nicks, rcirc-markup-fill)
10642         (rcirc-check-auth-status, rcirc-handler-WALLOPS)
10643         (rcirc-handler-JOIN, rcirc-handler-PART-or-KICK)
10644         (rcirc-handler-PART, rcirc-handler-KICK, rcirc-handler-QUIT)
10645         (rcirc-handler-NICK, rcirc-handler-PING, rcirc-handler-PONG)
10646         (rcirc-handler-TOPIC, rcirc-handler-301, rcirc-handler-317)
10647         (rcirc-handler-332, rcirc-handler-333, rcirc-handler-477)
10648         (rcirc-handler-MODE, rcirc-handler-353, rcirc-handler-366)
10649         (rcirc-authenticate, rcirc-handler-INVITE, rcirc-handler-ERROR)
10650         (rcirc-handler-ctcp-VERSION, rcirc-handler-ctcp-TIME)
10651         (rcirc-handler-CTCP-response): Fix unused arguments warnings and
10652         use cl-lib.
10654 2014-04-07  João Távora  <joaotavora@gmail.com>
10656         * elec-pair.el (electric-pair--syntax-ppss):
10657         When inside comments parse from comment beginning.
10658         (electric-pair--balance-info): Fix typo in comment.
10659         (electric-pair--in-unterminated-string-p): Delete.
10660         (electric-pair--unbalanced-strings-p): New function.
10661         (electric-pair-string-bound-function): New var.
10662         (electric-pair-inhibit-if-helps-balance): Decide quote pairing
10663         according to `electric-pair--in-unterminated-string-p'
10665         * elec-pair.el (electric-pair-inhibit-if-helps-balance):
10666         Inhibit quote pairing if point-max is inside an unterminated string.
10667         (electric-pair--looking-at-unterminated-string-p): Delete.
10668         (electric-pair--in-unterminated-string-p): New function.
10670 2014-04-07  Glenn Morris  <rgm@gnu.org>
10672         * shell.el (shell-directory-tracker):
10673         Go back to just ignoring failures.  (Bug#17159)
10675 2014-04-07  João Távora  <joaotavora@gmail.com>
10677         Fix `electric-pair-delete-adjacent-pairs' in modes binding
10678         backspace.  (Bug#16981)
10679         * elec-pair.el (electric-pair-backward-delete-char): Delete.
10680         (electric-pair-backward-delete-char-untabify): Delete.
10681         (electric-pair-mode-map): Bind backspace to a menu item filtering
10682         a new `electric-pair-delete-pair' command.
10683         (electric-pair-delete-pair): New command.
10685         * progmodes/python.el (python-electric-pair-string-delimiter):
10686         Fix triple-quoting electricity.  (Bug#17192)
10688         * elec-pair.el (electric-pair-post-self-insert-function):
10689         Don't skip whitespace when `electric-pair-text-pairs' and
10690         `electric-pair-pairs' were used. syntax to
10691         electric-pair--skip-whitespace.  (Bug#17183)
10693 2014-04-07  Eli Zaretskii  <eliz@gnu.org>
10695         * leim/quail/ipa.el (ipa-x-sampa): Fix the character produced for
10696         "<F>".  (Bug#17199)
10698 2014-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
10700         * mpc.el (mpc--status-timer-run): Disable timer if not displayed.
10701         (mpc--status-idle-timer-run): Use mpc--status-timer-run.
10703 2014-04-07  Glenn Morris  <rgm@gnu.org>
10705         * help.el (view-lossage): Doc tweak.
10707 2014-04-07  Matthias Dahl  <ml_emacs-lists@binary-island.eu>
10709         * faces.el (face-spec-recalc): Call make-face-x-resource-internal
10710         only when inhibit-x-resources is nil, and do that earlier in the
10711         function.  Doc fix.  (Bug#16694)
10712         (face-spec-choose): Accept additional optional argument, whose
10713         value is returned if no matching attributes are found.
10714         (face-spec-recalc): Use the new optional argument when calling
10715         face-spec-choose.  (Bug#16378)
10716         (make-face-x-resource-internal): Do nothing when
10717         inhibit-x-resources is non-nil.  Don't touch the default face if
10718         reversed video is given--as was done in previous versions of Emacs.
10719         (face-set-after-frame-default): Don't call
10720         make-face-x-resource-internal here.  (Bug#16434)
10722 2014-04-07  Tassilo Horn  <tsdh@gnu.org>
10724         * doc-view.el (doc-view-bookmark-jump):
10725         Use `bookmark-after-jump-hook' to jump to the right page after the
10726         buffer is shown in a window.  (bug#16090)
10728 2014-04-07  Eli Zaretskii  <eliz@gnu.org>
10730         * international/characters.el (mirroring): Fix last change:
10731         instead of loading uni-mirrored.el explicitly, do that implicitly
10732         by creating the 'mirroring' uniprop table.  This avoids announcing
10733         the loading of uni-mirrored.el.
10735 2014-04-07  Glenn Morris  <rgm@gnu.org>
10737         * files.el (buffer-stale--default-function)
10738         (buffer-stale-function, revert-buffer--default):
10739         * autorevert.el (auto-revert-buffers): Doc tweaks.
10741 2014-04-07  Eli Zaretskii  <eliz@gnu.org>
10743         * international/characters.el: Preload uni-mirrored.el.  (Bug#17169)
10745 2014-04-07  Glenn Morris  <rgm@gnu.org>
10747         * files.el (make-backup-file-name-function)
10748         (make-backup-file-name, make-backup-file-name--default-function)
10749         (make-backup-file-name-1, find-backup-file-name)
10750         (revert-buffer-function, revert-buffer-insert-file-contents-function)
10751         (buffer-stale--default-function, buffer-stale-function)
10752         (before-revert-hook, after-revert-hook, revert-buffer-in-progress-p)
10753         (revert-buffer, revert-buffer--default)
10754         (revert-buffer-insert-file-contents--default-function):
10755         Doc fixes related to defaults no longer being nil.
10756         (make-backup-file-name-function): Bump :version.
10757         Restore nil as a valid but deprecated custom type.
10759 2014-04-07  Stefan Monnier  <monnier@iro.umontreal.ca>
10761         * progmodes/perl-mode.el (perl-syntax-propertize-function):
10762         Handle $' used as a variable (bug#17174).
10764         * progmodes/perl-mode.el (perl-indent-new-calculate):
10765         Handle forward-sexp failure (bug#16985).
10766         (perl-syntax-propertize-function): Add "foreach" and "for" statement
10767         modifiers introducing expressions (bug#17116).
10769 2014-04-06  Stefan Monnier  <monnier@iro.umontreal.ca>
10771         * dired-aux.el (dired-file-set-difference): Use lexical-scoping.
10773 2014-04-05  Leo Liu  <sdl.web@gmail.com>
10775         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
10776         Add define-compilation-mode.
10778 2014-04-04  João Távora  <joaotavora@gmail.com>
10780         * elec-pair.el (electric-pair--syntax-ppss): When inside comments
10781         parse from comment beginning.
10782         (electric-pair--balance-info): Fix typo in comment.
10783         (electric-pair--in-unterminated-string-p): Delete.
10784         (electric-pair--unbalanced-strings-p): New function.
10785         (electric-pair-string-bound-function): New var.
10786         (electric-pair-inhibit-if-helps-balance): Decide quote pairing
10787         according to `electric-pair--in-unterminated-string-p'.
10789 2014-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
10791         * textmodes/reftex-parse.el (reftex--index-tags): Rename `index-tags'.
10792         Move declaration before first use.
10793         (reftex-move-to-next-arg): Silence compiler warning.
10795 2014-04-04  Joost Kremers  <joostkremers@fastmail.fm>  (tiny change)
10797         * textmodes/reftex-toc.el (reftex-toc, reftex-re-enlarge):
10798         Use `window-total-width' instead of `window-width'.
10800 2014-04-03  Daniel Colascione  <dancol@dancol.org>
10802         * subr.el (set-transient-map): Remove rms's workaround entirely;
10803         use new `suspicious-object' subr to mark our lambda for closer
10804         scrutiny during gc.
10806 2014-04-02  Richard Stallman  <rms@gnu.org>
10808         * subr.el (set-transient-map): Comment out previous change.
10810 2014-04-02  Glenn Morris  <rgm@gnu.org>
10812         * menu-bar.el (menu-bar-file-menu):
10813         * vc/ediff.el (ediff-current-file):
10814         Update for revert-buffer-function no longer being nil by default.
10816         * simple.el (command-execute): Respect nil disabled-command-function.
10818 2014-04-02  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
10820         * simple.el (command-execute): Do not execute the command when it
10821         is disabled; fixes thinko in 2013-02-20 conversion from C.  (Bug#17151)
10823 2014-04-02  Juri Linkov  <juri@jurta.org>
10825         * dired-aux.el (dired-compress-file): Don't use string-match-p
10826         because its match data is used afterwards.
10828 2014-04-02  Stefan Monnier  <monnier@iro.umontreal.ca>
10830         * emacs-lisp/package.el (package-built-in-p): Treat a min-version of
10831         0 like nil.
10833 2014-04-02  João Távora  <joaotavora@gmail.com>
10835         * elec-pair.el (electric-pair-inhibit-if-helps-balance):
10836         Inhibit quote pairing if point-max is inside an unterminated string.
10837         (electric-pair--looking-at-unterminated-string-p):
10838         Delete.
10839         (electric-pair--in-unterminated-string-p): New function.
10841 2014-04-01  Daniel Colascione  <dancol@dancol.org>
10843         * minibuffer.el (minibuffer-complete): Prevent assertion failure
10844         when trying to complete the prompt.
10846 2014-03-31  Leo Liu  <sdl.web@gmail.com>
10848         * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
10849         Refactor out eldoc-documentation-function-default.
10850         (eldoc-documentation-function-default): New function.
10851         (eldoc-documentation-function): Change value.
10853 2014-03-31  Glenn Morris  <rgm@gnu.org>
10855         * simple.el (cycle-spacing--context, cycle-spacing): Doc tweaks.
10857         * progmodes/vhdl-mode.el (vhdl-speedbar-select-mra)
10858         (vhdl-compose-components-package, vhdl-compose-configuration):
10859         Abbreviate default-directory (missing from some previous upstream sync).
10861 2014-03-31  Reto Zimmermann  <reto@gnu.org>
10863         Sync with upstream vhdl mode v3.35.2.
10864         * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
10865         (top-level): No longer require assoc.
10866         (vhdl-asort, vhdl-anot-head-p, vhdl-aput, vhdl-adelete, vhdl-aget):
10867         New functions.  Use throughout to replace aget etc.
10868         (vhdl-aput-delete-if-nil): Rename from vhdl-aput.
10869         (vhdl-update-file-contents): Update for vhdl-aput-delete-if-nil rename.
10870         (vhdl-template-replace-header-keywords): Fix bug for "<title string>".
10871         (vhdl-compile-init): Do not initialize regexps for Emacs 22+.
10872         (vhdl-error-regexp-emacs-alist): Remove regexps from all compilers
10873         except `vhdl-compiler'.
10874         (vhdl-error-regexp-add-emacs): Remove all other compilers,
10875         when appropriate.
10877 2014-03-31  Glenn Morris  <rgm@gnu.org>
10879         * progmodes/vhdl-mode.el (vhdl-expand-abbrev, vhdl-expand-paren):
10880         Revert 2014-03-26 merge goof; go back to using defalias.
10882 2014-03-30  Daniel Colascione  <dancol@dancol.org>
10884         * comint.el (comint-send-input):
10885         Deactivate completion-in-region-mode before we send comint input.
10886         (Bug#17139).
10888         * simple.el (keyboard-quit): Deactivate completion-in-region-mode
10889         on keyboard-quit.
10891 2014-03-29  Glenn Morris  <rgm@gnu.org>
10893         * textmodes/reftex.el: Manage most autoloads automatically.
10894         * textmodes/reftex-auc.el, textmodes/reftex-cite.el:
10895         * textmodes/reftex-dcr.el, textmodes/reftex-global.el:
10896         * textmodes/reftex-index.el, textmodes/reftex-parse.el:
10897         * textmodes/reftex-ref.el, textmodes/reftex-sel.el:
10898         * textmodes/reftex-toc.el: Set generated-autoload-file,
10899         and add autoload cookies for reftex.el.
10900         * Makefile.in (AUTOGEN_VCS): Add textmodes/reftex.el.
10902 2014-03-28  Glenn Morris  <rgm@gnu.org>
10904         * cus-start.el (report-emacs-bug-address): Set custom properties.
10905         * mail/emacsbug.el (report-emacs-bug-address):
10906         Variable is now defined in emacs.c.
10908         * mail/emacsbug.el (report-emacs-bug):
10909         Include system-configuration-features.
10911 2014-03-28  Michal Nazarewicz  <mina86@mina86.com>
10913         * simple.el (cycle-spacing): Never delete spaces on first run by
10914         default, but do so in a new 'fast mode and if there are already
10915         N spaces (the previous behavior).
10916         Compare N with its value in previous invocation so that changing
10917         prefix argument restarts `cycle-spacing' sequence.
10918         The idea is that with this change, binding M-SPC to
10919         `cycle-spacing' should not introduce any changes in behavior of
10920         the binding so long as users do not type M-SPC twice in a raw with
10921         the same prefix argument or lack thereof.
10923 2014-03-28  Glenn Morris  <rgm@gnu.org>
10925         * faces.el (term-file-aliases): New variable.
10926         (tty-run-terminal-initialization): Respect term-file-aliases.
10927         * term/apollo.el, term/vt102.el, term/vt125.el, term/vt201.el:
10928         * term/vt220.el, term/vt240.el, term/vt300.el, term/vt320.el:
10929         * term/vt400.el, term/vt420.el: Remove files, replaced by aliases.
10931 2014-03-27  Glenn Morris  <rgm@gnu.org>
10933         * startup.el (inhibit-startup-hooks): Doc tweak.
10934         (normal-top-level): Simplify running of hooks.
10935         For window-setup-hook, respect inhibit-startup-hooks.
10936         (command-line-1): Don't set window-setup-hook to nil.
10938         Allow selective autoloading from obsolete/ directory.
10939         * Makefile.in (obsolete-autoloads): New rule.
10940         (autoloads): Run obsolete-autoloads.
10941         * obsolete/iswitchb.el (iswitchb-mode): Use obsolete-autoload.
10942         * simple.el (iswitchb-mode): Remove hand-written autoloads.
10944 2014-03-27  Dmitry Gutov  <dgutov@yandex.ru>
10946         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
10947         Highlight special globals with font-lock-builtin-face.  (Bug#17057)
10949         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
10950         Don't propertize `?' or `!' as symbol constituent when after
10951         colon.  (Bug#17097)
10953 2014-03-27  Juanma Barranquero  <lekktu@gmail.com>
10955         * frameset.el (frameset--restore-frame): Remove workaround for bug#14795
10956         which is no longer needed and causes trouble in GTK builds (bug#17046).
10958         * emacs-lisp/package-x.el (package--archive-contents-from-url):
10959         Use url-insert-file-contents; package-handle-response no longer exists.
10961 2014-03-26  Daniel Colascione  <dancol@dancol.org>
10963         * simple.el (process-menu-mode-map): New variable.
10964         (process-menu-delete-process): New command.
10966 2014-03-26  Juanma Barranquero  <lekktu@gmail.com>
10968         * emacs-lisp/package.el: Fix bug#16733 (again).
10969         (url-http-parse-response, url-http-end-of-headers, url-recreate-url)
10970         (url-http-target-url): Remove unused declarations.
10971         (package-handle-response): Remove.
10972         (package--with-work-buffer): Use url-insert-file-contents and simplify.
10973         (package--download-one-archive): Use current-buffer instead of
10974         dynamic binding of `buffer'.
10975         (describe-package-1): Do not decode readme-string.
10977 2014-03-26  Michael Albinus  <michael.albinus@gmx.de>
10979         * net/tramp.el (tramp-methods, tramp-connection-timeout): Fix docstring.
10981         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Revert change
10982         from 2014-03-07, it decreases performance unnecessarily.  Let-bind
10983         `remote-file-name-inhibit-cache' to nil in the second pass.
10984         (tramp-find-executable): Do not call "which" on SunOS.
10985         (tramp-send-command-and-check): Fix docstring.
10986         (tramp-do-copy-or-rename-file-directly): In the `rename' case,
10987         check whether source directory has set the sticky bit.
10989 2014-03-26  Barry O'Reilly  <gundaetiapo@gmail.com>
10991         * simple.el (primitive-undo): Only process marker adjustments
10992         validated against their corresponding (TEXT . POS).  Issue warning
10993         for lone marker adjustments in undo history.  (Bug#16818)
10994         (undo-make-selective-list): Add marker adjustments to selective
10995         undo list based on whether their corresponding (TEXT . POS) is in
10996         the region.  Remove variable adjusted-markers, which was unused
10997         and only non nil during undo-make-selective-list.
10998         (undo-elt-in-region): Return nil when passed a marker adjustment
10999         and explain in function doc.
11001 2014-03-26  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
11003         * align.el (align-region): Do not fail when end-mark is nil (bug#17088).
11005 2014-03-26  Dmitry Gutov  <dgutov@yandex.ru>
11007         * progmodes/ruby-mode.el (ruby-expression-expansion-re):
11008         Match special global variables without curlies, too.
11009         (ruby-font-lock-keywords): Simplify the matcher for special global
11010         variables.  Don't require a non-word character after the variable.
11011         (Bug#17057)
11013 2014-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
11015         * simple.el (redisplay-highlight-region-function): Increase priority of
11016         overlay to make sure boundaries are visible (bug#15899).
11018 2014-03-26  Juanma Barranquero  <lekktu@gmail.com>
11020         * frameset.el (frameset--initial-params): Fix typo in parameter name.
11021         (frameset-restore): Compare display strings with equal.
11023         * frame.el (make-frame): Don't quote display name in error message,
11024         it is already a string.
11026 2014-03-26  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
11028         * net/tramp.el (tramp-read-passwd): Suspend the timers while reading
11029         the password.
11031 2014-03-26  Dmitry Gutov  <dgutov@yandex.ru>
11033         * emacs-lisp/package.el (package--add-to-archive-contents):
11034         Include already installed and built-in packages in
11035         `package-archive-contents'.
11036         (package-install): Don't include already installed packages in the
11037         options during interactive invocation.  (Bug#16762)
11038         (package-show-package-list): If the buffer is already displayed in
11039         another window, switch to that window.
11041 2014-03-26  Reto Zimmermann  <reto@gnu.org>
11043         Sync with upstream vhdl mode v3.35.1.
11044         * progmodes/vhdl-mode.el (vhdl-version, vhdl-time-stamp): Update.
11045         (vhdl-compiler-alist): Doc fix.
11046         (vhdl-goto-line): Remove.
11047         (vhdl-mode-abbrev-table-init): Add XEmacs compat.
11048         (vhdl-mode) <paragraph-start>: Fix value.
11049         (vhdl-fix-statement-region): Not `for' in wait-statement.
11050         (vhdl-beautify-region): Also (un)tabify.
11051         (vhdl-get-visible-signals):
11052         Scan declarative part of generate statements.
11053         (vhdl-template-record): Fix indentation for record type declaration.
11054         (vhdl-expand-abbrev, vhdl-expand-paren):
11055         Revert to using fset again rather than defalias.
11056         (vhdl-scan-directory-contents): Tweak.
11057         (vhdl-speedbar-find-file, vhdl-speedbar-port-copy)
11058         (vhdl-compose-components-package):
11059         Replace vhdl-goto-line with forward-line.
11060         (top-level): Tweak speedbar frame selection.
11061         (vhdl-generate-makefile-1): Support for compilers with no
11062         unit-to-file name mapping (create directory with dummy files).
11064 2014-03-26  Wilson Snyder  <wsnyder@wsnyder.org>
11066         Sync with upstream verilog-mode revision 702457d.
11067         * progmodes/verilog-mode.el (verilog-mode-version): Update.
11068         (create-lockfiles): Declare.
11069         (verilog-read-decls): Fix module header imports, bug709.
11070         Reported by Victor Lau.
11071         Fix parsing 'var' in AUTOs, msg1294.  Reported by Dominique Chen.
11072         (verilog-auto-inout-module): Fix AUTOINOUTMODULE not inserting
11073         interface-only modules, bug721.  Reported by Dean Hoyt.
11075 2014-03-26  Glenn Morris  <rgm@gnu.org>
11077         * obsolete/gulp.el: Move here from emacs-lisp/.
11079         * files.el (lock-buffer, unlock-buffer, file-locked-p):
11080         Remove fallback aliases, since they are always defined now.
11082 2014-03-24  Daniel Colascione  <dancol@dancol.org>
11084         * emacs-lisp/cl-macs.el (cl--do-arglist): Use `plist-member'
11085         instead of cl-loop search function.
11087 2014-03-23  Lars Ingebrigtsen  <larsi@gnus.org>
11089         * calendar/parse-time.el (parse-time-iso8601-regexp)
11090         (parse-iso8601-time-string): Copy from `url-dav' so that we can use
11091         it more generally.
11093 2014-03-23  Lars Ingebrigtsen  <larsi@gnus.org>
11095         * net/dns.el (network-interface-list): Define for XEmacs.
11097 2014-03-23  Magnus Henoch  <magnus.henoch@gmail.com>
11099         * net/dns.el (dns-servers-up-to-date-p): New function to see whether
11100         the network interfaces changed.
11101         (dns-query): Use it to flush the data.
11103 2014-03-23  Juanma Barranquero  <lekktu@gmail.com>
11105         * vc/vc.el (vc-rollback): Use set-buffer-modified-p.
11107 2014-03-23  Daniel Colascione  <dancol@dancol.org>
11109         Change subword-mode to use `find-word-boundary-function-table' and
11110         replace `capitalized-words-mode'.  Also, convert to lexical binding.
11111         * progmodes/cap-words.el: Delete now-obsolete file.
11112         * progmodes/subword.el: Reimplement using
11113         `find-word-boundary-function-table'.
11114         (subword-mode-map): Hollow out.
11115         (capitalized-words-mode): Define as obsolete alias for
11116         `subword-mode'.
11117         (subword-mode, superword-mode): Tweak documentation to reflect new
11118         implementation; call `subword-setup-buffer'.
11119         (subword-forward, subword-capitalize): Add underscore to indicate
11120         unused variable.
11121         (subword-find-word-boundary-function-table): New constant.
11122         (subword-empty-char-table): New constant.
11123         (subword-setup-buffer): New function.
11124         (subword-find-word-boundary): New function.
11126 2014-03-23  Daniel Colascione  <dancol@dancol.org>
11128         * emacs-lisp/cl-macs.el (cl--do-arglist): Use a little `cl-loop'
11129         list to look for keyword arguments instead of `memq', fixing
11130         (Bug#3647) --- unfortunately, only for freshly-compiled code.
11131         Please make bootstrap.
11133 2014-03-22  Glenn Morris  <rgm@gnu.org>
11135         * dired.el (dired-read-regexp): Make obsolete.
11136         (dired-mark-files-regexp, dired-mark-files-containing-regexp)
11137         (dired-flag-files-regexp):
11138         * dired-aux.el (dired-mark-read-regexp):
11139         * dired-x.el (dired-mark-unmarked-files): Use read-regexp directly.
11141         * startup.el (fancy-startup-text):
11142         * help.el (describe-gnu-project): Visit online info about GNU project.
11144         * help-fns.el (help-fns--interactive-only): New function.
11145         (help-fns-describe-function-functions): Add the above function.
11146         * simple.el (beginning-of-buffer, end-of-buffer, insert-buffer)
11147         (next-line, previous-line): Remove hand-written interactive-only
11148         information from doc strings, it is auto-generated now.
11149         * bookmark.el (bookmark-write):
11150         * epa-mail.el (epa-mail-decrypt, epa-mail-verify, epa-mail-sign)
11151         (epa-mail-import-keys): Mark interactive-only,
11152         and remove hand-written interactive-only information from doc strings.
11153         * epa.el (epa-decrypt-armor-in-region, epa-verify-region)
11154         (epa-verify-cleartext-in-region, epa-sign-region, epa-encrypt-region):
11155         * files.el (not-modified):
11156         * simple.el (mark-whole-buffer): Mark interactive-only.
11158         * emacs-lisp/byte-run.el (defun-declarations-alist):
11159         Add interactive-only.  Doc tweak.
11160         (macro-declarations-alist): Doc tweak.
11161         * subr.el (declare): Doc tweak (add xref to manual).
11162         * comint.el (comint-run):
11163         * files.el (insert-file-literally, insert-file):
11164         * replace.el (replace-string, replace-regexp):
11165         * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
11166         (delete-forward-char, goto-line, insert-buffer, next-line)
11167         (previous-line): Set interactive-only via declare.
11169 2014-03-22  Dmitry Gutov  <dgutov@yandex.ru>
11171         * emacs-lisp/package.el (package-desc): Use the contents of the
11172         quoted form, not its cdr.  (Bug#16873)
11174 2014-03-22  Juanma Barranquero  <lekktu@gmail.com>
11176         * w32-common-fns.el (x-selection-owner-p): Add empty docstring for the
11177         benefit of doc.c; change parameter profile to match the X function.
11179 2014-03-22  Leo Liu  <sdl.web@gmail.com>
11181         * help.el (temp-buffer-setup-hook): Remove help-mode-setup.
11182         (temp-buffer-show-hook): Remove help-mode-finish.  (Bug#16038)
11184 2014-03-21  Richard Stallman  <rms@gnu.org>
11186         * battery.el (battery-linux-sysfs): Search for each field
11187         from the beginning of the buffer.
11189         * subr.el (set-transient-map): Clear out function and value
11190         of the temporary symbol when we're done with it.
11192         * mail/rmailsum.el (rmail-summary-delete-forward):
11193         Optimize case of reaching end and handling count.
11194         (rmail-summary-mark-deleted): Optimize when N is current msg.
11195         Don't create new summary line.
11196         (rmail-summary-undelete): Pass arg to rmail-undelete-previous-message.
11197         (rmail-summary-undelete-many): Rewrite for speed.
11198         (rmail-summary-msg-number): New function.
11200         * mail/rmail.el (rmail-delete-message): Update summary.
11201         (rmail-undelete-previous-message): Handle repeat count arg.
11202         (rmail-delete-backward, rmail-delete-forward): Likewise.
11204 2014-03-21  Daniel Colascione  <dancol@dancol.org>
11206         * mail/emacsbug.el (report-emacs-bug): Include memory usage
11207         information in bug reports.
11209 2014-03-21  Michael Albinus  <michael.albinus@gmx.de>
11211         * net/tramp.el (tramp-methods): Add docstring for `tramp-login-env'
11212         and `tramp-copy-env'.
11214         * net/tramp-sh.el (tramp-methods) <sudo>: Add `tramp-login-env'.
11215         (tramp-maybe-open-connection): Handle `tramp-login-env'.
11217 2014-03-21  Glenn Morris  <rgm@gnu.org>
11219         * electric.el (electric-indent-post-self-insert-function): Add doc.
11221 2014-03-21  Dmitry Gutov  <dgutov@yandex.ru>
11223         * emacs-lisp/package.el (package-compute-transaction):
11224         Use `version-list-<=' to compare the requirement version against
11225         the version of package already to be installed.  Update the error
11226         message.  (Bug#16826)
11228         * progmodes/ruby-mode.el (ruby-smie-rules):
11229         Add indentation rule for ` @ '.  (Bug#17050)
11231 2014-03-21  Juanma Barranquero  <lekktu@gmail.com>
11233         * align.el (align-regexp): Remove superfluous backslash.
11235         * ffap.el (ffap-ftp-default-user, ffap-url-regexp)
11236         (ffap-pass-wildcards-to-dired, dired-at-point-require-prefix)
11237         (ffap-rfc-path, ffap-ftp-sans-slash-regexp, ffap-menu-regexp):
11238         Fix docstring typos.
11239         (ffap-next): Use C-u in docstring.
11240         (ffap-machine-p, ffap-list-env, ffap-alist, ffap-alist)
11241         (ffap-string-at-point-mode-alist, ffap-menu, ffap-menu-ask):
11242         Remove superfluous backslashes.
11243         (ffap-string-at-point): Reflow docstring.
11245         * server.el (server-host): Reflow docstring.
11246         (server-unload-function): Fix docstring typo.
11247         (server-eval-at): Remove superfluous backslash.
11249         * skeleton.el (skeleton-insert): Remove superfluous backslash.
11250         (skeleton-insert): Doc fix.
11251         (skeleton-insert): Reflow docstring.
11253         * term/tty-colors.el (tty-color-alist, tty-modify-color-alist)
11254         (tty-color-approximate, tty-color-by-index, tty-color-values)
11255         (tty-color-desc): Remove superfluous backslashes.
11257 2014-03-21  Glenn Morris  <rgm@gnu.org>
11259         * cus-start.el (history-length): Bump :version.
11261         * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
11262         ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
11263         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
11264         Don't set `make-backup-files'.
11266         * info.el (info--prettify-description): New function,
11267         to give info-finder descriptions consistent case, punctuation.
11268         (Info-finder-find-node): Use it.  Sort packages.
11269         Refer to "description" rather than "commentary".
11271 2014-03-21  Juanma Barranquero  <lekktu@gmail.com>
11273         * frameset.el (frameset--print-register): New function.
11274         (frameset-to-register): Use it.
11276 2014-03-20  Juanma Barranquero  <lekktu@gmail.com>
11278         * progmodes/hideif.el (hif-string-to-number): New function.
11279         (hif-tokenize): Use it to understand non-decimal floats.
11281         * emacs-lisp/cl-extra.el (cl--map-overlays): Remove obsolete code.
11283         * skeleton.el (skeleton-autowrap): Mark as obsolete.  Doc fix.
11285 2014-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
11287         * electric.el (electric-newline-and-maybe-indent): New command.
11288         Bind it globally to C-j.
11289         (electric-indent-mode): Don't mess with the global map any more.
11290         Don't drop the post-self-insert-hook is some buffer is still using it
11291         (bug#16770).
11293         * bindings.el (global-map): Remove C-j binding.
11295         * emacs-lisp/nadvice.el (advice--make-docstring): Try harder to find
11296         the docstring of functions advised before dumping (bug#16993).
11298 2014-03-19  Stefan-W. Hahn  <stefan.hahn@s-hahn.de>  (tiny change)
11300         * ps-print.el (ps-generate-postscript-with-faces):
11301         Explicitly deactivate the mark (bug#16866).
11302         * simple.el (deactivate-mark): Update region highlight.
11304 2014-03-19  Juanma Barranquero  <lekktu@gmail.com>
11306         * emacs-lisp/package.el (describe-package-1):
11307         Decode commentary (bug#16733).
11309 2014-03-18  Juanma Barranquero  <lekktu@gmail.com>
11311         * custom.el (defcustom): Doc fix: recommend avoiding destructive
11312         modification of the value argument of :set (bug#16755).
11314 2014-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
11316         * simple.el (newline-and-indent): Do autofill (bug#17031).
11318 2014-03-18  Dmitry Gutov  <dgutov@yandex.ru>
11320         * newcomment.el (comment-normalize-vars): Only add escaping check
11321         to `comment-start-skip' if not `comment-use-syntax'.  (Bug#16971)
11322         (comment-beginning): Use `narrow-to-region' instead of moving back
11323         one character.
11324         (http://lists.gnu.org/archive/html/emacs-devel/2014-03/msg00488.html)
11325         (comment-start-skip): Update the docstring.
11327 2014-03-18  Richard Stallman  <rms@gnu.org>
11329         * dired.el (dired-display-file): Force use of other window.
11331 2014-03-18  Daniel Colascione  <dancol@dancol.org>
11333         * startup.el (tty-handle-args): Remove debug message from 2007.
11335 2014-03-17  Stefan Monnier  <monnier@iro.umontreal.ca>
11337         * emacs-lisp/nadvice.el (advice--interactive-form): New function.
11338         (advice--make-interactive-form): Use it to avoid (auto)loading function.
11339         (advice--make-1, advice-add, advice-remove):
11340         Remove braindead :advice-pending hack.
11342 2014-03-17  Glenn Morris  <rgm@gnu.org>
11344         * calendar/calendar.el (calendar-generate-month): Apply weekend
11345         face to the right days; fixes 2013-08-06 change.  (Bug#17028)
11347 2014-03-17  Michael Albinus  <michael.albinus@gmx.de>
11349         * net/tramp.el (tramp-action-out-of-band): Read pending output.
11350         (tramp-call-process): Trace also DESTINATION.
11352         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band):
11353         Quote file names when they are local.  Remove superfluous trace.
11355 2014-03-17  Dmitry Gutov  <dgutov@yandex.ru>
11357         * newcomment.el (comment-beginning): If `comment-start-skip'
11358         doesn't match, move back one char and try again.  (Bug#16971)
11360         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
11361         Set `comment-use-syntax' to t to avoid the unnecessary runtime check.
11362         Set `comment-start-skip' to a simpler value that doesn't try to
11363         check if the semicolon is escaped (this is handled by
11364         `syntax-ppss' now).  (Bug#16971)
11366         * progmodes/scheme.el (scheme-mode-variables): Same.
11368 2014-03-16  Martin Rudalics  <rudalics@gmx.at>
11370         Fix behavior of with-temp-buffer-window (Bug#16816, Bug#17007).
11371         * window.el (with-temp-buffer-window): Don't make BUFFER-OR-NAME
11372         current (Bug#16816, Bug#17007).
11373         (with-current-buffer-window): New macro doing the same as
11374         `with-temp-buffer-window' but with BUFFER-OR-NAME current.
11375         * help.el (help-print-return-message): Warn in doc-string to not
11376         use this in `with-help-window'.
11377         (describe-bindings-internal): Call `describe-buffer-bindings'
11378         from within help buffer.  See Juanma's scenario in (Bug#16816).
11379         (with-help-window): Update doc-string.
11380         * dired.el (dired-mark-pop-up):
11381         * files.el (save-buffers-kill-emacs):
11382         * register.el (register-preview): Use `with-current-buffer-window'
11383         instead of `with-temp-buffer-window'.
11385 2014-03-16  Juanma Barranquero  <lekktu@gmail.com>
11387         * textmodes/rst.el (rst-arabic-to-roman, rst-roman-to-arabic):
11388         Implement inserting into current buffer, documented in their docstrings.
11389         (rst-define-key, rst-compare-adornments, rst-insert-list-new-item)
11390         (rst-section-tree-point, rst-forward-section, rst-indent)
11391         (rst-compute-tabs, rst-font-lock-find-unindented-line-end)
11392         (rst-font-lock-find-unindented-line-limit, rst-adornment-level)
11393         (rst-font-lock-handle-adornment-pre-match-form)
11394         (rst-repeat-last-character): Reflow docstrings.
11395         (rst-preferred-adornments, rst-update-section, rst-find-title-line)
11396         (rst-adjust-adornment-work, rst-initial-items, rst-insert-list)
11397         (rst-toc-insert-style, rst-toc-insert-node, rst-goto-section)
11398         (rst-compile, rst-imenu-convert-cell, rst-imenu-create-index):
11399         Fix docstring typos.
11400         (rst-all-sections, rst-section-hierarchy, rst-adjust): Doc fixes.
11401         (rst-uncomment-region, rst-font-lock-find-unindented-line-match)
11402         (rst-font-lock-handle-adornment-matcher): Mark unused arguments.
11404 2014-03-15  Juanma Barranquero  <lekktu@gmail.com>
11406         * term/ns-win.el (x-command-line-resources): Rename from ns-... version,
11407         for compatibility with other ports.
11408         (ns-initialize-window-system): Use it.  It is set in term/common-win.el
11409         from the -xrm command line argument, but in the Nextstep port its value
11410         is irrelevant because nsfns.m:Fx_open_connection ignores it for now.
11412         * progmodes/python.el (defconst, python-syntax-count-quotes)
11413         (python-indent-region, python-indent-shift-right)
11414         (python-indent-dedent-line-backspace, python-nav-backward-sexp)
11415         (python-nav-backward-sexp-safe, python-nav-backward-up-list)
11416         (python-shell-prompt-block-regexp, python-shell-prompt-output-regexp)
11417         (python-shell-prompt-pdb-regexp, python-shell-enable-font-lock)
11418         (inferior-python-mode, python-shell-make-comint, run-python-internal)
11419         (python-shell-buffer-substring, python-shell-send-buffer)
11420         (python-pdbtrack-activate, python-pdbtrack-stacktrace-info-regexp)
11421         (python-completion-complete-at-point, python-fill-docstring-style)
11422         (python-eldoc-function, python-imenu-format-item-label)
11423         (python-imenu-format-parent-item-label)
11424         (python-imenu-format-parent-item-jump-label)
11425         (python-imenu--build-tree, python-imenu-create-index)
11426         (python-imenu-create-flat-index): Fix docstring typos.
11427         (python-indent-context, python-shell-prompt-regexp, run-python):
11428         Remove superfluous backslashes.
11429         (python-indent-line, python-nav-beginning-of-defun)
11430         (python-shell-get-buffer, python-shell-get-process)
11431         (python-info-current-defun, python-info-current-line-comment-p)
11432         (python-info-current-line-empty-p, python-util-popn): Doc fixes.
11433         (python-indent-post-self-insert-function, python-shell-send-file)
11434         (python-shell-completion-get-completions)
11435         (python-shell-completion-complete-or-indent)
11436         (python-eldoc--get-doc-at-point): Reflow docstrings.
11438 2014-03-14  Glenn Morris  <rgm@gnu.org>
11440         * emacs-lisp/package.el (package-menu-mode-map):
11441         Replace use of obsolete function alias.  Tweak menu item text.
11443         * info.el (Info-finder-find-node):
11444         Ignore the `emacs' metapackage.  (Bug#10813)
11446         * finder.el (finder-list-matches): Include unversioned packages
11447         in the result of a keyword search.
11449         * finder.el (finder--builtins-descriptions): New constant.
11450         (finder-compile-keywords): Use finder--builtins-descriptions.
11452 2014-03-14  Dmitry Gutov  <dgutov@yandex.ru>
11454         * simple.el (blink-matching-paren): Describe the new value,
11455         `jump', enabling the old behavior.
11456         (blink-matching-open): Use that value.  (Bug#17008)
11458 2014-03-14  Glenn Morris  <rgm@gnu.org>
11460         * finder.el (finder-no-scan-regexp): Add leim-list.
11461         (finder-compile-keywords):
11462         Don't skip files with same basename.  (Bug#14010)
11463         * Makefile.in (setwins_finder): New, excluding leim.
11464         (finder-data): Use setwins_finder.
11466         * help-fns.el (help-split-fundoc, help-add-fundoc-usage)
11467         (help-function-arglist, help-make-usage): Move from here...
11468         * help.el (help-split-fundoc, help-add-fundoc-usage)
11469         (help-function-arglist, help-make-usage): ... to here.  (Bug#17001)
11470         * emacs-lisp/bytecomp.el (byte-compile-lambda): Do not load help-fns.
11472 2014-03-14  Juanma Barranquero  <lekktu@gmail.com>
11474         * net/socks.el (socks, socks-override-functions)
11475         (socks-find-services-entry):
11476         * progmodes/hideif.el (hif-set-var, hif-nexttoken, hif-comma)
11477         (hif-find-ifdef-block):
11478         * progmodes/modula2.el (m2-indent): Fix docstring typos.
11480         * net/tls.el (tls-program): Reflow docstring.
11482         * progmodes/pascal.el (pascal-mode-abbrev-table)
11483         (pascal-imenu-generic-expression, pascal-auto-endcomments)
11484         (pascal-mark-defun, pascal-comment-area, pascal-indent-level)
11485         (pascal-outline-mode): Fix docstring typos.
11486         (pascal-mode): Let define-derived-mode document mode hook.
11487         (pascal-uncomment-area): Reflow.
11488         (pascal-exclude-str-start, pascal-exclude-str-end): Add docstring.
11490         * progmodes/opascal.el (opascal-compound-block-indent)
11491         (opascal-case-label-indent): Fix docstring typos.
11492         (opascal-mode): Fix typos; let defined-derived-mode document mode hook.
11494 2014-03-13  Dmitry Gutov  <dgutov@yandex.ru>
11496         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
11497         Fontify multiple adjacent negation chars.  (Bug#17004)
11499 2014-03-13  Tom Willemse  <tom@ryuslash.org>  (tiny change)
11501         * emacs-lisp/package.el (package--prepare-dependencies):
11502         Accept requirements without explicit version (bug#14941).
11504 2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
11506         * register.el (register-separator, copy-to-register): Doc fixes.
11507         (register-preview-default): Remove unnecessary call to concat.
11509         * frameset.el (frameset-restore): When checking for a visible frame,
11510         use the action map instead of calling visible-frame-list.
11512 2014-03-12  Jonas Bernoulli  <jonas@bernoul.li>
11514         * emacs-lisp/eieio.el (with-slots): Use cl-symbol-macrolet (bug#16998).
11516 2014-03-12  Martin Rudalics  <rudalics@gmx.at>
11518         * window.el (fit-frame-to-buffer): Get maximum width from
11519         display's width instead of height.
11521 2014-03-12  Glenn Morris  <rgm@gnu.org>
11523         * desktop.el (desktop-restore-frames)
11524         (desktop-restore-in-current-display, desktop-restore-forces-onscreen)
11525         (desktop-restore-reuses-frames): Doc tweaks.
11527         * electric.el (electric-indent-mode): Doc fix.
11529 2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
11531         * vc/pcvs.el (cvs-temp-buffer, defun-cvs-mode, cvs-get-cvsroot)
11532         (cvs-checkout, cvs-mode-checkout, cvs-update-filter, cvs-mode-mark)
11533         (cvs-mode-diff-head, cvs-mode-diff-repository, cvs-mode-diff-yesterday)
11534         (cvs-mode-diff-vendor, cvs-mode-do, cvs-change-cvsroot)
11535         (cvs-dired-use-hook): Fix docstring typos.
11536         (cvs-mode-view-file-other-window, cvs-mode-byte-compile-files):
11537         Doc fixes.
11539         * vc/pcvs-defs.el (cvs-auto-remove-handled)
11540         (cvs-auto-remove-directories, cvs-default-ignore-marks)
11541         (cvs-idiff-imerge-handlers, cvs-reuse-cvs-buffer)
11542         (cvs-execute-single-dir): Fix docstring typos.
11544         * vc/pcvs-info.el (cvs-status-map, cvs-states): Fix docstring typos.
11545         (cvs-fileinfo-pp, cvs-fileinfo-from-entries): Doc fixes.
11547         * vc/pcvs-parse.el (cvs-parsed-fileinfo): Reflow docstring.
11549         * vc/pcvs-util.el (cvs-flags-query, cvs-flags-set, cvs-prefix-set):
11550         Fix docstring typos.
11552 2014-03-12  Juanma Barranquero  <lekktu@gmail.com>
11554         * frameset.el (frameset--jump-to-register): Add autoload; it could be
11555         called from jump-to-register after unloading the frameset package.
11557 2014-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
11559         * simple.el (set-mark): Ensure mark-active is nil if the mark is nil
11560         (bug#16975).  Deactivate the mark before setting it to nil.
11561         (activate-mark): Do nothing if region is already active.
11563 2014-03-11  Juanma Barranquero  <lekktu@gmail.com>
11565         * frameset.el (frameset--target-display): Remove definition; declare.
11566         (frameset-save, frameset-restore): Let-bind frameset--target-display.
11568 2014-03-11  Stefan Monnier  <monnier@iro.umontreal.ca>
11570         * emacs-lisp/nadvice.el (advice--make-1): Fix autoloading avoidance.
11571         (advice-add): Add a :advice--pending marker, so advice--make-1 knows
11572         when the advice is pending.
11573         (advice-remove): Remove this marker when not needed any more.
11575 2014-03-11  Juanma Barranquero  <lekktu@gmail.com>
11577         * frameset.el: Separate options for reusing frames and cleaning up.
11578         (frameset--reuse-list): Remove definition; declare.
11579         (frameset--action-map): Declare.
11580         (frameset--find-frame-if): Doc fix.
11581         (frameset--restore-frame): Cache frame action.
11582         (frameset-restore): New keyword arg CLEANUP-FRAMES, allows to select
11583         how to clean up the frame list after restoring.  Remove cleaning
11584         options from REUSE-FRAMES.  Change all keyword values to symbols.
11585         (frameset--jump-to-register): Simplify by using CLEANUP-FRAMES.
11587         * desktop.el (desktop-restore-forces-onscreen)
11588         (desktop-restore-reuses-frames): Use non-keyword values.
11589         (desktop-restore-frameset): Use CLEANUP-FRAMES arg of frameset-restore.
11591 2014-03-10  Glenn Morris  <rgm@gnu.org>
11593         * files.el (find-file): Doc fix: update info node name.
11595         * emacs-lisp/advice.el (ad-add-advice, defadvice):
11596         Doc fix: remove references to deleted info nodes.
11598 2014-03-10  Michael Albinus  <michael.albinus@gmx.de>
11600         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
11601         Do not add nil to the environment, when there's no remote `locale'.
11602         (tramp-find-inline-encoding): Check, that the remote host has
11603         installed perl, before sending scripts.
11605 2014-03-10  Leo Liu  <sdl.web@gmail.com>
11607         * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
11608         Clear eldoc-last-message.  (Bug#16920)
11610 2014-03-10  Stefan Monnier  <monnier@iro.umontreal.ca>
11612         * desktop.el (desktop-create-buffer): Don't run activate-mark-hook
11613         (bug#14430).
11615 2014-03-09  Juri Linkov  <juri@jurta.org>
11617         * ansi-color.el (ansi-color-names-vector): Copy default colors
11618         from `xterm-standard-colors' that look well on the default white
11619         background (and also on the black background) to avoid illegible
11620         color combinations like yellow-on-white and white-on-white.
11621         http://lists.gnu.org/archive/html/emacs-devel/2014-02/msg00157.html
11623 2014-03-08  Juanma Barranquero  <lekktu@gmail.com>
11625         * frameset.el (frameset-restore): When no frame is visible, do not
11626         generate a list of frames, just make visible the selected one.
11628 2014-03-08  Dmitry Gutov  <dgutov@yandex.ru>
11630         * vc/vc-git.el (vc-git-command): Turn FILE-OR-LIST into nil when
11631         it only contains the repository root.  (Bug#16897)
11633 2014-03-07  Michael Albinus  <michael.albinus@gmx.de>
11635         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Run first pass
11636         only when `remote-file-name-inhibit-cache' is nil.
11637         (tramp-sh-file-name-handler): Use `tramp-error'.  Simplify code.
11639 2014-03-06  Martin Rudalics  <rudalics@gmx.at>
11641         * window.el (fit-frame-to-buffer, fit-frame-to-buffer-margins):
11642         Fix doc-strings.
11643         (fit-frame-to-buffer): New argument ONLY.  Remove dependency on
11644         fit-frame-to-buffer variable.  Fix doc-string.
11645         (fit-window-to-buffer): Set ONLY argument in call of
11646         fit-frame-to-buffer.  Fix doc-string.
11648 2014-03-06  Michael Albinus  <michael.albinus@gmx.de>
11650         * net/tramp.el (tramp-error): VEC-OR-PROC can be nil.
11651         (tramp-action-password): Clear password cache if needed.
11652         (tramp-read-passwd): Do not clear password cache.
11654         * net/tramp-gvfs.el (tramp-gvfs-handler-askpassword): Clear password
11655         cache unless it is the first password request.
11657 2014-03-06  Glenn Morris  <rgm@gnu.org>
11659         * simple.el (newline): Doc tweak.
11661         * emacs-lisp/shadow.el (load-path-shadows-find):
11662         Ignore dir-locals.  (Bug#12357)
11664 2014-03-05  Glenn Morris  <rgm@gnu.org>
11666         * files.el (interpreter-mode-alist):
11667         * progmodes/sh-script.el (sh-ancestor-alist): Add dash.  (Bug#16938)
11669 2014-03-05  Juanma Barranquero  <lekktu@gmail.com>
11671         * frameset.el (frameset--initial-params): Filter out null entries.
11673 2014-03-05  Martin Rudalics  <rudalics@gmx.at>
11675         * window.el (window-min-height, window-min-width):
11676         Rewrite doc-strings.
11677         (window-body-size): Add PIXELWISE argument to make it consistent
11678         with its callees.
11680 2014-03-05  Juanma Barranquero  <lekktu@gmail.com>
11682         * finder.el (finder-mode-map, finder-mode-syntax-table):
11683         Revert part of 2014-02-28 change.
11685 2014-03-05  Lars Ingebrigtsen  <larsi@gnus.org>
11687         * net/eww.el (eww-mode-map): [tab] doesn't work on tty.
11688         (eww-setup-buffer): Clear next/prev/etc more reliably.
11689         (eww-textarea-map): [tab] doesn't work on tty.
11690         Reported by Mario Lang.
11692         * net/shr.el (shr-map): Ditto.
11694 2014-03-04  Glenn Morris  <rgm@gnu.org>
11696         * minibuffer.el (completion-hilit-commonality):
11697         Revert 2014-03-01 short-cut, which changed the return value. (Bug#16933)
11699 2014-03-04  Juanma Barranquero  <lekktu@gmail.com>
11701         * hilit-chg.el (hilit-chg-unload-function): New function.
11702         (highlight-changes-mode, highlight-changes-visible-mode): Fix typos.
11703         (hilit-chg-map-changes): Prefer cardinal number to digit.
11704         (hilit-chg-display-changes): Reflow docstring.
11705         (highlight-changes-rotate-faces): Remove superfluous backslash.
11707 2014-03-04  Michael Albinus  <michael.albinus@gmx.de>
11709         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Do not call
11710         `tramp-send-command-and-check'.
11712 2014-03-04  Juanma Barranquero  <lekktu@gmail.com>
11714         * hexl.el (hexl-address-region, hexl-ascii-region)
11715         (hexl-goto-hex-address, hexl-backward-char, hexl-forward-char)
11716         (hexl-backward-short, hexl-forward-short, hexl-backward-word)
11717         (hexl-forward-word, hexl-previous-line, hexl-next-line):
11718         Use "Hexl mode" for non-hyperlinked hexl-mode references in docstrings.
11719         (hexl-mode): Doc fix.
11720         (hexl-ascii-start-column, hexl-beginning-of-line, hexl-end-of-line)
11721         (hexl-mode-ruler): Fix typos in docstrings.
11723         * strokes.el (strokes-xpm-header, strokes-rate-stroke): Fix typos.
11724         (strokes-character, strokes-get-grid-position, strokes-list-strokes):
11725         Remove superfluous backslashes.
11726         (strokes-last-stroke, strokes-global-map, strokes-mode):
11727         Reflow docstrings.
11728         (strokes-xpm-for-stroke, strokes-xpm-to-compressed-string)
11729         (strokes-xpm-for-compressed-string): Use quotes with buffer name.
11730         (strokes-distance-squared, strokes-global-set-stroke)
11731         (strokes-global-set-stroke-string): Doc fixes.
11732         (strokes-help): Fix typos; reflow docstring.
11734 2014-03-04  Martin Rudalics  <rudalics@gmx.at>
11736         * window.el (window-in-direction): Fix doc-string.
11738 2014-03-04  Glenn Morris  <rgm@gnu.org>
11740         * emacs-lisp/smie.el (smie-config-guess): Doc fix.
11741         Explicit error if no grammar.
11742         (smie-config-save): Doc fix.  Fix quote typo.
11744 2014-03-04  Stefan Monnier  <monnier@iro.umontreal.ca>
11746         * progmodes/cc-mode.el (c-initialize-cc-mode): Only hook into
11747         electric-indent-mode-hook if we obey electric-indent-mode.
11748         (c-basic-common-init): Use (fboundp 'electric-indent-local-mode) to
11749         decide whether we obey electric-indent-mode.
11750         (c-change-set-fl-decl-start, c-extend-after-change-region):
11751         Silence warnings.
11752         (c-electric-indent-mode-hook): Assume we do want to obey
11753         electric-indent-mode.
11755         * electric.el (electric-indent-mode-has-been-called): Remove.
11756         (electric-indent-mode): Fix accordingly.
11758         * files.el (hack-local-variables): Mention file name in warning.
11760         * htmlfontify.el (hfy-fontify-buffer): Drop `invis-range' message.
11762 2014-03-04  Michal Nazarewicz  <mina86@mina86.com>
11764         * bindings.el: Add comment describing why C-d binds to `delete-char'.
11765         * simple.el (delete-forward-char): Mark as interactive-only.
11767 2014-03-03  Juanma Barranquero  <lekktu@gmail.com>
11769         * icomplete.el (icomplete-completions):
11770         Follow-up to 2014-03-01 change.
11772         * icomplete.el: Miscellaneous doc fixes.
11773         Use Icomplete everywhere instead of icomplete for consistency.
11774         (icomplete-max-delay-chars): Fix typo.
11775         (icomplete-mode): Use \[].
11776         (icomplete-tidy, icomplete-exhibit): Reflow.
11777         (icomplete-minibuffer-setup-hook, icomplete-completions):
11778         Remove superfluous backlashes.
11780         * ido.el: Miscellaneous doc fixes.
11781         Use Ido everywhere instead of ido or `ido' for consistency.
11782         (ido-record-ftp-work-directories, ido-merge-ftp-work-directories)
11783         (ido-cache-ftp-work-directory-time, ido-slow-ftp-hosts)
11784         (ido-slow-ftp-host-regexps, ido-reread-directory): Upcase "ftp".
11785         (ido-separator): Extract obsolescence info from docstring and declare
11786         with make-obsolete-variable.
11787         (ido-minibuffer-setup-hook): Simplify example.
11788         (ido-text, ido-text-init, ido-input-stack, ido-report-no-match)
11789         (ido-wide-find-file, ido-wide-find-dir, ido-wide-find-dir-or-delete-dir)
11790         (ido-completion-help, ido-completing-read): Fix typos in docstrings.
11791         (ido-everywhere): Reflow docstring.
11792         (ido-toggle-vc): Doc fix.
11793         (ido-switch-buffer, ido-find-file): Use tabs to improve legibility
11794         of long list of keybindings.
11796 2014-03-03  Glenn Morris  <rgm@gnu.org>
11798         * frame.el (display-pixel-height, display-pixel-width)
11799         (display-mm-dimensions-alist, display-mm-height)
11800         (display-mm-width): Doc tweaks.
11802 2014-03-02  Barry O'Reilly  <gundaetiapo@gmail.com>
11804         * simple.el (undo-elt-in-region): Fix buffer corruption for edge
11805         case of undo in region.
11807 2014-03-02  Martin Rudalics  <rudalics@gmx.at>
11809         * window.el (fit-window-to-buffer): Fix argument in window-size
11810         call when window is horizontally combined.
11812 2014-03-02  Juanma Barranquero  <lekktu@gmail.com>
11814         * icomplete.el (icomplete-completions): Use string-width.
11815         Suggested by Stefan Monnier <monnier@iro.umontreal.ca>.
11817 2014-03-01  Dmitry Gutov  <dgutov@yandex.ru>
11819         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
11820         Highlight regexp options.  (Bug#16914)
11822 2014-03-01  Martin Rudalics  <rudalics@gmx.at>
11824         * window.el (window--max-delta-1): Round down when calculating
11825         how many lines/columns we can get from a window.
11827 2014-03-01  Glenn Morris  <rgm@gnu.org>
11829         * isearch.el (search-invisible): Doc fix.
11831         * minibuffer.el (completion-hilit-commonality):
11832         Make `base-size' argument optional.  Short-cut if `prefix-len' is 0.
11833         * comint.el (comint-dynamic-list-completions): Doc fix.
11834         * comint.el (comint-dynamic-list-completions):
11835         * filecache.el (file-cache-minibuffer-complete):
11836         * tempo.el (tempo-display-completions):
11837         * eshell/em-hist.el (eshell-list-history):
11838         Replace use of obsolete argument of display-completion-list.
11840 2014-03-01  Juanma Barranquero  <lekktu@gmail.com>
11842         * icomplete.el (icomplete-completions):
11843         Revert back to using "..." when ?… cannot be displayed.
11845 2014-02-28  Juanma Barranquero  <lekktu@gmail.com>
11847         * finder.el (finder-unload-function): New function.
11849 2014-02-28  Juanma Barranquero  <lekktu@gmail.com>
11851         * dframe.el (dframe-detach):
11852         * find-dired.el (find-dired, find-name-dired):
11853         * finder.el (finder-mode-map, finder-mode-syntax-table)
11854         (finder-headmark, finder-select, finder-mouse-select):
11855         Fix docstring typos.
11857 2014-02-28  Martin Rudalics  <rudalics@gmx.at>
11859         Revert recent with-temp-buffer-window change (Bug#16816, Bug#16882).
11860         * window.el (with-temp-buffer-window): Revert change from 2014-02-21.
11861         Suggested by Thierry Volpiatto <thierry.volpiatto@gmail.com>.
11862         Fix doc-string based on a suggestion by Nicolas Richard
11863         <theonewiththeevillook@yahoo.fr>.
11864         * help.el (with-help-window): Fix doc-string.
11866 2014-02-28  Ivan Kanis  <ivan@kanis.fr>
11868         * net/shr.el (shr-image-animate): New option.
11869         (shr-put-image): Respect shr-image-animate.
11871 2014-02-28  Michael Albinus  <michael.albinus@gmx.de>
11873         * net/tramp-adb.el (tramp-adb-parse-device-names):
11874         Use `accept-process-output'.
11875         (tramp-adb-handle-file-truename): Cache the localname only.
11876         (tramp-adb-handle-make-directory)
11877         (tramp-adb-handle-delete-directory): Flush file properties correctly.
11878         (tramp-adb-handle-set-file-modes): Do not raise an error when file
11879         modes cannot be changed.
11881         * net/tramp-cache.el (tramp-flush-directory-property): Remove also
11882         file properties of symlinks.
11884 2014-02-28  Per Starbäck  <starback@stp.lingfil.uu.se>
11886         * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Update
11887         required/optional fields to match development biblatex.  (Bug#16781)
11889 2014-02-28  Andy Sawyer  <andy.sawyer@gmail.com>  (tiny change)
11891         * saveplace.el (toggle-save-place):
11892         Fix argument handling.  (Bug#16673)
11894 2014-02-28  Glenn Morris  <rgm@gnu.org>
11896         * minibuffer.el (completions-first-difference)
11897         (completions-common-part, completion-hilit-commonality): Doc fixes.
11899 2014-02-28  Karl Berry  <karl@gnu.org>
11901         * info.el (Info-mode-map): Add H for describe-mode,
11902         to synchronize with standalone Info.
11904 2014-02-28  Emilio C. Lopes  <eclig@gmx.net>
11906         * progmodes/sql.el (sql-interactive-mode):
11907         Avoid setting global comint-input-ring-separator.  (Bug#16814)
11909 2014-02-27  Michael Albinus  <michael.albinus@gmx.de>
11911         * net/dbus.el (dbus--init-bus): Declare function.
11912         (dbus-path-local, dbus-interface-local): New defconst.
11913         (dbus-init-bus): Use them.
11914         (dbus-return-values-table): Extend doc.
11915         (dbus-handle-bus-disconnect): Extend error message.
11917 2014-02-27  Juanma Barranquero  <lekktu@gmail.com>
11919         * subr.el (y-or-n-p): Fix double space issue in message.
11921 2014-02-27  Michael Albinus  <michael.albinus@gmx.de>
11923         * net/tramp.el (tramp-call-process): Improve trace message.
11924         (tramp-handle-insert-file-contents): Trace error case.
11926         * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
11927         <insert-directory>: Use `tramp-handle-insert-directory'.
11928         (tramp-adb-handle-insert-directory): Remove function.
11929         (tramp-adb-send-command-and-check): New defun, replacing
11930         `tramp-adb-command-exit-status'.  Change all callees.
11931         (tramp-adb-handle-file-attributes)
11932         (tramp-adb-handle-directory-files-and-attributes): Use it.
11933         (tramp-adb-ls-output-name-less-p):
11934         Use `directory-listing-before-filename-regexp'.
11935         (tramp-adb-handle-delete-directory): Flush also file properties of
11936         the truename of directory.
11937         (tramp-adb-handle-file-name-all-completions): Add "./" and "../".
11938         (tramp-adb-handle-file-local-copy): Make the local copy readable.
11939         (tramp-adb-handle-write-region): Implement APPEND.
11940         (tramp-adb-handle-rename-file): Make it more robust.  Flush file
11941         properties correctly.
11942         (tramp-adb-maybe-open-connection): Set `tramp-current-*'
11943         variables.  Check for connected devices only when needed.
11945 2014-02-27  Glenn Morris  <rgm@gnu.org>
11947         * minibuffer.el (completion-table-dynamic)
11948         (completion-table-with-cache): Doc fixes.
11950         * emacs-lisp/crm.el (crm-default-separator, crm-separator)
11951         (completing-read-multiple): Doc fixes.
11953 2014-02-27  Daniel Colascione  <dancol@dancol.org>
11955         * minibuffer.el (completion--nth-completion): Fix indentation.
11957         * net/tramp-sh.el (tramp-get-remote-path): Don't signal error when
11958         explicit tramp path is empty.
11960 2014-02-27  Glenn Morris  <rgm@gnu.org>
11962         * emacs-lisp/crm.el (completing-read-multiple):
11963         Empower help-enable-auto-load.
11965 2014-02-26  Glenn Morris  <rgm@gnu.org>
11967         * startup.el (command-line): Don't init the tty in daemon mode.
11969         Avoid calling tty-setup-hook twice, eg if a term file
11970         explicitly calls tty-run-terminal-initialization.  (Bug#16859)
11971         * faces.el (tty-run-terminal-initialization): Add run-hook argument.
11972         (tty-create-frame-with-faces): Use it.
11973         * startup.el (command-line): Pass run-hook argument
11974         to tty-run-terminal-initialization.
11976         * dired.el (dired-restore-desktop-buffer): Demote errors;
11977         eg in case a glob match fails.  (Bug#16884)
11979 2014-02-26  Dmitry Gutov  <dgutov@yandex.ru>
11981         * emacs-lisp/lisp.el (lisp--local-variables): Catch `end-of-file'
11982         error from `read-from-string'.  (Bug#16850)
11984         * emacs-lisp/ert.el (ert-run-tests-interactively): `read' the
11985         result of `completing-read' in the interactive form.  (Bug#16854)
11987 2014-02-25  Glenn Morris  <rgm@gnu.org>
11989         * image.el (image-animate, image-animate-timeout):
11990         Stop animating images in dead buffers.  (Bug#16878)
11992         * emacs-lisp/edebug.el (defmacro): Fix debug spec.  (Bug#16868)
11994         * faces.el (tty-setup-hook, tty-run-terminal-initialization):
11995         Doc fixes.
11996         * startup.el (term-setup-hook): Doc fix.  Make obsolete.
11997         * term/sun.el (sun-raw-prefix-hooks):
11998         Use tty-setup-hook instead of term-setup-hook.
11999         (terminal-init-sun): Construct message from bytecomp plist.
12000         * term/wyse50.el (enable-arrow-keys): Doc fix.
12002 2014-02-24  Juanma Barranquero  <lekktu@gmail.com>
12004         * term/sun.el (kill-region-and-unmark, sun-raw-prefix-hooks):
12005         Fix docstring typos.
12007 2014-02-24  Michael Albinus  <michael.albinus@gmx.de>
12009         * net/tramp-sh.el (tramp-sh-handle-file-truename): Improve last fix.
12011 2014-02-24  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
12013         * minibuffer.el (completion--try-word-completion):
12014         Fix error when completing M-x commands (bug#16808).
12016 2014-02-24  Leo Liu  <sdl.web@gmail.com>
12018         * emacs-lisp/easy-mmode.el (define-minor-mode): Fix debug spec.
12020 2014-02-24  Juanma Barranquero  <lekktu@gmail.com>
12022         * apropos.el (apropos-print): Avoid formatting error when
12023         apropos-do-all and apropos-compact-layout are both t.
12025 2014-02-23  Juanma Barranquero  <lekktu@gmail.com>
12027         * apropos.el (apropos-property, apropos-all-words-regexp)
12028         (apropos-true-hit, apropos-variable, apropos-print):
12029         Fix docstring typos, and remove obsolete comment.
12031 2014-02-23  Michael Albinus  <michael.albinus@gmx.de>
12033         * net/tramp-sh.el (tramp-sh-handle-file-truename):
12034         Preserve trailing "/".  (Bug#16851)
12036 2014-02-23  Dmitry Gutov  <dgutov@yandex.ru>
12038         * progmodes/ruby-mode.el (ruby-smie-rules): Don't indent specially
12039         after `=>' (bug#16811).
12040         (ruby-smie-rules): Handle the inconsistent second element of the
12041         list returned by `smie-indent--parent'.
12042         (ruby-font-lock-keywords): Disqualify any identifier before `=' as
12043         method call.
12045 2014-02-23  Juanma Barranquero  <lekktu@gmail.com>
12047         * elec-pair.el (electric-pair-text-syntax-table)
12048         (electric-pair-syntax-info, electric-pair--syntax-ppss)
12049         (electric-pair--balance-info, electric-pair-mode): Fix docstring typos.
12050         (electric-pair--looking-at-unterminated-string-p): Doc fix.
12051         (electric-pair--inside-string-p): Doc fix.  Use `let', not `let*'.
12053 2014-02-22  Glenn Morris  <rgm@gnu.org>
12055         * imenu.el (imenu--generic-function): Doc fix.
12057         * register.el (frame-configuration-to-register): Make obsolete.
12059 2014-02-22  Juanma Barranquero  <lekktu@gmail.com>
12061         * desktop.el (desktop-save-buffer-p): Do not fail when
12062         desktop-files-not-to-save is nil.  Return t for true result
12063         as the doc says.
12065 2014-02-22  Daniel Colascione  <dancol@dancol.org>
12067         * net/secrets.el (secrets-create-item, secrets-search-items):
12068         Check that attribute values are strings, avoiding the construction
12069         of invalid dbus messages.
12071 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
12073         * emacs-lisp/gv.el: Avoid duplicating gv-expander and gv-setter in
12074         defun-declarations-alist.
12076 2014-02-21  Stefan Monnier  <monnier@iro.umontreal.ca>
12078         * emacs-lisp/cl-macs.el (cl-define-compiler-macro): Add indent rule
12079         (bug#16829).
12081 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
12083         * whitespace.el (whitespace-space, whitespace-hspace, whitespace-tab)
12084         (whitespace-newline, whitespace-trailing, whitespace-line)
12085         (whitespace-space-before-tab, whitespace-indentation, whitespace-empty)
12086         (whitespace-space-after-tab): Fix typo in docstrings.
12088 2014-02-21  Dmitry Gutov  <dgutov@yandex.ru>
12090         * progmodes/ruby-mode.el (auto-mode-alist): Add missing "or".
12092         * electric.el (electric-indent-functions-without-reindent):
12093         Add `yaml-indent-line'.
12095 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
12097         * w32-vars.el (w32-enable-synthesized-fonts): Mark as obsolete.
12098         It has done nothing for years; should be removed after the release.
12100         * simple.el (choose-completion): Fix docstring typo.
12101         (read-quoted-char-radix): Remove unneeded * in docstring.
12102         (process-file, kill-whole-line, pop-to-mark-command, set-mark-command):
12103         Don't escape parentheses unnecessarily in docstrings.
12105 2014-02-21  Martin Rudalics  <rudalics@gmx.at>
12107         Fix handling of window-min-height/-width (Bug#16738).
12108         * window.el (window--dump-window, window--dump-frame):
12109         New functions.
12110         (window--min-size-1): Account for window dividers.
12111         When window-resize-pixelwise is nil, delay rounding till after the
12112         sum of the window components has been calculated.
12113         (window--min-delta-1, window--max-delta-1): When PIXELWISE is
12114         nil make sure at least one text line and two text columns remain
12115         fully visible.
12116         (window-resize): Signal an error when window-resize-apply fails.
12117         (window--resize-child-windows): Fix calculation of by how many
12118         pixels a window can still be shrunk via window-new-normal.
12119         (adjust-window-trailing-edge): Call window--resizable with
12120         correct TRAIL argument.
12122         (with-temp-buffer-window): Don't evaluate BODY within
12123         with-current-buffer (Bug#16816).
12125 2014-02-21  Michael Albinus  <michael.albinus@gmx.de>
12127         * net/tramp.el (tramp-check-cached-permissions):
12128         Call `file-attributes' with `suffix' being a symbol but a string.
12130 2014-02-21  Daniel Colascione  <dancol@dancol.org>
12132         * net/dbus.el (dbus-init-bus-1): Declare new subr.
12133         (dbus-init-bus): New function: call into dbus-init-bus-1
12134         and installs a handler for the disconnect signal.
12135         (dbus-call-method): Rewrite to look for result in cons.
12136         (dbus-call-method-handler): Store result in cons.
12137         (dbus-check-event): Recognize events with nil sender as valid.
12138         (dbus-handle-bus-disconnect): New function.  React to bus
12139         disconnection signal by synthesizing dbus error for each
12140         pending synchronous or asynchronous call.
12141         (dbus-notice-synchronous-call-errors): New function.
12142         (dbus-handle-event): Raise errors directly only when `dbus-debug'
12143         is true, not all the time.
12145 2014-02-21  Juanma Barranquero  <lekktu@gmail.com>
12147         * w32-fns.el (w32-enable-italics, w32-charset-to-codepage-alist):
12148         Remove obsolescence declarations, these variables do not exist anymore.
12150         * savehist.el (savehist-save-minibuffer-history)
12151         (savehist-additional-variables, savehist-file, savehist-mode-hook)
12152         (savehist-save-hook, savehist-coding-system, savehist-loaded)
12153         (savehist-load, savehist-install, savehist-autosave): Fix typos;
12154         mostly, refer to "Savehist mode" when talking about the mode,
12155         and not the function.
12157         * saveplace.el (save-place): Remove redundant info in docstring.
12158         (save-place-forget-unreadable-files, toggle-save-place)
12159         (save-place-forget-unreadable-files, save-place-dired-hook):
12160         Fix typos and remove unneeded backslashes.
12162 2014-02-20  Michael Albinus  <michael.albinus@gmx.de>
12164         * net/tramp.el (ls-lisp-use-insert-directory-program): Declare.
12165         (tramp-handle-insert-directory): New defun, taken from tramp-gvfs.el.
12167         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
12168         <insert-directory>: Use `tramp-handle-insert-directory'.
12169         (tramp-gvfs-handle-insert-directory): Remove function.
12171         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
12172         Call `tramp-handle-insert-directory'.
12174 2014-02-20  Juanma Barranquero  <lekktu@gmail.com>
12176         * elec-pair.el (electric-pair-syntax-info): Do not check syntax
12177         before the start of buffer/region (bug#16799).
12179 2014-02-20  Glenn Morris  <rgm@gnu.org>
12181         * isearch.el (search-invisible): Doc fix.
12183 2014-02-20  W. Trevor King  <wking@tremily.us>  (tiny change)
12185         * term/xterm.el (xterm--version-handler): Adapt to xterm-280's output
12186         (bug#16657).
12188 2014-02-19  Juanma Barranquero  <lekktu@gmail.com>
12190         * frameset.el (frameset-restore): Delay removing an old frame's
12191         duplicate id until the new frame has been correctly created.
12193 2014-02-19  Michael Albinus  <michael.albinus@gmx.de>
12195         * net/tramp.el (tramp-handle-make-symbolic-link): New defun.
12196         (tramp-check-cached-permissions): Call `file-attributes' if the
12197         cache is empty.
12199         * net/tramp-adb.el (tramp-adb-file-name-handler-alist)
12200         <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
12202         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
12203         <make-symbolic-link>: Use `tramp-handle-make-symbolic-link'.
12204         (tramp-gvfs-maybe-open-connection): Set always connection
12205         properties, even if target is mounted already.
12207         * net/tramp-sh.el (tramp-color-escape-sequence-regexp):
12208         Set tramp-autoload cookie.
12209         (tramp-get-remote-touch): New defun.
12210         (tramp-sh-handle-set-file-times): Use it.
12211         (tramp-sh-handle-directory-files-and-attributes):
12212         Use `tramp-handle-directory-files-and-attributes' if neither stat
12213         nor perl are available on the remote host.
12215         * net/tramp-smb.el (tramp-smb-handle-insert-directory): Mark trailing
12216         "/".  Write long listing only when "l" belongs to the switches.
12218         * net/trampver.el: Update release number.
12220 2014-02-19  Juanma Barranquero  <lekktu@gmail.com>
12222         * frameset.el (frameset--reuse-frame): Remove workaround for bug#16793.
12224 2014-02-19  Martin Rudalics  <rudalics@gmx.at>
12226         * window.el (window-state-put): Allow WINDOW to refer to an
12227         internal window (Bug#16793).
12229 2014-02-19  Glenn Morris  <rgm@gnu.org>
12231         * textmodes/remember.el: Move provide statement to end.
12232         (remember-mode-map, remember-notes-mode-map, remember-notes-mode)
12233         (remember-notes): Doc fixes.
12235 2014-02-18  Stefan Monnier  <monnier@iro.umontreal.ca>
12237         * delsel.el (delete-char): Restore incorrectly erased property
12238         (bug#16795).
12240 2014-02-18  Juanma Barranquero  <lekktu@gmail.com>
12242         * frameset.el (frameset--restore-frame): When a frame is being reused
12243         and its root window is not alive, delete all the frame's windows before
12244         restoring the window state.  This works around the issue in bug#16793.
12246 2014-02-18  Glenn Morris  <rgm@gnu.org>
12248         * textmodes/remember.el (remember-data-directory)
12249         (remember-directory-file-name-format, remember-store-in-files)
12250         (remember-notes-initial-major-mode, remember-notes-bury-on-kill)
12251         (remember-notes-save-and-bury-buffer)
12252         (remember-notes--kill-buffer-query): Doc fixes.
12254         * desktop.el (desktop-save-mode, desktop-auto-save-timeout): Doc fixes.
12256 2014-02-17  Alan Mackenzie  <acm@muc.de>
12258         Connect electric-indent-mode up with CC Mode.  Bug #15478.
12259         * progmodes/cc-mode.el (c-initialize-cc-mode): Add CC Mode hooks
12260         to electric-indent-{,local-}-mode.
12261         (c-basic-common-init): Set electric-indent-inhibit.
12262         Initialise c-electric-flag from electric-indent-mode.
12263         (c-electric-indent-mode-hook, c-electric-indent-local-mode-hook):
12264         New hook functions which propagate electric-indent-mode to CC mode.
12266         * progmodes/cc-cmds.el (c-toggle-electric-state): When C-c C-l is
12267         hit, toggle electric-indent-local-mode.
12269         * electric.el (electric-indent-mode-has-been-called):
12270         New variable.
12272 2014-02-17  Juanma Barranquero  <lekktu@gmail.com>
12274         * frameset.el (frameset-cfg-id): New function.
12275         (frameset--reuse-frame, frameset-restore): Use it.
12276         (frameset--jump-to-register): Try harder to reuse frames (bug#16748).
12278 2014-02-17  Stefan Monnier  <monnier@iro.umontreal.ca>
12280         * ido.el (ido-file-internal): Remove unused var `d'.
12281         Use \` for to match BoS.  Fit within 80n columns.
12283 2014-02-17  Daniel Colascione  <dancol@dancol.org>
12285         * net/dbus.el (dbus-call-method): Work around bug#16775 by having
12286         dbus-call-method check for completion using a busy-wait loop with
12287         gradual backoff.
12289 2014-02-16  Michael Albinus  <michael.albinus@gmx.de>
12291         Sync with Tramp 2.2.9.
12293         * net/trampver.el: Update release number.
12295 2014-02-16  Dmitry Gutov  <dgutov@yandex.ru>
12297         * ido.el (ido-file-internal): Don't add the name of an existing
12298         directory twice.  (Bug#16747)
12300 2014-02-16  Glenn Morris  <rgm@gnu.org>
12302         * vc/ediff-init.el (ediff-use-faces, ediff-highlight-all-diffs):
12303         Do not use ediff-defvar-local on pre-defined variables.  (Bug#16744)
12305 2014-02-15  Michael R. Mauger  <michael@mauger.com>
12307         * progmodes/sql.el: Version 3.4
12308         (sql-oracle-options): New default value ("-L").
12309         (sql-mode-oracle-font-lock-keywords): Add placeholder highlighting.
12310         (sql-placeholders-filter): Correct placeholder pattern.
12311         (sql-read-table-name): Bug fix.  Detect absence of SQLi process.
12312         (sql-login-delay): New variable.
12313         (sql-product-interactive): Use it.
12315 2014-02-15  Juanma Barranquero  <lekktu@gmail.com>
12317         * frameset.el (frameset--jump-to-register): Check that buffer is live
12318         (bug#16749).
12320 2014-02-15  Glenn Morris  <rgm@gnu.org>
12322         * info.el (info-initialize): Revert 2014-01-10 change.
12324 2014-02-14  Glenn Morris  <rgm@gnu.org>
12326         * replace.el (map-query-replace-regexp)
12327         (read-regexp-defaults-function, read-regexp): Doc fixes.
12329         * dired.el (dired-read-regexp):
12330         * faces.el (list-faces-display):
12331         * misearch.el (multi-isearch-read-matching-buffers)
12332         (multi-isearch-read-matching-files):
12333         * play/cookie1.el (cookie-apropos):
12334         * progmodes/grep.el (grep-read-regexp): Doc fixes.
12336         * textmodes/remember.el (remember): Use frameset-to-register
12337         rather than frame-configuration-to-register.
12339 2014-02-14  Jay Belanger  <jay.p.belanger@gmail.com>
12341         * calc/calc-menu.el (calc-vectors-menu): Remove menu item for
12342         incorrect keybinding.
12344 2014-02-13  Daniel Colascione  <dancol@dancol.org>
12346         * progmodes/flymake.el (flymake-post-syntax-check): Widen buffer
12347         when adding overlays so that line numbers from compiler match line
12348         numbers we use.
12350 2014-02-13  Glenn Morris  <rgm@gnu.org>
12352         * mail/rmail.el (rmail-probe): Be less strict.  (Bug#16743)
12354         * jit-lock.el (jit-lock-mode): Doc fix.
12356 2014-02-13  Juanma Barranquero  <lekktu@gmail.com>
12358         * apropos.el (apropos-read-pattern): When the user passes an empty
12359         string, give a more helpful error message than "Wrong type
12360         argument: stringp, nil".
12362 2014-02-13  Stefan Monnier  <monnier@iro.umontreal.ca>
12364         * jit-lock.el (jit-lock-mode): Keep it disabled in indirect buffers.
12366 2014-02-13  Glenn Morris  <rgm@gnu.org>
12368         * finder.el (finder-known-keywords, finder-mode-map): Doc fixes.
12370 2014-02-12  Stefan Monnier  <monnier@iro.umontreal.ca>
12372         * emulation/cua-base.el (cua-scroll-up, cua-scroll-down): Mark them as
12373         shift-select commands.
12375 2014-02-12  Dmitry Gutov  <dgutov@yandex.ru>
12377         * progmodes/js.el (js-indent-line): Don't widen.
12378         http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00276.html
12380 2014-02-12  Glenn Morris  <rgm@gnu.org>
12382         * icomplete.el (icomplete): Add info-link to defgroup.
12383         (icomplete-with-completion-tables, icomplete-minibuffer-setup-hook)
12384         (icomplete-minibuffer-map, icomplete-mode)
12385         (icomplete-simple-completing-p, icomplete-completions): Doc fixes.
12387         * emacs-lisp/package.el (package-menu-mode-map): Tweak menu.
12388         (package-menu-filter): Rename from package-menu-filter-interactive.
12389         Doc fix.
12391 2014-02-11  Juanma Barranquero  <lekktu@gmail.com>
12393         * frameset.el (frameset--jump-to-register): Select the required
12394         window and buffer before restoring position (bug#16696).
12396 2014-02-11  Lars Ingebrigtsen  <larsi@gnus.org>
12398         * dired.el (dired-get-marked-files): Clarify doc (bug#11534).
12400 2014-02-10  Glenn Morris  <rgm@gnu.org>
12402         * jit-lock.el (jit-lock-force-redisplay): Doc fix.  (Bug#14394)
12404 2014-02-10  Eli Zaretskii  <eliz@gnu.org>
12406         * w32-common-fns.el (x-get-selection): Doc fix.
12407         * select.el (x-get-selection): Doc fix.  (Bug#15109)
12409         * face-remap.el (face-remap-add-relative)
12410         (face-remap-remove-relative, face-remap-reset-base)
12411         (face-remap-set-base): Call force-mode-line-update to redisplay
12412         the current buffer due to potential change in faces.  (Bug#16709)
12414 2014-02-10  Michael Albinus  <michael.albinus@gmx.de>
12416         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Apply heredoc
12417         script more robustly.
12419 2014-02-10  Lars Ingebrigtsen  <larsi@gnus.org>
12421         * dired.el (dired-get-marked-files): Doc fix (bug#11534).
12423         * simple.el (choose-completion): Doc fix (bug#14160).
12425         * subr.el (event-start): Say what a nil EVENT value means.
12427         * kmacro.el (kmacro-bind-to-key): Say that the parameter is unused
12428         (bug#14197).
12430         * progmodes/grep.el (find-program): Doc fix (bug#14289).
12432         * files.el (confirm-kill-emacs): Clarify doc (bug#15455).
12434         * emacs-lisp/lisp.el (up-list): Doc fix (bug#15832).
12436         * files.el (confirm-kill-emacs): Allow specifying an arbitrary
12437         predicate function (bug#15455).
12439 2014-02-10  Dmitry Gutov  <dgutov@yandex.ru>
12441         * ielm.el (inferior-emacs-lisp-mode): Instead of
12442         `comment-use-global-state', set `comment-use-syntax'.
12444 2014-02-10  Glenn Morris  <rgm@gnu.org>
12446         * emacs-lisp/gulp.el (gulp-discard): Add emacs-devel.
12448 2014-02-09  Alan Mackenzie  <acm@muc.de>
12450         Fix c-invalidate-state-cache on narrowed buffers.
12451         * progmodes/cc-defs.el (c-with-all-but-one-cpps-commented-out):
12452         Widen when setting and clearing the CPP delimiter properties.
12454 2014-02-09  Lars Ingebrigtsen  <larsi@gnus.org>
12456         * help.el (describe-bindings): Doc fix (bug#9888).
12458         * files.el (save-buffer): Use ARG as the parameter name for
12459         consistency (bug#10346).
12460         (save-buffer): Clarify the 0 argument (bug#10346).
12462         * cus-edit.el (customize-apropos): Fix error string.
12463         (custom-buffer-create): Doc fix (bug#11122).
12464         (custom-sort-items): Doc fix (bug#11121).
12466         * repeat.el (repeat-message-function): Reword doc slightly (bug#11619).
12468         * icomplete.el (icomplete-with-completion-tables): Doc fix (bug#11654).
12469         (icomplete-simple-completing-p): Mention the previous variable.
12471         * font-lock.el (font-lock-value-in-major-mode): Clarify the
12472         meaning of the parameter (bug#12282).
12474         * files.el (find-file-noselect): Clarify prompt when changing
12475         readedness (bug#13261).
12476         (locate-file): Suffixes aren't returned, so don't say that they
12477         are (bug#12674).
12478         (backup-inhibited): Doc clarification (bug#12525).
12480         * dired.el (dired-internal-do-deletions): Don't say "Deleting..."
12481         before we actually start to delete things (bug#16331).
12483         * subr.el (event-start): Doc fix (bug#14228).
12484         (event-end): Ditto.
12486 2014-02-09  Glenn Morris  <rgm@gnu.org>
12488         * emacs-lisp/warnings.el (lwarn):
12489         Empower help-enable-auto-load.  (Bug#15940)
12491 2014-02-08  Andreas Schwab  <schwab@linux-m68k.org>
12493         * vc/log-edit.el (log-edit-comment-to-change-log): Doc fix.
12494         (Bug#16690)
12496 2014-02-08  Michael Albinus  <michael.albinus@gmx.de>
12498         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
12499         Insert output at end of buffer.  (Bug#16120)
12501 2014-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
12503         * simple.el (choose-completion-string-functions): Document new
12504         calling convention (bug#14153).
12505         (execute-extended-command): Clarify doc string (bug#13373).
12507         * kmacro.el (kmacro-exec-ring-item): Doc fix (bug#14198).
12509         * find-dired.el (find-name-dired): Doc fix (bug#14290).
12510         (find-grep-dired): Doc fix (bug#14288).
12512 2014-02-08  Juri Linkov  <juri@jurta.org>
12514         * isearch.el (isearch-quote-char): Check character validity
12515         like in `quoted-insert' (bug#16677).
12517 2014-02-08  Lars Ingebrigtsen  <larsi@gnus.org>
12519         * files.el (find-file-visit-truename): Doc clarification (bug#14697).
12521         * isearch.el (isearch-hide-immediately): Doc clarification
12522         (bug#14723).
12524         * simple.el (line-move): Document utility function used many
12525         places in the Emacs sources (bug#14843).
12527         * dired.el (dired-mode-map): Make :help text more accurate (bug#14893).
12528         (dired-prev-marked-file): Doc fix (bug#14855).
12529         (dired-up-directory): Doc fix (bug#14848).
12531         * minibuffer.el (read-file-name): Doc clarification (bug#15096).
12533         * files.el (file-relative-name): Doc fix (bug#15159).
12535         * fringe.el (fringe-styles): Doc fix (bug#15239).
12537         * isearch.el (isearch-filter-predicate): Documentation typo fix
12538         (bug#15474).
12540         * info-look.el (info-lookup-symbol): Document MODE (bug#15498).
12542         * isearch.el (isearch-cmds): Doc clarification (bug#15547).
12544         * replace.el (replace-match-maybe-edit): Doc clarification
12545         (bug#15632).
12547         * subr.el (add-to-list): Refill the paragraphs (bug#15791).
12549         * macros.el (insert-kbd-macro): Doc fix (bug#16025).
12551 2014-02-08  Glenn Morris  <rgm@gnu.org>
12553         * help-fns.el (describe-variable):
12554         Check {file,dir}-local-variables-alist, and buffer-file-name,
12555         in the correct buffer.
12557 2014-02-08  Ingo Lohmar  <i.lohmar@gmail.com>
12559         * help-fns.el (describe-variable): Fix the case where
12560         a value is directory-local with no dir-locals file.  (Bug#16635)
12562 2014-02-08  Glenn Morris  <rgm@gnu.org>
12564         * abbrev.el (edit-abbrevs-mode):
12565         Derive from fundamental-mode.  (Bug#16682)
12567 2014-02-07  Juanma Barranquero  <lekktu@gmail.com>
12569         * simple.el (quoted-insert): Check character validity (bug#16677).
12571 2014-02-07  Juri Linkov  <juri@jurta.org>
12573         * desktop.el (desktop-read): Claim the lock when the owner is not
12574         the current process.  (Bug#16157)
12576 2014-02-07  Juri Linkov  <juri@jurta.org>
12578         * desktop.el (desktop-buffers-not-to-save): Change default from nil
12579         to "\\` ".  (Bug#16651)
12581 2014-02-07  Juri Linkov  <juri@jurta.org>
12583         * desktop.el (desktop-save-mode): Call `desktop-auto-save-set-timer'
12584         when enabling, and `desktop-auto-save-cancel-timer' when disabling.
12585         (desktop-auto-save-cancel-timer): New function with some code from
12586         `desktop-auto-save-set-timer'.
12587         (after-init-hook): Don't call `desktop-auto-save-set-timer'.
12588         Instead of setting `desktop-save-mode' to nil, call
12589         `desktop-save-mode' with arg 0.  (Bug#16630)
12591 2014-02-07  Glenn Morris  <rgm@gnu.org>
12593         * hi-lock.el (hi-lock-auto-select-face, hi-lock-line-face-buffer)
12594         (hi-lock-face-buffer, hi-lock-face-phrase-buffer)
12595         (hi-lock-face-symbol-at-point, hi-lock-read-face-name): Doc tweaks.
12597         * obsolete/iswitchb.el: Move to obsolete/.
12598         * simple.el (iswitchb-mode): Add manual autoloads to ease transition,
12599         since obsolete/ is not scanned for autoloads.
12600         * emacs-lisp/authors.el (authors-valid-file-names):
12601         Add iswitchb.el.
12603         * obsolete/meese.el: Restore as obsolete (deleted 2014-01-11).
12604         Disable now non-functional find-file-hook.
12606 2014-02-06  Michael Albinus  <michael.albinus@gmx.de>
12608         * net/tramp-sh.el (tramp-sh-handle-start-file-process): Use "&&"
12609         instead of ";" in order to avoid additional prompts.  Let heredoc
12610         scripts read from tty.  (Bug#16582)
12611         (tramp-send-command): No special handling of heredocs, it isn't
12612         necessary anymore.
12614 2014-02-06  Stefan Monnier  <monnier@iro.umontreal.ca>
12616         * emacs-lisp/lisp.el (lisp-completion-at-point): Symbols don't start
12617         with a space (bug#16664).  Limit the symbols considered to the ones
12618         that are bound or fbound (bug#16646).
12620 2014-02-06  Glenn Morris  <rgm@gnu.org>
12622         * epa.el (epa-mail-aliases): Doc fix.
12624 2014-02-06  Dmitry Gutov  <dgutov@yandex.ru>
12626         * emacs-lisp/lisp.el (lisp-completion-at-point):
12627         Use `completion-table-merge' instead of `completion-table-in-turn'
12628         (bug#16604).
12630         * minibuffer.el (completion-table-merge): New function.
12632 2014-02-05  Michael Albinus  <michael.albinus@gmx.de>
12634         * net/tramp-sh.el (tramp-end-of-heredoc): New defconst.
12635         (tramp-sh-handle-set-file-acl)
12636         (tramp-sh-handle-start-file-process)
12637         (tramp-sh-handle-write-region, tramp-sh-handle-vc-registered)
12638         (tramp-find-executable, tramp-send-command): Use it.
12640 2014-02-05  Glenn Morris  <rgm@gnu.org>
12642         * epa.el (epa-mail-aliases): Fix custom type.  Doc tweak.
12644 2014-02-04  Fabián Ezequiel Gallina  <fgallina@gnu.org>
12646         * progmodes/python.el (python-shell-send-string)
12647         (python-shell-send-string-no-output): Fix docstring (Bug#16547).
12649 2014-02-04  Anders Lindgren  <andlind@gmail.com>
12651         * emacs-lisp/ert.el (ert--activate-font-lock-keywords): Allow dashes in
12652         the names (bug#16620).
12654 2014-02-03  Martin Rudalics  <rudalics@gmx.at>
12656         * faces.el (window-divider): New default value.  Rewrite doc-string.
12657         (window-divider-first-pixel, window-divider-last-pixel): New faces.
12659 2014-02-03  Dmitry Gutov  <dgutov@yandex.ru>
12661         * progmodes/ruby-mode.el (ruby-font-lock-keywords): `private',
12662         `protected' and `public' can also be called without arguments.
12664 2014-02-03  Glenn Morris  <rgm@gnu.org>
12666         * register.el (window-configuration-to-register)
12667         (frame-configuration-to-register): Unadvertise unused argument.
12668         * frameset.el (frameset-to-register): Remove unused argument.
12670         * frameset.el (frameset-to-register):
12671         * kmacro.el (kmacro-to-register):
12672         * register.el (increment-register):
12673         * calc/calc-yank.el (calc-copy-to-register, calc-insert-register)
12674         (calc-append-to-register, calc-prepend-to-register):
12675         * play/gametree.el (gametree-layout-to-register)
12676         (gametree-apply-register-layout):
12677         * textmodes/picture.el (picture-clear-rectangle-to-register)
12678         (picture-yank-rectangle-from-register):
12679         * vc/emerge.el (emerge-combine-versions-register):
12680         Use register-read-with-preview to read registers.
12682 2014-02-03  João Távora  <joaotavora@gmail.com>
12684         * elec-pair.el (electric-pair-backward-delete-char): Don't error
12685         when at beginning of (possibly narrowed) buffer.
12687 2014-02-02  Daniel Colascione  <dancol@dancol.org>
12689         * help-at-pt.el (help-at-pt-string, help-at-pt-maybe-display):
12690         Also try to display local help from just before point.
12692 2014-02-02  Alan Mackenzie  <acm@muc.de>
12694         c-parse-state.  Don't "append-lower-brace-pair" in certain
12695         circumstances.  Also fix an obscure bug where "\\s!" shouldn't be
12696         recognised as a comment.
12698         * progmodes/cc-engine.el (c-state-pp-to-literal): Check for "\\s!"
12699         as well as normal comment starter.
12700         (c-parse-state-get-strategy): Extra return possibility
12701         'back-and-forward.
12702         (c-remove-stale-state-cache): Extra element CONS-SEPARATED in
12703         return value list to indicate replacement of a brace-pair cons
12704         with its car.
12705         (c-parse-state-1): With 'back-and-forward, only call
12706         c-append-lower-brace-pair-to state-cache when cons-separated.
12708 2014-02-02  Jan Djärv  <jan.h.d@swipnet.se>
12710         * term/ns-win.el (ns-suspend-error): New function.
12711         (ns-initialize-window-system): Add ns-suspend-error to
12712         suspend-hook (Bug#16612).
12714 2014-02-02  Daniel Colascione  <dancol@dancol.org>
12716         * progmodes/cc-defs.el (c-find-assignment-for-mode):
12717         Make loading cc-mode silent.
12719 2014-02-02  Daniel Colascione  <dancol@dancol.org>
12721         * comint.el (comint-prompt-read-only): Change doc to suggest
12722         remap keybinding.
12724 2014-02-02  Glenn Morris  <rgm@gnu.org>
12726         * register.el (register-read-with-preview, point-to-register)
12727         (window-configuration-to-register, frame-configuration-to-register)
12728         (jump-to-register, number-to-register, view-register, insert-register)
12729         (copy-to-register, append-to-register, prepend-to-register)
12730         (copy-rectangle-to-register): Doc fixes.
12732 2014-02-02  Stefan Monnier  <monnier@iro.umontreal.ca>
12734         * help-fns.el (help-C-file-name): Handle advised functions (bug#16478).
12735         * emacs-lisp/find-func.el (find-function-C-source): Idem.
12736         * emacs-lisp/nadvice.el (advice--cd*r): New function.
12737         * help-fns.el (describe-function-1): Use it.
12739 2014-02-02  Glenn Morris  <rgm@gnu.org>
12741         * register.el (register-preview-default): New function,
12742         split from register-preview.
12743         (register-preview-function): Rename from register-preview-functions,
12744         make it not a hook.
12745         (register-preview): Use register-preview-function.
12746         (register-read-with-preview): Error on non-character event.  (Bug#16595)
12748 2014-02-01  Dmitry Gutov  <dgutov@yandex.ru>
12750         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Check for
12751         `:' before binary operators (bug#16609).  Don't check for `:'
12752         before `[' and `(', or their syntax status.  A percent literal
12753         can't end with either.
12754         (ruby-font-lock-keywords): For built-ins that require arguments,
12755         check that they're followed by something that looks like argument
12756         (bug#16610).
12758 2014-02-01  Lars Ingebrigtsen  <larsi@gnus.org>
12760         * subr.el (butlast): Document what an omitted N means (bug#13437).
12761         (nbutlast): Ditto.
12763 2014-01-31  Lars Ingebrigtsen  <larsi@gnus.org>
12765         * net/shr.el (shr-generic): Make into a defsubst to make the stack
12766         depth shallower (bug#16587).
12767         (shr-tag-svg): Respect `shr-inhibit-images'.
12768         (shr-dom-to-xml): Respect `shr-blocked-images' (bug#15882).
12770 2014-01-31  Dmitry Gutov  <dgutov@yandex.ru>
12772         * progmodes/ruby-mode.el (ruby-align-chained-calls): New option.
12773         (ruby-smie-grammar): Make "." right-associative.  Make its priority
12774         lower than the ternary and all binary operators.
12775         (ruby-smie-rules): Indent "(" relative to the first non-"."
12776         parent, or the first "." parent at indentation.
12777         Use `ruby-align-chained-calls' for indentation of "." tokens.
12778         (Bug#16593)
12780 2014-01-31  Juri Linkov  <juri@jurta.org>
12782         * sort.el (delete-duplicate-lines): Remove `:weakness 'key'
12783         from `make-hash-table'.
12785         * textmodes/ispell.el (ispell-init-process): Change message format
12786         to be consistent with other messages.
12788 2014-01-31  Glenn Morris  <rgm@gnu.org>
12790         * delsel.el (delete-selection-mode): Doc fix.
12792         * emacs-lisp/trace.el (trace--read-args, trace-function-foreground)
12793         (trace-function-background): Doc fixes.
12795         * ido.el (ido-use-virtual-buffers): Doc fix.
12796         Reset :version, since the default value has not changed.
12798         * register.el (register-preview-delay, register-read-with-preview):
12799         Doc fixes.
12801         * mail/reporter.el (reporter-dump-variable): In case of void-variable,
12802         do not mess with mail-buffer position (fixes 2009-11-03 change).
12803         * progmodes/cc-mode.el (c-submit-bug-report):
12804         Check auto-fill-mode is bound.  (Bug#16592)
12806 2014-01-31  Darren Hoo  <darren.hoo@gmail.com>
12808         * startup.el (fancy-splash-image-file): New function,
12809         split from fancy-splash-head.
12810         (fancy-splash-head, use-fancy-splash-screens-p): Use it,
12811         so that we are both using the same image.  (Bug#16574)
12813 2014-01-30  Glenn Morris  <rgm@gnu.org>
12815         * simple.el (eval-expression): Doc fix.
12817         * hexl.el (hexl-mode-hook):
12818         * ielm.el (ielm-mode-hook):
12819         * emacs-lisp/lisp-mode.el (emacs-lisp-mode-hook)
12820         (lisp-interaction-mode-hook):
12821         * progmodes/cfengine.el (cfengine3-documentation-function):
12822         Replace obsolete alias `turn-on-eldoc-mode' with `eldoc-mode'.
12824 2014-01-30  Stefan Monnier  <monnier@iro.umontreal.ca>
12826         * emacs-lisp/eieio-opt.el (eieio-help-generic): Don't assume `generic'
12827         is a symbol (bug#16584).
12829 2014-01-30  Glenn Morris  <rgm@gnu.org>
12831         * help.el (help-for-help-internal): Add "P" to text.
12833 2014-01-29  Glenn Morris  <rgm@gnu.org>
12835         * simple.el (just-one-space, cycle-spacing): Doc fixes.
12837 2014-01-28  Martin Rudalics  <rudalics@gmx.at>
12839         * window.el (fit-frame-to-buffer): Fix calculations for margins and
12840         height constraints.
12842 2014-01-28  Luke Lee  <luke.yx.lee@gmail.com>
12844         * progmodes/hideif.el: Extend to full CPP expression syntax.
12845         (hif-token-alist): Add missing tokens.
12846         (hif-token-regexp): Add support for float/octal/hex immediates.
12847         (hif-string-literal-regexp): New const.
12848         (hif-tokenize): Recognize strings and float/octal/hex immediates.
12849         (hif-exprlist): New function.
12850         (hif-parse-if-exp): Use it.
12851         (hif-logior-expr, hif-logxor-expr, hif-logand-expr, hif-comp-expr)
12852         (hif-logshift-expr, hif-muldiv-expr, hif-lognot, hif-shiftleft)
12853         (hif-shiftright, hif-multiply, hif-divide, hif-modulo, hif-equal)
12854         (hif-logxor, hif-comma): New functions.
12856 2014-01-28  Glenn Morris  <rgm@gnu.org>
12858         * textmodes/fill.el (fill-single-char-nobreak-p): Doc tweak.
12860         * indent.el (tab-stop-list): Doc fix.  Add :version.
12862         * vc/pcvs.el (vc-editable-p, vc-checkout): Remove unused declarations.
12863         (cvs-append-to-ignore): Add compatibility alias.
12865 2014-01-27  Glenn Morris  <rgm@gnu.org>
12867         * dired.el (dired-hide-details-mode): Don't autoload it,
12868         since it cannot be used outside Dired buffers anyway.
12870         * emulation/cua-base.el (cua-mode): Doc fix.
12872         * dired.el (dired-hide-details-hide-symlink-targets)
12873         (dired-hide-details-hide-information-lines)
12874         (dired-hide-details-mode): Doc fixes.
12876         * shadowfile.el (shadow-info-file, shadow-todo-file): Doc fix.
12877         * strokes.el (strokes-file): Doc fix.  Bump :version.
12878         (strokes-help): Doc fix.
12879         * emulation/viper-init.el (viper-vi-style-in-minibuffer): Doc fix.
12880         * emulation/viper.el (viper): Doc fix for custom group.
12881         (top-level): Remove oh-so-no-longer-relevant text about vip.
12882         * obsolete/otodo-mode.el (todo-prefix): Doc fix.
12884         * ido.el (ido-save-directory-list-file):
12885         * saveplace.el (save-place-file):
12886         * calendar/timeclock.el (timeclock-file):
12887         * net/quickurl.el (quickurl-url-file):
12888         * obsolete/otodo-mode.el (todo-file-do, todo-file-done, todo-file-top):
12889         * progmodes/idlwave.el (idlwave-config-directory):
12890         * textmodes/remember.el (remember-data-file):
12891         Bump :version.
12893 2014-01-26  Glenn Morris  <rgm@gnu.org>
12895         * progmodes/opascal.el (opascal-tab-always-indents, opascal-tab):
12896         Doc fix.  Make obsolete.
12897         (opascal-mode): No longer mention opascal-tab-always-indents in doc.
12899         * sort.el (delete-duplicate-lines): Doc fix.
12901 2014-01-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
12903         * progmodes/ada-mode.el (ada):
12904         * woman.el (woman): Link to info manual and Commentary section.
12906         * progmodes/flymake.el (flymake):
12907         * nxml/nxml-mode.el (nxml):
12908         * net/eww.el (eww):
12909         * speedbar.el (speedbar, speedbar-faces, speedbar-vc):
12910         * htmlfontify.el (htmlfontify):
12911         * ses.el (ses):
12912         * epa.el (epa):
12913         * ido.el (ido): Link to info manual.
12915 2014-01-25  Leo Liu  <sdl.web@gmail.com>
12917         * progmodes/flymake.el (flymake-make-overlay): No rear advance.
12919 2014-01-25  Adam Sjøgren  <asjo@koldfront.dk>
12921         * net/shr.el (shr-tag-img): Prefer the title over the alt text
12922         (bug#16537).
12924 2014-01-24  Juanma Barranquero  <lekktu@gmail.com>
12926         * net/eww.el (eww-download-callback):
12927         Fix reference to eww-download-directory.
12929         * emacs-lisp/bytecomp.el (byte-compile-file):
12930         Remove unused local variable `file-name'.
12932 2014-01-24  Glenn Morris  <rgm@gnu.org>
12934         * woman.el (woman-default-faces, woman-monochrome-faces):
12935         Fix obsolescence specification.
12937         * subr.el (with-demoted-errors): Doc fix.
12939 2014-01-23  Stefan Monnier  <monnier@iro.umontreal.ca>
12941         * emacs-lisp/cl-macs.el: Improve type->predicate mapping (bug#16520).
12942         (cl--macroexp-fboundp): New function.
12943         (cl--make-type-test): Use it.
12945 2014-01-23  Glenn Morris  <rgm@gnu.org>
12947         * emacs-lisp/lisp-mode.el (eval-print-last-sexp, eval-last-sexp):
12948         * simple.el (eval-expression): Doc fixes.
12950 2014-01-22  Glenn Morris  <rgm@gnu.org>
12952         * emacs-lisp/authors.el (authors-fixed-entries): Addition.
12954 2014-01-22  Stefan Monnier  <monnier@iro.umontreal.ca>
12956         * emacs-lisp/package.el: Write files silently.
12957         (package-autoload-ensure-default-file, package--write-file-no-coding)
12958         (package-generate-description-file, package--download-one-archive)
12959         (package-install-from-archive): Tell `write-region' to stay quiet.
12960         (package-menu-mode, package-menu--print-info): Omit the Archive column
12961         if there's only one archive.
12962         (package-all-keywords, package--has-keyword-p): Remove dead code.
12964 2014-01-22  Glenn Morris  <rgm@gnu.org>
12966         * version.el (emacs-bzr-version-bzr): Fix typo.
12968         * version.el (emacs-repository-get-version):
12969         Check either .bzr or .git, but not both.
12970         Make the git case actually use the DIR argument, and return nil
12971         rather than the empty string.
12972         Avoid error if .git exists but the git executable is not found.
12974 2014-01-22  Martin Rudalics  <rudalics@gmx.at>
12976         Fixes in window size functions around Bug#16430 and Bug#16470.
12977         * window.el (window-total-size, window-size): New argument ROUND.
12978         (window--min-delta-1, window-min-delta, window--max-delta-1):
12979         Be more conservative when calculating the numbers of lines or
12980         columns a window can shrink (Bug#16430).
12981         (fit-window-to-buffer): Simplify code.
12982         * term.el (term-window-width): Call window-body-width again.
12984 2014-01-22  Glenn Morris  <rgm@gnu.org>
12986         * image.el (image-format-suffixes): Doc fix.
12988         * international/quail.el (quail-define-package): Doc fix.
12990         * emacs-lisp/authors.el (authors-valid-file-names)
12991         (authors-renamed-files-alist): Additions.
12993         * vc/vc-git.el (vc-git-print-log): Remove --follow;
12994         reverts 2014-01-09 change.  (Bug#16422)
12996         * calc/calc-embed.el (thing-at-point-looking-at):
12997         * emacs-lisp/map-ynp.el (x-popup-dialog):
12998         * obsolete/lmenu.el (x-popup-dialog):
12999         * emacs-lisp/package.el (url-recreate-url):
13000         * mail/mailclient.el (clipboard-kill-ring-save):
13001         * subr.el (x-popup-dialog): Update declaration.
13002         * mail/rmail.el (rmail-mime-message-p):
13003         * window.el (tool-bar-lines-needed): Remove unnecessary declaration.
13005 2014-01-21  Daniel Colascione  <dancol@dancol.org>
13007         * progmodes/sh-script.el (sh--inside-noncommand-expression):
13008         Correctly detect when we're inside an arithmetic expansion form
13009         containing nested parenthesis.
13010         (sh--maybe-here-document): Use `sh--inside-noncommand-expression'
13011         to detect cases where we shouldn't expand "<<" to a heredoc
13012         skeleton.
13014 2014-01-21  Stefan Monnier  <monnier@iro.umontreal.ca>
13016         * emacs-lisp/eldoc.el: Properly remove message in minibuffer case.
13017         (eldoc--message-command-p): New function.
13018         (eldoc-display-message-p): Use it.
13019         (eldoc-pre-command-refresh-echo-area): In the minibuffer case, the
13020         message is not automatically erased for us.
13021         (eldoc-print-current-symbol-info): Erase previous message, if any.
13023 2014-01-21  Tassilo Horn  <tsdh@gnu.org>
13025         * textmodes/reftex.el (reftex-create-bibtex-file): Fix autoload to
13026         specify it's an interactive function.
13028         * textmodes/reftex-cite.el (reftex-all-used-citation-keys):
13029         Fix regex used for scanning for citation keys which failed for
13030         citations with optional arguments.
13032 2014-01-21  Leo Liu  <sdl.web@gmail.com>
13034         * simple.el (read--expression): Don't enable eldoc-mode.
13036 2014-01-20  Stefan Monnier  <monnier@iro.umontreal.ca>
13038         * simple.el (move-beginning-of-line): Make sure we don't move forward
13039         (bug#16497).
13041 2014-01-20  Juri Linkov  <juri@jurta.org>
13043         * saveplace.el (toggle-save-place, save-place-to-alist)
13044         (save-places-to-alist, save-place-dired-hook): Add (derived-mode-p
13045         'dired-mode) before checking for dired-directory.  (Bug#16477)
13047 2014-01-20  Juri Linkov  <juri@jurta.org>
13049         * indent.el (indent-line-to): Use backward-to-indentation
13050         instead of back-to-indentation.  (Bug#16461)
13052 2014-01-20  Paul Eggert  <eggert@cs.ucla.edu>
13054         Revert some of the CANNOT_DUMP fix (Bug#16494).
13055         Because of this, "make bootstrap" won't work if CANNOT_DUMP=yes,
13056         but fixing this can wait until after the next release.
13057         * Makefile.in (emacs): Keep EMACSLOADPATH empty.
13059 2014-01-19  Michael Albinus  <michael.albinus@gmx.de>
13061         * eshell/esh-mode.el (eshell-password-prompt-regexp):
13062         Use `password-word-equivalents'.
13063         (eshell-watch-for-password-prompt): Let-bind `case-fold-search'
13064         to t.  (Bug#5664, Bug#13124)
13066 2014-01-19  Alan Mackenzie  <acm@muc.de>
13068         Bind open-paren-in-column-0-is-defun-start to nil at some entry
13069         points.
13070         * progmodes/cc-engine.el (c-invalidate-state-cache-1)
13071         (c-parse-state-1, c-guess-basic-syntax): Bind it here.
13072         * progmodes/cc-mode.el (c-before-change, c-after-change)
13073         (c-font-lock-fontify-region): Bind it here.
13075 2014-01-19  Martin Rudalics  <rudalics@gmx.at>
13077         * term.el (term-window-width): Call window-text-width instead of
13078         window-width (Bug#16470).
13080 2014-01-18  Paul Eggert  <eggert@cs.ucla.edu>
13082         * simple.el (password-word-equivalents): Remove duplicates.
13083         Sort, to make this easier next time.
13084         Downcase.  Omit ": " after "jelszó".
13086 2014-01-18  Jan Djärv  <jan.h.d@swipnet.se>
13088         * term/common-win.el (saved-region-selection): Defvar it.
13089         (x-select-text): Set saved-region-selection (Bug#16382).
13091 2014-01-18  Glenn Morris  <rgm@gnu.org>
13093         * emacs-lisp/authors.el (authors-aliases)
13094         (authors-renamed-files-alist): Add some entries.
13096 2014-01-17  Michael Albinus  <michael.albinus@gmx.de>
13098         * net/tramp.el (tramp-password-prompt-regexp):
13099         Use `password-word-equivalents' if available.
13100         (tramp-action-password, tramp-process-one-action)
13101         (tramp-read-passwd): Let-bind `case-fold-search' to t.  (Bug#13124)
13103 2014-01-17  Chong Yidong  <cyd@gnu.org>
13105         * simple.el (password-word-equivalents): New defcustom.
13106         * comint.el (comint-password-prompt-regexp): Use it.  Bump version
13107         to 24.4.
13108         (comint-watch-for-password-prompt): Let-bind `case-fold-search'
13109         to t.  (Bug#13124)
13111 2014-01-17  Dmitry Gutov  <dgutov@yandex.ru>
13113         * progmodes/ruby-mode.el (ruby-alignable-keywords): New constant.
13114         (ruby-align-to-stmt-keywords): Change the default value.
13115         Use `ruby-alignable-keywords' to generate the possible customization
13116         choices.
13117         (ruby-smie-rules): Instead of using a hardcoded list of alignable
13118         keywords, check against the value of `ruby-alignable-keywords'
13119         (http://lists.gnu.org/archive/html/emacs-devel/2014-01/msg01439.html).
13121 2014-01-17  Glenn Morris  <rgm@gnu.org>
13123         * emacs-lisp/authors.el (authors-aliases): Remove unnecessary entries.
13125         Make M-x authors return zero *Authors Errors* from current logs.
13126         * emacs-lisp/authors.el (authors-obsolete-files-regexps)
13127         (authors-ignored-files): Add some entries, remove others.
13128         (authors-ambiguous-files, authors-valid-file-names):
13129         Add some entries.
13130         (authors-renamed-files-alist): Add, remove, and adjust entries.
13131         (authors-renamed-files-regexps): Add some entries.
13132         Remove some very broad ones.  Make some entries `lax'.
13133         (authors-lax-changelogs): New constant.
13134         (authors-disambiguate-file-name): Treat top-level specially.
13135         (authors-lax-changelog-p): New function.
13136         (authors-canonical-file-name): Check file as written against
13137         authors-valid-file-names.  Do not special-case etc/.
13138         Handle `lax' logs and authors-renamed-files-regexps elements.
13140 2014-01-16  Dmitry Gutov  <dgutov@yandex.ru>
13142         * emacs-lisp/package.el (package-desc--keywords): Use `cdr' with
13143         `assoc'.  Use `nth' instead of `cdr'.  Make private.  Update all
13144         callers.
13146 2014-01-16  Stefan Monnier  <monnier@iro.umontreal.ca>
13148         * follow.el (follow-adjust-window): Remove `dest' argument (bug#16426).
13149         Assume we're already in the proper buffer.
13150         Inspired by Anders Lindgren <andlind@gmail.com>.
13151         (follow-post-command-hook): Call it from the right buffer.
13152         (follow-comint-scroll-to-bottom): Adjust call.
13153         (follow-all-followers): Use get-buffer-window-list.
13155 2014-01-15  Daniel Colascione  <dancol@dancol.org>
13157         * emacs-lisp/bytecomp.el (byte-compile-file): Use whole
13158         `buffer-file-name' in interactive-form so that we don't leave
13159         pathless file names in `file-name-history'.
13161 2014-01-15  Juri Linkov  <juri@jurta.org>
13163         * indent.el (indent-rigidly): Set deactivate-mark to nil
13164         in transient indentation mode.  (Bug#16438)
13166 2014-01-15  Dmitry Gutov  <dgutov@yandex.ru>
13168         * emacs-lisp/package.el (package-desc-keywords): New function
13169         (Bug#16222).
13170         (describe-package-1, package-all-keywords)
13171         (package--has-keyword-p): Use it.
13173 2014-01-14  Nicolas Richard  <theonewiththeevillook@yahoo.fr>
13175         * simple.el (define-alternatives): When creating the
13176         COMMAND-alternatives variable, assign COMMAND as its definition
13177         name so that `describe-variable' can relocate it.
13179 2014-01-14  Matthew Leach  <matthew@mattleach.net>
13181         * font-lock.el (font-lock-keywords): Fix typo in docstring
13182         (bug#16307).
13184 2014-01-14  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
13186         * textmodes/ispell.el (ispell-region): Reset `in-comment' for new
13187         line instead of wrongly reset `add-coment' (bug#13577).
13189 2014-01-14  Daiki Ueno  <ueno@gnu.org>
13191         * epa-file.el (epa-file-write-region): Encode the region according
13192         to `buffer-file-format'.  Problem reported at:
13193         <http://sourceforge.jp/ticket/browse.php?group_id=2267&tid=32917>.
13195 2014-01-14  Stefan Monnier  <monnier@iro.umontreal.ca>
13197         * emacs-lisp/edebug.el (edebug--display): Move protective let-binding
13198         so it applies in the right buffer (bug#16410).
13200 2014-01-13  Daniel Colascione  <dancol@dancol.org>
13202         * textmodes/rst.el (rst-define-key): Provide deprecated
13203         keybindings through named functions instead of anonymous ones so
13204         that "??" doesn't appear in describe-mode output.
13206 2014-01-13  Bastien Guerry  <bzg@gnu.org>
13208         * simple.el (define-alternatives): Call the selected command
13209         interactively.  When setting `COMMAND--implementation' for the
13210         first time, tell the user how to chose another implementation.
13211         Enhance the docstring.
13213 2014-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
13215         * vc/log-edit.el: Fix highlighting of summary when it's the first line.
13216         (log-edit--match-first-line): New function.
13217         (log-edit-font-lock-keywords): Use it.
13218         (log-edit-mode): Make jit-lock-defer-multiline work.
13220 2014-01-13  Bastien Guerry  <bzg@gnu.org>
13222         * rect.el (rectangle-mark-mode): When the region is not active,
13223         display a message saying that the mark as been set and that
13224         rectangle mode is in use.
13225         (rectangle--highlight-for-redisplay): Only put an overlay with a
13226         visible vertical bar when (display-graphic-p) is non-nil.
13227         This partially fixes Bug#16403.
13229 2014-01-13  Juri Linkov  <juri@jurta.org>
13231         * info.el (Info-find-file): Go to DIR before displaying the error
13232         about a nonexistent file if no previous Info file is visited.
13233         Use `user-error' instead of `error' for "Info file %s does not exist".
13234         (Info-find-node-2): In case of a nonexistent node in unwind forms
13235         go to the Top node if there is no previous node to revert to.
13236         (Bug#16405)
13238 2014-01-13  Martin Rudalics  <rudalics@gmx.at>
13240         fit-frame/window-to-buffer code fixes including one for Bug#14096.
13241         * window.el (fit-frame-to-buffer): Fix doc-string.
13242         Respect window-min-height/-width.  Fit pixelwise when
13243         frame-resize-pixelwise is non-nil.  Adjust right/bottom edge
13244         when avoiding that frame goes partially off-screen.
13245         (fit-window-to-buffer): Respect window-min-height/-width
13246         (Bug#14096).
13248 2014-01-13  Stefan Monnier  <monnier@iro.umontreal.ca>
13250         * indent.el (indent-according-to-mode): Flush to column 0 in text-mode
13251         after an empty line.
13253 2014-01-12  Stefan Monnier  <monnier@iro.umontreal.ca>
13255         * net/shr.el (shr-render-region): Autoload.
13257 2014-01-12  Xue Fuqiao  <xfq.free@gmail.com>
13259         * net/eww.el (eww-download-directory): Rename from
13260         `eww-download-path' (Bug#16419).
13262 2014-01-12  Leo Liu  <sdl.web@gmail.com>
13264         * dired-x.el (dired-mode-map): Fix last change.
13266         * emacs-lisp/eldoc.el (eldoc-mode): Add hook locally.
13268 2014-01-12  Paul Eggert  <eggert@cs.ucla.edu>
13270         Spelling fixes.
13271         * emacs-lisp/generic.el (generic--normalize-comments):
13272         Rename from generic--normalise-comments.  All uses changed.
13273         * play/bubbles.el (bubbles--neighborhood-score)
13274         (bubbles--mark-direct-neighbors, bubbles--mark-neighborhood)
13275         (bubbles--neighborhood-available)
13276         (bubbles--update-neighborhood-score):
13277         Rename from names with 'neighbourhood'.  All uses changed.
13279 2014-01-12  Leo Liu  <sdl.web@gmail.com>
13281         Re-implement the feature of showing eldoc info after editing.
13282         * emacs-lisp/eldoc.el (eldoc-post-insert-mode): Remove.
13283         (eldoc-edit-message-commands): New function.
13284         (eldoc-print-after-edit): New variable.
13285         (eldoc-pre-command-refresh-echo-area): Emit message only by
13286         eldoc-message-commands.
13287         (eldoc-mode): Restrict eldoc-message-commands to editing commands
13288         if eldoc-print-after-edit is set.  (Bug#16346)
13289         * simple.el (read--expression): Enable eldoc-mode.
13290         * progmodes/octave.el (octave-mode-menu): Adapt to change in eldoc.
13292 2014-01-11  Dani Moncayo  <dmoncayo@gmail.com>
13293             Eric S. Raymond  <esr@thyrsus.com>
13295         * version.el (emacs-repository-get-version): Enhance so the
13296         function works correctly in either a Bazaar or Git repo.
13298 2014-01-11  Eric S. Raymond  <esr@thyrsus.com>
13300         * play/meese.el: It's 2014 and Ed Meese is justly forgotten.
13301         Goes with removal of the joke manpages from /etc.
13303 2014-01-10  Kenichi Handa  <handa@gnu.org>
13305         * mail/rmail.el (rmail-get-coding-system):
13306         Check rmail-get-coding-function before "funcall"ing it.
13308 2014-01-10  Glenn Morris  <rgm@gnu.org>
13310         * emacs-lisp/authors.el (authors-fixed-entries):
13311         Update for files that no longer exist.
13313 2014-01-10  Eric S. Raymond  <esr@thyrsus.com>
13315         * version.el (emacs-bzr-get-version): Restore compatibilty with
13316         24.3 (Tested).
13318 2014-01-10  Bozhidar Batsov  <bozhidar@batsov.com>
13320         * progmodes/ruby-mode.el (auto-mode-alist): Add .podspec
13321         and Podfile.
13323 2014-01-10  Eli Zaretskii  <eliz@gnu.org>
13325         * emacs-lisp/authors.el (authors-fixed-entries): Update my entry.
13327 2014-01-10  Chong Yidong  <cyd@gnu.org>
13329         * progmodes/octave.el (octave-mode-menu): Don't assume eldoc is loaded.
13331 2014-01-10  Anders Lindgren  <andlind@gmail.com>
13333         * follow.el (follow-cache-command-list): Include right-char and
13334         left-char.
13336 2014-01-10  Paul Eggert  <eggert@cs.ucla.edu>
13338         Spelling fixes.
13339         * mail/unrmail.el (unrmail-mbox-format): Choice is mboxo, not mboxro.
13340         * woman.el (woman-mark-horizontal-position):
13341         Rename from woman-mark-horizonal-position.  Use changed.
13343 2014-01-10  Glenn Morris  <rgm@gnu.org>
13345         * info.el (info-initialize): If running uninstalled, ensure our
13346         own info files are always found first, even if INFOPATH is set.
13348         * help.el (view-order-manuals): Open emacs.info rather than ORDERS.
13350 2014-01-09  David Engster  <deng@randomsample.de>
13352         * emacs-lisp/eieio-custom.el:
13353         * emacs-lisp/eieio-opt.el: Set generated autoload file to
13354         'eieio.el'.  This was accidentally removed in 2012-10-01T18:10:29Z!cyd@gnu.org.
13355         * emacs-lisp/eieio.el: Regenerate autoloads.
13357 2014-01-09  Eric S. Raymond  <esr@thyrsus.com>
13359         * vc/vc-git.el (vc-git-print-log): Add --follow option to command,
13360         following renames.  (Bug#8756)
13362 2014-01-09  Stefan Monnier  <monnier@iro.umontreal.ca>
13364         * simple.el (deactivate-mark, activate-mark): Force-mode-line-update
13365         (bug#16382).
13366         (activate-mark): Add `no-tmm' argument.
13367         (set-mark, push-mark-command): Use it instead of running
13368         activate-mark-hook by hand.
13370 2014-01-08  Eric S. Raymond  <esr@thyrsus.com>
13372         In preparation for the move to git, sanitize out some
13373         Bazaar-specific names.
13375         * emacs-lisp/authors.el: INSTALL.BZR renamed to INSTALL.REPO.
13377         * version.el (emacs-bzr-version): Name changed to
13378         emacs-repository-version.  Obsolete-variable alias made.
13379         * loadup.el: Follow through on this name change.
13380         * mail/emacsbug.el (report-emacs-bug): Factor out any
13381         assumption about the version control system in use.
13383 2014-01-08  David Engster  <deng@randomsample.de>
13385         * help-fns.el (help-fns-describe-function-functions):
13386         New variable to call functions for augmenting help buffers.
13387         (describe-function-1): Remove explicit calls to
13388         `help-fns--compiler-macro', `help-fns--parent-mode' and
13389         `help-fns--obsolete'.  Put them in above new variable instead, and
13390         call them through `run-hook-with-args'.
13391         * emacs-lisp/eieio-opt.el (eieio-help-class): Rename from
13392         `eieio-describe-class'.  Not meant for interactive use anymore,
13393         but to augment existing help buffers.  Remove optional second
13394         argument.  Create proper button for file location.
13395         Rewrite function to use `insert' instead of `princ' and `prin1' where
13396         possible.
13397         (eieio-help-class-slots): Rename from `eieio-describe-class-slots'.
13398         (eieio-method-def, eieio-class-def): Move further up.
13399         (describe-method, describe-generic, eieio-describe-method):
13400         Remove aliases.
13401         (eieio-help-constructor, eieio-help-generic): Rename from
13402         `eieio-describe-constructor' and `eieio-describe-generic', resp.
13403         Rewrite to use `insert' in the current buffer and use proper help
13404         buttons.
13405         (eieio-help-find-method-definition)
13406         (eieio-help-find-class-definition): Also accept symbols as
13407         arguments.
13408         (eieio-help-mode-augmentation-maybee): Remove.
13409         (eieio-describe-class-sb): Use `describe-function'.
13410         * emacs-lisp/eieio.el (help-fns-describe-function-functions):
13411         Add `eieio-help-generic' and `eieio-help-constructor'.
13413 2014-01-08  Paul Eggert  <eggert@cs.ucla.edu>
13415         Spelling fixes.
13416         * language/china-util.el (hz-ascii-designation):
13417         Rename from hz-ascii-designnation.
13418         (hz-ascii-designation): Rename from hz-ascii-designnation.
13419         All uses changed.
13421 2014-01-08  Stefan Monnier  <monnier@iro.umontreal.ca>
13423         * emacs-lisp/package.el (package-delete): Only remove pkg-desc from
13424         package-alist.
13426 2014-01-08  Bastien Guerry  <bzg@gnu.org>
13428         * emacs-lisp/package.el (package-delete):
13429         Correctly delete the package from package-alist.
13431 2014-01-08  Daiki Ueno  <ueno@gnu.org>
13433         * emacs-lisp/package.el (url-recreate-url): Declare.
13434         (url-http-target-url): Declare.
13435         (package-handle-response): Include requested URL in the error message.
13436         (package--check-signature): Don't re-signal errors from
13437         package--with-work-buffer.  Suggested by Stefan Monnier.
13439 2014-01-07  Bastien Guerry  <bzg@gnu.org>
13441         * minibuffer.el (completion--try-word-completion): When both a
13442         hyphen and a space are possible candidates for the character
13443         following a word, display both candidates.  (Bug#15980)
13445 2014-01-07  Martin Rudalics  <rudalics@gmx.at>
13447         * window.el (balance-windows-2): While rounding don't give a
13448         window more than the remainder.  Bug#16351, bug#16383.
13450 2014-01-07  Glenn Morris  <rgm@gnu.org>
13452         * menu-bar.el (menu-bar-help-extra-packages): Remove.
13453         (menu-bar-help-menu): Use view-external-packages instead.
13455 2014-01-07  Bastien Guerry  <bzg@gnu.org>
13457         * emacs-lisp/package.el (package-delete): Also delete the package
13458         name from `package-alist', not its description only.
13460 2014-01-07  Glenn Morris  <rgm@gnu.org>
13462         * help.el (view-external-packages):
13463         * menu-bar.el (menu-bar-help-extra-packages):
13464         Visit efaq.info rather than etc/MORE.STUFF.
13466 2014-01-07  Juri Linkov  <juri@jurta.org>
13468         * isearch.el (isearch-mode-map): Bind [return] and [backspace] to
13469         isearch-exit and isearch-delete-char resp.  (Bug#16342, bug#16035)
13471         * progmodes/ps-mode.el (ps-mode-map): Remove [return] key binding
13472         that shadows RET.  (Bug#16342)
13474 2014-01-07  Chong Yidong  <cyd@gnu.org>
13476         * isearch.el (isearch-yank-char, isearch-yank-word)
13477         (isearch-yank-line): Doc fix.
13479 2014-01-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13481         * abbrev.el (define-abbrev): Beware new meaning of fboundp.
13482         * emacs-lisp/elint.el (elint-find-builtins):
13483         * emacs-lisp/eldoc.el (eldoc-symbol-function):
13484         * emacs-lisp/bytecomp.el (byte-compile-callargs-warn)
13485         (byte-compile-file-form-defmumble, byte-compile, byte-compile-form):
13486         * emacs-lisp/byte-opt.el (byte-compile-inline-expand):
13487         * apropos.el (apropos-safe-documentation):
13488         * subr.el (symbol-file): Remove redundant fboundp.
13489         * progmodes/idlw-shell.el (idlwave-shell-comint-filter): Use defalias.
13491 2014-01-06  Bastien Guerry  <bzg@gnu.org>
13493         * hl-line.el (global-hl-line-overlay): Make a local variable.
13494         (global-hl-line-overlays): New variable to store all overlays.
13495         (global-hl-line-mode): Don't delete overlays from the current
13496         buffer when `global-hl-line-sticky-flag' is non-nil.
13497         (global-hl-line-highlight): Add new overlays to
13498         `global-hl-line-overlays'.
13499         (global-hl-line-unhighlight-all): New function to delete all
13500         overlays when turning off `global-hl-line-mode'.
13501         This fixes Bug#16183.
13503 2014-01-06  Stefan Monnier  <monnier@iro.umontreal.ca>
13505         * subr.el (set-transient-map): Fix nested case and docstring.
13507 2014-01-06  Tassilo Horn  <tsdh@gnu.org>
13509         * textmodes/reftex-vars.el (reftex-label-alist-builtin): Add a
13510         `Texinfo' entry.
13512 2014-01-06  Daniel Colascione  <dancol@dancol.org>
13514         Fix defun navigation in vc log view.
13516         * vc/log-view.el (log-view-beginning-of-defun): Rewrite to behave
13517         like `beginning-of-defun'.
13518         (log-view-end-of-defun, log-view-end-of-defun-1): Rename old
13519         log-view-end-of-defun to log-view-end-of-defun-1.  Replace
13520         log-view-end-of-defun with wrapper that behaves like `end-of-defun'.
13521         (log-view-extract-comment): Call `log-view-current-entry' directly
13522         instead of relying on broken `log-view-beginning-of-defun' behavior.
13524 2014-01-06  Paul Eggert  <eggert@cs.ucla.edu>
13526         Spelling fixes.
13527         * calc/calc-yank.el (calc-edit-mode, calc-edit-cancel):
13528         * emacs-lisp/debug.el (cancel-debug-on-entry):
13529         * epg.el (epg-error-to-string):
13530         * files.el (recover-file):
13531         * lpr.el (lpr-buffer, print-buffer, lpr-region, print-region):
13532         * mail/emacsbug.el (report-emacs-bug-hook):
13533         * mail/sendmail.el (mail-recover):
13534         * ses.el (ses-yank-resize):
13535         * term/ns-win.el (ns-print-buffer):
13536         Spelling fixes in diagnostics, mostly for "canceled" with one L.
13537         * epg.el (epg-key-capability-alist): Rename from misspelled version.
13538         All uses changed.
13539         * obsolete/xesam.el (xesam-all-fields): Fix misspelled field name.
13541 2014-01-06  Leo Liu  <sdl.web@gmail.com>
13543         * dired-x.el (dired-mode-map): Rebind dired-omit-mode to C-x M-o
13544         to avoid shadowing global key.  (Bug#16354)
13546 2014-01-06  Daniel Colascione  <dancol@dancol.org>
13548         * textmodes/rst.el (rst-mode): Set electric-indent-inhibit for
13549         rst-mode.
13551 2014-01-05  Martin Rudalics  <rudalics@gmx.at>
13553         * window.el (balance-windows): Add mising t to fix Bug#16351.
13555 2014-01-05  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13557         * net/shr.el (shr-descend): Don't bug out if the anchor is empty
13558         (bug#16285).
13559         (shr-insert): If we have a word that's longer than `shr-width',
13560         break after it anyway.  Otherwise we'll do no breaking once we get
13561         such a long word.
13563 2014-01-05  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
13565         * net/eww.el (eww): Support single/double quote for search.
13566         * net/eww.el (eww-list-histories, eww-history-browse): Fixup.
13567         (eww-history-quit): Delete and use quit-window.
13568         (eww-history-kill): Delete, because it doesn't work well and
13569         not necessary.
13570         (eww-history-mode-map): Delete some keys and add easy-menu.
13572 2014-01-05  Paul Eggert  <eggert@cs.ucla.edu>
13574         Fix misspelling of 'chinese' in rx (Bug#16237).
13575         * emacs-lisp/rx.el (rx-categories): Correct spelling of
13576         chinese-two-byte.
13578         Change subword regexps back to vars (Bug#16296).
13579         * progmodes/subword.el (subword-forward-regexp)
13580         (subword-backward-regexp): Change these back to variables.
13582 2014-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13584         * emacs-lisp/lisp-mode.el (lisp-mode-variables): Don't bother with
13585         syntax-begin-function (bug#16247).
13587 2014-01-03  Chong Yidong  <cyd@gnu.org>
13589         * emacs-lisp/nadvice.el (advice--make-docstring): Change args.
13590         (advice--docstring): Delete variable.
13591         (advice--make-1): Leave the docstring empty.
13592         (advice-add): Use function-documentation for advised docstring.
13594         * emacs-lisp/advice.el (ad--make-advised-docstring): Change args.
13595         Ignore function-documentation property when getting documentation.
13596         (ad-activate-advised-definition): Use function-documentation
13597         generate the docstring.
13598         (ad-make-advised-definition): Don't call
13599         ad-make-advised-definition-docstring.
13600         (ad-make-advised-definition-docstring, ad-advised-definition-p):
13601         Delete functions.
13603         * progmodes/sql.el (sql-help): Use function-documentation instead
13604         of dynamic-docstring-function property.  No need to autoload now.
13605         (sql--help-docstring): New variable.
13606         (sql--make-help-docstring): Use it.
13608 2014-01-03  Stefan Monnier  <monnier@iro.umontreal.ca>
13610         * ielm.el (ielm-tab): Retarget.
13611         (ielm-map): Use ielm-tab for tab.
13612         (ielm-complete-filename): Use comint-filename-completion.
13613         (ielm-complete-symbol): Remove.
13614         (inferior-emacs-lisp-mode): Use lisp-completion-at-point instead and
13615         remove ielm-tab from completion-at-point-functions (bug#16224).
13617         * emacs-lisp/pcase.el (pcase--split-equal, pcase--split-member):
13618         Beware signals raised by predicates (bug#16201).
13620 2014-01-02  Richard Stallman  <rms@gnu.org>
13622         * dired-aux.el (dired-do-print): Handle printer-name.
13624         * mail/rmailmm.el (rmail-mime-message-p): Move to rmail.el.
13625         * mail/rmail.el (rmail-mime-message-p): Move from rmailmm.el.
13626         (rmail-epa-decrypt): Turn off mime processing.
13628         * mail/rmail.el (rmail-make-in-reply-to-field):
13629         Add parens in message-id.
13631         * mail/rmail.el (rmail-get-coding-function): Variable.
13632         (rmail-get-coding-system): Use it.
13634 2013-12-31  Eli Zaretskii  <eliz@gnu.org>
13636         * international/mule-conf.el: Unify the charset indian-is13194.
13637         (indian-is13194): Specify unify-map.
13639 2013-12-31  Leo Liu  <sdl.web@gmail.com>
13641         * subr.el (set-temporary-overlay-map): Obsolete alias.  (Bug#16305)
13643 2013-12-30  Daniel Colascione  <dancol@dancol.org>
13645         * term/x-win.el ([XF86WakeUp]): Ignore the XF86WakeUp key instead
13646         of printing a useless when we resume from sleep.
13648         * progmodes/sh-script.el
13649         (sh-smie-sh-forward-token, sh-smie-rc-forward-token): Fix infloop
13650         in indentation code.  (Bug#16233)
13652 2013-12-28  João Távora  <joaotavora@gmail.com>
13654         * elec-pair.el (electric-pair-post-self-insert-function):
13655         Don't open extra newlines at beginning of buffer.  (Bug#16272)
13657 2013-12-28  Eli Zaretskii  <eliz@gnu.org>
13659         * frame.el (window-system-for-display): Don't allow to create a
13660         GUI frame from a -nw session on MS-Windows.  (Bug#14739)
13662 2013-12-28  Glenn Morris  <rgm@gnu.org>
13664         * mail/hashcash.el (hashcash-program): Rename from hashcash-path.
13665         Update callers.
13667         * apropos.el (apropos-match-face):
13668         * calculator.el (calculator-displayer):
13669         * dabbrev.el (dabbrev-search-these-buffers-only):
13670         * face-remap.el (buffer-face-mode-face):
13671         * simple.el (yank-handled-properties):
13672         * emacs-lisp/testcover.el (testcover-potentially-1value-functions):
13673         * mail/footnote.el (footnote-mode-line-string, footnote-prefix):
13674         * mail/hashcash.el (hashcash-accept-resources, hashcash-program)
13675         (hashcash-double-spend-database):
13676         * progmodes/ruby-mode.el (ruby-deep-indent-paren)
13677         (ruby-deep-indent-paren-style):
13678         * textmodes/flyspell.el (flyspell-auto-correct-binding):
13679         * textmodes/rst.el (rst-toc-indent, rst-toc-insert-style)
13680         (rst-toc-insert-number-separator, rst-toc-insert-max-level):
13681         * vc/pcvs-defs.el (cvs-minor-mode-prefix):
13682         Specify custom types.
13684         * emacs-lisp/smie.el (smie-config): Add type, version, initialize.
13685         * bookmark.el (bookmark-bmenu-use-header-line):
13686         * doc-view.el (doc-view-scale-internally):
13687         * pcmpl-x.el (pcmpl-x-tlmgr-program, pcmpl-x-ack-program):
13688         * register.el (register-preview-delay):
13689         * net/shr.el (shr-bullet):
13690         * progmodes/cfengine.el (cfengine-cf-promises)
13691         (cfengine-parameters-indent):
13692         * progmodes/octave.el (inferior-octave-error-regexp-alist):
13693         * textmodes/reftex-vars.el (reftex-label-regexps):
13694         * vc/log-edit.el (log-edit-setup-add-author): Add version.
13696         * net/tls.el (tls-certtool-program): Fix default value.
13698         * desktop.el (desktop-restore-in-current-display):
13699         * newcomment.el (comment-empty-lines):
13700         * progmodes/idlwave.el (idlwave-scan-all-buffers-for-routine-info)
13701         (idlwave-pad-keyword):
13702         * progmodes/tcl.el (tcl-tab-always-indent):
13703         * textmodes/reftex-vars.el (reftex-index-default-tag):
13704         * elec-pair.el (electric-pair-skip-whitespace):
13705         * progmodes/cfengine.el (cfengine-cf-promises): Fix custom types.
13707         * emacs-lisp/authors.el (authors-ignored-files)
13708         (authors-valid-file-names, authors-renamed-files-alist): Additions.
13710 2013-12-27  Jarek Czekalski  <jarekczek@poczta.onet.pl>
13712         * shell.el (shell-dynamic-complete-command): Doc fix.
13713         (shell--command-completion-data): Shell completion now matches
13714         executable filenames from the current buffer's directory, on
13715         systems in which this behavior is the default (windows-nt, ms-dos).
13717 2013-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
13719         * net/shr.el (shr-insert): Don't infloop if the width is zero.
13721 2013-12-27  Stefan Monnier  <monnier@iro.umontreal.ca>
13723         * icomplete.el (icomplete-show-matches-on-no-input): Default to nil
13724         (bug#16251).
13726         * electric.el: Move all electric-pair-* to elec-pair.el.
13727         * elec-pair.el: New file, split from electric.el.
13729 2013-12-27  Lars Ingebrigtsen  <larsi@gnus.org>
13731         * net/shr.el (shr-find-fill-point): Don't try to fill if the
13732         indentation level is larger than the width, because that will
13733         infloop.
13734         (shr-insert): Fill repeatedly long texts, so that Japanese is
13735         formatted correctly (bug#16263).
13736         (shr-find-fill-point): Off by one error in comparison with the
13737         indentation.
13739 2013-12-26  João Távora  <joaotavora@gmail.com>
13741         * electric.el (electric-pair-mode): More flexible engine for skip-
13742         and inhibit predicates, new options for pairing-related functionality.
13743         (electric-pair-preserve-balance): Pair/skip parentheses and quotes
13744         if that keeps or improves their balance in buffers.
13745         (electric-pair-delete-adjacent-pairs): Delete the pair when
13746         backspacing over adjacent matched delimiters.
13747         (electric-pair-open-extra-newline): Open extra newline when
13748         inserting newlines between adjacent matched delimiters.
13749         (electric--sort-post-self-insertion-hook):
13750         Sort post-self-insert-hook according to priority values when
13751         minor-modes are activated.
13752         * simple.el (newline-and-indent): Call newline with interactive
13753         set to t.
13754         (blink-paren-post-self-insert-function): Set priority to 100.
13755         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
13756         Use electric-pair-text-pairs to pair backtick-and-quote in strings and
13757         comments.  Locally set electric-pair-skip-whitespace to 'chomp and
13758         electric-pair-open-newline-between-pairs to nil.
13760 2013-12-26  Fabián Ezequiel Gallina  <fgallina@gnu.org>
13762         * progmodes/python.el: Use lexical-binding.
13763         (python-nav-beginning-of-defun): Stop searching ASAP.
13765 2013-12-25  Xue Fuqiao  <xfq.free@gmail.com>
13767         * vc/vc.el (vc-ignore): Use `vc-responsible-backend'.
13768         Fix interactive spec.  Doc fix.  (Bug#15754)
13770 2013-12-25  Katsumi Yamaoka  <yamaoka@jpl.org>
13772         * emacs-lisp/byte-run.el (eval-when-compile):
13773         * progmodes/cc-defs.el (cc-eval-when-compile):
13774         Fix edebug spec (bug#16184).
13776 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
13778         * net/shr.el (shr-visit-file): Remove debugging function.
13779         (shr-insert): Don't infloop if we can't find a good place to break
13780         the line (bug#16256).
13782 2013-12-25  Fabián Ezequiel Gallina  <fgallina@gnu.org>
13784         * progmodes/python.el (python-nav--lisp-forward-sexp): New function.
13785         (python-nav--lisp-forward-sexp-safe): Use it.  Rename from
13786         python-nav-lisp-forward-sexp-safe.
13787         (python-nav--forward-sexp): New argument SAFE allows switching
13788         forward sexp movement behavior for parens.
13789         (python-nav-forward-sexp): Throw errors on unterminated parens
13790         (Bug#16191).
13791         (python-nav-backward-sexp, python-nav-forward-sexp-safe)
13792         (python-nav-backward-sexp-safe): New functions.
13793         (python-shell-buffer-substring):
13794         Use `python-nav-forward-sexp-safe'.
13796 2013-12-25  Lars Ingebrigtsen  <larsi@gnus.org>
13798         * net/shr.el (shr-find-fill-point): Don't break lines before a
13799         quotation mark.
13800         (shr-char-kinsoku-bol-p): The quotation mark isn't a kinsoky BOL char.
13801         (shr-find-fill-point): Remove the special checks for the quotation
13802         mark, since `shr-char-kinsoku-bol-p' should now return the right thing.
13804 2013-12-25  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
13806         * net/eww.el (eww-form-textarea): Use a different face for
13807         textareas than text input since they have different keymaps
13808         (bug#16142).
13810 2013-12-24  Fabián Ezequiel Gallina  <fgallina@gnu.org>
13812         * progmodes/python.el (python-nav-beginning-of-statement):
13813         Speed up (Bug#15295).
13815 2013-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
13817         * net/eww.el (eww-bookmark-browse): Use `quit-window' to restore
13818         the window configuration.
13820 2013-12-24  Eli Zaretskii  <eliz@gnu.org>
13822         * net/eww.el (eww-open-file): Ensure 3 slashes after "file:" when
13823         we run on MS-Windows or MS-DOS.
13825 2013-12-24  Martin Rudalics  <rudalics@gmx.at>
13827         * window.el (balance-windows-area): Call window-size instead of
13828         window-height and window-width.  Bug#16241.
13830 2013-12-24  Lars Ingebrigtsen  <larsi@gnus.org>
13832         * net/eww.el (eww-bookmark-quit): Remove.
13833         (eww-bookmark-browse): Restore the window configuration when you
13834         choose a bookmark (bug#16144).
13836 2013-12-24  Daniel Colascione  <dancol@dancol.org>
13838         * icomplete.el: Remove redundant :group arguments to `defcustom'
13839         throughout.
13840         (icomplete-show-matches-on-no-input): New customizable variable.
13841         (icomplete-minibuffer-setup): Call `icomplete-exhibit' on setup if
13842         we have something to show.
13843         (icomplete-exhibit): Compute completions even if we have no user input.
13845 2013-12-23  Daniel Colascione  <dancol@dancol.org>
13847         * icomplete.el: Move `provide' to end of file.
13849 2013-12-23  Teodor Zlatanov  <tzz@lifelogs.com>
13851         * net/gnutls.el (gnutls-verify-error): Add version tag.
13853 2013-12-23  Chong Yidong  <cyd@gnu.org>
13855         * subr.el (set-transient-map): Rename from
13856         set-temporary-overlay-map.  Doc fix.
13858         * face-remap.el (text-scale-adjust):
13859         * indent.el (indent-rigidly):
13860         * kmacro.el (kmacro-call-macro):
13861         * minibuffer.el (minibuffer-force-complete):
13862         * repeat.el (repeat):
13863         * simple.el (universal-argument--mode):
13864         * calendar/todo-mode.el (todo-insert-item--next-param):
13865         * progmodes/f90.el (f90-abbrev-start): Callers changed.
13867         * indent.el (indent-rigidly): Use substitute-command-keys.
13869 2013-12-22  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
13871         * net/eww.el (eww-tag-select): Add text-property to jump to next
13872         select field.
13873         (eww): Add non-supported ftp error.
13875 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
13877         * progmodes/ruby-mode.el (ruby--electric-indent-p): Improve the
13878         comments.  Handle electric indent after typing `?' and `!'.
13880 2013-12-22  Chong Yidong  <cyd@gnu.org>
13882         * faces.el (face-spec-recalc): If the theme specs are not
13883         applicable to a frame, fall back on the defface spec.
13884         This prevents themes from obliterating faces on low-color terminals.
13886 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
13888         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
13889         after `{'.  We need it after block openers, and it doesn't seem
13890         to hurt after hash openers.
13892 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
13894         * progmodes/ruby-mode.el (ruby--at-indentation-p): New function,
13895         extracted from `ruby-smie-rules'.
13896         (ruby--electric-indent-chars): New variable.
13897         (ruby--electric-indent-p): New function.
13898         (ruby-mode): Use `electric-indent-functions' instead of
13899         `electric-indent-chars'.
13901 2013-12-22  Dmitry Gutov  <dgutov@yandex.ru>
13903         * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords): Tweak the
13904         docstring.
13905         (ruby-smie-rules): Indent plus one level after `=>'.
13907 2013-12-21  Richard Stallman  <rms@gnu.org>
13909         * simple.el (newline): Doc fix.
13911 2013-12-21  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
13913         * net/eww.el (eww-list-histories, eww-list-histories)
13914         (eww-history-browse, eww-history-quit, eww-history-kill)
13915         (eww-history-mode-map, eww-history-mode): New command and
13916         functions to list browser histories.
13917         (eww-form-text): Support text form with disabled
13918         and readonly attributes.
13919         (eww-checkbox-map): Fix wrong key bind to `eww-toggle-checkbox'.
13921 2013-12-21  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
13923         * net/eww.el (eww-back-url, eww-forward-url, eww-next-url)
13924         (eww-previous-url, eww-up-url, eww-top-url, eww-add-bookmark)
13925         (eww-bookmark-prepare, eww-bookmark-kill, eww-bookmark-yank)
13926         (eww-bookmark-browse, eww-next-bookmark, eww-previous-bookmark):
13927         Use `user-error'.
13928         (eww-bookmark-mode-map): Add menu.
13929         (eww-render, eww-mode): Use `setq-local'.
13930         (eww-tool-bar-map): New variable.
13931         (eww-mode): Set `tool-bar-map'.
13932         (eww-view-source): Check for `html-mode' with `fboundp'.
13934 2013-12-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
13936         * net/shr.el (shr--extract-best-source): Don't bug out on audio
13937         elements with text inside.  Also remove debugging.
13939 2013-12-21  Jan Djärv  <jan.h.d@swipnet.se>
13941         * cus-start.el (all): Add ns-use-srgb-colorspace.
13943 2013-12-21  Chong Yidong  <cyd@gnu.org>
13945         * custom.el (custom-theme-recalc-face): Do nothing if the face is
13946         undefined.  Thus, theme settings for undefined faces do not take
13947         effect until the faces are defined with defface, the same as with
13948         theme variables.
13950         * faces.el (face-spec-set): Use face-spec-recalc in all cases.
13951         (face-spec-reset-face): Don't assign extra properties in temacs.
13952         (face-spec-recalc): Apply X resources too.
13954 2013-12-21  Chong Yidong  <cyd@gnu.org>
13956         * faces.el (face-spec-set):
13957         * cus-face.el (custom-theme-set-faces, custom-set-faces):
13958         * custom.el (defface): Doc fixes (Bug#16203).
13960         * indent.el (indent-rigidly-map): Add docstring, and move commands
13961         into named functions.
13962         (indent-rigidly-left, indent-rigidly-right)
13963         (indent-rigidly-left-to-tab-stop)
13964         (indent-rigidly-right-to-tab-stop): New functions.  Decide on
13965         indentation direction based on bidi direction, and accumulate
13966         sequential commands in a single undo boundary.
13967         (indent-rigidly--pop-undo): New utility function.
13969 2013-12-20  Juanma Barranquero  <lekktu@gmail.com>
13971         * faces.el (read-face-name): Require crm.el when using crm-separator.
13973 2013-12-20  Daniel Colascione  <dancol@dancol.org>
13975         * progmodes/sh-script.el (sh-mode): Tweak paragraph-separate
13976         so that we don't reflow comments into the shebang line.
13978 2013-12-20  Juri Linkov  <juri@jurta.org>
13980         * saveplace.el (save-place-to-alist): Add `dired-filename' as
13981         a position when `dired-directory' is non-nil.  Check integer
13982         positions with `integerp'.
13983         (toggle-save-place, save-places-to-alist): Add check for
13984         `dired-directory'.
13985         (save-place-find-file-hook): Check integer positions with
13986         `integerp'.
13987         (save-place-dired-hook): Use `dired-goto-file' when
13988         `dired-filename' is found in the assoc list.  Check integer
13989         positions with `integerp'.
13990         (dired-initial-position-hook): Rename from `dired-initial-point-hook'.
13992         * dired.el (dired-initial-position-hook): Rename back from
13993         `dired-initial-point-hook'.
13994         (dired-initial-position): Rename `dired-initial-point-hook' to
13995         `dired-initial-position-hook'.
13996         (dired-file-name-at-point): Doc fix.  (Bug#15329)
13998 2013-12-20  Juri Linkov  <juri@jurta.org>
14000         * replace.el (read-regexp-defaults-function): New defcustom (bug#14405).
14001         (read-regexp-suggestions): New function.
14002         (read-regexp): Use `read-regexp-defaults-function' to get default values.
14003         Use `read-regexp-suggestions'.  Add non-empty default to history
14004         for empty input.
14005         (occur-read-regexp-defaults-function): Remove function.
14006         (occur-read-primary-args): Use `regexp-history-last' instead of
14007         `occur-read-regexp-defaults-function'.
14009         * hi-lock.el (hi-lock-read-regexp-defaults-function): Remove function.
14010         (hi-lock-line-face-buffer, hi-lock-face-buffer)
14011         (hi-lock-face-phrase-buffer): Use `regexp-history-last' instead of
14012         `hi-lock-read-regexp-defaults-function'.  Doc fix.
14013         (hi-lock-face-symbol-at-point): Replace `find-tag-default-as-regexp'
14014         with `find-tag-default-as-symbol-regexp'.  Doc fix.
14015         (hi-lock-read-regexp-defaults): Remove function.
14016         (hi-lock-regexp-okay): Add check for null.
14018         * progmodes/grep.el (grep-read-regexp): Use `grep-tag-default' for
14019         the arg DEFAULTS.  Move formatting of the prompt to `read-regexp'.
14021         * subr.el (find-tag-default-as-symbol-regexp): New function.
14022         (find-tag-default-as-regexp): Move symbol regexp formatting to
14023         `find-tag-default-as-symbol-regexp'.
14025 2013-12-20  E Sabof  <esabof@gmail.com>  (tiny change)
14027         * hi-lock.el (hi-lock-set-pattern): Check for `font-lock-specified-p'.
14028         (Bug#14179)
14030 2013-12-20  Stephen Berman  <stephen.berman@gmx.net>
14032         * calendar/todo-mode.el: New implementation of item insertion
14033         commands and key bindings.
14034         (todo-key-prompt): New face.
14035         (todo-insert-item): New command.
14036         (todo-insert-item--parameters): New defconst, replacing defvar
14037         todo-insertion-commands-args-genlist.
14038         (todo-insert-item--param-key-alist): New defconst, replacing
14039         defvar todo-insertion-commands-arg-key-list.
14040         (todo-insert-item--keyof, todo-insert-item--this-key): New defsubsts.
14041         (todo-insert-item--argsleft, todo-insert-item--apply-args)
14042         (todo-insert-item--next-param): New functions.
14043         (todo-insert-item--args, todo-insert-item--argleft)
14044         (todo-insert-item--argsleft, todo-insert-item--newargsleft):
14045         New variables.
14046         (todo-key-bindings-t): Change binding of "i" from
14047         todo-insertion-map to todo-insert-item.
14048         (todo-powerset, todo-gen-arglists, todo-insertion-commands-args)
14049         (todo-insertion-command-name, todo-insertion-commands-names)
14050         (todo-define-insertion-command, todo-insertion-commands)
14051         (todo-insertion-key-bindings, todo-insertion-map): Remove.
14053 2013-12-20  Stephen Berman  <stephen.berman@gmx.net>
14055         * calendar/todo-mode.el: Bug fixes and new features (bug#15225).
14056         (todo-toggle-item-highlighting): Use eval-and-compile instead of
14057         eval-when-compile.
14058         (todo-move-category): Allow choosing a non-existing todo file to
14059         move the category to, and create that file.
14060         (todo-default-priority): New user option.
14061         (todo-set-item-priority): Use it.
14062         (todo-desktop-save-buffer, todo-restore-desktop-buffer): New functions.
14063         (desktop-restore-file-buffer): Declare.
14064         (desktop-buffer-mode-handlers): Add todo-restore-desktop-buffer.
14065         (todo-modes-set-2): Locally set desktop-save-buffer to
14066         todo-desktop-save-buffer.
14067         (todo-mode, todo-archive-mode, todo-filtered-items-mode)
14068         (auto-mode-alist): Add autoload cookie.
14070 2013-12-20  Bozhidar Batsov  <bozhidar@batsov.com>
14072         * emacs-lisp/subr-x.el: Renamed from helpers.el.
14073         helpers.el was a poor choice of name.
14074         (string-remove-prefix): New function.
14075         (string-remove-suffix): New function.
14077 2013-12-20  Martin Rudalics  <rudalics@gmx.at>
14079         Fix assignment for new window total sizes.
14080         * window.el (window--pixel-to-size): Remove function.
14081         (window--pixel-to-total-1, window--pixel-to-total):
14082         Fix calculation of new total sizes.
14084 2013-12-20  Vitalie Spinu  <spinuvit@gmail.com>
14086         * comint.el (comint-output-filter): Fix rear-nonsticky property
14087         placement (Bug#16010).
14089 2013-12-20  Chong Yidong  <cyd@gnu.org>
14091         * faces.el (read-color): Minor fix for completion function.
14093 2013-12-20  Dmitry Gutov  <dgutov@yandex.ru>
14095         * progmodes/ruby-mode.el (ruby-align-to-stmt-keywords):
14096         New option.  (Bug#16182)
14097         (ruby-smie--indent-to-stmt-p): Use it.
14098         (ruby-smie-rules): Revert the logic in the handling of `when'.
14099         Expand the begin clause to handle `ruby-align-to-stmt-keywords'.
14100         (ruby-deep-arglist, ruby-deep-indent-paren)
14101         (ruby-deep-indent-paren-style): Update docstrings to note that the
14102         vars don't have any effect with SMIE.
14104 2013-12-20  Jay Belanger  <jay.p.belanger@gmail.com>
14106         * calc/calc.el (calc-enter, calc-pop): Use the variable
14107         `calc-context-sensitive-enter'.
14109 2013-12-20  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14111         * net/shr.el (shr-insert): Protect against infloops in degenerate
14112         tables.
14114 2013-12-20  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
14116         * progmodes/octave.el (octave): Add link to manual and octave
14117         homepage.
14118         (octave-mode-menu): Link to octave-mode manual.
14120 2013-12-20  Leo Liu  <sdl.web@gmail.com>
14122         * skeleton.el (skeleton-pair-insert-maybe): Disable newline
14123         insertion using skeleton-end-newline.  (Bug#16138)
14125 2013-12-20  Juri Linkov  <juri@jurta.org>
14127         * replace.el (occur-engine): Use `add-face-text-property'
14128         to add the face property to matches and titles.  (Bug#14645)
14130         * hi-lock.el (hi-green): Use lighter color "light green" closer to
14131         the palette of other hi-lock colors.
14132         (hi-lock-set-pattern): Prepend hi-lock face to the existing face.
14134 2013-12-19  Juri Linkov  <juri@jurta.org>
14136         * isearch.el (isearch-mode-map): Bind `M-s e' to `isearch-edit-string'.
14137         Put :advertised-binding on `M-s c', `M-s r', `M-s e'.  (Bug#16035)
14138         (minibuffer-history-symbol): Move variable declaration closer to
14139         its usage.
14141         * isearchb.el (isearchb): Add `event-basic-type' on `last-command-event'.
14142         (Bug#14785)
14144 2013-12-19  Juri Linkov  <juri@jurta.org>
14146         * vc/log-edit.el (log-edit-insert-filenames-without-changelog):
14147         New function.
14148         (log-edit-hook): Add it to :options.  (Bug#16170)
14150 2013-12-19  Juri Linkov  <juri@jurta.org>
14152         * simple.el (eval-expression-print-format): Don't check for
14153         command names and the last command.  Always display additional
14154         formats of the integer result in the echo area, and insert them
14155         to the current buffer only with a zero prefix arg.
14156         Display character when char-displayable-p is non-nil.
14157         (eval-expression): With a zero prefix arg, set `print-length' and
14158         `print-level' to nil, and insert the integer values from
14159         `eval-expression-print-format' at the end.  Doc fix.  (Bug#12985)
14161         * emacs-lisp/lisp-mode.el (eval-print-last-sexp): Add arg
14162         `eval-last-sexp-arg-internal'.  Doc fix.
14163         (eval-last-sexp-1): Pass arg `eval-last-sexp-arg-internal' to
14164         `eval-last-sexp-print-value'.  Doc fix.
14165         (eval-last-sexp-print-value): Add arg `eval-last-sexp-arg-internal'.
14166         Set `print-length' and `print-level' to nil when arg is zero.
14167         (eval-last-sexp): Doc fix.
14168         (eval-defun-2): Print the integer values from
14169         `eval-expression-print-format' at the end.
14171         * emacs-lisp/edebug.el (edebug-eval-defun): Print the integer
14172         values from `eval-expression-print-format' at the end.
14174         * ielm.el (ielm-eval-input): Print the integer
14175         values from `eval-expression-print-format' at the end.
14177 2013-12-19  Teodor Zlatanov  <tzz@lifelogs.com>
14179         * net/eww.el (eww-exit, eww-close, eww-mode-map): Revert change of
14180         2013-12-11T19:01:44Z!tzz@lifelogs.com.
14182 2013-12-19  Stefan Monnier  <monnier@iro.umontreal.ca>
14184         * hl-line.el (hl-line-make-overlay): New fun.  Set priority (bug#16192).
14185         (hl-line-highlight, global-hl-line-highlight): Use it.
14186         (hl-line-overlay): Use defvar-local.
14188 2013-12-19  Jan Djärv  <jan.h.d@swipnet.se>
14190         * term/ns-win.el: Require dnd.
14191         (global-map): Remove drag items.
14192         (ns-insert-text, ns-set-foreground-at-mouse)
14193         (ns-set-background-at-mouse):
14194         Remove (ns-drag-n-drop, ns-drag-n-drop-other-frame)
14195         (ns-drag-n-drop-as-text, ns-drag-n-drop-as-text-other-frame):
14196         New functions.
14198 2013-12-19  Glenn Morris  <rgm@gnu.org>
14200         * emacs-lisp/ert.el (ert-select-tests):
14201         Fix string/symbol mixup.  (Bug#16121)
14203 2013-12-19  Dmitry Gutov  <dgutov@yandex.ru>
14205         * progmodes/ruby-mode.el (ruby-smie-rules): Indent middle-of-block
14206         keywords to their parent.
14208 2013-12-19  Dmitry Gutov  <dgutov@yandex.ru>
14210         * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Allow the
14211         first arg to be a string (fixed dead code), or an operator symbol.
14212         (ruby-smie--forward-token): Tokenize ` @ ' before strings and
14213         operator symbols.
14214         (ruby-smie-rules): Remove parent token check in the `.' clause, it
14215         did nothing.  Don't respond to `(:after ".")', it will be called
14216         with :before anyway.  Remove the ` @ ' rule, it didn't seem to
14217         change anything.  Only return indentation for binary operators
14218         when they are hanging.  De-dent opening paren when its parent is
14219         `.', otherwise it looks bad when the dot is not at bol or eol
14220         (bug#16182).
14222 2013-12-19  Juri Linkov  <juri@jurta.org>
14224         * replace.el (query-replace-read-args): Split a non-negative arg
14225         and a negative arg into separate elements.
14226         (query-replace, query-replace-regexp, replace-string)
14227         (replace-regexp): Add arg `backward'.  Doc fix.
14228         (replace-match-maybe-edit): When new arg `backward' is non-nil,
14229         move point to the beginning of the match.
14230         (replace-search, replace-highlight): Use new arg `backward'
14231         to set the value of `isearch-forward'.
14232         (perform-replace): Add arg `backward' and use it to perform
14233         replacement backward.  (Bug#14979)
14235         * isearch.el (isearch-query-replace): Use a negative prefix arg
14236         to call `perform-replace' with a non-nil arg `backward'.
14238 2013-12-18  Juri Linkov  <juri@jurta.org>
14240         * vc/log-edit.el (log-edit-hook): Add `log-edit-insert-message-template'
14241         to the default list.  Move `log-edit-show-files' to the end.
14242         Add more available functions to options.
14243         (log-edit): Move default specific settings to
14244         `log-edit-insert-message-template'.  Don't move point.
14245         (log-edit-insert-message-template): New function.
14246         (log-edit-insert-changelog): Add `save-excursion' and don't move point.
14247         (Bug#16170)
14249 2013-12-18  Juri Linkov  <juri@jurta.org>
14251         * help-mode.el (help-mode-map): Bind "l" to help-go-back,
14252         and "r" to help-go-forward for compatibity with Info.  (Bug#16178)
14254 2013-12-18  Leo Liu  <sdl.web@gmail.com>
14256         * eshell/em-prompt.el (eshell-emit-prompt): Fix last change.
14257         (Bug#16186)
14259 2013-12-18  Eli Zaretskii  <eliz@gnu.org>
14261         * ls-lisp.el (ls-lisp-insert-directory): Don't modify %d and %f
14262         formats for displaying file sizes when the -s switch is given.
14263         Instead, compute a separate format for displaying the size in
14264         blocks, which is displayed in addition to the "regular" size.
14265         When -h is given in addition to -s, produce size in blocks in
14266         human-readable form as well.  (Bug#16179)
14268 2013-12-18  Tassilo Horn  <tsdh@gnu.org>
14270         * textmodes/reftex-vars.el (reftex-label-alist-builtin):
14271         Reference tables with ~\ref{...} instead of only \ref{...}.
14273 2013-12-18  Chong Yidong  <cyd@gnu.org>
14275         * cus-edit.el (custom-magic-alist): Fix "themed" description
14276         (Bug#14348).
14278         * custom.el (custom-push-theme): If custom--inhibit-theme-enable
14279         is non-nil, do not create a new entry in the symbol's theme-value
14280         or theme-face property; update theme-settings only (Bug#14664).
14281         (custom-available-themes): Doc fix.
14283         * cus-theme.el (custom-new-theme-mode-map): Add bindings
14284         (Bug#15674).
14286         * replace.el (occur-engine): Avoid infloop (Bug#7593).
14288 2013-12-18  Kazuhiro Ito  <kzhr@d1.dion.ne.jp>  (tiny change)
14290         * progmodes/make-mode.el (makefile-fill-paragraph): Fix infloop
14291         (Bug#13914).
14293 2013-12-18  Shigeru Fukaya  <shigeru.fukaya@gmail.com>
14295         * apropos.el (apropos-words-to-regexp): Fix algorithm (Bug#13946).
14297 2013-12-18  Glenn Morris  <rgm@gnu.org>
14299         * Makefile.in (BYTE_COMPILE_FLAGS): Set load-prefer-newer to t.
14300         * cus-start.el (load-prefer-newer): New option.
14302 2013-12-18  Le Wang  <l26wang@gmail.com>
14304         * comint.el (comint-previous-matching-input-from-input):
14305         Retain point (Bug#13404).
14307 2013-12-18  Chong Yidong  <cyd@gnu.org>
14309         * simple.el (append-next-kill): Doc fix (Bug#15995, Bug#16016).
14311 2013-12-18  Glenn Morris  <rgm@gnu.org>
14313         * mail/emacsbug.el (report-emacs-bug):
14314         Only mention enable-multibyte-characters if non-standard.
14316 2013-12-17  Juri Linkov  <juri@jurta.org>
14318         * arc-mode.el (archive-extract-by-file): Check if directory exists
14319         before deletion to not show irrelevant errors if it doesn't exist.
14321 2013-12-17  Juri Linkov  <juri@jurta.org>
14323         * menu-bar.el (menu-bar-tools-menu): Add `browse-web'.
14324         (Bug#14751)
14326         * net/eww.el (browse-web): Add alias to `eww'.
14327         (eww-mode-map): Bind "r" to `eww-forward-url' like in Info.
14328         Bind "S-SPC" to `scroll-down-command'.  (Bug#16178)
14330         * net/browse-url.el (browse-url-browser-function): Move `eww'
14331         closer to similar functions.
14333         * startup.el (fancy-startup-screen, fancy-about-screen):
14334         Set browse-url-browser-function to eww-browse-url locally.
14335         (Bug#14751)
14337 2013-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
14339         * window.el (window--pixel-to-total): Remove unused `mini' var.
14340         (maximize-window, minimize-window): Remove unused `pixelwise' arg.
14341         (split-window): Remove unused `new' var.
14342         (window--display-buffer): Remove unused `frame' and `delta' vars.
14343         (fit-window-to-buffer): Remove unused vars `frame', `display-height',
14344         and display-width'.
14346 2013-12-17  Martin Rudalics  <rudalics@gmx.at>
14348         * dired.el (dired-mark-pop-up):
14349         * register.el (register-preview): Don't bind
14350         split-height-threshold here since it's now done in
14351         display-buffer-below-selected.
14353 2013-12-17  oblique  <psyberbits@gmail.com>  (tiny change)
14355         * term/rxvt.el (rxvt-rgb-convert-to-16bit): Standardize with
14356         xterm-rgb-convert-to-16bit.
14357         (rxvt-register-default-colors): Standardize with
14358         xterm-register-default-colors (Bug#14078).
14360 2013-12-17  Dima Kogan  <dima@secretsauce.net>  (tiny change)
14362         * simple.el (kill-region): Pass mark first, then point, so that
14363         kill-append works right (Bug#12819).
14364         (copy-region-as-kill, kill-ring-save): Likewise.
14366 2013-12-17  Leo Liu  <sdl.web@gmail.com>
14368         * net/rcirc.el (rcirc-add-face):
14369         * eshell/em-prompt.el (eshell-emit-prompt):
14370         * eshell/em-ls.el (eshell-ls-decorated-name): Use font-lock-face.
14371         (Bug#16167)
14373 2013-12-17  Chong Yidong  <cyd@gnu.org>
14375         * files.el (break-hardlink-on-save): Doc fix (Bug#13801).
14376         Suggested by Xue Fuqiao.
14378 2013-12-17  Dmitry Gutov  <dgutov@yandex.ru>
14380         * progmodes/ruby-mode.el (ruby-smie-rules): Indent ternary if.
14382 2013-12-17  Stefan Monnier  <monnier@iro.umontreal.ca>
14384         * net/shr.el (shr-insert-document): Remove unused var
14385         `shr-preliminary-table-render'.
14386         (shr-rescale-image): Remove unused arg `force'.
14387         (shr-put-image): Update calls accordingly.
14388         (shr-tag-a): Use `cont' rather than dyn-bound `dom'.
14390 2013-12-17  Dmitry Gutov  <dgutov@yandex.ru>
14392         * emacs-lisp/smie.el (smie-indent--rule): Extract `smie-indent--rule-1'.
14393         (smie-indent-close): Call `smie-indent--rule-1' with METHOD
14394         :close-all, to see which indentation method to use (Bug#16116).
14395         (smie-rules-function): Document the method :close-all.
14397 2013-12-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14399         * net/shr.el (shr-tag-a): Support zero-length <a name="foo"> elements.
14401         * net/eww.el (eww-display-html): If we can't find the anchor we're
14402         looking for, then go to point-min.
14404 2013-12-16  Paul Eggert  <eggert@cs.ucla.edu>
14406         Fix problems with CANNOT_DUMP and EMACSLOADPATH.
14407         * Makefile.in (emacs): Add lisp src to EMACSLOADPATH.
14408         * loadup.el: Check for src/bootstrap-emacs only when Emacs can dump.
14409         Expand dir too, in case it's relative.
14411 2013-12-16  Juri Linkov  <juri@jurta.org>
14413         * desktop.el (desktop-auto-save-timeout): Change default to
14414         `auto-save-timeout'.  Doc fix.
14415         (desktop-save): Skip the timestamp in desktop-saved-frameset
14416         when checking for auto-save changes.
14417         (desktop-auto-save): Don't call desktop-auto-save-set-timer since
14418         `desktop-auto-save' is called repeatedly by the idle timer.
14419         (desktop-auto-save-set-timer): Replace `run-with-timer' with
14420         `run-with-idle-timer' and a non-nil arg REPEAT.  Doc fix.
14421         (Bug#15331)
14423 2013-12-16  Juri Linkov  <juri@jurta.org>
14425         * isearch.el (isearch-mode-map): Remove [escape] key bindinds.
14426         (Bug#16035)
14427         (isearch-pre-command-hook): Check `this-command' for symbolp.
14429 2013-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
14431         * emacs-lisp/gv.el (gv-ref): Mention lexbind restriction (bug#16153).
14433 2013-12-16  Teodor Zlatanov  <tzz@lifelogs.com>
14435         * progmodes/cfengine.el (cfengine3--current-word): Remove.
14436         (cfengine3--current-function): Bring in the current-function
14437         functionality from `cfengine3--current-word'.
14438         (cfengine3-completion-function): Bring in the
14439         bounds-of-current-word functionality from
14440         `cfengine3--current-word'.
14442 2013-12-16  Martin Rudalics  <rudalics@gmx.at>
14444         * window.el (display-buffer-below-selected):
14445         Bind split-height-threshold to 0 as suggested by Juri Linkov.
14447 2013-12-16  Leo Liu  <sdl.web@gmail.com>
14449         * progmodes/compile.el (compile-goto-error): Do not push-mark.
14450         Remove NOMSG arg and all uses changed.
14452 2013-12-16  Stefan Monnier  <monnier@iro.umontreal.ca>
14454         * emulation/cua-rect.el (cua-rectangle-mark-mode): New minor mode.
14455         (cua--deactivate-rectangle): Don't deactivate the mark.
14456         (cua-set-rectangle-mark): Don't set mark-active since
14457         cua--activate-rectangle already does it for us.
14458         (cua--rectangle-highlight-for-redisplay): Unhighlight a previous
14459         non-rectangular region.
14461         * emulation/cua-base.el (cua-repeat-replace-region):
14462         Use with-current-buffer.
14464         * net/gnutls.el: Use cl-lib.
14465         (gnutls-negotiate): `mapcan' -> cl-mapcan.
14467 2013-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
14469         * emacs-lisp/package.el (package-built-in-p): Support both
14470         built-in and the package.el converted package descriptions.
14471         (package-show-package-list): Allow keywords.
14472         (package-keyword-button-action): Use it instead of
14473         `finder-list-matches'.
14474         (package-menu-filter-interactive): Interactive filtering (by
14475         keyword) function.
14476         (package-menu--generate): Support keywords and change keymappings
14477         and headers when they are given.
14478         (package--has-keyword-p): Helper function.
14479         (package-menu--refresh): Use it.
14480         (package--mapc): Helper function.
14481         (package-all-keywords): Use it.
14482         (package-menu-mode-map): Set up menu items and keybindings to
14483         provide a filtering UI.
14485 2013-12-14  Teodor Zlatanov  <tzz@lifelogs.com>
14487         * net/gnutls.el (gnutls-verify-error): New defcustom to control
14488         the behavior when a certificate fails validation.  Defaults to
14489         old behavior: never abort, just warn.
14490         (gnutls-negotiate): Use it.
14492 2013-12-14  Martin Rudalics  <rudalics@gmx.at>
14494         * window.el (display-buffer-below-selected): Never split window
14495         horizontally.  Suggested by Juri Linkov <juri@jurta.org>.
14497 2013-12-14  Tom Willemse  <tom@ryuslash.org>  (tiny change)
14499         * emacs-lisp/package.el (package--prepare-dependencies): New function.
14500         (package-buffer-info): Use it (bug#15108).
14502 2013-12-14  Stefan Monnier  <monnier@iro.umontreal.ca>
14504         * icomplete.el (icomplete-completions): Make sure the prefix is already
14505         displayed elsewhere before hiding it (bug#16219).
14507 2013-12-14  Dmitry Gutov  <dgutov@yandex.ru>
14509         * progmodes/ruby-mode.el (ruby-smie-rules): Return nil before
14510         open-paren tokens when preceded by a open-paren, too.
14511         (ruby-smie-rules): Handle virtual indentation after open-paren
14512         tokens specially.  If there is code between it and eol, return the
14513         column where is starts (Bug#16118).
14515 2013-12-13  Teodor Zlatanov  <tzz@lifelogs.com>
14517         * progmodes/cfengine.el: Fix `add-hook' doc.
14518         (cfengine-mode-syntax-functions-regex): Initialize sensibly.
14519         (cfengine3--current-word): Fix parameters.
14520         (cfengine3-make-syntax-cache): Simplify further.
14521         (cfengine3-completion-function, cfengine3--current-function):
14522         Use `assq' for symbols.
14523         (cfengine3--current-function): Fix `cfengine3--current-word' call.
14525 2013-12-13  Glenn Morris  <rgm@gnu.org>
14527         * loadup.el (load-path): Warn if site-load or site-init changes it.
14528         No more need to reset it when bootstrapping.
14530 2013-12-13  Teodor Zlatanov  <tzz@lifelogs.com>
14532         * progmodes/cfengine.el (cfengine-cf-promises): Add more default
14533         locations for cf-promises.
14534         (cfengine-mode-syntax-functions-regex): New caching variable.
14535         (cfengine3-fallback-syntax): Fallback syntax for cases where
14536         cf-promises doesn't run.
14537         (cfengine3--current-word): Reimplement using
14538         `cfengine-mode-syntax-functions-regex'.
14539         (cfengine3-completion-function, cfengine3--current-function):
14540         Use `cfengine3-make-syntax-cache' directly.
14541         (cfengine3-clear-syntax-cache): New function.
14542         (cfengine3-make-syntax-cache): Simplify and create
14543         `cfengine-mode-syntax-functions-regex' on demand.
14544         (cfengine3-format-function-docstring): Don't call
14545         `cfengine3-make-syntax-cache' explicitly.
14547 2013-12-13  Martin Rudalics  <rudalics@gmx.at>
14549         Fix windmove-find-other-window broken after pixelwise resizing
14550         (Bug#16017).
14551         * windmove.el (windmove-other-window-loc): Revert change from
14552         2013-12-04.
14553         (windmove-find-other-window): Call window-in-direction.
14554         * window.el (window-in-direction): New arguments SIGN, WRAP and
14555         MINI to emulate original windmove-find-other-window behavior.
14557 2013-12-13  Dmitry Gutov  <dgutov@yandex.ru>
14559         * simple.el (blink-matching--overlay): New variable.
14560         (blink-matching-open): Instead of moving point, highlight the
14561         matching paren with an overlay
14562         (http://lists.gnu.org/archive/html/emacs-devel/2013-12/msg00333.html).
14564         * faces.el (paren-showing-faces, show-paren-match)
14565         (show-paren-mismatch): Move from paren.el.
14567 2013-12-13  Leo Liu  <sdl.web@gmail.com>
14569         * indent.el (indent-region): Disable progress reporter in
14570         minibuffer.  (Bug#16108)
14572         * bindings.el (visual-order-cursor-movement): Fix version.
14574 2013-12-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
14576         * progmodes/python.el (python-pdbtrack-stacktrace-info-regexp):
14577         Also match after beginning of line.
14578         (python-pdbtrack-set-tracked-buffer): Fix logic for remote
14579         files.  Thanks to Russell Sim.  (Bug#15378)
14581 2013-12-13  Juri Linkov  <juri@jurta.org>
14583         * simple.el <Keypad support>: Remove key bindings duplicated
14584         with bindings.el.  (Bug#14397)
14586 2013-12-13  Juri Linkov  <juri@jurta.org>
14588         * comint.el (comint-mode-map): Replace `delete-char' with
14589         `delete-forward-char'.  (Bug#16109)
14591 2013-12-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
14593         * progmodes/python.el (python-indent-calculate-indentation):
14594         Fix de-denters cornercase.  (Bug#15731)
14596 2013-12-12  Stefan Monnier  <monnier@iro.umontreal.ca>
14598         * emacs-lisp/nadvice.el: Add `depth' property to manage ordering.
14599         (advice--make): Pay attention to `depth'.
14600         (advice--make-1): Don't autoload commands eagerly.
14601         * emacs-lisp/elp.el (elp-instrument-function):
14602         * emacs-lisp/trace.el (trace-function-internal):
14603         * emacs-lisp/debug.el (debug-on-entry): Keep them "first".
14605         * iswitchb.el (iswitchb-mode): Don't belittle ido.
14607 2013-12-12  Eli Zaretskii  <eliz@gnu.org>
14609         * term/w32-win.el (w32-handle-dropped-file):
14610         * startup.el (normal-top-level):
14611         * net/browse-url.el (browse-url-file-url):
14612         * dnd.el (dnd-get-local-file-name): On MS-Windows, encode and
14613         decode file names using 'utf-8' rather than
14614         file-name-coding-system.
14616 2013-12-12  Fabián Ezequiel Gallina  <fgallina@gnu.org>
14618         * progmodes/python.el (python-indent-context)
14619         (python-indent-calculate-indentation): Fix auto-identation
14620         behavior for comment blocks.  (Bug#15916)
14622 2013-12-12  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
14624         * progmodes/python.el (python-indent-calculate-indentation):
14625         When determining indentation, don't treat "return", "pass", etc., as
14626         operators when they are just string constituents.  (Bug#15812)
14628 2013-12-12  Juri Linkov  <juri@jurta.org>
14630         * uniquify.el (uniquify-buffer-name-style): Change default to
14631         `post-forward-angle-brackets'.
14633         * menu-bar.el (menu-bar-options-menu): Don't require preloaded
14634         `uniquify'.  Change default to `post-forward-angle-brackets'.
14636 2013-12-11  Glenn Morris  <rgm@gnu.org>
14638         * emacs-lisp/package.el (finder-list-matches):
14639         Autoload rather than falsely declaring.
14641 2013-12-11  Teodor Zlatanov  <tzz@lifelogs.com>
14643         * net/eww.el (eww-exit, eww-close): Add UI convenience wrappers.
14644         (eww-mode-map): Use them.
14646 2013-12-11  Martin Rudalics  <rudalics@gmx.at>
14648         * window.el (display-buffer-in-side-window): Fix doc-string
14649         (Bug#16115).
14651 2013-12-11  Juanma Barranquero  <lekktu@gmail.com>
14653         * vc/vc-git.el: Silence byte-compiler warnings.
14654         (vc-git-dir-extra-headers): Rename arg _dir which is no longer ignored.
14655         (log-edit-set-header): Declare.
14657 2013-12-11  Eli Zaretskii  <eliz@gnu.org>
14659         * Makefile.in (custom-deps, finder-data): Run output file names
14660         through unmsys--file-name.  (Bug#16099)
14662 2013-12-11  Stefan Monnier  <monnier@iro.umontreal.ca>
14664         * emacs-lisp/smie.el (smie-indent--hanging-p): Don't bother matching
14665         comment-start-skip, which fails when that uses submatch 1 (bug#16041).
14667         * emulation/cua-base.el (cua-paste): Add `delete-selection' property
14668         instead of deleting the selection "by hand" (bug#16098).
14669         Rely on insert-for-yank to yank rectangles.
14670         (cua-highlight-region-shift-only): Mark obsolete.
14671         (cua-mode): Don't enable/disable transient-mark-mode,
14672         shift-select-mode (cua-mode works both with and without them), and
14673         pc-selection-mode (obsolete).
14674         * emulation/cua-rect.el (cua--activate-rectangle): Activate the mark.
14675         (cua--deactivate-rectangle): Deactivate it.
14677         * delsel.el (delete-selection-mode): Don't enable transient-mark-mode.
14678         (delete-selection-helper): Make sure yank starts at the top of the
14679         deleted region.
14680         (minibuffer-keyboard-quit): Use region-active-p.
14682         * emacs-lisp/trace.el (trace-make-advice): Don't deactivate the mark.
14684         * simple.el (normal-erase-is-backspace-mode): Map kp-delete identically
14685         to `delete' (bug#16109).
14687 2013-12-11  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
14689         * progmodes/octave.el (octave-mode, inferior-octave-mode): Link to
14690         info manual and show keybindings and set `:group' keyword.
14692 2013-12-11  Juri Linkov  <juri@jurta.org>
14694         * delsel.el (delete-active-region): Let-bind `this-command'
14695         to prevent `kill-region' from changing its original value.
14696         (delete-selection-helper): Handle `overwrite-mode' for the type
14697         `kill' exactly the same way as for the type `t'.
14698         (insert-char, quoted-insert, reindent-then-newline-and-indent):
14699         Support more commands.  (Bug#13312)
14701 2013-12-11  Juri Linkov  <juri@jurta.org>
14703         * bindings.el: Map kp keys to non-kp keys systematically
14704         with basic modifiers control, meta and shift.  (Bug#14397)
14706 2013-12-11  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
14708         * net/eww.el (eww-mode-map): Instead of "Quit" show "Exit" and
14709         "Close browser" menu items.  Fix wrong function of "List
14710         bookmarks".
14712 2013-12-11  Juri Linkov  <juri@jurta.org>
14714         * misearch.el (multi-isearch-buffers): Set the value of
14715         `multi-isearch-buffer-list' globally.  Set NO-RECURSIVE-EDIT
14716         arg of isearch-forward to t.
14717         (multi-isearch-buffers-regexp): Set the value of
14718         `multi-isearch-buffer-list' globally.  Set NO-RECURSIVE-EDIT
14719         arg of isearch-forward-regexp to t.
14720         (multi-isearch-files): Set the value of
14721         `multi-isearch-file-list' globally.  Set NO-RECURSIVE-EDIT
14722         arg of isearch-forward to t.
14723         (multi-isearch-files-regexp): Set the value of
14724         `multi-isearch-file-list' globally.  Set NO-RECURSIVE-EDIT
14725         arg of isearch-forward-regexp to t.  (Bug#16035)
14727         * dired-aux.el (dired-isearch-filenames): Set NO-RECURSIVE-EDIT
14728         arg of isearch-forward to t.
14729         (dired-isearch-filenames-regexp): Set NO-RECURSIVE-EDIT
14730         arg of isearch-forward-regexp to t.
14731         (dired-isearch-filter-filenames): Remove unnecessary check for
14732         `dired-isearch-filenames'.
14734         * comint.el (comint-history-isearch-backward):
14735         Set NO-RECURSIVE-EDIT arg of isearch-backward to t.
14736         (comint-history-isearch-backward-regexp):
14737         Set NO-RECURSIVE-EDIT arg of isearch-backward-regexp to t.
14739 2013-12-10  Eli Zaretskii  <eliz@gnu.org>
14741         * Makefile.in (autoloads): Run $(srcdir)/loaddefs.el through
14742         unmsys--file-name.  (Bug#16099)
14744 2013-12-10  Teodor Zlatanov  <tzz@lifelogs.com>
14746         * emacs-lisp/package.el (package-keyword-button-action):
14747         Remove finder.el require dependency.
14749 2013-12-09  Teodor Zlatanov  <tzz@lifelogs.com>
14751         * emacs-lisp/package.el: Require finder.el.
14752         (describe-package-1): Add keyword buttons.
14753         (package-make-button): New convenience function.
14754         (package-keyword-button-action): Keyword button action using
14755         `finder-list-matches'.
14757 2013-12-09  Eli Zaretskii  <eliz@gnu.org>
14759         * autorevert.el (auto-revert-notify-add-watch): Fix a thinko in
14760         last commit.
14762 2013-12-09  Michael Albinus  <michael.albinus@gmx.de>
14764         * autorevert.el (auto-revert-notify-add-watch): Do not handle
14765         symlinked files.
14767 2013-12-09  Dmitry Gutov  <dgutov@yandex.ru>
14769         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Return t
14770         after the end of a percent literal.
14772 2013-12-09  Cameron Desautels  <camdez@gmail.com>  (tiny change)
14774         * progmodes/ruby-mode.el (ruby-forward-string): Document.
14775         Handle caret-delimited strings (Bug#16079).
14777 2013-12-09  Dmitry Gutov  <dgutov@yandex.ru>
14779         * progmodes/ruby-mode.el (ruby-accurate-end-of-block):
14780         When `ruby-use-smie' is t, use `smie-forward-sexp' instead of
14781         `ruby-parse-partial' (Bug#16078).
14783 2013-12-09  Leo Liu  <sdl.web@gmail.com>
14785         * subr.el (read-passwd): Disable show-paren-mode.  (Bug#16091)
14787 2013-12-08  Dmitry Gutov  <dgutov@yandex.ru>
14789         * progmodes/js.el (js-auto-indent-flag): Remove, was unused.
14790         (js-switch-indent-offset): New option.
14791         (js--proper-indentation): Use it.  And handle the case when
14792         "default" is actually a key in an object literal.
14793         (js--same-line): New function.
14794         (js--multi-line-declaration-indentation): Use it.
14795         (js--indent-in-array-comp, js--array-comp-indentation):
14796         New functions.
14797         (js--proper-indentation): Use them, to handle array comprehension
14798         continuations.
14800 2013-12-08  Leo Liu  <sdl.web@gmail.com>
14802         * progmodes/flymake.el (flymake-highlight-line): Re-write.
14803         (flymake-make-overlay): Remove arg MOUSE-FACE.
14804         (flymake-save-string-to-file, flymake-read-file-to-string): Remove.
14806 2013-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
14808         * emulation/cua-rect.el (cua--rectangle-highlight-for-redisplay):
14809         New function.
14810         (redisplay-highlight-region-function): Use it.
14812         * emulation/cua-base.el (cua--explicit-region-start)
14813         (cua--last-region-shifted): Remove.
14814         (cua--deactivate): Use deactivate-mark.
14815         (cua--pre-command-handler-1): Don't handle shift-selection.
14816         (cua--post-command-handler-1): Don't change transient-mark-mode.
14817         (cua--select-keymaps): Use region-active-p rather than
14818         cua--explicit-region-start or cua--last-region-shifted.
14819         (cua-mode): Enable shift-select-mode.
14821 2013-12-08  Leo Liu  <sdl.web@gmail.com>
14823         * progmodes/flymake.el (flymake-popup-current-error-menu):
14824         Rename from flymake-display-err-menu-for-current-line.  Reimplement.
14825         (flymake-posn-at-point-as-event, flymake-popup-menu)
14826         (flymake-make-emacs-menu): Remove.  (Bug#16077)
14828 2013-12-08  Stefan Monnier  <monnier@iro.umontreal.ca>
14830         * rect.el (rectangle-mark-mode): Activate mark even if
14831         transient-mark-mode is off (bug#16066).
14832         (rectangle--highlight-for-redisplay): Fix boundary condition when point
14833         is > mark and at bolp.
14835         * emulation/cua-rect.el (cua--rectangle-region-extract): New function.
14836         (region-extract-function): Use it.
14837         (cua-mouse-save-then-kill-rectangle): Use cua-copy-region.
14838         (cua-copy-rectangle, cua-cut-rectangle, cua-delete-rectangle):
14839         Delete functions.
14840         (cua--init-rectangles): Don't re-remap copy-region-as-kill,
14841         kill-ring-save, kill-region, delete-char, delete-forward-char.
14842         Ignore self-insert-iso.
14844         * emulation/cua-gmrk.el (cua--init-global-mark):
14845         Ignore `self-insert-iso'.
14847         * emulation/cua-base.el (cua--prefix-copy-handler)
14848         (cua--prefix-cut-handler): Rely on region-extract-function rather than
14849         checking cua--rectangle.
14850         (cua-delete-region): Use region-extract-function.
14851         (cua-replace-region): Delete function.
14852         (cua-copy-region, cua-cut-region): Obey region-extract-function.
14853         (cua--pre-command-handler-1): Don't do the delete-selection thing.
14854         (cua--self-insert-char-p): Ignore `self-insert-iso'.
14855         (cua--init-keymaps): Don't remap delete-selection commands.
14856         (cua-mode): Use delete-selection-mode instead of rolling our own
14857         (bug#16085).
14859         * menu-bar.el (clipboard-kill-ring-save, clipboard-kill-region):
14860         Obey region-extract-function.
14862         Make registers and delete-selection-mode work on rectangles.
14863         * register.el (describe-register-1): Don't modify the register's value.
14864         (copy-to-register): Obey region-extract-function.
14865         * delsel.el (delete-active-region): Obey region-extract-function.
14867 2013-12-08  Leo Liu  <sdl.web@gmail.com>
14869         * progmodes/flymake.el (flymake, flymake-error-bitmap)
14870         (flymake-warning-bitmap, flymake-fringe-indicator-position)
14871         (flymake-compilation-prevents-syntax-check)
14872         (flymake-start-syntax-check-on-newline)
14873         (flymake-no-changes-timeout, flymake-gui-warnings-enabled)
14874         (flymake-start-syntax-check-on-find-file, flymake-log-level)
14875         (flymake-xml-program, flymake-master-file-dirs)
14876         (flymake-master-file-count-limit)
14877         (flymake-allowed-file-name-masks): Relocate.
14878         (flymake-makehash, flymake-float-time)
14879         (flymake-replace-regexp-in-string, flymake-split-string)
14880         (flymake-get-temp-dir): Remove.
14881         (flymake-popup-menu, flymake-nop, flymake-make-xemacs-menu)
14882         (flymake-current-row, flymake-selected-frame)
14883         (flymake-get-point-pixel-pos): Remove xemacs compatibity and
14884         related functions.  (Bug#16077)
14886 2013-12-07  Bozhidar Batsov  <bozhidar@batsov.com>
14888         * emacs-lisp/helpers.el (string-blank-p): Use `string-match-p'.
14890 2013-12-07  Tassilo Horn  <tsdh@gnu.org>
14892         * help-fns.el (describe-function-1): Use new advice-* functions
14893         rather than old ad-* functions.  Fix function type description and
14894         source links for advised functions and subrs.
14896 2013-12-07  Lars Magne Ingebrigtsen  <larsi@gnus.org>
14898         * net/shr.el (shr-tag-img): Don't bug out on <img src=""> data.
14900 2013-12-06  Michael Albinus  <michael.albinus@gmx.de>
14902         * progmodes/compile.el (compilation-start):
14903         * progmodes/grep.el (rgrep): Revert change 2012-12-20T11:15:38Z!michael.albinus@gmx.de.
14905         * net/tramp-sh.el (tramp-sh-handle-start-file-process):
14906         Handle long command lines, lasting from "sh -c ...".  (Bug#16045)
14908 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
14910         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
14911         Touch up the last change.
14913 2013-12-06  Leo Liu  <sdl.web@gmail.com>
14915         * progmodes/octave.el (inferior-octave-prompt): Use shy groups.
14916         (inferior-octave-startup): Always use "octave> " for prompt.
14917         (octave-goto-function-definition)
14918         (octave-sync-function-file-names)
14919         (octave-find-definition-default-filename): Remove redundant backquotes.
14921 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
14923         * progmodes/ruby-mode.el (ruby-mode-syntax-table): Don't modify
14924         syntax for `?'.
14925         (ruby-expr-beg): Expect that `!' will have syntax class "symbol"
14926         where appropriate already.
14927         (ruby-syntax-propertize-function): Propertize `?' and `!' at the
14928         end of method names (Bug#15874).
14930 2013-12-06  Juri Linkov  <juri@jurta.org>
14932         * isearch.el (isearch--saved-overriding-local-map):
14933         New internal variable.
14934         (isearch-mode): Set it to the initial value of
14935         `overriding-terminal-local-map'.
14936         (isearch-pre-command-hook): Compare `overriding-terminal-local-map'
14937         with `isearch--saved-overriding-local-map'.  (Bug#16035)
14939 2013-12-06  Dmitry Gutov  <dgutov@yandex.ru>
14941         * progmodes/octave.el (inferior-octave-completion-table):
14942         Turn back into function, use `completion-table-with-cache'
14943         (Bug#11906).  Update all references.
14945         * minibuffer.el (completion-table-with-cache): New function.
14947 2013-12-05  Cameron Desautels  <camdez@gmail.com>  (tiny change)
14949         * emacs-lisp/regexp-opt.el (regexp-opt-charset): Fix ^ (bug#16046).
14951 2013-12-05  Teodor Zlatanov  <tzz@lifelogs.com>
14953         * net/eww.el (eww-current-source): New variable to store page
14954         source.
14955         (eww-display-html, eww-mode, eww-save-history)
14956         (eww-restore-history): Use it.
14957         (eww-view-source): New command to view page source.
14958         Opportunistically uses `html-mode' to highlight the buffer.
14959         (eww-mode-map): Install it.
14961 2013-12-05  Michael Albinus  <michael.albinus@gmx.de>
14963         * net/dbus.el (dbus-unregister-service)
14964         (dbus-escape-as-identifier, dbus-unescape-from-identifier):
14965         Fix docstring.
14966         (dbus-unregister-service): Skip :serial entries in
14967         `dbus-registered-objects-table'.
14968         (dbus-byte-array-to-string): New optional arg MULTIBYTE.
14970 2013-12-04  Teodor Zlatanov  <tzz@lifelogs.com>
14972         * emacs-lisp/lisp-mnt.el (lm-keywords-list): Trim whitespace
14973         around keywords with extra `split-string' argument.
14975 2013-12-04  Martin Rudalics  <rudalics@gmx.at>
14977         * windmove.el (windmove-other-window-loc): Handle navigation
14978         between windows (excluding the minibuffer window - Bug#16017).
14980 2013-12-04  Michael Albinus  <michael.albinus@gmx.de>
14982         * net/dbus.el (dbus-byte-array-to-string): Accept also byte arrays
14983         in D-Bus type syntax.
14984         (dbus-unescape-from-identifier): Use `byte-to-string' in order to
14985         preserve unibyte strings.  (Bug#16048)
14987 2013-12-04  Stefan Monnier  <monnier@iro.umontreal.ca>
14989         * emacs-lisp/eldoc.el (eldoc-minibuffer-message):
14990         Call force-mode-line-update is the proper buffer (bug#16042).
14992 2013-12-04  Dmitry Gutov  <dgutov@yandex.ru>
14994         * vc/log-edit.el (log-edit-add-new-comment): Rename to
14995         `log-edit-remember-comment', make argument optional.  Adjust all
14996         callers.
14997         (log-edit-mode): Add `log-edit-remember-comment' to
14998         `kill-buffer-hook' locally.
14999         (log-edit-kill-buffer): Don't remember comment explicitly since
15000         the buffer is killed anyway.
15002 2013-12-04  Juri Linkov  <juri@jurta.org>
15004         * isearch.el (isearch-mode, isearch-done): Don't set arg LOCAL in
15005         add-hook and remove-hook for multi-buffer search.  (Bug#16035)
15007 2013-12-03  Tom Regner  <tom@goochesa.de>  (tiny change)
15009         * notifications.el (notifications-close-notification): Call the
15010         D-Bus method with ID being a `:uint32'.  (Bug#16030)
15012 2013-12-03  Katsumi Yamaoka  <yamaoka@jpl.org>
15014         * net/eww.el (eww-render): Don't pass arg to eww-display-image.
15016 2013-12-03  Juri Linkov  <juri@jurta.org>
15018         * progmodes/compile.el (compilation-start): Rename window alist
15019         entry `no-display-ok' to `allow-no-window'.
15021         * simple.el (shell-command): Add window alist entry
15022         `allow-no-window' to `display-buffer'.
15023         (async-shell-command): Doc fix.
15025         * window.el (display-buffer-no-window): New action function.
15026         (display-buffer-alist, display-buffer): Doc fix.  (Bug#13594)
15028 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
15030         * vc/log-edit.el (log-edit-set-header): Extract from
15031         `log-edit-toggle-header'.
15032         (log-edit-extract-headers): Separate the summary, when extracted
15033         from header, from the rest of the message with an empty line.
15035         * vc/vc-git.el (vc-git-log-edit-toggle-amend): Move the summary
15036         line, if present, to the Summary header.
15038 2013-12-02  Stefan Monnier  <monnier@iro.umontreal.ca>
15040         * epa-file.el (epa-file-insert-file-contents): Ensure we insert text
15041         in current-buffer (bug#16029).
15043 2013-12-02  Helmut Eller  <eller.helmut@gmail.com>
15045         * emacs-lisp/debug.el (debugger-toggle-locals): New command.
15046         (debugger-mode-map): Bind it.
15047         (debugger--backtrace-base): New function.
15048         (debugger-eval-expression): Use it.
15049         (debugger-frame-number): Skip local vars when present.
15050         (debugger--locals-visible-p, debugger--insert-locals)
15051         (debugger--show-locals, debugger--hide-locals): New functions.
15053 2013-12-02  Michael Albinus  <michael.albinus@gmx.de>
15055         * net/tramp-sh.el (tramp-remote-process-environment): Do not set
15056         "LC_ALL".
15057         (tramp-get-remote-locale): New defun.
15058         (tramp-open-connection-setup-interactive-shell): Use it.
15060 2013-12-02  Leo Liu  <sdl.web@gmail.com>
15062         * subr.el (process-live-p): Return nil for non-process.  (Bug#16023)
15064         * progmodes/sh-script.el (sh-shell-process):
15065         * progmodes/octave.el (inferior-octave-process-live-p):
15066         * progmodes/gdb-mi.el (gdb-delchar-or-quit)
15067         (gdb-inferior-io-sentinel):
15068         * emacs-lock.el (emacs-lock-live-process-p): All uses changed.
15070 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
15072         * vc/log-edit.el (log-edit-kill-buffer): Move the use of
15073         `save-selected-window' to `log-edit-hide-buf'.  This makes
15074         `log-edit-show-files' idempotent.
15075         (log-edit-show-files): Mark the new window as dedicated.
15077 2013-12-02  Dmitry Gutov  <dgutov@yandex.ru>
15079         * vc/log-edit.el (log-edit-mode-map): Add binding for
15080         `log-edit-kill-biffer'.
15081         (log-edit-hide-buf): Add a FIXME comment.
15082         (log-edit-add-new-comment): New function, extracted from
15083         `log-edit-done'.
15084         (log-edit-done, log-edit-add-to-changelog): Use it.
15085         (log-edit-kill-buffer): New command.
15087 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15089         * net/eww.el (eww-mode-map): Have `q' do a normal `quit-window'
15090         instead of killing the buffer.
15092 2013-12-01  Stefan Monnier  <monnier@iro.umontreal.ca>
15094         * simple.el (newline): Mention `electric-indent-mode' (bug#16015).
15096 2013-12-01  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
15098         * net/eww.el (eww-form-checkbox-selected-symbol)
15099         (eww-form-checkbox-symbol): New customizable variable.
15100         (eww-form-checkbox, eww-toggle-checkbox):
15101         Use `eww-form-checkbox-selected-symbol' and `eww-form-checkbox-symbol'.
15103         * net/shr.el (shr-prefer-media-type-alist): New customizable variable.
15104         (shr--get-media-pref, shr--extract-best-source): New function.
15105         (shr-tag-video, shr-tag-audio): Use `shr--extract-best-source' when
15106         no :src tag was specified.
15108         * net/eww.el (eww-use-external-browser-for-content-type): New variable.
15109         (eww-render): Handle `eww-use-external-browser-for-content-type'.
15110         Use \\` to match beginning of string instead of ^.
15111         (eww-browse-with-external-browser): Provide optional URL parameter.
15112         (eww-render): Set `eww-current-title' back to "".
15114         * net/shr.el (shr-tag-video): Display content for video if no
15115         poster is available.
15116         (shr-tag-audio): Add support for <audio> tag.
15118         * net/eww.el (eww-text-input-types): New const.
15119         (eww-process-text-input): Treat input types in
15120         `eww-text-input-types' as text.
15122         * net/shr.el (shr-tag-table): Fix comment typo.
15124 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15126         * net/eww.el (eww-follow-link): New command to avoid reloading
15127         pages when we follow #target links (bug#15243).
15128         (eww-quit): Special mode buffers shouldn't query before exiting.
15130 2013-12-01  Kenjiro NAKAYAMA  <nakayamakenjiro@gmail.com>
15132         * net/eww.el (eww-tag-select): Support <optgroup> tags in <select>
15133         forms.
15135 2013-12-01  Lars Magne Ingebrigtsen  <larsi@gnus.org>
15137         * net/eww.el (eww-restore-history): Update the window title after
15138         moving in the history.
15139         (eww-current-dom): New variable used to save the current DOM.
15141 2013-12-01  Dmitry Gutov  <dgutov@yandex.ru>
15143         * vc/log-edit.el (log-edit-mode-map): Add binding for
15144         `log-edit-beginning-of-line'.
15145         (log-edit-setup-add-author): New user option.
15146         (log-edit-beginning-of-line): New command.
15147         (log-edit): Move major mode call above the contents setup so that
15148         the local variable values are already applied.
15149         (log-edit): Only insert "Author: " when
15150         `log-edit-setup-add-author' is non-nil.
15151         (log-edit): When SETUP is non-nil, position point after ": "
15152         instead of point-min.
15154 2013-12-01  Glenn Morris  <rgm@gnu.org>
15156         * startup.el (command-line): Warn if ~/emacs.d is in load-path.
15158 2013-11-30  Eli Zaretskii  <eliz@gnu.org>
15160         * startup.el (fancy-splash-frame): On MS-Windows, trigger
15161         redisplay to make sure the initial frame gets a chance to become
15162         visible.  (Bug#16014)
15164 2013-11-30  Martin Rudalics  <rudalics@gmx.at>
15166         Support resizing frames and windows pixelwise.
15167         * cus-start.el (frame-resize-pixelwise)
15168         (window-resize-pixelwise): New entries.
15169         * emacs-lisp/debug.el (debug): Use window-total-height instead
15170         of window-total-size.
15171         * frame.el (tool-bar-lines-needed): Defalias to tool-bar-height.
15172         * help.el (describe-bindings-internal): Use help-buffer as
15173         argument for with-help-window.
15174         (temp-buffer-max-width): New option.
15175         (resize-temp-buffer-window, help-window-setup)
15176         (with-help-window): Rewrite.
15177         * mouse.el (mouse-drag-line): Rewrite.  Add key bindings for
15178         dragging dividers.
15179         * window.el (frame-char-size, window-min-pixel-height)
15180         (window-safe-min-pixel-height, window-safe-min-pixel-width)
15181         (window-min-pixel-width, window-safe-min-pixel-size)
15182         (window-combination-p, window-safe-min-size)
15183         (window-resizable-p, window--size-to-pixel)
15184         (window--pixel-to-size, window--resize-apply-p): New functions.
15185         (window-safe-min-height): Fix doc-string.
15186         (window-size, window-min-size, window--min-size-1)
15187         (window-sizable, window-sizable-p, window--min-delta-1)
15188         (window-min-delta, window--max-delta-1, window-max-delta)
15189         (window--resizable, window--resizable-p, window-resizable)
15190         (window-full-height-p, window-full-width-p, window-at-side-p)
15191         (window--in-direction-2, window-in-direction)
15192         (window--resize-reset-1, window--resize-mini-window)
15193         (window-resize, window-resize-no-error)
15194         (window--resize-child-windows-normal)
15195         (window--resize-child-windows, window--resize-siblings)
15196         (window--resize-this-window, window--resize-root-window)
15197         (window--resize-root-window-vertically)
15198         (adjust-window-trailing-edge, enlarge-window, shrink-window)
15199         (maximize-window, minimize-window, delete-window)
15200         (quit-restore-window, window-split-min-size, split-window)
15201         (balance-windows-2, balance-windows)
15202         (balance-windows-area-adjust, balance-windows-area)
15203         (window--state-get-1, window-state-get, window--state-put-1)
15204         (window--state-put-2, window-state-put)
15205         (display-buffer-record-window, window--display-buffer):
15206         Make functions handle pixelwise sizing of windows.
15207         (display-buffer--action-function-custom-type)
15208         (display-buffer-fallback-action):
15209         Add display-buffer-in-previous-window.
15210         (display-buffer-use-some-window): Resize window to height it had
15211         before.
15212         (fit-window-to-buffer-horizontally): New option.
15213         (fit-frame-to-buffer): Describe new values.
15214         (fit-frame-to-buffer-bottom-margin): Replace with
15215         fit-frame-to-buffer-margins.
15216         (window--sanitize-margin): New function.
15217         (fit-frame-to-buffer, fit-window-to-buffer): Rewrite completely
15218         using window-text-pixel-size.
15220 2013-11-30  Glenn Morris  <rgm@gnu.org>
15222         * emacs-lisp/bytecomp.el (byte-compile-form):
15223         Make the `interactive-only' warning like the `obsolete' one.
15224         * comint.el (comint-run):
15225         * files.el (insert-file-literally, insert-file):
15226         * replace.el (replace-string, replace-regexp):
15227         * simple.el (beginning-of-buffer, end-of-buffer, delete-backward-char)
15228         (goto-line, insert-buffer, next-line, previous-line):
15229         Tweak `interactive-only' spec.
15231         Stop keeping (most) generated cedet grammar files in the repository.
15232         * Makefile.in (semantic): New.
15233         (compile-main): Depend on semantic.
15235 2013-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
15237         * net/newst-reader.el (newsticker-html-renderer): Default to SHR if
15238         available.  Suggested by Clément B. <barthele1u@etu.univ-lorraine.fr>.
15240         * uniquify.el (uniquify-buffer-name-style): Change default.
15242         * loadup.el: Preload "uniquify".
15244         * time.el (display-time-update): Update all mode lines (bug#15999).
15246         * electric.el (electric-indent-mode): Enable by default.
15247         * loadup.el: Preload "electric".
15249 2013-11-29  Bozhidar Batsov  <bozhidar@batsov.com>
15251         * emacs-lisp/helpers.el (string-empty-p): New function.
15252         (string-blank-p): New function.
15254 2013-11-29  Andreas Politz  <politza@hochschule-trier.de>
15256         * imenu.el (imenu--index-alist): Add missing dot to the docstring
15257         (Bug#14029).
15259 2013-11-29  Andreas Politz  <politza@fh-trier.de>
15260         * imenu.el (imenu--subalist-p): Don't error on non-conses and
15261         allow non-lambda lists as functions.
15262         (imenu--in-alist): Don't recurse into non-subalists.
15263         (imenu): Don't pass function itself as an argument (Bug#14029).
15265 2013-11-29  Stefan Monnier  <monnier@iro.umontreal.ca>
15267         * progmodes/python.el (python-mode-map): Remove binding for ":".
15268         (python-indent-electric-colon): Remove command.
15269         (python-indent-post-self-insert-function): Integrate the previous code
15270         of python-indent-electric-colon.  Make it conditional on
15271         electric-indent-mode.
15272         (python-mode): Add ?: to electric-indent-chars.
15273         Move python-indent-post-self-insert-function to the end of
15274         post-self-insert-hook.
15276 2013-11-28  Stefan Monnier  <monnier@iro.umontreal.ca>
15278         * doc-view.el (doc-view-goto-page): Update mode-line.
15280         * vc/vc-dispatcher.el (vc-log-edit): Setup the Summary&Author headers.
15282 2013-11-27  Glenn Morris  <rgm@gnu.org>
15284         * international/charprop.el, international/uni-bidi.el:
15285         * international/uni-category.el, international/uni-combining.el:
15286         * international/uni-comment.el, international/uni-decimal.el:
15287         * international/uni-decomposition.el, international/uni-digit.el:
15288         * international/uni-lowercase.el, international/uni-mirrored.el:
15289         * international/uni-name.el, international/uni-numeric.el:
15290         * international/uni-old-name.el, international/uni-titlecase.el:
15291         * international/uni-uppercase.el:
15292         Remove generated files from VCS repository.
15294 2013-11-27  Eli Zaretskii  <eliz@gnu.org>
15296         * filenotify.el (file-notify-add-watch): Don't special-case
15297         w32notify when computing the directory to watch.
15299 2013-11-27  Glenn Morris  <rgm@gnu.org>
15301         Make bootstrap without generated uni-*.el files possible again.
15302         * loadup.el: Update command-line-args checking for unidata-gen.
15303         Add vc to load-path to allow loading vc-bzr when writing uni-*.el.
15304         * composite.el, international/characters.el:
15305         Handle unicode tables being undefined.
15307         Move ja-dic, quail, leim-list.el from ../leim to a leim subdirectory.
15308         * Makefile.in (setwins_for_subdirs): Skip leim/ directory.
15309         (compile-main): Depend on leim rule.
15310         (leim): New rule.
15311         * loadup.el: Move leim-list.el to leim/ subdirectory.
15312         * startup.el (normal-top-level): No more leim directory.
15313         * international/ja-dic-cnv.el (skkdic-convert):
15314         Disable version-control and autoloads in output files.
15315         * international/titdic-cnv.el (titdic-convert, miscdic-convert):
15316         Disable version-control and autoloads in output files.
15317         * leim/quail: Move here from ../leim.
15318         * leim/quail/hangul.el (hangul-input-method-activate):
15319         Add autoload cookie.
15320         (generated-autoload-load-name): Set file-local value.
15321         * leim/quail/uni-input.el (ucs-input-activate): Add autoload cookie.
15322         (generated-autoload-load-name): Set file-local value.
15324 2013-11-26  Kenjiro NAKAYAMA  <knakayam@redhat.com>
15326         * net/eww.el (eww-bookmark-browse): Use 'eww-browse-url'.
15327         (eww-add-bookmark): Ask confirmation when add to bookmarks.
15328         (eww-quit): Ask confirmation before quitting eww.
15330 2013-11-26  Eli Zaretskii  <eliz@gnu.org>
15332         * vc/vc.el (vc-diff-internal): Use *-dos coding-system when
15333         reading output from Diff on MS-Windows and MS-DOS.
15335 2013-11-26  Bozhidar Batsov  <bozhidar@batsov.com>
15337         * emacs-lisp/helpers.el (string-reverse): New function.
15339 2013-11-26  Michael Albinus  <michael.albinus@gmx.de>
15341         * net/tramp.el (tramp-file-name-regexp-unified): Support IPv6 host
15342         names on MS Windows, like "/[::1]:".
15344         * net/tramp-sh.el (tramp-sh-handle-insert-directory): Accept nil
15345         SWITCHES.
15347 2013-11-26  Glenn Morris  <rgm@gnu.org>
15349         * progmodes/python.el (python-indent-guess-indent-offset):
15350         Avoid corner-case error.  (Bug#15975)
15352         Preload leim-list.el.  (Bug#4789)
15353         * loadup.el: Load leim-list.el when found.
15354         * startup.el (normal-top-level): Skip re-loading leim/leim-list.el.
15356 2013-11-25  Bozhidar Batsov  <bozhidar@batsov.com>
15358         * emacs-lisp/bytecomp.el (byte-compile-form): Fix a typo.
15360         * emacs-lisp/helpers.el (string-join): New function.
15362 2013-11-25  Sebastian Wiesner  <lunaryorn@gmail.com>  (tiny change)
15364         * emacs-lisp/bytecomp.el (byte-compile-interactive-only-functions):
15365         Mark as obsolete and replace it with a symbol property.
15366         (byte-compile-form): Use new 'interactive-only property.
15367         * comint.el, files.el, replace.el, simple.el:
15368         Apply new 'interactive-only properly.
15370 2013-11-25  Martin Rudalics  <rudalics@gmx.at>
15372         * window.el (display-buffer-at-bottom): Make sure that
15373         split-window-sensibly creates the new window on bottom
15374         (Bug#15961).
15376 2013-11-23  David Kastrup  <dak@gnu.org>
15378         * vc/smerge-mode.el (smerge-ediff): Choose default buffer names based
15379         on the conflict markers when available.
15380         (smerge--get-marker): New function.
15381         (smerge-end-re, smerge-base-re): Add subgroup.
15383 2013-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
15385         * frame.el (handle-focus-in, handle-focus-out): Add missing
15386         interactive spec.
15388 2013-11-25  Michael Albinus  <michael.albinus@gmx.de>
15390         * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
15391         `tramp-current-connection' only when KEEP-PASSWORD is non-nil.
15393 2013-11-25  Stefan Monnier  <monnier@iro.umontreal.ca>
15395         * play/gomoku.el: Don't use intangible property.  Use lexical-binding.
15396         (gomoku--last-pos): New var.
15397         (gomoku--intangible-chars): New const.
15398         (gomoku--intangible): New function.
15399         (gomoku-mode): Use it.  Derive from special-mode.
15400         (gomoku-move-up): Adjust line count.
15401         (gomoku-click, gomoku-point-y, gomoku-point-square, gomoku-goto-xy)
15402         (gomoku-plot-square, gomoku-init-display, gomoku-cross-qtuple):
15403         Simplify accordingly.
15405         * frame.el (handle-focus-in, handle-focus-out): Move from frame.c.
15406         Remove blink-cursor code.
15407         (blink-cursor-timer-function, blink-cursor-suspend):
15408         Don't special-case GUIs.
15409         (blink-cursor-mode): Use focus-in/out-hook.
15411 2013-11-25  Dmitry Gutov  <dgutov@yandex.ru>
15413         * vc/vc-git.el (vc-git-annotate-extract-revision-at-line): Make it
15414         work when annotation is invisible (Bug#13886).
15416 2013-11-24  Simon Schubert  <2@0x2c.org>  (tiny change)
15418         * json.el (json-alist-p): Only return non-nil if the alist has
15419         simple keys (Bug#13518).
15421 2013-11-24  Mihir Rege  <mihirrege@gmail.com>  (tiny change)
15423         * progmodes/js.el (js--ctrl-statement-indentation): Fix indent
15424         when control-statement is the first statement in a buffer (Bug#15956).
15426 2013-11-24  Dmitry Gutov  <dgutov@yandex.ru>
15428         * imenu.el (imenu-generic-skip-comments-and-strings):
15429         New option (Bug#15560).
15430         (imenu--generic-function): Use it.
15432 2013-11-24  Jorgen Schaefer  <contact@jorgenschaefer.de>
15434         * minibuffer.el (completion--in-region-1): Scroll the correct window.
15435         (Bug#13898)
15437 2013-11-24  Bozhidar Batsov  <bozhidar@batsov.com>
15439         * emacs-lisp/helpers.el: Add some string helpers.
15440         (string-trim-left): Removes leading whitespace.
15441         (string-trim-right): Removes trailing whitespace.
15442         (string-trim): Removes leading and trailing whitespace.
15444         * subr.el (string-suffix-p): New function.
15446 2013-11-23  Glenn Morris  <rgm@gnu.org>
15448         * progmodes/python.el (python-shell-send-file):
15449         Add option to delete file when done.  (Bug#15647)
15450         (python-shell-send-string, python-shell-send-region): Use it.
15452 2013-11-23  Ivan Shmakov  <ivan@siamics.net>
15454         * vc/diff-mode.el (diff-mode): Only allow diff-default-read-only
15455         to set buffer-read-only to t, never to nil.  (Bug#15938)
15457         * textmodes/tex-mode.el (latex-noindent-environments):
15458         Add safe-local-variable property.  (Bug#15936)
15460 2013-11-23  Glenn Morris  <rgm@gnu.org>
15462         * textmodes/enriched.el (enriched-mode): Doc fix.
15463         * emacs-lisp/authors.el (authors-renamed-files-alist):
15464         Add enriched.doc -> enriched.txt.
15466         * Makefile.in (emacs): Empty EMACSLOADPATH rather than unsetting.
15468 2013-11-22  Leo Liu  <sdl.web@gmail.com>
15470         * progmodes/octave.el (inferior-octave-startup): Spit out error
15471         message.
15473 2013-11-22  Bozhidar Batsov  <bozhidar@batsov.com>
15475         * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
15476         Improve docstring.
15477         Add :version.
15478         (ruby-encoding-magic-comment-style): Add :version.
15480 2013-11-22  Leo Liu  <sdl.web@gmail.com>
15482         * progmodes/octave.el (octave-operator-regexp): Exclude newline.
15483         (Bug#15076)
15484         (octave-help-mode): Adapt to change to help-mode-finish to use
15485         derived-mode-p on 2013-09-17.
15486         (inferior-octave-prompt): Also match octave-gui.
15487         (octave-kill-process): Don't ask twice.  (Bug#10564)
15489 2013-11-22  Leo Liu  <sdl.web@gmail.com>
15491         * progmodes/octave.el (inferior-octave-process-live-p): New helper.
15492         (inferior-octave-startup, inferior-octave-check-process)
15493         (inferior-octave-track-window-width-change)
15494         (octave-completion-at-point, octave-eldoc-function): Use it.
15495         (octave-kill-process): Provide confirmation.  (Bug#10564)
15497 2013-11-21  Leo Liu  <sdl.web@gmail.com>
15499         * progmodes/octave.el (octave-mode, inferior-octave-mode):
15500         Fix obsolete variable comment-use-global-state.
15502 2013-11-21  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
15504         * progmodes/octave.el (octave-mode-map, octave-mode-menu):
15505         Add `octave-source-file'.
15506         (octave-source-file): New function.  (Bug#15935)
15508 2013-11-21  Kenjiro Nakayama  <nakayamakenjiro@gmail.com>
15510         * net/eww.el (eww-local-regex): New variable.
15511         (eww): Use it to detect localhost and similar.
15513 2013-11-21  Leo Liu  <sdl.web@gmail.com>
15515         Add completion for command `ag'.
15516         * pcmpl-x.el (pcmpl-x-ag-options): New variable.
15517         (pcomplete/ag): New function.
15518         (pcmpl-x-ag-options): New function.  Handle `[no]' in long options.
15520 2013-11-21  Stefan Monnier  <monnier@iro.umontreal.ca>
15522         * emacs-lisp/byte-run.el (eval-when-compile): Fix edebug spec
15523         (bug#14646).
15524         (make-obsolete): Remove interactive spec.
15526 2013-11-21  Glenn Morris  <rgm@gnu.org>
15528         * startup.el (command-line-1): Use path-separator with -L.
15530 2013-11-20  Teodor Zlatanov  <tzz@lifelogs.com>
15532         * emacs-lisp/package.el (describe-package-1): Add package archive
15533         to shown fields.
15535 2013-11-20  Bozhidar Batsov  <bozhidar@batsov.com>
15537         * progmodes/ruby-mode.el (ruby-custom-encoding-magic-comment-template):
15538         Change default to "# encoding: %s" to differentiate it from the
15539         default Ruby encoding comment template.
15541 2013-11-20  Era Eriksson  <era+emacsbugs@iki.fi>
15543         * ses.el (ses-mode): Doc fix.  (Bug#14748)
15545 2013-11-20  Leo Liu  <sdl.web@gmail.com>
15547         * window.el (display-buffer-alist): Doc fix.  (Bug#13594)
15549 2013-11-19  Dan Nicolaescu  <dann@gnu.org>
15551         * vc/vc-git.el (vc-git-dir-extra-headers): Add headers
15552         when rebase or bisect are in progress.
15554 2013-11-19  Xue Fuqiao  <xfq.free@gmail.com>
15556         * filenotify.el (file-notify-add-watch): Doc fix.
15558 2013-11-19  Leo Liu  <sdl.web@gmail.com>
15560         * obsolete/rcompile.el: Mark obsolete.
15562         * progmodes/compile.el (compilation-start)
15563         (compilation-goto-locus, compilation-find-file):
15564         Pass no-display-ok and handle nil value from display-buffer.
15565         (Bug#13594)
15567         * window.el (display-buffer-alist, display-buffer): Document the
15568         new parameter no-display-ok.  Return either a window or nil
15569         but never a non-window value.
15571 2013-11-18  Stefan Monnier  <monnier@iro.umontreal.ca>
15573         * electric.el (electric-indent-mode-map): Remove.
15574         (electric-indent-mode): Change the global-map instead (bug#15915).
15576         * textmodes/text-mode.el (paragraph-indent-minor-mode):
15577         Use add-function.
15579 2013-11-17  Stefan Monnier  <monnier@iro.umontreal.ca>
15581         * emacs-lisp/nadvice.el (remove-function): Align with
15582         add-function's behavior.
15584         * progmodes/gdb-mi.el: Avoid backtracking in regexp matcher.
15585         (gdb--string-regexp): New constant.
15586         (gdb-tooltip-print, gdb-var-evaluate-expression-handler)
15587         (gdbmi-bnf-stream-record, gdb-jsonify-buffer): Use it.
15588         (gdb-source-file-regexp, gdb-prompt-name-regexp): Use it and change
15589         submatch 1.
15590         (gdb-get-source-file-list, gdb-get-prompt, gdb-get-source-file):
15591         Adjust use accordingly.
15592         (gdb-breakpoints-list-handler-custom): Pre-build the y/n string.
15594 2013-11-17  Adam Sokolnicki  <adam.sokolnicki@gmail.com>  (tiny change)
15596         * progmodes/ruby-mode.el (ruby-toggle-block): Don't stop at
15597         interpolation curlies (Bug#15914).
15599 2013-11-17  Jay Belanger  <jay.p.belanger@gmail.com>
15601         * calc/calc.el (calc-context-sensitive-enter): New variable.
15602         (calc-enter): Use `calc-context-sensitive-enter'.
15604 2013-11-16  Teodor Zlatanov  <tzz@lifelogs.com>
15606         * progmodes/cfengine.el: Version bump.
15607         (cfengine-cf-promises): New defcustom to locate cf-promises.
15608         (cfengine3-vartypes): Add new "data" type.
15609         (cfengine3--current-word): New function to get current name-like
15610         word or its bounds.
15611         (cfengine3--current-function): New function to look up a CFEngine
15612         function's definition.
15613         (cfengine3-format-function-docstring): New function.
15614         (cfengine3-make-syntax-cache): New function.
15615         (cfengine3-documentation-function): New function: ElDoc glue.
15616         (cfengine3-completion-function): New function: completion glue.
15617         (cfengine3-mode): Set `compile-command',
15618         `eldoc-documentation-function', and add to
15619         `completion-at-point-functions'.
15621 2013-11-16  Michael Albinus  <michael.albinus@gmx.de>
15623         * net/tramp-cmds.el (tramp-cleanup-connection): Clean up
15624         `tramp-current-connection'.
15626 2013-11-15  Dmitry Gutov  <dgutov@yandex.ru>
15628         * progmodes/ruby-mode.el (ruby-font-lock-keywords): End regexp for
15629         nil/self/true/false with "end of symbol".
15631 2013-11-15  Bozhidar Batsov  <bozhidar@batsov.com>
15633         * subr.el (version-regexp-alist): Fix a typo.
15635 2013-11-15  Michael Albinus  <michael.albinus@gmx.de>
15637         * net/tramp-sh.el (tramp-remote-process-environment): Set "LC_ALL" to
15638         "en_US.utf8" and "LC_CTYPE" to "".
15639         (tramp-maybe-open-connection): Set "LC_ALL" to "en_US.utf8".
15640         (tramp-sh-handle-insert-directory): Don't set "LC_ALL" and "LC_CTYPE".
15642 2013-11-15  Leo Liu  <sdl.web@gmail.com>
15644         * loadhist.el (read-feature): Get rid of fake feature nil.  (Bug#15889)
15646 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
15648         * progmodes/gud.el (ctl-x-map):
15649         Remove C-x SPC binding.  (Bug#12342)
15650         (gud-jdb-find-source-using-classpath): Remove ((lambda (..)..)..).
15652 2013-11-14  Bozhidar Batsov  <bozhidar@batsov.com>
15654         * subr.el (version-regexp-alist):
15655         Recognize hg, svn and darcs versions as snapshot versions.
15657         * progmodes/ruby-mode.el (ruby--detect-encoding): Make aware of
15658         'always-utf8 value of `ruby-insert-encoding-magic-comment'.
15659         (ruby--encoding-comment-required-p): Extract from
15660         `ruby-mode-set-encoding'.
15661         (ruby-mode-set-encoding): Add the ability to always insert an
15662         utf-8 encoding comment.  Fix and simplify coding comment update
15663         logic.
15665 2013-11-14  Michael Albinus  <michael.albinus@gmx.de>
15667         * net/tramp-gvfs.el (top): Run init code only when
15668         `tramp-gvfs-enabled' is not nil.
15669         (tramp-gvfs-enabled): Check also :system bus.
15671 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
15673         Sync with upstream verilog-mode revision 78e66ba.
15674         * progmodes/verilog-mode.el (verilog-end-of-defun)
15675         (verilog-type-completion, verilog-get-list): Remove unused funcs.
15676         (verilog-get-end-of-defun): Remove unused argument.
15677         (verilog-comment-depth): Remove unused local `e'.
15678         (verilog-read-decls, verilog-read-sub-decls, verilog-read-instants):
15679         Don't pass arg to verilog-get-end-of-defun.
15681 2013-11-14  Glenn Morris  <rgm@gnu.org>
15683         * obsolete/assoc.el (aget): Prefix dynamic variable.
15685         * allout-widgets.el (allout-widgets): No need to autoload defgroup.
15687 2013-11-14  Stefan Monnier  <monnier@iro.umontreal.ca>
15689         * widget.el, hfy-cmap.el: Remove bogus package version number.
15691 2013-11-13  Glenn Morris  <rgm@gnu.org>
15693         * replace.el (replace-eval-replacement):
15694         Try to give more helpful error message.  (Bug#15836)
15696         * arc-mode.el (archive-7z-extract, archive-7z-expunge)
15697         (archive-7z-update): Avoid custom type mismatches.
15699         * vc/vc.el (vc-diff-knows-L): Remove; unused since 2007-10-10.
15701 2013-11-13  Michael Albinus  <michael.albinus@gmx.de>
15703         * net/tramp.el (tramp-remote-file-name-spec-regexp): An IPv6
15704         address can be empty.
15706         * net/tramp-gvfs.el (tramp-gvfs-handle-insert-directory):
15707         Accept nil SWITCHES.
15708         (tramp-gvfs-handle-write-region): Implement APPEND.
15710 2013-11-12  Dmitry Gutov  <dgutov@yandex.ru>
15712         * progmodes/ruby-mode.el (ruby-smie-grammar): Disambiguate between
15713         binary "|" operator and closing block args delimiter.
15714         Remove FIXME comment referring to Ruby 1.8-only syntax.
15715         (ruby-smie--implicit-semi-p): Not after "|" operator.
15716         (ruby-smie--closing-pipe-p): New function.
15717         (ruby-smie--forward-token, ruby-smie--backward-token): Use it.
15718         (ruby-smie-rules): Indent after "|".
15720 2013-11-12  Glenn Morris  <rgm@gnu.org>
15722         * ps-print.el (ps-face-attribute-list):
15723         Handle anonymous faces.  (Bug#15827)
15725 2013-11-12  Martin Rudalics  <rudalics@gmx.at>
15727         * window.el (display-buffer-other-frame): Fix doc-string.
15728         (Bug#15868)
15730 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
15732         * subr.el (force-mode-line-update): Delete, move to buffer.c.
15734 2013-11-11  Michael Albinus  <michael.albinus@gmx.de>
15736         * net/tramp-sh.el (tramp-do-copy-or-rename-file-via-buffer)
15737         (tramp-sh-handle-file-local-copy): Don't write a message when
15738         saving temporary files.
15740         * net/tramp-smb.el (tramp-smb-handle-copy-directory): Fix bug when
15741         both directories are remote.
15742         (tramp-smb-handle-directory-files): Do not return double entries.
15743         Do not expand full file names.
15744         (tramp-smb-handle-insert-directory): Accept nil SWITCHES.
15745         (tramp-smb-handle-write-region): Implement APPEND.
15746         (tramp-smb-get-stat-capability): Fix a stupid bug.
15748 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
15750         * bindings.el (ctl-x-map): Bind C-x SPC to rectangle-mark-mode.
15752 2013-11-11  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
15754         * emacs-lisp/cconv.el (cconv-convert): Print warning instead of
15755         throwing error over malformed let/let* (bug#15814).
15757 2013-11-11  Stefan Monnier  <monnier@iro.umontreal.ca>
15759         * iswitchb.el (iswitchb-mode): Mark obsolete.
15761 2013-11-11  Glenn Morris  <rgm@gnu.org>
15763         * international/uni-bidi.el, international/uni-category.el:
15764         * international/uni-name.el, international/uni-numeric.el:
15765         Regenerate for Unicode 6.3.0.
15767 2013-11-10  Michael Albinus  <michael.albinus@gmx.de>
15769         * net/tramp.el (tramp-methods):
15770         * net/tramp-sh.el (tramp-compute-multi-hops): Revert change of
15771         2013-10-29 (2013-10-29T02:50:24Z!dancol@dancol.org).
15773 2013-11-09  Andreas Schwab  <schwab@linux-m68k.org>
15775         * progmodes/sh-script.el (sh-font-lock-keywords-var):
15776         Force highlighting text after Summary keyword in doc face for rpm.
15778 2013-11-09  Dmitry Gutov  <dgutov@yandex.ru>
15780         * textmodes/ispell.el (ispell-lookup-words): When `look' is not
15781         available and the word has no wildcards, append one to the grep pattern.
15782         http://lists.gnu.org/archive/html/emacs-devel/2013-11/msg00258.html
15783         (ispell-complete-word): Call `ispell-lookup-words' with the value
15784         independent of `ispell-look-p'.
15786 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
15788         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p):
15789         Not after "||".
15790         (ruby-smie-rules): Indent non-hanging "begin" blocks as part of
15791         their parent.
15793 2013-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
15795         * progmodes/ruby-mode.el: Don't require cl any more.  Use pcase instead.
15796         (ruby-font-lock-keywords): Use backquote.
15798 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
15800         * progmodes/ruby-mode.el (ruby-smie--forward-token)
15801         (ruby-smie--backward-token): Only consider full-string matches.
15803 2013-11-08  Jan Djärv  <jan.h.d@swipnet.se>
15805         * faces.el (describe-face): Add distant-foreground.
15807 2013-11-08  Bozhidar Batsov  <bozhidar@batsov.com>
15809         * progmodes/ruby-mode.el: Improve encoding comment handling.
15810         (ruby-encoding-magic-comment-style): New option.
15811         (ruby-custom-encoding-magic-comment-template): New option.
15812         (ruby--insert-coding-comment, ruby--detect-encoding):
15813         New functions extracted from `ruby-mode-set-encoding'.
15814         (ruby-mode-set-encoding): Use `ruby-encoding-magic-comment-style'
15815         to control the style of the auto-inserted encoding comment.
15817 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
15819         * progmodes/ruby-mode.el (ruby-smie--indent-to-stmt):
15820         Use `smie-backward-sexp' with token argument.
15822 2013-11-08  Michael Albinus  <michael.albinus@gmx.de>
15824         * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
15825         Remove instrumentation code.
15827 2013-11-08  Glenn Morris  <rgm@gnu.org>
15829         * progmodes/autoconf.el (autoconf-mode):
15830         Tweak comment-start-skip.  (Bug#15822)
15832 2013-11-08  Stefan Monnier  <monnier@iro.umontreal.ca>
15834         * progmodes/sh-script.el (sh-smie--sh-keyword-in-p): Don't inf-loop
15835         at bobp (bug#15826).
15836         (sh-smie--sh-keyword-in-p): Recognize keywords at bobp.
15838 2013-11-08  Darren Hoo  <darren.hoo@gmail.com>
15840         * man.el (Man-start-calling): New macro, extracted from
15841         Man-getpage-in-background.
15842         (Man-getpage-in-background): Use it.
15843         (Man-update-manpage): New command.
15844         (Man-mode-map): Bind it.
15846 2013-11-08  Dmitry Gutov  <dgutov@yandex.ru>
15848         * progmodes/ruby-mode.el (ruby-smie-grammar): Improve precedences
15849         of "and", "or", "&&" and "||".
15850         (ruby-smie--args-separator-p): Prohibit keyword "do" as the first
15851         argument.  Prohibit opening curly brace because it could only be a
15852         block opener in that position.
15853         (ruby-smie--forward-token, ruby-smie--backward-token):
15854         Separate "|" from "&" or "*" going after it.  That can happen in block
15855         arguments.
15856         (ruby-smie--indent-to-stmt): New function, seeks the end of
15857         previous statement or beginning of buffer.
15858         (ruby-smie-rules): Use it.
15859         (ruby-smie-rules): Check if there's a ":" before a curly block
15860         opener candidate; if there is, it's a hash.
15862 2013-11-07  Stefan Monnier  <monnier@iro.umontreal.ca>
15864         * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Use macroexp-progn.
15865         (cl--block-wrapper): Fix last accidental change.
15867 2013-11-07  Michael Albinus  <michael.albinus@gmx.de>
15869         * net/tramp-sh.el (tramp-set-remote-path, tramp-get-ls-command):
15870         Instrument, in order to hunt failure on hydra.
15872 2013-11-05  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
15874         * emacs-lisp/cl-macs.el (cl-symbol-macrolet): Print warning for
15875         malformed bindings form (bug#15814).
15877 2013-11-07  Dmitry Gutov  <dgutov@yandex.ru>
15879         * progmodes/ruby-mode.el (ruby-smie-grammar): Lower priority of
15880         "." compared to " @ ".  This incidentally fixes some indentation
15881         examples with "do".
15882         (ruby-smie--implicit-semi-p): No implicit semi after "^", "and" or "or".
15883         (ruby-smie-grammar): New tokens: "and" and "or".
15884         (ruby-smie--args-separator-p): Fix the check for tokens at POS.
15885         Exclude "and" and "or".  Remove "do" in order to work around token
15886         priorities.
15887         (ruby-smie-rules): Add all infix tokens.  Handle the case of
15888         beginning-of-buffer.
15890 2013-11-06  Glenn Morris  <rgm@gnu.org>
15892         * Makefile.in (setwins_almost, setwins_for_subdirs):
15893         Avoid accidental matches.
15895 2013-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
15897         * menu-bar.el (popup-menu): Use key-binding.
15899 2013-11-06  Eli Zaretskii  <eliz@gnu.org>
15901         * menu-bar.el (popup-menu, menu-bar-open): When displaying TTY
15902         menus, support also the menus produced by minor modes.
15903         (Bug#15817)
15905 2013-11-06  Leo Liu  <sdl.web@gmail.com>
15907         * thingatpt.el (thing-at-point-looking-at): Add optional arg
15908         DISTANCE to bound the search.  All uses changed.  (Bug#15808)
15910 2013-11-06  Glenn Morris  <rgm@gnu.org>
15912         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs): Simplify.
15913         (setwins_almost, setwins_for_subdirs): Don't assume called from srcdir.
15914         (custom-deps, finder-data, autoloads, update-subdirs): No need to cd.
15916 2013-11-06  Stefan Monnier  <monnier@iro.umontreal.ca>
15918         * electric.el (electric-indent-just-newline): New command.
15919         (electric-indent-mode-map): New keymap.
15920         (electric-indent-mode, electric-pair-mode, electric-layout-mode):
15921         Re-add :group which weren't redundant.
15923         * electric.el (electric-indent-local-mode): New minor mode.
15924         (electric-indent-functions-without-reindent): New var.
15925         (electric-indent-post-self-insert-function): Use it.
15926         * emacs-lisp/gv.el (buffer-local-value): Add setter.
15928 2013-11-05  Eli Zaretskii  <eliz@gnu.org>
15930         * international/quail.el (quail-help): Be more explicit about the
15931         meaning of the labels shown on the keys.  (Bug#15800)
15933         * startup.el (normal-top-level): Load the subdirs.el files before
15934         setting the locale environment.  (Bug#15805)
15936 2013-11-05  Stefan Monnier  <monnier@iro.umontreal.ca>
15938         * vc/vc-rcs.el (vc-rcs-parse): Make `gather' get e, b, and @-holes
15939         via arguments so as to get the right ones (bug#15418).
15941         * net/rcirc.el (rcirc-record-activity): Don't abuse add-to-list.
15943 2013-11-05  Michael Albinus  <michael.albinus@gmx.de>
15945         Fix problems found while writing a test suite.
15947         * net/tramp-compat.el (tramp-compat-load): New defun.
15948         * net/tramp.el (tramp-handle-load): Use it.
15950         * net/tramp-sh.el (tramp-sh-handle-add-name-to-file): Handle the case
15951         "(numberp ok-if-already-exists)" correctly.
15953 2013-11-05  Xue Fuqiao  <xfq.free@gmail.com>
15955         * international/characters.el (glyphless-char-display-control):
15956         Add usage note.
15958 2013-11-05  Bozhidar Batsov  <bozhidar@batsov.com>
15960         * progmodes/python.el (python-mode):
15961         * progmodes/scheme.el (scheme-mode):
15962         * progmodes/prolog.el (prolog-mode):
15963         * progmodes/ruby-mode.el (ruby-mode):
15964         * emacs-lisp/lisp-mode.el (lisp-mode, lisp-interaction-mode)
15965         (emacs-lisp-mode): Remove incorrect and redundant text from docstring.
15967 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
15969         * rect.el (rectangle--highlight-for-redisplay):
15970         * emacs-lisp/smie.el (smie--next-indent-change):
15971         Use buffer-chars-modified-tick.
15973         * emacs-lisp/byte-run.el (defmacro, defun): Set their `indent' property.
15975         * electric.el (electric-indent-post-self-insert-function):
15976         Only delete trailing whitepsace if it is indeed trailing (bug#15767).
15978 2013-11-04  Helmut Eller  <eller.helmut@gmail.com>
15980         * emacs-lisp/cl-indent.el (with-compilation-unit): Add rule (bug#15782).
15982 2013-11-04  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
15984         * emacs-lisp/cconv.el (cconv-convert): Check form of let binding
15985         (bug#15786).
15987 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
15989         * emacs-lisp/helpers.el: Move from helpers.el.  Use lexical-binding.
15991         * progmodes/python.el: Fix up last change.
15992         (python-shell--save-temp-file): New function.
15993         (python-shell-send-string): Use it.  Remove `msg' arg.  Don't assume
15994         `string' comes from the current buffer.
15995         (python-shell-send-string-no-output): Remove `msg' arg.
15996         (python--use-fake-loc): New var.
15997         (python-shell-buffer-substring): Obey it.  Try to compensate for the
15998         extra coding line added by python-shell--save-temp-file.
15999         (python-shell-send-region): Use python-shell--save-temp-file and
16000         python-shell-send-file directly.  Add `nomain' argument.
16001         (python-shell-send-buffer): Use python-shell-send-region.
16002         (python-electric-pair-string-delimiter): New function.
16003         (python-mode): Use it.
16005 2013-11-04  Eli Zaretskii  <eliz@gnu.org>
16007         * startup.el (normal-top-level): Move setting eol-mnemonic-unix,
16008         eol-mnemonic-mac, eol-mnemonic-dos, and also setup of the locale
16009         environment and decoding all of the default-directory's to here
16010         from command-line.
16011         (command-line): Decode also argv[0].
16013         * loadup.el: Error out if default-directory is a multibyte string
16014         when we are dumping.
16016         * Makefile.in (emacs): Don't set LC_ALL=C.  (Bug#15260)
16018 2013-11-04  Teodor Zlatanov  <tzz@lifelogs.com>
16020         * emacs-lisp/package.el (package-menu-mode)
16021         (package-menu--print-info, package-menu--archive-predicate):
16022         Add Archive column to package list.
16024 2013-11-04  Michael Albinus  <michael.albinus@gmx.de>
16026         Fix problems found while writing a test suite.
16028         * net/tramp.el (tramp-file-name-regexp-unified): Simplify.
16029         (tramp-file-name-for-operation): Use `tramp-tramp-file-p'.
16030         (tramp-handle-substitute-in-file-name): Let-bind `process-environment'
16031         to nil when running original file name handler.  Otherwise,
16032         there are problems with constructs like "$$FOO".
16034         * net/tramp-sh.el (tramp-do-copy-or-rename-file): Use correct prefix
16035         for `localname'.
16037 2013-11-04  Bozhidar Batsov  <bozhidar@batsov.com>
16039         * progmodes/ruby-mode.el (ruby-mode): Clean up docstring.
16041         * subr.el (version<, version<=, version=):
16042         Update docstrings with information for snapshot versions.
16044         * helpers.el: New library for misc helper functions.
16045         (hash-table-keys): New function returning a list of hash keys.
16046         (hash-table-values): New function returning a list of hash values.
16048 2013-11-04  Dmitry Gutov  <dgutov@yandex.ru>
16050         * progmodes/ruby-mode.el (ruby-smie--forward-token)
16051         (ruby-smie--backward-token): Tokenize heredocs as semicolons.
16053 2013-11-04  Michal Nazarewicz  <mina86@mina86.com>
16055         * textmodes/fill.el (fill-single-char-nobreak-p): New function
16056         checking whether point is after a 1-letter word.
16058 2013-11-04  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
16060         * progmodes/cperl-mode.el (cperl-font-lock-fontify-region-function):
16061         Don't infloop when expanding region over `multiline' syntax-type that
16062         begins a line (bug#15778).
16064 2013-11-04  Stefan Monnier  <monnier@iro.umontreal.ca>
16066         * rect.el (rectangle-mark-mode): Rename from rectangle-mark.
16067         Make it into a proper minor mode.
16068         (rectangle--region): (Implicitly) rename to rectangle-mark-mode.
16069         (rectangle-mark-mode-map): New keymap.
16070         (rectangle--highlight-for-redisplay): Fix some corner cases (bug#15796).
16072 2013-11-04  Glenn Morris  <rgm@gnu.org>
16074         * startup.el (command-line-1): Allow `-L :...' to append to load-path.
16076 2013-11-03  Stefan Monnier  <monnier@iro.umontreal.ca>
16078         * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign): Remove.
16079         (ruby-smie-rules): Use smie-rule-parent instead.
16081         * emacs-lisp/smie.el (smie-rule-parent): Always call
16082         smie-indent-virtual rather than only for hanging tokens.
16083         (smie--next-indent-change): New helper command.
16085 2013-11-03  Glenn Morris  <rgm@gnu.org>
16087         * Makefile.in (abs_srcdir): Remove.
16088         (emacs): Unset EMACSLOADPATH.
16090 2013-11-02  Glenn Morris  <rgm@gnu.org>
16092         * Makefile.in (EMACS): Use a relative filename.
16093         (abs_top_builddir): Remove.
16094         (custom-deps, finder-data, autoloads): Use --chdir.
16096         * Makefile.in (abs_lisp): Remove, replace by abs_srcdir.
16098         Use relative filenames in TAGS files.
16099         * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
16100         (lisptagsfiles4, TAGS): Use relative file names.
16101         (TAGS-LISP): Remove.
16102         (maintainer-clean): No more TAGS-LISP file.
16104         * Makefile.in (lisptagsfiles1, lisptagsfiles2, lisptagsfiles3)
16105         (lisptagsfiles4): Use absolute filenames again.
16106         (TAGS, TAGS-LISP): Not everything needs to run in one line.
16107         Remove all *loaddefs files, not just the first.  Remove esh-groups.
16108         (maintainer-clean): Delete TAGS, TAGS-LISP.
16110 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
16112         * emacs-lisp/package.el (package-version-join):
16113         Recognize snapshot versions.
16115 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
16117         * subr.el (version-regexp-alist): Add support for snapshot versions.
16119 2013-11-02  Dmitry Gutov  <dgutov@yandex.ru>
16121         * progmodes/ruby-mode.el (ruby-smie--rule-parent-skip-assign):
16122         New function, replacement for `smie-rule-parent' for when we want to
16123         skip over our direct parent if it's an assignment token..
16124         (ruby-smie-rules): Use it.
16126 2013-11-02  Dmitry Gutov  <dgutov@yandex.ru>
16128         * progmodes/ruby-mode.el: Use `syntax-propertize-function'
16129         unconditionally.  Remove now unnecessary forward declarations.
16130         Remove XEmacs-specific setup.
16131         (ruby-here-doc-end-re, ruby-here-doc-beg-match)
16132         (ruby-font-lock-syntactic-keywords)
16133         (ruby-comment-beg-syntax, ruby-in-here-doc-p)
16134         (ruby-here-doc-find-end, ruby-here-doc-beg-syntax)
16135         (ruby-here-doc-end-syntax): Remove.
16136         (ruby-mode): Don't check whether `syntax-propertize-rules' is
16137         defined as function.
16139 2013-11-02  Bozhidar Batsov  <bozhidar@batsov.com>
16141         * progmodes/ruby-mode.el (ruby-mode-variables, ruby-mode): Use `setq-local'.
16143 2013-11-01  Bozhidar Batsov  <bozhidar@batsov.com>
16145         * progmodes/ruby-mode.el (ruby-mode-variables): Don't set syntax
16146         table and abbrev table, `define-derived-mode' does that for us
16147         anyway.
16149 2013-11-01  Glenn Morris  <rgm@gnu.org>
16151         * Makefile.in: Remove manual mh-e dependencies (writing .elc
16152         files is atomic for some time, so no parallel compilation issues).
16154 2013-11-01  Jan Djärv  <jan.h.d@swipnet.se>
16156         * faces.el (face-x-resources): Add :distant-foreground.
16157         (region): Use :distant-foreground for gtk and ns.
16159 2013-11-01  Tassilo Horn  <tsdh@gnu.org>
16161         Allow multiple bibliographies when BibLaTeX is used rather than
16162         BibTeX.
16163         * textmodes/reftex-parse.el (reftex-using-biblatex-p): New function.
16164         (reftex-locate-bibliography-files): Us it.
16166 2013-11-01  Claudio Bley  <claudio.bley@googlemail.com>
16168         * image.el (image-type-header-regexps): Fix the 'pbm' part to
16169         allow comments in pbm files.
16171         * term/w32-win.el (dynamic-library-alist): Support newer versions
16172         of libjpeg starting with v7: look only for the DLL from the
16173         version against which Emacs was built.
16174         Support versions of libpng beyond 1.4.x.
16175         Support libtiff v4.x.
16177 2013-11-01  Bozhidar Batsov  <bozhidar@batsov.com>
16179         * progmodes/ruby-mode.el (ruby-indent-tabs-mode)
16180         (ruby-indent-level, ruby-comment-column, ruby-deep-arglist):
16181         Add property :safe.
16182         (ruby-deep-arglist): Add property :type.
16184 2013-10-31  Glenn Morris  <rgm@gnu.org>
16186         * Makefile.in (custom-deps, finder-data): No need to setq the target
16187         variables, we are in the right directory and the defaults work fine.
16189 2013-10-30  Glenn Morris  <rgm@gnu.org>
16191         * Makefile.in (autoloads): Do not use abs_lisp.
16193         * emacs-lisp/autoload.el (autoload-generate-file-autoloads):
16194         `newline' does not respect `standard-output', so use `princ'.
16196 2013-10-30  Alp Aker  <alp.tekin.aker@gmail.com>
16198         Ensure unmarking in buffer menu clears 'S' marks.  (Bug#15761)
16199         * buff-menu.el (Buffer-menu--unmark): New function.
16200         (Buffer-menu-unmark, Buffer-menu-backup-unmark): Use it.
16202 2013-10-30  Glenn Morris  <rgm@gnu.org>
16204         * Makefile.in (AUTOGENEL): Add org/org-loaddefs.el.
16206         * emacs-lisp/package.el (lm-homepage): Declare.
16208         * eshell/em-ls.el (eshell-ls-directory, eshell-ls-symlink):
16209         Fix doc typos.
16211         * vc/pcvs.el (cvs-status-cvstrees): Autoload to silence compiler.
16213         * Makefile.in (finder-data, autoloads, update-subdirs)
16214         (compile-main, compile-clean, compile-always, bootstrap-clean):
16215         Check return value of cd.
16216         (compile-calc): Remove.
16218 2013-10-30  Stefan Monnier  <monnier@iro.umontreal.ca>
16220         * simple.el (copy-region-as-kill): Fix call to region-extract-function.
16222         * emacs-lisp/bytecomp.el (byte-defop-compiler): Add new `2-and' handler.
16223         (byte-compile-and-folded): New function.
16224         (=, <, >, <=, >=): Use it.
16226         * dos-w32.el (minibuffer-history-case-insensitive-variables)
16227         (path-separator, null-device, buffer-file-coding-system)
16228         (lpr-headers-switches): Check system-type before modifying them.
16229         (find-buffer-file-type-coding-system): Mark obsolete.
16230         (w32-find-file-not-found-set-buffer-file-coding-system): Rename from
16231         find-file-not-found-set-buffer-file-coding-system.
16232         (w32-untranslated-filesystem-list, w32-untranslated-canonical-name)
16233         (w32-add-untranslated-filesystem, w32-remove-untranslated-filesystem)
16234         (w32-direct-print-region-use-command-dot-com, w32-untranslated-file-p)
16235         (w32-direct-print-region-helper, w32-direct-print-region-function)
16236         (w32-direct-ps-print-region-function): Rename by adding a "w32-" prefix.
16237         * startup.el (normal-top-level-add-subdirs-to-load-path):
16238         * ps-print.el (ps-print-region-function):
16239         * lpr.el (print-region-function): Use new name.
16241         * subr.el (custom-declare-variable-early): Remove function.
16242         (custom-declare-variable-list): Remove var.
16243         (error, user-error): Remove `while' loop.
16244         (read-quoted-char-radix, read-quoted-char): Move to simple.el.
16245         (user-emacs-directory-warning, locate-user-emacs-file):
16246         Move to files.el.
16247         * simple.el (read-quoted-char-radix, read-quoted-char):
16248         * files.el (user-emacs-directory-warning, locate-user-emacs-file):
16249         Move from subr.el.
16250         * custom.el (custom-declare-variable-list): Don't process
16251         custom-declare-variable-list.
16253         * progmodes/python.el (python-shell-get-buffer): New function.
16254         (python-shell-get-process): Use it.
16255         (python-shell-send-string): Always use utf-8 and add a cookie to tell
16256         Python which encoding was used.  Don't split-string since we only care
16257         about the first line.  Return the temp-file, if applicable.
16258         (python-shell-send-region): Tell compile.el how to turn locations in
16259         the temp-file into locations in the source buffer.
16261 2013-10-29  Stefan Monnier  <monnier@iro.umontreal.ca>
16263         * subr.el (undefined): Add missing behavior from the C code for
16264         unbound keys.
16266         * rect.el: Use lexical-binding.  Add new rectangular region support.
16267         (rectangle-mark): New command.
16268         (rectangle--region): New var.
16269         (deactivate-mark-hook): Reset rectangle--region.
16270         (rectangle--extract-region, rectangle--insert-for-yank)
16271         (rectangle--highlight-for-redisplay)
16272         (rectangle--unhighlight-for-redisplay): New functions.
16273         (region-extract-function, redisplay-unhighlight-region-function)
16274         (redisplay-highlight-region-function): Use them to handle
16275         rectangular region.
16276         * simple.el (region-extract-function): New var.
16277         (delete-backward-char, delete-forward-char, deactivate-mark): Use it.
16278         (kill-new, kill-append): Remove obsolete `yank-handler' argument.
16279         (kill-region): Replace obsolete `yank-handler' arg with `region'.
16280         (copy-region-as-kill, kill-ring-save): Add `region' argument.
16281         (redisplay-unhighlight-region-function)
16282         (redisplay-highlight-region-function): New vars.
16283         (redisplay--update-region-highlight): New function.
16284         (pre-redisplay-function): Use it.
16285         (exchange-point-and-mark): Don't deactivate the mark before
16286         reactivate-it anyway.
16287         * comint.el (comint-kill-region): Remove yank-handler argument.
16288         * delsel.el (delete-backward-char, backward-delete-char-untabify)
16289         (delete-char): Remove property, since it's now part of their
16290         default behavior.
16291         (self-insert-iso): Remove property since this command doesn't exist.
16293         * emacs-lisp/package.el (package--download-one-archive)
16294         (describe-package-1): Don't query the user about final newline.
16296 2013-10-29  Daniel Colascione  <dancol@dancol.org>
16298         * net/tramp.el (tramp-methods): Document new functionality.
16299         * net/tramp-sh.el (tramp-compute-multi-hops): Punt to
16300         tramp-hostname-checker if method provides one instead of scanning
16301         argument list for "%h" to decide hostname acceptability.
16303 2013-10-28  Michael Albinus  <michael.albinus@gmx.de>
16305         * net/tramp-sh.el (tramp-sh-handle-copy-directory):
16306         * net/tramp-smb.el (tramp-smb-handle-copy-directory):
16307         Handle COPY-CONTENTS.  (Bug#15737)
16309 2013-10-28  Daiki Ueno  <ueno@gnu.org>
16311         * epa-file.el (epa-file-cache-passphrase-for-symmetric-encryption):
16312         Document that this option has no effect with GnuPG 2.0 (bug#15552).
16314 2013-10-27  Xue Fuqiao  <xfq.free@gmail.com>
16316         * image.el (defimage, image-load-path): Doc fixes.
16318 2013-10-27  Alan Mackenzie  <acm@muc.de>
16320         Indent statements in macros following "##" correctly.
16321         * progmodes/cc-engine.el (c-crosses-statement-barrier-p):
16322         Modify the "#" arm of a cond form to handle "#" and "##" operators.
16324 2013-10-27  Nathan Trapuzzano  <nbtrap@nbtrap.com>  (tiny change)
16326         * linum.el (linum-update-window): Fix boundary test (bug#13446).
16328 2013-10-27  Dmitry Gutov  <dgutov@yandex.ru>
16330         * progmodes/ruby-mode.el (ruby-smie--bosp): Anything that goes
16331         after `=' is probably a new expression.
16333 2013-10-27  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
16335         * man.el (man-imenu-title): New option.
16336         (Man-mode-map): Add menu.  (Bug#15722)
16337         (Man-mode): Add imenu to menu.
16339 2013-10-26  Dmitry Gutov  <dgutov@yandex.ru>
16341         * progmodes/ruby-mode.el (ruby-smie--args-separator-p): Be more
16342         specific in what the first arg can be: a non-keyword word,
16343         string/regexp/percent literal opener, opening paren, or unary
16344         operator followed directly by word.
16346 2013-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
16348         * progmodes/prolog.el: Remove old indent; use post-self-insert-hook.
16349         (prolog-align-comments-flag, prolog-indent-mline-comments-flag)
16350         (prolog-object-end-to-0-flag, prolog-electric-newline-flag)
16351         (prolog-electric-tab-flag, prolog-use-prolog-tokenizer-flag):
16352         Remove vars, they do not apply any more.
16353         (prolog-mode-abbrev-table): Remove redundant declaration.
16354         (prolog-upper-case-string, prolog-lower-case-string): Remove.
16355         (prolog-use-smie): Remove.
16356         (prolog-smie-rules): Add indentation rule for the if-then-else layout
16357         supported by prolog-electric-if-then-else-flag.
16358         (prolog-mode-variables, prolog-menu): Use setq-local.
16359         (prolog-mode-keybindings-edit): Don't rebind M-C-p and M-C-n.
16360         Remove binding to `Backspace' since this key doesn't exist anyway.
16361         Remove bindings for electric self-inserting keys.
16362         (prog-mode): Assume it's defined.
16363         (prolog-post-self-insert): New function.
16364         (prolog-mode): Use it.
16365         (prolog-indent-line, prolog-indent-level)
16366         (prolog-find-indent-of-matching-paren)
16367         (prolog-indentation-level-of-line, prolog-goto-comment-column)
16368         (prolog-paren-is-the-first-on-line-p, prolog-region-paren-balance)
16369         (prolog-goto-next-paren, prolog-in-string-or-comment)
16370         (prolog-tokenize, prolog-inside-mline-comment)
16371         (prolog-find-start-of-mline-comment): Remove functions.
16372         (prolog-find-unmatched-paren, prolog-clause-end)
16373         (prolog-guess-fill-prefix, prolog-get-predspec): Use syntax-ppss.
16374         (prolog-electric--if-then-else): Rename from
16375         prolog-insert-spaces-after-paren; use prolog-electric-if-then-else-flag.
16376         (prolog-tokenize-searchkey): Remove const.
16377         (prolog-clause-info): Use forward-sexp.
16378         (prolog-forward-list, prolog-backward-list, prolog-electric-delete)
16379         (prolog-electric-if-then-else): Remove commands.
16380         (prolog-electric--colon): Rename from prolog-electric-colon; adapt it
16381         for use in post-self-insert-hook.
16382         (prolog-electric--dash): Rename from prolog-electric-dash; adapt it
16383         for use in post-self-insert-hook.
16384         (prolog-electric--dot): Rename from prolog-electric-dot; adapt it
16385         for use in post-self-insert-hook.
16386         (prolog-electric--underscore): Rename from prolog-electric--underscore;
16387         adapt it for use in post-self-insert-hook.
16389 2013-10-25  Michael Albinus  <michael.albinus@gmx.de>
16391         * emacs-lisp/ert.el (ert-run-tests-interactively):
16392         Use `completing-read'.  (Bug#9756)
16394 2013-10-25  Eli Zaretskii  <eliz@gnu.org>
16396         * simple.el (line-move): Call line-move-1 instead of
16397         line-move-visual when the current window hscroll is zero, but
16398         temporary-goal-column indicates we will need to hscroll as result
16399         of the movement.  (Bug#15712)
16401 2013-10-25  Dmitry Gutov  <dgutov@yandex.ru>
16403         * progmodes/ruby-mode.el (ruby-mode-menu): Use proper
16404         capitalization.  Use :visible instead of :active.
16405         Fix `ruby-indent-exp' reference.  Add menu items for the generic
16406         commands that are used with SMIE.
16407         (ruby-do-end-to-brace): Insert space after `{'.
16409 2013-10-25  John Anthony  <john@jo.hnanthony.com>
16411         * progmodes/ruby-mode.el (ruby-mode-menu): Add a menu.  (Bug#15600)
16413         * progmodes/inf-lisp.el (inferior-lisp-menu): Add a menu.  (Bug#15599)
16415 2013-10-25  Glenn Morris  <rgm@gnu.org>
16417         * vc/vc.el (vc-print-log): Don't use a working revision unless
16418         one was explicitly specified.  (Bug#15322)
16420 2013-10-25  Stefan Monnier  <monnier@iro.umontreal.ca>
16422         * subr.el (add-to-list): Preserve return value in compiler-macro
16423         (bug#15692).
16425 2013-10-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
16427         * progmodes/octave.el (octave-lookfor): Handle empty lookfor
16428         result.  Ask user to retry using '-all' flag.  (Bug#15701)
16430 2013-10-24  Stefan Monnier  <monnier@iro.umontreal.ca>
16432         * emacs-lisp/smie.el: New smie-config system.
16433         (smie-config): New defcustom.
16434         (smie-edebug, smie-config-show-indent, smie-config-set-indent)
16435         (smie-config-guess, smie-config-save): New commands.
16436         (smie-config--mode-local, smie-config--buffer-local)
16437         (smie-config--trace, smie-config--modefuns): New vars.
16438         (smie-config--advice, smie-config--mode-hook)
16439         (smie-config--setter, smie-config-local, smie-config--get-trace)
16440         (smie-config--guess-value, smie-config--guess): New functions.
16441         (smie-indent-forward-token, smie-indent-backward-token): Don't copy
16442         text properties.  Treat "string fence" syntax like string syntax.
16444         * progmodes/sh-script.el (sh-use-smie): Change default.
16445         (sh-smie-sh-rules, sh-smie-rc-rules): Obey legacy sh-indent-* vars.
16446         (sh-var-value): Simplify by CSE.
16447         (sh-show-indent, sh-set-indent, sh-learn-line-indent)
16448         (sh-learn-buffer-indent): Redirect to their SMIE equivalent when SMIE
16449         is used.
16450         (sh-guess-basic-offset): Use cl-incf.
16451         (sh-guess-basic-offset): Use push+nreverse to avoid O(n^2).
16453 2013-10-24  Helmut Eller  <eller.helmut@gmail.com>
16455         * emacs-lisp/lisp-mode.el (lisp-cl-font-lock-keywords-2): Fix cut&paste
16456         (bug#15699).
16458 2013-10-24  Glenn Morris  <rgm@gnu.org>
16460         * Makefile.in (abs_top_srcdir): Remove.
16461         (update-subdirs): Use relative path to update-subdirs.
16463 2013-10-24  Eli Zaretskii  <eliz@gnu.org>
16465         * Makefile.in ($(MH_E_DIR)/mh-loaddefs.el)
16466         ($(TRAMP_DIR)/tramp-loaddefs.el, $(CAL_DIR)/cal-loaddefs.el)
16467         ($(CAL_DIR)/diary-loaddefs.el, $(CAL_DIR)/hol-loaddefs.el):
16468         Call unmsys--file-name before expand-file-name, not after it.
16470 2013-10-24  Michael Albinus  <michael.albinus@gmx.de>
16472         * emacs-lisp/ert.el (ert-deftest): Bind macro `skip-unless'.
16473         (ert-test-skipped): New error.
16474         (ert-skip, ert-stats-skipped): New defuns.
16475         (ert--skip-unless): New macro.
16476         (ert-test-skipped): New struct.
16477         (ert--run-test-debugger, ert-test-result-type-p)
16478         (ert-test-result-expected-p, ert--stats, ert-stats-completed)
16479         (ert--stats-set-test-and-result, ert-char-for-test-result)
16480         (ert-string-for-test-result, ert-run-tests-batch)
16481         (ert--results-update-ewoc-hf, ert-run-tests-interactively):
16482         Handle skipped tests.  (Bug#9803)
16484 2013-10-24  Glenn Morris  <rgm@gnu.org>
16486         * Makefile.in (check-declare): Remove unnecessary path in -l argument.
16488         * Makefile.in (abs_top_srcdir): New, set by configure.
16489         (update-subdirs): Correct build-aux location.
16491 2013-10-24  Dmitry Gutov  <dgutov@yandex.ru>
16493         * vc/vc.el (vc-print-root-log): Always set `default-directory'
16494         value, whether we could auto-deduce `backend', or not.
16496         * progmodes/ruby-mode.el (ruby-smie-rules): Fix the "curly block
16497         with parameters" example.  Simplify the "is it block or is it
16498         hash" check, but also make it more thorough.
16500 2013-10-23  Masashi Fujimoto  <masfj.dev@gmail.com>  (tiny change)
16502         * battery.el (battery-pmset): Handle OS X Mavericks.  (Bug#15694)
16504 2013-10-23  Stefan Monnier  <monnier@iro.umontreal.ca>
16506         * progmodes/ruby-mode.el (ruby-smie-rules): Only align with parent of
16507         { if it is hanging.
16509         * progmodes/ruby-mode.el (ruby-smie-rules): Don't return 0 for
16510         :before ";".
16512 2013-10-23  Jed Brown  <jed@59A2.org>  (tiny change)
16514         * progmodes/compile.el (compilation-directory-matcher)
16515         (compilation-page-delimiter):
16516         Support GNU Make-4.0 directory quoting.  (Bug#15678)
16518 2013-10-23  Leo Liu  <sdl.web@gmail.com>
16520         * ido.el (ido-tidy): Handle read-only text.
16522 2013-10-23  Glenn Morris  <rgm@gnu.org>
16524         * Makefile.in (abs_srcdir, abs_lisp): New, set by configure.
16525         (emacs, compile, compile-always):
16526         Quote entities that might contain whitespace.
16527         (custom-deps, finder-data, autoloads): Use abs_lisp.
16528         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
16529         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
16530         ($(CAL_DIR)/hol-loaddefs.el): Manually expand target file name.
16532 2013-10-23  Dmitry Gutov  <dgutov@yandex.ru>
16534         * progmodes/ruby-mode.el (ruby-smie--at-dot-call):
16535         Use `following-char'.
16537 2013-10-22  Stefan Monnier  <monnier@iro.umontreal.ca>
16539         * emacs-lisp/smie.el (smie-rule-parent): Fix opener-test.
16540         * progmodes/ruby-mode.el (ruby-smie-rules):
16541         Remove corresponding workaround.  Fix indentation rule of ";" so it
16542         also applies when ";" is the parent.
16544 2013-10-22  Xue Fuqiao  <xfq.free@gmail.com>
16546         * frame.el (display-screens, display-pixel-height)
16547         (display-pixel-width, display-mm-width, display-backing-store)
16548         (display-save-under, display-planes, display-color-cells)
16549         (display-visual-class, display-monitor-attributes-list):
16550         Mention the optional ‘display’ argument in doc strings.
16552 2013-10-22  Michael Gauland  <mikelygee@amuri.net>
16554         * progmodes/ebnf2ps.el (ebnf-prologue): Avoid PS error with some
16555         viewers such as evince when ebnf-production-name-p is nil.  (Bug#15625)
16557 2013-10-21  Dmitry Gutov  <dgutov@yandex.ru>
16559         * progmodes/ruby-mode.el (ruby-smie-grammar): Remove outdated
16560         TODO.  Add "." after " @ ".
16561         (ruby-smie--at-dot-call): New function.  Checks if point at method
16562         call with explicit target.
16563         (ruby-smie--forward-token, ruby-smie--backward-token): Prepend "."
16564         to the method name tokens when it precedes them.
16565         (ruby-smie--backward-id, ruby-smie--forward-id): Remove.
16566         (ruby-smie-rules): Add rule for indentation before and after "."
16567         token.
16569 2013-10-21  Stefan Monnier  <monnier@iro.umontreal.ca>
16571         * textmodes/remember.el (remember-diary-extract-entries):
16572         Avoid add-to-list.
16574         * progmodes/ruby-mode.el (ruby-smie-rules): Indent after + used as
16575         an instruction.
16577 2013-10-21  Dmitry Gutov  <dgutov@yandex.ru>
16579         * progmodes/ruby-mode.el (ruby-smie-grammar):
16580         Add (almost) all infix operators.
16581         (ruby-smie--implicit-semi-p): Add new operator chars.
16583         * progmodes/ruby-mode.el (ruby-mode-map): Add binding for
16584         `smie-down-list'.
16585         (ruby-smie--args-separator-p): Check that there's no newline
16586         between method call and its arguments.
16588 2013-10-20  Alan Mackenzie  <acm@muc.de>
16590         Allow comma separated lists after Java "implements".
16592         * progmodes/cc-engine.el (c-backward-over-enum-header):
16593         Parse commas.
16594         * progmodes/cc-fonts.el (c-basic-matchers-after): Remove comma
16595         from a "disallowed" list in enum fontification.
16597 2013-10-20  Johan Bockgård  <bojohan@gnu.org>
16599         * startup.el (default-frame-background-mode): Remove unused defvar.
16601         * progmodes/verilog-mode.el (verilog-mode): Don't set
16602         comment-indent-function globally.
16604 2013-10-20  Jan Djärv  <jan.h.d@swipnet.se>
16606         * menu-bar.el: Put help-menu in menu-bar-final-items unconditionally.
16607         Move Info menu item creation to ns-win.el.
16609         * term/ns-win.el (ns-initialize-window-system): Rename Help to Info
16610         in menu bar.
16612         * menu-bar.el: Move GNUstep specific menus...
16614         * term/ns-win.el (ns-initialize-window-system): ... to here.
16616 2013-10-19  Stefan Monnier  <monnier@iro.umontreal.ca>
16618         * simple.el (newline): Only run post-self-insert-hook when
16619         called interactively.
16621 2013-10-19  Johan Bockgård  <bojohan@gnu.org>
16623         * icomplete.el (icomplete-with-completion-tables): Add :version.
16625 2013-10-19  Alan Mackenzie  <acm@muc.de>
16627         Fix fontification bugs with constructors and const.
16629         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): (Just after
16630         CASE 2) Remove the check for the absence of a suffix construct
16631         after a function declaration with only types (no identifiers) in
16632         the parentheses.  Also, accept a function declaration with just a
16633         type inside the parentheses, if this type can be positively
16634         recognised as such, or if a prefix keyword like "explicit" nails
16635         down the construct as a declaration.
16637 2013-10-19  Eli Zaretskii  <eliz@gnu.org>
16639         * menu-bar.el (tty-menu-navigation-map): Bind mouse-N to perform
16640         TTY menu actions and down-mouse-N to tty-menu-ignore.  This solves
16641         the problem whereby selecting a menu item that leads to a
16642         minibuffer prompt moves the cursor out of the minibuffer window,
16643         making it hard to type at the prompt.  Suggested by Stefan Monnier
16644         <monnier@iro.umontreal.ca>.
16646 2013-10-19  Jan Djärv  <jan.h.d@swipnet.se>
16648         * menu-bar.el: Don't make Services menu.
16650 2013-10-19  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
16652         * ffap.el: Handle "/usr/include/c++/<version>" directories.
16653         (ffap-alist): Use ffap-c++-mode for c++-mode.
16654         (ffap-c++-path): New variable.
16655         (ffap-c++-mode): New function.
16657 2013-10-19  Joe Vornehm Jr.  <joe.vornehm@gmail.com>  (tiny change)
16659         * ido.el (dired-other-frame): Only list directories.  (Bug#15638)
16661 2013-10-18  Michael Albinus  <michael.albinus@gmx.de>
16663         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Fix an error
16664         introduced on 2013-09-08, which results in an infinite loop
16665         requesting a password.
16667 2013-10-18  Glenn Morris  <rgm@gnu.org>
16669         * progmodes/verilog-mode.el (verilog-case-fold): Add :version.
16671 2013-10-18  Wilson Snyder  <wsnyder@wsnyder.org>
16673         Sync with upstream verilog-mode revision 1a6ecec7.
16674         * progmodes/verilog-mode.el (verilog-mode-version): Update.
16675         (verilog-mode-release-date): Remove.
16676         (verilog-highlight-grouping-keywords, verilog-active-low-regexp)
16677         (verilog-auto-inst-param-value, verilog-auto-input-ignore-regexp)
16678         (verilog-auto-inout-ignore-regexp, verilog-auto-output-ignore-regexp)
16679         (verilog-auto-tieoff-ignore-regexp)
16680         (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp)
16681         (verilog-scan-cache-preserving, verilog-mode, verilog-at-struct-p)
16682         (verilog-signals-with, verilog-dir-cache-preserving)
16683         (verilog-auto-inst, verilog-auto-inout-param, verilog-auto):
16684         Doc fixes.
16685         (verilog-case-fold): New option, to control case folding in
16686         regexp searches, bug597.
16687         (verilog-menu): Add verilog-sk-uvm-component, minor tweaks.
16688         (verilog-string-match-fold, verilog-in-paren-count)
16689         (verilog-in-struct-nested-p, verilog-at-struct-mv-p)
16690         (verilog-at-close-struct-p): New functions.
16691         (verilog-beg-block-re-ordered, verilog-extended-case-re)
16692         (verilog-forward-sexp, verilog-set-auto-endcomments)
16693         (verilog-leap-to-case-head): Handle "unique0" case.
16694         (verilog-in-constraint-re): New constant.
16695         (verilog-keywords, verilog-type-font-keywords):
16696         Add some SystemVerilog 1800-2012 keywords.
16697         (verilog-label-be): Remove unimplemented argument, bug669.
16698         (verilog-batch-execute-func): When batch expanding clear
16699         create-lockfiles to prevent spurious user locks when a file ends
16700         up not changing.
16701         (verilog-calculate-indent, verilog-calc-1)
16702         (verilog-at-close-constraint-p, verilog-at-constraint-p)
16703         (verilog-do-indent): Fix indentation of nested constraints
16704         and structures.
16705         (verilog-sig-tieoff, verilog-typedef-name-p, verilog-auto-inst)
16706         (verilog-auto-inst-param): Use verilog-string-match-fold.
16707         (verilog-read-inst-module-matcher):
16708         Fix AUTOINST on gate primitives with #1.
16709         (verilog-read-decls): Fix double-declaring user-defined typed signals.
16710         Reads all user-defined typed variables.
16711         (verilog-read-defines): Fix reading definitions inside comments, bug647.
16712         (verilog-signals-matching-regexp)
16713         (verilog-signals-not-matching-regexp, verilog-auto):
16714         Respect verilog-case-fold.
16715         (verilog-diff-report): Fix line count.
16716         (verilog-auto-assign-modport): Remove unused local `modi'.
16717         (verilog-auto-inst-port): Support [][] in AUTO_TEMPLATE to
16718         better handle multidimensional arrays.
16719         Fix packed array ports misadding bit index in AUTOINST, bug637.
16720         (verilog-auto-output, verilog-auto-input): Fix AUTOINPUT and AUTOOUTPUT
16721         to not double-declare existing outputs and inputs, respectively.
16722         (verilog-template-map): Bind U to verilog-sk-uvm-component.
16723         (verilog-sk-uvm-object): Rename from verilog-sk-uvm-class.
16724         (verilog-sk-uvm-component): New skeleton.
16725         (verilog-submit-bug-report): Add verilog-case-fold,
16726         remove verilog-mode-release-date.
16728 2013-10-17  Barry O'Reilly  <gundaetiapo@gmail.com>
16730         * subr.el (sit-for): Call (input-pending-p t) so as to behave
16731         as before.
16733 2013-10-18  Reuben Thomas  <rrt@sc3d.org>
16735         * textmodes/remember.el (remember): Set buffer-offer-save in
16736         remember buffers (bug#13566).
16738 2013-10-18  Daniel Colascione  <dancol@dancol.org>
16740         When evaluating forms in ielm, direct standard output to ielm
16741         buffer.  Add new ielm-return-for-effect command.  Remove trailing
16742         whitespace throughout.
16744         * ielm.el (ielm-map): Bind M-RET to ielm-return-for-effect.
16745         (ielm-return-for-effect): New command.
16746         (ielm-send-input): Accept optional `for-effect' parameter.
16747         (ielm-eval-input): Accept optional `for-effect' parameter.
16748         Bind `standard-output' to stream we create using
16749         `ielm-standard-output-impl'.  Suppress printing result when
16750         `for-effect'.
16751         (ielm-standard-output-impl): New function.
16752         (inferior-emacs-lisp-mode): Explain new features in documentation.
16754 2013-10-17  Michael Albinus  <michael.albinus@gmx.de>
16756         Code cleanup.
16758         * net/tramp.el (tramp-debug-message): Do not check for connection
16759         buffer.
16760         (tramp-message): Use "vector" connection property.
16762         * net/tramp.el (tramp-rfn-eshadow-update-overlay)
16763         (tramp-equal-remote, tramp-eshell-directory-change)
16764         * net/tramp-adb.el (tramp-adb-handle-copy-file)
16765         (tramp-adb-handle-rename-file)
16766         * net/tramp-cmds.el (tramp-list-remote-buffers)
16767         (tramp-cleanup-connection, tramp-cleanup-this-connection)
16768         * net/tramp-compat.el (tramp-compat-process-running-p)
16769         * net/tramp-ftp.el (tramp-ftp-file-name-handler)
16770         * net/tramp-gvfs.el (tramp-gvfs-handle-copy-file)
16771         (tramp-gvfs-handle-rename-file)
16772         * net/tramp-sh.el (tramp-sh-handle-set-file-times)
16773         (tramp-set-file-uid-gid)
16774         * net/tramp-smb.el (tramp-smb-handle-copy-file)
16775         (tramp-smb-handle-rename-file): Use `tramp-tramp-file-p' instead
16776         of `file-remote-p'.
16778         * net/tramp.el (tramp-connectable-p, tramp-handle-file-remote-p)
16779         * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
16780         (tramp-gw-aux-proc-sentinel, tramp-gw-process-filter)
16781         (tramp-gw-open-network-stream): Suppress unrelated traces.
16783         * net/tramp-adb.el (tramp-adb-maybe-open-connection)
16784         * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
16785         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
16786         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Set "vector"
16787         connection property.
16789         * net/tramp-cache.el (top): Suppress traces when reading
16790         persistency file.
16792         * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
16793         Refactor common code.  Improve debug message.
16794         (tramp-maybe-open-connection)
16795         * net/tramp-smb.el (tramp-smb-call-winexe): Do not request
16796         connection buffer too early.
16798         * net/tramp-smb.el (tramp-smb-actions-get-acl): New defconst, renamed
16799         from `tramp-smb-actions-with-acl'.
16800         (tramp-smb-actions-set-acl): New defconst.
16801         (tramp-smb-handle-copy-directory)
16802         (tramp-smb-action-get-acl): New defun, renamed from
16803         `tramp-smb-action-with-acl'.
16804         (tramp-smb-action-set-acl): New defun.
16805         (tramp-smb-handle-set-file-acl): Rewrite.
16807 2013-10-17  Glenn Morris  <rgm@gnu.org>
16809         * indent.el (indent-rigidly): Fix 2013-10-08 change.  (Bug#15635)
16811 2013-10-17  Stefan Monnier  <monnier@iro.umontreal.ca>
16813         * skeleton.el (skeleton-newline): Remove.
16814         (skeleton-internal-1): Use (insert "\n") instead.
16816         * emacs-lisp/lisp.el (lisp-completion-at-point): Complete var names for
16817         let-bindings.
16819         * progmodes/sh-script.el (sh-find-prev-matching): Disable SMIE's
16820         forward-sexp-function while we redo its job (bug#15613).
16822 2013-10-17  Jay Belanger  <jay.p.belanger@gmail.com>
16824         * calc/calc-comb.el (math-prime-test): Don't assume large integers are
16825         represented by lists.
16827 2013-10-16  Glenn Morris  <rgm@gnu.org>
16829         * tmm.el (tmm--history): New dynamic variable.
16830         (tmm-prompt): Use tmm--history in place of `history'.  (Bug#15623)
16832 2013-10-16  Michael Albinus  <michael.albinus@gmx.de>
16834         * net/tramp-smb.el (tramp-smb-acl-program): New customer option.
16835         (tramp-smb-errors): Add error messages.
16836         (tramp-smb-actions-with-acl): New defconst.
16837         (tramp-smb-file-name-handler-alist) <set-file-acl>: Add handler.
16838         (tramp-smb-action-with-acl, tramp-smb-handle-set-file-acl): New defuns.
16839         (tramp-smb-handle-file-acl): Rewrite, using "smbcacls".
16840         (tramp-smb-handle-file-attributes): Simplify test for "stat" capability.
16841         (tramp-smb-get-stat-capability): Fix tests.
16843 2013-10-16  Dima Kogan  <dima@secretsauce.net>  (tiny change)
16845         * progmodes/subword.el (subword-capitalize): Fix Stefan's mess
16846         (bug#15580).
16848 2013-10-16  Glenn Morris  <rgm@gnu.org>
16850         * ansi-color.el (ansi-color-drop-regexp):
16851         Add 1J, 1K, 2K.  (Bug#15617)
16853         * files.el (hack-local-variables--warned-lexical): New.
16854         (hack-local-variables):
16855         Warn about misplaced lexical-binding.  (Bug#15616)
16857         * net/eww.el (eww-render): Always set eww-current-url,
16858         and update header line.  (Bug#15622)
16859         (eww-display-html): ... Rather than just doing it here.
16861 2013-10-15  Eli Zaretskii  <eliz@gnu.org>
16863         * menu-bar.el (tty-menu-navigation-map): Bind mouse wheels to TTY
16864         menu navigations commands.
16866 2013-10-14  Dima Kogan  <dima@secretsauce.net>  (tiny change)
16868         * progmodes/subword.el (subword-capitalize): Be careful when
16869         the search for [[:alpha:]] fails (bug#15580).
16871 2013-10-14  Eli Zaretskii  <eliz@gnu.org>
16873         * menu-bar.el (tty-menu-navigation-map): Bind shifted mouse clicks
16874         to commands that scroll the menu.
16876 2013-10-14  Dmitry Gutov  <dgutov@yandex.ru>
16878         * progmodes/ruby-mode.el (ruby-smie--args-separator-p):
16879         Handle methods ending with `?' and `!'.
16881 2013-10-14  Akinori MUSHA  <knu@iDaemons.org>
16883         * progmodes/ruby-mode.el (ruby-encoding-map): Add a mapping from
16884         `japanese-cp932' to `cp932' to fix the problem where saving a
16885         source file written in Shift_JIS twice would end up having
16886         `coding: japanese-cp932' which Ruby could not recognize.
16887         (ruby-mode-set-encoding): Add support for encodings mapped to nil
16888         in `ruby-encoding-map'.
16889         (ruby-encoding-map): Map `us-ascii' to nil by default, meaning it
16890         doesn't need to be explicitly declared in magic comment.
16891         (ruby-encoding-map): Add type declaration for better customize UI.
16893 2013-10-13  Glenn Morris  <rgm@gnu.org>
16895         * progmodes/sh-script.el (sh-mark-line, sh-learn-buffer-indent):
16896         Occur buffers are read-only.  http://bugs.debian.org/720775
16898         * emacs-lisp/authors.el (authors-fixed-entries):
16899         Comment out old alpha stuff.
16901 2013-10-13  Dmitry Gutov  <dgutov@yandex.ru>
16903         * progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
16904         to `after-save-hook' instead of `before-save-hook'.
16905         (ruby-mode-set-encoding): Use the value of coding system used to
16906         write the file.  Call `basic-save-buffer-1' after modifying the
16907         buffer.
16909 2013-10-13  Alan Mackenzie  <acm@muc.de>
16911         Fix indentation/fontification of Java enum with
16912         "implements"/generic.
16914         * progmodes/cc-engine.el (c-backward-over-enum-header):
16915         Extracted from the three other places and enhanced to handle generics.
16916         (c-inside-bracelist-p): Uses new function above.
16917         * progmodes/cc-fonts.el (c-font-lock-declarations): Uses new
16918         function above.
16919         (c-font-lock-enum-tail): Uses new function above.
16921 2013-10-13  Kenichi Handa  <handa@gnu.org>
16923         * international/mule-cmds.el (select-safe-coding-system): Remove a
16924         superfluous condition in chekcing whether a coding system is safe
16925         or not.
16927 2013-10-13  Oleh Krehel  <ohwoeowho@gmail.com>
16929         * replace.el (how-many): Fix rstart and !rend case.  (Bug#15589)
16931 2013-10-13  Andreas Politz  <politza@hochschule-trier.de>
16933         * progmodes/sql.el (sql-add-product): Fix paren typo.  (Bug#15435)
16935 2013-10-13  Glenn Morris  <rgm@gnu.org>
16937         * menu-bar.el (menu-bar-update-buffers):
16938         Unify Buffers menu prompt string.  (Bug#15576)
16940         * face-remap.el (text-scale-adjust): Doc fix.  (Bug#15434)
16942         * emacs-lisp/authors.el (authors-aliases, authors-ignored-files):
16943         Add some entries.
16944         (authors-fixed-entries): Use accented form of name.
16946 2013-10-12  Stefan Monnier  <monnier@iro.umontreal.ca>
16948         * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for paren-free
16949         method calls (bug#15594).
16950         (ruby-smie--args-separator-p): New function.
16951         (ruby-smie--forward-token, ruby-smie--backward-token): Use it to
16952         recognize paren-free method calls.
16954         * isearch.el (isearch-pre-command-hook): Don't build in knowledge about
16955         internals of universal-argument.
16957 2013-10-11  Eli Zaretskii  <eliz@gnu.org>
16959         * menu-bar.el (tty-menu-navigation-map): Remap F10 to tty-menu-exit.
16960         Bind all menu-bar sequences to tty-menu-exit -- this pops down a
16961         dropped menu on second mouse click on the menu bar.
16963 2013-10-11  Stefan Monnier  <monnier@iro.umontreal.ca>
16965         * progmodes/sh-script.el: Provide simpl(e|istic) completion.
16966         (explicit-shell-file-name): Declare.
16967         (sh--vars-before-point, sh--cmd-completion-table): New functions.
16968         (sh-completion-at-point-function): New function.
16969         (sh-mode): Use it.
16970         (sh-smie--keyword-p): Remove unused argument.
16971         (sh-smie-sh-backward-token, sh-smie-rc-backward-token): Remove unused
16972         vars.
16973         (sh-set-shell): Always setup SMIE, even if we use the
16974         old indentation code.
16976 2013-10-11  Dmitry Gutov  <dgutov@yandex.ru>
16978         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Split the
16979         cases of ? and =.
16980         (ruby-smie-rules): Simplify the "do" rule.  The cases when the
16981         predicate would return nil are almost non-existent.
16982         (ruby-smie--redundant-do-p): Include "until" and "for" statements.
16984         * emacs-lisp/smie.el (smie--matching-block-data): Invalidate the
16985         cache also after commands that modify the buffer but don't move
16986         point.
16988 2013-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
16990         * env.el (substitute-env-in-file-name): New function.
16991         (substitute-env-vars): Extend the meaning of the optional arg.
16993 2013-10-10  Eli Zaretskii  <eliz@gnu.org>
16995         * term/w32-win.el (dynamic-library-alist): Define separate lists
16996         of GIF DLLs for versions before and after 5.0.0 of giflib.
16997         (Bug#15531)
16999 2013-10-10  João Távora  <joaotavora@gmail.com>
17001         * vc/vc.el (vc-diff-build-argument-list-internal): If the file is
17002         not locked, use last revision and current source as
17003         defaults.  (Bug#15569)
17005 2013-10-10  Masatake YAMATO  <yamato@redhat.com>
17007         * menu-bar.el (menu-bar-open): Don't use popup-menu if
17008         menu-bar is hidden.
17010 2013-10-10  Martin Rudalics  <rudalics@gmx.at>
17012         * window.el (pop-to-buffer-same-window): Fix doc-string.
17013         (Bug#15492)
17015 2013-10-10  Stefan Monnier  <monnier@iro.umontreal.ca>
17017         * menu-bar.el (tty-menu-navigation-map): Reduce redundancy.
17019 2013-10-10  Andrei Chițu  <andrei.chitu1@gmail.com>  (tiny change)
17021         * calendar/icalendar.el (icalendar-import-file):
17022         Fix interactive spec.  (Bug#15482)
17024 2013-10-10  Glenn Morris  <rgm@gnu.org>
17026         * desktop.el (desktop-save): Default to saving in .emacs.d,
17027         since PWD is no longer in desktop-path by default.  (Bug#15319)
17029         * menu-bar.el (menu-bar-options-menu): Remove text-mode auto-fill,
17030         now that text mode has a menu with the same entry.
17031         (menu-bar-text-mode-auto-fill): Remove now unused func.
17032         * textmodes/text-mode.el (text-mode-map):
17033         Use auto-fill help text from menu-bar.el.
17035 2013-10-10  John Anthony  <john@jo.hnanthony.com>
17037         * textmodes/text-mode.el (text-mode-map): Add a menu.  (Bug#15562)
17039 2013-10-09  Juri Linkov  <juri@jurta.org>
17041         * isearch.el (isearch-pre-command-hook): Use this-single-command-keys
17042         instead of this-command-keys.  Add universal-argument-more and
17043         universal-argument-minus to the list of prefix commands.  (Bug#15568)
17045 2013-10-09  Glenn Morris  <rgm@gnu.org>
17047         * vc/vc-svn.el (vc-svn-create-repo):
17048         Expand paths in file://... url.  (Bug#15446)
17050         * emacs-lisp/authors.el (authors-aliases, authors-fixed-case):
17051         Add some entries.
17052         (authors): Remove unused local variables.
17054 2013-10-09  Stefan Monnier  <monnier@iro.umontreal.ca>
17056         * profiler.el: Create a more coherent calltree from partial backtraces.
17057         (profiler-format): Hide the tail with `invisible' so that C-s can still
17058         find the hidden elements.
17059         (profiler-calltree-depth): Don't recurse so enthusiastically.
17060         (profiler-function-equal): New hash-table-test.
17061         (profiler-calltree-build-unified): New function.
17062         (profiler-calltree-build): Use it.
17063         (profiler-report-make-name-part): Indent the calltree less.
17064         (profiler-report-mode): Add visibility specs for profiler-format.
17065         (profiler-report-expand-entry, profiler-report-toggle-entry):
17066         Expand the whole subtree when provided with a prefix arg.
17068 2013-10-09  Dmitry Gutov  <dgutov@yandex.ru>
17070         * progmodes/ruby-mode.el (ruby-smie-rules): Indent after hanging
17071         iuwu-mod token.
17072         (ruby-smie--implicit-semi-p): Prohibit implicit semicolon after
17073         hanging iuwu-mod token.
17074         (ruby-smie--forward-token): Do not include a dot after a token in
17075         that token.
17076         (ruby-smie--backward-token): Likewise.
17078 2013-10-08  Juri Linkov  <juri@jurta.org>
17080         * isearch.el (isearch-help-map, isearch-mode-map): Don't bind [t]
17081         to isearch-other-control-char.
17082         (isearch-mode): Add isearch-pre-command-hook to pre-command-hook
17083         and isearch-post-command-hook to post-command-hook.
17084         (isearch-done): Remove isearch-pre-command-hook from pre-command-hook
17085         and isearch-post-command-hook from post-command-hook.
17086         (isearch-unread-key-sequence)
17087         (isearch-reread-key-sequence-naturally)
17088         (isearch-lookup-scroll-key, isearch-other-control-char)
17089         (isearch-other-meta-char): Remove functions.
17090         (isearch-pre-command-hook, isearch-post-command-hook):
17091         New functions based on isearch-other-meta-char rewritten
17092         relying on the new behavior of overriding-terminal-local-map
17093         that does not replace the local keymaps any more.  (Bug#15200)
17095 2013-10-08  Eli Zaretskii  <eliz@gnu.org>
17097         Support menus on text-mode terminals.
17098         * tmm.el (tmm-menubar): Adapt doc string to TTY menus
17099         functionality.
17101         * tooltip.el (tooltip-mode): Don't error out on TTYs.
17103         * menu-bar.el (popup-menu, popup-menu-normalize-position):
17104         Move here from mouse.el.
17105         (popup-menu): Support menu-bar navigation on TTYs using C-f/C-b
17106         and arrow keys.
17107         (tty-menu-navigation-map): New map for TTY menu navigation.
17109         * loadup.el ("tooltip"): Load even if x-show-tip is not available.
17111         * frame.el (display-mouse-p): Report text-mode mouse as available
17112         on w32.
17113         (display-popup-menus-p): Report availability if mouse is
17114         available; don't condition on window-system.
17116         * faces.el (tty-menu-enabled-face, tty-menu-disabled-face)
17117         (tty-menu-selected-face): New faces.
17119 2013-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
17121         * emacs-lisp/lisp-mode.el: Font-lock cl-lib constructs.
17122         (lisp-el-font-lock-keywords, lisp-el-font-lock-keywords-1)
17123         (lisp-el-font-lock-keywords-2, lisp-cl-font-lock-keywords)
17124         (lisp-cl-font-lock-keywords-1, lisp-cl-font-lock-keywords-2):
17125         New constants.
17126         (lisp-mode-variables): New `elisp' argument.
17127         (emacs-lisp-mode): Use it.
17128         * font-lock.el (lisp-font-lock-keywords, lisp-font-lock-keywords-1)
17129         (lisp-font-lock-keywords-2): Move to lisp-mode.el.
17131         * indent.el: Use lexical-binding.
17132         (indent-region): Add progress reporter.
17133         (tab-stop-list): Make it implicitly extend to infinity by repeating the
17134         last step.
17135         (indent--next-tab-stop): New function to implement this behavior.
17136         (tab-to-tab-stop, move-to-tab-stop): Use it.
17138 2013-10-08  Teemu Likonen  <tlikonen@iki.fi>
17140         * indent.el (indent-rigidly--current-indentation): New function.
17141         (indent-rigidly-map): New var.
17142         (indent-rigidly): Use it to provide interactive mode (bug#8196).
17144 2013-10-08  Bastien Guerry  <bzg@gnu.org>
17146         * register.el (insert-register): Fix 2013-10-07 change.
17148 2013-10-08  Stefan Monnier  <monnier@iro.umontreal.ca>
17150         * progmodes/perl-mode.el: Use lexical-binding.
17151         Remove redundant :group args.
17152         (perl-nochange): Change default to be closer to other major modes's
17153         standard behavior.
17154         (perl-indent-line): Don't consider text on current line as a
17155         valid beginning of function from which to indent.
17157         * emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
17158         with more than one argument (bug#15538).
17160         * mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
17162         * vc/pcvs.el: Use lexical-binding.
17163         (cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
17164         environment of `eval'.
17165         (cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
17166         than a list of expressions.  Adjust callers.
17167         * vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
17169 2013-10-07  Dmitry Gutov  <dgutov@yandex.ru>
17171         * progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
17172         case of the dot in a chained method call being on the following line.
17174 2013-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
17176         * electric.el (electric-indent-inhibit): New var.
17177         (electric-indent-post-self-insert-function): Use it.
17178         * progmodes/python.el (python-mode): Set it.
17180         * progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
17181         open braces.
17183         * emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
17185         * textmodes/css-mode.el (css-smie-rules): Fix indentation (bug#15467).
17186         (css-mode): Use electric-indent-chars.
17188         * nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
17189         (font-lock-beg, font-lock-end): Move before first use.
17190         (nxml-mode): Use syntax-propertize-function.
17191         (nxml-after-change, nxml-after-change1): Adjust accordingly.
17192         (nxml-extend-after-change-region): Remove.
17193         * nxml/xmltok.el: Use lexical-binding.
17194         (xmltok-save): Use `declare'.
17195         (xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
17196         * nxml/nxml-util.el: Use lexical-binding.
17197         (nxml-with-degradation-on-error, nxml-with-invisible-motion):
17198         Use `declare'.
17199         * nxml/nxml-ns.el: Use lexical-binding.
17200         (nxml-ns-save): Use `declare'.
17201         (nxml-ns-prefixes-for): Avoid add-to-list.
17202         * nxml/rng-match.el: Use lexical-binding.
17203         (rng--ipattern): Use cl-defstruct.
17204         (rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
17205         (rng-cons-group-after, rng-subst-group-after)
17206         (rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
17207         Use closures instead of `(lambda...).
17209 2013-10-07  Michael Albinus  <michael.albinus@gmx.de>
17211         * net/tramp.el (tramp-handle-insert-file-contents): Improve handling
17212         of BEG and END.
17214         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
17215         Use `tramp-handle-insert-file-contents'.
17216         (tramp-gvfs-handle-insert-file-contents): Remove function.
17218         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
17219         Use `save-restriction' in order to keep markers.
17221         * net/trampver.el: Update release number.
17223 2013-10-07  Stefan Monnier  <monnier@iro.umontreal.ca>
17225         * progmodes/compile.el (compilation-parse-errors):
17226         Use compilation--put-prop.
17227         (compilation--ensure-parse): Check compilation-multiline.
17229         * emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
17231         * emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using
17232         lexical-binding.
17234         * emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
17236         * progmodes/ruby-mode.el: Fix recently added tests.
17237         (ruby-smie-grammar): Add - and +.
17238         (ruby-smie--redundant-do-p, ruby-smie--forward-id)
17239         (ruby-smie--backward-id): New functions.
17240         (ruby-smie--forward-token, ruby-smie--backward-token): Use them.
17241         (ruby-smie-rules): Handle hanging do.  Get rid of hack, not needed
17242         any more.
17244 2013-10-07  Leo Liu  <sdl.web@gmail.com>
17246         * register.el (register-preview-delay)
17247         (register-preview-functions): New variables.
17248         (register-read-with-preview, register-preview)
17249         (register-describe-oneline): New functions.
17250         (point-to-register, window-configuration-to-register)
17251         (frame-configuration-to-register, jump-to-register)
17252         (number-to-register, view-register, insert-register)
17253         (copy-to-register, append-to-register, prepend-to-register)
17254         (copy-rectangle-to-register): Use register-read-with-preview to
17255         read register.  (Bug#15525)
17257 2013-10-06  Dato Simó  <dato@net.com.org.es>  (tiny change)
17259         * net/network-stream.el (network-stream-open-starttls): Don't add
17260         --insecure if it's already present, because that gnutls-cli
17261         rejects getting that parameter twice.
17263 2013-10-06  Dmitry Gutov  <dgutov@yandex.ru>
17265         * progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
17266         keyword, too.
17268 2013-10-05  Dmitry Gutov  <dgutov@yandex.ru>
17270         * newcomment.el (comment-use-global-state): Change default value
17271         to t, mark obsolete (Bug#15251).
17272         (comment-beginning): In addition to `comment-to-syntax', check the
17273         value of `comment-use-global-state'.
17275 2013-10-05  Stefan Monnier  <monnier@iro.umontreal.ca>
17277         * progmodes/ruby-mode.el (ruby-use-smie): Change default.
17278         (ruby-comment-column): Follow the global default, by default.
17279         (ruby-smie-grammar): Add assignment syntax.
17280         (ruby-smie--implicit-semi-p): No implicit semi-colon after an
17281         open-paren, a comma, or a \.
17282         (ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
17283         and line continuations.
17284         (ruby-smie-rules): Adjust handling of open-paren, now that it's never
17285         followed by implicit semi-colons.  Add rule for string concatenation
17286         and for indentation at BOB.
17287         (ruby-forward-sexp, ruby-backward-sexp): Adjust for when SMIE is in use.
17289         * emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
17290         calling next-sexp, since next-token may have skipped chars which
17291         next-sexp doesn't know should be skipped!
17293 2013-10-05  Leo Liu  <sdl.web@gmail.com>
17295         * progmodes/octave.el (octave-send-region):
17296         Call compilation-forget-errors.
17298 2013-10-04  Xue Fuqiao  <xfq.free@gmail.com>
17300         * vc/vc-svn.el (vc-svn-find-admin-dir):
17301         * vc/vc-rcs.el (vc-rcs-find-admin-dir):
17302         * vc/vc-mtn.el (vc-mtn-find-admin-dir):
17303         * vc/vc-cvs.el (vc-cvs-find-admin-dir):
17304         * vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
17306 2013-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
17308         * textmodes/css-mode.el (css-smie-rules): Toplevel's a list (bug#15467).
17310 2013-10-04  Stefan Monnier  <monnier@iro.umontreal.ca>
17312         * subr.el (read-passwd): Hide chars even when called within a context
17313         where after-change-functions is disabled (bug#15501).
17314         (set-temporary-overlay-map): Don't remove oneself from pre-command-hook
17315         until we removed ourself from overriding-terminal-local-map.
17317 2013-10-04  Leo Liu  <sdl.web@gmail.com>
17319         * progmodes/octave.el (inferior-octave-mode):
17320         Call compilation-forget-errors.
17322 2013-10-04  Xue Fuqiao  <xfq.free@gmail.com>
17324         * emacs-lisp/syntax.el (syntax-ppss): Doc fix.
17326 2013-10-04  Michael Albinus  <michael.albinus@gmx.de>
17328         * net/secrets.el (secrets-create-collection): Add optional
17329         argument ALIAS.  Use proper Label keyword.  Append ALIAS as
17330         dbus-call-method argument.  (Bug#15516)
17332 2013-10-04  Leo Liu  <sdl.web@gmail.com>
17334         * progmodes/octave.el (inferior-octave-error-regexp-alist)
17335         (inferior-octave-compilation-font-lock-keywords): New variables.
17336         (compilation-error-regexp-alist)
17337         (compilation-mode-font-lock-keywords): Defvar to pacify compiler.
17338         (inferior-octave-mode): Use compilation-shell-minor-mode.
17340 2013-10-04  Jorgen Schaefer  <forcer@forcix.cx>
17342         * minibuffer.el (completion--replace): Be careful that `end' might be
17343         a marker.
17345 2013-10-03  Daiki Ueno  <ueno@gnu.org>
17347         Add support for package signature checking.
17348         * emacs-lisp/package.el (url-http-file-exists-p)
17349         (epg-make-context, epg-context-set-home-directory)
17350         (epg-verify-string, epg-context-result-for)
17351         (epg-signature-status, epg-signature-to-string)
17352         (epg-check-configuration, epg-configuration)
17353         (epg-import-keys-from-file): Declare.
17354         (package-check-signature): New user option.
17355         (package-unsigned-archives): New user option.
17356         (package-desc): Add `signed' field.
17357         (package-load-descriptor): Set `signed' field if .signed file exists.
17358         (package--archive-file-exists-p): New function.
17359         (package--check-signature): New function.
17360         (package-install-from-archive): Check package signature.
17361         (package--download-one-archive): Check archive signature.
17362         (package-delete): Remove .signed file.
17363         (package-import-keyring): New command.
17364         (package-refresh-contents): Import default keyring.
17365         (package-desc-status): Add "unsigned" status.
17366         (describe-package-1, package-menu--print-info)
17367         (package-menu-mark-delete, package-menu--find-upgrades)
17368         (package-menu--status-predicate): Support "unsigned" status.
17370 2013-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
17372         * emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
17373         the new compilation scheme using the new byte-codes.
17375         * emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
17376         (byte-pophandler): New byte codes.
17377         (byte-goto-ops): Adjust accordingly.
17378         (byte-compile--use-old-handlers): New var.
17379         (byte-compile-catch): Use new byte codes depending on
17380         byte-compile--use-old-handlers.
17381         (byte-compile-condition-case--old): Rename from
17382         byte-compile-condition-case.
17383         (byte-compile-condition-case--new): New function.
17384         (byte-compile-condition-case): New function that dispatches depending
17385         on byte-compile--use-old-handlers.
17386         (byte-compile-unwind-protect): Pass a function to byte-unwind-protect
17387         when we can.
17389         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
17390         Optimize under `condition-case' and `catch' if
17391         byte-compile--use-old-handlers is nil.
17392         (disassemble-offset): Handle new bytecodes.
17394 2013-10-03  Stefan Monnier  <monnier@iro.umontreal.ca>
17396         * subr.el (error): Use `declare'.
17397         (decode-char, encode-char): Use advertised-calling-convention instead
17398         of the docstring to discourage use of the `restriction' arg.
17400 2013-10-03  Daiki Ueno  <ueno@gnu.org>
17402         * epg.el (epg-verify-file): Add a comment saying that it does not
17403         notify verification error as a return value nor a signal.
17404         (epg-verify-string): Ditto.
17406 2013-10-02  Kevin Rodgers  <kevin.d.rodgers@gmail.com>
17408         * progmodes/compile.el (compilation-start): Try globbing the arg to
17409         `cd' (bug#15417).
17411 2013-10-02  Michael Albinus  <michael.albinus@gmx.de>
17413         Sync with Tramp 2.2.8.
17415         * net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
17416         * net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
17417         * net/trampver.el: Update release number.
17419 2013-10-01  Jan Djärv  <jan.h.d@swipnet.se>
17421         * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
17422         and default-process-coding-system for darwin only.
17424 2013-10-01  Stefan Monnier  <monnier@iro.umontreal.ca>
17426         * emacs-lisp/package.el (package-desc): Simplify (bug#15495).
17428 2013-10-01  Mitchel Humpherys  <mitch.special@gmail.com>  (tiny change)
17430         * vc/vc-git.el (vc-git-grep): Disable pager.
17432 2013-10-01  Dmitry Gutov  <dgutov@yandex.ru>
17434         * emacs-lisp/package.el (package-buffer-info, describe-package-1):
17435         Use :url instead of :homepage, as per
17436         http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
17438         * newcomment.el (comment-beginning): When `comment-use-syntax' is
17439         non-nil, use `syntax-ppss' (Bug#15251).
17441 2013-09-30  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
17443         * progmodes/octave.el (inferior-octave-startup-file):
17444         Prefer ~/.emacs.d/init_octave.m.
17446 2013-09-29  Dmitry Gutov  <dgutov@yandex.ru>
17448         * emacs-lisp/package.el (package-desc-from-define):
17449         Accept additional arguments as plist, convert them to an alist and store
17450         them in the `extras' slot.
17451         (package-generate-description-file): Convert extras alist back to
17452         plist and append to the `define-package' form arguments.
17453         (package--alist-to-plist): New function.
17454         (package--ac-desc): Add `extras' slot.
17455         (package--add-to-archive-contents): Check if the archive-contents
17456         vector is long enough, and if it is, pass its `extras' slot value
17457         to `package-desc-create'.
17458         (package-buffer-info): Call `lm-homepage', pass the returned value
17459         to `package-desc-from-define'.
17460         (describe-package-1): Render the homepage button (Bug#13291).
17462         * emacs-lisp/package-x.el (package-upload-buffer-internal):
17463         Pass `extras' slot from `package-desc' to `package-make-ac-desc'.
17465 2013-09-29  Jan Djärv  <jan.h.d@swipnet.se>
17467         * term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
17468         and default-process-coding-system to utf-8-unix (Bug#15402).
17470 2013-09-29  Xue Fuqiao  <xfq.free@gmail.com>
17472         * subr.el (looking-back): Do not recommend using looking-back.
17474 2013-09-28  Alan Mackenzie  <acm@muc.de>
17476         Fix indentation/fontification of Java enum with "implements".
17478         * progmodes/cc-langs.el (c-postfix-decl-spec-key): New variable, a
17479         regexp which matches "implements", etc., in Java.
17480         * progmodes/cc-engine.el (c-inside-bracelist-p): Check for extra
17481         specifier clauses coming after "enum".
17482         * progmodes/cc-fonts.el (c-font-lock-declarations)
17483         (c-font-lock-enum-tail): Check for extra specifier clauses coming
17484         after "enum".
17486 2013-09-28  Jan Djärv  <jan.h.d@swipnet.se>
17488         * faces.el (region): Change ns_selection_color to
17489         ns_selection_fg_color, add ns_selection_bg_color.
17491 2013-09-28  Leo Liu  <sdl.web@gmail.com>
17493         * progmodes/octave.el (inferior-octave-completion-table)
17494         (inferior-octave-completion-at-point): Minor tweaks.
17496         * textmodes/ispell.el (ispell-lookup-words): Rename from
17497         lookup-words.  (Bug#15460)
17498         (lookup-words): Obsolete.
17499         (ispell-complete-word, ispell-command-loop): All uses changed.
17501 2013-09-28  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
17503         * progmodes/octave.el (octave-mode-map): Bind octave-send-buffer.
17504         (octave-mode-menu): Add octave-send-buffer.
17505         (octave-send-buffer): New function.
17507 2013-09-28  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
17509         * progmodes/octave.el (octave-mode-map): Add key binding for
17510         octave-lookfor.
17511         (octave-mode-menu): Add octave-lookfor.
17512         (inferior-octave-mode-map, octave-help-mode-map): Bind C-ha to
17513         octave-lookfor.
17514         (octave-lookfor): New function.
17516 2013-09-28  Stefan Monnier  <monnier@iro.umontreal.ca>
17518         * emacs-lisp/cl-macs.el (cl--loop-destr-temps): Remove.
17519         (cl--loop-iterator-function): Rename from cl--loop-map-form and change
17520         its convention.
17521         (cl--loop-set-iterator-function): New function.
17522         (cl-loop): Adjust accordingly, so as not to use cl-subst.
17523         (cl--parse-loop-clause): Adjust all uses of cl--loop-map-form.
17524         Bind `it' with `let' instead of substituting it with `cl-subst'.
17525         (cl--unused-var-p): New function.
17526         (cl--loop-let): Don't use the cl--loop-destr-temps hack any more.
17527         Eliminate some unused variable warnings (bug#15326).
17529 2013-09-27  Tassilo Horn  <tsdh@gnu.org>
17531         * doc-view.el (doc-view-scale-reset): Rename from
17532         `doc-view-reset-zoom-level'.
17533         (doc-view-scale-adjust): New command.
17534         (doc-view-mode-map): Remap `text-scale-adjust' bindings to
17535         `doc-view-scale-adjust'.
17537 2013-09-26  Tassilo Horn  <tsdh@gnu.org>
17539         * doc-view.el (doc-view-reset-zoom-level): New command.
17540         (doc-view-mode-map): Remap text-scale-adjust bindings to doc-view
17541         zoom commands (bug#15466).
17543 2013-09-26  Kenichi Handa  <handa@gnu.org>
17545         * international/quail.el (quail-help): Make it not a command.
17547 2013-09-26  Leo Liu  <sdl.web@gmail.com>
17549         * minibuffer.el (completion-all-sorted-completions): Make args
17550         optional as they are.
17552 2013-09-25  Daniel Colascione  <dancol@dancol.org>
17554         * emacs-lisp/cl-macs.el (cl-type-spec): Tell edebug what type
17555         specs are and that they're not evaluated.
17557 2013-09-24  Sam Steingold  <sds@gnu.org>
17559         * midnight.el (clean-buffer-list-kill-regexps)
17560         (clean-buffer-list-kill-buffer-names): Update for the new Man
17561         buffer naming which includes the object name.
17563 2013-09-23  Stefan Monnier  <monnier@iro.umontreal.ca>
17565         * eshell/esh-cmd.el (eshell--sep-terms): New var.
17566         (eshell-parse-command, eshell-parse-pipeline): Use it since
17567         eshell-separate-commands requires a dynamic scoped var.
17568         Reported by Jan Moringen <jmoringe@techfak.uni-bielefeld.de>.
17570 2013-09-23  Leo Liu  <sdl.web@gmail.com>
17572         * autoinsert.el (auto-insert-alist): Make the value of
17573         lexical-binding match its file setting.
17575 2013-09-23  Juanma Barranquero  <lekktu@gmail.com>
17577         * vc/vc-sccs.el (vc-sccs-search-project-dir): Mark unused argument.
17579         * autoarg.el (autoarg-kp-digit-argument):
17580         * electric.el (Electric-command-loop):
17581         * kmacro.el (kmacro-step-edit-insert):
17582         Do not set universal-argument-num-events.
17584 2013-09-22  Leo Liu  <sdl.web@gmail.com>
17586         * files.el (interpreter-mode-alist): Add octave.
17588 2013-09-21  Alan Mackenzie  <acm@muc.de>
17590         C++: fontify identifier in declaration following "public:" correctly.
17591         * progmodes/cc-langs.el (c-decl-start-colon-kwd-re): New lang var
17592         to match "public", etc.
17593         (c-decl-prefix-re): Add ":" into the C++ value.
17594         * progmodes/cc-engine.el (c-find-decl-prefix-search): Refactor a
17595         bit.  Add a check for a ":" preceded by "public", etc.
17597 2013-09-21  Eli Zaretskii  <eliz@gnu.org>
17599         * files.el (auto-mode-alist): Support OBJFILE-gdb.gdb script files
17600         recognized by GDB 7.5 and later.
17602 2013-09-21  Xue Fuqiao  <xfq.free@gmail.com>
17604         * vc/vc-dir.el (vc-dir-mode-map): Add keybinding for vc-log-incoming.
17606 2013-09-20  Stefan Monnier  <monnier@iro.umontreal.ca>
17608         * subr.el (internal--call-interactively): New const.
17609         (called-interactively-p): Use it (bug#3984).
17611 2013-09-20  Xue Fuqiao  <xfq.free@gmail.com>
17613         * vc/pcvs.el (cvs-mode-ignore):
17614         * vc/vc-cvs.el (vc-cvs-ignore, vc-cvs-append-to-ignore):
17615         Rename cvs-append-to-ignore to vc-cvs-append-to-ignore.
17617 2013-09-19  Stefan Monnier  <monnier@iro.umontreal.ca>
17619         * eshell/em-ls.el: Use advice.  Remove redundant :group keywords.
17620         (eshell-ls-orig-insert-directory): Remove.
17621         (eshell-ls-unload-hook): Not a defcustom any more.  Use advice-remove.
17622         (eshell-ls-use-in-dired): Use advice-add/remove.
17623         (eshell-ls--insert-directory): Rename from eshell-ls-insert-directory.
17624         Add `orig-fun' arg for use in :around advice.
17625         Make it check (redundantly) eshell-ls-use-in-dired.
17627 2013-09-19  Glenn Morris  <rgm@gnu.org>
17629         * emacs-lisp/cl-macs.el (cl-defsubst): Remove unused local `pbody'.
17631         * simple.el (x-selection-owner-p, x-selection-exists-p): Declare.
17633         * emacs-lisp/eieio.el (class-parent): Undo previous change.
17635 2013-09-19  Michael Albinus  <michael.albinus@gmx.de>
17637         * net/tramp-sh.el (tramp-get-remote-id): Do not raise an error.
17638         (tramp-get-remote-uid-with-id, tramp-get-remote-gid-with-id)
17639         (tramp-get-remote-python): New defuns.
17640         (tramp-get-remote-uid-with-perl)
17641         (tramp-get-remote-gid-with-perl): New defuns.  Perl code
17642         contributed by yary <not.com@gmail.com> (tiny change).
17643         (tramp-get-remote-uid-with-python)
17644         (tramp-get-remote-gid-with-python): New defuns.  Python code
17645         contributed by Andrey Tykhonov <atykhonov@gmail.com> (tiny change).
17646         (tramp-get-remote-uid, tramp-get-remote-gid): Use new defuns.
17648 2013-09-19  Glenn Morris  <rgm@gnu.org>
17650         * emacs-lisp/eieio.el (class-parent): Don't use defalias with macros.
17652         * eshell/em-unix.el (eshell-remove-entries):
17653         Rename argument to avoid name-clash with global `top-level'.
17655         * eshell/esh-proc.el (eshell-kill-process-function):
17656         Remove eshell-reset-after-proc from eshell-kill-hook if present.
17657         (eshell-reset-after-proc): Remove unused arg `proc'.
17659         * eshell/esh-util.el (eshell-read-hosts-file): Use `filename' arg.
17660         (directory-files-and-attributes): Mark unused arg.
17662         * eshell/em-unix.el (eshell-remove-entries):
17663         Remove unused arg `path'.  Update callers.
17665         * eshell/em-hist.el (eshell-hist-parse-arguments):
17666         Remove unused arg `silent'.  Update callers.
17668         * eshell/em-ls.el (eshell-ls-use-in-dired): Use `symbol' arg.
17669         Fix (f)boundp mix-up.
17671         * eshell/em-smart.el (eshell-smart-scroll-window)
17672         (eshell-disable-after-change):
17673         * eshell/em-term.el (eshell-term-sentinel): Mark unused arg.
17675 2013-09-18  Alan Mackenzie  <acm@muc.de>
17677         Fix fontification of type when followed by "const".
17678         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Don't exclude
17679         "known" types from fontification.
17681 2013-09-18  Glenn Morris  <rgm@gnu.org>
17683         * emacs-lisp/chart.el (x-display-color-cells): Declare.
17684         (chart-face-list): Drop Emacsen without display-color-p.
17686         * net/eww.el (libxml-parse-html-region): Declare.
17687         (eww-display-html): Explicit error if no libxml2 support.
17689         * doc-view.el (doc-view-mode): Silence --without-x compilation.
17691         * image.el (image-type-from-buffer, image-multi-frame-p):
17692         Remove --without-x warning/error.
17694         * mouse.el (mouse-yank-primary):
17695         * term.el (term-mouse-paste):
17696         Reorder to silence --without-x compilation.
17698         * mpc.el (doc-view-mode): Silence --without-x compilation.
17700         * mail/rmailmm.el (rmail-mime-set-bulk-data):
17701         Silence --without-x compilation.
17703         * progmodes/gud.el (gud-find-file, gud-mode):
17704         Silence --without-x compilation.
17705         (tooltip-mode): Declare.
17707         * wdired.el (dired-backup-overwrite): Remove declaration.
17708         (wdired-mode-map): Add doc string.
17710         * custom.el (x-get-resource): Declare.
17712         * eshell/em-glob.el (ange-cache):
17713         * eshell/em-unix.el (ange-cache): Declare.
17715         * faces.el (x-display-list, x-open-connection, x-get-resource):
17716         Declare.
17718         * follow.el (scroll-bar-toolkit-scroll, scroll-bar-drag)
17719         (scroll-bar-scroll-up, scroll-bar-scroll-down, mwheel-scroll):
17720         Declare.
17722         * frame.el (x-display-grayscale-p, x-display-name): Declare.
17724         * net/gnutls.el (gnutls-log-level): Declare.
17726         * net/shr.el (image-size, image-animate): Declare.
17728         * simple.el (font-info): Declare.
17730         * subr.el (x-popup-dialog): Declare.
17732         * term/common-win.el (x-select-enable-primary)
17733         (x-last-selected-text-primary, x-last-selected-text-clipboard):
17734         Declare.
17736         * term/ns-win.el (x-handle-args): Declare.
17738         * term/x-win.el (x-select-enable-clipboard): Declare.
17740         * term/w32-win.el (create-default-fontset): Declare.
17742         * w32-common-fns.el (x-server-version, x-select-enable-clipboard):
17743         Declare.
17745         * window.el (x-display-pixel-height, tool-bar-lines-needed): Declare.
17746         (fit-frame-to-buffer): Explicit error if --without-x.
17747         (mouse-autoselect-window-select): Silence compiler.
17749         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape): Declare.
17751         * eshell/em-cmpl.el (eshell-complete-parse-arguments):
17752         * eshell/em-hist.el (eshell/history, eshell-isearch-backward):
17753         * eshell/em-pred.el (eshell-parse-modifiers, eshell-pred-file-time):
17754         * eshell/esh-util.el (eshell-sublist):
17755         Remove unused local variables.
17757         * eshell/esh-io.el (x-select-enable-clipboard): Declare.
17759         * textmodes/two-column.el: Make 2C-split work for --without-x.
17760         (scroll-bar-columns): Autoload.
17761         (top-level): Require fringe when compiling.
17763 2013-09-18  Leo Liu  <sdl.web@gmail.com>
17765         * subr.el (add-hook): Robustify to handle closure as well.
17767 2013-09-17  Glenn Morris  <rgm@gnu.org>
17769         * simple.el (messages-buffer-mode-map): Unbind "g".
17771 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17773         * help-mode.el (help-mode-finish): Use derived-mode-p.
17774         Remove obsolete highlighting.
17776         * play/life.el (life-mode): Use define-derived-mode.  Derive from
17777         special-mode.
17778         (life): Let-bind inhibit-read-only.
17779         (life-setup): Avoid `setq'.  Use `life-mode'.
17781         * emacs-lisp/package.el (package-generate-autoloads): Remove `require'
17782         which should not be needed any more.
17783         (package-menu-refresh, package-menu-describe-package): Use user-error.
17785         * eshell/esh-cmd.el (eshell-post-rewrite-command-function): New var.
17786         (eshell-post-rewrite-command-hook): Make obsolete.
17787         (eshell-parse-command): Simplify.
17788         (eshell-structure-basic-command): Remove unused arg `vocal-test'.
17789         (eshell--cmd): Declare.
17790         (eshell-parse-pipeline): Remove unused var `final-p'.
17791         Pass a dynvar to eshell-post-rewrite-command-hook.
17792         Implement the new eshell-post-rewrite-command-function.
17793         (eshell-invoke-directly): Remove unused arg `input'.
17794         * eshell/esh-io.el (eshell-io-initialize):
17795         Use eshell-post-rewrite-command-function (bug#15399).
17796         (eshell--apply-redirections): Rename from eshell-apply-redirections;
17797         adjust to new calling convention.
17798         (eshell-create-handles): Rename args to avoid clashing with dynvar
17799         `standard-output'.
17801 2013-09-17  Glenn Morris  <rgm@gnu.org>
17803         * simple.el (messages-buffer-mode): New major mode.
17804         (messages-buffer): New function.
17805         * startup.el (normal-top-level): Switch mode of *Messages* buffer.
17806         * emacs-lisp/ert.el (ert--force-message-log-buffer-truncation)
17807         (ert-run-test): Use `messages-buffer' function.
17808         (ert--force-message-log-buffer-truncation): Ignore read-only.
17809         * help.el (view-echo-area-messages): Use `messages-buffer' function.
17810         * mail/emacsbug.el (report-emacs-bug): Use `messages-buffer' function.
17812 2013-09-17  Stefan Monnier  <monnier@iro.umontreal.ca>
17814         * subr.el (eval-after-load): Preserve evaluation order (bug#15389).
17816         * abbrev.el (abbrev--check-chars): Fix thinko (bug#15360).
17818 2013-09-16  Stefan Monnier  <monnier@iro.umontreal.ca>
17820         * icomplete.el (icomplete-in-buffer): New var.
17821         (icomplete-pre-command-hook, icomplete-post-command-hook): Remove those
17822         vars and replace them with functions.
17823         (icomplete-minibuffer-setup): Adjust accordingly.
17824         (icomplete--completion-table, icomplete--completion-predicate)
17825         (icomplete--field-string, icomplete--field-beg, icomplete--field-end):
17826         New functions.
17827         (icomplete-forward-completions, icomplete-backward-completions)
17828         (icomplete-simple-completing-p, icomplete-exhibit)
17829         (icomplete-completions): Use them.
17830         (icomplete--in-region-buffer): New var.
17831         (icomplete--in-region-setup): New function.
17832         (icomplete-mode): Use it.
17834         * eshell/esh-opt.el: Fix last change to set lexical-vars properly
17835         (bug#15379).
17836         (eshell--do-opts): Rename from eshell-do-opt, remove arg `body-fun',
17837         return args and options.
17838         (eshell-eval-using-options): Use the new return value of
17839         eshell--do-opts to set the options's vars in their scope.
17840         (eshell--set-option): Rename from eshell-set-option.
17841         Add arg `opt-vals'.
17842         (eshell--process-option): Rename from eshell-process-option.
17843         Add arg `opt-vals'.
17844         (eshell--process-args): Use an `opt-vals' alist to store the options's
17845         values during their processing and return them additionally to the
17846         remaining args.
17848 2013-09-15  Dmitry Gutov  <dgutov@yandex.ru>
17850         * progmodes/ruby-mode.el (ruby-operator-re): Consider line
17851         continuation character an operator, as far as indentation is
17852         concerned (Bug#15369).
17854 2013-09-15  Martin Rudalics  <rudalics@gmx.at>
17856         * window.el (window--state-put-2): Don't process buffer state
17857         when buffer doesn't exist any more (Bug#15382).
17859 2013-09-15  Glenn Morris  <rgm@gnu.org>
17861         * eshell/em-unix.el (eshell/rm):
17862         Make -f ignore missing files.  (Bug#15373)
17864         * eshell/esh-cmd.el (eshell--local-vars): New variable.  (Bug#15372)
17865         (eshell-rewrite-for-command): Add for loop vars to eshell--local-vars.
17866         * eshell/esh-var.el (eshell-get-variable): Respect eshell--local-vars.
17868 2013-09-14  Glenn Morris  <rgm@gnu.org>
17870         * eshell/esh-var.el (eshell-variable-aliases-list): Fix doc typo.
17872 2013-09-13  Glenn Morris  <rgm@gnu.org>
17874         * dired-x.el (dired-guess-shell-alist-user): Doc fix.
17875         (dired-guess-default): Make `file' available in the env.  (Bug#15363)
17877 2013-09-13  Dmitry Antipov  <dmantipov@yandex.ru>
17879         * frame.el (x-focus-frame): Mark as declared in frame.c.
17881 2013-09-13  Stefan Monnier  <monnier@iro.umontreal.ca>
17883         * ls-lisp.el: Use advice-add.
17884         (original-insert-directory): Remove.
17885         (ls-lisp--insert-directory): Rename from insert-directory; add
17886         `orig-fun' argument.
17887         (insert-directory): Advise.
17889 2013-09-13  Eli Zaretskii  <eliz@gnu.org>
17891         * term.el (term-emulate-terminal): Decode the command string
17892         before passing it to term-command-hook.  (Bug#15337)
17894 2013-09-13  Glenn Morris  <rgm@gnu.org>
17896         * eshell/esh-util.el (ange-cache): Move declaration earlier.
17898         * eshell/esh-ext.el (eshell-search-path): Declare.
17900         * eshell/em-prompt.el (eshell/pwd): Autoload it.
17901         Otherwise an error occurs if eshell-dirs module not loaded.
17903         * progmodes/gdb-mi.el (gud-cont, gud-step): Declare.
17905 2013-09-13  Michael Albinus  <michael.albinus@gmx.de>
17907         * net/tramp.el (tramp-check-proper-method-and-host): Rename it from
17908         `tramp-check-proper-host'.  Check for a valid method name.
17910         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
17911         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
17912         * net/tramp-sh.el (tramp-maybe-open-connection):
17913         * net/tramp-smb.el (tramp-smb-maybe-open-connection): Call it.
17915         * net/tramp-cache.el (tramp-cache-print): Don't print text properties
17916         also for hash values.
17918 2013-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
17920         * term/ns-win.el (parameters): Don't declare as dynamic.
17921         (before-make-frame-hook): Don't add ineffective function.
17923         * eshell/*.el: Use lexical-binding (bug#15231).
17925 2013-09-12  Kenichi Handa  <handa@gnu.org>
17927         * composite.el (compose-gstring-for-graphic): Handle enclosing mark.
17929 2013-09-12  Glenn Morris  <rgm@gnu.org>
17931         * vc/vc-svn.el (vc-svn-dir-status-files, vc-svn-dir-extra-headers)
17932         (vc-svn-ignore, vc-svn-retrieve-tag): Mark unused arguments.
17934         * subr.el (do-after-load-evaluation): Also give compiler warnings
17935         when obsolete files are used (except by obsolete files).
17937         * vc/vc-svn.el (vc-svn-parse-status): If there are multiple files
17938         in the status output, assume `filename' is the first.  (Bug#15322)
17940         * vc/vc.el (vc-deduce-fileset): Doc fix.
17942         * calc/calc-help.el (Info-goto-node):
17943         * progmodes/cperl-mode.el (Info-find-node):
17944         * vc/ediff.el (Info-goto-node): Update declarations.
17946         * vc/vc-dispatcher.el (vc-dir-refresh): Declare.
17948         * vc/vc-bzr.el (vc-compilation-mode): Declare.
17949         (vc-bzr-pull): Require vc-dispatcher.
17950         * vc/vc-git.el (vc-compilation-mode): Declare.
17951         (vc-git-pull): Require vc-dispatcher.
17953         * progmodes/ruby-mode.el (ruby-syntax-propertize-function): Declare.
17955         * progmodes/octave.el (help-button-action): Declare.
17957         * shell.el (shell-directory-tracker): Output error as a message
17958         rather than just returning it as a string.
17959         (shell-process-pushd): Remove useless use of message.
17961         * dframe.el (dframe-timer-fn):
17962         * files.el (dir-locals-read-from-file):
17963         * mpc.el (mpc--status-timer-run, mpc--status-idle-timer-run)
17964         (mpc-format):
17965         * reveal.el (reveal-post-command):
17966         * saveplace.el (load-save-place-alist-from-file):
17967         * shell.el (shell-resync-dirs):
17968         * w32-common-fns.el (x-get-selection-value):
17969         * emacs-lisp/copyright.el (copyright-find-copyright):
17970         * emacs-lisp/eldoc.el (eldoc-print-current-symbol-info):
17971         * emulation/tpu-edt.el (tpu-copy-keyfile):
17972         * play/bubbles.el (bubbles--mark-neighbourhood):
17973         * progmodes/executable.el
17974         (executable-make-buffer-file-executable-if-script-p):
17975         * term/pc-win.el (x-get-selection-value): Use with-demoted-errors.
17977 2013-09-12  Stefan Monnier  <monnier@iro.umontreal.ca>
17979         Cleanup Eshell to rely less on dynamic scoping.
17980         * eshell/esh-opt.el (eshell-eval-using-options): Don't bind usage-msg,
17981         last-value, and ext-command here.  Bind `args' closer to `body'.
17982         (temp-args, last-value, usage-msg, ext-command, args): Don't defvar.
17983         (eshell--args): Declare new dynamic var.
17984         (eshell-do-opt): Add argument `args'.  Bind our own usage-msg,
17985         last-value, and ext-command.  Pass `args' to `body'.
17986         (eshell-process-args): Bind eshell--args.
17987         (eshell-set-option): Use eshell--args.
17988         * eshell/eshell.el (eshell): Use derived-mode-p.
17989         * eshell/esh-var.el (eshell-parse-variable): Use backquote.
17990         (eshell-parse-variable-ref): Remove unused vars `end' and `err'.
17991         (eshell-glob-function): Declare.
17992         * eshell/esh-util.el: Require cl-lib.
17993         (eshell-read-hosts-file): Avoid add-to-list.
17994         * eshell/esh-cmd.el (eshell-parse-lisp-argument): Remove unused var
17995         `err'.
17996         * eshell/em-unix.el (compilation-scroll-output, locate-history-list):
17997         Declare.
17998         (eshell/diff): Remove unused var `err'.
17999         * eshell/em-rebind.el (eshell-delete-backward-char): Remove unused arg
18000         `killflag'.
18001         * eshell/em-pred.el (eshell-parse-modifiers): Remove unused var `err'.
18002         * eshell/em-ls.el (eshell-ls-highlight-alist): Move defvars before
18003         first use.
18004         * eshell/em-glob.el (eshell-glob-matches, message-shown):
18005         Move declaration before first use.
18006         * eshell/em-alias.el (eshell-maybe-replace-by-alias): Use backquotes.
18007         * autorevert.el (auto-revert-notify-handler): Use `cl-dolist' since we
18008         rely on cl-return.
18010 2013-09-12  Glenn Morris  <rgm@gnu.org>
18012         * term/ns-win.el (global-map): Remove binding for ispell-next,
18013         deleted 1999-05-29.  (Bug#15357)
18015 2013-09-11  Glenn Morris  <rgm@gnu.org>
18017         * echistory.el (electric-command-history): Remove call to deleted func.
18019         * play/landmark.el (landmark-mode): Fix typos.
18021         * vc/vc-cvs.el (cvs-append-to-ignore): Fix arg spec.
18022         Check cvs-sort-ignore-file is bound.
18024         * savehist.el: No need for cl when compiling on Emacs.
18026 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
18028         * eshell/esh-mode.el (eshell-mode-syntax-table): Fix up initialization
18029         (bug#15338).
18030         (eshell-self-insert-command, eshell-send-invisible):
18031         Remove unused argument.
18032         (eshell-handle-control-codes): Remove unused var `orig'.
18033         Avoid delete-backward-char.
18035         * files.el (set-auto-mode): Simplify a bit further.
18037 2013-09-11  Glenn Morris  <rgm@gnu.org>
18039         * files.el (interpreter-mode-alist): Remove \\` \\' parts.
18040         (set-auto-mode): Don't regexp-quote elements.
18041         * progmodes/python.el (interpreter-mode-alist): Remove \\` \\'.
18042         * progmodes/cc-mode.el (interpreter-mode-alist):
18043         * progmodes/ruby-mode.el (interpreter-mode-alist):
18044         Revert previous change.
18046 2013-09-11  Stefan Monnier  <monnier@iro.umontreal.ca>
18048         * play/snake.el (snake-mode):
18049         * play/mpuz.el (mpuz-mode):
18050         * play/landmark.el (lm-mode):
18051         * play/blackbox.el (blackbox-mode):
18052         * play/5x5.el (5x5-mode):
18053         * obsolete/options.el (Edit-options-mode):
18054         * net/quickurl.el (quickurl-list-mode):
18055         * net/newst-treeview.el (newsticker-treeview-mode):
18056         * mail/rmailsum.el (rmail-summary-mode):
18057         * mail/mspools.el (mspools-mode):
18058         * locate.el (locate-mode):
18059         * ibuffer.el (ibuffer-mode):
18060         * emulation/ws-mode.el (wordstar-mode):
18061         * emacs-lisp/debug.el (debugger-mode):
18062         * array.el (array-mode):
18063         * net/eudc.el (eudc-mode): Use define-derived-mode.
18064         * net/mairix.el (mairix-searches-mode-font-lock-keywords):
18065         Move initialization into declaration.
18066         (mairix-searches-mode): Use define-derived-mode.
18067         * net/eudc-hotlist.el (eudc-hotlist-mode): Use define-derived-mode.
18068         (eudc-edit-hotlist): Use dolist.
18069         * man.el (Man-mode-syntax-table): Rename from man-mode-syntax-table.
18070         (Man-mode): Use define-derived-mode.
18071         * info.el (Info-edit-mode-map): Rename from Info-edit-map.
18072         (Info-edit-mode): Use define-derived-mode.
18073         (Info-cease-edit): Use Info-mode.
18074         * eshell/esh-mode.el (eshell-mode-syntax-table): Move initialization
18075         into declaration.
18076         (eshell-mode): Use define-derived-mode.
18077         * chistory.el (command-history-mode-map): Rename from
18078         command-history-map.
18079         (command-history-mode): Use define-derived-mode.
18080         (Command-history-setup): Remove function.
18081         * calc/calc.el (calc-trail-mode-map): New var.
18082         (calc-trail-mode): Use define-derived-mode.
18083         (calc-trail-buffer): Set calc-main-buffer manually.
18084         * bookmark.el (bookmark-insert-annotation): New function.
18085         (bookmark-edit-annotation): Use it.
18086         (bookmark-edit-annotation-mode): Make it a proper major mode.
18087         (bookmark-send-edited-annotation): Use derived-mode-p.
18088         * arc-mode.el (archive-mode): Move kill-all-local-variables a tiny bit
18089         closer to its ideal place.  Use \' to match EOS.
18091         * profiler.el (profiler-calltree-find): Use function-equal.
18093 2013-09-10  Glenn Morris  <rgm@gnu.org>
18095         * files.el (interpreter-mode-alist): Convert to regexps.
18096         (set-auto-mode): Adapt for this.  (Bug#15306)
18097         * progmodes/cperl-mode.el (cperl-clobber-mode-lists):
18098         Comment out unused variable.
18099         * progmodes/cc-mode.el (interpreter-mode-alist):
18100         * progmodes/python.el (interpreter-mode-alist):
18101         * progmodes/ruby-mode.el (interpreter-mode-alist): Convert to regexps.
18102         * progmodes/sh-script.el (sh-set-shell):
18103         No longer use interpreter-mode-alist to get list of shells.
18105         * progmodes/cc-mode.el (awk-mode): Remove duplicate autoload.
18107 2013-09-10  Stefan Monnier  <monnier@iro.umontreal.ca>
18109         * simple.el: Use set-temporary-overlay-map for universal-argument.
18110         (universal-argument-map): Don't use default-bindings (bug#15317).
18111         Bind switch-frame explicitly.  Replace universal-argument-minus with
18112         a conditional binding.
18113         (universal-argument-num-events, saved-overriding-map): Remove.
18114         (restore-overriding-map): Remove.
18115         (universal-argument--mode): Rename from save&set-overriding-map,
18116         and rewrite.
18117         (universal-argument, universal-argument-more, negative-argument)
18118         (digit-argument): Adjust accordingly.
18119         (universal-argument-minus): Remove.
18120         (universal-argument-other-key): Remove.
18122         * subr.el (with-demoted-errors): Add `format' argument.
18124 2013-09-10  Michael Albinus  <michael.albinus@gmx.de>
18126         * net/tramp.el (tramp-cleanup): Remove.  Functionality added to
18127         `tramp-cleanup-connection'.
18129         * net/tramp-cmds.el (tramp-cleanup-connection): Add optional
18130         parameters KEEP-DEBUG and KEEP-PASSWORD.
18132         * net/tramp.el (tramp-file-name-handler):
18133         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
18134         * net/tramp-sh.el (tramp-open-connection-setup-interactive-shell)
18135         (tramp-maybe-open-connection):
18136         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
18137         Use `tramp-cleanup-connection'.
18139         * net/tramp-sh.el (tramp-maybe-open-connection):
18140         Catch 'uname-changed inside the progress reporter.
18142 2013-09-10  Glenn Morris  <rgm@gnu.org>
18144         * simple.el (read-minibuffer): Unbreak it.  (Bug#15318)
18146         * dired-x.el (dired-mark-sexp): Unbreak for systems where ls
18147         returns "alternate access method" in mode (eg "-rw-r--r--.").
18149 2013-09-08  Glenn Morris  <rgm@gnu.org>
18151         * saveplace.el (load-save-place-alist-from-file):
18152         Demote errors.  (Bug#15305)
18154 2013-09-08  Michael Albinus  <michael.albinus@gmx.de>
18156         Improve compatibility with older Emacsen, and XEmacs.
18158         * net/tramp.el (tramp-find-method, tramp-find-user): Call `propertize'
18159         only if it is bound.  It isn't for XEmacs.
18160         (with-tramp-progress-reporter): Do not let-bind `result'.
18161         This yields to scoping errors in XEmacs.
18162         (tramp-handle-make-auto-save-file-name): New function, moved from
18163         tramp-sh.el.
18165         * net/tramp-adb.el (tramp-adb-file-name-handler-alist): Add handler
18166         for `make-auto-save-file-name'.
18167         (tramp-adb--gnu-switches-to-ash):
18168         Use `tramp-compat-replace-regexp-in-string'.
18170         * net/tramp-cache.el (tramp-cache-print): Call
18171         `substring-no-properties' only if it is bound.  It isn't for XEmacs.
18173         * net/tramp-cmds.el (tramp-bug): Call `propertize' only if it is
18174         bound.  It isn't for XEmacs.
18176         * net/tramp-compat.el (tramp-compat-copy-file):
18177         Catch `wrong-number-of-arguments' error.
18178         (tramp-compat-replace-regexp-in-string): New defun.
18180         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Add handler
18181         for `make-auto-save-file-name'.
18182         (tramp-gvfs-handle-copy-file): Use `tramp-compat-funcall' for
18183         `copy-file'.
18184         (tramp-gvfs-file-gvfs-monitor-file-process-filter)
18185         (tramp-gvfs-file-name): Use `tramp-compat-replace-regexp-in-string'.
18186         (tramp-synce-list-devices): Use `push' instead of `pushnew'.
18188         * net/tramp-gw.el (tramp-gw-open-network-stream):
18189         Use `tramp-compat-replace-regexp-in-string'.
18191         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
18192         Call `tramp-handle-make-auto-save-file-name'.
18193         (tramp-sh-handle-make-auto-save-file-name): Move to tramp.el.
18194         (tramp-sh-file-gvfs-monitor-dir-process-filter)
18195         (tramp-sh-file-inotifywait-process-filter):
18196         Use `tramp-compat-replace-regexp-in-string'.
18197         (tramp-compute-multi-hops): Use `push' instead of `pushnew'.
18199         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Add handler
18200         for `make-auto-save-file-name'.
18201         (tramp-smb-handle-copy-directory):
18202         Call `tramp-compat-replace-regexp-in-string'.
18203         (tramp-smb-get-file-entries): Use `push' instead of `pushnew'.
18204         (tramp-smb-handle-copy-file): Improve error message.
18205         (tramp-smb-handle-rename-file): Rename directly only in case
18206         `newname' does not exist yet.  This is a restriction of smbclient.
18207         (tramp-smb-maybe-open-connection): Rerun the function only when
18208         `auth-sources' is non-nil.
18210 2013-09-08  Kenichi Handa  <handa@gnu.org>
18212         * international/characters.el: Set category "^" (Combining) for
18213         more characters.
18215 2013-09-07  Alan Mackenzie  <acm@muc.de>
18217         Correctly fontify Java class constructors.
18218         * progmodes/cc-langs.el (c-type-decl-suffix-key): Now matches ")"
18219         in Java Mode.
18220         (c-recognize-typeless-decls): Set the Java value to t.
18221         * progmodes/cc-engine.el (c-forward-decl-or-cast-1):
18222         While handling a "(", add a check for, effectively, Java, and handle a
18223         "typeless" declaration there.
18225 2013-09-07  Roland Winkler  <winkler@gnu.org>
18227         * textmodes/bibtex.el (bibtex-biblatex-entry-alist): Add optional
18228         field subtitle for entry type book.
18230 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
18232         * minibuffer.el: Make minibuffer-complete call completion-in-region
18233         rather than other way around.
18234         (completion--some, completion-pcm--find-all-completions):
18235         Don't delay signals when debugging.
18236         (minibuffer-completion-contents): Beware fields within the
18237         minibuffer contents.
18238         (completion-all-sorted-completions): Use defvar-local.
18239         (completion--do-completion, completion--cache-all-sorted-completions)
18240         (completion-all-sorted-completions, minibuffer-force-complete):
18241         Add args `beg' and `end'.
18242         (completion--in-region-1): New fun, extracted from minibuffer-complete.
18243         (minibuffer-complete): Use completion-in-region.
18244         (completion-complete-and-exit): New fun, extracted from
18245         minibuffer-complete-and-exit.
18246         (minibuffer-complete-and-exit): Use it.
18247         (completion--complete-and-exit): Rename from
18248         minibuffer--complete-and-exit.
18249         (completion-in-region--single-word): New function, extracted from
18250         minibuffer-complete-word.
18251         (minibuffer-complete-word): Use it.
18252         (display-completion-list): Make `common-substring' argument obsolete.
18253         (completion--in-region): Call completion--in-region-1 instead of
18254         minibuffer-complete.
18255         (completion-help-at-point): Pass boundaries to
18256         minibuffer-completion-help as args rather than via an overlay.
18257         (completion-pcm--string->pattern): Use `any-delim'.
18258         (completion-pcm--optimize-pattern): New function.
18259         (completion-pcm--pattern->regex): Handle `any-delim'.
18260         * icomplete.el (icomplete-forward-completions)
18261         (icomplete-backward-completions, icomplete-completions):
18262         Adjust calls to completion-all-sorted-completions and
18263         completion--cache-all-sorted-completions.
18264         (icomplete-with-completion-tables): Default to t.
18265         * emacs-lisp/crm.el (crm--current-element): Rename from
18266         crm--select-current-element.  Don't put an overlay but return the
18267         boundaries instead.
18268         (crm--completion-command): Take two new args to bind to the boundaries.
18269         (crm-completion-help): Adjust accordingly.
18270         (crm-complete): Use completion-in-region.
18271         (crm-complete-word): Use completion-in-region--single-word.
18272         (crm-complete-and-exit): Use completion-complete-and-exit.
18274 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
18276         * dired-x.el (dired-mark-sexp): Bind the vars lexically rather
18277         than dynamically.
18279 2013-09-06  Juri Linkov  <juri@jurta.org>
18281         * info.el (Info-display-images-node): When image file doesn't exist
18282         display text version of the image if it's provided in the Info file.
18283         Otherwise, display the location of missing image from SRC attribute.
18284         Add help-echo text property from ALT attribute.  (Bug#15279)
18286 2013-09-06  Stefan Monnier  <monnier@iro.umontreal.ca>
18288         * abbrev.el (edit-abbrevs-mode-map): Rename from edit-abbrevs-map.
18289         (edit-abbrevs-mode): Use define-derived-mode.
18291         * epa.el (epa--encode-coding-string, epa--decode-coding-string)
18292         (epa--select-safe-coding-system, epa--derived-mode-p): Make it obvious
18293         that it's defined.
18294         (epa-key-list-mode, epa-key-mode, epa-info-mode):
18295         Use define-derived-mode.
18297         * epg.el (epg-start-encrypt): Minor CSE simplification.
18299 2013-09-06  William Xu  <william.xwl@gmail.com>
18301         * arc-mode.el: Add support for 7za (bug#15264).
18302         (archive-7z-program): New var.
18303         (archive-zip-extract, archive-zip-expunge, archive-zip-update)
18304         (archive-zip-update-case, archive-7z-extract, archive-7z-expunge)
18305         (archive-7z-update, archive-zip-extract, archive-7z-summarize): Use it.
18307 2013-09-06  Michael Albinus  <michael.albinus@gmx.de>
18309         Remove URL syntax.
18311         * net/tramp.el (tramp-syntax, tramp-prefix-format)
18312         (tramp-postfix-method-format, tramp-prefix-ipv6-format)
18313         (tramp-postfix-ipv6-format, tramp-prefix-port-format)
18314         (tramp-postfix-host-format, tramp-file-name-regexp)
18315         (tramp-completion-file-name-regexp)
18316         (tramp-completion-dissect-file-name)
18317         (tramp-handle-substitute-in-file-name): Remove 'url case.
18318         (tramp-file-name-regexp-url)
18319         (tramp-completion-file-name-regexp-url): Remove constants.
18321 2013-09-06  Glenn Morris  <rgm@gnu.org>
18323         * replace.el (replace-string): Doc fix re start/end.  (Bug#15275)
18325 2013-09-05  Dmitry Gutov  <dgutov@yandex.ru>
18327         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move "Perl-ish
18328         keywords" below "here-doc beginnings" (Bug#15270).
18330 2013-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
18332         * subr.el (pop): Use `car-safe'.
18333         * emacs-lisp/byte-opt.el (byte-optimize-form-code-walker): Remove hack
18334         to detect unused `pop' return value.
18336         * progmodes/python.el (python-nav-beginning-of-block): Remove unused
18337         var `block-regexp'.
18338         (python-nav--forward-sexp): Remove unused var `re-search-fn'.
18339         (python-fill-string): Remove unused var `marker'.
18340         (python-skeleton-add-menu-items): Remove unused var `items'.
18342         * international/mule-cmds.el: Require CL.
18343         (find-coding-systems-for-charsets): Avoid add-to-list.
18344         (sanitize-coding-system-list): New function, extracted from
18345         select-safe-coding-system-interactively.
18346         (select-safe-coding-system-interactively): Use it.
18347         (read-input-method-name): Accept symbols for `default'.
18349         * emacs-lisp/advice.el (defadvice): Add indent rule.
18351 2013-09-05  Daniel Hackney  <dan@haxney.org>
18353         * dired-x.el:
18354         * net/ange-ftp.el:
18355         * net/browse-url.el:
18356         * net/dbus.el:
18357         * net/eudc.el:
18358         * net/eudcb-ldap.el:
18359         * net/eww.el:
18360         * net/imap.el:
18361         * printing.el:
18362         * vc/ediff-diff.el:
18363         * vc/ediff-init.el:
18364         * vc/ediff-merg.el:
18365         * vc/ediff-mult.el:
18366         * vc/ediff-util.el:
18367         * vc/ediff-wind.el:
18368         * vc/ediff.el:
18369         * vc/emerge.el:
18370         * vc/pcvs.el:
18371         * vc/vc-annotate.el: Prefix unused arguments with `_' to silence
18372         byte compiler.  Remove some unused let-bound variables.
18374 2013-09-05  Stefan Monnier  <monnier@iro.umontreal.ca>
18376         * emacs-lisp/cconv.el: Use `car-safe' rather than `car' to access
18377         a "ref-cell", since it gets better optimized (bug#14883).
18379 2013-09-05  Glenn Morris  <rgm@gnu.org>
18381         * progmodes/cc-awk.el (c-forward-sws): Declare.
18383 2013-09-04  Glenn Morris  <rgm@gnu.org>
18385         * generic-x.el [rul-generic-mode]: Require cc-mode.
18386         (c++-mode-syntax-table): Declare.
18387         (rul-generic-mode-syntax-table): Init in the defvar.
18389 2013-09-04  Stefan Monnier  <monnier@iro.umontreal.ca>
18391         * vc/vc-dispatcher.el (vc-run-delayed): New macro.
18392         (vc-do-command, vc-set-async-update):
18393         * vc/vc-mtn.el (vc-mtn-dir-status):
18394         * vc/vc-hg.el (vc-hg-dir-status, vc-hg-dir-status-files)
18395         (vc-hg-pull, vc-hg-merge-branch):
18396         * vc/vc-git.el (vc-git-dir-status-goto-stage, vc-git-pull)
18397         (vc-git-merge-branch):
18398         * vc/vc-cvs.el (vc-cvs-print-log, vc-cvs-dir-status)
18399         (vc-cvs-dir-status-files):
18400         * vc/vc-bzr.el (vc-bzr-pull, vc-bzr-merge-branch, vc-bzr-dir-status)
18401         (vc-bzr-dir-status-files):
18402         * vc/vc-arch.el (vc-arch-dir-status): Use vc-run-delayed.
18403         * vc/vc-annotate.el: Use lexical-binding.
18404         (vc-annotate-display-select, vc-annotate): Use vc-run-delayed.
18405         (vc-sentinel-movepoint): Declare.
18406         (vc-annotate): Don't use `goto-line'.
18407         * vc/vc.el (vc-diff-internal): Prefer a closure to `(lambda...).
18408         (vc-diff-internal, vc-log-internal-common): Use vc-run-delayed.
18409         (vc-sentinel-movepoint): Declare.
18410         * vc/vc-svn.el: Use lexical-binding.
18411         (vc-svn-dir-status, vc-svn-dir-status-files): Use vc-run-delayed.
18412         * vc/vc-sccs.el:
18413         * vc/vc-rcs.el: Use lexical-binding.
18415         * autorevert.el (auto-revert-notify-handler): Explicitly ignore
18416         `deleted'.  Don't drop errors silently.
18418         * emacs-lisp/gv.el (gv-get): Warn about CL-compiled places.
18420 2013-09-04  Xue Fuqiao  <xfq.free@gmail.com>
18422         * vc/vc.el (vc-ignore): Rewrite.
18423         (vc-default-ignore): New function.
18424         (vc-default-ignore-completion-table): Use find-ignore-file.
18426         * vc/vc-bzr.el (vc-bzr-ignore, vc-bzr-ignore-completion-table):
18427         * vc/vc-git.el (vc-git-ignore, vc-git-ignore-completion-table):
18428         * vc/vc-hg.el (vc-hg-ignore, vc-hg-ignore-completion-table):
18429         Remove.  Most code moved to vc.el.
18431 2013-09-03  Stefan Monnier  <monnier@iro.umontreal.ca>
18433         * net/tramp-gvfs.el (tramp-gvfs-mount-spec, tramp-synce-list-devices):
18434         * net/tramp-smb.el (tramp-smb-get-file-entries):
18435         * net/tramp-sh.el (tramp-sh-handle-insert-directory)
18436         (tramp-compute-multi-hops): Fix misuses of `add-to-list'.
18438         * net/eww.el (eww-display-raw): Remove unused argument `charset'.
18439         Update call to it.
18440         (eww-change-select): Remove unused var `properties'.
18441         (eww-make-unique-file-name): Remove unused var `base'.
18443         * finder.el (finder-compile-keywords): Don't mess with windows.
18445         * calculator.el (calculator-funcall): Fix typo in last change.
18447         * vc/vc-git.el (vc-git-checkin): Make it possible to commit a merge.
18449         * emacs-lisp/package.el (package-activate-1): Don't let a missing
18450         <pkg>-autoloads.el file stop us.
18452         * net/tramp.el (with-parsed-tramp-file-name): Silence compiler
18453         warnings, and factor out common code.
18455 2013-09-03  Dmitry Gutov  <dgutov@yandex.ru>
18457         * progmodes/ruby-mode.el (ruby-calculate-indent): Consider
18458         two-character operators and whether the character preceding them
18459         changes their meaning (Bug#15208).
18461 2013-09-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
18463         Format code sent to Python shell for robustness.
18464         * progmodes/python.el (python-shell-buffer-substring):
18465         New function.
18466         (python-shell-send-region, python-shell-send-buffer): Use it.
18468 2013-09-02  Michael Albinus  <michael.albinus@gmx.de>
18470         * net/tramp-compat.el (tramp-compat-user-error): Move it ...
18471         * net/tramp.el (tramp-user-error): ... here.
18472         (tramp-find-method, tramp-check-proper-host)
18473         (tramp-dissect-file-name, tramp-debug-message)
18474         (tramp-handle-shell-command):
18475         * net/tramp-adb.el (tramp-adb-handle-shell-command):
18476         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler): Adapt callees.
18478         * net/tramp-cache.el (tramp-cache-print): Don't print text properties.
18480 2013-09-02  Martin Rudalics  <rudalics@gmx.at>
18482         * avoid.el (mouse-avoidance-point-position)
18483         (mouse-avoidance-too-close-p): Handle case where posn-at-point
18484         returns nil.
18486 2013-09-02  Fabián Ezequiel Gallina  <fgallina@gnu.org>
18488         * progmodes/python.el (python-shell-completion-get-completions):
18489         Drop use of deleted `comint-last-prompt-overlay'.
18490         (python-nav-if-name-main): New command.
18492 2013-09-01  Glenn Morris  <rgm@gnu.org>
18494         * Makefile.in (setwins, setwins_almost, setwins_for_subdirs):
18495         Avoid leading space in $wins.  Otherwise the sed command used by
18496         eg compile-main ends up containing "/*.el".  (Bug#15170)
18498         * frame.el (frame-background-mode): Doc fix.  (Bug#15226)
18500 2013-08-30  Glenn Morris  <rgm@gnu.org>
18502         * emacs-lisp/bytecomp.el (byte-recompile-directory):
18503         Fix is-this-a-directory logic.  (Bug#15220)
18505 2013-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
18507         * textmodes/css-mode.el: Use SMIE.
18508         (css-smie-grammar): New var.
18509         (css-smie--forward-token, css-smie--backward-token)
18510         (css-smie-rules): New functions.
18511         (css-mode): Use them.
18512         (css-navigation-syntax-table): Remove var.
18513         (css-backward-sexp, css-forward-sexp, css-indent-calculate-virtual)
18514         (css-indent-calculate, css-indent-line): Remove functions.
18516         Misc changes to reduce use of `(lambda...); and other cleanups.
18517         * cus-edit.el: Use lexical-binding.
18518         (customize-push-and-save, customize-apropos)
18519         (custom-buffer-create-internal): Use closures.
18520         * progmodes/bat-mode.el (bat-mode-syntax-table): "..." are strings.
18521         * progmodes/ada-xref.el: Use setq.
18522         * net/tramp.el (with-tramp-progress-reporter): Avoid setq.
18523         * dframe.el: Use lexical-binding.
18524         (dframe-frame-mode): Fix calling convention for hooks.  Use a closure.
18525         * speedbar.el (speedbar-frame-mode): Adjust call accordingly.
18526         * descr-text.el: Use lexical-binding.
18527         (describe-text-widget, describe-text-sexp, describe-property-list):
18528         Use closures.
18529         * comint.el (comint-history-isearch-push-state): Use a closure.
18530         * calculator.el: Use lexical-binding.
18531         (calculator-number-to-string): Make it work with lexical-binding.
18532         (calculator-funcall): Same and use cl-letf.
18534         * emacs-lisp/lisp.el (lisp--company-doc-buffer)
18535         (lisp--company-doc-string, lisp--company-location): New functions.
18536         (lisp-completion-at-point): Use them to improve Company support.
18538         * progmodes/ruby-mode.el (ruby-smie-grammar): Add rule for formal
18539         params of lambda expressions.
18540         (ruby-smie--implicit-semi-p): Refine rule (bug#15208).
18541         (ruby-smie--opening-pipe-p): New function.
18542         (ruby-smie--forward-token, ruby-smie--backward-token): Handle Ruby
18543         symbols and matched |...| for formal params.
18544         (ruby-smie-rules): Don't let the formal params of a "do" prevent it
18545         from being treated as hanging.  Handle "rescue".
18547 2013-08-29  Glenn Morris  <rgm@gnu.org>
18549         * progmodes/cc-engine.el (c-pull-open-brace):
18550         Move definition before use.
18552 2013-08-29  Stefan Monnier  <monnier@iro.umontreal.ca>
18554         * emacs-lisp/cl-macs.el (cl-defsubst): Make it clear that args
18555         are immutable.  Don't use `unsafe' any more.
18556         (cl--defsubst-expand): Don't substitute at the same time as keeping
18557         a residual unused let-binding.  Don't use `unsafe' any more.
18559 2013-08-29  Glenn Morris  <rgm@gnu.org>
18561         * calendar/cal-china.el (calendar-chinese-year-cache):
18562         Recenter on 2015.
18564         * nxml/nxml-util.el (nxml-debug-clear-inside):
18565         Use cl-loop rather than loop.
18567         * net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
18569         * progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
18571 2013-08-28  Glenn Morris  <rgm@gnu.org>
18573         * progmodes/antlr-mode.el: No need to require cc-mode twice.
18575         * progmodes/cc-bytecomp.el (cc-require): Handle uncompiled case.
18577         * progmodes/cc-mode.el (c-define-abbrev-table): Handle NAME unbound.
18579 2013-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
18581         * simple.el (repeat-complex-command--called-interactively-skip):
18582         New function.
18583         (repeat-complex-command): Use it (bug#14136).
18585         * progmodes/cc-mode.el: Minor cleanup of var declarations.
18586         (c-define-abbrev-table): Add `doc' argument.
18587         (c-mode-abbrev-table, c++-mode-abbrev-table)
18588         (objc-mode-abbrev-table, java-mode-abbrev-table)
18589         (idl-mode-abbrev-table, pike-mode-abbrev-table)
18590         (awk-mode-abbrev-table): Use it.
18591         (c-mode-syntax-table, c-mode-map, c++-mode-syntax-table)
18592         (c++-mode-map, objc-mode-syntax-table, objc-mode-map)
18593         (java-mode-syntax-table, java-mode-map, idl-mode-syntax-table)
18594         (idl-mode-map, pike-mode-syntax-table, pike-mode-map, awk-mode-map):
18595         Move initialization into the declaration; and remove any
18596         autoload cookie.
18598         * epg.el (epg--process-filter): Use with-current-buffer, save-excursion
18599         and dynamic let binding.
18601         * vc/smerge-mode.el: Remove redundant :group args.
18603         * emacs-lisp/package.el (package-activate-1): Don't add unnecessarily
18604         to load-path.
18606 2013-08-28  Juri Linkov  <juri@jurta.org>
18608         * isearch.el (isearch-reread-key-sequence-naturally): Use non-nil
18609         arg DONT-DOWNCASE-LAST of `read-key-sequence'.
18610         (isearch-other-meta-char): Handle an undefined shifted printing
18611         character by downshifting it.  (Bug#15200)
18613 2013-08-28  Juri Linkov  <juri@jurta.org>
18615         * isearch.el (isearch-search): Change regexp error message for
18616         non-regexp searches.  (Bug#15166)
18618 2013-08-28  Paul Eggert  <eggert@cs.ucla.edu>
18620         * Makefile.in (SHELL): Now @SHELL@, not /bin/sh,
18621         for portability to hosts where /bin/sh has problems.
18623 2013-08-28  Stefan Monnier  <monnier@iro.umontreal.ca>
18625         * emacs-lisp/cconv.el (cconv--analyse-function): Improve warning.
18627 2013-08-27  Juri Linkov  <juri@jurta.org>
18629         * isearch.el (isearch-other-meta-char): Don't store kmacro commands
18630         in the keyboard macro.  (Bug#15126)
18632 2013-08-27  Juri Linkov  <juri@jurta.org>
18634         * isearch.el (isearch-quote-char): Comment out converting unibyte
18635         to multibyte, thus syncing with its `quoted-insert' counterpart.
18636         (Bug#15166)
18638 2013-08-27  Martin Rudalics  <rudalics@gmx.at>
18640         * window.el (display-buffer-use-some-window): Add missing
18641         argument in call of get-largest-window (Bug#15185).
18642         Reported by Stephen Leake.
18644 2013-08-27  Glenn Morris  <rgm@gnu.org>
18646         * emacs-lisp/package.el (package-buffer-info): Fix message typo.
18648 2013-08-27  Stefan Monnier  <monnier@iro.umontreal.ca>
18650         * progmodes/python.el (python-font-lock-keywords): Don't return nil
18651         from a matcher-function unless there's no more matches (bug#15161).
18653 2013-08-26  Michael Albinus  <michael.albinus@gmx.de>
18655         * minibuffer.el: Revert change from 2013-08-20.
18657         * net/tramp.el (tramp-find-method, tramp-find-user): Mark result
18658         with text property `tramp-default', if appropriate.
18659         (tramp-check-proper-host): New defun.
18660         (tramp-dissect-file-name): Do not check hostname.  Revert change
18661         of 2013-03-18.
18662         (tramp-backtrace): Make VEC-OR-PROC optional.
18664         * net/tramp-adb.el (tramp-adb-maybe-open-connection):
18665         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
18666         * net/tramp-sh.el (tramp-maybe-open-connection):
18667         * net/tramp-smb.el (tramp-smb-maybe-open-connection):
18668         Apply `tramp-check-proper-host'.
18670 2013-08-26  Tassilo Horn  <tsdh@gnu.org>
18672         * epa-hook.el (epa-file-encrypt-to): Quote `safe-local-variable'
18673         lambda expression in order to have `describe-variable' display it.
18675 2013-08-26  Michael Albinus  <michael.albinus@gmx.de>
18677         * net/tramp-sh.el (tramp-sh-handle-verify-visited-file-modtime):
18678         BUF can be optional.  (Bug#15186)
18680 2013-08-25  Xue Fuqiao  <xfq.free@gmail.com>
18682         * progmodes/flymake.el (flymake-get-real-file-name-function):
18683         Fix broken customization.  (Bug#15184)
18685 2013-08-25  Alan Mackenzie  <acm@muc.de>
18687         Improve indentation of bracelists defined by macros (without "=").
18689         * progmodes/cc-engine.el (c-inside-bracelist-p): When a macro
18690         expansion begins with "{", regard it as bracelist when it doesn't
18691         contain a ";".
18693         Parse C++ inher-intro when there's a template split over 2 lines.
18695         * progmodes/cc-engine.el (c-guess-basic-syntax CASE 5C): Code more
18696         rigorously the search for "class" etc. followed by ":".
18698         * progmodes/cc-langs.el (c-opt-<>-sexp-key): Make the value for
18699         random languages a regexp which never matches rather than nil.
18701         Handle "/"s more accurately in test for virtual semicolons (AWK Mode).
18703         * progmodes/cc-awk.el (c-awk-one-line-possibly-open-string-re)
18704         (c-awk-regexp-one-line-possibly-open-char-list-re)
18705         (c-awk-one-line-possibly-open-regexp-re)
18706         (c-awk-one-line-non-syn-ws*-re): Remove.
18707         (c-awk-possibly-open-string-re, c-awk-non-/-syn-ws*-re)
18708         (c-awk-space*-/-re, c-awk-space*-regexp-/-re)
18709         (c-awk-space*-unclosed-regexp-/-re): New constants.
18710         (c-awk-at-vsemi-p): Reformulate better to recognize "/"s which
18711         aren't regexp delimiters.
18713         * progmodes/cc-engine.el (c-crosses-statement-barrier-p): Add in
18714         handling for a rare situation in AWK Mode involving unterminated
18715         strings/regexps.
18717 2013-08-23  Glenn Morris  <rgm@gnu.org>
18719         * files.el (auto-mode-alist): Use sh-mode for .bash_history.
18721         * files.el (interpreter-mode-alist): Use tcl-mode for expect scripts.
18723         * files.el (create-file-buffer): If the result would begin with
18724         spaces, prepend a "|" instead of removing them.  (Bug#15162)
18726 2013-08-23  Stefan Monnier  <monnier@iro.umontreal.ca>
18728         * textmodes/fill.el (fill-match-adaptive-prefix): Don't throw away
18729         text-properties (bug#15155).
18731         * calc/calc-keypd.el (calc-keypad-execute): `x-flush-mouse-queue' doesn't
18732         exist any more.
18733         (calc-keypad-redraw): Remove unused var `pad'.
18734         (calc-keypad-press): Remove unused var `menu'.
18736 2013-08-23  Martin Rudalics  <rudalics@gmx.at>
18738         * window.el (display-buffer-pop-up-frame):
18739         Call pop-up-frame-function with BUFFER current so `make-frame' will
18740         use it as the new frame's buffer (Bug#15133).
18742 2013-08-22  Stefan Monnier  <monnier@iro.umontreal.ca>
18744         * calendar/timeclock.el: Minor cleanups.
18745         (timeclock-ask-before-exiting, timeclock-use-display-time):
18746         Use `symbol'.
18747         (timeclock-modeline-display): Define as alias before the
18748         actual definition.
18749         (timeclock-mode-line-display): Use define-minor-mode.
18750         (timeclock-day-list-template): Make it a function, add an argument.
18751         (timeclock-day-list-required, timeclock-day-list-length)
18752         (timeclock-day-list-debt, timeclock-day-list-span)
18753         (timeclock-day-list-break): Adjust calls accordingly.
18755 2013-08-21  Stefan Monnier  <monnier@iro.umontreal.ca>
18757         * emacs-lisp/pp.el (pp-eval-expression, pp-macroexpand-expression):
18758         Use read--expression so that completion works again.
18760 2013-08-21  Sam Steingold  <sds@gnu.org>
18762         Add rudimentary inferior shell interaction
18763         * progmodes/sh-script.el (sh-shell-process): New buffer-local variable.
18764         (sh-set-shell): Reset it.
18765         (sh-show-shell, sh-cd-here, sh-send-line-or-region-and-step):
18766         New commands (bound to C-c C-z, C-c C-d, and C-c C-n).
18768 2013-08-20  Stefan Monnier  <monnier@iro.umontreal.ca>
18770         * align.el: Use lexical-binding.
18771         (align-region): Simplify accordingly.
18773 2013-08-20  Michael Albinus  <michael.albinus@gmx.de>
18775         * minibuffer.el (completion--sifn-requote): Bind `non-essential'.
18777         * rfn-eshadow.el (rfn-eshadow-update-overlay): Move binding of
18778         `non-essential' up.
18780 2013-08-17  Michael Albinus  <michael.albinus@gmx.de>
18782         * net/tramp.el:
18783         * net/tramp-adb.el:
18784         * net/tramp-cmds.el:
18785         * net/tramp-ftp.el:
18786         * net/tramp-gvfs.el:
18787         * net/tramp-gw.el:
18788         * net/tramp-sh.el: Don't wrap external variable declarations by
18789         `eval-when-compile'.
18791 2013-08-16  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18793         * net/shr.el (shr-rescale-image): Use ImageMagick even for GIFs
18794         now that Emacs supports ImageMagick animations.
18796 2013-08-16  Michael Albinus  <michael.albinus@gmx.de>
18798         * net/tramp-cmds.el (top): Don't declare `buffer-name'.
18799         (tramp-append-tramp-buffers): Rewrite buffer local variables part.
18801 2013-08-16  Martin Rudalics  <rudalics@gmx.at>
18803         * window.el (mouse-autoselect-window-select): Do autoselect when
18804         mouse pointer is on margin.
18806 2013-08-16  William Parsons  <wbparsons@alum.mit.edu>  (tiny change)
18808         * net/ange-ftp.el (ange-ftp-skip-msgs): Add 500 EPSV.  (Bug#1972)
18810 2013-08-16  Glenn Morris  <rgm@gnu.org>
18812         * net/ange-ftp.el (ange-ftp-good-msgs, ange-ftp-get-pwd):
18813         Handle "Remote Directory" response of some clients.  (Bug#15058)
18815         * emacs-lisp/bytecomp.el (byte-compile-make-variable-buffer-local):
18816         Tweak warning.  (Bug#14926)
18818         * menu-bar.el (send-mail-item-name, read-mail-item-name): Remove.
18819         (menu-bar-tools-menu): Simplify news and mail items.  (Bug#15095)
18821         * image-mode.el (image-mode-map): Add menu items to reverse,
18822         increase, decrease, reset animation speed.
18823         (image--set-speed, image-increase-speed, image-decrease-speed)
18824         (image-reverse-speed, image-reset-speed): New functions.
18825         (image-mode-map): Add bindings for speed commands.
18827         * image.el (image-animate-get-speed, image-animate-set-speed):
18828         New functions.
18829         (image-animate-timeout): Respect image :speed property.
18831 2013-08-15  Stefan Monnier  <monnier@iro.umontreal.ca>
18833         * emacs-lisp/debug.el (debugger-setup-buffer): Put point on the
18834         previous line (bug#15101).
18835         (debugger-eval-expression, debugger-record-expression):
18836         Use read--expression (bug#15102).
18838 2013-08-15  Michael Albinus  <michael.albinus@gmx.de>
18840         Remove byte compiler warnings, visible when compiling with
18841         `byte-compile-force-lexical-warnings' set to t.
18843         * net/tramp.el (tramp-debug-message, tramp-message, tramp-error)
18844         (tramp-error-with-buffer): Rename ARGS to ARGUMENTS and BUFFER to BUF.
18845         (tramp-handle-unhandled-file-name-directory)
18846         (tramp-handle-file-notify-add-watch, tramp-action-login)
18847         (tramp-action-succeed, tramp-action-permission-denied)
18848         (tramp-action-terminal, tramp-action-process-alive): Prefix unused
18849         arguments with "_".
18851         * net/tramp-adb.el (tramp-adb-parse-device-names)
18852         (tramp-adb-handle-insert-directory, tramp-adb-handle-delete-file)
18853         (tramp-adb-handle-copy-file): Prefix unused arguments with "_".
18854         (tramp-adb-handle-file-truename): Remove unused arguments.
18856         * net/tramp-cache.el (tramp-flush-directory-property)
18857         (tramp-flush-connection-property, tramp-list-connections)
18858         (tramp-parse-connection-properties): Prefix unused arguments with "_".
18860         * net/tramp-compat.el (tramp-compat-make-temp-file):
18861         Rename FILENAME to F.
18863         * net/tramp-gvfs.el (tramp-gvfs-handle-file-notify-add-watch)
18864         (tramp-gvfs-handle-write-region, tramp-bluez-parse-device-names)
18865         (tramp-zeroconf-parse-workstation-device-names)
18866         (tramp-zeroconf-parse-webdav-device-names)
18867         (tramp-synce-parse-device-names): Prefix unused arguments with "_".
18869         * net/tramp-gw.el (tramp-gw-gw-proc-sentinel)
18870         (tramp-gw-aux-proc-sentinel): Prefix unused arguments with "_".
18872         * net/tramp-sh.el (tramp-sh-handle-file-truename): Remove unused
18873         arguments.
18874         (tramp-sh-handle-copy-file, tramp-sh-handle-dired-compress-file)
18875         (tramp-sh-handle-insert-file-contents-literally)
18876         (tramp-sh-handle-file-notify-add-watch): Prefix unused arguments
18877         with "_".
18878         (tramp-do-copy-or-rename-file, tramp-barf-if-no-shell-prompt):
18879         Remove unused variables.
18881         * net/tramp-smb.el (tramp-smb-handle-copy-directory)
18882         (tramp-smb-handle-copy-file, tramp-smb-handle-delete-file)
18883         (tramp-smb-read-file-entry): Prefix unused arguments with "_".
18885         * net/tramp-uu.el (tramp-uu-b64-alphabet, tramp-uu-b64-char-to-byte):
18886         Make them a defconst.
18887         (tramp-uuencode-region): Remove unused variable.
18889 2013-08-14  Juanma Barranquero  <lekktu@gmail.com>
18891         * frameset.el (frameset--prop-setter): New function.
18892         (frameset-prop): Add gv-setter declaration.
18893         (frameset-filter-minibuffer): Deal with the case that the minibuffer
18894         parameter was already set in FILTERED.  Doc fix.
18895         (frameset--record-minibuffer-relationships): Allow saving a
18896         minibufferless frame without its corresponding minibuffer frame.
18897         (frameset--reuse-frame): Accept a match from an orphaned minibufferless
18898         frame, if the frame id matches.
18899         (frameset--minibufferless-last-p): Sort non-orphaned minibufferless
18900         frames before orphaned ones.
18901         (frameset-restore): Warn about orphaned windows, instead of error out.
18903 2013-08-14  Martin Rudalics  <rudalics@gmx.at>
18905         * window.el (window-make-atom): Don't overwrite parameter
18906         already present.
18907         (display-buffer-in-atom-window): Handle special case where we
18908         split an already atomic window.
18909         (window--major-non-side-window, display-buffer-in-side-window)
18910         (window--side-check): Ignore minibuffer window when walking
18911         window tree.
18912         (window-deletable-p): Return 'frame only if no other frame uses
18913         our minibuffer window.
18914         (record-window-buffer): Run buffer-list-update-hook.
18915         (split-window): Make sure window--check-frame won't destroy an
18916         existing atomic window in case the new window gets nested
18917         inside.
18918         (display-buffer-at-bottom): Ignore minibuffer window when
18919         walking window tree.  Don't split a side window.
18920         (pop-to-buffer): Don't set-buffer here, the select-window call
18921         should do that.
18922         (mouse-autoselect-window-select): Autoselect only if we are in the
18923         text portion of the window.
18925 2013-08-13  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18927         * net/shr.el (shr-parse-image-data): New function to grab both the
18928         data itself and the Content-Type.
18929         (shr-put-image): Use it.
18931         * net/eww.el (eww-display-image): Ditto.
18933         * image.el (image-content-type-suffixes): New variable.
18935 2013-08-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
18937         * progmodes/python.el (python-imenu--build-tree)
18938         (python-imenu--put-parent): Simplify and Fix (GH bug 146).
18940 2013-08-13  Xue Fuqiao  <xfq.free@gmail.com>
18942         * simple.el (backward-word): Mention the optional argument.
18944 2013-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
18946         * frameset.el (frameset--make): Rename constructor from make-frameset.
18947         (frameset-p, frameset-valid-p): Don't autoload.
18948         (frameset-valid-p): Use normal accessors.
18950 2013-08-13  Glenn Morris  <rgm@gnu.org>
18952         * progmodes/compile.el (compile-command): Tweak example in doc.
18953         * obsolete/scribe.el (scribe-mode):
18954         * progmodes/mixal-mode.el (mixal-mode): Quote buffer name.  (Bug#15053)
18956         * mail/feedmail.el (feedmail-confirm-outgoing)
18957         (feedmail-display-full-frame, feedmail-deduce-bcc-where): Fix types.
18959         * cus-start.el (truncate-partial-width-windows): Fix type.
18961         * emulation/viper-init.el (viper-search-scroll-threshold): Fix type.
18963         * net/shr.el (shr-table-horizontal-line): Fix custom type.
18965 2013-08-13  Stefan Monnier  <monnier@iro.umontreal.ca>
18967         * emacs-lisp/timer.el (timer--time-setter): New function.
18968         (timer--time): Use it as gv-setter.
18970         * emacs-lisp/gv.el (gv-define-simple-setter): Output warning when
18971         setter is not a symbol.
18973 2013-08-12  Grégoire Jadi  <daimrod@gmail.com>
18975         * mail/sendmail.el (sendmail-send-it): Don't kill the error buffer
18976         if sending fails.  This makes debugging easier.
18978 2013-08-12  Juanma Barranquero  <lekktu@gmail.com>
18980         * xml.el (xml-parse-tag-1): Use looking-at (this reverts change in
18981         2013-08-11T00:07:48Z!lekktu@gmail.com, which breaks the test suite).
18982         https://lists.gnu.org/archive/html/emacs-devel/2013-08/msg00263.html
18984 2013-08-12  Eli Zaretskii  <eliz@gnu.org>
18986         * term/w32-win.el (dynamic-library-alist): Add DLLs for zlib.
18988 2013-08-12  Glenn Morris  <rgm@gnu.org>
18990         * format.el (format-annotate-function):
18991         Handle read-only text properties in the source.  (Bug#14887)
18993 2013-08-11  Lars Magne Ingebrigtsen  <larsi@gnus.org>
18995         * net/eww.el (eww-display-html): Ignore coding system errors.
18996         One web site uses "utf-8lias" as the coding system.
18998 2013-08-11  Juanma Barranquero  <lekktu@gmail.com>
19000         * frameset.el (frameset-valid-p): Fix check; STATES can indeed be nil.
19002 2013-08-10  Juanma Barranquero  <lekktu@gmail.com>
19004         * tutorial.el (tutorial--describe-nonstandard-key): Use string-match-p.
19005         (tutorial--detailed-help): Remove unused local variables.
19006         (tutorial--save-tutorial-to): Use ignore-errors.
19007         (help-with-tutorial): Use looking-at-p.
19009         * view.el (view-buffer-other-window, view-buffer-other-frame):
19010         Mark unused arguments.
19012         * woman.el (woman-parse-colon-path, woman-parse-colon-path)
19013         (woman-select-symbol-fonts, woman, woman-find-file)
19014         (woman-insert-file-contents, woman-non-underline-faces):
19015         Use string-match-p.
19016         (woman1-unquote): Move declaration.
19018         * xml.el (xml-parse-tag-1, xml-parse-string): Use looking-at-p.
19019         (xml-parse-dtd): Use looking-at-p, string-match-p.  Mark unused
19020         argument.  Remove unused local variable.
19021         (xml-parse-elem-type): Use string-match-p.
19022         (xml-substitute-numeric-entities): Use ignore-errors.
19024         * calculator.el (calculator): Mark unused argument.
19025         (calculator-paste, calculator-quit, calculator-integer-p):
19026         Use ignore-errors.
19027         (calculator-string-to-number, calculator-decimal, calculator-exp)
19028         (calculator-op-or-exp): Use string-match-p.
19030         * dired.el (dired-buffer-more-recently-used-p): Declare.
19031         (dired-insert-set-properties, dired-insert-old-subdirs):
19032         Use ignore-errors.
19034         * dired-aux.el (dired-compress): Use ignore-errors.
19035         (dired-do-chxxx, dired-do-chmod, dired-trample-file-versions)
19036         (dired-do-async-shell-command, dired-do-shell-command)
19037         (dired-shell-stuff-it, dired-compress-file, dired-insert-subdir)
19038         (dired-insert-subdir-validate): Use string-match-p.
19039         (dired-map-dired-file-lines, dired-subdir-hidden-p): Use looking-at-p.
19040         (dired-add-entry): Use string-match-p, looking-at-p.
19041         (dired-insert-subdir-newpos): Remove unused local variable.
19043         * filenotify.el (file-notify-callback): Remove unused local variable.
19045         * filesets.el (filesets-error): Mark unused argument.
19046         (filesets-which-command-p, filesets-filter-dir-names)
19047         (filesets-directory-files, filesets-get-external-viewer)
19048         (filesets-ingroup-get-data): Use string-match-p.
19050         * find-file.el (ff-other-file-name, ff-other-file-name)
19051         (ff-find-the-other-file, ff-cc-hh-converter):
19052         Remove unused local variables.
19053         (ff-get-file-name): Use string-match-p.
19054         (ff-all-dirs-under): Use ignore-errors.
19056         * follow.el (follow-comint-scroll-to-bottom): Mark unused argument.
19057         (follow-select-if-visible): Remove unused local variable.
19059         * forms.el (read-file-filter): Move declaration.
19060         (forms--make-format, forms--make-parser, forms-insert-record):
19061         Quote function with #'.
19062         (forms--update): Use string-match-p.  Quote function with #'.
19064         * help-mode.el (help-dir-local-var-def): Mark unused argument.
19065         (help-make-xrefs): Use looking-at-p.
19066         (help-xref-on-pp): Use looking-at-p, ignore-errors.
19068         * ibuffer.el (ibuffer-ext-visible-p): Declare.
19069         (ibuffer-confirm-operation-on): Use string-match-p.
19071         * msb.el (msb-item-handler, msb-dired-item-handler):
19072         Mark unused arguments.
19074         * ses.el (ses-decode-cell-symbol)
19075         (ses-kill-override): Remove unused local variable.
19076         (ses-create-cell-variable, ses-relocate-formula): Use string-match-p.
19077         (ses-load): Use ignore-errors, looking-at-p.
19078         (ses-jump-safe): Use ignore-errors.
19079         (ses-export-tsv, ses-export-tsf, ses-unsafe): Mark unused arguments.
19081         * tabify.el (untabify, tabify): Mark unused arguments.
19083         * thingatpt.el (thing-at-point--bounds-of-well-formed-url):
19084         Mark unused argument.
19085         (bounds-of-thing-at-point, thing-at-point-bounds-of-list-at-point)
19086         (thing-at-point-newsgroup-p, form-at-point): Use ignore-errors.
19088         * emacs-lisp/timer.el (timer--time): Define setter with
19089         gv-define-setter to avoid deprecation warning.
19091         * completion.el: Remove stuff unused since revno:3176 (1993-05-27).
19092         (*record-cmpl-statistics-p*): Remove (was commented out).
19093         (cmpl-statistics-block): Remove (body was commented out).
19094         All callers changed.
19095         (add-completions-from-buffer, load-completions-from-file):
19096         Remove unused variables.
19098 2013-08-09  Juanma Barranquero  <lekktu@gmail.com>
19100         * filecache.el (file-cache-delete-file-list):
19101         Print message only when told so.
19102         (file-cache-files-matching): Use #' in mapconcat argument.
19104         * ffap.el (ffap-url-at-point): Fix reference to variable
19105         thing-at-point-default-mail-uri-scheme.
19107 2013-08-09  Stefan Monnier  <monnier@iro.umontreal.ca>
19109         * subr.el (define-error): New function.
19110         * progmodes/ada-xref.el (ada-error-file-not-found): Rename from
19111         error-file-not-found and define with define-error.
19112         * emacs-lisp/cl-lib.el (cl-assertion-failed): Move here from subr.el
19113         and define with define-error.
19114         * userlock.el (file-locked, file-supersession):
19115         * simple.el (mark-inactive):
19116         * progmodes/js.el (js-moz-bad-rpc, js-js-error):
19117         * progmodes/ada-mode.el (ada-mode-errors):
19118         * play/life.el (life-extinct):
19119         * nxml/xsd-regexp.el (xsdre-invalid-regexp, xsdre-parse-error):
19120         * nxml/xmltok.el (xmltok-markup-declaration-parse-error):
19121         * nxml/rng-util.el (rng-error):
19122         * nxml/rng-uri.el (rng-uri-error):
19123         * nxml/rng-match.el (rng-compile-error):
19124         * nxml/rng-cmpct.el (rng-c-incorrect-schema):
19125         * nxml/nxml-util.el (nxml-error, nxml-file-parse-error):
19126         * nxml/nxml-rap.el (nxml-scan-error):
19127         * nxml/nxml-outln.el (nxml-outline-error):
19128         * net/soap-client.el (soap-error):
19129         * net/gnutls.el (gnutls-error):
19130         * net/ange-ftp.el (ftp-error):
19131         * mpc.el (mpc-proc-error):
19132         * json.el (json-error, json-readtable-error, json-unknown-keyword)
19133         (json-number-format, json-string-escape, json-string-format)
19134         (json-key-format, json-object-format):
19135         * jka-compr.el (compression-error):
19136         * international/quail.el (quail-error):
19137         * international/kkc.el (kkc-error):
19138         * emacs-lisp/ert.el (ert-test-failed):
19139         * calc/calc.el (calc-error, inexact-result, math-overflow)
19140         (math-underflow):
19141         * bookmark.el (bookmark-error-no-filename):
19142         * epg.el (epg-error): Define with define-error.
19144         * time.el (display-time-event-handler)
19145         (display-time-next-load-average): Don't call sit-for since it seems
19146         unnecessary (bug#15045).
19148         * emacs-lisp/checkdoc.el: Remove redundant :group keywords.
19149         Use #' instead of ' to quote functions.
19150         (checkdoc-output-mode): Use setq-local.
19151         (checkdoc-spellcheck-documentation-flag, checkdoc-ispell-lisp-words)
19152         (checkdoc-verb-check-experimental-flag, checkdoc-proper-noun-regexp)
19153         (checkdoc-common-verbs-regexp): Mark safe-local-variable (bug#15010).
19154         (checkdoc-ispell, checkdoc-ispell-current-buffer)
19155         (checkdoc-ispell-interactive, checkdoc-ispell-message-interactive)
19156         (checkdoc-ispell-message-text, checkdoc-ispell-start)
19157         (checkdoc-ispell-continue, checkdoc-ispell-comments)
19158         (checkdoc-ispell-defun): Remove unused arg `take-notes'.
19160         * ido.el (ido-completion-help): Fix up compiler warning.
19162 2013-08-09  Juanma Barranquero  <lekktu@gmail.com>
19164         * frameset.el (frameset-p): Add autoload cookie.
19165         (frameset--jump-to-register): New function, based on code moved from
19166         register.el.
19167         (frameset-to-register): Move from register.el.  Adapt to `registerv'.
19169         * register.el (frameset-frame-id, frameset-frame-with-id, frameset-p)
19170         (frameset-restore, frameset-save, frameset-session-filter-alist):
19171         Remove declarations.
19172         (register-alist): Doc fix.
19173         (frameset-to-register): Move to frameset.el.
19174         (jump-to-register, describe-register-1): Remove frameset-specific code.
19176 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
19178         * allout-widgets.el (allout-widgets-pre-command-business)
19179         (allout-widgets-post-command-business)
19180         (allout-widgets-after-change-handler)
19181         (allout-decorate-item-and-context, allout-set-boundary-marker)
19182         (allout-body-modification-handler)
19183         (allout-graphics-modification-handler): Mark ignored arguments.
19184         (allout-widgets-post-command-business)
19185         (allout-widgets-exposure-change-processor)
19186         (allout-widgets-exposure-undo-processor)
19187         (allout-decorate-item-and-context, allout-redecorate-visible-subtree)
19188         (allout-parse-item-at-point, allout-decorate-item-guides)
19189         (allout-decorate-item-cue, allout-item-span): Remove unused variables.
19190         * allout.el (epa-passphrase-callback-function): Declare.
19191         (allout-overlay-insert-in-front-handler)
19192         (allout-overlay-interior-modification-handler)
19193         (allout-isearch-end-handler, allout-chart-siblings)
19194         (allout-up-current-level, allout-end-of-level, allout-reindent-body)
19195         (allout-yank-processing, allout-process-exposed)
19196         (allout-latex-verb-quote, allout-latexify-one-item, outlineify-sticky)
19197         (allout-latex-verbatim-quote-curr-line): Remove unused variables.
19198         * emacs-lisp/lisp-mode.el (lisp-eval-defun, last-sexp-toggle-display)
19199         (lisp-indent-defform): Mark ignored arguments.
19200         (lisp-indent-line): Mark ignored arguments.  Remove unused variables.
19201         (calculate-lisp-indent): Remove unused variables.
19202         * international/characters.el (indian-2-column, arabic-2-column)
19203         (tibetan): Mark ignored arguments.
19204         (use-cjk-char-width-table): Mark ignored arguments.
19205         Remove unused variables.
19206         * international/fontset.el (build-default-fontset-data)
19207         (x-compose-font-name, create-fontset-from-fontset-spec):
19208         Mark ignored arguments.
19209         (fontset-plain-name): Remove unused variables.
19210         * international/mule.el (charset-id, charset-bytes, generic-char-p)
19211         (keyboard-coding-system): Mark ignored arguments.
19212         (find-auto-coding): Remove unused variables.  Use `ignore-errors'.
19213         * help.el (resize-temp-buffer-window):
19214         * window.el (display-buffer-in-major-side-window)
19215         (display-buffer-in-side-window, display-buffer-in-previous-window):
19216         Remove unused variables.
19217         * isearch.el (isearch-forward-symbol):
19218         * version.el (emacs-bzr-version-bzr):
19219         * international/mule-cmds.el (current-language-environment):
19220         * term/common-win.el (x-handle-iconic, x-handle-geometry)
19221         (x-handle-display):
19222         * term/pc-win.el (x-list-fonts, x-display-planes)
19223         (x-display-color-cells, x-server-max-request-size, x-server-vendor)
19224         (x-server-version, x-display-screens, x-display-mm-height)
19225         (x-display-mm-width, x-display-backing-store, x-display-visual-class)
19226         (x-selection-owner-p, x-own-selection-internal)
19227         (x-disown-selection-internal, x-get-selection-internal)
19228         (msdos-initialize-window-system):
19229         * term/tty-colors.el (tty-color-alist, tty-color-clear):
19230         * term/x-win.el (x-handle-no-bitmap-icon):
19231         * vc/vc-hooks.el (vc-mode, vc-default-make-version-backups-p)
19232         (vc-default-find-file-hook, vc-default-extra-menu):
19233         Mark ignored arguments.
19235 2013-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
19237         * emacs-lisp/edebug.el (edebug-debugger): Use edebug-eval to run the
19238         break-condition in the context of the debugged code (bug#12685).
19240 2013-08-08  Christopher Schmidt  <christopher@ch.ristopher.com>
19242         * comint.el:
19243         Do not use an overlay to highlight the last prompt.  (Bug#14744)
19244         (comint-mode): Make comint-last-prompt buffer local.
19245         (comint-last-prompt): New variable.
19246         (comint-last-prompt-overlay): Remove.  Superseded by
19247         comint-last-prompt.
19248         (comint-snapshot-last-prompt, comint-output-filter):
19249         Use comint-last-prompt.
19251 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
19253         * frameset.el (frameset-valid-p): Check vector length.  Doc fix.
19254         (frameset-save): Check validity of the resulting frameset.
19256 2013-08-08  Xue Fuqiao  <xfq.free@gmail.com>
19258         * ido.el (ido-record-command): Add doc string.
19260 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
19262         * frameset.el (frameset): Do not disable creation of the default
19263         frameset-p predicate.  Doc fix.
19264         (frameset-valid-p): New function, copied from the old predicate-p.
19265         Add additional checks.
19266         (frameset-restore): Check with frameset-valid-p.
19267         (frameset-p, frameset-version, frameset-timestamp, frameset-app)
19268         (frameset-name, frameset-description, frameset-properties)
19269         (frameset-states): Add docstring.
19270         (frameset-session-filter-alist, frameset-persistent-filter-alist)
19271         (frameset-filter-alist): Doc fixes.
19273 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
19275         * frameset.el (frameset-p, frameset-prop): Doc fixes.
19277 2013-08-08  Stefan Monnier  <monnier@iro.umontreal.ca>
19279         * emacs-lisp/bytecomp.el (byte-compile-function-warn): New function,
19280         extracted from byte-compile-callargs-warn and byte-compile-normal-call.
19281         (byte-compile-callargs-warn, byte-compile-function-form): Use it.
19282         (byte-compile-normal-call): Remove obsolescence check.
19284 2013-08-08  Juanma Barranquero  <lekktu@gmail.com>
19286         * frameset.el (frameset-restore): Doc fix.
19288         * register.el (frameset-frame-id, frameset-frame-with-id)
19289         (frameset-p, frameset-restore, frameset-save): Declare.
19290         (register-alist): Document framesets.
19291         (frameset-session-filter-alist): Declare.
19292         (frameset-to-register): New function.
19293         (jump-to-register): Implement jumping to framesets.  Doc fix.
19294         (describe-register-1): Describe framesets.
19296         * bindings.el (ctl-x-r-map): Bind ?f to frameset-to-register.
19298 2013-08-07  Juanma Barranquero  <lekktu@gmail.com>
19300         * desktop.el (desktop-save-frameset): Use new frameset-save args.
19301         Use lexical-binding.
19303         * frameset.el (frameset): Use type vector, not list (incompatible
19304         change).  Do not declare a new constructor, use the default one.
19305         Upgrade suggested properties `app', `name' and `desc' to slots `app',
19306         `name' and `description', respectively, and add read-only slot
19307         `timestamp'.  Doc fixes.
19308         (frameset-copy, frameset-persistent-filter-alist)
19309         (frameset-filter-alist, frameset-switch-to-gui-p)
19310         (frameset-switch-to-tty-p, frameset-filter-tty-to-GUI)
19311         (frameset-filter-sanitize-color, frameset-filter-minibuffer)
19312         (frameset-filter-iconified, frameset-keep-original-display-p):
19313         Doc fixes.
19314         (frameset-filter-shelve-param, frameset-filter-unshelve-param):
19315         Rename from frameset-filter-(save|restore)-param.  All callers changed.
19316         Doc fix.
19317         (frameset-p): Adapt to change to vector and be more thorough.
19318         Change arg name to OBJECT.  Doc fix.
19319         (frameset-prop): Rename arg PROP to PROPERTY.  Doc fix.
19320         (frameset-session-filter-alist): Rename from frameset-live-filter-alist.
19321         All callers changed.
19322         (frameset-frame-with-id): Rename from frameset-locate-frame-id.
19323         All callers changed.
19324         (frameset--record-minibuffer-relationships): Rename from
19325         frameset--process-minibuffer-frames.  All callers changed.
19326         (frameset-save): Add new keyword arguments APP, NAME and DESCRIPTION.
19327         Use new default constructor (again).  Doc fix.
19328         (frameset--find-frame-if): Rename from `frameset--find-frame'.
19329         All callers changed.
19330         (frameset--reuse-frame): Rename arg FRAME-CFG to PARAMETERS.
19331         (frameset--initial-params): Rename arg FRAME-CFG to PARAMETERS.
19332         Doc fix.
19333         (frameset--restore-frame): Rename args FRAME-CFG and WINDOW-CFG to
19334         PARAMETERS and WINDOW-STATE, respectively.
19335         (frameset-restore): Add new keyword argument PREDICATE.
19336         Reset frameset--target-display to nil.  Doc fix.
19338 2013-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
19340         * progmodes/bat-mode.el (bat--syntax-propertize): New var.
19341         (bat-mode): Use it.
19342         (bat-mode-syntax-table): Mark \n as end-of-comment.
19343         (bat-font-lock-keywords): Remove comment rule.
19345         * progmodes/bat-mode.el: Rename from dos.el.  Use "bat-" prefix.
19346         (dos-mode-help): Remove.  Use describe-mode (C-h m) instead.
19348         * emacs-lisp/bytecomp.el: Check existence of f in #'f.
19349         (byte-compile-callargs-warn): Use `push'.
19350         (byte-compile-arglist-warn): Ignore higher-order "calls".
19351         (byte-compile-file-form-autoload): Use `pcase'.
19352         (byte-compile-function-form): If quoting a symbol, check that it exists.
19354 2013-08-07  Eli Zaretskii  <eliz@gnu.org>
19356         * progmodes/dos.el (dos-font-lock-keywords): Rename LINUX to UNIX
19357         and add a few popular commands found in batch files.
19358         (dos, dos-label-face, dos-cmd-help, dos-run, dos-run-args)
19359         (dos-mode): Doc fixes.
19361 2013-08-07  Stefan Monnier  <monnier@iro.umontreal.ca>
19363         * progmodes/dos.el (auto-mode-alist): Add entries for dos-mode.
19364         (dos-mode): Use setq-local.  Add space after "rem".
19365         (dos-mode-syntax-table): Don't use "w" for symbol chars.
19366         (dos-font-lock-keywords): Try to adjust font-lock rules accordingly.
19368 2013-08-07  Arni Magnusson  <arnima@hafro.is>
19370         * progmodes/dos.el: New file.
19371         * generic-x.el (bat-generic-mode): Redefine as an obsolete alias to
19372         dos-mode.
19374 2013-08-06  Glenn Morris  <rgm@gnu.org>
19376         * calendar/calendar.el: Add new faces, and day-header-array.
19377         (calendar-weekday-header, calendar-weekend-header)
19378         (calendar-month-header): New faces.
19379         (calendar-day-header-construct): New function.
19380         (calendar-day-header-width): Also :set calendar-day-header-array.
19381         (calendar-american-month-header, calendar-european-month-header)
19382         (calendar-iso-month-header): Use calendar- faces.
19383         (calendar-generate-month):
19384         Use calendar-day-header-array for day headers; apply faces to them.
19385         (calendar-mode): Check calendar-font-lock-keywords non-nil.
19386         (calendar-abbrev-construct): Add optional maxlen argument.
19387         (calendar-day-name-array): Doc fix.
19388         (calendar-day-name-array, calendar-abbrev-length)
19389         (calendar-day-abbrev-array):
19390         Also :set calendar-day-header-array, and maybe redraw.
19391         (calendar-day-header-array): New option.  (Bug#15007)
19392         (calendar-font-lock-keywords): Set to nil and make obsolete.
19393         (calendar-day-name): Add option to use header array.
19395 2013-08-06  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19397         * net/shr.el (shr-render-td): Remove debugging.
19398         (shr-render-td): Make width computation consistent by defaulting
19399         all zero-width columns to 10 characters.  This may not be optimal,
19400         but it's at least consistent.
19401         (shr-make-table-1): Redo last change to fix the real problem in
19402         colspan handling.
19404 2013-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
19406         * files.el (cache-long-line-scans):
19407         Make obsolete alias to `cache-long-scans'.
19409 2013-08-06  Juanma Barranquero  <lekktu@gmail.com>
19411         * frameset.el (frameset, frameset-filter-alist)
19412         (frameset-filter-params, frameset-save, frameset--reuse-frame)
19413         (frameset--minibufferless-last-p, frameset-restore): Doc fixes.
19414         (frameset-compute-pos): Rename from frameset--compute-pos,
19415         and add docstring.
19416         (frameset-move-onscreen): Use frameset-compute-pos.
19417         Most changes suggested by Drew Adams <drew.adams@oracle.com>.
19419         * find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
19420         Fix typos in docstrings.
19422 2013-08-06  Dmitry Antipov  <dmantipov@yandex.ru>
19424         * frame.el (get-other-frame): Tiny cleanup.
19426 2013-08-06  Juanma Barranquero  <lekktu@gmail.com>
19428         * vc/vc.el (vc-default-ignore-completion-table):
19429         Silence byte-compiler warning.
19431         * frameset.el (frameset-p): Don't check non-nullness of the `properties'
19432         slot, which can indeed be nil.
19433         (frameset-live-filter-alist, frameset-persistent-filter-alist):
19434         Move entry for `left' from persistent to live filter alist.
19435         (frameset-filter-alist, frameset--minibufferless-last-p, frameset-save):
19436         Doc fixes.
19437         (frameset-filter-params): When restoring a frame, copy items added to
19438         `filtered', to avoid unwittingly modifying the original parameters.
19439         (frameset-move-onscreen): Rename from frameset--move-onscreen.  Doc fix.
19440         (frameset--restore-frame): Fix reference to frameset-move-onscreen.
19442         * dired.el (dired-insert-directory): Revert change in 2013-06-21T12:24:37Z!lekktu@gmail.com
19443         to use looking-at-p instead of looking-at.  (Bug#15028)
19445 2013-08-05  Stefan Monnier  <monnier@iro.umontreal.ca>
19447         Revert introduction of isearch-filter-predicates (bug#14714).
19448         Rely on add-function instead.
19449         * isearch.el (isearch-filter-predicates): Rename it back to
19450         isearch-filter-predicate.
19451         (isearch-message-prefix): Use advice-function-mapc and advice
19452         properties to get the isearch-message-prefix.
19453         (isearch-search, isearch-lazy-highlight-search): Revert to funcall
19454         instead of run-hook-with-args-until-failure.
19455         (isearch-filter-visible): Not obsolete any more.
19456         * loadup.el: Preload nadvice.
19457         * replace.el (perform-replace): Revert to funcall
19458         instead of run-hook-with-args-until-failure.
19459         * wdired.el (wdired-change-to-wdired-mode): Use add-function.
19460         * dired-aux.el (dired-isearch-filenames-mode): Rename from
19461         dired-isearch-filenames-toggle; make it into a proper minor mode.
19462         Use add/remove-function.
19463         (dired-isearch-filenames-setup, dired-isearch-filenames-end):
19464         Call the minor-mode rather than add/remove-hook.
19465         (dired-isearch-filter-filenames):
19466         Remove isearch-message-prefix property.
19467         * info.el (Info--search-loop): New function, extracted from Info-search.
19468         Funcall isearch-filter-predicate instead of
19469         run-hook-with-args-until-failure isearch-filter-predicates.
19470         (Info-search): Use it.
19471         (Info-mode): Use isearch-filter-predicate instead of
19472         isearch-filter-predicates.
19474 2013-08-05  Dmitry Antipov  <dmantipov@yandex.ru>
19476         Do not call to `selected-window' where it is assumed by default.
19477         Affected functions are `window-minibuffer-p', `window-dedicated-p',
19478         `window-hscroll', `window-width', `window-height', `window-buffer',
19479         `window-frame', `window-start', `window-point', `next-window'
19480         and `window-display-table'.
19481         * abbrev.el (abbrev--default-expand):
19482         * bs.el (bs--show-with-configuration):
19483         * buff-menu.el (Buffer-menu-mouse-select):
19484         * calc/calc.el (calc):
19485         * calendar/calendar.el (calendar-generate-window):
19486         * calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
19487         (diary-make-entry):
19488         * comint.el (send-invisible, comint-dynamic-complete-filename)
19489         (comint-dynamic-simple-complete, comint-dynamic-list-completions):
19490         * completion.el (complete):
19491         * dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
19492         * disp-table.el (describe-current-display-table):
19493         * doc-view.el (doc-view-insert-image):
19494         * ebuff-menu.el (Electric-buffer-menu-mouse-select):
19495         * ehelp.el (with-electric-help):
19496         * emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
19497         * emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
19498         * emacs-lisp/helper.el (Helper-help-scroller):
19499         * emulation/cua-base.el (cua--post-command-handler-1):
19500         * eshell/esh-mode.el (eshell-output-filter):
19501         * ffap.el (ffap-gnus-wrapper):
19502         * help-macro.el (make-help-screen):
19503         * hilit-chg.el (highlight-compare-buffers):
19504         * hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
19505         * hl-line.el (global-hl-line-highlight):
19506         * icomplete.el (icomplete-simple-completing-p):
19507         * isearch.el (isearch-done):
19508         * jit-lock.el (jit-lock-stealth-fontify):
19509         * mail/rmailsum.el (rmail-summary-scroll-msg-up):
19510         * mouse-drag.el (mouse-drag-should-do-col-scrolling):
19511         * mpc.el (mpc-tagbrowser, mpc):
19512         * net/rcirc.el (rcirc-any-buffer):
19513         * play/gomoku.el (gomoku-max-width, gomoku-max-height):
19514         * play/landmark.el (landmark-max-width, landmark-max-height):
19515         * play/zone.el (zone):
19516         * progmodes/compile.el (compilation-goto-locus):
19517         * progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
19518         * progmodes/etags.el (find-tag-other-window):
19519         * progmodes/fortran.el (fortran-column-ruler):
19520         * progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
19521         * progmodes/verilog-mode.el (verilog-point-text):
19522         * reposition.el (reposition-window):
19523         * rot13.el (toggle-rot13-mode):
19524         * server.el (server-switch-buffer):
19525         * shell.el (shell-dynamic-complete-command)
19526         (shell-dynamic-complete-environment-variable):
19527         * simple.el (insert-buffer, set-selective-display)
19528         (delete-completion-window):
19529         * speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
19530         (speedbar-recenter):
19531         * startup.el (fancy-splash-head):
19532         * textmodes/ispell.el (ispell-command-loop):
19533         * textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
19534         * tutorial.el (help-with-tutorial):
19535         * vc/add-log.el (add-change-log-entry):
19536         * vc/compare-w.el (compare-windows):
19537         * vc/ediff-help.el (ediff-indent-help-message):
19538         * vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
19539         * vc/ediff-wind.el (ediff-skip-unsuitable-frames)
19540         (ediff-setup-control-frame):
19541         * vc/emerge.el (emerge-position-region):
19542         * vc/pcvs-util.el (cvs-bury-buffer):
19543         * window.el (walk-windows, mouse-autoselect-window-select):
19544         * winner.el (winner-set-conf, winner-undo): Related users changed.
19546 2013-08-05  Juanma Barranquero  <lekktu@gmail.com>
19548         * frameset.el (frameset--set-id): Doc fix.
19549         (frameset-frame-id, frameset-frame-id-equal-p)
19550         (frameset-locate-frame-id): New functions.
19551         (frameset--process-minibuffer-frames, frameset--reuse-frame)
19552         (frameset-restore): Use them.
19554 2013-08-05  Dmitry Antipov  <dmantipov@yandex.ru>
19556         Do not call to `selected-frame' where it is assumed by default.
19557         Affected functions are `raise-frame', `redraw-frame',
19558         `frame-first-window', `frame-terminal' and `delete-frame'.
19559         * calendar/appt.el (appt-disp-window):
19560         * epg.el (epg-wait-for-completion):
19561         * follow.el (follow-delete-other-windows-and-split)
19562         (follow-avoid-tail-recenter):
19563         * international/mule.el (set-terminal-coding-system):
19564         * mail/rmail.el (rmail-mail-return):
19565         * net/newst-plainview.el (newsticker--buffer-set-uptodate):
19566         * progmodes/f90.el (f90-add-imenu-menu):
19567         * progmodes/idlw-toolbar.el (idlwave-toolbar-toggle):
19568         * server.el (server-switch-buffer):
19569         * simple.el (delete-completion-window):
19570         * talk.el (talk):
19571         * term/xterm.el (terminal-init-xterm-modify-other-keys)
19572         (xterm-turn-on-modify-other-keys, xterm-remove-modify-other-keys):
19573         * vc/ediff-util.el (ediff-status-info, ediff-show-diff-output):
19574         * vc/ediff.el (ediff-documentation): Related users changed.
19575         * frame.el (selected-terminal): Remove the leftover.
19577 2013-08-05  Glenn Morris  <rgm@gnu.org>
19579         * calendar/calendar.el (calendar-generate-month):
19580         Fix for calendar-column-width != 1 + calendar-day-digit-width.
19581         (calendar-generate-month, calendar-font-lock-keywords):
19582         Fix for calendar-day-header-width > length of any day name.
19584 2013-08-05  Juanma Barranquero  <lekktu@gmail.com>
19586         * desktop.el (desktop-clear): Use new name of sort predicate.
19588         * frameset.el (frameset): Add docstring.  Move :version property to its
19589         own `version' slot.
19590         (frameset-copy): Rename from copy-frameset.
19591         (frameset-p): Check more thoroughly.
19592         (frameset-prop): Do not check for :version, which is no longer a prop.
19593         (frameset-live-filter-alist, frameset-persistent-filter-alist):
19594         Use new :never value instead of t.
19595         (frameset-filter-alist): Expand and clarify docstring.
19596         (frameset-filter-tty-to-GUI, frameset-filter-sanitize-color)
19597         (frameset-filter-minibuffer, frameset-filter-save-param)
19598         (frameset-filter-restore-param, frameset-filter-iconified):
19599         Add pointer to docstring of frameset-filter-alist.
19600         (frameset-filter-params): Rename filter values to be more meaningful:
19601         :never instead of t, and reverse the meanings of :save and :restore.
19602         (frameset--process-minibuffer-frames): Clarify error message.
19603         (frameset-save): Avoid unnecessary and confusing call to framep.
19604         Use new BOA constructor for framesets.
19605         (frameset--reuse-list): Doc fix.
19606         (frameset--restore-frame): Rename from frameset--get-frame.  Doc fix.
19607         (frameset--minibufferless-last-p): Rename from frameset--sort-states.
19608         (frameset-minibufferless-first-p): Doc fix.
19609         Rename from frameset-sort-frames-for-deletion.
19610         (frameset-restore): Doc fixes.  Use new function names.
19611         Most changes suggested by Drew Adams <drew.adams@oracle.com>.
19613 2013-08-04  Juanma Barranquero  <lekktu@gmail.com>
19615         * desktop.el (desktop-restore-forces-onscreen)
19616         (desktop-restore-reuses-frames): Document :keyword constant values.
19617         (desktop-filter-parameters-alist): Remove, now identical to
19618         frameset-filter-alist.
19619         (desktop--filter-tty*): Remove, moved to frameset.el.
19620         (desktop-save-frameset, desktop-restore-frameset):
19621         Do not pass :filters argument.
19623         * frameset.el (frameset-live-filter-alist)
19624         (frameset-persistent-filter-alist): New variables.
19625         (frameset-filter-alist): Use them.  Add autoload cookie.
19626         (frameset-filter-tty-to-GUI): Move from desktop.el and rename.
19627         (frameset--set-id, frameset--reuse-frame): Rename `frame-id' to
19628         `frameset--id' (it's supposed to be internal to frameset.el).
19629         (frameset--process-minibuffer-frames): Ditto.  Doc fix.
19630         (frameset--initial-params): New function.
19631         (frameset--get-frame): Use it.  Doc fix.
19632         (frameset--move-onscreen): Accept new PRED value for FORCE-ONSCREEN.
19633         Accept :all, not 'all.
19634         (frameset-restore): Add new predicate values for FORCE-ONSCREEN and
19635         FORCE-DISPLAY.  Use :keywords for constant arguments to avoid collision
19636         with fbound symbols.  Fix frame id matching, and remove matching ids if
19637         the frame being restored is deleted.  Obey :delete.
19639 2013-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
19641         * subr.el (macrop): New function.
19642         (text-clone--maintaining): New var.
19643         (text-clone--maintain): Rename from text-clone-maintain.  Use it
19644         instead of inhibit-modification-hooks.
19646         * emacs-lisp/nadvice.el (advice--normalize): For aliases to macros, use
19647         a proxy, so as handle autoloads and redefinitions of the target.
19648         (advice--defalias-fset, advice-remove): Use advice--symbol-function.
19650         * emacs-lisp/pcase.el (pcase-mutually-exclusive-predicates):
19651         Remove bogus (arrayp . stringp) pair.  Add entries for `vectorp'.
19652         (pcase--mutually-exclusive-p): New function.
19653         (pcase--split-consp): Use it.
19654         (pcase--split-pred): Use it.  Optimize the case where `pat' is a qpat
19655         mutually exclusive with the current predicate.
19657         * emacs-lisp/edebug.el (edebug-lookup-function): Remove function.
19658         (edebug-macrop): Remove.  Use `macrop' instead.
19659         * emacs-lisp/advice.el (ad-subr-p): Remove.  Use `subrp' instead.
19660         (ad-macro-p):
19661         * eshell/esh-cmd.el (eshell-macrop):
19662         * apropos.el (apropos-macrop): Remove.  Use `macrop' instead.
19664 2013-08-04  Stefan Monnier  <monnier@iro.umontreal.ca>
19666         * emacs-lisp/nadvice.el (advice-function-mapc): Rename from advice-mapc.
19667         (advice-mapc): New function, using it.
19668         (advice-function-member-p): New function.
19669         (advice--normalize): Store the cdr in advice--saved-rewrite since
19670         that's the part that will be changed.
19671         (advice--symbol-function): New function.
19672         (advice-remove): Handle removal before the function is defined.
19673         Adjust to new advice--saved-rewrite.
19674         (advice-member-p): Use advice-function-member-p and
19675         advice--symbol-function.
19677 2013-08-04  Juanma Barranquero  <lekktu@gmail.com>
19679         * frameset.el (frameset-p, frameset-save): Fix autoload cookies.
19680         (frameset-filter-minibuffer): Doc fix.
19681         (frameset-restore): Fix autoload cookie.  Fix typo in docstring.
19682         (frameset--set-id, frameset--process-minibuffer-frames)
19683         (frameset-restore): Rename parameter `frameset-id' to `frame-id'.
19684         (frameset--reuse-frame): Pass correct frame-id to frameset--find-frame.
19686         * desktop.el (desktop-clear): Only delete frames when called
19687         interactively and desktop-restore-frames is non-nil.  Doc fix.
19688         (desktop-read): Set desktop-saved-frameset to nil.
19690 2013-08-04  Xue Fuqiao  <xfq.free@gmail.com>
19692         * vc/vc.el (vc-ignore): Rewrite.
19693         (vc-default-ignore-completion-table, vc--read-lines)
19694         (vc--add-line, vc--remove-regexp): New functions.
19696         * vc/vc-svn.el (vc-svn-ignore): Doc fix.
19697         (vc-svn-ignore-completion-table): New function.
19699         * vc/vc-hg.el (vc-hg-ignore): Rewrite.
19700         (vc-hg-ignore-completion-table)
19701         (vc-hg-find-ignore-file): New functions.
19703         * vc/vc-git.el (vc-git-ignore): Rewrite.
19704         (vc-git-ignore-completion-table)
19705         (vc-git-find-ignore-file): New functions.
19707         * vc/vc-dir.el (vc-dir-menu-map): Add menu for vc-dir-ignore.
19709         * vc/vc-bzr.el (vc-bzr-ignore): Rewrite.
19710         (vc-bzr-ignore-completion-table)
19711         (vc-bzr-find-ignore-file): New functions.
19713 2013-08-03  Juanma Barranquero  <lekktu@gmail.com>
19715         * frameset.el (frameset-prop): New function and setter.
19716         (frameset-save): Do not modify frame list passed by the caller.
19718 2013-08-03  Stefan Monnier  <monnier@iro.umontreal.ca>
19720         * emacs-lisp/package.el (package-desc-from-define): Ignore unknown keys.
19722 2013-08-02  Stefan Monnier  <monnier@iro.umontreal.ca>
19724         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode)
19725         (easy-mmode-define-navigation): Avoid ((lambda (..) ..) ...).
19727         * custom.el (custom-initialize-default, custom-initialize-set)
19728         (custom-initialize-reset, custom-initialize-changed): Affect the
19729         toplevel-default-value (bug#6275, bug#14586).
19730         * emacs-lisp/advice.el (ad-compile-function): Undo previous workaround
19731         for bug#6275.
19733 2013-08-02  Juanma Barranquero  <lekktu@gmail.com>
19735         * emacs-lisp/lisp-mode.el (lisp-imenu-generic-expression):
19736         Add cl-def* expressions.
19738         * frameset.el (frameset-filter-params): Fix order of arguments.
19740 2013-08-02  Juanma Barranquero  <lekktu@gmail.com>
19742         Move code related to saving frames to frameset.el.
19743         * desktop.el: Require frameset.
19744         (desktop-restore-frames): Doc fix.
19745         (desktop-restore-reuses-frames): Rename from
19746         desktop-restoring-reuses-frames.
19747         (desktop-saved-frameset): Rename from desktop-saved-frame-states.
19748         (desktop-clear): Clear frames too.
19749         (desktop-filter-parameters-alist): Set from frameset-filter-alist.
19750         (desktop--filter-tty*, desktop-save, desktop-read):
19751         Use frameset functions.
19752         (desktop-before-saving-frames-functions, desktop--filter-*-color)
19753         (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
19754         (desktop--filter-save-desktop-parm, desktop--filter-iconified-position)
19755         (desktop-restore-in-original-display-p, desktop--filter-frame-parms)
19756         (desktop--process-minibuffer-frames, desktop-save-frames)
19757         (desktop--reuse-list, desktop--compute-pos, desktop--move-onscreen)
19758         (desktop--find-frame, desktop--select-frame, desktop--make-frame)
19759         (desktop--sort-states, desktop-restoring-frames-p)
19760         (desktop-restore-frames): Remove.  Most code moved to frameset.el.
19761         (desktop-restoring-frameset-p, desktop-restore-frameset)
19762         (desktop--check-dont-save, desktop-save-frameset): New functions.
19763         (desktop--app-id): New constant.
19764         (desktop-first-buffer, desktop-buffer-ok-count)
19765         (desktop-buffer-fail-count): Move before first use.
19766         * frameset.el: New file.
19768 2013-08-01  Stefan Monnier  <monnier@iro.umontreal.ca>
19770         * files.el: Use lexical-binding.
19771         (dir-locals-read-from-file): Remove unused `err' variable.
19772         (hack-dir-local-variables--warned-coding): New var.
19773         (hack-dir-local-variables): Use it to avoid repeated warnings.
19774         (make-backup-file-name--default-function): New function.
19775         (make-backup-file-name-function): Use it as default.
19776         (buffer-stale--default-function): New function.
19777         (buffer-stale-function): Use it as default.
19778         (revert-buffer-insert-file-contents--default-function): New function.
19779         (revert-buffer-insert-file-contents-function): Use it as default.
19780         (insert-directory): Avoid add-to-list.
19782         * autorevert.el (auto-revert-handler): Simplify.
19783         Use buffer-stale--default-function.
19785 2013-08-01  Tassilo Horn  <tsdh@gnu.org>
19787         * speedbar.el (speedbar-query-confirmation-method): Doc fix.
19789         * whitespace.el (whitespace-ensure-local-variables): New function.
19790         (whitespace-cleanup-region): Call it.
19791         (whitespace-turn-on): Call it.
19793 2013-08-01  Michael Albinus  <michael.albinus@gmx.de>
19795         Complete file name handlers.
19797         * net/tramp.el (tramp-handle-set-visited-file-modtime)
19798         (tramp-handle-verify-visited-file-modtime)
19799         (tramp-handle-file-notify-rm-watch): New functions.
19800         (tramp-call-process): Do not bind `default-directory'.
19802         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
19803         Order alphabetically.
19804         <access-file, add-name-to-file, dired-call-process>:
19805         <dired-compress-file, file-acl, file-notify-rm-watch>:
19806         <file-ownership-preserved-p, file-selinux-context>:
19807         <make-directory-internal, make-symbolic-link, set-file-acl>:
19808         <set-file-selinux-context, set-visited-file-modtime>:
19809         <verify-visited-file-modtime>: Add handler.
19810         (tramp-adb-handle-write-region): Apply `set-visited-file-modtime'.
19812         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist)
19813         <file-notify-add-watch, file-notify-rm-watch>:
19814         <set-file-times, set-visited-file-modtime>:
19815         <verify-visited-file-modtime>: Add handler.
19816         (with-tramp-gvfs-error-message)
19817         (tramp-gvfs-handle-set-visited-file-modtime)
19818         (tramp-gvfs-fuse-file-name): Remove.
19819         (tramp-gvfs-handle-file-notify-add-watch)
19820         (tramp-gvfs-file-gvfs-monitor-file-process-filter): New defuns.
19821         (tramp-gvfs-handle-write-region): Fix error in moving tmpfile.
19823         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
19824         Order alphabetically.
19825         <file-notify-rm-watch>: Use default Tramp handler.
19826         <executable-find>: Remove private handler.
19827         (tramp-do-copy-or-rename-file-out-of-band): Do not bind
19828         `default-directory'.
19829         (tramp-sh-handle-executable-find)
19830         (tramp-sh-handle-file-notify-rm-watch): Remove functions.
19831         (tramp-sh-file-gvfs-monitor-dir-process-filter)
19832         (tramp-sh-file-inotifywait-process-filter, tramp-set-remote-path):
19833         Do not use `format' in `tramp-message'.
19835         * net/tramp-smb.el (tramp-smb-file-name-handler-alist)
19836         <file-notify-rm-watch, set-visited-file-modtime>:
19837         <verify-visited-file-modtime>: Add handler.
19838         (tramp-smb-call-winexe): Do not bind `default-directory'.
19840 2013-08-01  Xue Fuqiao  <xfq.free@gmail.com>
19842         * vc/vc-hooks.el (vc-menu-map): Fix menu entry for vc-ignore.
19844 2013-07-31  Dmitry Gutov  <dgutov@yandex.ru>
19846         * vc/log-view.el (log-view-diff): Extract `log-view-diff-common',
19847         use it.
19848         (log-view-diff-changeset): Same.
19849         (log-view-diff-common): Call backend command `previous-revision'
19850         to find out the previous revision, in both cases.  Swap the
19851         variables `to' and `fr', so that `fr' usually refers to the
19852         earlier revision (Bug#14989).
19854 2013-07-31  Kan-Ru Chen  <kanru@kanru.info>
19856         * ibuf-ext.el (ibuffer-filter-by-filename):
19857         Make it work with dired buffers too.
19859 2013-07-31  Dmitry Antipov  <dmantipov@yandex.ru>
19861         * emacs-lisp/re-builder.el (reb-color-display-p):
19862         * files.el (save-buffers-kill-terminal):
19863         * net/browse-url.el (browse-url):
19864         * server.el (server-save-buffers-kill-terminal):
19865         * textmodes/reftex-toc.el (reftex-toc, reftex-toc-revert):
19866         Prefer nil to selected-frame for the first arg of frame-parameter.
19868 2013-07-31  Xue Fuqiao  <xfq.free@gmail.com>
19870         * vc/vc-hooks.el (vc-menu-map): Add menu entry for vc-ignore.
19872 2013-07-30  Stephen Berman  <stephen.berman@gmx.net>
19874         * minibuffer.el (completion--twq-all): Try and preserve each
19875         completion's case choice (bug#14907).
19877 2013-07-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
19879         * net/network-stream.el (open-network-stream): Mention the new
19880         :nogreeting parameter.
19881         (network-stream-open-starttls): Use the :nogreeting parameter
19882         (bug#14938).
19884         * net/shr.el (shr-mouse-browse-url): Remove and use `shr-browse-url'.
19886         * net/eww.el (eww-setup-buffer): Switching to the buffer seems
19887         more natural than popping.
19889         * net/shr.el (shr-urlify): Put `follow-link' on URLs (bug#14815).
19890         (shr-urlify): Highlight under mouse.
19892 2013-07-30  Xue Fuqiao  <xfq.free@gmail.com>
19894         * vc/vc-hooks.el (vc-prefix-map): Add key binding for vc-ignore.
19896         * vc/vc-dir.el (vc-dir-mode-map): Change key binding for vc-dir-ignore.
19898         * vc/vc-svn.el (vc-svn-ignore): Remove `interactive'.  Use `*vc*'
19899         buffer for output.
19901         * vc/vc-hg.el (vc-hg-ignore): Remove `interactive'.  Do not assume
19902         point-min==1.  Fix search string.  Fix parentheses missing.
19904         * vc/vc-git.el (vc-git-ignore): Remove `interactive'.  Do not
19905         assume point-min==1.  Fix search string.  Fix parentheses missing.
19907         * vc/vc-cvs.el (vc-cvs-ignore): Remove `interactive'.
19909         * vc/vc-bzr.el (vc-bzr-ignore): Remove `interactive'.  Use `*vc*'
19910         buffer for output.
19912 2013-07-29  Eli Zaretskii  <eliz@gnu.org>
19914         * frame.el (frame-notice-user-settings): Avoid inflooping when the
19915         initial frame is minibuffer-less.  (Bug#14841)
19917 2013-07-29  Michael Albinus  <michael.albinus@gmx.de>
19919         * net/tramp.el (tramp-use-ssh-controlmaster-options): New customer
19920         option.
19922         * net/tramp-sh.el (tramp-do-copy-or-rename-file-out-of-band)
19923         (tramp-maybe-open-connection): Use it.
19925 2013-07-28  Juanma Barranquero  <lekktu@gmail.com>
19927         * desktop.el (desktop--make-frame): Include `minibuffer' in the
19928         minimal set of parameters passed when creating a frame, because
19929         the minibuffer status of a frame cannot be changed later.
19931 2013-07-28  Stephen Berman  <stephen.berman@gmx.net>
19933         * calendar/todo-mode.el (todo-rename-file): Fix incorrect use of
19934         replace-regexp-in-string and inadvertent omissions in previous change.
19935         (todo-filter-items): Ensure only file names are comma-separated in
19936         name of filtered items buffer.
19938 2013-07-28  Juanma Barranquero  <lekktu@gmail.com>
19940         * desktop.el: Optionally force offscreen frames back onscreen.
19941         (desktop-restoring-reuses-frames): New option.
19942         (desktop--compute-pos, desktop--move-onscreen): New functions.
19943         (desktop--make-frame): Use desktop--move-onscreen.
19945 2013-07-27  Alan Mackenzie  <acm@muc.de>
19947         Fontify a Java generic method as a function.
19948         * progmodes/cc-langs.el (c-recognize-<>-arglists): Set the Java
19949         value to t.
19951 2013-07-27  Stephen Berman  <stephen.berman@gmx.net>
19953         * calendar/todo-mode.el: Add command to rename todo files.
19954         (todo-rename-file): New command.
19955         (todo-key-bindings-t): Add key binding for it.  Change the
19956         bindings of todo-filter-regexp-items(-multifile) to use `x'
19957         instead of `r', since the latter is better suited to the new
19958         renaming command.
19960 2013-07-27  Alan Mackenzie  <acm@muc.de>
19962         Make Java try-with-resources statement parse properly.
19963         * progmodes/cc-langs.el (c-block-stmt-1-2-kwds)
19964         (c-block-stmt-1-2-key): New language constants/variables.
19965         * progmodes/cc-engine.el (c-beginning-of-statement-1)
19966         (c-after-conditional): Adapt to deal with c-block-stmt-1-2-key.
19967         * progmodes/cc-fonts.el (c-font-lock-declarations): Adapt to deal
19968         with c-block-stmt-1-2-key.
19970 2013-07-27  Juanma Barranquero  <lekktu@gmail.com>
19972         * desktop.el (desktop--make-frame): Apply most frame parameters after
19973         creating the frame to force (partially or totally) offscreen frames to
19974         be restored as such.
19976 2013-07-26  Xue Fuqiao  <xfq.free@gmail.com>
19978         * vc/vc-dir.el (vc-dir-mode-map): Add binding for vc-root-diff.
19979         (Bug#14948)
19981 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
19983         * emacs-lisp/nadvice.el (advice--called-interactively-skip): Use the new
19984         `base' arg of backtrace-frame.
19986 2013-07-26  Eli Zaretskii  <eliz@gnu.org>
19988         * simple.el (list-processes): Doc fix.
19990 2013-07-26  Juanma Barranquero  <lekktu@gmail.com>
19992         * desktop.el (desktop--select-frame):
19993         Try harder to reuse existing frames.
19995 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
19997         * emacs-lisp/edebug.el: Use backtrace-eval to handle lexical variables.
19998         (edebug-eval): Use backtrace-eval.
19999         (edebug--display, edebug--recursive-edit): Don't let-bind the
20000         edebug-outer-* vars that keep track of variables we locally let-bind.
20001         (edebug-outside-excursion): Don't restore outside values of locally
20002         let-bound vars.
20003         (edebug--display): Use user-error.
20004         (cl-lexical-debug, cl-debug-env): Remove.
20006 2013-07-26  Juanma Barranquero  <lekktu@gmail.com>
20008         * desktop.el (desktop-restore-frames): Call `sit-for' once all frames
20009         are restored to be sure that they are visible before deleting any
20010         remaining ones.
20012 2013-07-26  Matthias Meulien  <orontee@gmail.com>
20014         * vc/vc-dir.el (vc-dir-mode-map): Add binding for
20015         vc-print-root-log.  (Bug#14948)
20017 2013-07-26  Richard Stallman  <rms@gnu.org>
20019         Add aliases for encrypting mail.
20020         * epa.el (epa-mail-aliases): New option.
20021         * epa-mail.el (epa-mail-encrypt): Rewrite to be callable from programs.
20022         Bind inhibit-read-only so read-only text doesn't ruin everything.
20023         (epa-mail-default-recipients): New subroutine broken out.
20024         Handle epa-mail-aliases.
20026 2013-07-26  Stefan Monnier  <monnier@iro.umontreal.ca>
20028         Add support for lexical variables to the debugger's `e' command.
20029         * emacs-lisp/debug.el (debug): Don't let-bind the debugger-outer-*
20030         vars, except for debugger-outer-match-data.
20031         (debugger-frame-number): Move check for "on a function call" from
20032         callers into it.  Add `skip-base' argument.
20033         (debugger-frame, debugger-frame-clear): Simplify accordingly.
20034         (debugger-env-macro): Only reset the state stored in non-variables,
20035         i.e. current-buffer and match-data.
20036         (debugger-eval-expression): Rewrite using backtrace-eval.
20037         * subr.el (internal--called-interactively-p--get-frame): Remove.
20038         (called-interactively-p):
20039         * emacs-lisp/edebug.el (edebug--called-interactively-skip): Use the new
20040         `base' arg of backtrace-frame instead.
20042 2013-07-26  Glenn Morris  <rgm@gnu.org>
20044         * align.el (align-regexp): Doc fix.  (Bug#14857)
20045         (align-region): Explicit error if subexpression missing/does not match.
20047         * simple.el (global-visual-line-mode):
20048         Do not duplicate the mode lighter.  (Bug#14858)
20050 2013-07-25  Martin Rudalics  <rudalics@gmx.at>
20052         * window.el (display-buffer): In display-buffer bind
20053         split-window-keep-point to t, bug#14829.
20055 2013-07-25  Juanma Barranquero  <lekktu@gmail.com>
20057         * desktop.el: Rename internal "desktop-X" frame params to "desktop--X".
20058         (desktop-filter-parameters-alist, desktop--filter-restore-desktop-parm)
20059         (desktop--filter-save-desktop-parm, desktop--process-minibuffer-frames)
20060         (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
20061         Change accordingly.
20062         (desktop--select-frame, desktop--sort-states, desktop-restore-frames):
20063         Use pcase-let, pcase-let* to deobfuscate access to desktop--mini values.
20065 2013-07-25  Glenn Morris  <rgm@gnu.org>
20067         * dired-x.el (dired-mark-extension): Convert comment to doc string.
20069 2013-07-25  Juanma Barranquero  <lekktu@gmail.com>
20071         * desktop.el (desktop--make-frame): Do not pass the `fullscreen'
20072         parameter to modify-frame-parameters if the value has not changed;
20073         this is a workaround for bug#14949.
20074         (desktop--make-frame): On cl-delete-if call, check parameter name,
20075         not full parameter.
20077 2013-07-30  Xue Fuqiao  <xfq.free@gmail.com>
20079         * vc/vc.el (vc-ignore): New function.
20081         * vc/vc-svn.el (vc-svn-ignore): New function.
20083         * vc/vc-hg.el (vc-hg-ignore): New function.
20085         * vc/vc-git.el (vc-git-ignore): New function.
20087         * vc/vc-dir.el (vc-dir-mode-map): Add key binding for vc-dir-ignore
20088         (vc-dir-ignore): New function.
20090         * vc/vc-cvs.el (vc-cvs-ignore): New function.
20091         (cvs-append-to-ignore): Move here from pcvs.el.
20093         * vc/vc-bzr.el (vc-bzr-ignore): New function.
20095         * vc/pcvs.el (vc-cvs): Require 'vc-cvs.
20097 2013-07-24  Juanma Barranquero  <lekktu@gmail.com>
20099         * desktop.el (desktop-restoring-frames-p): Return a true boolean.
20100         (desktop-restore-frames): Warn when deleting an existing frame failed.
20102 2013-07-24  Glenn Morris  <rgm@gnu.org>
20104         * ffap.el (ffap-machine-p): Handle "not known" response.  (Bug#14929)
20106 2013-07-24  Michael Albinus  <michael.albinus@gmx.de>
20108         * filenotify.el (file-notify-supported-p):
20109         * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
20110         Remove functions.
20112         * autorevert.el (auto-revert-use-notify)
20113         (auto-revert-notify-add-watch):
20114         * net/tramp.el (tramp-file-name-for-operation):
20115         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
20116         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
20117         * net/tramp-sh.el (tramp-sh-file-name-handler-alist):
20118         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
20119         Remove `file-notify-supported-p' entry.
20121 2013-07-24  Glenn Morris  <rgm@gnu.org>
20123         * printing.el: Replace all uses of deleted ps-windows-system,
20124         ps-lp-system, ps-flatten-list with lpr- versions.
20126 2013-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
20128         * emacs-lisp/pcase.el (pcase--u1): Verify if self-quoting values can be
20129         checked with memq (bug#14935).
20131         * files.el (revert-buffer-function): Use a non-nil default.
20132         (revert-buffer-preserve-modes): Declare var to
20133         provide access to the `preserve-modes' argument.
20134         (revert-buffer): Let-bind it.
20135         (revert-buffer--default): New function, extracted from revert-buffer.
20137 2013-07-24  Stefan Monnier  <monnier@iro.umontreal.ca>
20139         * lpr.el: Signal print errors more prominently.
20140         (print-region-function): Don't default to nil.
20141         (lpr-print-region): New function, extracted from print-region-1.
20142         Check lpr's return value and signal an error in case of problem.
20143         (print-region-1): Use it.
20144         * ps-print.el (ps-windows-system, ps-lp-system): Remove.  Use the lpr-*
20145         versions instead.
20146         (ps-printer-name): Default to nil.
20147         (ps-printer-name-option): Default to lpr-printer-switch.
20148         (ps-print-region-function): Don't default to nil.
20149         (ps-postscript-code-directory): Simplify default.
20150         (ps-do-despool): Use lpr-print-region to properly check the outcome.
20151         (ps-string-list, ps-eval-switch, ps-flatten-list)
20152         (ps-flatten-list-1): Remove.
20153         (ps-multibyte-buffer): Avoid setq.
20154         * dos-w32.el (direct-print-region-helper): Use proper regexp operators.
20155         (print-region-function, ps-print-region-function): Don't set them here.
20157 2013-07-24  Xue Fuqiao  <xfq.free@gmail.com>
20159         * ido.el (ido-fractionp, ido-cache-ftp-work-directory-time)
20160         (ido-max-prospects, ido-mode, ido-max-file-prompt-width)
20161         (ido-unc-hosts-cache, ido-max-directory-size, ido-max-dir-file-cache)
20162         (ido-decorations): Doc fix.
20164         * ansi-color.el: Fix old URL.
20166 2013-07-23  Michael R. Mauger  <michael@mauger.com>
20168         * progmodes/sql.el: Version 3.3
20169         (sql-product-alist): Improve oracle :prompt-cont-regexp.
20170         (sql-starts-with-prompt-re, sql-ends-with-prompt-re): New functions.
20171         (sql-interactive-remove-continuation-prompt): Rewrite, use
20172         functions above.  Fix continuation prompt and complete output line
20173         handling.
20174         (sql-redirect-one, sql-execute): Use `read-only-mode' on
20175         redirected output buffer.
20176         (sql-mode): Restore deleted code (Bug#13591).
20178 2013-07-23  Juanma Barranquero  <lekktu@gmail.com>
20180         * desktop.el (desktop-clear, desktop-list*): Fix previous change.
20182 2013-07-23  Michael Albinus  <michael.albinus@gmx.de>
20184         * net/tramp.el (tramp-handle-file-notify-add-watch): New defun.
20186         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
20187         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
20188         * net/tramp-smb.el (tramp-smb-file-name-handler-alist): Use it.
20190 2013-07-23  Juanma Barranquero  <lekktu@gmail.com>
20192         * desktop.el (desktop-clear): Simplify; remove useless checks
20193         against invalid buffer names.
20194         (desktop-list*): Use cl-list*.
20195         (desktop-buffer-info, desktop-create-buffer): Simplify.
20197 2013-07-23  Leo Liu  <sdl.web@gmail.com>
20199         * bookmark.el (bookmark-make-record): Restore NAME as a default
20200         value.  (Bug#14933)
20202 2013-07-22  Stefan Monnier  <monnier@iro.umontreal.ca>
20204         * emacs-lisp/autoload.el (autoload--setup-output): New function,
20205         extracted from autoload--insert-text.
20206         (autoload--insert-text): Remove.
20207         (autoload--print-cookie-text): New function, extracted from
20208         autoload--insert-cookie-text.
20209         (autoload--insert-cookie-text): Remove.
20210         (autoload-generate-file-autoloads): Adjust calls accordingly.
20212         * winner.el (winner-hook-installed-p): Remove.
20213         (winner-mode): Simplify accordingly.
20215         * subr.el (add-to-list): Fix compiler-macro when `append' is
20216         not constant.  Don't use `cl-member' for the base case.
20218         * progmodes/subword.el: Fix boundary case (bug#13758).
20219         (subword-forward-regexp): Make it a constant.  Wrap optional \\W in its
20220         own group.
20221         (subword-backward-regexp): Make it a constant.
20222         (subword-forward-internal): Don't treat a trailing capital as the
20223         beginning of a word.
20225 2013-07-22  Ari Roponen  <ari.roponen@gmail.com>  (tiny change)
20227         * emacs-lisp/package.el (package-menu-mode): Don't modify the
20228         global value of tabulated-list-revert-hook (bug#14930).
20230 2013-07-22  Juanma Barranquero  <lekktu@gmail.com>
20232         * desktop.el: Require 'cl-lib.
20233         (desktop-before-saving-frames-functions): New hook.
20234         (desktop--process-minibuffer-frames): Set desktop-mini parameter only
20235         for frames being saved.  Rename from desktop--save-minibuffer-frames.
20236         (desktop-save-frames): Run hook desktop-before-saving-frames-functions.
20237         Do not save frames with non-nil `desktop-dont-save' parameter.
20238         Filter out deleted frames.
20239         (desktop--find-frame): Use cl-find-if.
20240         (desktop--select-frame): Use cl-(first|second|third) to access values
20241         of desktop-mini.
20242         (desktop--make-frame): Use cl-delete-if.
20243         (desktop--sort-states): Fix sorting of minibuffer-owning frames.
20244         (desktop-restore-frames): Use cl-(first|second|third) to access values
20245         of desktop-mini.  Look for visible frame at the end, not while
20246         restoring frames.
20248         * dired-x.el (dired-mark-unmarked-files, dired-virtual)
20249         (dired-guess-default, dired-mark-sexp, dired-filename-at-point):
20250         Use string-match-p, looking-at-p (bug#14927).
20252 2013-07-21  Juanma Barranquero  <lekktu@gmail.com>
20254         * desktop.el (desktop-saved-frame-states):
20255         Rename from desktop--saved-states; all users changed.
20256         (desktop-save-frames): Rename from desktop--save-frames.
20257         Do not save state to desktop file.
20258         (desktop-save): Save desktop-saved-frame-states to desktop file
20259         and reset to nil.
20260         (desktop-restoring-frames-p): New function.
20261         (desktop-restore-frames): Use it.  Rename from desktop--restore-frames.
20262         (desktop-read): Use desktop-restoring-frames-p.  Do not try to fix
20263         buffer-lists when restoring frames.  Suggested by Martin Rudalics.
20265         * desktop.el: Correctly restore iconified frames.
20266         (desktop--filter-iconified-position): New function.
20267         (desktop-filter-parameters-alist): Add entries for `top' and `left'.
20269 2013-07-20  Glenn Morris  <rgm@gnu.org>
20271         * progmodes/gdb-mi.el (gdb-delete-handler, gdb-stopped):
20272         Let `message' do the formatting.
20273         (def-gdb-preempt-display-buffer): Add explicit format.
20275         * image-dired.el (image-dired-track-original-file):
20276         Use with-current-buffer.
20277         (image-dired-track-thumbnail): Use with-current-buffer.
20278         Avoid changing point of wrong window.
20280         * image-dired.el (image-dired-track-original-file):
20281         Avoid changing point of wrong window.  (Bug#14909)
20283 2013-07-20  Richard Copley  <rcopley@gmail.com>  (tiny change)
20285         * progmodes/gdb-mi.el (gdb-done-or-error):
20286         Guard against "%" in gdb output.  (Bug#14127)
20288 2013-07-20  Andreas Schwab  <schwab@linux-m68k.org>
20290         * progmodes/sh-script.el (sh-read-variable): Remove interactive spec.
20291         (Bug#14826)
20293         * international/mule.el (coding-system-iso-2022-flags): Fix last
20294         change.
20296 2013-07-20  Kenichi Handa  <handa@gnu.org>
20298         * international/mule.el (coding-system-iso-2022-flags):
20299         Add `8-bit-level-4'.  (Bug#8522)
20301 2013-07-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20303         * net/shr.el (shr-mouse-browse-url): New command and keystroke
20304         (bug#14815).
20306         * net/eww.el (eww-process-text-input): Allow inputting when the
20307         point is at the start of the line, as the properties aren't
20308         front-sticky.
20310         * net/shr.el (shr-make-table-1): Ensure that we don't infloop on
20311         degenerate widths.
20313 2013-07-19  Richard Stallman  <rms@gnu.org>
20315         * epa.el (epa-popup-info-window): Doc fix.
20317         * subr.el (split-string): New arg TRIM.
20319 2013-07-18  Juanma Barranquero  <lekktu@gmail.com>
20321         * frame.el (blink-cursor-timer-function, blink-cursor-suspend):
20322         Add check for W32 (followup to 2013-07-16T11:41:06Z!jan.h.d@swipnet.se).
20324 2013-07-18  Michael Albinus  <michael.albinus@gmx.de>
20326         * filenotify.el (file-notify--library): Rename from
20327         `file-notify-support'.  Do not autoload.  Adapt all uses.
20328         (file-notify-supported-p): New defun.
20330         * autorevert.el (auto-revert-use-notify):
20331         Use `file-notify-supported-p' instead of `file-notify-support'.
20332         Adapt docstring.
20333         (auto-revert-notify-add-watch): Use `file-notify-supported-p'.
20335         * net/tramp.el (tramp-file-name-for-operation):
20336         Add `file-notify-supported-p'.
20338         * net/tramp-sh.el (tramp-sh-handle-file-notify-supported-p):
20339         New defun.
20340         (tramp-sh-file-name-handler-alist): Add it as handler for
20341         `file-notify-supported-p '.
20343         * net/tramp-adb.el (tramp-adb-file-name-handler-alist):
20344         * net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist):
20345         * net/tramp-smb.el (tramp-smb-file-name-handler-alist):
20346         Add `ignore' as handler for `file-notify-*' functions.
20348 2013-07-17  Eli Zaretskii  <eliz@gnu.org>
20350         * simple.el (line-move-partial, line-move): Don't start vscroll or
20351         scroll-up if the current line is not taller than the window.
20352         (Bug#14881)
20354 2013-07-16  Dmitry Gutov  <dgutov@yandex.ru>
20356         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Do not
20357         highlight question marks in the method names as strings.
20358         (ruby-block-beg-keywords): Inline.
20359         (ruby-font-lock-keyword-beg-re): Extract from
20360         `ruby-font-lock-keywords'.
20362 2013-07-16  Jan Djärv  <jan.h.d@swipnet.se>
20364         * frame.el (blink-cursor-blinks): New defcustom.
20365         (blink-cursor-blinks-done): New defvar.
20366         (blink-cursor-start): Set blink-cursor-blinks-done to 1.
20367         (blink-cursor-timer-function): Check if number of blinks has been
20368         done on X and NS.
20369         (blink-cursor-suspend, blink-cursor-check): New defuns.
20371 2013-07-15  Glenn Morris  <rgm@gnu.org>
20373         * edmacro.el (edmacro-format-keys): Fix previous change.
20375 2013-07-15  Paul Eggert  <eggert@cs.ucla.edu>
20377         * shell.el (explicit-bash-args): Remove obsolete hack for Bash 1.x.
20378         The hack didn't work outside English locales anyway.
20380 2013-07-15  Juanma Barranquero  <lekktu@gmail.com>
20382         * simple.el (define-alternatives): Rename from alternatives-define,
20383         per RMS' suggestion.
20385 2013-07-14  Juanma Barranquero  <lekktu@gmail.com>
20387         * desktop.el (desktop-restore-frames): Change default to t.
20388         (desktop-restore-in-current-display): Now offer more options.
20389         (desktop-restoring-reuses-frames): New customization option.
20390         (desktop--saved-states): Doc fix.
20391         (desktop-filter-parameters-alist): New variable, renamed and expanded
20392         from desktop--excluded-frame-parameters.
20393         (desktop--target-display): New variable.
20394         (desktop-switch-to-gui-p, desktop-switch-to-tty-p)
20395         (desktop--filter-tty*, desktop--filter-*-color)
20396         (desktop--filter-minibuffer, desktop--filter-restore-desktop-parm)
20397         (desktop--filter-save-desktop-parm)
20398         (desktop-restore-in-original-display-p): New functions.
20399         (desktop--filter-frame-parms): Use new desktop-filter-parameters-alist.
20400         (desktop--save-minibuffer-frames): New function, inspired by a similar
20401         function from Martin Rudalics.
20402         (desktop--save-frames): Call it; play nice with desktop-globals-to-save.
20403         (desktop--restore-in-this-display-p): Remove.
20404         (desktop--find-frame): Rename from desktop--find-frame-in-display
20405         and add predicate argument.
20406         (desktop--make-full-frame): Remove, integrated into desktop--make-frame.
20407         (desktop--reuse-list): New variable.
20408         (desktop--select-frame, desktop--make-frame, desktop--sort-states):
20409         New functions.
20410         (desktop--restore-frames): Add support for "minibuffer-special" frames.
20412 2013-07-14  Michael Albinus  <michael.albinus@gmx.de>
20414         * net/tramp-sh.el (tramp-sh-handle-vc-registered): Use `ignore-error'.
20416 2013-07-13  Dmitry Gutov  <dgutov@yandex.ru>
20418         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
20419         Highlight conversion methods on Kernel.
20421 2013-07-13  Alan Mackenzie  <acm@muc.de>
20423         * progmodes/cc-engine.el (c-forward-decl-or-cast-1): Label CASE 13
20424         and comment it out.  This out-commenting enables certain C++
20425         declarations to be parsed correctly.
20427 2013-07-13  Eli Zaretskii  <eliz@gnu.org>
20429         * international/mule.el (define-coding-system): Doc fix.
20431         * simple.el (default-font-height): Don't call font-info if the
20432         frame's default font didn't change since the frame was created.
20433         (Bug#14838)
20435 2013-07-13  Leo Liu  <sdl.web@gmail.com>
20437         * ido.el (ido-read-file-name): Guard against non-symbol value.
20439 2013-07-13  Fabián Ezequiel Gallina  <fgallina@gnu.org>
20441         * progmodes/python.el (python-imenu--build-tree): Fix corner case
20442         in nested defuns.
20444 2013-07-13  Leo Liu  <sdl.web@gmail.com>
20446         * ido.el (ido-exhibit): Handle ido-enter-matching-directory before
20447         ido-set-matches call.  (Bug#6852)
20449 2013-07-12  Dmitry Gutov  <dgutov@yandex.ru>
20451         * progmodes/ruby-mode.el (ruby-percent-literals-beg-re)
20452         (ruby-syntax-expansion-allowed-p): Support array of symbols, for
20453         Ruby 2.0.
20454         (ruby-font-lock-keywords): Distinguish calls to functions with
20455         module-like names from module references.  Highlight character
20456         literals.
20458 2013-07-12  Sergio Durigan Junior  <sergiodj@riseup.net>  (tiny change)
20460         * progmodes/gdb-mi.el (gdb-strip-string-backslash): New function.
20461         (gdb-send): Handle continued commands.  (Bug#14847)
20463 2013-07-12  Juanma Barranquero  <lekktu@gmail.com>
20465         * desktop.el (desktop--v2s): Remove unused local variable.
20466         (desktop-save-buffer): Make defvar-local; adjust docstring.
20467         (desktop-auto-save-timeout, desktop-owner): Use ignore-errors.
20468         (desktop-clear, desktop-save-buffer-p): Use string-match-p.
20470 2013-07-12  Andreas Schwab  <schwab@linux-m68k.org>
20472         * emacs-lisp/map-ynp.el (map-y-or-n-p): Fix last change.
20474 2013-07-12  Eli Zaretskii  <eliz@gnu.org>
20476         * simple.el (next-line, previous-line): Document TRY-VSCROLL and ARG.
20477         (Bug#14842)
20479 2013-07-12  Glenn Morris  <rgm@gnu.org>
20481         * doc-view.el: Require cl-lib at runtime too.
20482         (doc-view-remove-if): Remove.
20483         (doc-view-search-next-match, doc-view-search-previous-match):
20484         Use cl-remove-if.
20486         * edmacro.el: Require cl-lib at runtime too.
20487         (edmacro-format-keys, edmacro-parse-keys): Use cl-mismatch, cl-subseq.
20488         (edmacro-mismatch, edmacro-subseq): Remove.
20490         * shadowfile.el: Require cl-lib.
20491         (shadow-remove-if): Remove.
20492         (shadow-set-cluster, shadow-shadows-of-1, shadow-remove-from-todo):
20493         Use cl-remove-if.
20495         * wid-edit.el: Require cl-lib.
20496         (widget-choose): Use cl-remove-if.
20497         (widget-remove-if): Remove.
20499         * progmodes/ebrowse.el: Require cl-lib at runtime too.
20500         (ebrowse-delete-if-not): Remove.
20501         (ebrowse-browser-buffer-list, ebrowse-member-buffer-list)
20502         (ebrowse-tree-buffer-list, ebrowse-same-tree-member-buffer-list):
20503         Use cl-delete-if-not.
20505 2013-07-12  Juanma Barranquero  <lekktu@gmail.com>
20507         * emacs-lisp/cl-macs.el (cl-multiple-value-bind, cl-multiple-value-setq)
20508         (cl-the, cl-declare, cl-defstruct): Fix typos in docstrings.
20510 2013-07-12  Leo Liu  <sdl.web@gmail.com>
20512         * ido.el (dired-do-copy, dired): Set 'ido property.  (Bug#11954)
20514 2013-07-11  Glenn Morris  <rgm@gnu.org>
20516         * emacs-lisp/edebug.el: Require cl-lib at run-time too.
20517         (edebug-gensym-index, edebug-gensym):
20518         Remove reimplementation of cl-gensym.
20519         (edebug-make-enter-wrapper, edebug-make-form-wrapper): Use cl-gensym.
20521         * thumbs.el: Require cl-lib at run-time too.
20522         (thumbs-gensym-counter, thumbs-gensym):
20523         Remove reimplementation of cl-gensym.
20524         (thumbs-temp-file): Use cl-gensym.
20526         * emacs-lisp/ert.el: Require cl-lib at runtime too.
20527         (ert--cl-do-remf, ert--remprop, ert--remove-if-not)
20528         (ert--intersection, ert--set-difference, ert--set-difference-eq)
20529         (ert--union, ert--gensym-counter, ert--gensym-counter)
20530         (ert--coerce-to-vector, ert--remove*, ert--string-position)
20531         (ert--mismatch, ert--subseq): Remove reimplementations of cl funcs.
20532         (ert-make-test-unbound, ert--expand-should-1)
20533         (ert--expand-should, ert--should-error-handle-error)
20534         (should-error, ert--explain-equal-rec)
20535         (ert--plist-difference-explanation, ert-select-tests)
20536         (ert--make-stats, ert--remove-from-list, ert--string-first-line):
20537         Use cl-lib functions rather than reimplementations.
20539 2013-07-11  Michael Albinus  <michael.albinus@gmx.de>
20541         * net/tramp.el (tramp-methods): Extend docstring.
20542         (tramp-connection-timeout): New defcustom.
20543         (tramp-error-with-buffer): Reset timestamp only when appropriate.
20544         (with-tramp-progress-reporter): Simplify.
20545         (tramp-process-actions): Improve messages.
20547         * net/tramp-gvfs.el (tramp-gvfs-maybe-open-connection):
20548         * net/tramp-sh.el (tramp-maybe-open-connection):
20549         Use `tramp-connection-timeout'.
20550         (tramp-methods) <su, sudo, ksu>: Add method specific timeouts.
20551         (Bug#14808)
20553 2013-07-11  Leo Liu  <sdl.web@gmail.com>
20555         * ido.el (ido-read-file-name): Conform to the requirements of
20556         read-file-name.  (Bug#11861)
20557         (ido-read-directory-name): Conform to the requirements of
20558         read-directory-name.
20560 2013-07-11  Juanma Barranquero  <lekktu@gmail.com>
20562         * subr.el (delay-warning): New function.
20564 2013-07-10  Eli Zaretskii  <eliz@gnu.org>
20566         * simple.el (default-line-height): New function.
20567         (line-move-partial, line-move): Use it instead of computing the
20568         line height inline.
20569         (line-move-partial): Always compute ROWH.  If the last line is
20570         partially-visible, but its text is completely visible, allow
20571         cursor to enter such a partially-visible line.
20573 2013-07-10  Michael Albinus  <michael.albinus@gmx.de>
20575         Improve error messages.  (Bug#14808)
20577         * net/tramp.el (tramp-current-connection): New defvar, moved from
20578         tramp-sh.el.
20579         (tramp-message-show-progress-reporter-message): Remove, not
20580         needed anymore.
20581         (tramp-error-with-buffer): Show message in minibuffer.
20582         Discard input before waiting.  Reset connection timestamp.
20583         (with-tramp-progress-reporter): Improve messages.
20584         (tramp-process-actions): Use progress reporter.  Delete process in
20585         case of error.  Improve messages.
20587         * net/tramp-sh.el (tramp-barf-if-no-shell-prompt): Use condition-case.
20588         Call `tramp-error-with-buffer' with vector and buffer.
20589         (tramp-current-connection): Remove.
20590         (tramp-maybe-open-connection): The car of
20591         `tramp-current-connection' are the first 3 slots of the vector.
20593 2013-07-10  Teodor Zlatanov  <tzz@lifelogs.com>
20595         * progmodes/cfengine.el (cfengine3-indent-line): Do not indent
20596         inside continued strings.
20598 2013-07-10  Paul Eggert  <eggert@cs.ucla.edu>
20600         Timestamp fixes for undo (Bug#14824).
20601         * files.el (clear-visited-file-modtime): Move here from fileio.c.
20603 2013-07-10  Leo Liu  <sdl.web@gmail.com>
20605         * files.el (require-final-newline): Allow safe local value.
20606         (Bug#14834)
20608 2013-07-09  Leo Liu  <sdl.web@gmail.com>
20610         * ido.el (ido-read-directory-name): Handle fallback.
20611         (ido-read-file-name): Update DIR to ido-current-directory.
20612         (Bug#1516)
20613         (ido-add-virtual-buffers-to-list): Robustify.  (Bug#14552)
20615 2013-07-09  Dmitry Gutov  <dgutov@yandex.ru>
20617         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Remove extra
20618         "autoload".  Remove "warn lower camel case" section, previously
20619         commented out.  Highlight negation char.  Do not highlight the
20620         target in singleton method definitions.
20622 2013-07-08  Stefan Monnier  <monnier@iro.umontreal.ca>
20624         * faces.el (tty-setup-hook): Declare the hook.
20626         * emacs-lisp/pcase.el (pcase--split-pred): Add `vars' argument to try
20627         and detect when a guard/pred depends on local vars (bug#14773).
20628         (pcase--u1): Adjust caller.
20630 2013-07-08  Eli Zaretskii  <eliz@gnu.org>
20632         * simple.el (line-move-partial, line-move): Account for
20633         line-spacing.
20634         (line-move-partial): Avoid setting vscroll when the last
20635         partially-visible line in window is of default height.
20637 2013-07-08  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20639         * net/shr.el (shr-map): Reinstate the `u' key binding, since it's
20640         been used a while.
20642 2013-07-07  Juanma Barranquero  <lekktu@gmail.com>
20644         * subr.el (read-quoted-char): Remove unused local variable `char'.
20646 2013-07-07  Michael Kifer  <kifer@cs.stonybrook.edu>
20648         * vc/ediff.el (ediff-version): Version update.
20649         (ediff-files-command, ediff3-files-command, ediff-merge-command)
20650         (ediff-merge-with-ancestor-command, ediff-directories-command)
20651         (ediff-directories3-command, ediff-merge-directories-command)
20652         (ediff-merge-directories-with-ancestor-command): New functions.
20653         All are command-line interfaces to ediff: to facilitate calling
20654         Emacs with the appropriate ediff functions invoked.
20656         * emulation/viper-cmd.el (viper-del-forward-char-in-insert):
20657         New function.
20658         (viper-save-kill-buffer): Check if buffer is modified.
20660         * emulation/viper.el (viper-version): Version update.
20661         (viper-emacs-state-mode-list): Add egg-status-buffer-mode.
20663 2013-07-07  Stefan Monnier  <monnier@iro.umontreal.ca>
20665         * faces.el (tty-run-terminal-initialization): Run new tty-setup-hook.
20666         * emulation/viper-cmd.el (viper-envelop-ESC-key): Remove function.
20667         (viper-intercept-ESC-key): Simplify.
20668         * emulation/viper-keym.el (viper-ESC-key): Make it a constant,
20669         don't use kbd.
20670         * emulation/viper.el (viper--tty-ESC-filter, viper--lookup-key)
20671         (viper-catch-tty-ESC, viper-uncatch-tty-ESC)
20672         (viper-setup-ESC-to-escape): New functions.
20673         (viper-go-away, viper-set-hooks): Call viper-setup-ESC-to-escape.
20674         (viper-set-hooks): Do not modify flyspell-mode-hook.  (Bug#13793)
20676 2013-07-07  Eli Zaretskii  <eliz@gnu.org>
20678         * simple.el (default-font-height, window-screen-lines):
20679         New functions.
20680         (line-move, line-move-partial): Use them instead of
20681         frame-char-height and window-text-height.  This makes scrolling
20682         text smoother when the buffer's default face uses a font that is
20683         different from the frame's default font.
20685 2013-07-06  Jan Djärv  <jan.h.d@swipnet.se>
20687         * files.el (write-file): Do not display confirm dialog for NS,
20688         it does its own dialog, which can't be canceled (Bug#14578).
20690 2013-07-06  Eli Zaretskii  <eliz@gnu.org>
20692         * simple.el (line-move-partial): Adjust the row returned by
20693         posn-at-point for the current window-vscroll.  (Bug#14567)
20695 2013-07-06  Michael Albinus  <michael.albinus@gmx.de>
20697         * net/tramp-sh.el (tramp-sh-file-gvfs-monitor-dir-process-filter)
20698         (tramp-sh-file-inotifywait-process-filter): Handle file names with
20699         spaces.
20701 2013-07-06  Martin Rudalics  <rudalics@gmx.at>
20703         * window.el (window-state-put-stale-windows): New variable.
20704         (window--state-put-2): Save list of windows without matching buffer.
20705         (window-state-put): Remove "bufferless" windows if possible.
20707 2013-07-06  Juanma Barranquero  <lekktu@gmail.com>
20709         * simple.el (alternatives-define): Remove leftover :group keyword.
20710         Tweak docstring.
20712 2013-07-06  Leo Liu  <sdl.web@gmail.com>
20714         * ido.el (ido-use-virtual-buffers): Allow new value 'auto.
20715         (ido-enable-virtual-buffers): New variable.
20716         (ido-buffer-internal, ido-toggle-virtual-buffers)
20717         (ido-make-buffer-list): Use it.
20718         (ido-exhibit): Support turning on and off virtual buffers
20719         automatically.
20721 2013-07-06  Juanma Barranquero  <lekktu@gmail.com>
20723         * simple.el (alternatives-define): New macro.
20725 2013-07-06  Stefan Monnier  <monnier@iro.umontreal.ca>
20727         * subr.el (read-quoted-char): Use read-key.
20728         (sit-for): Let read-event decode tty input (bug#14782).
20730 2013-07-05  Stephen Berman  <stephen.berman@gmx.net>
20732         * calendar/todo-mode.el: Add handling of file deletion, both by
20733         mode command and externally.  Fix various related bugs.
20734         Clarify Commentary and improve some documentation strings and code.
20735         (todo-delete-file): New command.
20736         (todo-check-file): New function.
20737         (todo-show): Handle external deletion of the file we're trying to
20738         show (bug#14688).  Replace called-interactively-p by an optional
20739         prefix argument to avoid problematic interaction with catch form
20740         when byte compiled (bug#14702).
20741         (todo-quit): Handle external deletion of the archive's todo file.
20742         Make sure the buffer that was visiting the archive file is still
20743         live before trying to bury it.
20744         (todo-category-completions): Handle external deletion of any
20745         category completion files.
20746         (todo-jump-to-category, todo-basic-insert-item): Recalculate list
20747         of todo files, in case of external deletion.
20748         (todo-add-file): Replace unnecessary setq by let-binding.
20749         (todo-find-archive): Check whether there are any archives.
20750         Replace unnecessary setq by let-binding.
20751         (todo-archive-done-item): Use find-file-noselect to get the
20752         archive buffer whether or not the archive already exists.
20753         Remove superfluous code.  Use file size instead of buffer-file-name to
20754         check if the archive is new; if it is, update list of archives.
20755         (todo-default-todo-file): Allow nil to be a valid value for when
20756         there are no todo files.
20757         (todo-reevaluate-default-file-defcustom): Use corrected definition
20758         of todo-default-todo-file.
20759         (todo-key-bindings-t+a+f): Add key binding for todo-delete-file.
20760         (todo-delete-category, todo-show-categories-table)
20761         (todo-category-number): Clarify comment.
20762         (todo-filter-items): Clarify documentation string.
20763         (todo-show-current-file, todo-display-as-todo-file)
20764         (todo-reset-and-enable-done-separator): Tweak documentation string.
20765         (todo-done-separator): Make separator length window-width, since
20766         bug#2749 is now fixed.
20768 2013-07-05  Michael Albinus  <michael.albinus@gmx.de>
20770         * net/tramp-sh.el (tramp-sh-handle-file-notify-add-watch):
20771         Support both "gvfs-monitor-dir" and "inotifywait".
20772         (tramp-sh-file-inotifywait-process-filter): Rename from
20773         `tramp-sh-file-notify-process-filter'.
20774         (tramp-sh-file-gvfs-monitor-dir-process-filter)
20775         (tramp-get-remote-gvfs-monitor-dir): New defuns.
20777 2013-07-05  Leo Liu  <sdl.web@gmail.com>
20779         * autoinsert.el (auto-insert-alist): Default to lexical-binding.
20781 2013-07-04  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
20783         * frame.el (display-pixel-height, display-pixel-width)
20784         (display-mm-height, display-mm-width): Mention behavior on
20785         multi-monitor setups in docstrings.
20786         (w32-display-monitor-attributes-list): Declare function.
20787         (display-monitor-attributes-list): Use it.
20789 2013-07-04  Michael Albinus  <michael.albinus@gmx.de>
20791         * filenotify.el: New package.
20793         * autorevert.el (top): Require filenotify.el.
20794         (auto-revert-notify-enabled): Remove.  Use `file-notify-support'
20795         instead.
20796         (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
20797         (auto-revert-notify-handler): Use `file-notify-*' functions.
20799         * subr.el (file-notify-handle-event): Move function to filenotify.el.
20801         * net/tramp.el (tramp-file-name-for-operation):
20802         Handle `file-notify-add-watch' and `file-notify-rm-watch'.
20804         * net/tramp-sh.el (tramp-sh-file-name-handler-alist): Add handler
20805         for `file-notify-add-watch' and `file-notify-rm-watch'.
20806         (tramp-process-sentinel): Improve trace.
20807         (tramp-sh-handle-file-notify-add-watch)
20808         (tramp-sh-file-notify-process-filter)
20809         (tramp-sh-handle-file-notify-rm-watch)
20810         (tramp-get-remote-inotifywait): New defuns.
20812 2013-07-03  Juri Linkov  <juri@jurta.org>
20814         * buff-menu.el (Buffer-menu-multi-occur): Add args and move the
20815         call of `occur-read-primary-args' to interactive spec.
20817         * ibuffer.el (ibuffer-mode-map): Bind "M-s a C-o" to
20818         `ibuffer-do-occur' like in buff-menu.el.  (Bug#14673)
20820 2013-07-03  Matthias Meulien  <orontee@gmail.com>
20822         * buff-menu.el (Buffer-menu-mode-map): Bind "M-s a C-o" to
20823         `Buffer-menu-multi-occur'.  Add it to the menu.
20824         (Buffer-menu-mode): Document it in docstring.
20825         (Buffer-menu-multi-occur): New command.  (Bug#14673)
20827 2013-07-03  Dmitry Gutov  <dgutov@yandex.ru>
20829         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Highlight more
20830         keywords and built-ins.
20832 2013-07-03  Glenn Morris  <rgm@gnu.org>
20834         * subr.el (y-or-n-p): Handle empty prompts.  (Bug#14770)
20836         Make info-xref checks case-sensitive by default
20837         * info.el (Info-find-node, Info-find-in-tag-table)
20838         (Info-find-node-in-buffer, Info-find-node-2, Info-goto-node):
20839         Add option for exact case matching of nodes.
20840         * info-xref.el (info-xref): New custom group.
20841         (info-xref-case-fold): New option.
20842         (info-xref-goto-node-p): Pass info-xref-case-fold to Info-goto-node.
20844 2013-07-03  Leo Liu  <sdl.web@gmail.com>
20846         * ido.el (ido-delete-file-at-head): Respect delete-by-moving-to-trash.
20848 2013-07-03  Dmitry Gutov  <dgutov@yandex.ru>
20850         * progmodes/ruby-mode.el (ruby-move-to-block): When we're at a
20851         middle of block statement initially, lower the depth.  Remove
20852         FIXME comment, not longer valid.  Remove middle of block statement
20853         detection, no need to do that anymore since we've been using
20854         `ruby-parse-region' here.
20856 2013-07-02  Jan Djärv  <jan.h.d@swipnet.se>
20858         * term/ns-win.el (display-format-alist): Use .* (Bug#14765).
20860 2013-07-01  Katsumi Yamaoka  <yamaoka@jpl.org>
20862         * wid-edit.el (widget-default-get): Don't modify widget (Bug#14738).
20864 2013-07-01  Juanma Barranquero  <lekktu@gmail.com>
20866         * desktop.el (desktop-restore-frames): Rename from desktop-save-windows.
20867         (desktop-restore-in-current-display): New customization option.
20868         (desktop--excluded-frame-parameters): Add `font'.
20869         (desktop--save-frames): Rename from desktop--save-windows.
20870         (desktop--restore-in-this-display-p): New function.
20871         (desktop--make-full-frame): Remove unwanted width/height from
20872         full(width|height) frames.
20873         (desktop--restore-frames): Rename from desktop--restore-windows.
20874         Obey desktop-restore-current-display.  Do not delete old frames or
20875         select a new frame unless we were able to restore at least one frame.
20877 2013-06-30  Michal Nazarewicz  <mina86@mina86.com>
20879         * files.el (find-file-noselect): Simplify conditional expression.
20881         * textmodes/remember.el (remember-append-to-file):
20882         Don't mix `find-buffer-visiting' and `get-file-buffer'.
20884         Add `remember-notes' function to store random notes across Emacs
20885         restarts.
20886         * textmodes/remember.el (remember-data-file): Add :set callback to
20887         affect notes buffer (if any).
20888         (remember-notes): New command.
20889         (remember-notes-buffer-name, bury-remember-notes-on-kill):
20890         New defcustoms for the `remember-notes' function.
20891         (remember-notes-save-and-bury-buffer): New command.
20892         (remember-notes-mode-map): New variable.
20893         (remember-mode): New minor mode.
20894         (remember-notes--kill-buffer-query): New function.
20895         * startup.el (initial-buffer-choice): Add notes to custom type.
20897 2013-06-30  Eli Zaretskii  <eliz@gnu.org>
20899         * bindings.el (right-char, left-char): Don't call sit-for, this is
20900         no longer needed.  Use arithmetic comparison only for numerical
20901         arguments.
20903         * international/mule-cmds.el (select-safe-coding-system):
20904         Handle the case of FROM being a string correctly.  (Bug#14755)
20906 2013-06-30  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20908         * net/shr.el (shr-make-table-1): Add a sanity check that allows
20909         progression on degenerate tables.
20910         (shr-rescale-image): ImageMagick animated images currently don't work.
20912 2013-06-30  Juanma Barranquero  <lekktu@gmail.com>
20914         Some fixes and improvements for desktop frame restoration.
20915         It is still experimental and disabled by default.
20916         * desktop.el (desktop--save-windows): Put the selected frame at
20917         the head of the list.
20918         (desktop--make-full-frame): New function.
20919         (desktop--restore-windows): Try to re-select the frame that was
20920         selected upon saving.  Do not abort if some frames fail to restore,
20921         just show an error message and continue.  Set up maximized frames
20922         so they have default non-maximized dimensions.
20924 2013-06-30  Dmitry Gutov  <dgutov@yandex.ru>
20926         * progmodes/ruby-mode.el (ruby-syntax-propertize-function):
20927         Don't start heredoc inside a string or comment.
20929 2013-06-29  Eli Zaretskii  <eliz@gnu.org>
20931         * bindings.el (visual-order-cursor-movement): New defcustom.
20932         (right-char, left-char): Provide visual-order cursor motion by
20933         calling move-point-visually.  Update the doc strings.
20935 2013-06-28  Kenichi Handa  <handa@gnu.org>
20937         * international/mule.el (define-coding-system): New coding system
20938         properties :inhibit-null-byte-detection,
20939         :inhibit-iso-escape-detection, and :prefer-utf-8.
20940         (set-buffer-file-coding-system): If :charset-list property of
20941         CODING-SYSTEM is `emacs', do not check if CODING-SYSTEM is
20942         appropriate for setting.
20944         * international/mule-cmds.el (select-safe-coding-system):
20945         If DEFAULT-CODING-SYSTEM is prefer-utf-8 and the buffer contains
20946         multibyte characters, return utf-8 (or one of its siblings).
20948         * international/mule-conf.el (prefer-utf-8): New coding system.
20949         (file-coding-system-alist): Use prefer-utf-8 as default for Elisp
20950         files.
20952 2013-06-28  Ivan Kanis  <ivan@kanis.fr>
20954         * net/shr.el (shr-render-region): New function.
20956         * net/eww.el: Autoload `eww-browse-url'.
20958 2013-06-27  Dmitry Gutov  <dgutov@yandex.ru>
20960         * emacs-lisp/package-x.el (package-upload-buffer-internal):
20961         Adapt to `package-desc-version' being a list.
20962         Use `package--ac-desc-version' to retrieve version from a package
20963         archive element.
20965 2013-06-27  Juanma Barranquero  <lekktu@gmail.com>
20967         New experimental feature to save&restore window and frame setup.
20968         * desktop.el (desktop-save-windows): New defcustom.
20969         (desktop--saved-states): New var.
20970         (desktop--excluded-frame-parameters): New defconst.
20971         (desktop--filter-frame-parms, desktop--find-frame-in-display)
20972         (desktop--restore-windows, desktop--save-windows): New functions.
20973         (desktop-save): Call `desktop--save-windows'.
20974         (desktop-read): Call `desktop--restore-windows'.
20976 2013-06-27  Lars Magne Ingebrigtsen  <larsi@gnus.org>
20978         * net/shr.el (add-face-text-property): Remove compat definition.
20980 2013-06-27  Stephen Berman  <stephen.berman@gmx.net>
20982         * info.el (Info-try-follow-nearest-node): Move search for footnote
20983         above search for node name to prevent missing a footnote (bug#14717).
20985 2013-06-27  Stephen Berman  <stephen.berman@gmx.net>
20987         * obsolete/otodo-mode.el: Add obsolescence info to file header.
20989 2013-06-27  Leo Liu  <sdl.web@gmail.com>
20991         * net/eww.el (eww-read-bookmarks): Check file size.
20993 2013-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
20995         * emacs-lisp/nadvice.el (advice--defalias-fset): Move advice back to
20996         advice--pending if newdef is nil or an autoload (bug#13820).
20997         (advice-mapc): New function.
20999 2013-06-26  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21001         * net/eww.el (eww-mode): Undo isn't necessary in eww buffers,
21002         probably.
21003         (eww-mode-map): Add a menu bar.
21004         (eww-add-bookmark): New command.
21005         (eww-bookmark-mode): New mode and commands.
21006         (eww-add-bookmark): Remove newlines from the title.
21007         (eww-bookmark-browse): Don't bug out if it's the only window.
21009 2013-06-26  Glenn Morris  <rgm@gnu.org>
21011         * htmlfontify.el (hfy-triplet): Handle unspecified-fg, bg.
21012         (hfy-size): Handle ttys.  (Bug#14668)
21014         * info-xref.el: Update for Texinfo 5 change in *note format.
21015         (info-xref-node-re, info-xref-note-re): New constants.
21016         (info-xref-check-buffer): Use info-xref-note-re.
21018 2013-06-26  Stefan Monnier  <monnier@iro.umontreal.ca>
21020         * simple.el (set-variable): Use read-from-minibuffer (bug#14710).
21022         * emacs-lisp/package.el (package--add-to-archive-contents): Add missing
21023         nil terminate the loop (bug#14718).
21025 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21027         * net/eww.el: Rework history traversal.  When going forward/back,
21028         put these actions into the history, too, so that they can be
21029         replayed.
21030         (eww-render): Move the history reset to the correct buffer.
21032 2013-06-25  Juri Linkov  <juri@jurta.org>
21034         * files-x.el (modify-dir-local-variable): Change the header comment
21035         in the file with directory local variables.  (Bug#14692)
21037         * files-x.el (read-file-local-variable-value): Add `default'.
21038         (Bug#14710)
21040 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21042         * net/eww.el (eww-make-unique-file-name): Create a unique file
21043         name before saving to entering `y' accidentally asynchronously.
21045 2013-06-25  Ivan Kanis  <ivan@kanis.fr>
21047         * net/eww.el (eww-download): New command and keystroke.
21049 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21051         * net/eww.el (eww-copy-page-url): Change name of command.
21053         * net/shr.el (shr-map): Change `shr-copy-url' from `u' to `w' to
21054         be more consistent with Info and dired.
21056         * net/eww.el (eww-mode-map): Ditto.
21058 2013-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
21060         * emacs-lisp/package.el: Use lexical-binding.  Include obsolete
21061         packages from archives.
21062         (package-archive-contents): Change format; include obsolete packages.
21063         (package-desc): Use `dir' to mark builtin packages.
21064         (package--from-builtin): Set the `dir' field to `builtin'.
21065         (generated-autoload-file, version-control): Declare.
21066         (package-compute-transaction): Change first arg and return value to be
21067         lists of package-descs.  Adjust to new package-archive-contents format.
21068         (package--add-to-archive-contents): Adjust to new
21069         package-archive-contents format.
21070         (package-download-transaction): Arg is now a list of package-descs.
21071         (package-install): If `pkg' is a package name, pass it as
21072         a requirement, so it is subject to the usual (e.g. disabled) checks.
21073         (describe-package): Accept package-desc as well.
21074         (describe-package-1): Describe a specific package-desc.  Add links to
21075         other package-descs for the same package name.
21076         (package-menu-describe-package): Pass the actual package-desc.
21077         (package-menu-mode): Add to tabulated-list-revert-hook so revert-buffer
21078         works correctly.
21079         (package-desc-status): New function.
21080         (package-menu--refresh): New function, extracted
21081         from package-menu--generate.
21082         (package-menu--generate): Use it.
21083         (package-delete): Update package-alist.
21084         (package-menu-execute): Don't call package-initialize.
21086         * progmodes/idlw-toolbar.el, progmodes/idlw-shell.el,
21087         progmodes/idlw-help.el, progmodes/idlw-complete-structtag.el,
21088         progmodes/ebnf-yac.el, progmodes/ebnf-otz.el, progmodes/ebnf-iso.el,
21089         progmodes/ebnf-ebx.el, progmodes/ebnf-dtd.el, progmodes/ebnf-bnf.el,
21090         progmodes/ebnf-abn.el, emacs-lisp/package-x.el, emacs-lisp/cl-seq.el,
21091         emacs-lisp/cl-macs.el: Neuter the "Version:" header.
21093 2013-06-25  Martin Rudalics  <rudalics@gmx.at>
21095         * window.el (window--state-get-1): Workaround for bug#14527.
21096         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00941.html
21098 2013-06-25  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21100         * net/eww.el (eww-back-url): Implement the history by stashing all
21101         the data into a list.
21102         (eww-forward-url): Allow going forward in the history, too.
21104 2013-06-25  Stefan Monnier  <monnier@iro.umontreal.ca>
21106         * files-x.el (read-file-local-variable-value): Use read-from-minibuffer
21107         for values and use read--expression for expressions (bug#14710).
21108         (read-file-local-variable): Avoid setq.
21109         (read-file-local-variable-mode): Use minor-mode-list.
21111 2013-06-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
21113         * textmodes/bibtex.el (bibtex-generate-url-list): Add support
21114         for DOI URLs.
21116 2013-06-25  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
21118         * textmodes/bibtex.el (bibtex-mode, bibtex-set-dialect):
21119         Update imenu-support when dialect changes.
21121 2013-06-25  Leo Liu  <sdl.web@gmail.com>
21123         * ido.el (ido-read-internal): Allow forward slash on windows.
21125 2013-06-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21127         * net/eww.el (eww): Start of strings is \\`, not ^.
21129 2013-06-24  Ivan Kanis  <ivan@kanis.fr>
21131         * net/shr.el (shr-browse-url): Fix interactive spec.
21133         * net/eww.el (eww): Add a trailing slash to domain names.
21135 2013-06-24  Juanma Barranquero  <lekktu@gmail.com>
21137         * faces.el (face-spec-recalc): Revert part of 2013-06-23T20:29:18Z!lekktu@gmail.com (bug#14705).
21139 2013-06-24  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21141         * net/shr.el (shr-browse-url): Use an external browser if given a
21142         prefix.
21144         * net/eww.el (eww-external-browser): Move to shr.
21146 2013-06-24  Ivan Kanis  <ivan@kanis.fr>
21148         * net/eww.el (eww): Work more correctly for file: URLs.
21149         (eww-detect-charset): Allow quoted charsets.
21150         (eww-yank-page-url): New command and keystroke.
21152 2013-06-24  Daiki Ueno  <ueno@gnu.org>
21154         * epg.el (epg-make-context): Check if PROTOCOL is valid; embed the
21155         file name of gpg executable.
21156         (epg-context-program): New function.
21157         (epg-context-home-directory): New function.
21158         (epg-context-set-program): New function.
21159         (epg-context-set-home-directory): New function.
21160         (epg--start): Use `epg-context-program' instead of
21161         'epg-gpg-program'.
21162         (epg--list-keys-1): Likewise.
21164 2013-06-24  Leo Liu  <sdl.web@gmail.com>
21166         * ido.el (ido-read-internal): Fix bug#14620.
21168 2013-06-23  Juanma Barranquero  <lekktu@gmail.com>
21170         * faces.el (face-documentation): Simplify.
21171         (read-face-attribute, tty-find-type, x-resolve-font-name):
21172         Use `string-match-p'.
21173         (list-faces-display): Use `string-match-p'.  Simplify.
21174         (face-spec-recalc): Check face to avoid face alias loops.
21175         (read-color): Use `string-match-p' and non-capturing parenthesis.
21177 2013-06-23  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21179         * net/shr.el (shr-rescale-image): Use the new
21180         :max-width/:max-height functionality.
21182 2013-06-23  Ivan Kanis  <ivan@kanis.fr>
21184         * net/eww.el (eww-search-prefix): New variable.
21185         (eww): Use it.
21186         (eww-external-browser): New variable.
21187         (eww-mode-map): New keystroke.
21188         (eww-browse-with-external-browser): New command.
21190         * net/eww.el: Bind `C-c C-c' to "submit" in all form keymaps.
21192 2013-06-23  Juanma Barranquero  <lekktu@gmail.com>
21194         * emacs-lisp/tabulated-list.el (tabulated-list-init-header):
21195         Don't skip aligning the next header field when padding is 0;
21196         otherwise, field width is not respected unless the title is as
21197         wide as the field.
21199 2013-06-22  Stefan Monnier  <monnier@iro.umontreal.ca>
21201         * emacs-lisp/package.el (package-el-version): Remove.
21202         (package-process-define-package): Fix inf-loop.
21203         (package-install): Allow symbols as arguments again.
21205 2013-06-22  Dmitry Gutov  <dgutov@yandex.ru>
21207         * progmodes/ruby-mode.el (ruby-font-lock-keywords): Move `catch',
21208         add some more keyword-like methods.
21209         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00911.html
21211 2013-06-22  Juanma Barranquero  <lekktu@gmail.com>
21213         * bs.el (bs-buffer-show-mark): Make defvar-local.
21214         (bs-mode): Use setq-local.
21216         * emacs-lock.el (emacs-lock-mode, emacs-lock--old-mode)
21217         (emacs-lock--try-unlocking): Make defvar-local.
21219 2013-06-22  Glenn Morris  <rgm@gnu.org>
21221         * play/cookie1.el (cookie-apropos): Minor simplification.
21223         * progmodes/gdb-mi.el (gdb-mapcar*): Remove, replace with cl-mapcar.
21225 2013-06-22  Dmitry Gutov  <dgutov@yandex.ru>
21227         * progmodes/ruby-mode.el (auto-mode-alist): Do not use
21228         `regexp-opt', it breaks the build during dumping.
21230 2013-06-21  Dmitry Gutov  <dgutov@yandex.ru>
21232         * progmodes/ruby-mode.el (ruby-font-lock-keywords):
21233         Highlight keyword-like methods on Kernel and Module with
21234         font-lock-builtin-face.
21235         (auto-mode-alist): Consolidate different entries into one regexp
21236         and add more *file-s.
21238 2013-06-21  Stephen Berman  <stephen.berman@gmx.net>
21240         * obsolete/otodo-mode.el: Move and rename from calendar/todo-mode.el.
21242         * calendar/diary-lib.el (diary-goto-entry-function): New variable.
21243         (diary-entry): Use it in the action of this button type instead of
21244         diary-goto-entry.
21246         * calendar/todo-mode.el: New version.
21247         (todo-add-category): Append new category to end of file and give
21248         it the highest number, instead of putting it at the beginning and
21249         giving it 0.  Incorporate noninteractive functionality.
21250         (todo-forward-category): Adapt to 1-based category numbering.
21251         Allow skipping over archived categories.
21252         (todo-backward-category): Derive from todo-forward-category.
21253         (todo-backward-item, todo-forward-item): Make noninteractive and
21254         delegate interactive part to new commands.  Make sensitive to done items.
21255         (todo-categories): Make value an alist of category names and
21256         vectors of item counts.
21257         (todo-category-beg): Make a defconst.
21258         (todo-category-number): Use 1 instead of 0 as initial value.
21259         (todo-category-select): Make sensitive to overlays, optional item
21260         highlighting and done items.
21261         (todo-delete-item): Make sensitive to overlays and marked and done items.
21262         (todo-edit-item): Make sensitive to overlays and editing of
21263         date/time header optional.  Add format checks.
21264         (todo-edit-multiline): Rename to todo-edit-multiline-item.  Make a
21265         no-op if point is not on an item.  Advertise using todo-edit-quit.
21266         (todo-edit-mode): Make sensitive to new format, font-locking, and
21267         multiple todo files.
21268         (todo-insert-item, todo-insert-item-here): Derive from
21269         todo-basic-insert-item and extend functionality.
21270         (todo-item-end, todo-item-start): Make sensitive to done items.
21271         (todo-item-string): Don't return text properties.  Restore point.
21272         (todo-jump-to-category): Make sensitive to multiple todo files and
21273         todo archives.  Use extended category completion.
21274         (todo-lower-item, todo-raise-item): Rename to *-priority and
21275         derive from todo-set-item-priority.
21276         (todo-mode): Derive from special-mode.  Make sensitive to new
21277         format, font-locking and multiple todo files.  Make read-only.
21278         (todo-mode-map): Don't suppress digit keys, so they can supply
21279         prefix arguments.  Add many new key bindings.
21280         (todo-prefix): Insert as an overlay instead of file text.
21281         Change semantics from diary date expression to purely visual mark.
21282         (todo-print): Rename to todo-print-buffer.  Make buffer display
21283         features printable.  Remove option to restrict number of items
21284         printed.  Add option to print to file.
21285         (todo-print-function): Rename to todo-print-buffer-function.
21286         (todo-quit): Extend to handle exiting new todo modes.
21287         (todo-remove-item): Make sensitive to overlays.
21288         (todo-save): Extend to buffers of filtered items.
21289         (todo-show): Make sensitive to done items, multiple todo files and
21290         new todo modes.  Offer to convert legacy todo file before creating
21291         first new todo file.
21292         (todo-show-priorities): Rename to todo-top-priorities.
21293         Change semantics of value 0.
21294         (todo-top-priorities): Rename to todo-filter-top-priorities,
21295         derive from todo-filter-items and extend functionality.
21296         (todo-save-top-priorities): Rename to todo-save-filtered-items-buffer
21297         and extend functionality to other types of filtered items.
21298         (todo-add-item-non-interactively, todo-ask-p, todo-cat-slct)
21299         (todo-category-end, todo-category-sep, todo-cats, todo-cmd-back)
21300         (todo-cmd-done, todo-cmd-edit, todo-cmd-forw, todo-cmd-inst)
21301         (todo-cmd-kill, todo-cmd-lowr, todo-cmd-next, todo-cmd-prev)
21302         (todo-cmd-rais, todo-cmd-save, todo-completing-read, todo-cp)
21303         (todo-edit-mode-hook, todo-entry-prefix-function)
21304         (todo-entry-timestamp-initials, todo-file-do, todo-file-done)
21305         (todo-file-item, todo-file-top, todo-header, todo-initial-setup)
21306         (todo-initials, todo-insert-threshold, todo-item-string-start)
21307         (todo-line-string, todo-menu, todo-mode-hook)
21308         (todo-more-important-p, todo-previous-answer, todo-previous-line)
21309         (todo-print-priorities, todo-remove-separator)
21310         (todo-save-top-priorities-too, todo-string-count-lines)
21311         (todo-string-multiline-p, todo-time-string-format)
21312         (todo-tmp-buffer-name): Remove.
21313         (todo-add-file, todo-archive-done-item, todo-choose-archive)
21314         (todo-convert-legacy-files, todo-copy-item, todo-delete-category)
21315         (todo-edit-category-diary-inclusion)
21316         (todo-edit-category-diary-nonmarking, todo-edit-done-item-comment)
21317         (todo-edit-file, todo-edit-item-date-day)
21318         (todo-edit-item-date-day-name, todo-edit-item-date-from-calendar)
21319         (todo-edit-item-date-month, todo-edit-item-date-to-today)
21320         (todo-edit-item-date-year, todo-edit-item-diary-inclusion)
21321         (todo-edit-item-diary-nonmarking, todo-edit-item-header)
21322         (todo-edit-item-time, todo-edit-quit, todo-filter-diary-items)
21323         (todo-filter-diary-items-multifile, todo-filter-regexp-items)
21324         (todo-filter-regexp-items-multifile, todo-filter-top-priorities)
21325         (todo-filter-top-priorities-multifile, todo-find-archive)
21326         (todo-find-filtered-items-file, todo-go-to-source-item)
21327         (todo-insert-item-from-calendar, todo-item-done, todo-item-undone)
21328         (todo-jump-to-archive-category, todo-lower-category)
21329         (todo-mark-category, todo-marked-item-p, todo-merge-category)
21330         (todo-move-category, todo-move-item, todo-next-button)
21331         (todo-next-item, todo-padded-string, todo-powerset)
21332         (todo-previous-button, todo-previous-item)
21333         (todo-print-buffer-to-file, todo-raise-category)
21334         (todo-rename-category, todo-repair-categories-sexp, todo-search)
21335         (todo-set-category-number, todo-set-item-priority)
21336         (todo-set-top-priorities-in-category)
21337         (todo-set-top-priorities-in-file, todo-show-categories-table)
21338         (todo-sort-categories-alphabetically-or-numerically)
21339         (todo-sort-categories-by-archived, todo-sort-categories-by-diary)
21340         (todo-sort-categories-by-done, todo-sort-categories-by-todo)
21341         (todo-toggle-item-header, todo-toggle-item-highlighting)
21342         (todo-toggle-mark-item, todo-toggle-prefix-numbers)
21343         (todo-toggle-view-done-items, todo-toggle-view-done-only)
21344         (todo-unarchive-items, todo-unmark-category): New commands.
21345         (todo-absolute-file-name, todo-add-to-buffer-list)
21346         (todo-adjusted-category-label-length, todo-basic-edit-item-header)
21347         (todo-basic-insert-item, todo-category-completions)
21348         (todo-category-number, todo-category-string-matcher-1)
21349         (todo-category-string-matcher-2, todo-check-filtered-items-file)
21350         (todo-check-format, todo-clear-matches)
21351         (todo-comment-string-matcher, todo-convert-legacy-date-time)
21352         (todo-current-category, todo-date-string-matcher)
21353         (todo-define-insertion-command, todo-diary-expired-matcher)
21354         (todo-diary-goto-entry, todo-diary-item-p)
21355         (todo-diary-nonmarking-matcher, todo-display-as-todo-file)
21356         (todo-display-categories, todo-display-sorted, todo-done-item-p)
21357         (todo-done-item-section-p, todo-done-separator)
21358         (todo-done-string-matcher, todo-files, todo-filter-items)
21359         (todo-filter-items-1, todo-filter-items-filename, todo-find-item)
21360         (todo-gen-arglists, todo-get-count, todo-get-overlay, todo-indent)
21361         (todo-insert-category-line, todo-insert-item-from-calendar)
21362         (todo-insert-sort-button, todo-insert-with-overlays)
21363         (todo-insertion-command-name, todo-insertion-key-bindings)
21364         (todo-label-to-key, todo-longest-category-name-length)
21365         (todo-make-categories-list, todo-mode-external-set)
21366         (todo-mode-line-control, todo-modes-set-1, todo-modes-set-2)
21367         (todo-modes-set-3, todo-multiple-filter-files)
21368         (todo-nondiary-marker-matcher, todo-prefix-overlays)
21369         (todo-read-category, todo-read-date, todo-read-dayname)
21370         (todo-read-file-name, todo-read-time)
21371         (todo-reevaluate-category-completions-files-defcustom)
21372         (todo-reevaluate-default-file-defcustom)
21373         (todo-reevaluate-filelist-defcustoms)
21374         (todo-reevaluate-filter-files-defcustom)
21375         (todo-reset-and-enable-done-separator, todo-reset-comment-string)
21376         (todo-reset-done-separator, todo-reset-done-separator-string)
21377         (todo-reset-done-string, todo-reset-global-current-todo-file)
21378         (todo-reset-highlight-item, todo-reset-nondiary-marker)
21379         (todo-reset-prefix, todo-set-categories)
21380         (todo-set-date-from-calendar, todo-set-show-current-file)
21381         (todo-set-top-priorities, todo-short-file-name)
21382         (todo-show-current-file, todo-sort, todo-time-string-matcher)
21383         (todo-total-item-counts, todo-update-buffer-list)
21384         (todo-update-categories-display, todo-update-categories-sexp)
21385         (todo-update-count, todo-validate-name, todo-y-or-n-p):
21386         New functions.
21387         (todo-archive-mode, todo-categories-mode, todo-filtered-items-mode):
21388         New major modes.
21389         (todo-categories, todo-display, todo-edit, todo-faces)
21390         (todo-filtered): New defgroups.
21391         (todo-archived-only, todo-button, todo-category-string, todo-date)
21392         (todo-diary-expired, todo-done, todo-done-sep, todo-comment)
21393         (todo-mark, todo-nondiary, todo-prefix-string, todo-search)
21394         (todo-sorted-column, todo-time, todo-top-priority): New deffaces.
21395         (todo-add-item-if-new-category, todo-always-add-time-string)
21396         (todo-categories-align, todo-categories-archived-label)
21397         (todo-categories-category-label, todo-categories-diary-label)
21398         (todo-categories-done-label, todo-categories-number-separator)
21399         (todo-categories-todo-label, todo-categories-totals-label)
21400         (todo-category-completions-files, todo-completion-ignore-case)
21401         (todo-default-todo-file, todo-diary-nonmarking, todo-directory)
21402         (todo-done-separator-string, todo-done-string)
21403         (todo-files-function, todo-filter-done-items, todo-filter-files)
21404         (todo-highlight-item, todo-include-in-diary, todo-indent-to-here)
21405         (todo-initial-category, todo-initial-file, todo-item-mark)
21406         (todo-legacy-date-time-regexp, todo-mode-line-function)
21407         (todo-nondiary-marker, todo-number-prefix)
21408         (todo-print-buffer-function, todo-show-current-file)
21409         (todo-show-done-only, todo-show-first, todo-show-with-done)
21410         (todo-skip-archived-categories, todo-top-priorities-overrides)
21411         (todo-undo-item-omit-comment, todo-use-only-highlighted-region)
21412         (todo-visit-files-commands, todo-wrap-lines, todo-y-with-space):
21413         New defcustoms.
21414         (todo-category-done, todo-date-pattern, todo-date-string-start)
21415         (todo-diary-items-buffer, todo-done-string-start)
21416         (todo-filtered-items-buffer, todo-item-start)
21417         (todo-month-abbrev-array, todo-month-name-array)
21418         (todo-nondiary-end, todo-nondiary-start, todo-regexp-items-buffer)
21419         (todo-top-priorities-buffer): New defconsts.
21420         (todo-archive-mode-map, todo-archives, todo-categories-mode-map)
21421         (todo-categories-with-marks, todo-category-string-face)
21422         (todo-comment-face, todo-comment-string, todo-current-todo-file)
21423         (todo-date-face, todo-date-from-calendar, todo-descending-counts)
21424         (todo-diary-expired-face, todo-done-face, todo-done-sep-face)
21425         (todo-done-separator, todo-edit-buffer, todo-edit-mode-map)
21426         (todo-file-buffers, todo-files, todo-filtered-items-mode-map)
21427         (todo-font-lock-keywords, todo-global-current-todo-file)
21428         (todo-insertion-commands, todo-insertion-commands-arg-key-list)
21429         (todo-insertion-commands-args)
21430         (todo-insertion-commands-args-genlist)
21431         (todo-insertion-commands-names, todo-insertion-map)
21432         (todo-key-bindings-t, todo-key-bindings-t+a)
21433         (todo-key-bindings-t+a+f, todo-key-bindings-t+f, todo-mode-map)
21434         (todo-multiple-filter-files, todo-multiple-filter-files-widget)
21435         (todo-nondiary-face, todo-print-buffer, todo-time-face)
21436         (todo-visited): New variables.
21438 2013-06-21  Glenn Morris  <rgm@gnu.org>
21440         * play/cookie1.el (cookie-apropos): Add optional display argument.
21441         * obsolete/yow.el (apropos-zippy): Use cookie-apropos.
21442         (psychoanalyze-pinhead): Use cookie-doctor.
21444 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
21446         * emacs-lisp/package.el (tar-get-file-descriptor)
21447         (tar--extract): Declare.
21449 2013-06-21  Eduard Wiebe  <usenet@pusto.de>
21451         Extend flymake's warning predicate to be a function (bug#14217).
21452         * progmodes/flymake.el (flymake-warning-predicate): New.
21453         (flymake-parse-line): Use it.
21454         (flymake-warning-re): Make obsolete alias to
21455         `flymake-warning-predicate'.
21457 2013-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
21459         * emacs-lisp/package.el (package-alist): Include obsolete packages.
21460         (package-obsolete-list): Remove.
21461         (package-activate): Remove min-version argument.  Add `force' argument.
21462         Adjust to new package-alist format.
21463         (package-mark-obsolete): Remove.
21464         (package-unpack): Force reload of the package's autoloads.
21465         (package-installed-p): Check builtins if the installed package is not
21466         recent enough.
21467         (package-initialize): Don't reset package-obsolete-list.
21468         Don't specify which package version to activate.
21469         (package-process-define-package, describe-package-1)
21470         (package-menu--generate): Adjust to new package-alist format.
21472 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
21474         * allout-widgets.el (allout-widgets-mode-off)
21475         (allout-widgets-mode-on, allout-widgets-pre-command-business)
21476         (allout-widgets-post-command-business)
21477         (allout-widgets-after-copy-or-kill-function)
21478         (allout-widgets-after-undo-function, allout-test-range-overlaps)
21479         (allout-decorate-item-and-context)
21480         (allout-graphics-modification-handler): Fix typos in docstrings.
21481         (allout-get-or-create-parent-widget): Use `looking-at-p'.
21483         * cmuscheme.el (scheme-start-file): Doc fix.
21484         (inferior-scheme-mode, switch-to-scheme): Fix typos in docstrings.
21485         (scheme-input-filter): Use `string-match-p'.
21487         * composite.el (compose-gstring-for-terminal): Fix typo in docstring.
21489         * dired-x.el: Use Dired consistently in docstrings.
21491         * dired.el: Use Dired consistently in docstrings.
21492         (dired-readin, dired-mode): Use `setq-local'.
21493         (dired-switches-alist): Make defvar-local.
21494         (dired-buffers-for-dir): Use `zerop'.
21495         (dired-safe-switches-p, dired-switches-escape-p)
21496         (dired-insert-old-subdirs, dired-move-to-end-of-filename)
21497         (dired-glob-regexp, dired-in-this-tree, dired-goto-file-1)
21498         (dired-sort-set-mode-line, dired-sort-toggle, dired-sort-R-check)
21499         (dired-goto-next-nontrivial-file): Use `string-match-p'.
21500         (dired-align-file, dired-insert-directory, dired-mark-files-in-region)
21501         (dired-toggle-marks, dired-mark-files-containing-regexp)
21502         (dired-mark-symlinks, dired-mark-directories, dired-mark-executables)
21503         (dired-flag-auto-save-files, dired-flag-backup-files):
21504         Use `looking-at-p'.
21505         (dired-mark-files-regexp, dired-build-subdir-alist):
21506         Use `string-match-p', `looking-at-p'.
21508         * dos-w32.el (untranslated-canonical-name, untranslated-file-p)
21509         (direct-print-region-helper): Use `string-match-p'.
21511 2013-06-21  Leo Liu  <sdl.web@gmail.com>
21513         * comint.el (comint-redirect-results-list-from-process):
21514         Fix infinite loop.
21516 2013-06-21  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21518         * net/eww.el (eww-update-header-line-format): Quote % characters.
21520 2013-06-21  Glenn Morris  <rgm@gnu.org>
21522         * play/cookie1.el (cookie): New custom group.
21523         (cookie-file): New option.
21524         (cookie-check-file): New function.
21525         (cookie): Make it interactive.  Make start and end messages optional.
21526         Interactively, display the result.  Default to cookie-file.
21527         (cookie-insert): Default to cookie-file.
21528         (cookie-snarf): Make start and end messages optional.
21529         Default to cookie-file.  Use with-temp-buffer.
21530         (cookie-read): Rename from read-cookie.
21531         Make start and end messages optional.  Default to cookie-file.
21532         (cookie-shuffle-vector): Rename from shuffle-vector.  Use dotimes.
21533         Do not autoload it.
21534         (cookie-apropos, cookie-doctor): New functions, copied from yow.el
21535         * obsolete/yow.el (read-zippyism): Use new name for read-cookie.
21537 2013-06-21  Leo Liu  <sdl.web@gmail.com>
21539         * progmodes/octave.el (octave-mode): Backward compatibility fix.
21541 2013-06-21  Glenn Morris  <rgm@gnu.org>
21543         * font-lock.el (lisp-font-lock-keywords-2): Add with-eval-after-load.
21545 2013-06-21  Stefan Monnier  <monnier@iro.umontreal.ca>
21546             Daniel Hackney  <dan@haxney.org>
21548         * emacs-lisp/package.el: Use tar-mode rather than tar executable.
21549         Consolidate the single-file vs tarball code.
21550         (package-desc-suffix): New function.
21551         (package-desc-full-name): Don't bother inlining it.
21552         (package-load-descriptor): Return the new package-desc.
21553         (package-mark-obsolete): Remove unused arg `package'.
21554         (package-unpack): Make it work for single files as well.
21555         Make it update package-alist.
21556         (package--make-autoloads-and-stuff): Rename from
21557         package--make-autoloads-and-compile.  Don't compile any more.
21558         (package--compile): New function.
21559         (package-generate-description-file): New function, extracted from
21560         package-unpack-single.
21561         (package-unpack-single): Remove.
21562         (package--with-work-buffer): Add indentation and debugging info.
21563         (package-download-single): Remove.
21564         (package-install-from-archive): Rename from package-download-tar, make
21565         it take a pkg-desc, and make it work for single files as well.
21566         (package-download-transaction): Simplify.
21567         (package-tar-file-info): Remove `file' arg.  Rewrite not to use an
21568         external tar program.
21569         (package-install-from-buffer): Remove `pkg-desc' argument.
21570         Use package-tar-file-info for tar-mode buffers.
21571         (package-install-file): Simplify accordingly.
21572         (package-archive-base): Change to take a pkg-desc.
21573         * tar-mode.el (tar--check-descriptor): New function, extracted from
21574         tar-get-descriptor.
21575         (tar-get-descriptor): Use it.
21576         (tar-get-file-descriptor): New function.
21577         (tar--extract): New function, extracted from tar-extract.
21578         (tar--extract): Use it.
21579         * emacs-lisp/package-x.el (package-upload-file): Decode the file, in
21580         case the summary uses non-ascii.  Adjust to new calling convention of
21581         package-tar-file-info.
21583 2013-06-21  Leo Liu  <sdl.web@gmail.com>
21585         * comint.el (comint-redirect-results-list-from-process):
21586         Fix random delay.  (Bug#14681)
21588 2013-06-21  Juanma Barranquero  <lekktu@gmail.com>
21590         * profiler.el (profiler-format-number): Use log, not log10.
21592 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
21594         * term/x-win.el (emacs-session-filename): Use `locate-user-emacs-file'.
21596 2013-06-20  Stefan Monnier  <monnier@iro.umontreal.ca>
21598         * emacs-lisp/cl-loaddefs.el: Don't version-control any more.
21599         * emacs-lisp/cl-lib.el: Load cl-macs when cl-loaddefs is not
21600         yet available.
21601         * Makefile.in (AUTOGEN_VCS): Move cl-loaddefs.el...
21602         (AUTOGENEL): ... here.
21603         * emacs-lisp/cl-macs.el (cl--sublis): New function.
21604         (cl--defsubst-expand): Use it.
21606 2013-06-20  Paul Eggert  <eggert@cs.ucla.edu>
21608         * subr.el (log10): Move here from C code, and declare as obsolete.
21609         All uses of (log10 X) replaced with (log X 10).
21611 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
21613         * emacs-lisp/tabulated-list.el (tabulated-list-format): Fix typo.
21614         Declare with `defvar-local'.
21615         (tabulated-list-use-header-line, tabulated-list-entries)
21616         (tabulated-list-padding, tabulated-list-printer)
21617         (tabulated-list-sort-key): Declare with `defvar-local'.
21618         (tabulated-list-init-header, tabulated-list-print-fake-header):
21619         Use `setq-local'.
21621 2013-06-20  Michael Albinus  <michael.albinus@gmx.de>
21623         * arc-mode.el (archive-mode): Add `archive-write-file' to
21624         `write-contents-functions' also for remote files.  (Bug#14652)
21626 2013-06-20  Juanma Barranquero  <lekktu@gmail.com>
21628         * cus-edit.el (custom-commands): Fix typos.
21629         (custom-display): Fix tooltip text.
21630         (custom-magic-alist, custom-filter-face-spec, custom-group-members):
21631         Fix typos in docstrings.
21632         (custom--initialize-widget-variables, Custom-mode): Use `setq-local'.
21633         (custom-unlispify-menu-entry, custom-magic-value-create)
21634         (custom-add-see-also, custom-group-value-create): Use ?\s.
21635         (custom-guess-type, customize-apropos, editable-field)
21636         (custom-face-value-create): Use `string-match-p'.
21637         (custom-save-variables, custom-save-faces): Use `looking-at-p'.
21639         * custom.el (custom-load-symbol): Use `string-match-p'.
21641         * ansi-color.el: Convert to lexical binding.
21642         (ansi-colors): Fix URL.
21643         (ansi-color-context, ansi-color-context-region): Use defvar-local.
21644         (ansi-color-apply-sequence, ansi-color-map): Fix typos in docstrings.
21645         (ansi-color-make-color-map): Rename local var ansi-color-map to map.
21647 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21649         * net/eww.el (eww-process-text-input): Display passwords as asterisks.
21651         * net/shr.el (shr-make-table-1): Protect against invalid column-spans.
21653 2013-06-19  Tom Tromey  <tromey@redhat.com>
21655         * net/eww.el (eww-top-url): Remove.
21656         (eww-home-url, eww-start-url, eww-contents-url): New defvars.
21657         (eww-render): Set new variables.  Don't set eww-top-url.
21658         (eww-handle-link): Handle "prev", "home", and "contents".
21659         Downcase the rel text.
21660         (eww-top-url): Choose best top URL.
21662 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21664         * net/eww.el: Rewrite to implement form elements "by hand" instead of
21665         relying in widget.el.  Using widget.el leads to too many
21666         user interface inconsistencies.
21667         (eww-self-insert): Implement entering commands in text fields.
21668         (eww-process-text-input): New function to make text input field editing
21669         work.
21670         (eww-submit): Rewrite to use the new-style form methods.
21671         (eww-select-display): Display the correct selected item.
21672         (eww-change-select): Implement changing the select value.
21673         (eww-toggle-checkbox): Implement radio/checkboxes.
21674         (eww-update-field): Fix compilation error.
21675         (eww-tag-textarea): Implement <textarea>.
21677         * net/shr.el (shr-urlify): Use `keymap' instead of `local-map' so that
21678         we don't shadow mode-specific bindings.
21680         * net/eww.el (eww-browse-url): Don't push stuff onto history if there's
21681         nothing to push.
21683         * net/shr.el (shr-map): Bind [down-mouse-1] to browse URLs.
21685 2013-06-19  Glenn Morris  <rgm@gnu.org>
21687         * emacs-lisp/eieio.el (defclass): Make it eval-and-compile once more.
21689 2013-06-19  Michael Albinus  <michael.albinus@gmx.de>
21691         * net/tramp-adb.el (tramp-adb-get-toolbox): Remove function, it is
21692         not needed.
21694         * net/tramp-sh.el (tramp-find-shell): Don't set "busybox" property.
21696 2013-06-19  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21698         * net/browse-url.el (browse-url-browser-function):
21699         `eww-browse-url' has the right calling signature, `eww' does not.
21701 2013-06-19  Glenn Morris  <rgm@gnu.org>
21703         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
21704         Only eval autoloaded macros.
21705         (byte-compile-autoload): Only give the macro warning for macros.
21707         * progmodes/cperl-mode.el (ps-bold-faces, ps-italic-faces)
21708         (ps-underlined-faces): Declare.
21710         * progmodes/idlwave.el (func-menu): Only set it up on XEmacs.
21711         (speedbar-add-supported-extension): Declare.
21713         * international/titdic-cnv.el (tit-process-header, miscdic-convert):
21714         Don't include a date stamp in the header of the generated file;
21715         it leads to needless differences between output files.
21717 2013-06-19  Michael Albinus  <michael.albinus@gmx.de>
21719         * net/secrets.el (secrets-struct-secret-content-type):
21720         Replace check of introspection data by a test call of "CreateItem".
21721         Some servers do not offer introspection.
21723 2013-06-19  Stefan Monnier  <monnier@iro.umontreal.ca>
21725         * electric.el (electric-pair-mode): Improve interaction with
21726         electric-layout-mode.
21727         (electric-pair-default-inhibit): Don't assume (eq char (char-before)).
21728         (electric-pair-syntax): Use text-mode-syntax-table in comments
21729         and strings.
21730         (electric-pair--insert): New function.
21731         (electric-pair-post-self-insert-function): Use it and
21732         electric--after-char-pos.
21734 2013-06-19  Leo Liu  <sdl.web@gmail.com>
21736         * progmodes/octave.el (octave-help): Fix regexp.
21738 2013-06-18  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21740         * net/shr.el (shr-make-table-1): Implement <td rowspan>.
21741         (shr-table-horizontal-line): Allow nil as a value, and change the
21742         default.
21743         (shr-insert-table-ruler): Respect the nil value.
21745 2013-06-18  Tom Tromey  <tromey@barimba>
21747         * net/eww.el (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
21748         New defvars.
21749         (eww-open-file): New defun.
21750         (eww-render): Initialize new variables.
21751         (eww-display-html): Handle "link" and "a".
21752         (eww-handle-link, eww-tag-link, eww-tag-a): New defuns.
21753         (eww-mode-map): Move "p" to "l".  Bind "p", "n", "t", and "u".
21754         (eww-back-url): Rename from eww-previous-url.
21755         (eww-next-url, eww-previous-url, eww-up-url, eww-top-url):
21756         New defuns.
21758 2013-06-18  Dmitry Gutov  <dgutov@yandex.ru>
21760         * progmodes/ruby-mode.el (ruby-syntax-before-regexp-re):
21761         Distinguish ternary operator tokens from slash symbol and slash
21762         char literal.
21764 2013-06-18  Juanma Barranquero  <lekktu@gmail.com>
21766         Convert symbol prettification into minor mode and global minor mode.
21768         * progmodes/prog-mode.el (prettify-symbols-alist): Rename from
21769         `prog-prettify-symbols', and make a local defvar instead of defcustom.
21770         (prettify-symbols--keywords): Rename from
21771         `prog-prettify-symbols-alist' and make a local defvar.
21772         (prettify-symbols--compose-symbol): Rename from
21773         `prog--prettify-font-lock-compose-symbol'.
21774         (prettify-symbols--make-keywords): Rename from
21775         `prog-prettify-font-lock-symbols-keywords' and simplify.
21776         (prog-prettify-install): Remove.
21777         (prettify-symbols-mode): New minor mode, based on
21778         `prog-prettify-install'.
21779         (turn-on-prettify-symbols-mode): New function.
21780         (global-prettify-symbols-mode): New globalized minor mode.
21782         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
21783         * progmodes/cfengine.el (cfengine3-mode):
21784         * progmodes/perl-mode.el (perl-mode): Don't call
21785         `prog-prettify-install'; set `prettify-symbols-alist' instead.
21787 2013-06-18  Juri Linkov  <juri@jurta.org>
21789         * files-x.el (modify-file-local-variable-message): New function.
21790         (modify-file-local-variable)
21791         (modify-file-local-variable-prop-line): Add arg INTERACTIVE
21792         and call `modify-file-local-variable-message' when it's non-nil.
21793         (add-file-local-variable, delete-file-local-variable)
21794         (add-file-local-variable-prop-line)
21795         (delete-file-local-variable-prop-line): Add arg INTERACTIVE
21796         and use it.  (Bug#9820)
21798 2013-06-18  Juri Linkov  <juri@jurta.org>
21800         * emulation/vi.el (vi-shell-op):
21801         * emulation/vip.el (vip-execute-com, ex-command):
21802         * emulation/viper-cmd.el (viper-exec-bang):
21803         * emulation/viper-ex.el (ex-command): Add non-nil arg REPLACE to
21804         the call of `shell-command-on-region'.  (Bug#14637)
21806         * simple.el (shell-command-on-region): Doc fix.
21808 2013-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
21810         * emacs-lisp/eieio-custom.el: Remove misleading Version: header
21811         (bug#14633).
21813 2013-06-18  Glenn Morris  <rgm@gnu.org>
21815         * net/eww.el, net/shr.el, net/shr-color.el: Move here from gnus/.
21817         * newcomment.el (comment-search-forward, comment-search-backward):
21818         Doc fix.  (Bug#14376)
21820 2013-06-18  Juanma Barranquero  <lekktu@gmail.com>
21822         * face-remap.el (buffer-face-toggle): Fix typo in docstring.
21823         (buffer-face-mode-invoke): Doc fix.
21825 2013-06-18  Matthias Meulien  <orontee@gmail.com>
21827         * tabify.el (untabify, tabify): With prefix, apply to entire buffer.
21828         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00545.html>
21830 2013-06-18  Glenn Morris  <rgm@gnu.org>
21832         * generic-x.el (bat-generic-mode, rc-generic-mode, rul-generic-mode):
21833         Replace obsolete function generic-make-keywords with its expansion.
21835         * progmodes/python.el (ffap-alist): Declare.
21837         * textmodes/reftex.el (bibtex-mode-map): Declare.
21839 2013-06-18  Stefan Monnier  <monnier@iro.umontreal.ca>
21841         * emacs-lisp/package.el: Update package-alist after install (bug#14632).
21842         (package-unpack, package-unpack-single): Return the pkg-dir.
21843         (package-download-transaction): Use it to update package-alist.
21845 2013-06-17  Lars Magne Ingebrigtsen  <larsi@gnus.org>
21847         * net/browse-url.el (browse-url-browser-function): Add `eww' as a
21848         possible choice.
21850 2013-06-17  Juri Linkov  <juri@jurta.org>
21852         * net/webjump.el (webjump-sample-sites): Add DuckDuckGo.
21854 2013-06-17  Dmitry Gutov  <dgutov@yandex.ru>
21856         * emacs-lisp/package.el (package-load-descriptor):
21857         Remove `with-syntax-table' call, `read' doesn't need it.
21858         http://lists.gnu.org/archive/html/emacs-devel/2013-06/msg00539.html
21860 2013-06-17  Juanma Barranquero  <lekktu@gmail.com>
21862         * startup.el (command-line): Expand package name returned by
21863         `package--description-file' (bug#14639).
21865 2013-06-17  Dmitry Gutov  <dgutov@yandex.ru>
21867         * emacs-lisp/package.el (package-load-descriptor): Do not call
21868         `emacs-lisp-mode', just use its syntax table.
21870 2013-06-17  Juanma Barranquero  <lekktu@gmail.com>
21872         * progmodes/prog-mode.el (prog-prettify-install): Add `composition' to
21873         `font-lock-extra-managed-props' if any prettifying keyword is added.
21874         (prog--prettify-font-lock-compose-symbol): Use ?\s instead of ?\ .
21875         (prog-mode): Use `setq-local'.
21877 2013-06-17  Stefan Monnier  <monnier@iro.umontreal.ca>
21879         * international/characters.el (standard-case-table): Set syntax of ?»
21880         and ?« to punctuation.
21882 2013-06-16  Juanma Barranquero  <lekktu@gmail.com>
21884         * progmodes/prog-mode.el (prog--prettify-font-lock-compose-symbol):
21885         Save relevant match data before calling `syntax-ppss' (bug#14595).
21887 2013-06-15  Juri Linkov  <juri@jurta.org>
21889         * files-x.el (modify-file-local-variable-prop-line): Add local
21890         variables to the end of the existing comment on the first line.
21891         Use `file-auto-mode-skip' to skip interpreter magic line,
21892         and also skip XML declaration.
21894 2013-06-15  Stefan Monnier  <monnier@iro.umontreal.ca>
21896         * startup.el (package--builtin-versions): New var.
21897         (package-subdirectory-regexp): Remove.
21898         (package--description-file): Hard code its value instead.
21900         * emacs-lisp/package.el: Don't activate packages older than builtin.
21901         (package-obsolete-list): Rename from package-obsolete-alist, and make
21902         it into a simple list of package-desc.
21903         (package-strip-version): Remove.
21904         (package-built-in-p): Use package--builtin-versions.
21905         (package-mark-obsolete): Simplify.
21906         (package-process-define-package): Mark it obsolete if older than the
21907         builtin version.
21908         (package-handle-response): Use line-end-position.
21909         (package-read-archive-contents, package--download-one-archive):
21910         Simplify.
21911         (package--add-to-archive-contents): Skip if older than the builtin or
21912         installed version.
21913         (package-menu-describe-package): Fix last change.
21914         (package-list-unversioned): New var.
21915         (package-menu--generate): Use it.
21917         * emacs-lisp/autoload.el: Manage package--builtin-versions.
21918         (autoload--insert-text, autoload--insert-cookie-text): New functions.
21919         (autoload-builtin-package-versions): New variable.
21920         (autoload-generate-file-autoloads): Use them.
21921         Remove the list of autoloaded functions/macros from the
21922         (autoload...) comments.
21924         * Makefile.in (autoloads): Set autoload-builtin-package-versions.
21926 2013-06-15  Eli Zaretskii  <eliz@gnu.org>
21928         * simple.el (line-move-partial): Don't jump to the next screen
21929         line as soon as it becomes visible.  Instead, continue enlarging
21930         the vscroll until the portion of a tall screen line that's left on
21931         display is about the height of the frame's default font.
21932         (Bug#14567)
21934 2013-06-15  Glenn Morris  <rgm@gnu.org>
21936         * vc/vc-dispatcher.el (vc-compilation-mode): Avoid making
21937         compilation-error-regexp-alist void, or local while let-bound.
21939         * progmodes/make-mode.el (makefile-mode-syntax-table):
21940         Treat "=" as punctuation.  (Bug#14614)
21942 2013-06-15  Juanma Barranquero  <lekktu@gmail.com>
21944         * help-fns.el (describe-variable):
21945         Add extra line for permanent-local variables.
21947 2013-06-15  Simen Heggestøyl  <simenheg@ifi.uio.no>  (tiny change)
21949         * progmodes/scheme.el (scheme-font-lock-keywords-2):
21950         Add export, import, library.  (Bug#9164)
21951         (library): Set indent function.
21953 2013-06-14  Glenn Morris  <rgm@gnu.org>
21955         * term/xterm.el (xterm--query):
21956         Stop after first matching handler.  (Bug#14615)
21958 2013-06-14  Ivan Kanis  <ivan@kanis.fr>
21960         Add support for dired in saveplace.
21961         * dired.el (dired-initial-position-hook): New variable.
21962         (dired-initial-position): Call hook to place cursor position.
21963         * saveplace.el (save-place-to-alist): Add dired position.
21964         (save-place-dired-hook): New function.
21966 2013-06-14  Stefan Monnier  <monnier@iro.umontreal.ca>
21968         * subr.el (eval-after-load, set-temporary-overlay-map): Use indirection
21969         through a symbol rather than letrec.
21971         * emacs-lisp/package.el: Don't recompute dir.  Use pkg-descs more.
21972         (package-desc): Add `dir' field.
21973         (package-desc-full-name): New function.
21974         (package-load-descriptor): Combine the two arguments.  Don't use `load'.
21975         (package-maybe-load-descriptor): Remove.
21976         (package-load-all-descriptors): Just call package-load-descriptor.
21977         (package--disabled-p): New function.
21978         (package-desc-vers, package-desc-doc): Remove aliases.
21979         (package--dir): Remove function.
21980         (package-activate): Check if a package is disabled.
21981         (package-process-define-package): New function, extracted from
21982         define-package.
21983         (define-package): Turn into a place holder.
21984         (package-unpack-single, package-tar-file-info):
21985         Use package--description-file.
21986         (package-compute-transaction): Use package--disabled-p.
21987         (package-download-transaction): Don't call
21988         package-maybe-load-descriptor since they're all loaded anyway.
21989         (package-install): Change argument to be a pkg-desc.
21990         (package-delete): Use a single pkg-desc argument.
21991         (describe-package-1): Use package-desc-dir instead of package--dir.
21992         Use package-desc property instead of package-symbol.
21993         (package-install-button-action): Adjust accordingly.
21994         (package--push): Rewrite.
21995         (package-menu--print-info): Adjust accordingly.  Change the ID format
21996         to be a pkg-desc.
21997         (package-menu-describe-package, package-menu-get-status)
21998         (package-menu--find-upgrades, package-menu-mark-upgrades)
21999         (package-menu-execute, package-menu--name-predicate):
22000         Adjust accordingly.
22001         * startup.el (package--description-file): New function.
22002         (command-line): Use it.
22003         * emacs-lisp/package-x.el (package-upload-buffer-internal):
22004         Use package-desc-version.
22006         * emacs-lisp/bytecomp.el (byte-compile-force-lexical-warnings): New var.
22007         (byte-compile-preprocess): Use it.
22008         (byte-compile-file-form-defalias): Try a bit harder to use macros we
22009         can't quite recognize.
22010         (byte-compile-add-to-list): Remove.
22011         * emacs-lisp/cconv.el (cconv-warnings-only): New function.
22012         (cconv-closure-convert): Add assertion.
22014         * emacs-lisp/map-ynp.el: Use lexical-binding.
22015         (map-y-or-n-p): Remove unused vars `tail' and `object'.
22016         Factor out some repeated code.
22018 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
22020         * subr.el (with-eval-after-load): New macro.
22021         (eval-after-load): Allow form to be a function.
22022         take advantage of lexical-binding.
22023         (do-after-load-evaluation): Use dolist and adjust to new format.
22024         * simple.el (bad-packages-alist): Use dolist and with-eval-after-load.
22026 2013-06-13  Juri Linkov  <juri@jurta.org>
22028         * replace.el (perform-replace): Display "symbol " and other search
22029         modes from `isearch-message-prefix' in the *Help* buffer.
22031         * isearch.el (isearch-query-replace): Add " symbol" and other
22032         possible search modes from `isearch-message-prefix' to the prompt.
22033         (isearch-occur): Use `with-isearch-suspended' to not exit Isearch
22034         when reading a regexp to collect.
22036 2013-06-13  Juri Linkov  <juri@jurta.org>
22038         * isearch.el (word-search-regexp): Match whitespace if the search
22039         string begins or ends in whitespace.  The LAX arg is applied to
22040         both ends of the search string.  Use `regexp-quote' and explicit
22041         \< and \> instead of \b.  Use \` and \' instead of ^ and $.
22042         (isearch-symbol-regexp): Sync with `word-search-regexp' where word
22043         boundaries are replaced with symbol boundaries, and characters
22044         between symbols match non-word non-symbol syntax.  (Bug#14602)
22046 2013-06-13  Juri Linkov  <juri@jurta.org>
22048         * isearch.el (isearch-del-char): Don't exceed the length of
22049         `isearch-string' by the prefix arg.  (Bug#14563)
22051 2013-06-13  Juri Linkov  <juri@jurta.org>
22053         * isearch.el (isearch-yank-word, isearch-yank-line)
22054         (isearch-char-by-name, isearch-quote-char)
22055         (isearch-printing-char, isearch-process-search-char):
22056         Add optional count prefix arg.  (Bug#14563)
22058         * international/isearch-x.el
22059         (isearch-process-search-multibyte-characters):
22060         Add optional count prefix arg.
22062 2013-06-13  Stefan Monnier  <monnier@iro.umontreal.ca>
22064         * subr.el (internal-push-keymap, internal-pop-keymap): New functions.
22065         (set-temporary-overlay-map): Use them (bug#14095); and take advantage of
22066         lexical-binding.
22068 2013-06-13  Vitalie Spinu  <spinuvit@gmail.com>
22070         * subr.el (set-temporary-overlay-map): Add on-exit argument.
22072 2013-06-13  Glenn Morris  <rgm@gnu.org>
22074         * startup.el (tty-handle-args):
22075         Don't just discard "--" and anything after.  (Bug#14608)
22077         * emacs-lisp/lisp.el (forward-sexp, backward-sexp): Doc fixes.
22079 2013-06-13  Michael Albinus  <michael.albinus@gmx.de>
22081         Implement changes in Secret Service API.  Make it backward compatible.
22082         * net/secrets.el (secrets-struct-secret-content-type): New defonst.
22083         (secrets-create-item): Use it.  Prefix properties with interface.
22085 2013-06-13  Michael Hoffman  <9qobl2n02@sneakemail.com>  (tiny change)
22087         * term.el (term-suppress-hard-newline): New option.  (Bug#12017)
22088         (term-emulate-terminal): Respect term-suppress-hard-newline.
22090 2013-06-13  E Sabof  <esabof@gmail.com>  (tiny change)
22092         * image-dired.el (image-dired-dired-toggle-marked-thumbs):
22093         Only remove a `thumb-file' overlay.  (Bug#14548)
22095 2013-06-12  Grégoire Jadi  <daimrod@gmail.com>
22097         * mail/reporter.el (reporter-submit-bug-report):
22098         Handle missing package-name.  (Bug#14600)
22100 2013-06-12  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
22102         * textmodes/reftex-cite.el (reftex-cite-regexp-hist)
22103         (reftex-citation-prompt, reftex-default-bibliography)
22104         (reftex-bib-or-thebib, reftex-get-bibfile-list)
22105         (reftex-pop-to-bibtex-entry, reftex-extract-bib-entries)
22106         (reftex-bib-sort-author, reftex-bib-sort-year)
22107         (reftex-bib-sort-year-reverse, reftex-get-crossref-alist)
22108         (reftex-extract-bib-entries-from-thebibliography)
22109         (reftex-get-bibkey-default, reftex-get-bib-names)
22110         (reftex-parse-bibtex-entry, reftex-get-bib-field)
22111         (reftex-format-bib-entry, reftex-parse-bibitem)
22112         (reftex-format-bibitem, reftex-do-citation)
22113         (reftex-figure-out-cite-format, reftex-offer-bib-menu)
22114         (reftex-restrict-bib-matches, reftex-extract-bib-file)
22115         (reftex-insert-bib-matches, reftex-format-citation)
22116         (reftex-make-cite-echo-string, reftex-bibtex-selection-callback)
22117         (reftex-create-bibtex-file): Add docstrings, mostly by converting
22118         existing comments into docstrings.
22120 2013-06-12  Xue Fuqiao  <xfq.free@gmail.com>
22122         * ibuf-ext.el (ibuffer-mark-help-buffers): Doc fix.
22124 2013-06-12  Andreas Schwab  <schwab@suse.de>
22126         * international/mule.el (auto-coding-alist): Use utf-8-emacs-unix
22127         for auto-save files.
22129 2013-06-12  Glenn Morris  <rgm@gnu.org>
22131         * ido.el (ido-delete-ignored-files): Remove.
22132         (ido-wide-find-dirs-or-files, ido-make-file-list-1):
22133         Go back to calling ido-ignore-item-p directly.
22135 2013-06-12  Eyal Lotem  <eyal.lotem@gmail.com>  (tiny change)
22137         * ido.el (ido-wide-find-dirs-or-files): Respect ido-case-fold.
22139         * ido.el (ido-delete-ignored-files): New function,
22140         split from ido-make-file-list-1.
22141         (ido-wide-find-dirs-or-files): Maybe ignore files.  (Bug#13003)
22142         (ido-make-file-list-1): Use ido-delete-ignored-files.
22144 2013-06-12  Leo Liu  <sdl.web@gmail.com>
22146         * progmodes/octave.el (inferior-octave-startup)
22147         (inferior-octave-completion-table)
22148         (inferior-octave-track-window-width-change)
22149         (octave-eldoc-function-signatures, octave-help)
22150         (octave-find-definition): Use single quoted strings.
22151         (inferior-octave-startup-args): Change default value.
22152         (inferior-octave-startup): Do not hard code "-i" and
22153         "--no-line-editing".
22154         (inferior-octave-resync-dirs): Add optional arg NOERROR.
22155         (inferior-octave-directory-tracker): Use it.
22156         (octave-goto-function-definition): Robustify.
22157         (octave-help): Support highlighting operators in 'See also'.
22158         (octave-find-definition): Find subfunctions only in Octave mode.
22160 2013-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
22162         * help-fns.el (help-fns--compiler-macro): If the handler function is
22163         named, then put a link to it.
22164         * help-mode.el (help-function-cmacro): Adjust regexp for cl-lib names.
22165         * emacs-lisp/cl-macs.el (cl--compiler-macro-typep): New function.
22166         (cl-typep): Use it.
22167         (cl-eval-when): Simplify debug spec.
22168         (cl-define-compiler-macro): Use eval-and-compile.  Give a name to the
22169         compiler-macro function instead of setting `compiler-macro-file'.
22171 2013-06-12  Xue Fuqiao  <xfq.free@gmail.com>
22173         * vc/vc-cvs.el (vc-cvs-stay-local): Doc fix.
22174         * vc/vc-hooks.el (vc-stay-local): Doc fix.
22176 2013-06-12  Stefan Monnier  <monnier@iro.umontreal.ca>
22177             Daniel Hackney  <dan@haxney.org>
22179         First part of Daniel Hackney's patch to package.el.
22180         * emacs-lisp/package.el: Use defstruct.
22181         (package-desc): New, main struct.
22182         (package--bi-desc, package--ac-desc): New structs, used to describe the
22183         format in external files.
22184         (package-desc-vers): Replace with package-desc-version accessor.
22185         (package-desc-doc): Replace with package-desc-summary accessor.
22186         (package-activate-1): Remove `package' arg since the pkg-vec now
22187         includes the name.
22188         (define-package): Use package-desc-from-define.
22189         (package-unpack-single): Change file-name arg to be a symbol.
22190         (package--add-to-archive-contents): Use package-desc-create and new
22191         accessor functions to package--ac-desc.
22192         (package-buffer-info, package-tar-file-info): Return a package-desc.
22193         (package-install-from-buffer): Remove `type' argument.  Change pkg-info
22194         arg to be a package-desc.
22195         (package-install-file): Adjust accordingly.  Use \' to match EOS.
22196         (package--from-builtin): New function.
22197         (describe-package-1, package-menu--generate): Use it.
22198         (package--make-autoloads-and-compile): Change name arg to be a symbol.
22199         (package-generate-autoloads): Idem and return the name of the file.
22200         * emacs-lisp/package-x.el (package-upload-buffer-internal):
22201         Change pkg-info arg to be a package-desc.
22202         Use package-make-ac-desc.
22203         (package-upload-file): Use \' to match EOS.
22204         * finder.el (finder-compile-keywords): Use package-make-builtin.
22206 2013-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
22208         * vc/vc.el (vc-deduce-fileset): Change error message.
22209         (vc-read-backend): New function.
22210         (vc-next-action): Use it.
22212         * subr.el (function-arity): Remove (mistakenly added) (bug#14590).
22214         * progmodes/prolog.el (prolog-make-keywords-regexp): Remove.
22215         (prolog-font-lock-keywords): Use regexp-opt instead.
22216         Don't manually highlight strings.
22217         (prolog-mode-variables): Simplify comment-start-skip.
22218         (prolog-consult-compile): Use display-buffer.  Remove unused old-filter.
22220         * emacs-lisp/generic.el (generic--normalise-comments)
22221         (generic-set-comment-syntax, generic-set-comment-vars): New functions.
22222         (generic-mode-set-comments): Use them.
22223         (generic-bracket-support): Use setq-local.
22224         (generic-make-keywords-list): Declare obsolete.
22226 2013-06-11  Glenn Morris  <rgm@gnu.org>
22228         * emacs-lisp/lisp-mode.el (lisp-mode-variables):
22229         Prettify after setting font-lock-defaults.  (Bug#14574)
22231 2013-06-11  Juanma Barranquero  <lekktu@gmail.com>
22233         * replace.el (query-replace, occur-read-regexp-defaults-function)
22234         (replace-search):
22235         * subr.el (declare-function, number-sequence, local-set-key)
22236         (substitute-key-definition, locate-user-emacs-file)
22237         (with-silent-modifications, split-string, eval-after-load):
22238         Fix typos, remove unneeded backslashes and reflow some docstrings.
22240 2013-06-11  Stefan Monnier  <monnier@iro.umontreal.ca>
22242         * international/mule-conf.el (file-coding-system-alist): Use utf-8 as
22243         default for Elisp files.
22245 2013-06-11  Glenn Morris  <rgm@gnu.org>
22247         * vc/log-view.el (log-view-mode-map): Inherit from special-mode-map,
22248         although define-derived-mode was doing this anyway.  (Bug#14583)
22250 2013-06-10  Juanma Barranquero  <lekktu@gmail.com>
22252         * allout.el (allout-encryption-plaintext-sanitization-regexps):
22253         Fix make-variable-buffer-local call to refer to the correct variable.
22255 2013-06-10  Aidan Gauland  <aidalgol@amuri.net>
22257         * eshell/em-term.el (eshell-visual-commands)
22258         (eshell-visual-subcommands, eshell-visual-options):
22259         Add summary line to docstrings.  Add cross-references.
22261 2013-06-10  Glenn Morris  <rgm@gnu.org>
22263         * epa.el (epa-read-file-name): New function.  (Bug#14510)
22264         (epa-decrypt-file): Make plain-file optional.  Use epa-read-file-name.
22266 2013-06-09  Aidan Gauland  <aidalgol@amuri.net>
22268         * eshell/em-term.el (eshell-visual-command-p): Fix bug that caused
22269         output redirection to be ignored with visual commands.
22271 2013-06-09  Aidan Gauland  <aidalgol@amuri.net>
22273         * eshell/em-term.el (eshell-visual-command-p): New function.
22274         (eshell-term-initialize): Move long lambda to separate function
22275         eshell-visual-command-p.
22276         * eshell/em-dirs.el (eshell-dirs-initialize):
22277         * eshell/em-script.el (eshell-script-initialize):
22278         Add missing #' to lambda.
22280 2013-06-08  Leo Liu  <sdl.web@gmail.com>
22282         * progmodes/octave.el (octave-add-log-current-defun): New function.
22283         (octave-mode): Set add-log-current-defun-function.
22284         (octave-goto-function-definition): Do not move point if not found.
22285         (octave-find-definition): Enhance to try subfunctions first.
22287 2013-06-08  Glenn Morris  <rgm@gnu.org>
22289         * emacs-lisp/bytecomp.el (byte-compile-char-before)
22290         (byte-compile-backward-char, byte-compile-backward-word):
22291         Improve previous change, to handle non-explicit nil.
22293 2013-06-07  Stefan Monnier  <monnier@iro.umontreal.ca>
22295         * emacs-lisp/smie.el: Improve show-paren-mode behavior.
22296         (smie--opener/closer-at-point): New function.
22297         (smie--matching-block-data): Use it.  Don't match from right after an
22298         opener or right before a closer.  Obey smie-blink-matching-inners.
22299         Don't signal a mismatch for repeated inners like "switch..case..case".
22301 2013-06-07  Leo Liu  <sdl.web@gmail.com>
22303         * progmodes/octave.el (octave-mode): Set comment-use-global-state
22304         to t.  (Bug#14303)
22305         (octave-function-header-regexp): Fix.  (Bug#14570)
22306         (octave-help-mode-finish-hook, octave-help-mode-finish):
22307         Remove.  Just use temp-buffer-show-hook.
22309         * newcomment.el (comment-search-backward): Revert last change.
22310         (Bug#14434)
22312         * emacs-lisp/smie.el (smie--matching-block-data): Minor simplification.
22314 2013-06-07  Eli Zaretskii  <eliz@gnu.org>
22316         * Makefile.in (TAGS TAGS-LISP): Pass the (long) list of *.el files
22317         through xargs, to avoid failure due to MS-Windows limitations on
22318         command-line length.
22320 2013-06-06  Glenn Morris  <rgm@gnu.org>
22322         * font-lock.el (lisp-font-lock-keywords-2):
22323         Treat user-error like error.
22325         * emacs-lisp/bytecomp.el (byte-compile-char-before)
22326         (byte-compile-backward-char, byte-compile-backward-word):
22327         Handle explicit nil arguments.  (Bug#14565)
22329 2013-06-05  Alan Mackenzie  <acm@muc.de>
22331         * isearch.el (isearch-allow-prefix): New user option.
22332         (isearch-other-meta-char): Don't exit isearch when a prefix
22333         argument is typed whilst `isearch-allow-prefix' is non-nil.
22334         (Bug#9706)
22336 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
22338         * autorevert.el (auto-revert-notify-handler): Use memq.
22339         Hide assertion failure.
22341         * skeleton.el: Use cl-lib.
22342         (skeleton-further-elements): Use defvar-local.
22343         (skeleton-insert): Use cl-progv.
22345 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
22347         * progmodes/prog-mode.el (prog-prettify-symbols)
22348         (prog-prettify-install): Update docstrings.
22350 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
22352         * simple.el: Move all the prog-mode code to prog-mode.el.
22353         * progmodes/prog-mode.el: New file.
22354         * loadup.el: Add prog-mode.el.
22356 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
22358         * simple.el (prog-prettify-symbols): Add version.
22359         (prog-prettify-install): Add convenience function to prettify symbols.
22361         * progmodes/perl-mode.el (perl--augmented-font-lock-keywords)
22362         (perl--augmented-font-lock-keywords-1)
22363         (perl--augmented-font-lock-keywords-2, perl-mode): Remove unneeded
22364         variables and use it.
22366         * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
22367         (cfengine3-mode): Remove unneeded variable and use it.
22369         * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
22370         (lisp--augmented-font-lock-keywords-1)
22371         (lisp--augmented-font-lock-keywords-2, lisp-mode-variables):
22372         Remove unneeded variables and use it.
22374 2013-06-05  João Távora  <joaotavora@gmail.com>
22376         * net/tls.el (open-tls-stream): Remove unneeded buffer contents up
22377         to point when opening the connection.  (Bug#14380)
22379 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
22381         * subr.el (load-history-regexp, load-history-filename-element)
22382         (eval-after-load, after-load-functions, do-after-load-evaluation)
22383         (eval-next-after-load, display-delayed-warnings)
22384         (collapse-delayed-warnings, delayed-warnings-hook): Move after the
22385         definition of save-match-data.
22386         (overriding-local-map): Remove accidental obsolescence declaration.
22388         * emacs-lisp/edebug.el (edebug-result): Move before first use.
22390 2013-06-05  Teodor Zlatanov  <tzz@lifelogs.com>
22392         Generalize symbol prettify support to prog-mode and implement it
22393         for perl-mode, cfengine3-mode, and emacs-lisp-mode.
22394         * simple.el (prog-prettify-symbols-alist, prog-prettify-symbols)
22395         (prog--prettify-font-lock-compose-symbol)
22396         (prog-prettify-font-lock-symbols-keywords): New variables and
22397         functions to support symbol prettification.
22398         * emacs-lisp/lisp-mode.el (lisp--augmented-font-lock-keywords)
22399         (lisp--augmented-font-lock-keywords-1)
22400         (lisp--augmented-font-lock-keywords-2, lisp-mode-variables)
22401         (lisp--prettify-symbols-alist): Implement prettify of lambda.
22402         * progmodes/cfengine.el (cfengine3--augmented-font-lock-keywords)
22403         (cfengine3--prettify-symbols-alist, cfengine3-mode):
22404         Implement prettify of -> => :: strings.
22405         * progmodes/perl-mode.el (perl-prettify-symbols)
22406         (perl--font-lock-compose-symbol)
22407         (perl--font-lock-symbols-keywords): Move to prog-mode.
22408         (perl--prettify-symbols-alist): Prettify -> => :: strings.
22409         (perl-font-lock-keywords-1)
22410         (perl-font-lock-keywords-2): Remove explicit prettify support.
22411         (perl--augmented-font-lock-keywords)
22412         (perl--augmented-font-lock-keywords-1)
22413         (perl--augmented-font-lock-keywords-2, perl-mode):
22414         Implement prettify support.
22416 2013-06-05  Leo Liu  <sdl.web@gmail.com>
22418         Re-implement SMIE matching block highlight using
22419         show-paren-data-function.  (Bug#14395)
22420         * emacs-lisp/smie.el (smie-matching-block-highlight)
22421         (smie--highlight-matching-block-overlay)
22422         (smie--highlight-matching-block-lastpos)
22423         (smie-highlight-matching-block)
22424         (smie-highlight-matching-block-mode): Remove.
22425         (smie--matching-block-data-cache): New variable.
22426         (smie--matching-block-data): New function.
22427         (smie-setup): Use smie--matching-block-data for
22428         show-paren-data-function.
22430         * progmodes/octave.el (octave-mode-menu): Fix.
22431         (octave-find-definition): Skip garbage lines.
22433 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
22435         Fix compilation error with simultaneous dynamic+lexical scoping.
22436         Add warning when a defvar appears after the first let-binding.
22437         * emacs-lisp/bytecomp.el (byte-compile-lexical-variables): New var.
22438         (byte-compile-close-variables): Initialize it.
22439         (byte-compile--declare-var): New function.
22440         (byte-compile-file-form-defvar)
22441         (byte-compile-file-form-define-abbrev-table)
22442         (byte-compile-file-form-custom-declare-variable): Use it.
22443         (byte-compile-make-lambda-lexenv): Change the argument.  Simplify.
22444         (byte-compile-lambda): Share call to byte-compile-arglist-vars.
22445         (byte-compile-bind): Handle dynamic bindings that shadow
22446         lexical bindings.
22447         (byte-compile-unbind): Make arg non-optional.
22448         (byte-compile-let): Simplify.
22449         * emacs-lisp/cconv.el (byte-compile-lexical-variables): Declare var.
22450         (cconv--analyse-function, cconv-analyse-form): Populate it.
22451         Protect byte-compile-bound-variables to limit the scope of defvars.
22452         (cconv-analyse-form): Add missing rule for (defvar <foo>).
22453         Remove unneeded rule for `declare'.
22455         * emacs-lisp/cl-macs.el (cl--compiler-macro-adjoin): Use macroexp-let2
22456         so as to avoid depending on cl-adjoin at run-time.
22457         * emacs-lisp/cl-lib.el (cl-pushnew): Use backquotes.
22459         * emacs-lisp/macroexp.el (macroexp--compiling-p): New function.
22460         (macroexp--warn-and-return): Use it.
22462 2013-06-05  Stefan Monnier  <monnier@iro.umontreal.ca>
22464         * subr.el: Convert to lexical binding.
22465         (overriding-local-map): Make obsolete.
22466         (add-to-list): Doc fix.  Add compiler macro.
22467         (read-key): Swap values of local maps.
22469 2013-06-05  Leo Liu  <sdl.web@gmail.com>
22471         * eshell/esh-mode.el (eshell-mode): Fix key bindings.
22473 2013-06-04  Leo Liu  <sdl.web@gmail.com>
22475         * progmodes/compile.el (compile-goto-error): Add optional arg NOMSG.
22476         (compilation-auto-jump): Suppress the "Mark set" message to give
22477         way to exit message.
22479 2013-06-04  Alan Mackenzie  <acm@muc.de>
22481         Remove faulty optimization from indentation calculation.
22482         * progmodes/cc-engine.el (c-guess-basic-syntax): Don't calculate
22483         search limit based on 2000 characters back from indent-point.
22485 2013-06-03  Tassilo Horn  <tsdh@gnu.org>
22487         * eshell/em-term.el (cl-lib): Require `cl-lib'.
22489 2013-06-03  Stefan Monnier  <monnier@iro.umontreal.ca>
22491         * emacs-lisp/lisp.el: Use lexical-binding.
22492         (lisp--local-variables-1, lisp--local-variables): New functions.
22493         (lisp--local-variables-completion-table): New var.
22494         (lisp-completion-at-point): Use it complete let-bound vars.
22496         * emacs-lisp/lisp-mode.el (eval-sexp-add-defvars): Expand macros
22497         eagerly (bug#14422).
22499 2013-06-03  Michael Albinus  <michael.albinus@gmx.de>
22501         * autorevert.el (auto-revert-notify-enabled)
22502         (auto-revert-notify-rm-watch, auto-revert-notify-add-watch)
22503         (auto-revert-notify-event-p, auto-revert-notify-event-file-name)
22504         (auto-revert-notify-handler): Handle also gfilenotify.
22506         * subr.el (file-notify-handle-event): New defun.  Replacing ...
22507         (inotify-event-p, inotify-handle-event, w32notify-handle-event):
22508         Remove.
22510 2013-06-03  Juri Linkov  <juri@jurta.org>
22512         * bindings.el (search-map): Bind `highlight-symbol-at-point' to
22513         `M-s h .'.  (Bug#14427)
22515         * hi-lock.el (highlight-symbol-at-point): New alias for the new
22516         command `hi-lock-face-symbol-at-point'.
22517         (hi-lock-face-symbol-at-point): New command.
22518         (hi-lock-map): Bind `highlight-symbol-at-point' to `C-x w .'.
22519         (hi-lock-menu): Add `highlight-symbol-at-point'.
22520         (hi-lock-mode): Doc fix.
22522         * isearch.el (isearch-forward-symbol-at-point): New command.
22523         (search-map): Bind `isearch-forward-symbol-at-point' to `M-s .'.
22524         (isearch-highlight-regexp): Add a regexp which matches
22525         words/symbols for word/symbol mode.
22527         * subr.el (find-tag-default-bounds): New function with the body
22528         mostly moved from `find-tag-default'.
22529         (find-tag-default): Move most code to `find-tag-default-bounds',
22530         call it and apply `buffer-substring-no-properties' afterwards.
22532 2013-06-03  Tassilo Horn  <tsdh@gnu.org>
22534         * eshell/em-term.el (eshell-term-initialize):
22535         Use `cl-intersection' rather than `intersection'.
22537 2013-06-02  Xue Fuqiao  <xfq.free@gmail.com>
22539         * vc/log-view.el: Doc fix.
22540         (log-view-mode-map): Copy keymap from `special-mode-map'.
22542 2013-06-02  Eric Ludlam  <zappo@gnu.org>
22544         * emacs-lisp/eieio.el (eieio--defalias, eieio-hook)
22545         (eieio-error-unsupported-class-tags, eieio-skip-typecheck)
22546         (eieio-optimize-primary-methods-flag, eieio-initializing-object)
22547         (eieio-unbound, eieio-default-superclass)
22548         (eieio--define-field-accessors, method-static, method-before)
22549         (method-primary, method-after, method-num-lists)
22550         (method-generic-before, method-generic-primary)
22551         (method-generic-after, method-num-slots)
22552         (eieio-specialized-key-to-generic-key)
22553         (eieio--check-type, class-v, class-p)
22554         (eieio-class-name, define-obsolete-function-alias)
22555         (eieio-class-parents-fast, eieio-class-children-fast)
22556         (same-class-fast-p, class-constructor, generic-p)
22557         (generic-primary-only-p, generic-primary-only-one-p)
22558         (class-option-assoc, class-option, eieio-object-p)
22559         (class-abstract-p, class-method-invocation-order)
22560         (eieio-defclass-autoload-map, eieio-defclass-autoload)
22561         (eieio-class-un-autoload, eieio-defclass)
22562         (eieio-eval-default-p, eieio-perform-slot-validation-for-default)
22563         (eieio-add-new-slot, eieio-copy-parents-into-subclass)
22564         (eieio--defgeneric-init-form, eieio-defgeneric-form)
22565         (eieio-defgeneric-reset-generic-form)
22566         (eieio-defgeneric-form-primary-only)
22567         (eieio-defgeneric-reset-generic-form-primary-only)
22568         (eieio-defgeneric-form-primary-only-one)
22569         (eieio-defgeneric-reset-generic-form-primary-only-one)
22570         (eieio-unbind-method-implementations)
22571         (eieio--defmethod, eieio--typep)
22572         (eieio-perform-slot-validation, eieio-validate-slot-value)
22573         (eieio-validate-class-slot-value, eieio-barf-if-slot-unbound)
22574         (eieio-oref, eieio-oref-default, eieio-default-eval-maybe)
22575         (eieio-oset, eieio-oset-default, eieio-slot-originating-class-p)
22576         (eieio-slot-name-index, eieio-class-slot-name-index)
22577         (eieio-set-defaults, eieio-initarg-to-attribute)
22578         (eieio-attribute-to-initarg, eieio-c3-candidate)
22579         (eieio-c3-merge-lists, eieio-class-precedence-c3)
22580         (eieio-class-precedence-dfs, eieio-class-precedence-bfs)
22581         (eieio-class-precedence-list, eieio-generic-call-methodname)
22582         (eieio-generic-call-arglst, eieio-generic-call-key)
22583         (eieio-generic-call-next-method-list)
22584         (eieio-pre-method-execution-functions, eieio-generic-call)
22585         (eieio-generic-call-primary-only, eieiomt-method-list)
22586         (eieiomt-optimizing-obarray, eieiomt-install)
22587         (eieiomt-add, eieiomt-next, eieiomt-sym-optimize)
22588         (eieio-generic-form, eieio-defmethod, make-obsolete)
22589         (eieio-defgeneric, make-obsolete): Move to eieio-core.el.
22590         (defclass): Remove `eval-and-compile' from macro.
22591         (call-next-method, shared-initialize): Instead of using
22592         `scoped-class' variable, use new eieio--scoped-class, and
22593         eieio--with-scoped-class.
22594         (initialize-instance): Rename local variable 'scoped-class' to
22595         'this-class' to remove ambiguitity from old global.
22597         * emacs-lisp/eieio-core.el: New file.  Derived from key parts of
22598         eieio.el.
22599         (eieio--scoped-class-stack): New variable.
22600         (eieio--scoped-class): New fcn.
22601         (eieio--with-scoped-class): New scoping macro.
22602         (eieio-defclass): Use pushnew instead of add-to-list.
22603         (eieio-defgeneric-form-primary-only-one, eieio-oset-default)
22604         (eieio-slot-name-index, eieio-set-defaults, eieio-generic-call)
22605         (eieio-generic-call-primary-only, eieiomt-add): Instead of using
22606         `scoped-class' variable, use new eieio--scoped-class, and
22607         eieio--with-scoped-class.
22609         * emacs-lisp/eieio-base.el (cl-lib): Require during compile.
22611 2013-06-02  Tassilo Horn  <tsdh@gnu.org>
22613         * eshell/esh-ext.el (eshell-external-command): Pass args to
22614         `eshell-find-interpreter'.
22615         (eshell-find-interpreter): Add new second parameter ARGS.
22617         * eshell/em-script.el (eshell-script-initialize): Add second arg
22618         to the function added as MATCH to `eshell-interpreter-alist'.
22620         * eshell/em-dirs.el (eshell-dirs-initialize): Add second arg to
22621         the function added as MATCH to `eshell-interpreter-alist'.
22623         * eshell/em-term.el (eshell-visual-subcommands): New defcustom.
22624         (eshell-visual-options): New defcustom.
22625         (eshell-escape-control-x): Adapt docstring.
22626         (eshell-term-initialize): Test `eshell-visual-subcommands' and
22627         `eshell-visual-options' in addition to `eshell-visual-commands'.
22628         (eshell-exec-visual): Pass args to `eshell-find-interpreter'.
22630 2013-06-01  Fabián Ezequiel Gallina  <fgallina@gnu.org>
22632         * progmodes/python.el (python-indent-block-enders): Add break,
22633         continue and raise keywords.
22635 2013-06-01  Glenn Morris  <rgm@gnu.org>
22637         * pcmpl-gnu.el (pcomplete/tar): Check obsolete variable is bound.
22639         Plain (f)boundp silences compilation warnings since Emacs 22.1.
22640         * progmodes/cc-cmds.el (delete-forward-p):
22641         * progmodes/cc-defs.el (buffer-syntactic-context-depth):
22642         * progmodes/cc-engine.el (buffer-syntactic-context):
22643         * progmodes/cc-fonts.el (face-property-instance):
22644         * progmodes/cc-mode.el (set-keymap-parents):
22645         * progmodes/cc-vars.el (get-char-table): No need for cc-bytecomp-defun.
22646         * progmodes/cc-defs.el (c-set-region-active, c-beginning-of-defun-1)
22647         * progmodes/cc-mode.el (c-make-inherited-keymap): Use plain fboundp.
22648         * progmodes/cc-defs.el (zmacs-region-stays, zmacs-regions)
22649         (lookup-syntax-properties): Remove unecessary cc-bytecomp-defvar.
22651         * progmodes/cc-vars.el (other): Emacs has this widget since
22652         at least 21.1, so don't (re)define it.
22654         * eshell/em-cmpl.el (eshell-cmpl-initialize):
22655         Replace the obsolete alias pcomplete-arg-quote-list.
22657 2013-06-01  Leo Liu  <sdl.web@gmail.com>
22659         * progmodes/octave.el (octave-mode-syntax-table): Give `.'
22660         punctuation syntax.
22661         (inferior-octave-minimal-columns)
22662         (inferior-octave-last-column-width): New variables.
22663         (inferior-octave-track-window-width-change): New function.
22664         (inferior-octave-mode): Adjust column width so that Octave output,
22665         for example from 'ls', can fit into the window nicely.
22667 2013-05-31  Dmitry Gutov  <dgutov@yandex.ru>
22669         * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
22670         Highlight expansions inside regexp literals.
22672 2013-05-31  Glenn Morris  <rgm@gnu.org>
22674         * obsolete/sym-comp.el (symbol-complete):
22675         Replace obsolete completion-annotate-function.
22677         * progmodes/cc-vars.el (c-make-macro-with-semi-re): Silence compiler.
22679 2013-05-31  Dmitry Gutov  <dgutov@yandex.ru>
22681         * progmodes/ruby-mode.el (ruby-syntax-expansion-allowed-p):
22682         New function, checks if point is inside a literal that allows
22683         expression expansion.
22684         (ruby-syntax-propertize-expansion): Use it.
22685         (ruby-syntax-propertize-function): Bind `case-fold-search' to nil
22686         around the body.
22688 2013-05-30  Juri Linkov  <juri@jurta.org>
22690         * isearch.el (isearch-mode-map): Bind `isearch-toggle-invisible'
22691         to "\M-si".
22692         (isearch-invisible): New variable.
22693         (isearch-forward): Doc fix.
22694         (isearch-mode): Set `isearch-invisible'
22695         to the value of `search-invisible'.
22696         (isearch-toggle-case-fold): Doc fix.
22697         (isearch-toggle-invisible): New command.
22698         (isearch-query-replace): Let-bind `search-invisible'
22699         to the value of `isearch-invisible'.
22700         (isearch-search): Use `isearch-invisible' instead of
22701         `search-invisible'.  Let-bind `search-invisible'
22702         to the value of `isearch-invisible'.  (Bug#11378)
22704 2013-05-30  Juri Linkov  <juri@jurta.org>
22706         * replace.el (perform-replace): Avoid `isearch-range-invisible'
22707         call when `query-flag' is nil and `search-invisible' is non-nil.
22708         (Bug#11746)
22710 2013-05-30  Glenn Morris  <rgm@gnu.org>
22712         * progmodes/gdb-mi.el (gdb-wait-for-pending): Fix typo.
22714         * progmodes/cc-bytecomp.el (cc-bytecomp-noruntime-functions): New.
22715         (cc-require): Suppress spurious "noruntime" warnings.
22716         (cc-require-when-compile): Use fboundp, for sake of compiler.
22718         * progmodes/cc-mode.el: Move load of cc-vars before that of
22719         cc-langs (which in turn loads cc-vars), to quieten compiler.
22721 2013-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
22723         * paren.el: Simplify the code.
22724         (show-paren-mode): Always start the timer.
22725         (show-paren--idle-timer): Rename from show-paren-idle-timer.
22726         (show-paren--overlay, show-paren--overlay-1): Rename from
22727         show-paren-overlay and show-paren-overlay-1, and initialize to an
22728         overlay rather than to nil.
22729         (show-paren-function): Misc cleanup and simplifications.
22731 2013-05-30  Stefan Monnier  <monnier@iro.umontreal.ca>
22733         * paren.el (show-paren-data-function): New hook.
22734         (show-paren--default): New function, extracted from show-paren-function.
22735         (show-paren-function): Use show-paren-data-function.
22737 2013-05-30  Glenn Morris  <rgm@gnu.org>
22739         * ielm.el (ielm-map, ielm-complete-symbol):
22740         Use completion-at-point rather than obsolete functions.
22741         (inferior-emacs-lisp-mode): Doc fix.
22742         Set completion-at-point-functions, rather than
22743         comint-dynamic-complete-functions.
22745         * eshell/em-cmpl.el (eshell-complete-lisp-symbol): New function.
22746         (eshell-cmpl-initialize, eshell-complete-parse-arguments):
22747         Replace obsolete lisp-complete-symbol with eshell-complete-lisp-symbol.
22749         * image.el (image-animated-p): Tweak definition.
22751         * net/rlogin.el (rlogin-program, rlogin-explicit-args): Default to ssh.
22752         (rlogin-process-connection-type): Tweak default.  Add set-after.
22753         (rlogin-host): Doc fix.
22754         (rlogin): Tweak prompt.
22755         (rlogin-tab-or-complete): Use completion-at-point rather than alias.
22757         * net/net-utils.el (nslookup-mode-map, ftp-mode-map):
22758         * progmodes/tcl.el (inferior-tcl-mode-map):
22759         Use completion-at-point rather than obsolete alias.
22761         * emacs-lisp/eieio.el (eieio-eval-default-p): Move before use.
22763         * minibuffer.el (read-file-name-completion-ignore-case):
22764         Move before completion--in-region, for eager macro expansion.
22766 2013-05-29  Juri Linkov  <juri@jurta.org>
22768         * replace.el (occur-engine): Rename `globalcount' to `global-lines'
22769         for total count of matching lines.  Add `global-matches' for total
22770         count of matches.  Rename `matches' to `lines' for count of
22771         matching lines.  Add `matches' for count of matches.
22772         Rename `lines' to `curr-line' for line count.  Rename `prev-lines'
22773         to `prev-line' for line number of prev match endpt.
22774         Increment `matches' for every match.  Print the number of
22775         matching lines in the header.
22776         (occur-context-lines): Rename `lines' to `curr-line'.
22777         Rename `prev-lines' to `prev-line'.  (Bug#14017)
22779 2013-05-29  Juri Linkov  <juri@jurta.org>
22781         * replace.el (perform-replace): Add `skip-read-only-count',
22782         `skip-filtered-count', `skip-invisible-count' let-bound to 0.
22783         Increment them for corresponding conditions and report the number
22784         of skipped occurrences in the final message.  (Bug#11746)
22785         (query-replace, query-replace-regexp, query-replace-regexp-eval)
22786         (replace-string, replace-regexp): Doc fix.
22788 2013-05-29  Stefan Monnier  <monnier@iro.umontreal.ca>
22790         * emacs-lisp/trace.el (trace--read-args): Provide a default.
22792         * emacs-lisp/lisp-mode.el (lisp-mode-shared-map): Inherit from
22793         prog-mode-map (bug#14504).
22795 2013-05-29  Leo Liu  <sdl.web@gmail.com>
22797         * progmodes/octave.el (octave-indent-comment): Tweak regexps.
22798         (octave-help): Small simplification.
22800         * emacs-lisp/smie.el (smie-highlight-matching-block): Always turn
22801         off the highlight first.
22803 2013-05-29  Glenn Morris  <rgm@gnu.org>
22805         * progmodes/idlwave.el (idlwave-concatenate-rinfo-lists):
22806         Handle idlwave-last-system-routine-info-cons-cell being nil.
22808         * progmodes/idlwave.el (idlwave-scan-user-lib-files)
22809         (idlwave-write-paths): Simplify via with-temp-buffer.
22811         * emulation/cua-gmrk.el: Also load cua-base, cua-rect at run time.
22812         * emulation/cua-rect.el: Also load cua-base at run time.
22814         * progmodes/cperl-mode.el (imenu-choose-buffer-index)
22815         (file-of-tag, etags-snarf-tag, etags-goto-tag-location): Declare.
22816         (cperl-imenu-on-info): Require imenu.
22818 2013-05-28  Alan Mackenzie  <acm@muc.de>
22820         Handle "capitalised keywords" correctly.
22821         * progmodes/cc-mode.el (c-after-change): Bind case-fold-search to nil.
22823 2013-05-28  Aidan Gauland  <aidalgol@amuri.net>
22825         * eshell/em-unix.el: Add -r option to cp.
22827 2013-05-28  Glenn Morris  <rgm@gnu.org>
22829         * vc/vc-arch.el (vc-exec-after): Declare.
22830         (vc-switches): Autoload.
22831         * vc/vc-bzr.el: No need to require vc when compiling.
22832         (vc-exec-after, vc-set-async-update, vc-default-dir-printer)
22833         (vc-resynch-buffer, vc-dir-refresh): Declare.
22834         (vc-setup-buffer, vc-switches): Autoload.
22835         * vc/vc-cvs.el (vc-exec-after, vc-coding-system-for-diff)
22836         (vc-resynch-buffer): Declare.
22837         (vc-switches, vc-default-revert, vc-version-backup-file): Autoload.
22838         * vc/vc-dir.el (desktop-missing-file-warning): Declare.
22839         * vc/vc-git.el (vc-exec-after, vc-set-async-update)
22840         (grep-read-regexp, grep-read-files, grep-expand-template)
22841         (vc-dir-refresh): Declare.
22842         (vc-setup-buffer, vc-switches, vc-resynch-buffer): Autoload.
22843         * vc/vc-hg.el (vc-exec-after, vc-set-async-update): Declare.
22844         (vc-setup-buffer, vc-switches, vc-do-async-command): Autoload.
22845         * vc/vc-mtn.el (vc-exec-after): Declare.
22846         (vc-switches): Autoload.
22847         * vc/vc-rcs.el (vc-expand-dirs, vc-switches)
22848         (vc-tag-precondition, vc-buffer-sync, vc-rename-master): Autoload.
22849         (vc-file-tree-walk): Declare.
22850         * vc/vc-sccs.el (vc-file-tree-walk): Declare.
22851         (vc-expand-dirs, vc-switches, vc-setup-buffer, vc-delistify)
22852         (vc-tag-precondition, vc-rename-master): Autoload.
22853         * vc/vc-svn.el (vc-exec-after): Declare.
22854         (vc-switches, vc-setup-buffer): Autoload.
22855         * obsolete/vc-mcvs.el (vc-checkout, vc-switches, vc-default-revert):
22856         Autoload.
22857         (vc-resynch-buffer): Declare.
22859         * obsolete/fast-lock.el (byte-compile-warnings):
22860         Don't warn about obsolete features in this obsolete file.
22862         * progmodes/cc-vars.el (c-macro-names-with-semicolon):
22863         Move definition before use.
22865         * play/dunnet.el (byte-compile-warnings): Don't disable them all.
22866         (dun-unix-verbs): Remove dun-zippy.
22867         (dun-zippy): Remove function.
22869         * emacs-lisp/bytecomp.el (byte-compile-warnings): Doc fix.
22871 2013-05-27  Juri Linkov  <juri@jurta.org>
22873         * replace.el (replace-search): New function with code moved out
22874         from `perform-replace'.
22875         (replace-highlight, replace-dehighlight): Move function definitions
22876         up closer to `replace-search'.  (Bug#11746)
22878 2013-05-27  Juri Linkov  <juri@jurta.org>
22880         * replace.el (perform-replace): Ignore invisible matches.
22881         In addition to checking `query-replace-skip-read-only', also
22882         filter out matches by calling `run-hook-with-args-until-failure'
22883         on `isearch-filter-predicates', and also check `search-invisible'
22884         for t or call `isearch-range-invisible'.
22885         (replace-dehighlight): Call `isearch-clean-overlays'.  (Bug#11746)
22887 2013-05-27  Juri Linkov  <juri@jurta.org>
22889         * isearch.el (isearch-filter-predicates): Rename from
22890         `isearch-filter-predicate'.  Doc fix.  (Bug#11378)
22891         (isearch-message-prefix): Display text from the property
22892         `isearch-message-prefix' of the currently active filters.
22893         (isearch-search): Don't compare `isearch-filter-predicate' with
22894         `isearch-filter-visible'.  Call `run-hook-with-args-until-failure'
22895         on `isearch-filter-predicates'.  Also check `search-invisible' for t
22896         or call `isearch-range-invisible'.
22897         (isearch-filter-visible): Make obsolete.
22898         (isearch-lazy-highlight-search):
22899         Call `run-hook-with-args-until-failure' on
22900         `isearch-filter-predicates' and use `isearch-range-invisible'.
22902         * info.el (Info-search): Call `run-hook-with-args-until-failure' on
22903         `isearch-filter-predicates' instead of `funcall'ing
22904         `isearch-filter-predicate'.
22905         (Info-mode): Set `Info-isearch-filter' to
22906         `isearch-filter-predicates' instead of `isearch-filter-predicate'.
22908         * dired-aux.el (dired-isearch-filter-predicate-orig):
22909         Remove variable.
22910         (dired-isearch-filenames-toggle, dired-isearch-filenames-setup)
22911         (dired-isearch-filenames-end): Add and remove
22912         `dired-isearch-filter-filenames' in `isearch-filter-predicates'
22913         instead of changing the value of `isearch-filter-predicate'.
22914         Rebind `dired-isearch-filenames-toggle' from "\M-sf" to "\M-sff".
22915         (dired-isearch-filter-filenames): Don't use `isearch-filter-visible'.
22916         Put property `isearch-message-prefix' to "filename " on
22917         `dired-isearch-filter-filenames'.
22919         * wdired.el (wdired-change-to-wdired-mode):
22920         Add `isearch-filter-predicates' to `wdired-isearch-filter-read-only'
22921         locally instead of changing `isearch-filter-predicate'.
22922         (wdired-isearch-filter-read-only): Don't use `isearch-filter-visible'.
22924 2013-05-27  Dmitry Gutov  <dgutov@yandex.ru>
22926         * vc/vc-git.el (vc-git-working-revision): When in detached mode,
22927         return the commit hash (Bug#14459).  Also set the
22928         `vc-git-detached' property.
22929         (vc-git--rev-parse): Extract from `vc-git-previous-revision'.
22930         (vc-git-mode-line-string): Use the same help-echo format whether
22931         in detached mode or not, because we know the actual revision now.
22932         When in detached mode, shorten the revision to 7 chars.
22934 2013-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
22936         * emacs-lisp/easy-mmode.el (define-minor-mode):
22937         * emacs-lisp/derived.el (define-derived-mode): Always defvar the
22938         mode hook and provide a docstring.
22940 2013-05-27  Alan Mackenzie  <acm@muc.de>
22942         Remove spurious syntax-table text properties inserted by C-y.
22943         * progmodes/cc-mode.el (c-after-change): Also clear hard
22944         syntax-table property with value nil.
22946 2013-05-27  Michael Albinus  <michael.albinus@gmx.de>
22948         * net/dbus.el (dbus-call-method): Let-bind `inhibit-redisplay'
22949         when reading the events; the buffer layout shall not be changed.
22951 2013-05-27  Leo Liu  <sdl.web@gmail.com>
22953         * progmodes/octave.el (inferior-octave-directory-tracker-resync):
22954         New variable.
22955         (inferior-octave-directory-tracker): Automatically re-sync
22956         default-directory.
22957         (octave-help): Improve handling of 'See also'.
22959 2013-05-27  Stefan Monnier  <monnier@iro.umontreal.ca>
22961         * doc-view.el: Minor naming convention tweaks.
22962         (desktop-buffer-mode-handlers): Don't add to it repeatedly.
22964         * image-mode.el (image-mode-reapply-winprops): Call image-mode-winprops
22965         even if there's no `display' property yet (bug#14435).
22967 2013-05-25  Eli Zaretskii  <eliz@gnu.org>
22969         * subr.el (unmsys--file-name): Rename from reveal-filename.
22971         * Makefile.in (custom-deps, finder-data, autoloads)
22972         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
22973         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
22974         ($(CAL_DIR)/hol-loaddefs.el): All users changed.
22976 2013-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
22978         * emacs-lisp/lisp.el (lisp-completion-at-point): Don't use
22979         error-completion on the first 2 args of condition-case (bug#14446).
22980         Don't burp at EOB.
22982 2013-05-25  Leo Liu  <sdl.web@gmail.com>
22984         * comint.el (comint-previous-matching-input): Do not flood the
22985         *Messages* buffer with trivial messages.
22987 2013-05-25  Stefan Monnier  <monnier@iro.umontreal.ca>
22989         * progmodes/flymake.el (flymake-nop): Don't return a string.
22990         (flymake-set-at): Fix typo.
22992         * simple.el (read--expression): New function, extracted from
22993         eval-expression.  Set completion-at-point-functions (bug#14465).
22994         (eval-expression, eval-minibuffer): Use it.
22996 2013-05-25  Xue Fuqiao  <xfq.free@gmail.com>
22998         * progmodes/flymake.el (flymake-save-buffer-in-file)
22999         (flymake-makehash, flymake-posn-at-point-as-event, flymake-nop)
23000         (flymake-selected-frame, flymake-log, flymake-ins-after)
23001         (flymake-set-at, flymake-get-buildfile-from-cache)
23002         (flymake-add-buildfile-to-cache, flymake-clear-buildfile-cache)
23003         (flymake-find-possible-master-files, flymake-save-buffer-in-file):
23004         Refine the doc string.
23005         (flymake-get-file-name-mode-and-masks): Reformat.
23006         (flymake-get-real-file-name-function): Fix a minor bug.
23008 2013-05-24  Juri Linkov  <juri@jurta.org>
23010         * progmodes/grep.el (grep-mode-font-lock-keywords):
23011         Support =linenumber= format used by git-grep for lines with
23012         function names.  (Bug#13549)
23014 2013-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
23016         * progmodes/octave.el (octave-smie-rules): Return nil rather than
23017         0 after a semi-colon; it works better for smie-auto-fill.
23018         (octave--indent-new-comment-line): New function.
23019         (octave-indent-new-comment-line): Use it (indirectly).
23020         (octave-mode): Don't disable smie-auto-fill.  Use add-function to
23021         modify comment-line-break-function.
23023         * emacs-lisp/smie.el (smie-auto-fill): Rework to be more robust.
23024         (smie-setup): Use add-function to set it.
23026 2013-05-24  Sam Steingold  <sds@gnu.org>
23028         * sort.el (delete-duplicate-lines): Accept an optional `keep-blanks'
23029         argument (before the `interactive' argument).
23031 2013-05-24  Stefan Monnier  <monnier@iro.umontreal.ca>
23033         * image-mode.el (image-mode-winprops): Add winprops to
23034         image-mode-winprops-alist before running
23035         image-mode-new-window-functions.
23036         * doc-view.el (doc-view-new-window-function): Don't delay
23037         doc-view-goto-page via timers (bug#14435).
23039 2013-05-24  Tassilo Horn  <tsdh@gnu.org>
23041         * doc-view.el: Integrate with desktop.el.  (Bug#14435)
23042         (doc-view-desktop-save-buffer): New function.
23043         (doc-view-restore-desktop-buffer): New function.
23044         (desktop-buffer-mode-handlers):
23045         Add `doc-view-restore-desktop-buffer' as desktop.el buffer mode
23046         handler.
23047         (doc-view-mode): Set `doc-view-desktop-save-buffer' as custom
23048         `desktop-save-buffer' function.
23050 2013-05-24  Michael Albinus  <michael.albinus@gmx.de>
23052         * net/tramp-gvfs.el (tramp-gvfs-enabled): New defconst.
23053         (tramp-gvfs-file-name-handler): Raise a user error when
23054         `tramp-gvfs-enabled' is nil.
23055         (top): Register signals only when `tramp-gvfs-enabled' is non-nil.
23056         Do not raise a user error when loading package.  (Bug#14447)
23058         * net/xesam.el: Move to obsolete/.
23060 2013-05-24  Glenn Morris  <rgm@gnu.org>
23062         * font-lock.el (lisp-font-lock-keywords-2): Add with-coding-priority.
23064         * emacs-lisp/chart.el (chart-sort): Replace obsolete `object-name'.
23066         * progmodes/cperl-mode.el (cperl-mode): Use fboundp.
23067         (Info-find-node, Man-getpage-in-background): Declare.
23069         * mail/unrmail.el (unrmail):
23070         Replace obsolete detect-coding-with-priority.
23072         * net/socks.el (socks-split-string): Use this rather than split-string.
23073         (socks-nslookup-host): Update for above change.
23074         (dynamic-choice, s5-dynamic-choice-match)
23075         (s5-dynamic-choice-match-inline, s5-widget-value-create):
23076         Comment out unused code.
23078         * tooltip.el (tooltip-use-echo-area): Warn only on 'set.
23079         * progmodes/gud.el (gud-gdb-completion-function): Move before use.
23080         (gud-tooltip-echo-area): Make obsolete.
23081         (gud-tooltip-process-output, gud-tooltip-tips): Also check tooltip-mode.
23083         * progmodes/js.el (js--optimize-arglist): Declare.
23085         * progmodes/ruby-mode.el (ruby-syntax-propertize-expansion): Declare.
23087         * progmodes/which-func.el (ediff-window-A, ediff-window-B)
23088         (ediff-window-C): Declare.
23090         * obsolete/pgg-gpg.el, obsolete/pgg-pgp.el, obsolete/pgg-pgp5.el:
23091         Tweak requires to silence compiler.
23093         * obsolete/sym-comp.el: No need to load hipper-exp when compiling.
23094         (he-search-string, he-tried-table, he-expand-list)
23095         (he-init-string, he-string-member, he-substitute-string)
23096         (he-reset-string): Declare.
23098         * obsolete/options.el (list-options): Use custom-variable-p,
23099         rather than obsolete alias.
23101 2013-05-23  Sam Steingold  <sds@gnu.org>
23103         * simple.el (shell-command-on-region): Pass the `replace' argument
23104         down to `call-process-region' to comply with the doc as reported on
23105         <http://stackoverflow.com/questions/16720458/emacs-noninteractive-call-to-shell-command-on-region-always-deletes-region>
23107 2013-05-23  Stefan Monnier  <monnier@iro.umontreal.ca>
23109         * emacs-lisp/smie.el (smie-indent-forward-token)
23110         (smie-indent-backward-token): Handle string tokens (bug#14381).
23112 2013-05-23  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
23114         * ielm.el (ielm-menu): New menu.
23115         (inferior-emacs-lisp-mode): Set comment-start.
23117 2013-05-23  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
23119         * textmodes/reftex.el (reftex-ref-style-toggle):
23120         Fix deactivate action.
23122         * textmodes/reftex-vars.el (reftex-ref-style-alist):
23123         Add cleveref macros.
23125         * textmodes/reftex-parse.el (reftex-locate-bibliography-files):
23126         Accept options for bibliography commands.
23127         * textmodes/reftex-vars.el (reftex-bibliography-commands):
23128         Add addbibresource.  Basic Biblatex support.
23130 2013-05-23  Michael Albinus  <michael.albinus@gmx.de>
23132         * net/tramp-gvfs.el (top):
23133         * net/xesam.el (xesam-dbus-unique-names): Suppress D-Bus errors
23134         when loading package.  (Bug#14447)
23136 2013-05-23  Glenn Morris  <rgm@gnu.org>
23138         * progmodes/js.el: No need to load comint when compiling.
23139         (ring-insert, comint-send-string, comint-send-input)
23140         (comint-last-input-end, ido-chop): Declare.
23142         * vc/ediff-diff.el, vc/ediff-merg.el: Require ediff-util at run-time.
23143         * vc/ediff-mult.el: Adjust requires.
23144         (ediff-directories-internal, ediff-directory-revisions-internal)
23145         (ediff-patch-file-internal): Declare.
23146         * vc/ediff-ptch.el: Adjust requires.
23147         (ediff-use-last-dir, ediff-buffers-internal): Declare.
23148         (ediff-find-file): Autoload.
23149         * vc/ediff-util.el: No need to load ediff when compiling.
23150         (ediff-regions-internal): Declare.
23151         * vc/ediff-wind.el: Adjust requires.
23152         (ediff-compute-toolbar-width): Define when compiling.
23153         (ediff-setup-control-buffer, ediff-make-bottom-toolbar): Declare.
23154         * vc/ediff.el: No need to load dired, ediff-ptch when compiling.
23155         (dired-get-filename, dired-get-marked-files)
23156         (ediff-last-dir-patch, ediff-patch-default-directory)
23157         (ediff-get-patch-buffer, ediff-dispatch-file-patching-job)
23158         (ediff-patch-buffer-internal): Declare.
23160         * emacs-lisp/checkdoc.el: No need to load ispell when compiling.
23161         (ispell-process, ispell-buffer-local-words, lm-summary)
23162         (lm-section-start, lm-section-end): Declare.
23163         (checkdoc-ispell-init): Simplify.
23165         * progmodes/vera-mode.el (he-init-string, he-dabbrev-beg)
23166         (he-string-member, he-reset-string, he-substitute-string): Declare.
23168         * eshell/em-ls.el: Adjust requires.
23169         (eshell-glob-regexp): Declare.
23170         * eshell/em-tramp.el: Adjust requires.
23171         (eshell-parse-command): Autoload.
23172         * eshell/em-xtra.el: Adjust requires.
23173         (eshell-parse-command): Autoload.
23174         * eshell/esh-ext.el: Adjust requires.
23175         (eshell-parse-command, eshell-close-handles): Autoload.
23176         * eshell/esh-io.el: Adjust requires.
23177         (eshell-output-filter): Autoload.
23178         * eshell/esh-util.el: No need to load tramp when compiling.
23179         (tramp-file-name-structure, ange-ftp-ls, ange-ftp-file-modtime):
23180         Declare.
23181         (eshell-parse-ange-ls): Require ange-ftp and tramp.
23182         * eshell/em-alias.el, eshell/em-banner.el, eshell/em-basic.el:
23183         * eshell/em-cmpl.el, eshell/em-glob.el, eshell/em-pred.el:
23184         * eshell/em-prompt.el, eshell/em-rebind.el, eshell/em-smart.el:
23185         * eshell/em-term.el, eshell/esh-arg.el, eshell/esh-mode.el:
23186         * eshell/esh-opt.el, eshell/esh-proc.el:
23187         * eshell/esh-var.el: Adjust requires.
23188         * eshell/eshell.el: Do not require esh-util twice.
23189         (eshell-add-input-to-history): Declare.
23190         (eshell-command): Check history module is active before using it.
23192         * eshell/em-ls.el (eshell-ls-dir): Fix -A handling.
23194 2013-05-22  Leo Liu  <sdl.web@gmail.com>
23196         * progmodes/octave.el (inferior-octave-startup): Fix bug#14433.
23198 2013-05-22  Michael Albinus  <michael.albinus@gmx.de>
23200         * autorevert.el (auto-revert-notify-add-watch)
23201         (auto-revert-notify-handler): Add `attrib' for the inotify case,
23202         it indicates changes in file modification time.
23204 2013-05-22  Glenn Morris  <rgm@gnu.org>
23206         * emacs-lisp/bytecomp.el (byte-compile-file-form-autoload):
23207         Always delete the autoloaded function from the noruntime and
23208         unresolved functions lists.
23210         * allout.el: No need to load epa, epg, overlay when compiling.
23211         (epg-context-set-passphrase-callback, epg-list-keys)
23212         (epg-decrypt-string, epg-encrypt-string, epg-user-id-string)
23213         (epg-key-user-id-list): Declare.
23215         * emulation/viper-cmd.el (viper-set-searchstyle-toggling-macros)
23216         (viper-set-parsing-style-toggling-macro)
23217         (viper-set-emacs-state-searchstyle-macros):
23218         Use called-interactively-p on Emacs.
23219         (viper-looking-back): Make it an obsolete alias.  Update callers.
23220         * emulation/viper-ex.el: Load viper-keym, not viper-cmd.
23221         Use looking-back rather than viper-looking-back.
23222         (viper-tmp-insert-at-eob, viper-enlarge-region)
23223         (viper-read-string-with-history, viper-register-to-point)
23224         (viper-append-to-register, viper-change-state-to-vi)
23225         (viper-backward-char-carefully, viper-forward-char-carefully)
23226         (viper-Put-back, viper-put-back, viper-add-newline-at-eob-if-necessary)
23227         (viper-change-state-to-emacs): Declare.
23228         * emulation/viper-macs.el: Load viper-mous, viper-ex, not viper-cmd.
23229         (viper-change-state-to-insert, viper-change-state-to-vi): Declare.
23230         * emulation/viper-mous.el: Do not load viper-cmd.
23231         (viper-backward-char-carefully, viper-forward-char-carefully)
23232         (viper-forward-word, viper-adjust-window): Declare.
23234         * vc/ediff.el (ediff-version): Use called-interactively-p on Emacs.
23236         * progmodes/idlw-help.el (idlwave-help-fontify):
23237         Use called-interactively-p.
23239         * term/w32console.el (w32-get-console-codepage)
23240         (w32-get-console-output-codepage): Declare.
23242         * dframe.el (x-sensitive-text-pointer-shape, x-pointer-shape):
23243         Remove unnecessary declarations.
23244         (dframe-message): Doc fix.
23246         * info.el (dframe-select-attached-frame, dframe-current-frame):
23247         Declare.
23249         * speedbar.el (speedbar-message): Make it an obsolete alias.
23250         Update all callers.
23251         (speedbar-with-attached-buffer)
23252         (speedbar-maybee-jump-to-attached-frame): Make these aliases obsolete.
23253         (speedbar-with-writable): Use backquote.
23254         * emacs-lisp/eieio-opt.el (eieio-describe-class-sb):
23255         * emacs-lisp/eieio-speedbar.el (eieio-speedbar-handle-click):
23256         Use dframe-with-attached-buffer, dframe-maybee-jump-to-attached-frame
23257         rather than speedbar- aliases.
23258         * mail/rmail.el: Load dframe rather than speedbar when compiling.
23259         (speedbar-make-specialized-keymap, speedbar-insert-button)
23260         (dframe-select-attached-frame, dframe-maybee-jump-to-attached-frame)
23261         (speedbar-do-function-pointer): Declare.
23262         (rmail-speedbar-button, rmail-speedbar-find-file)
23263         (rmail-speedbar-move-message):
23264         Use dframe-with-attached-buffer rather than speedbar- alias.
23265         * progmodes/gud.el: Load dframe rather than speedbar when compiling.
23266         (dframe-message, speedbar-make-specialized-keymap)
23267         (speedbar-add-expansion-list, speedbar-mode-functions-list)
23268         (speedbar-make-tag-line, speedbar-remove-localized-speedbar-support)
23269         (speedbar-insert-button, dframe-select-attached-frame)
23270         (dframe-maybee-jump-to-attached-frame)
23271         (speedbar-change-initial-expansion-list)
23272         (speedbar-previously-used-expansion-list-name): Declare.
23273         (gud-speedbar-item-info, gud-gdb-goto-stackframe):
23274         Use dframe-message, dframe-with-attached-buffer rather than
23275         speedbar- aliases.
23276         (gud-sentinel): Silence compiler.
23277         * progmodes/vhdl-mode.el (speedbar-refresh)
23278         (speedbar-do-function-pointer, speedbar-add-supported-extension)
23279         (speedbar-add-mode-functions-list, speedbar-make-specialized-keymap)
23280         (speedbar-change-initial-expansion-list, speedbar-add-expansion-list)
23281         (speedbar-extension-list-to-regex, speedbar-directory-buttons)
23282         (speedbar-file-lists, speedbar-make-tag-line)
23283         (speedbar-line-directory, speedbar-goto-this-file)
23284         (speedbar-center-buffer-smartly, speedbar-change-expand-button-char)
23285         (speedbar-delete-subblock, speedbar-position-cursor-on-line)
23286         (speedbar-make-button, speedbar-reset-scanners)
23287         (speedbar-files-item-info, speedbar-line-text)
23288         (speedbar-find-file-in-frame, speedbar-set-timer)
23289         (dframe-maybee-jump-to-attached-frame, speedbar-line-file): Declare.
23290         (speedbar-with-writable): Do not (re)define it.
23291         (vhdl-speedbar-find-file): Use dframe-maybee-jump-to-attached-frame
23292         rather than speedbar- alias.
23294 2013-05-21  Leo Liu  <sdl.web@gmail.com>
23296         * progmodes/octave.el (octave-mode-menu): Update and re-organize
23297         menu items.
23298         (octave-mode): Tweak fill-nobreak-predicate.
23299         (inferior-octave-startup): Check process to avoid infinite loop.
23300         (inferior-octave): Pop to buffer first to show abornmal process
23301         exit information.
23303 2013-05-21  Glenn Morris  <rgm@gnu.org>
23305         * printing.el (pr-menu-bar): Define when compiling.
23307 2013-05-21  Leo Liu  <sdl.web@gmail.com>
23309         * progmodes/octave.el (octave-auto-fill): Remove.
23310         (octave-indent-new-comment-line): Improve.
23311         (octave-mode): Use auto fill mode through
23312         comment-line-break-function and fill-nobreak-predicate.
23313         (octave-goto-function-definition): Support DEFUN_DLD.
23314         (octave-beginning-of-defun): Small tweak.
23315         (octave-help): Show parent directory.
23317 2013-05-21  Glenn Morris  <rgm@gnu.org>
23319         * files.el (dired-unmark):
23320         * progmodes/gud.el (gdb-input): Update declarations.
23322         * calculator.el (electric, ehelp): No need to load when compiling.
23323         (Electric-command-loop, electric-describe-mode): Declare.
23325         * doc-view.el (doc-view-current-converter-processes): Move before use.
23327         * emacs-lisp/easy-mmode.el (define-globalized-minor-mode):
23328         Move MODE-set-explicitly definition before use.
23330         * international/mule-diag.el (mule-diag):
23331         Don't use obsolete window-system-version.
23333         * mail/feedmail.el (smtpmail): No need to load when compiling.
23334         (smtpmail-via-smtp, smtpmail-smtp-server): Declare.
23336         * mail/mail-utils.el (rfc822): No need to load when compiling.
23337         (rfc822-addresses): Autoload it.
23338         (mail-strip-quoted-names): Trivial simplification.
23340         * mail/rmail.el (rmail-mime-message-p, rmail-mime-toggle-raw): Declare.
23341         (rmail-retry-failure): Don't assume that rmail-mime-feature == rmailmm.
23343         * net/snmp-mode.el (tempo): Don't duplicate requires.
23345         * progmodes/prolog.el (info): No need to load when compiling.
23346         (comint): Require before shell requires it.
23347         (Info-goto-node): Autoload it.
23348         (Info-follow-nearest-node): Declare.
23349         (prolog-help-info, prolog-goto-predicate-info): No need to require info.
23351         * textmodes/artist.el (picture-mode-exit): Declare.
23353         * textmodes/reftex-parse.el (reftex-parse-from-file):
23354         Trivial rewrite so the compiler can parse it better.
23356 2013-05-20  Leo Liu  <sdl.web@gmail.com>
23358         * progmodes/octave.el (octave-help-mode-map)
23359         (octave-help-mode-finish-hook): New variables.
23360         (octave-help-mode, octave-help-mode-finish): New functions.
23361         (octave-help): Use octave-help-mode.
23363 2013-05-20  Glenn Morris  <rgm@gnu.org>
23365         * format-spec.el (format-spec): Allow spec chars with nil.  (Bug#14420)
23367 2013-05-19  Dmitry Gutov  <dgutov@yandex.ru>
23369         * progmodes/ruby-mode.el (ruby-expression-expansion-re): Allow to
23370         start at point, so that expansion starting right after opening
23371         slash in a regexp is recognized.
23372         (ruby-syntax-before-regexp-re): New defvar, extracted from
23373         ruby-syntax-propertize-function.  Since the value of this regexp
23374         is looked up at runtime now, we should be able to turn
23375         `ruby-syntax-methods-before-regexp' into a defcustom later.
23376         (ruby-syntax-propertize-function): Split regexp matching into two
23377         parts, for opening and closing slashes.  That allows us to skip
23378         over string interpolations and support multiline regexps.
23379         Don't call `ruby-syntax-propertize-expansions', instead use another rule
23380         for them, which calls `ruby-syntax-propertize-expansion'.
23381         (ruby-syntax-propertize-expansions): Move `remove-text-properties'
23382         call to `ruby-syntax-propertize-function'.
23383         (ruby-syntax-propertize-expansion): Extracted from
23384         `ruby-syntax-propertize-expansions'.  Handles one expansion.
23385         (ruby-syntax-propertize-percent-literal): Leave point right after
23386         the percent symbol, so that the expression expansion rule can
23387         propertize the contents.
23388         (ruby-syntax-propertize-heredoc): Leave point at bol following the
23389         heredoc openers.
23390         (ruby-syntax-propertize-expansions): Remove.
23392 2013-05-18  Juri Linkov  <juri@jurta.org>
23394         * man.el (Man-default-man-entry): Remove `-' from the end
23395         of the default value.  (Bug#14400)
23397 2013-05-18  Glenn Morris  <rgm@gnu.org>
23399         * comint.el (comint-password-prompt-regexp):
23400         Allow "password for XXX" where XXX contains colons (eg https://...).
23402 2013-05-18  Leo Liu  <sdl.web@gmail.com>
23404         * progmodes/octave.el (inferior-octave-startup): Use OCTAVE_SRCDIR
23405         instead.  Include "--no-gui" to prevent hangs for Octave > 3.7.
23406         (octave-source-directories): Don't check process.
23407         (octave-source-directories, octave-find-definition): Doc fix.
23409 2013-05-18  Glenn Morris  <rgm@gnu.org>
23411         * progmodes/vhdl-mode.el (vhdl-mode-map-init):
23412         Remove backspace/delete bindings.  (Bug#14392)
23414         * cus-dep.el (custom-make-dependencies): Sort the output.
23415         (custom-versions-load-alist): Convert comment to doc.
23417 2013-05-17  Leo Liu  <sdl.web@gmail.com>
23419         * newcomment.el (comment-search-backward): Stricter in finding
23420         comment start.  (Bug#14303)
23422         * progmodes/octave.el (octave-comment-start): Remove the SPC char.
23423         (octave-comment-start-skip): Properly anchored.
23425 2013-05-17  Leo Liu  <sdl.web@gmail.com>
23427         * emacs-lisp/smie.el (smie-highlight-matching-block-mode):
23428         Clean up when turned off.  (Bug#14395)
23429         (smie--highlight-matching-block-overlay): No longer buffer-local.
23430         (smie-highlight-matching-block): Adjust.
23432 2013-05-17  Paul Eggert  <eggert@cs.ucla.edu>
23434         Doc string fix for "nanoseconds" (Bug#14406).
23435         * emacs-lisp/timer.el (timer-relative-time, timer-inc-time):
23436         Fix doc string typo that had "nanoseconds" instead of "microseconds".
23438 2013-05-17  Jay Belanger  <jay.p.belanger@gmail.com>
23440         * calc/calc-units.el (math-extract-units): Preserve powers
23441         of units.
23443 2013-05-17  Leo Liu  <sdl.web@gmail.com>
23445         * subr.el (delete-consecutive-dups): New function.
23446         * ido.el (ido-set-matches-1): Use it.
23447         * progmodes/octave.el (inferior-octave-completion-table): Use it.
23448         * ido.el (ido-remove-consecutive-dups): Remove.
23450 2013-05-17  Stefan Monnier  <monnier@iro.umontreal.ca>
23452         * progmodes/f90.el (f90-keywords-re, f90-keywords-level-3-re)
23453         (f90-hpf-keywords-re, f90-constants-re): Use \\_< rather than
23454         regexp-opt's `words'.
23456 2013-05-16  Leo Liu  <sdl.web@gmail.com>
23458         * emacs-lisp/smie.el (smie-matching-block-highlight): New face.
23459         (smie--highlight-matching-block-overlay)
23460         (smie--highlight-matching-block-lastpos)
23461         (smie--highlight-matching-block-timer): New variables.
23462         (smie-highlight-matching-block): New function.
23463         (smie-highlight-matching-block-mode): New minor mode.  (Bug#14395)
23464         (smie-setup): Conditionally enable smie-blink-matching-open.
23466 2013-05-16  Wilson Snyder  <wsnyder@wsnyder.org>
23468         Sync with upstream verilog-mode r840.
23469         * progmodes/verilog-mode.el (verilog-mode-version)
23470         (verilog-mode-release-date): Update.
23471         (verilog-auto-lineup, verilog-auto-reset): Doc fixes.
23472         (verilog-sig-tieoff): Fix string error on
23473         AUTORESET with colon define, bug594.  Reported by Andrew Hou.
23474         (verilog-read-decls): Fix parameters confusing
23475         AUTOINST interfaces, bug565.  Reported by Leith Johnson.
23477 2013-05-16  Eli Zaretskii  <eliz@gnu.org>
23479         * subr.el (reveal-filename): New function.
23481         * loadup.el: Compute Emacs executable versions on MS-Windows,
23482         where executables have the .exe extension.  Add a hard link
23483         emacs-XX.YY.ZZ.exe on MS-Windows.
23485         * Makefile.in (XARGS_LIMIT): New variable.
23486         (custom-deps, finder-data, autoloads)
23487         ($(MH_E_DIR)/mh-loaddefs.el, $(TRAMP_DIR)/tramp-loaddefs.el)
23488         ($(CAL_DIR)/cal-loaddefs.el, $(CAL_DIR)/diary-loaddefs.el)
23489         ($(CAL_DIR)/hol-loaddefs.el): Use reveal-filename.
23490         (compile-main): Limit xargs according to $(XARGS_LIMIT).
23492 2013-05-16  Leo Liu  <sdl.web@gmail.com>
23494         * progmodes/octave.el (octave-indent-defun): Mark obsolete.
23495         (octave-mode-menu, octave-mode-map): Remove its uses.
23497 2013-05-16  Reto Zimmermann  <reto@gnu.org>
23499         Sync with upstream vhdl mode v3.34.2.
23500         * progmodes/vhdl-mode.el: Use `push' throughout.
23501         (vhdl-version, vhdl-time-stamp, vhdl-doc-release-notes): Update.
23502         (vhdl-compiler-alist): Replace "\t\n" by "\\t\\n".
23503         Add IBM & Quartus compiler.  Enhance entry for ADVance MS compiler.
23504         (vhdl-actual-generic-name): New option to derive actual generic name.
23505         (vhdl-port-paste-signals): Replace formal by actual generics.
23506         (vhdl-beautify): New name for old group vhdl-align.  Update users.
23507         (vhdl-beautify-options): New option.
23508         (vhdl-last-input-event): New compat alias.  Use throughout.
23509         (vhdl-goto-line): Replace user level function `goto-line'.
23510         (vhdl-mode-map): Add bindings for vhdl-fix-statement-region,
23511         vhdl-fix-statement-buffer.
23512         (vhdl-create-mode-menu): Add some entries.
23513         (vhdl-align-region-groups): Respect vhdl-beautify-options.
23514         (vhdl-align-inline-comment-region-1): Handle "--" inside string.
23515         (vhdl-fixup-whitespace-region): Handle symbols at EOL.
23516         (vhdl-fix-statement-region, vhdl-fix-statement-buffer): New commands,
23517         to force statements on one line.
23518         (vhdl-remove-trailing-spaces-region):
23519         New, split from vhdl-remove-trailing-spaces.
23520         (vhdl-beautify-region): Fix statements, trailing spaces, ^M character.
23521         Respect vhdl-beautify-options.
23522         (vhdl-update-sensitivity-list-buffer): If non-interactive save buffer.
23523         (vhdl-update-sensitivity-list): Not add with index if exists without.
23524         Not include array index with signal.  Ignore keywords in comments.
23525         (vhdl-get-visible-signals): Regexp tweaks.
23526         (vhdl-template-component-inst): Handle empty library.
23527         (vhdl-template-type): Add template for 'enum' type.
23528         (vhdl-port-paste-generic-map, vhdl-port-paste-constants):
23529         Use vhdl-replace-string.
23530         (vhdl-port-paste-signals): Use vhdl-prepare-search-1.
23531         (vhdl-speedbar-mode-map): Rename from vhdl-speedbar-key-map.
23532         (vhdl-speedbar-initialize): Update for above name change.
23533         (vhdl-compose-wire-components): Fix in handling of constants.
23534         (vhdl-error-regexp-emacs-alist): New variable.
23535         (vhdl-error-regexp-add-emacs): New function;
23536         adds support for new compile.el (Emacs 22+)
23537         (vhdl-generate-makefile-1): Change target order for single lib. units.
23538         Allow use of absolute file names.
23540 2013-05-16  Leo Liu  <sdl.web@gmail.com>
23542         * simple.el (prog-indent-sexp): Indent enclosing defun.
23544 2013-05-15  Glenn Morris  <rgm@gnu.org>
23546         * cus-start.el (show-trailing-whitespace): Move to editing basics.
23547         * faces.el (trailing-whitespace): Don't use whitespace-faces group.
23548         * obsolete/old-whitespace.el (whitespace-faces): Remove group.
23549         (whitespace-highlight): Move to whitespace group.
23551         * comint.el (comint-source):
23552         * pcmpl-linux.el (pcmpl-linux):
23553         * shell.el (shell-faces):
23554         * eshell/esh-opt.el (eshell-opt):
23555         * international/ccl.el (ccl): Remove empty custom groups.
23557         * completion.el (dynamic-completion-mode):
23558         * jit-lock.el (jit-lock-debug-mode):
23559         * minibuffer.el (completion-in-region-mode):
23560         * type-break.el (type-break-mode-line-message-mode)
23561         (type-break-query-mode):
23562         * emulation/tpu-edt.el (tpu-edt-mode):
23563         * progmodes/subword.el (global-subword-mode, global-superword-mode):
23564         * progmodes/vhdl-mode.el (vhdl-electric-mode, vhdl-stutter-mode):
23565         * term/vt100.el (vt100-wide-mode): Specify explicit :group.
23567         * term/xterm.el (xterm): Change parent group to terminals.
23569         * master.el (master): Remove empty custom group.
23570         (master-mode): Remove unused :group argument.
23571         * textmodes/refill.el (refill): Remove empty custom group.
23572         (refill-mode): Remove unused :group argument.
23574         * textmodes/rst.el (rst-compile-toolsets): Use rst-compile group.
23576         * cus-dep.el: Provide a feature.
23577         (custom-make-dependencies): Ignore dotfiles (dir-locals).
23578         Don't mistakenly ignore files whose basenames match a basename
23579         from preloaded-file-list (eg cedet/ede/simple.el).
23580         Add a fallback method for getting :group.
23582 2013-05-15  Juri Linkov  <juri@jurta.org>
23584         * isearch.el (isearch-char-by-name): Rename from
23585         `isearch-insert-char-by-name'.  Doc fix.
23586         (isearch-forward): Mention `isearch-char-by-name' in
23587         the docstring.  (Bug#13348)
23589         * isearch.el (minibuffer-local-isearch-map): Bind "\r" to
23590         `exit-minibuffer' instead of
23591         `isearch-nonincremental-exit-minibuffer'.
23592         (isearch-edit-string): Remove mention of
23593         `isearch-nonincremental-exit-minibuffer' from docstring.
23594         (isearch-nonincremental-exit-minibuffer): Mark as obsolete.
23595         (isearch-forward-exit-minibuffer)
23596         (isearch-reverse-exit-minibuffer): Add docstring.  (Bug#13348)
23598 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
23600         * loadup.el: Just use unversioned DOC.
23602         * nxml/nxml-mode.el: Treat unclosed <[[, <?, comment, and other
23603         literals as extending to EOB.
23604         (nxml-last-fontify-end): Remove unused variable.
23605         (nxml-after-change1): Use with-silent-modifications.
23606         (nxml-extend-after-change-region): Simplify.
23607         (nxml-extend-after-change-region1): Remove function.
23608         (nxml-after-change1): Don't adjust for dependent regions.
23609         (nxml-fontify-matcher): Simplify.
23610         * nxml/xmltok.el (xmltok-dependent-regions): Remove variable.
23611         (xmltok-add-dependent): Remove function.
23612         (xmltok-scan-after-lt, xmltok-scan-after-processing-instruction-open)
23613         (xmltok-scan-after-comment-open, xmltok-scan-prolog-literal)
23614         (xmltok-scan-prolog-after-processing-instruction-open): Treat
23615         unclosed <[[, <?, comment, and other literals as extending to EOB.
23616         * nxml/rng-valid.el (rng-mark-xmltok-dependent-regions)
23617         (rng-mark-xmltok-dependent-region, rng-dependent-region-changed):
23618         Remove functions.
23619         (rng-do-some-validation-1): Don't mark dependent regions.
23620         * nxml/nxml-rap.el (nxml-adjust-start-for-dependent-regions)
23621         (nxml-mark-parse-dependent-regions, nxml-mark-parse-dependent-region)
23622         (nxml-clear-dependent-regions): Remove functions.
23623         (nxml-scan-after-change, nxml-scan-prolog, nxml-tokenize-forward)
23624         (nxml-ensure-scan-up-to-date):
23625         Don't clear&mark dependent regions.
23627 2013-05-15  Leo Liu  <sdl.web@gmail.com>
23629         * progmodes/octave.el (octave-goto-function-definition):
23630         Improve and fix callers.
23632 2013-05-15  Stefan Monnier  <monnier@iro.umontreal.ca>
23634         * emacs-lisp/cl-extra.el (cl-getf): Return the proper value in
23635         the setter (bug#14387).
23637         * progmodes/f90.el (f90-blocks-re): Include the terminating \> in the
23638         surrounding group (bug#14402).
23640 2013-05-14  Juri Linkov  <juri@jurta.org>
23642         * subr.el (find-tag-default-as-regexp): Return nil if `tag' is nil.
23643         (Bug#14390)
23645 2013-05-14  Glenn Morris  <rgm@gnu.org>
23647         * progmodes/f90.el (f90-imenu-generic-expression):
23648         Fix typo in 2013-05-08 change.  (Bug#14402)
23650 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
23652         * progmodes/gdb-mi.el (gdb-running, gdb-starting):
23653         Remove signals for which replies are never received.
23655 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
23657         * progmodes/gdb-mi.el: Fix non-responsive gud commands (bug#13845)
23658         (gdb-handler-alist, gdb-handler-number): Remove variables.
23659         (gdb-handler-list): New variable.
23660         (gdb-add-handler, gdb-delete-handler, gdb-get-handler-function)
23661         (gdb-pending-handler-p, gdb-handle-reply)
23662         (gdb-remove-all-pending-triggers): New functions.
23663         (gdb-discard-unordered-replies): New defcustom.
23664         (gdb-handler): New defstruct.
23665         (gdb-wait-for-pending): Fix invalid backquote.  Use gdb-handler-list.
23666         instead of gdb-pending-triggers.  Update docstring.
23667         (gdb-init-1): Remove dead variables.  Initialize gdb-handler-list.
23668         (gdb-speedbar-update, gdb-speedbar-timer-fn, gdb-var-update)
23669         (gdb-var-update-handler, def-gdb-auto-update-trigger)
23670         (def-gdb-auto-update-handler, gdb-get-changed-registers)
23671         (gdb-changed-registers-handler, gdb-get-main-selected-frame)
23672         (gdb-frame-handler): Pending triggers are now automatically managed.
23673         (def-gdb-trigger-and-handler, def-gdb-auto-update-handler):
23674         Remove argument.
23675         (gdb-input): Automatically handles pending triggers.  Update docstring.
23676         (gdb-resync): Replace gdb-pending-triggers by gdb-handler-list.
23677         (gdb-thread-exited, gdb-thread-selected, gdb-register-names-handler):
23678         Update comments.
23679         (gdb-done-or-error): Now use gdb-handle-reply.
23681 2013-05-14  Jean-Philippe Gravel  <jpgravel@gmail.com>
23683         * progmodes/gdb-mi.el (gdb-input): Include token numbers in
23684         gdb-debug-log.
23686 2013-05-14  Glenn Morris  <rgm@gnu.org>
23688         * subr.el (user-emacs-directory-warning): New option.
23689         (locate-user-emacs-file): Handle non-accessible .emacs.d.  (Bug#13930)
23691 2013-05-14  Leo Liu  <sdl.web@gmail.com>
23693         * progmodes/octave.el (octave-font-lock-keywords): Fix error
23694         during redisplay.
23695         (octave-goto-function-definition, octave-find-definition): Minor tweaks.
23696         (octave-font-lock-texinfo-comment): Fix invalid search bound
23697         error: wrong side of point.
23699 2013-05-14  Glenn Morris  <rgm@gnu.org>
23701         * progmodes/flymake.el (flymake-xml-program): New option.
23702         (flymake-xml-init): Use it.
23704         * term/xterm.el: Provide a feature.
23706         * term/sup-mouse.el: Move to obsolete/.  Provide a feature.
23708 2013-05-13  Glenn Morris  <rgm@gnu.org>
23710         * cus-dep.el (defcustom-mh, defgroup-mh, defface-mh):
23711         Add compat aliases as a hack workaround.  (Bug#14384)
23713 2013-05-13  Leo Liu  <sdl.web@gmail.com>
23715         * progmodes/octave.el (octave-indent-comment): Fix indentation for
23716         ###, and %!.
23717         (octave-mode-map): Bind octave-indent-defun to C-c C-q instead of
23718         C-M-q.
23719         (octave-comment-start-skip): Include %!.
23720         (octave-mode): Set comment-start-skip to octave-comment-start-skip.
23722 2013-05-12  Leo Liu  <sdl.web@gmail.com>
23724         * progmodes/octave.el (inferior-octave-startup): Store the value
23725         of __octave_srcdir__ for octave-source-directories.
23726         (inferior-octave-check-process): New function refactored out of
23727         inferior-octave-send-list-and-digest.
23728         (octave-source-directories)
23729         (octave-find-definition-filename-function): New variables.
23730         (octave-source-directories)
23731         (octave-find-definition-default-filename): New functions.
23732         (octave-find-definition): Improve to find functions implemented in C++.
23734 2013-05-12  Glenn Morris  <rgm@gnu.org>
23736         * calendar/diary-lib.el (diary-outlook-format-1):
23737         Don't include dayname in the output.  (Bug#14349)
23739 2013-05-11  Glenn Morris  <rgm@gnu.org>
23741         * emacs-lisp/autoload.el (generated-autoload-load-name): Doc fix.
23743         * cus-dep.el (custom-make-dependencies): Only use safe local variables.
23744         Treat cc-provide like provide.
23746 2013-05-11  Kevin Ryde  <user42@zip.com.au>
23748         * cus-dep.el (custom-make-dependencies):
23749         Use generated-autoload-load-name for the sake of files such
23750         such cedet/semantic/bovine/c.el, where the base file name
23751         is not in load-path.  (Bug#5277)
23753 2013-05-11  Glenn Morris  <rgm@gnu.org>
23755         * dos-vars.el, emacs-lisp/cl-indent.el, emulation/tpu-extras.el:
23756         Provide features.
23758 2013-05-11  Leo Liu  <sdl.web@gmail.com>
23760         * progmodes/octave.el (octave-indent-comment): Improve.
23761         (octave-eldoc-message-style, octave-eldoc-cache): New variables.
23762         (octave-eldoc-function-signatures, octave-eldoc-function):
23763         New functions.
23764         (octave-mode, inferior-octave-mode): Add eldoc support.
23766 2013-05-11  Richard Stallman  <rms@gnu.org>
23768         * epa.el (epa-decrypt-file): Take output file name as argument
23769         and read it using `interactive'.
23771 2013-05-11  Leo Liu  <sdl.web@gmail.com>
23773         * progmodes/octave.el (octave-beginning-of-line)
23774         (octave-end-of-line): Check before using up-list because it jumps
23775         out of more syntactic contructs since moving to smie.
23776         (octave-indent-comment): New function.
23777         (octave-mode): Use it in smie-indent-functions.  (Bug#14350)
23778         (octave-begin-keywords, octave-end-keywords)
23779         (octave-reserved-words, octave-smie-bnf-table)
23780         (octave-smie-rules): Add new keywords from Octave 3.6.4.
23782 2013-05-11  Glenn Morris  <rgm@gnu.org>
23784         * faces.el (internal-face-x-get-resource):
23785         * frame.el (ns-display-monitor-attributes-list):
23786         * calc/calc-aent.el (math-to-radians-2):
23787         * emacs-lisp/package.el (tar-header-name, tar-header-link-type):
23788         Fix declarations.
23790         * calc/calc-menu.el: Make it loadable in isolation.
23792         * net/eudcb-bbdb.el: Make it loadable without bbdb.
23793         (eudc-bbdb-filter-non-matching-record, eudc-bbdb-extract-phones)
23794         (eudc-bbdb-extract-addresses, eudc-bbdb-format-record-as-result)
23795         (eudc-bbdb-query-internal): Require 'bbdb.
23797         * lpr.el (lpr-headers-switches):
23798         * emacs-lisp/testcover.el (testcover-compose-functions): Fix :type.
23800         * progmodes/sql.el (sql-login-params): Fix and improve :type.
23802         * emulation/edt-mapper.el: In batch mode, error rather than hang.
23804         * term.el (term-set-escape-char): Make it idempotent.
23806 2013-05-10  Leo Liu  <sdl.web@gmail.com>
23808         * progmodes/octave.el (inferior-octave-completion-table):
23809         No longer a function and all uses changed.  Use cache to speed up
23810         completion due to bug#11906.
23811         (octave-beginning-of-defun): Re-write to be more general.
23813 2013-05-10  Glenn Morris  <rgm@gnu.org>
23815         * emacs-lisp/cl-macs.el (cl-loop): Doc fix.
23817 2013-05-09  Stefan Monnier  <monnier@iro.umontreal.ca>
23819         * comint.el (comint-redirect-send-command-to-process): Use :around
23820         rather than :override for comint-redirect-filter.
23821         (comint-redirect-filter): Add the corresponding `orig-filter' argument.
23822         Call it instead of comint-redirect-original-filter-function (which
23823         is gone).  Reported by Juanma Barranquero <lekktu@gmail.com>.
23825 2013-05-09  Jan Djärv  <jan.h.d@swipnet.se>
23827         * frame.el (display-monitor-attributes-list): Add NS case.
23828         (ns-display-monitor-attributes-list): Declare.
23830 2013-05-09  Ulrich Mueller  <ulm@gentoo.org>
23832         * descr-text.el (describe-char): Fix %d/%x typo.  (Bug#14360)
23834 2013-05-09  Glenn Morris  <rgm@gnu.org>
23836         * international/fontset.el (vertical-centering-font-regexp):
23837         Set standard-value.
23839         * tar-mode.el (tar-superior-buffer, tar-superior-descriptor): Add doc.
23841         * bookmark.el (bookmark-search-delay):
23842         * cus-start.el (vertical-centering-font-regexp):
23843         * ps-mule.el (ps-mule-font-info-database-default):
23844         * ps-print.el (ps-default-fg, ps-default-bg):
23845         * type-break.el (type-break-good-break-interval):
23846         * whitespace.el (whitespace-indentation-regexp)
23847         (whitespace-space-after-tab-regexp):
23848         * emacs-lisp/testcover.el (testcover-1value-functions)
23849         (testcover-noreturn-functions, testcover-progn-functions)
23850         (testcover-prog1-functions):
23851         * emulation/viper-init.el (viper-emacs-state-cursor-color):
23852         * eshell/em-glob.el (eshell-glob-translate-alist):
23853         * play/tetris.el (tetris-tty-colors):
23854         * progmodes/cpp.el (cpp-face-default-list):
23855         * progmodes/flymake.el (flymake-allowed-file-name-masks):
23856         * progmodes/idlw-help.el (idlwave-help-browser-generic-program)
23857         (idlwave-help-browser-generic-args):
23858         * progmodes/make-mode.el (makefile-special-targets-list):
23859         * progmodes/python.el (python-shell-virtualenv-path):
23860         * progmodes/verilog-mode.el (verilog-active-low-regexp)
23861         (verilog-auto-input-ignore-regexp, verilog-auto-inout-ignore-regexp)
23862         (verilog-auto-output-ignore-regexp, verilog-auto-tieoff-ignore-regexp)
23863         (verilog-auto-unused-ignore-regexp, verilog-typedef-regexp):
23864         * textmodes/reftex-vars.el (reftex-format-label-function):
23865         * textmodes/remember.el (remember-diary-file): Fix custom types.
23867         * jka-cmpr-hook.el (jka-compr-mode-alist-additions): Fix typo.
23868         Add :version.
23870 2013-05-09  Leo Liu  <sdl.web@gmail.com>
23872         * progmodes/octave.el (inferior-octave-completion-at-point):
23873         Restore file completion.  (Bug#14300)
23874         (inferior-octave-startup): Fix incorrect highlighting for the
23875         first prompt.
23877 2013-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
23879         * progmodes/ruby-mode.el: First cut at SMIE support.
23880         (ruby-use-smie): New var.
23881         (ruby-smie-grammar): New constant.
23882         (ruby-smie--bosp, ruby-smie--implicit-semi-p)
23883         (ruby-smie--forward-token, ruby-smie--backward-token)
23884         (ruby-smie-rules): New functions.
23885         (ruby-mode-variables): Setup SMIE if applicable.
23887 2013-05-08  Eli Zaretskii  <eliz@gnu.org>
23889         * simple.el (line-move-visual): Signal beginning/end of buffer
23890         only if vertical-motion moved less than it was requested.  Avoids
23891         silly incorrect error messages when there are display strings with
23892         multiple newlines at EOL.
23894 2013-05-08  Stefan Monnier  <monnier@iro.umontreal.ca>
23896         * progmodes/vera-mode.el (vera-underscore-is-part-of-word):
23897         * progmodes/prolog.el (prolog-underscore-wordchar-flag)
23898         (prolog-char-quote-workaround):
23899         * progmodes/cperl-mode.el (cperl-under-as-char):
23900         * progmodes/vhdl-mode.el (vhdl-underscore-is-part-of-word):
23901         Mark as obsolete.
23902         (vhdl-mode-syntax-table, vhdl-mode-ext-syntax-table): Initialize in
23903         their declaration.
23904         (vhdl-mode-syntax-table-init): Remove.
23906         * progmodes/m4-mode.el (m4-mode-syntax-table): Add comment on
23907         last change.
23909         * progmodes/ld-script.el (ld-script-mode-syntax-table): Use symbol
23910         syntax for "_".
23911         (ld-script-font-lock-keywords):
23912         Change regexps to use things like \_< and \_>.
23914         * progmodes/f90.el (f90-mode-syntax-table): Use symbol syntax for "_".
23915         Change all regexps to use things like \_< and \_>.
23917         * progmodes/autoconf.el (autoconf-definition-regexp)
23918         (autoconf-font-lock-keywords, autoconf-current-defun-function):
23919         Handle a _ with symbol syntax.
23920         (autoconf-mode): Don't change the syntax-table for imenu and font-lock.
23922         * progmodes/ada-mode.el (ada-mode-abbrev-table):
23923         Consolidate declaration.
23924         (ada-mode-syntax-table, ada-mode-symbol-syntax-table): Initialize in
23925         the declaration.
23926         (ada-create-syntax-table): Remove.
23927         (ada-capitalize-word): Don't mess with the syntax of "_" since it
23928         already has the right syntax nowadays.
23929         (ada-goto-next-word): Don't change the syntax of "_".
23931         * font-lock.el (lisp-font-lock-keywords-2): Don't highlight obsolete
23932         with-wrapper-hook.
23934 2013-05-08  Sam Steingold  <sds@gnu.org>
23936         * thingatpt.el (thing-at-point): Accept optional second argument
23937         NO-PROPERTIES to strip the text properties from the return value.
23938         * net/browse-url.el (browse-url-url-at-point): Pass NO-PROPERTIES
23939         to `thing-at-point' instead of stripping the properties ourselves.
23940         Also, when `thing-at-point' fails to find a url, prepend "http://"
23941         to the filename at point on the assumption that the user is
23942         pointing at something like gnu.org/gnu.
23944 2013-05-08  Juanma Barranquero  <lekktu@gmail.com>
23946         * emacs-lisp/bytecomp.el (byte-compile-insert-header):
23947         * faces.el (crm-separator):
23948         Silence byte-compiler.
23950         * progmodes/gud.el (gdb-speedbar-auto-raise, gud-tooltip-mode)
23951         (tool-bar-map): Remove unneeded defvars.
23953 2013-05-08  Leo Liu  <sdl.web@gmail.com>
23955         Re-work a fix for bug#10994 based on Le Wang's patch.
23956         * ido.el (ido-remove-consecutive-dups): New helper.
23957         (ido-completing-read): Use it.
23958         (ido-chop): Revert fix for bug#10994.
23960 2013-05-08  Adam Spiers  <emacs@adamspiers.org>
23962         * cus-edit.el (custom-save-variables):
23963         Pretty-print long values.  (Bug#14187)
23965 2013-05-08  Glenn Morris  <rgm@gnu.org>
23967         * progmodes/m4-mode.el (m4-program): Assume it is in PATH.
23968         (m4-mode-syntax-table): Init in the defvar.
23969         (m4-mode-abbrev-table): Let define-derived-mode define it.
23971 2013-05-08  Tom Tromey  <tromey@redhat.com>
23973         * progmodes/m4-mode.el (m4-mode-syntax-table):
23974         Do not treat "_" as word constituent.  (Bug#14167)
23976 2013-05-07  Glenn Morris  <rgm@gnu.org>
23978         * eshell/em-hist.el (eshell-isearch-map): Initialize in the defvar.
23979         Remove explicit eshell-isearch-cancel-map.
23981         * progmodes/f90.el (f90-smart-end-names): New option.
23982         (f90-smart-end): Doc fix.
23983         (f90-end-block-optional-name): New constant.
23984         (f90-block-match): Respect f90-smart-end-names.
23986 2013-05-07  Stefan Monnier  <monnier@iro.umontreal.ca>
23988         * progmodes/octave.el (octave-smie-forward-token): Be more careful
23989         about implicit semi-colons (bug#14218).
23991 2013-05-07  YAMAMOTO Mitsuharu  <mituharu@math.s.chiba-u.ac.jp>
23993         * frame.el (display-monitor-attributes-list)
23994         (frame-monitor-attributes): New functions.
23996 2013-05-06  Leo Liu  <sdl.web@gmail.com>
23998         * progmodes/octave.el (octave-syntax-propertize-function): Change
23999         \'s syntax to escape when inside double-quoted strings.  (Bug#14332)
24000         (octave-font-lock-keywords): Use octave-operator-regexp.
24001         (octave-completion-at-point): Rename from
24002         octave-completion-at-point-function.
24003         (inferior-octave-directory-tracker): Robustify.
24004         (octave-text-functions): Remove and fix its uses.  No such things
24005         any more.
24007 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
24009         * emacs-lisp/trace.el (trace--display-buffer): New function.
24010         (trace-make-advice): Use it.
24012 2013-05-06  Juri Linkov  <juri@jurta.org>
24014         * emacs-lisp/lisp-mode.el (eval-defun-2): Doc fix.  (Bug#14344)
24015         (eval-defun-2, eval-defun, eval-last-sexp, eval-last-sexp-1):
24016         Doc fix.
24017         (emacs-lisp-mode-map): Replace "minibuffer" with "echo area"
24018         in the help string.  (Bug#12985)
24020 2013-05-06  Kelly Dean  <kellydeanch@yahoo.com>  (tiny change)
24022         * simple.el (shell-command-on-region): Doc fix.  (Bug#14279)
24024 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
24026         * progmodes/perl-mode.el: Add support for here documents.
24027         (perl-syntax-propertize-function): Match here-doc markers.
24028         (perl-syntax-propertize-special-constructs): Find their end.
24029         (perl-imenu-generic-expression): Use [:alnum:].
24031         * emacs-lisp/nadvice.el (advice--member-p): Return the advice if found.
24032         (advice--add-function): Refresh the advice if already present
24033         (bug#14317).
24035 2013-05-06  Ivan Andrus  <darthandrus@gmail.com>
24037         * find-file.el (cc-other-file-alist): Add ".m" for ObjC.  (Bug#14339)
24039 2013-05-06  Glenn Morris  <rgm@gnu.org>
24041         * w32-fns.el (w32-charset-info-alist): Declare.
24043         * eshell/em-cmpl.el: Simply require pcomplete; eg we use a bunch
24044         of its defcustom properties.
24045         (eshell-cmpl-initialize): No need to load pcomplete.
24047         * generic-x.el: No need to require comint when compiling.
24049         * net/eudc-export.el: Make it loadable without bbdb.
24050         (top-level): Use require rather than load-library.
24051         (eudc-create-bbdb-record, eudc-bbdbify-phone)
24052         (eudc-batch-export-records-to-bbdb)
24053         (eudc-insert-record-at-point-into-bbdb, eudc-try-bbdb-insert):
24054         Require bbdb.
24056 2013-05-06  Stefan Monnier  <monnier@iro.umontreal.ca>
24058         * progmodes/octave.el (octave-texinfo-font-lock-keywords): Remove.
24059         (octave-font-lock-texinfo-comment): Use texinfo-font-lock-keywords with
24060         some tweaks, instead.
24062 2013-05-05  Leo Liu  <sdl.web@gmail.com>
24064         * progmodes/octave.el (octave-font-lock-keywords)
24065         (octave-font-lock-texinfo-comment): Adjust for the byte-compiler.
24066         (inferior-octave-send-list-and-digest): Improve error message.
24067         (octave-mode, inferior-octave-mode): Use setq-local.
24068         (octave-help): Set info-lookup-mode.
24070 2013-05-05  Richard Stallman  <rms@gnu.org>
24072         * vc/compare-w.el (compare-windows-whitespace):
24073         Treat no-break space as whitespace.
24075         * mail/rmailsum.el (rmail-summary-rmail-update):
24076         Detect empty summary and don't change selected message.
24077         (rmail-summary-goto-msg): Likewise.
24079         * mail/rmailsum.el (rmail-new-summary, rmail-new-summary-1):
24080         Doc fixes, rename args.
24082 2013-05-05  Alan Mackenzie  <acm@muc.de>
24084         * progmodes/cc-defs.el (c-version): Increment to 5.32.5.
24086 2013-05-05  Juri Linkov  <juri@jurta.org>
24088         * info.el (Info-read-subfile): Use (point-min) instead of (point)
24089         to not add the length of the summary segment to the return value.
24090         (Bug#14125)
24092 2013-05-05  Leo Liu  <sdl.web@gmail.com>
24094         * progmodes/octave.el (inferior-octave-strip-ctrl-g)
24095         (inferior-octave-output-filter): Remove.
24096         (octave-send-region, inferior-octave-startup): Fix callers.
24097         (inferior-octave-mode-map): Don't use comint-dynamic-complete.
24098         (octave-binary-file-extensions): New user variable.
24099         (octave-find-definition): Confirm if opening binary files.
24100         (octave-help-file): Use octave-find-definition to get the binary
24101         confirmation.
24102         (octave-help): Adjust for octave-help-file change.
24104 2013-05-05  Stefan Monnier  <monnier@iro.umontreal.ca>
24106         * progmodes/pascal.el (pascal-font-lock-keywords): Use backquotes.
24107         Merge the two entries that handle function definitions.
24108         (pascal--syntax-propertize): New const.
24109         (pascal-mode): Use it.  Use setq-local.
24111 2013-05-04  Glenn Morris  <rgm@gnu.org>
24113         * calendar/diary-lib.el (diary-from-outlook-function): New variable.
24114         (diary-from-outlook): Respect diary-from-outlook-function.
24116 2013-05-04  Stefan Monnier  <monnier@iro.umontreal.ca>
24118         * simple.el (read-expression-map): Use completion-at-point (bug#14255).
24119         Move the declaration from C.
24120         (read-minibuffer, eval-minibuffer): Move from C.
24121         (completion-setup-function): Avoid minibuffer-completion-contents.
24123 2013-05-03  Leo Liu  <sdl.web@gmail.com>
24125         * progmodes/octave.el (octave-font-lock-keywords): Do not
24126         dehighlight 'end' in comments or strings.
24127         (octave-completing-read, octave-goto-function-definition):
24128         New helpers.
24129         (octave-help-buffer): New user variable.
24130         (octave-help-file, octave-help-function): New button types.
24131         (octave-help): New command and bind it to C-h ;.
24132         (octave-find-definition): New command and bind it to M-.
24133         (user-error): Alias to error if not defined.
24135 2013-05-02  Leo Liu  <sdl.web@gmail.com>
24137         * progmodes/octave.el (octave-mode-syntax-table): Correct syntax
24138         for \.  (bug#14332)
24139         (octave-font-lock-keywords): Include [ and {.
24141 2013-05-02  Leo Liu  <sdl.web@gmail.com>
24143         * progmodes/octave.el (inferior-octave-startup-file): Change default.
24144         (inferior-octave): Remove calling comint-mode and return the buffer.
24145         (inferior-octave-startup): Cosmetic changes.
24147 2013-05-02  Leo Liu  <sdl.web@gmail.com>
24149         * progmodes/octave.el (octave-syntax-propertize-function):
24150         Include the case when ' is at line beginning.  (Bug#14336)
24152 2013-05-02  Glenn Morris  <rgm@gnu.org>
24154         * vc/vc-dir.el (vc-dir-mode): Don't autoload it for everyone.
24155         * desktop.el (vc-dir-mode): Just autoload it here.
24157 2013-05-02  Alan Mackenzie  <acm@muc.de>
24159         Eliminate variable c-standard-font-lock-fontify-region-function.
24160         * progmodes/cc-mode.el
24161         (c-standard-font-lock-fontify-region-function): Remove.
24162         (c-font-lock-fontify-region, c-after-font-lock-init): Adapt.
24164 2013-05-01  Leo Liu  <sdl.web@gmail.com>
24166         * progmodes/octave.el: Compatible with older emacs-24 releases.
24167         (inferior-octave-has-built-in-variables): Remove.  Built-in
24168         variables were removed from Octave in 2007.
24169         (inferior-octave-startup): Fix uses.
24170         (comint-line-beginning-position): Remove compatibility code for
24171         emacs 21.
24173 2013-05-01  Juri Linkov  <juri@jurta.org>
24175         * isearch.el (isearch-forward, isearch-mode): Doc fix.  (Bug#13923)
24177 2013-05-01  Juri Linkov  <juri@jurta.org>
24179         * comint.el (comint-previous-matching-input): Don't print message
24180         "History item: %d" when `isearch-mode' is active.
24181         (comint-history-isearch-message): Print message "History item: %d"
24182         when `comint-input-ring-index' is not empty and this function is
24183         called from `isearch-update' with a nil `ellipsis'.  (Bug#13223)
24185 2013-05-01  Leo Liu  <sdl.web@gmail.com>
24187         * progmodes/octave.el (octave-abbrev-table): Remove abbrev
24188         definitions.  Use completion-at-point to insert keywords.
24189         (octave-abbrev-start): Remove.
24190         (inferior-octave-mode, octave-mode): Use :abbrev-table instead.
24192 2013-04-30  Leo Liu  <sdl.web@gmail.com>
24194         * progmodes/octave.el (inferior-octave-prompt-read-only): Fix last
24195         change.
24197 2013-04-30  Alan Mackenzie  <acm@muc.de>
24199         Handle arbitrarily long C++ member initialisation lists.
24200         * progmodes/cc-engine.el (c-back-over-member-initializers):
24201         new function.
24202         (c-guess-basic-syntax): New CASE 5R (extracted from 5B) to handle
24203         (most) member init lists.
24205 2013-04-30  Rüdiger Sonderfeld  <ruediger@c-plusplus.de>
24207         * progmodes/octave.el (inferior-octave-prompt-read-only): New user
24208         variable.
24210 2013-04-30  Leo Liu  <sdl.web@gmail.com>
24212         * progmodes/octave.el (octave-variables): Remove.  No builtin
24213         variables any more.  All converted to functions.
24214         (octave-font-lock-keywords, octave-completion-at-point-function):
24215         Fix uses.
24216         (octave-font-lock-texinfo-comment): New user variable.
24217         (octave-texinfo-font-lock-keywords): New variable for texinfo
24218         comment block.
24219         (octave-function-comment-block): New face.
24220         (octave-font-lock-texinfo-comment): New function.
24221         (octave-mode): Font lock texinfo comment block.
24223 2013-04-29  Leo Liu  <sdl.web@gmail.com>
24225         * progmodes/octave.el (octave-font-lock-keywords): Handle 'end' in
24226         indexing expression.
24227         (octave-continuation-string): Do not use \.
24228         (inferior-octave-complete-impossible): Remove.
24229         (inferior-octave-completion-table)
24230         (inferior-octave-completion-at-point): Remove its uses.
24231         (inferior-octave-startup): completion_matches was introduced to
24232         Octave in 1996 so safe to assume it.
24233         (octave-function-file-comment): Improve to follow how Octave does it.
24234         (octave-update-function-file-comment): Tweak.
24236 2013-04-29  Leo Liu  <sdl.web@gmail.com>
24238         * progmodes/octave.el (inferior-octave-startup-hook): Obsolete.
24239         (inferior-octave-startup): Remove inferior-octave-startup-hook.
24240         (octave-function-file-comment): Fix typo.
24241         (octave-sync-function-file-names): Use read-char-choice.
24243 2013-04-28  Jay Belanger  <jay.p.belanger@gmail.com>
24245         * calc/calc.el (math-normalize): Don't set `math-normalize-error'
24246         to t for the less important warnings.
24248 2013-04-27  Darren Hoo  <darren.hoo@gmail.com>  (tiny change)
24250         * isearch.el (isearch-fail-pos): Check for empty `cmds'.  (Bug#14268)
24252 2013-04-27  Glenn Morris  <rgm@gnu.org>
24254         * vc/log-view.el (log-view-current-entry):
24255         Treat "---" separator lines as part of the following rev.  (Bug#14169)
24257 2013-04-27  Juri Linkov  <juri@jurta.org>
24259         * subr.el (read-number): Doc fix about using it by interactive
24260         code letter `n'.  (Bug#14254)
24262 2013-04-27  Juri Linkov  <juri@jurta.org>
24264         * desktop.el (desktop-auto-save-timeout): New option.
24265         (desktop-file-checksum): New variable.
24266         (desktop-save): Add optional arg `auto-save' and don't auto-save
24267         if nothing changed.
24268         (desktop-auto-save-timer): New variable.
24269         (desktop-auto-save, desktop-auto-save-set-timer): New functions.
24270         (after-init-hook): Call `desktop-auto-save-set-timer'.
24271         Suggested by Reuben Thomas <rrt@sc3d.org> in
24272         <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00327.html>.
24274 2013-04-27  Leo Liu  <sdl.web@gmail.com>
24276         * progmodes/octave.el (octave-function-file-p)
24277         (octave-skip-comment-forward, octave-function-file-comment)
24278         (octave-update-function-file-comment): New functions.
24279         (octave-mode-map): Bind C-c ; to
24280         octave-update-function-file-comment.
24281         (octave-mode-menu): Add octave-update-function-file-comment.
24282         (octave-mode, inferior-octave-mode): Fix doc-string.
24283         (octave-insert-defun): Conform to Octave's coding convention.
24284         (Bug#14285)
24286         * files.el (basic-save-buffer): Don't let errors in
24287         before-save-hook prevent saving buffer.
24289 2013-04-20  Roland Winkler  <winkler@gnu.org>
24291         * faces.el (read-face-name): Use completing-read if arg multiple
24292         is nil.
24294 2013-04-27  Ingo Lohmar  <i.lohmar@gmail.com>  (tiny change)
24296         * ls-lisp.el (ls-lisp-insert-directory): If no files are
24297         displayed, move point to after the totals line.
24298         See http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00677.html
24299         for the details.
24301 2013-04-27  Stefan Monnier  <monnier@iro.umontreal.ca>
24303         * emacs-lisp/package.el (package-autoload-ensure-default-file):
24304         Add current dir to the load-path.
24305         (package-generate-autoloads): Don't rely on
24306         autoload-ensure-default-file.
24308 2013-04-26  Reuben Thomas  <rrt@sc3d.org>
24310         * textmodes/remember.el (remember-store-in-files): Document that
24311         the file name format is passed to `format-time-string'.
24313 2013-04-26  Leo Liu  <sdl.web@gmail.com>
24315         * progmodes/octave.el (octave-sync-function-file-names): New function.
24316         (octave-mode): Use it in before-save-hook.
24318 2013-04-26  Stefan Monnier  <monnier@iro.umontreal.ca>
24320         * emacs-lisp/tabulated-list.el (tabulated-list-mode): Disable undo
24321         (bug#14274).
24323         * progmodes/octave.el (octave-smie-forward-token): Properly skip
24324         \n and comment, even if it's not an implicit ; (bug#14218).
24326 2013-04-26  Glenn Morris  <rgm@gnu.org>
24328         * subr.el (read-number): Once more use `read' rather than
24329         `string-to-number', to trap non-numeric input.  (Bug#14254)
24331 2013-04-26  Erik Charlebois  <erikcharlebois@gmail.com>
24333         * emacs-lisp/syntax.el (syntax-propertize-multiline):
24334         Use `syntax-multiline' text property consistently instead of
24335         `font-lock-multiline'.  (Bug#14237)
24337 2013-04-26  Glenn Morris  <rgm@gnu.org>
24339         * emacs-lisp/shadow.el (list-load-path-shadows):
24340         No longer necessary to check for duplicate simple.el, since
24341         2012-07-07 change to init_lread to not include installation lisp
24342         directories in load-path when running uninstalled.  (Bug#14270)
24344 2013-04-26  Leo Liu  <sdl.web@gmail.com>
24346         * progmodes/octave.el (octave-submit-bug-report): Obsolete.
24347         (octave-mode, inferior-octave-mode): Use setq-local.
24348         (octave-not-in-string-or-comment-p): Rename to
24349         octave-in-string-or-comment-p.
24350         (octave-in-comment-p, octave-in-string-p)
24351         (octave-in-string-or-comment-p): Replace defsubst with defun.
24353 2013-04-25  Paul Eggert  <eggert@cs.ucla.edu>
24355         * Makefile.in (distclean): Remove $(lisp)/loaddefs.el~.
24357 2013-04-25  Bastien Guerry  <bzg@gnu.org>
24359         * textmodes/remember.el (remember-data-directory)
24360         (remember-directory-file-name-format): Fix custom types.
24362 2013-04-25  Leo Liu  <sdl.web@gmail.com>
24364         * progmodes/octave.el (octave-completion-at-point-function):
24365         Make use of inferior octave process.
24366         (octave-initialize-completions): Remove.
24367         (inferior-octave-completion-table): New function.
24368         (inferior-octave-completion-at-point): Use it.
24369         (octave-completion-alist): Remove.
24371 2013-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
24373         * progmodes/opascal.el: Use font-lock and syntax-propertize.
24374         (opascal-mode-syntax-table): New var.
24375         (opascal-literal-kind, opascal-is-literal-end)
24376         (opascal-literal-token-at): Rewrite.
24377         (opascal--literal-start-re, opascal-font-lock-keywords)
24378         (opascal--syntax-propertize): New constants.
24379         (opascal-font-lock-defaults): Adjust.
24380         (opascal-mode): Use them.  Set comment-<foo> variables as well.
24381         (delphi-comment-face, opascal-comment-face, delphi-string-face)
24382         (opascal-string-face, delphi-keyword-face, opascal-keyword-face)
24383         (delphi-other-face, opascal-other-face): Remove face variables.
24384         (opascal-save-state): Remove macro.
24385         (opascal-fontifying-progress-step): Remove constant.
24386         (opascal--ignore-changes): Remove var.
24387         (opascal-set-token-property, opascal-parse-next-literal)
24388         (opascal-is-stable-literal, opascal-complete-literal)
24389         (opascal-is-literal-start, opascal-face-of)
24390         (opascal-parse-region, opascal-parse-region-until-stable)
24391         (opascal-fontify-region, opascal-after-change)
24392         (opascal-debug-show-is-stable, opascal-debug-unparse-buffer)
24393         (opascal-debug-parse-region, opascal-debug-parse-window)
24394         (opascal-debug-parse-buffer, opascal-debug-fontify-window)
24395         (opascal-debug-fontify-buffer): Remove.
24396         (opascal-debug-mode-map): Adjust accordingly.
24398 2013-04-25  Leo Liu  <sdl.web@gmail.com>
24400         Merge octave-mod.el and octave-inf.el into octave.el with some
24401         cleanups.
24402         * progmodes/octave.el: New file renamed from octave-mod.el.
24403         * progmodes/octave-inf.el: Merged into octave.el.
24404         * progmodes/octave-mod.el: Renamed to octave.el.
24406 2013-04-25  Tassilo Horn  <tsdh@gnu.org>
24408         * textmodes/reftex-vars.el
24409         (reftex-label-ignored-macros-and-environments): New defcustom.
24411         * textmodes/reftex-parse.el (reftex-parse-from-file): Use it.
24413 2013-04-25  Stefan Monnier  <monnier@iro.umontreal.ca>
24415         * emacs-lisp/smie.el (smie-indent--hanging-p): Don't burp at EOB.
24416         (smie-indent-keyword): Improve the check to ensure that the next
24417         comment is really on the same line.
24418         (smie-indent-comment): Don't align with a subsequent closer (or eob).
24420         * progmodes/octave-mod.el (octave-smie-forward-token): Only emit
24421         semi-colons if the line is not otherwise empty (bug#14218).
24423 2013-04-25  Glenn Morris  <rgm@gnu.org>
24425         * vc/vc-bzr.el (vc-bzr-print-log): Tweak LIMIT = 1 case.
24427 2013-04-24  Stefan Monnier  <monnier@iro.umontreal.ca>
24429         * progmodes/opascal.el (opascal-set-token-property): Rename from
24430         opascal-set-text-properties and only set `token' (bug#14134).
24431         Suggested by Erik Knowles <eknowles@geosystemsoftware.com>.
24432         (opascal-literal-text-properties): Remove.
24433         (opascal-parse-next-literal, opascal-debug-unparse-buffer):
24434         Adjust callers.
24436 2013-04-24  Reuben Thomas  <rrt@sc3d.org>
24438         * textmodes/remember.el (remember-handler-functions): Add an
24439         option for a new handler `remember-store-in-files'.
24440         (remember-data-directory, remember-directory-file-name-format):
24441         New options.
24442         (remember-store-in-files): New function to store remember notes
24443         as separate files within a directory.
24445 2013-04-24  Magnus Henoch  <magnus.henoch@gmail.com>
24447         * progmodes/compile.el (compilation-next-error-function):
24448         Pass "formats" to compilation-find-file (bug#11777).
24450 2013-04-24  Glenn Morris  <rgm@gnu.org>
24452         * vc/vc-bzr.el (vc-bzr-print-log):
24453         * vc/vc-hg.el (vc-hg-print-log):
24454         * vc/vc-svn.el (vc-svn-print-log):
24455         Fix START-REVISION with LIMIT != 1.  (Bug#14168)
24457         * vc/vc-bzr.el (vc-bzr-print-log):
24458         * vc/vc-cvs.el (vc-cvs-print-log):
24459         * vc/vc-git.el (vc-git-print-log):
24460         * vc/vc-hg.el (vc-hg-print-log):
24461         * vc/vc-mtn.el (vc-mtn-print-log):
24462         * vc/vc-rcs.el (vc-rcs-print-log):
24463         * vc/vc-sccs.el (vc-sccs-print-log):
24464         * vc/vc-svn.el (vc-svn-print-log):
24465         * vc/vc.el (vc-print-log-internal): Doc fixes.
24467 2013-04-23  Glenn Morris  <rgm@gnu.org>
24469         * startup.el (normal-no-mouse-startup-screen, normal-about-screen):
24470         Remove venerable code attempting to avoid substitute-command-keys.
24472 2013-04-23  Tassilo Horn  <tsdh@gnu.org>
24474         * textmodes/reftex-vars.el (reftex-label-regexps):
24475         Call `reftex-compile-variables' after changes to this variable.
24477 2013-04-23  Stefan Monnier  <monnier@iro.umontreal.ca>
24479         * jit-lock.el: Fix signals in jit-lock-force-redisplay (bug#13542).
24480         Use lexical-binding.
24481         (jit-lock-force-redisplay): Use markers, check buffer's continued
24482         existence and beware narrowed buffers.
24483         (jit-lock-fontify-now): Adjust call accordingly.
24485 2013-04-22  Stefan Monnier  <monnier@iro.umontreal.ca>
24487         * minibuffer.el (minibuffer-completion-contents): Fix obsolescence info
24488         to avoid misleading the user.
24490 2013-04-22  Leo Liu  <sdl.web@gmail.com>
24492         * info-look.el: Prefer latex2e.info.  (Bug#14240)
24494 2013-04-22  Michael Albinus  <michael.albinus@gmx.de>
24496         Fix pack/unpack coding.  Reported by David Smith <davidsmith@acm.org>.
24498         * net/tramp-compat.el (tramp-compat-call-process): Move function ...
24499         * net/tramp.el (tramp-call-process): ... here.
24500         (tramp-set-completion-function, tramp-parse-putty):
24501         * net/tramp-adb.el (tramp-adb-execute-adb-command):
24502         * net/tramp-gvfs.el (tramp-gvfs-send-command):
24503         * net/tramp-sh.el (tramp-sh-handle-set-file-times)
24504         (tramp-set-file-uid-gid, tramp-sh-handle-write-region)
24505         (tramp-call-local-coding-command): Use `tramp-call-process'
24506         instead of `tramp-compat-call-process'.
24508         * net/tramp-sh.el (tramp-perl-pack, tramp-perl-unpack): New defconst.
24509         (tramp-local-coding-commands, tramp-remote-coding-commands): Use them.
24510         (tramp-sh-handle-file-local-copy, tramp-sh-handle-write-region)
24511         (tramp-find-inline-compress): Improve traces.
24512         (tramp-maybe-send-script): Check for Perl binary.
24513         (tramp-get-inline-coding): Do not redirect STDOUT for local decoding.
24515 2013-04-22  Daiki Ueno  <ueno@gnu.org>
24517         * epg.el (epg-context-pinentry-mode): New function.
24518         (epg-context-set-pinentry-mode): New function.
24519         (epg--start): Pass --pinentry-mode option to gpg command.
24521 2013-04-21  Xue Fuqiao  <xfq.free@gmail.com>
24523         * comint.el (comint-dynamic-complete-functions, comint-mode-map):
24524         `comint-dynamic-complete' is obsolete since 24.1, replaced by
24525         `completion-at-point'.  (Bug#13774)
24527         * startup.el (normal-no-mouse-startup-screen): Bug fix, the
24528         default key binding for `describe-distribution' has been moved to
24529         `C-h C-o'.  (Bug#13970)
24531 2013-04-21  Glenn Morris  <rgm@gnu.org>
24533         * vc/vc.el (vc-print-log-setup-buttons, vc-print-log-internal):
24534         Add doc strings.
24535         (vc-print-log): Clarify interactive prompt.
24537 2013-04-20  Glenn Morris  <rgm@gnu.org>
24539         * emacs-lisp/bytecomp.el (byte-compile-insert-header):
24540         No longer include timestamp etc information.
24542 2013-04-20  Roland Winkler  <winkler@gnu.org>
24544         * faces.el (read-face-name): Bug fix, return just one face if arg
24545         multiple is nil.  (Bug#14209)
24547 2013-04-20  Stefan Monnier  <monnier@iro.umontreal.ca>
24549         * emacs-lisp/nadvice.el (advice--where-alist): Add :override.
24550         (remove-function): Autoload.
24552         * comint.el (comint-redirect-original-filter-function): Remove.
24553         (comint-redirect-cleanup, comint-redirect-send-command-to-process):
24554         * vc/vc-cvs.el (vc-cvs-annotate-process-filter)
24555         (vc-cvs-annotate-command):
24556         * progmodes/octave-inf.el (inferior-octave-send-list-and-digest):
24557         * progmodes/prolog.el (prolog-consult-compile):
24558         * progmodes/gdb-mi.el (gdb, gdb--check-interpreter):
24559         Use add/remove-function instead.
24560         * progmodes/gud.el (gud-tooltip-original-filter): Remove.
24561         (gud-tooltip-process-output, gud-tooltip-tips):
24562         Use add/remove-function instead.
24563         * progmodes/xscheme.el (xscheme-previous-process-state): Remove.
24564         (scheme-interaction-mode, exit-scheme-interaction-mode):
24565         Use add/remove-function instead.
24567         * vc/vc-dispatcher.el: Use lexical-binding.
24568         (vc--process-sentinel): Rename from vc-process-sentinel.
24569         Change last arg to be the code to run.  Don't use vc-previous-sentinel
24570         and vc-sentinel-commands any more.
24571         (vc-exec-after): Allow code to be a function.  Use add/remove-function.
24572         (compilation-error-regexp-alist, view-old-buffer-read-only): Declare.
24574 2013-04-19  Masatake YAMATO  <yamato@redhat.com>
24576         * progmodes/sh-script.el (sh-imenu-generic-expression):
24577         Handle function names with a single character.  (Bug#14111)
24579 2013-04-19  Dima Kogan  <dima@secretsauce.net>  (tiny change)
24581         * progmodes/gud.el (gud-perldb-marker-filter): Understand position info
24582         for subroutines defined in an eval (bug#14182).
24584 2013-04-19  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
24586         * bookmark.el (bookmark-completing-read): Improve handling of empty
24587         string (bug#14176).
24589 2013-04-19  Stefan Monnier  <monnier@iro.umontreal.ca>
24591         * vc/vc-dispatcher.el (vc-do-command): Get rid of default sentinel msg.
24593 2013-04-19  Fabián Ezequiel Gallina  <fgallina@gnu.org>
24595         New faster Imenu implementation (bug#14058).
24596         * progmodes/python.el (python-imenu-prev-index-position)
24597         (python-imenu-format-item-label-function)
24598         (python-imenu-format-parent-item-label-function)
24599         (python-imenu-format-parent-item-jump-label-function):
24600         New vars.
24601         (python-imenu-format-item-label)
24602         (python-imenu-format-parent-item-label)
24603         (python-imenu-format-parent-item-jump-label)
24604         (python-imenu--put-parent, python-imenu--build-tree)
24605         (python-imenu-create-index, python-imenu-create-flat-index)
24606         (python-util-popn): New functions.
24607         (python-mode): Set imenu-create-index-function to
24608         python-imenu-create-index.
24610 2013-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
24612         * winner.el (winner-active-region): Use region-active-p, activate-mark
24613         and deactivate-mark (bug#14225).
24615         * simple.el (deactivate-mark): Don't inline it.
24617 2013-04-18  Michael Albinus  <michael.albinus@gmx.de>
24619         * net/tramp-sh.el (tramp-remote-process-environment): Add "TMOUT=0".
24621 2013-04-18  Tassilo Horn  <tsdh@gnu.org>
24623         * files.el (auto-mode-alist): Delete OpenDocument and StarOffice
24624         file extensions from the archive-mode entry in order to prefer
24625         doc-view-mode-maybe with archive-mode as fallback (bug#14188).
24627 2013-04-18  Leo Liu  <sdl.web@gmail.com>
24629         * bindings.el (help-event-list): Add ?\?.
24631 2013-04-18  Stefan Monnier  <monnier@iro.umontreal.ca>
24633         * subr.el (with-wrapper-hook): Declare obsolete.
24634         * simple.el (filter-buffer-substring-function): New hook.
24635         (filter-buffer-substring): Use it.
24636         (filter-buffer-substring-functions): Mark obsolete.
24637         * minibuffer.el (completion-in-region-function): New hook.
24638         (completion-in-region): Use it.
24639         (completion-in-region-functions): Mark obsolete.
24640         * mail/mailabbrev.el (mail-abbrevs-setup): Use abbrev-expand-function.
24641         * abbrev.el (abbrev-expand-function): New hook.
24642         (expand-abbrev): Use it.
24643         (abbrev-expand-functions): Mark obsolete.
24644         * emacs-lisp/nadvice.el (advice--where-alist): Add :filter-args
24645         and :filter-return.
24647 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
24649         * progmodes/python.el (python-nav--syntactically): Fix cornercases
24650         and do not care about match data.
24652 2013-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
24654         * emacs-lisp/lisp.el (lisp-completion-at-point): Provide specialized
24655         completion tables when completing error conditions and
24656         `declare' arguments.
24657         (lisp-complete-symbol, field-complete): Mark as obsolete.
24658         (check-parens): Unmatched parens are user errors.
24659         * minibuffer.el (minibuffer-completion-contents): Mark as obsolete.
24661 2013-04-17  Michal Nazarewicz  <mina86@mina86.com>
24663         * textmodes/flyspell.el (flyspell-check-pre-word-p): Return nil if
24664         command changed buffer (ie. `flyspell-pre-buffer' is not current
24665         buffer), which prevents making decisions based on invalid value of
24666         `flyspell-pre-point' in the wrong buffer.  Most notably, this used to
24667         cause an error when `flyspell-pre-point' was nil after switching
24668         buffers.
24669         (flyspell-post-command-hook): No longer needs to change buffers when
24670         checking pre-word.  While at it remove unnecessary progn.
24672 2013-04-17  Nicolas Richard  <theonewiththeevillook@yahoo.fr>  (tiny change)
24674         * textmodes/ispell.el (ispell-add-per-file-word-list):
24675         Fix `flyspell-correct-word-before-point' error when accepting
24676         words and `coment-padding' is an integer by using
24677         `comment-normalize-vars' (Bug #14214).
24679 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
24681         New defun movement commands.
24682         * progmodes/python.el (python-nav--syntactically)
24683         (python-nav--forward-defun, python-nav-backward-defun)
24684         (python-nav-forward-defun): New functions.
24686 2013-04-17  Fabián Ezequiel Gallina  <fgallina@gnu.org>
24688         * progmodes/python.el (python-syntax--context-compiler-macro): New defun.
24689         (python-syntax-context): Use named compiler-macro for backwards
24690         compatibility with Emacs 24.x.
24692 2013-04-17  Leo Liu  <sdl.web@gmail.com>
24694         * progmodes/octave-mod.el (octave-mode-map): Fix key binding to
24695         octave-hide-process-buffer.
24697 2013-04-17  Stefan Monnier  <monnier@iro.umontreal.ca>
24699         * vc/vc-hg.el (vc-hg-annotate-re): Disallow ": " in file names
24700         (bug#14216).
24702 2013-04-17  Jean-Philippe Gravel  <jpgravel@gmail.com>
24704         * progmodes/gdb-mi.el (gdbmi-bnf-incomplete-record-result):
24705         Fix adjustment of offset when receiving incomplete responses from GDB
24706         (bug#14129).
24708 2013-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
24710         * progmodes/python.el (python-mode-skeleton-abbrev-table): Rename from
24711         python-mode-abbrev-table.
24712         (python-skeleton-define): Adjust accordingly.
24713         (python-mode-abbrev-table): New table that inherits from it so that
24714         python-skeleton-autoinsert does not affect non-skeleton abbrevs.
24716         * abbrev.el (abbrev--symbol): New function, extracted from abbrev-symbol.
24717         (abbrev-symbol): Use it.
24718         (abbrev--before-point): Use it since we already handle inheritance.
24720 2013-04-16  Leo Liu  <sdl.web@gmail.com>
24722         * progmodes/octave-mod.el (octave-mode-map): Remove redundant key
24723         binding to info-lookup-symbol.
24725 2013-04-16  Juanma Barranquero  <lekktu@gmail.com>
24727         * minibuffer.el (completion--twq-all):
24728         * term/ns-win.el (ns-initialize-window-system):
24729         * term/w32-win.el (w32-initialize-window-system): Silence byte-compiler.
24731 2013-04-16  Stefan Monnier  <monnier@iro.umontreal.ca>
24733         * emacs-lisp/nadvice.el (add-function): Default simple vars to their
24734         global bindings.
24736         * doc-view.el (doc-view-start-process): Handle url-handler directories.
24738 2013-04-15  Dmitry Gutov  <dgutov@yandex.ru>
24740         * progmodes/ruby-mode.el (ruby-beginning-of-defun)
24741         (ruby-end-of-defun, ruby-move-to-block): Bind `case-fold-search'
24742         to nil.
24743         (ruby-end-of-defun): Remove the unused arg, change the docstring
24744         to reflect that this function is only used as the value of
24745         `end-of-defun-function'.
24746         (ruby-beginning-of-defun): Remove "top-level" from the docstring,
24747         to reflect an earlier change that beginning/end-of-defun functions
24748         jump between methods in a class definition, as well as top-level
24749         functions.
24751 2013-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
24753         * minibuffer.el (minibuffer-complete): Don't just scroll
24754         a *Completions* that's been iconified.
24755         (minibuffer-force-complete): Make sure repetitions do cycle when going
24756         through completion-in-region -> minibuffer-complete.
24758 2013-04-15  Alan Mackenzie  <acm@muc.de>
24760         Correct the placement of c-cpp-delimiters when there're #s not at
24761         col 0.
24763         * progmodes/cc-langs.el (c-anchored-cpp-prefix): Reformulate and
24764         place a submatch around the #.
24765         * progmodes/cc-mode.el(c-neutralize-syntax-in-and-mark-CPP):
24766         Start a search at BOL.  Put the c-cpp-delimiter category text propertiy
24767         on the #, not BOL.
24769 2013-04-15  Stefan Monnier  <monnier@iro.umontreal.ca>
24771         * emacs-lisp/nadvice.el: Properly test names when adding advice.
24772         (advice--member-p): New arg `name'.
24773         (advice--add-function, advice-member-p): Use it (bug#14202).
24775 2013-04-15  Filipp Gunbin  <fgunbin@fastmail.fm>
24777         Reformulate java imenu-generic-expression.
24778         The old expression contained ill formed regexps.
24780         * progmodes/cc-menus.el (cc-imenu-java-ellipsis-regexp)
24781         (cc-imenu-java-type-spec-regexp, cc-imenu-java-comment-regexp)
24782         (cc-imenu-java-method-arg-regexp): New defconsts.
24783         (cc-imenu-java-build-type-args-regex): New defun.
24784         (cc-imenu-java-generic-expression): Fix, to remove "ambiguous"
24785         handling of spaces in the regexp.
24787 2013-03-15  Agustín Martín Domingo  <agustin.martin@hispalinux.es>
24789         * textmodes/ispell.el (ispell-command-loop): Remove
24790         flyspell highlight of a word when ispell accepts it (bug #14178).
24792 2013-04-15  Michael Albinus  <michael.albinus@gmx.de>
24794         * net/ange-ftp.el (ange-ftp-run-real-handler-orig): New defun,
24795         uses code from the previous `ange-ftp-run-real-handler'.
24796         (ange-ftp-run-real-handler): Set it to `tramp-run-real-handler'
24797         only in case that function exist.  This is needed for proper
24798         unloading of Tramp.
24800 2013-04-15  Tassilo Horn  <tsdh@gnu.org>
24802         * textmodes/reftex-vars.el (reftex-label-regexps): New defcustom.
24804         * textmodes/reftex.el (reftex-compile-variables): Use it.
24806 2013-04-14  Stefan Monnier  <monnier@iro.umontreal.ca>
24808         * files.el (normal-mode): Only use default major-mode if no other mode
24809         was specified.
24811         * emacs-lisp/trace.el (trace-values): New function.
24813         * files.el: Allow : in local variables (bug#14089).
24814         (hack-local-variable-regexp): New var.
24815         (hack-local-variables-prop-line, hack-local-variables): Use it.
24817 2013-04-13  Roland Winkler  <winkler@gnu.org>
24819         * textmodes/bibtex.el (bibtex-search-entries): Bug fix.  Use match
24820         data before it gets modified by bibtex-beginning-of-entry.
24822 2013-04-13  Roland Winkler  <winkler@gnu.org>
24824         * textmodes/bibtex.el (bibtex-url): Doc fix.
24826 2013-04-13  Roland Winkler  <winkler@gnu.org>
24828         * textmodes/bibtex.el (bibtex-initialize): If the current buffer
24829         does not visit a BibTeX file, exclude it from the list of buffers
24830         returned by bibtex-initialize.
24832 2013-04-13  Stephen Berman  <stephen.berman@gmx.net>
24834         * window.el (split-window): Remove interactive form, since as a
24835         command this function is a special case of split-window-below.
24836         Correct doc string.
24838 2013-04-12  Roland Winkler  <winkler@gnu.org>
24840         * faces.el (read-face-name): Do not override value of arg default.
24841         Allow single faces and strings as default values.  Remove those
24842         elements from return value that are not faces.
24843         (describe-face): Simplify.
24844         (face-at-point): New optional args thing and multiple so that this
24845         function can provide the same functionality previously provided by
24846         read-face-name.
24847         (make-face-bold, make-face-unbold, make-face-italic)
24848         (make-face-unitalic, make-face-bold-italic, invert-face)
24849         (modify-face, read-face-and-attribute): Use face-at-point.
24851         * cus-edit.el (customize-face, customize-face-other-window)
24852         * cus-theme.el (custom-theme-add-face)
24853         * face-remap.el (buffer-face-set)
24854         * facemenu.el (facemenu-set-face): Use face-at-point.
24856 2013-04-12  Michael Albinus  <michael.albinus@gmx.de>
24858         * info.el (Info-file-list-for-emacs): Add "tramp" and "dbus".
24860 2013-04-10  Tassilo Horn  <tsdh@gnu.org>
24862         * textmodes/reftex-cite.el (reftex-parse-bibtex-entry): Don't cut
24863         off leading { and trailing } from field values.
24865 2013-04-10  Stefan Monnier  <monnier@iro.umontreal.ca>
24867         * emacs-lisp/timer.el (timer--check): New function.
24868         (timer--time, timer-set-function, timer-event-handler): Use it.
24869         (timer-set-idle-time): Simplify.
24870         (timer--activate): CSE.
24871         (timer-event-handler): Give more info in error message.
24872         (internal-timer-start-idle): New function, moved from C.
24874         * mpc.el (mpc-proc): Add `restart' argument.
24875         (mpc-proc-cmd): Use it.
24876         (mpc--status-timer-run): Also catch signals from `mpc-proc'.
24877         (mpc-status-buffer-show, mpc-tagbrowser-dir-toggle): Call `mpc-proc'
24878         less often.
24880 2013-04-10  Masatake YAMATO  <yamato@redhat.com>
24882         * progmodes/sh-script.el: Implement `sh-mode' own
24883         `add-log-current-defun-function' (bug#14112).
24884         (sh-current-defun-name): New function.
24885         (sh-mode): Use the function.
24887 2013-04-09  Bastien Guerry  <bzg@gnu.org>
24889         * simple.el (choose-completion-string): Fix docstring (bug#14163).
24891 2013-04-08  Stefan Monnier  <monnier@iro.umontreal.ca>
24893         * emacs-lisp/edebug.el (edebug-mode): Fix typo (bug#14144).
24895         * emacs-lisp/timer.el (timer-event-handler): Don't retrigger a canceled
24896         timer (bug#14156).
24898 2013-04-07  Nic Ferrier  <nferrier@ferrier.me.uk>
24900         * emacs-lisp/ert.el (should, should-not, should-error): Add edebug
24901         declaration.
24903 2013-04-07  Leo Liu  <sdl.web@gmail.com>
24905         * pcmpl-x.el: New file.
24907 2013-04-06  Dmitry Antipov  <dmantipov@yandex.ru>
24909         Do not set x-display-name until X connection is established.
24910         This is needed to prevent from weird situation described at
24911         <http://lists.gnu.org/archive/html/emacs-devel/2013-04/msg00212.html>.
24912         * frame.el (make-frame): Set x-display-name after call to
24913         window system initialization function, not before.
24914         * term/x-win.el (x-initialize-window-system): Add optional
24915         display argument and use it.
24916         * term/w32-win.el (w32-initialize-window-system):
24917         * term/ns-win.el (ns-initialize-window-system):
24918         * term/pc-win.el (msdos-initialize-window-system):
24919         Add compatible optional display argument.
24921 2013-04-06  Eli Zaretskii  <eliz@gnu.org>
24923         * files.el (normal-backup-enable-predicate): On MS-Windows and
24924         MS-DOS compare truenames of temporary-file-directory and of the
24925         file, so that 8+3 aliases (usually found in $TEMP on Windows)
24926         don't fail comparison by compare-strings.  Also, compare file
24927         names case-insensitively on MS-Windows and MS-DOS.
24929 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
24931         * emacs-lisp/package.el (package-compute-transaction): Fix last fix.
24932         Suggested by Donald Curtis <dcurtis@coe.edu> (bug#14082).
24934 2013-04-05  Dmitry Gutov  <dgutov@yandex.ru>
24936         * whitespace.el (whitespace-color-on, whitespace-color-off):
24937         Only call `font-lock-fontify-buffer' when `font-lock-mode' is on.
24939 2013-04-05  Jacek Chrząszcz  <chrzaszcz@mimuw.edu.pl>  (tiny change)
24941         * ispell.el (ispell-set-spellchecker-params):
24942         Really set `ispell-args' for all equivs.
24944 2013-04-05  Stefan Monnier  <monnier@iro.umontreal.ca>
24946         * ido.el (ido-completions): Use extra elements of ido-decorations
24947         (bug#14143).
24948         (ido-decorations): Update docstring.
24950 2013-04-05  Michael Albinus  <michael.albinus@gmx.de>
24952         * autorevert.el (auto-revert-mode, auto-revert-tail-mode)
24953         (global-auto-revert-mode): Let-bind `auto-revert-use-notify' to
24954         nil during initialization, in order not to miss changes since the
24955         file was opened.  (Bug#14140)
24957 2013-04-05  Leo Liu  <sdl.web@gmail.com>
24959         * kmacro.el (kmacro-call-macro): Fix bug#14135.
24961 2013-04-05  Jay Belanger  <jay.p.belanger@gmail.com>
24963         * calc/calc-units.el (calc-convert-units): Rewrite conditional.
24965 2013-04-04  Glenn Morris  <rgm@gnu.org>
24967         * electric.el (electric-pair-inhibit-predicate): Add :version.
24969 2013-04-04  Stefan Monnier  <monnier@iro.umontreal.ca>
24971         * emacs-lisp/package.el (package-compute-transaction): Fix ordering
24972         when a package is required several times (bug#14082).
24974 2013-04-04  Roland Winkler  <winkler@gnu.org>
24976         * faces.el (read-face-name): Behave as promised by the docstring.
24977         Assume that arg default is a list of faces.
24978         (describe-face): Call read-face-name with list of default faces.
24980 2013-04-04  Thierry Volpiatto  <thierry.volpiatto@gmail.com>
24982         * bookmark.el: Fix deletion of bookmarks (bug#13972).
24983         (bookmark-bmenu-list): Don't toggle filenames if alist is empty.
24984         (bookmark-bmenu-execute-deletions): Only skip first line if it's
24985         the header.
24986         (bookmark-exit-hook-internal): Save even if list is empty.
24988 2013-04-04  Yann Hodique  <yann.hodique@gmail.com>  (tiny change)
24990         * emacs-lisp/package.el (package-pinned-packages): New var.
24991         (package--add-to-archive-contents): Obey it (bug#14118).
24993 2013-04-03  Alan Mackenzie  <acm@muc.de>
24995         Handle `parse-partial-sexp' landing inside a comment opener (Bug#13244).
24996         Also adapt to the new values of element 7 of a parse state.
24998         * progmodes/cc-engine.el (c-state-pp-to-literal): New optional
24999         parameter `not-in-delimiter'.  Handle being inside comment opener.
25000         (c-invalidate-state-cache-1): Reckon with an extra "invalid"
25001         character in case we're typing a '*' after a '/'.
25002         (c-literal-limits): Handle the awkward "not-in-delimiter" cond arm
25003         instead by passing the parameter to c-state-pp-to-literal.
25005         * progmodes/cc-fonts.el (c-font-lock-doc-comments): New handling
25006         for elt. 7 of a parse state.
25008 2013-04-01  Paul Eggert  <eggert@cs.ucla.edu>
25010         Use UTF-8 for most files with non-ASCII characters (Bug#13936).
25011         * international/latin1-disp.el, international/mule-util.el:
25012         * language/cyril-util.el, language/european.el, language/ind-util.el:
25013         * language/lao-util.el, language/thai.el, language/tibet-util.el:
25014         * language/tibetan.el, language/viet-util.el:
25015         Switch from iso-2022-7bit to utf-8 or (if needed) utf-8-emacs.
25017 2013-04-01  Stefan Monnier  <monnier@iro.umontreal.ca>
25019         * electric.el (electric-pair-inhibit-predicate): New var (bug#14000).
25020         (electric-pair-post-self-insert-function): Use it.
25021         (electric-pair-default-inhibit): New function, extracted from
25022         electric-pair-post-self-insert-function.
25024 2013-03-31  Roland Winkler  <winkler@gnu.org>
25026         * emacs-lisp/crm.el (completing-read-multiple): Doc fix.
25028 2013-03-31  Stefan Monnier  <monnier@iro.umontreal.ca>
25030         * hi-lock.el (hi-lock-mode): Cleanup after revert-buffer (bug#13891).
25032 2013-03-30  Fabián Ezequiel Gallina  <fabian@anue.biz>
25034         Un-indent after "pass" and "return" statements (Bug#13888)
25035         * progmodes/python.el (python-indent-block-enders): New var.
25036         (python-indent-calculate-indentation): Use it.
25038 2013-03-30  Michael Albinus  <michael.albinus@gmx.de>
25040         * net/tramp.el (tramp-drop-volume-letter): Make it an ordinary
25041         defun.  Defining it as defalias could introduce too eager
25042         byte-compiler optimization.  (Bug#14030)
25044 2013-03-30  Chong Yidong  <cyd@gnu.org>
25046         * iswitchb.el (iswitchb-read-buffer): Fix typo.
25048 2013-03-30  Leo Liu  <sdl.web@gmail.com>
25050         * kmacro.el (kmacro-call-macro): Add optional arg MACRO.
25051         (kmacro-execute-from-register): Pass the keyboard macro to
25052         kmacro-call-macro or repeating won't work correctly.
25054 2013-03-30  Teodor Zlatanov  <tzz@lifelogs.com>
25056         * progmodes/subword.el: Back to using `forward-symbol'.
25058         * subr.el (forward-whitespace, forward-symbol)
25059         (forward-same-syntax): Move from thingatpt.el.
25061 2013-03-29  Leo Liu  <sdl.web@gmail.com>
25063         * kmacro.el (kmacro-to-register): New command.
25064         (kmacro-execute-from-register): New function.
25065         (kmacro-keymap): Bind to 'x'.  (Bug#14071)
25067 2013-03-29  Stefan Monnier  <monnier@iro.umontreal.ca>
25069         * mpc.el: Use defvar-local and setq-local.
25070         (mpc--proc-connect): Connection failures are not bugs.
25071         (mpc-mode-map): `follow-link' only applies to the buffer's content.
25072         (mpc-volume-map): Bind to the up-events.
25074 2013-03-29  Teodor Zlatanov  <tzz@lifelogs.com>
25076         * progmodes/subword.el (superword-mode): Use `forward-sexp'
25077         instead of `forward-symbol'.
25079 2013-03-28  Stefan Monnier  <monnier@iro.umontreal.ca>
25081         * emacs-lisp/edebug.el (edebug-mode): Make it a minor mode.
25082         (edebug--recursive-edit): Use it.
25083         (edebug-kill-buffer): Don't let-bind kill-buffer-hook.
25084         (edebug-temp-display-freq-count): Don't let-bind buffer-read-only.
25086 2013-03-28  Leo Liu  <sdl.web@gmail.com>
25088         * vc/vc-bzr.el (vc-bzr-revert): Don't backup.  (Bug#14066)
25090 2013-03-27  Eli Zaretskii  <eliz@gnu.org>
25092         * facemenu.el (list-colors-callback): New defvar.
25093         (list-colors-redisplay): New function.
25094         (list-colors-display): Install list-colors-redisplay as the
25095         revert-buffer-function.  (Bug#14063)
25097 2013-03-27  Stefan Monnier  <monnier@iro.umontreal.ca>
25099         * minibuffer.el (completion-pcm--merge-completions): Make sure prefixes
25100         and suffixes don't overlap (bug#14061).
25102         * case-table.el: Use lexical-binding.
25103         (case-table-get-table): New function.
25104         (get-upcase-table): Use it.  Mark as obsolete.  Adjust callers.
25106 2013-03-27  Teodor Zlatanov  <tzz@lifelogs.com>
25108         * progmodes/subword.el: Add `superword-mode' to do word motion
25109         over symbol_words (parallels and leverages `subword-mode' which
25110         does word motion inside MixedCaseWords).
25112 2013-03-27  Aidan Gauland  <aidalgol@no8wireless.co.nz>
25114         * eshell/em-unix.el: Move su and sudo to...
25115         * eshell/em-tramp.el: ...Eshell tramp module.
25117 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
25119         * desktop.el (desktop--v2s): Rename from desktop-internal-v2s.
25120         Change return value to be a sexp.  Delay `get-buffer' to after
25121         restoring the desktop (bug#13951).
25123 2013-03-26  Leo Liu  <sdl.web@gmail.com>
25125         * register.el: Move semantic tag handling back to
25126         cedet/semantic/senator.el.  (Bug#14052)
25128 2013-03-26  Stefan Monnier  <monnier@iro.umontreal.ca>
25130         * eshell/em-prompt.el (eshell-emit-prompt): Make sure we can't insert
25131         into the prompt either (bug#13963).
25133 2013-03-25  Stefan Monnier  <monnier@iro.umontreal.ca>
25135         * font-lock.el (lisp-font-lock-keywords-2): Don't highlight the "error"
25136         part of "(error-foo)".
25138 2013-03-24  Juri Linkov  <juri@jurta.org>
25140         * replace.el (list-matching-lines-prefix-face): New defcustom.
25141         (occur-1): Pass `list-matching-lines-prefix-face' to the function
25142         `occur-engine' if `face-differs-from-default-p' returns t.
25143         (occur-engine): Add `,' inside backquote construct to evaluate
25144         `prefix-face'.  Propertize the prefix with the `prefix-face' face.
25145         Pass `prefix-face' to the functions `occur-context-lines' and
25146         `occur-engine-add-prefix'.
25147         (occur-engine-add-prefix, occur-context-lines): Add optional arg
25148         `prefix-face' and propertize the prefix with `prefix-face'.
25149         (Bug#14017)
25151 2013-03-24  Leo Liu  <sdl.web@gmail.com>
25153         * nxml/rng-valid.el (rng-validate-while-idle)
25154         (rng-validate-quick-while-idle): Guard against deleted buffer.
25155         (Bug#13999)
25157         * emacs-lisp/edebug.el (edebug-mode): Make sure edebug-kill-buffer
25158         is the last entry in kill-buffer-hook.
25160         * files.el (kill-buffer-hook): Doc fix.
25162 2013-03-23  Dmitry Gutov  <dgutov@yandex.ru>
25164         * emacs-lisp/lisp-mode.el (emacs-lisp-docstring-fill-column):
25165         Make it safe-local.
25167         * vc/diff-mode.el (diff-mode-shared-map): Unbind "/" (Bug#14034).
25169 2013-03-23  Leo Liu  <sdl.web@gmail.com>
25171         * nxml/nxml-util.el (nxml-with-unmodifying-text-property-changes):
25172         Remove.
25174         * nxml/rng-valid.el (rng-validate-mode)
25175         (rng-after-change-function, rng-do-some-validation):
25176         * nxml/rng-maint.el (rng-validate-buffer):
25177         * nxml/nxml-rap.el (nxml-tokenize-forward, nxml-ensure-scan-up-to-date):
25178         * nxml/nxml-outln.el (nxml-show-all, nxml-set-outline-state):
25179         * nxml/nxml-mode.el (nxml-mode, nxml-degrade, nxml-after-change)
25180         (nxml-extend-after-change-region): Use with-silent-modifications.
25182         * nxml/rng-nxml.el (rng-set-state-after): Do not let-bind
25183         timer-idle-list.
25185         * nxml/rng-valid.el (rng-validate-while-idle-continue-p)
25186         (rng-next-error-1, rng-previous-error-1): Do not let-bind
25187         timer-idle-list.  (Bug#13999)
25189 2013-03-23  Juri Linkov  <juri@jurta.org>
25191         * info.el (info-index-match): New face.
25192         (Info-index, Info-apropos-matches): Add a nested subgroup to the
25193         main pattern and add text properties with the new face to matches
25194         in index entries relative to the beginning of the index entry.
25195         (Bug#14015)
25197 2013-03-21  Eric Ludlam  <zappo@gnu.org>
25199         * emacs-lisp/eieio-datadebug.el (data-debug/eieio-insert-slots):
25200         Inhibit read only while inserting objects.
25202 2013-03-22  Teodor Zlatanov  <tzz@lifelogs.com>
25204         * progmodes/cfengine.el: Update docs to mention
25205         `cfengine-auto-mode'.  Use \_> and \_< instead of \> and \< for
25206         symbol motion.  Remove "_" from the word syntax.
25208 2013-03-21  Teodor Zlatanov  <tzz@lifelogs.com>
25210         * progmodes/cfengine.el (cfengine-common-syntax): Add "_" to word
25211         syntax for both `cfengine2-mode' and `cfengine3-mode'.
25213 2013-03-20  Juri Linkov  <juri@jurta.org>
25215         * info.el (Info-next-reference-or-link)
25216         (Info-prev-reference-or-link): New functions.
25217         (Info-next-reference, Info-prev-reference): Use them.
25218         (Info-try-follow-nearest-node): Handle footnote navigation.
25219         (Info-fontify-node): Fontify footnotes.  (Bug#13989)
25221 2013-03-20  Stefan Monnier  <monnier@iro.umontreal.ca>
25223         * subr.el (posn-point, posn-string): Fix it here instead (bug#13979).
25224         * mouse.el (mouse-on-link-p): Undo scroll-bar fix.
25226 2013-03-20  Paul Eggert  <eggert@cs.ucla.edu>
25228         Suppress unnecessary non-ASCII chatter during build process.
25229         * international/ja-dic-cnv.el (skkdic-collect-okuri-nasi)
25230         (batch-skkdic-convert): Suppress most of the chatter.
25231         It's not needed so much now that machines are faster,
25232         and its non-ASCII component was confusing; see Dmitry Gutov in
25233         <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00508.html>.
25235 2013-03-20  Leo Liu  <sdl.web@gmail.com>
25237         * ido.el (ido-chop): Fix bug#10994.
25239 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
25241         * whitespace.el (whitespace-font-lock, whitespace-font-lock-mode):
25242         Remove vars.
25243         (whitespace-color-on, whitespace-color-off):
25244         Use `font-lock-fontify-buffer' (Bug#13817).
25246 2013-03-19  Stefan Monnier  <monnier@iro.umontreal.ca>
25248         * mouse.el (mouse--down-1-maybe-follows-link): Fix follow-link
25249         remapping in mode-line.
25250         (mouse-on-link-p): Also check [mode-line follow-link] bindings.
25252 2013-03-19  Dmitry Gutov  <dgutov@yandex.ru>
25254         * whitespace.el (whitespace-color-on): Use `prepend' OVERRIDE
25255         value for `whitespace-line' face (Bug#13875).
25256         (whitespace-font-lock-keywords): Change description.
25257         (whitespace-color-on): Don't save `font-lock-keywords' value, save
25258         the constructed keywords instead.
25259         (whitespace-color-off): Use `font-lock-remove-keywords' (Bug#13817).
25261 2013-03-19  Leo Liu  <sdl.web@gmail.com>
25263         * progmodes/compile.el (compilation-display-error): New command.
25264         (compilation-mode-map, compilation-minor-mode-map): Bind it to
25265         C-o.  (Bug#13992)
25267 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
25269         * term/x-win.el (x-keysym-pair): Add a Fixme (Bug#13936).
25271 2013-03-18  Jan Djärv  <jan.h.d@swipnet.se>
25273         * mouse.el (mouse-on-link-p): Check for scroll bar (Bug#13979).
25275 2013-03-18  Michael Albinus  <michael.albinus@gmx.de>
25277         * net/tramp-compat.el (tramp-compat-user-error): New defun.
25279         * net/tramp-adb.el (tramp-adb-handle-shell-command):
25280         * net/tramp-gvfs.el (top):
25281         * net/tramp.el (tramp-find-method, tramp-dissect-file-name)
25282         (tramp-handle-shell-command): Use it.
25283         (tramp-dissect-file-name): Raise an error when hostname is a
25284         method name, and neither method nor user is specified.
25286         * net/trampver.el: Update release number.
25288 2013-03-18  Leo Liu  <sdl.web@gmail.com>
25290         Make sure eldoc can be turned off properly.
25291         * emacs-lisp/eldoc.el (eldoc-schedule-timer): Conditionalize on
25292         eldoc-mode.
25293         (eldoc-display-message-p): Revert last change.
25294         (eldoc-display-message-no-interference-p)
25295         (eldoc-print-current-symbol-info): Tweak.
25297 2013-03-18  Tassilo Horn  <tsdh@gnu.org>
25299         * doc-view.el (doc-view-new-window-function): Check the new window
25300         overlay's display property instead the char property of the
25301         buffer's first char.  Use `with-selected-window' instead of
25302         `save-window-excursion' with `select-window'.
25303         (doc-view-document->bitmap): Check the current doc-view overlay's
25304         display property instead the char property of the buffer's first char.
25306 2013-03-18  Paul Eggert  <eggert@cs.ucla.edu>
25308         Automate the build of ja-dic.el (Bug#13984).
25309         * international/ja-dic-cnv.el (skkdic-convert): Remove the annotations
25310         from the input, rather than assume that it's been done for us by the
25311         SKK script unannotate.awk.  Switch ja-dic.el to UTF-8.  Don't put
25312         the current date into a ja-dic.el comment, as that complicates
25313         regression testing.
25315 2013-03-18  Stefan Monnier  <monnier@iro.umontreal.ca>
25317         * whitespace.el: Fix double evaluation.
25318         (whitespace-space, whitespace-hspace, whitespace-tab)
25319         (whitespace-newline, whitespace-trailing, whitespace-line)
25320         (whitespace-space-before-tab, whitespace-indentation)
25321         (whitespace-empty, whitespace-space-after-tab): Turn defcustoms into
25322         obsolete defvars.
25323         (whitespace-hspace-regexp): Fix regexp for emacs-unicode.
25324         (whitespace-color-on): Use a single font-lock-add-keywords call.
25325         Fix double-evaluation of face variables.
25327 2013-03-17  Michael Albinus  <michael.albinus@gmx.de>
25329         * net/tramp-adb.el (tramp-adb-parse-device-names):
25330         Use `start-process' instead of `call-process'.  Otherwise, the
25331         function might be blocked under MS Windows.  (Bug#13299)
25333 2013-03-17  Leo Liu  <sdl.web@gmail.com>
25335         Extend eldoc to display info in the mode-line.  (Bug#13978)
25336         * emacs-lisp/eldoc.el (eldoc-post-insert-mode): New minor mode.
25337         (eldoc-mode-line-string): New variable.
25338         (eldoc-minibuffer-message): New function.
25339         (eldoc-message-function): New variable.
25340         (eldoc-message): Use it.
25341         (eldoc-display-message-p)
25342         (eldoc-display-message-no-interference-p):
25343         Support eldoc-post-insert-mode.
25345         * simple.el (eval-expression-minibuffer-setup-hook): New hook.
25346         (eval-expression): Run it.
25348 2013-03-17  Roland Winkler  <winkler@gnu.org>
25350         * emacs-lisp/crm.el (completing-read-multiple): Ignore empty
25351         strings in the list of return values.
25353 2013-03-17  Jay Belanger  <jay.p.belanger@gmail.com>
25355         * calc/calc-ext.el (math-read-number-fancy): Check for an explicit
25356         radix before checking for HMS forms.
25358 2013-03-16  Leo Liu  <sdl.web@gmail.com>
25360         * progmodes/scheme.el: Add indentation and font-locking for λ.
25361         (Bug#13975)
25363 2013-03-16  Stefan Monnier  <monnier@iro.umontreal.ca>
25365         * emacs-lisp/smie.el (smie-auto-fill): Don't inf-loop if there's no
25366         token before point (bug#13942).
25368 2013-03-16  Leo Liu  <sdl.web@gmail.com>
25370         * thingatpt.el (end-of-sexp): Fix bug#13952.  Use syntax-after.
25372 2013-03-16  Eli Zaretskii  <eliz@gnu.org>
25374         * startup.el (command-line-normalize-file-name): Fix handling of
25375         backslashes in DOS and Windows file names.  Reported by Xue Fuqiao
25376         <xfq.free@gmail.com> in
25377         http://lists.gnu.org/archive/html/help-gnu-emacs/2013-03/msg00245.html.
25379 2013-03-15  Michael Albinus  <michael.albinus@gmx.de>
25381         Sync with Tramp 2.2.7.
25383         * net/trampver.el: Update release number.
25385 2013-03-14  Tassilo Horn  <tsdh@gnu.org>
25387         * doc-view.el: Fix bug#13887.
25388         (doc-view-insert-image): Don't modify overlay associated to
25389         non-live windows, and implement horizontal centering of image in
25390         case it's smaller than the window.
25391         (doc-view-new-window-function): Force redisplay of new windows on
25392         doc-view buffers.
25394 2013-03-13  Karl Fogel  <kfogel@red-bean.com>
25396         * saveplace.el (save-place-alist-to-file): Don't sort
25397         `save-place-alist', just pretty-print it (bug#13882).
25399 2013-03-13  Michael Albinus  <michael.albinus@gmx.de>
25401         * net/tramp-sh.el (tramp-sh-handle-insert-directory):
25402         Check whether `default-file-name-coding-system' is bound.
25403         It isn't in XEmacs.
25405 2013-03-13  Stefan Monnier  <monnier@iro.umontreal.ca>
25407         * emacs-lisp/byte-run.el (defun-declarations-alist): Don't use
25408         backquotes for `obsolete' (bug#13929).
25410         * international/mule.el (find-auto-coding): Include file name in
25411         obsolescence warning (bug#13922).
25413 2013-03-12  Teodor Zlatanov  <tzz@lifelogs.com>
25415         * progmodes/cfengine.el (cfengine-parameters-indent): New variable
25416         for CFEngine 3-specific indentation.
25417         (cfengine3-indent-line): Use it.  Fix up category regex.
25418         (cfengine3-font-lock-keywords): Add bundle and namespace characters.
25420 2013-03-12  Stefan Monnier  <monnier@iro.umontreal.ca>
25422         * type-break.el (type-break-file-name):
25423         * textmodes/remember.el (remember-data-file):
25424         * strokes.el (strokes-file):
25425         * shadowfile.el (shadow-initialize):
25426         * saveplace.el (save-place-file):
25427         * ps-bdf.el (bdf-cache-file):
25428         * progmodes/idlwave.el (idlwave-config-directory):
25429         * net/quickurl.el (quickurl-url-file):
25430         * international/kkc.el (kkc-init-file-name):
25431         * ido.el (ido-save-directory-list-file):
25432         * emulation/viper.el (viper-custom-file-name):
25433         * emulation/vip.el (vip-startup-file):
25434         * calendar/todo-mode.el (todo-file-do, todo-file-done, todo-file-top):
25435         * calendar/timeclock.el (timeclock-file): Use locate-user-emacs-file.
25437 2013-03-12  Paul Eggert  <eggert@cs.ucla.edu>
25439         Switch encodings of tutorials, thai-word to UTF-8 (Bug#13880).
25440         * language/thai-word.el: Switch to UTF-8.
25442 See ChangeLog.16 for earlier changes.
25444 ;; Local Variables:
25445 ;; coding: utf-8
25446 ;; End:
25448   Copyright (C) 2011-2015 Free Software Foundation, Inc.
25450   This file is part of GNU Emacs.
25452   GNU Emacs is free software: you can redistribute it and/or modify
25453   it under the terms of the GNU General Public License as published by
25454   the Free Software Foundation, either version 3 of the License, or
25455   (at your option) any later version.
25457   GNU Emacs is distributed in the hope that it will be useful,
25458   but WITHOUT ANY WARRANTY; without even the implied warranty of
25459   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25460   GNU General Public License for more details.
25462   You should have received a copy of the GNU General Public License
25463   along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.